1
Fork 0
test-zig-cc/results/zigcc-reuse-sandbox-dirs.svg

491 lines
930 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="902" onload="init(evt)" viewBox="0 0 1200 902" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="902" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="885.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="885.00"> </text><svg id="frames" x="10" width="1180" total_samples="539513"><g><title>ActionLookupVal (57 samples, 0.01%)</title><rect x="0.0437%" y="837" width="0.0106%" height="15" fill="rgb(227,0,7)" fg:x="236" fg:w="57"/><text x="0.2937%" y="847.50"></text></g><g><title>_dl_update_slotinfo (158 samples, 0.03%)</title><rect x="0.2617%" y="805" width="0.0293%" height="15" fill="rgb(217,0,24)" fg:x="1412" fg:w="158"/><text x="0.5117%" y="815.50"></text></g><g><title>[anon] (1,439 samples, 0.27%)</title><rect x="0.0669%" y="821" width="0.2667%" height="15" fill="rgb(221,193,54)" fg:x="361" fg:w="1439"/><text x="0.3169%" y="831.50"></text></g><g><title>[perf-34054.map] (166 samples, 0.03%)</title><rect x="0.3344%" y="821" width="0.0308%" height="15" fill="rgb(248,212,6)" fg:x="1804" fg:w="166"/><text x="0.5844%" y="831.50"></text></g><g><title>[unknown] (130 samples, 0.02%)</title><rect x="0.3651%" y="821" width="0.0241%" height="15" fill="rgb(208,68,35)" fg:x="1970" fg:w="130"/><text x="0.6151%" y="831.50"></text></g><g><title>CompileBroker::post_compile (57 samples, 0.01%)</title><rect x="0.4074%" y="709" width="0.0106%" height="15" fill="rgb(232,128,0)" fg:x="2198" fg:w="57"/><text x="0.6574%" y="719.50"></text></g><g><title>StringEventLog::log (56 samples, 0.01%)</title><rect x="0.4076%" y="693" width="0.0104%" height="15" fill="rgb(207,160,47)" fg:x="2199" fg:w="56"/><text x="0.6576%" y="703.50"></text></g><g><title>Method::print_short_name (64 samples, 0.01%)</title><rect x="0.4237%" y="693" width="0.0119%" height="15" fill="rgb(228,23,34)" fg:x="2286" fg:w="64"/><text x="0.6737%" y="703.50"></text></g><g><title>CompileTask::print (129 samples, 0.02%)</title><rect x="0.4235%" y="709" width="0.0239%" height="15" fill="rgb(218,30,26)" fg:x="2285" fg:w="129"/><text x="0.6735%" y="719.50"></text></g><g><title>outputStream::print (64 samples, 0.01%)</title><rect x="0.4356%" y="693" width="0.0119%" height="15" fill="rgb(220,122,19)" fg:x="2350" fg:w="64"/><text x="0.6856%" y="703.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (60 samples, 0.01%)</title><rect x="0.4363%" y="677" width="0.0111%" height="15" fill="rgb(250,228,42)" fg:x="2354" fg:w="60"/><text x="0.6863%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (55 samples, 0.01%)</title><rect x="0.4745%" y="549" width="0.0102%" height="15" fill="rgb(240,193,28)" fg:x="2560" fg:w="55"/><text x="0.7245%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (86 samples, 0.02%)</title><rect x="0.4743%" y="565" width="0.0159%" height="15" fill="rgb(216,20,37)" fg:x="2559" fg:w="86"/><text x="0.7243%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (139 samples, 0.03%)</title><rect x="0.4736%" y="581" width="0.0258%" height="15" fill="rgb(206,188,39)" fg:x="2555" fg:w="139"/><text x="0.7236%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (210 samples, 0.04%)</title><rect x="0.4726%" y="597" width="0.0389%" height="15" fill="rgb(217,207,13)" fg:x="2550" fg:w="210"/><text x="0.7226%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (66 samples, 0.01%)</title><rect x="0.4993%" y="581" width="0.0122%" height="15" fill="rgb(231,73,38)" fg:x="2694" fg:w="66"/><text x="0.7493%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (215 samples, 0.04%)</title><rect x="0.4719%" y="613" width="0.0399%" height="15" fill="rgb(225,20,46)" fg:x="2546" fg:w="215"/><text x="0.7219%" y="623.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (425 samples, 0.08%)</title><rect x="0.4582%" y="629" width="0.0788%" height="15" fill="rgb(210,31,41)" fg:x="2472" fg:w="425"/><text x="0.7082%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (61 samples, 0.01%)</title><rect x="0.5420%" y="549" width="0.0113%" height="15" fill="rgb(221,200,47)" fg:x="2924" fg:w="61"/><text x="0.7920%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (84 samples, 0.02%)</title><rect x="0.5407%" y="565" width="0.0156%" height="15" fill="rgb(226,26,5)" fg:x="2917" fg:w="84"/><text x="0.7907%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (115 samples, 0.02%)</title><rect x="0.5381%" y="581" width="0.0213%" height="15" fill="rgb(249,33,26)" fg:x="2903" fg:w="115"/><text x="0.7881%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (117 samples, 0.02%)</title><rect x="0.5379%" y="597" width="0.0217%" height="15" fill="rgb(235,183,28)" fg:x="2902" fg:w="117"/><text x="0.7879%" y="607.50"></text></g><g><title>BlockListBuilder::set_leaders (143 samples, 0.03%)</title><rect x="0.5646%" y="581" width="0.0265%" height="15" fill="rgb(221,5,38)" fg:x="3046" fg:w="143"/><text x="0.8146%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (98 samples, 0.02%)</title><rect x="0.5729%" y="565" width="0.0182%" height="15" fill="rgb(247,18,42)" fg:x="3091" fg:w="98"/><text x="0.8229%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (96 samples, 0.02%)</title><rect x="0.5733%" y="549" width="0.0178%" height="15" fill="rgb(241,131,45)" fg:x="3093" fg:w="96"/><text x="0.8233%" y="559.50"></text></g><g><title>MethodLiveness::init_basic_blocks (61 samples, 0.01%)</title><rect x="0.5798%" y="533" width="0.0113%" height="15" fill="rgb(249,31,29)" fg:x="3128" fg:w="61"/><text x="0.8298%" y="543.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (163 samples, 0.03%)</title><rect x="0.5616%" y="597" width="0.0302%" height="15" fill="rgb(225,111,53)" fg:x="3030" fg:w="163"/><text x="0.8116%" y="607.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (57 samples, 0.01%)</title><rect x="0.6365%" y="485" width="0.0106%" height="15" fill="rgb(238,160,17)" fg:x="3434" fg:w="57"/><text x="0.8865%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (69 samples, 0.01%)</title><rect x="0.6350%" y="501" width="0.0128%" height="15" fill="rgb(214,148,48)" fg:x="3426" fg:w="69"/><text x="0.8850%" y="511.50"></text></g><g><title>ciField::ciField (106 samples, 0.02%)</title><rect x="0.6317%" y="517" width="0.0196%" height="15" fill="rgb(232,36,49)" fg:x="3408" fg:w="106"/><text x="0.8817%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (129 samples, 0.02%)</title><rect x="0.6289%" y="533" width="0.0239%" height="15" fill="rgb(209,103,24)" fg:x="3393" fg:w="129"/><text x="0.8789%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (160 samples, 0.03%)</title><rect x="0.6285%" y="549" width="0.0297%" height="15" fill="rgb(229,88,8)" fg:x="3391" fg:w="160"/><text x="0.8785%" y="559.50"></text></g><g><title>GraphBuilder::access_field (216 samples, 0.04%)</title><rect x="0.6211%" y="565" width="0.0400%" height="15" fill="rgb(213,181,19)" fg:x="3351" fg:w="216"/><text x="0.8711%" y="575.50"></text></g><g><title>ciField::ciField (74 samples, 0.01%)</title><rect x="0.7373%" y="437" width="0.0137%" height="15" fill="rgb(254,191,54)" fg:x="3978" fg:w="74"/><text x="0.9873%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (87 samples, 0.02%)</title><rect x="0.7358%" y="453" width="0.0161%" height="15" fill="rgb(241,83,37)" fg:x="3970" fg:w="87"/><text x="0.9858%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (109 samples, 0.02%)</title><rect x="0.7357%" y="469" width="0.0202%" height="15" fill="rgb(233,36,39)" fg:x="3969" fg:w="109"/><text x="0.9857%" y="479.50"></text></g><g><title>GraphBuilder::access_field (150 samples, 0.03%)</title><rect x="0.7290%" y="485" width="0.0278%" height="15" fill="rgb(226,3,54)" fg:x="3933" fg:w="150"/><text x="0.9790%" y="495.50"></text></g><g><title>ciBytecodeStream::get_field (59 samples, 0.01%)</title><rect x="0.7853%" y="389" width="0.0109%" height="15" fill="rgb(245,192,40)" fg:x="4237" fg:w="59"/><text x="1.0353%" y="399.50"></text></g><g><title>GraphBuilder::access_field (79 samples, 0.01%)</title><rect x="0.7829%" y="405" width="0.0146%" height="15" fill="rgb(238,167,29)" fg:x="4224" fg:w="79"/><text x="1.0329%" y="415.50"></text></g><g><title>GraphBuilder::invoke (56 samples, 0.01%)</title><rect x="0.8322%" y="245" width="0.0104%" height="15" fill="rgb(232,182,51)" fg:x="4490" fg:w="56"/><text x="1.0822%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (100 samples, 0.02%)</title><rect x="0.8256%" y="277" width="0.0185%" height="15" fill="rgb(231,60,39)" fg:x="4454" fg:w="100"/><text x="1.0756%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (97 samples, 0.02%)</title><rect x="0.8261%" y="261" width="0.0180%" height="15" fill="rgb(208,69,12)" fg:x="4457" fg:w="97"/><text x="1.0761%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (155 samples, 0.03%)</title><rect x="0.8243%" y="293" width="0.0287%" height="15" fill="rgb(235,93,37)" fg:x="4447" fg:w="155"/><text x="1.0743%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (168 samples, 0.03%)</title><rect x="0.8239%" y="309" width="0.0311%" height="15" fill="rgb(213,116,39)" fg:x="4445" fg:w="168"/><text x="1.0739%" y="319.50"></text></g><g><title>GraphBuilder::invoke (241 samples, 0.04%)</title><rect x="0.8224%" y="325" width="0.0447%" height="15" fill="rgb(222,207,29)" fg:x="4437" fg:w="241"/><text x="1.0724%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (345 samples, 0.06%)</title><rect x="0.8085%" y="357" width="0.0639%" height="15" fill="rgb(206,96,30)" fg:x="4362" fg:w="345"/><text x="1.0585%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (340 samples, 0.06%)</title><rect x="0.8094%" y="341" width="0.0630%" height="15" fill="rgb(218,138,4)" fg:x="4367" fg:w="340"/><text x="1.0594%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (432 samples, 0.08%)</title><rect x="0.8068%" y="373" width="0.0801%" height="15" fill="rgb(250,191,14)" fg:x="4353" fg:w="432"/><text x="1.0568%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (479 samples, 0.09%)</title><rect x="0.8065%" y="389" width="0.0888%" height="15" fill="rgb(239,60,40)" fg:x="4351" fg:w="479"/><text x="1.0565%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (84 samples, 0.02%)</title><rect x="0.9003%" y="373" width="0.0156%" height="15" fill="rgb(206,27,48)" fg:x="4857" fg:w="84"/><text x="1.1503%" y="383.50"></text></g><g><title>ciBytecodeStream::get_method (95 samples, 0.02%)</title><rect x="0.8984%" y="389" width="0.0176%" height="15" fill="rgb(225,35,8)" fg:x="4847" fg:w="95"/><text x="1.1484%" y="399.50"></text></g><g><title>GraphBuilder::invoke (635 samples, 0.12%)</title><rect x="0.8020%" y="405" width="0.1177%" height="15" fill="rgb(250,213,24)" fg:x="4327" fg:w="635"/><text x="1.0520%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (824 samples, 0.15%)</title><rect x="0.7759%" y="437" width="0.1527%" height="15" fill="rgb(247,123,22)" fg:x="4186" fg:w="824"/><text x="1.0259%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (816 samples, 0.15%)</title><rect x="0.7774%" y="421" width="0.1512%" height="15" fill="rgb(231,138,38)" fg:x="4194" fg:w="816"/><text x="1.0274%" y="431.50"></text></g><g><title>BlockListBuilder::set_leaders (63 samples, 0.01%)</title><rect x="0.9325%" y="405" width="0.0117%" height="15" fill="rgb(231,145,46)" fg:x="5031" fg:w="63"/><text x="1.1825%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (79 samples, 0.01%)</title><rect x="0.9307%" y="421" width="0.0146%" height="15" fill="rgb(251,118,11)" fg:x="5021" fg:w="79"/><text x="1.1807%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (106 samples, 0.02%)</title><rect x="0.9301%" y="437" width="0.0196%" height="15" fill="rgb(217,147,25)" fg:x="5018" fg:w="106"/><text x="1.1801%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (60 samples, 0.01%)</title><rect x="0.9512%" y="421" width="0.0111%" height="15" fill="rgb(247,81,37)" fg:x="5132" fg:w="60"/><text x="1.2012%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (63 samples, 0.01%)</title><rect x="0.9509%" y="437" width="0.0117%" height="15" fill="rgb(209,12,38)" fg:x="5130" fg:w="63"/><text x="1.2009%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (1,034 samples, 0.19%)</title><rect x="0.7713%" y="453" width="0.1917%" height="15" fill="rgb(227,1,9)" fg:x="4161" fg:w="1034"/><text x="1.0213%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (1,095 samples, 0.20%)</title><rect x="0.7698%" y="469" width="0.2030%" height="15" fill="rgb(248,47,43)" fg:x="4153" fg:w="1095"/><text x="1.0198%" y="479.50"></text></g><g><title>ciSignature::ciSignature (59 samples, 0.01%)</title><rect x="0.9978%" y="389" width="0.0109%" height="15" fill="rgb(221,10,30)" fg:x="5383" fg:w="59"/><text x="1.2478%" y="399.50"></text></g><g><title>ciMethod::ciMethod (75 samples, 0.01%)</title><rect x="0.9950%" y="405" width="0.0139%" height="15" fill="rgb(210,229,1)" fg:x="5368" fg:w="75"/><text x="1.2450%" y="415.50"></text></g><g><title>ciObjectFactory::get_metadata (94 samples, 0.02%)</title><rect x="0.9916%" y="437" width="0.0174%" height="15" fill="rgb(222,148,37)" fg:x="5350" fg:w="94"/><text x="1.2416%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (80 samples, 0.01%)</title><rect x="0.9942%" y="421" width="0.0148%" height="15" fill="rgb(234,67,33)" fg:x="5364" fg:w="80"/><text x="1.2442%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (160 samples, 0.03%)</title><rect x="0.9809%" y="453" width="0.0297%" height="15" fill="rgb(247,98,35)" fg:x="5292" fg:w="160"/><text x="1.2309%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (174 samples, 0.03%)</title><rect x="0.9785%" y="469" width="0.0323%" height="15" fill="rgb(247,138,52)" fg:x="5279" fg:w="174"/><text x="1.2285%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,373 samples, 0.25%)</title><rect x="0.7629%" y="485" width="0.2545%" height="15" fill="rgb(213,79,30)" fg:x="4116" fg:w="1373"/><text x="1.0129%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,757 samples, 0.33%)</title><rect x="0.7090%" y="517" width="0.3257%" height="15" fill="rgb(246,177,23)" fg:x="3825" fg:w="1757"/><text x="0.9590%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,741 samples, 0.32%)</title><rect x="0.7119%" y="501" width="0.3227%" height="15" fill="rgb(230,62,27)" fg:x="3841" fg:w="1741"/><text x="0.9619%" y="511.50"></text></g><g><title>MethodLiveness::compute_liveness (63 samples, 0.01%)</title><rect x="1.0471%" y="453" width="0.0117%" height="15" fill="rgb(216,154,8)" fg:x="5649" fg:w="63"/><text x="1.2971%" y="463.50"></text></g><g><title>BlockListBuilder::set_leaders (91 samples, 0.02%)</title><rect x="1.0421%" y="485" width="0.0169%" height="15" fill="rgb(244,35,45)" fg:x="5622" fg:w="91"/><text x="1.2921%" y="495.50"></text></g><g><title>ciMethod::bci_block_start (65 samples, 0.01%)</title><rect x="1.0469%" y="469" width="0.0120%" height="15" fill="rgb(251,115,12)" fg:x="5648" fg:w="65"/><text x="1.2969%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (111 samples, 0.02%)</title><rect x="1.0393%" y="501" width="0.0206%" height="15" fill="rgb(240,54,50)" fg:x="5607" fg:w="111"/><text x="1.2893%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (179 samples, 0.03%)</title><rect x="1.0376%" y="517" width="0.0332%" height="15" fill="rgb(233,84,52)" fg:x="5598" fg:w="179"/><text x="1.2876%" y="527.50"></text></g><g><title>ciMethodData::load_data (60 samples, 0.01%)</title><rect x="1.0847%" y="485" width="0.0111%" height="15" fill="rgb(207,117,47)" fg:x="5852" fg:w="60"/><text x="1.3347%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (133 samples, 0.02%)</title><rect x="1.0749%" y="501" width="0.0247%" height="15" fill="rgb(249,43,39)" fg:x="5799" fg:w="133"/><text x="1.3249%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (139 samples, 0.03%)</title><rect x="1.0741%" y="517" width="0.0258%" height="15" fill="rgb(209,38,44)" fg:x="5795" fg:w="139"/><text x="1.3241%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,174 samples, 0.40%)</title><rect x="0.6984%" y="533" width="0.4030%" height="15" fill="rgb(236,212,23)" fg:x="3768" fg:w="2174"/><text x="0.9484%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (2,190 samples, 0.41%)</title><rect x="0.6962%" y="549" width="0.4059%" height="15" fill="rgb(242,79,21)" fg:x="3756" fg:w="2190"/><text x="0.9462%" y="559.50"></text></g><g><title>ciEnv::lookup_method (102 samples, 0.02%)</title><rect x="1.1256%" y="517" width="0.0189%" height="15" fill="rgb(211,96,35)" fg:x="6073" fg:w="102"/><text x="1.3756%" y="527.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (67 samples, 0.01%)</title><rect x="1.1698%" y="453" width="0.0124%" height="15" fill="rgb(253,215,40)" fg:x="6311" fg:w="67"/><text x="1.4198%" y="463.50"></text></g><g><title>ciMethod::ciMethod (196 samples, 0.04%)</title><rect x="1.1497%" y="485" width="0.0363%" height="15" fill="rgb(211,81,21)" fg:x="6203" fg:w="196"/><text x="1.3997%" y="495.50"></text></g><g><title>ciSignature::ciSignature (161 samples, 0.03%)</title><rect x="1.1562%" y="469" width="0.0298%" height="15" fill="rgb(208,190,38)" fg:x="6238" fg:w="161"/><text x="1.4062%" y="479.50"></text></g><g><title>ciObjectFactory::get_metadata (231 samples, 0.04%)</title><rect x="1.1446%" y="517" width="0.0428%" height="15" fill="rgb(235,213,38)" fg:x="6175" fg:w="231"/><text x="1.3946%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (213 samples, 0.04%)</title><rect x="1.1479%" y="501" width="0.0395%" height="15" fill="rgb(237,122,38)" fg:x="6193" fg:w="213"/><text x="1.3979%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (416 samples, 0.08%)</title><rect x="1.1121%" y="549" width="0.0771%" height="15" fill="rgb(244,218,35)" fg:x="6000" fg:w="416"/><text x="1.3621%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (380 samples, 0.07%)</title><rect x="1.1188%" y="533" width="0.0704%" height="15" fill="rgb(240,68,47)" fg:x="6036" fg:w="380"/><text x="1.3688%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,827 samples, 0.52%)</title><rect x="0.6795%" y="565" width="0.5240%" height="15" fill="rgb(210,16,53)" fg:x="3666" fg:w="2827"/><text x="0.9295%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,322 samples, 0.62%)</title><rect x="0.6015%" y="581" width="0.6157%" height="15" fill="rgb(235,124,12)" fg:x="3245" fg:w="3322"/><text x="0.8515%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,376 samples, 0.63%)</title><rect x="0.5941%" y="597" width="0.6257%" height="15" fill="rgb(224,169,11)" fg:x="3205" fg:w="3376"/><text x="0.8441%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,730 samples, 0.69%)</title><rect x="0.5375%" y="613" width="0.6914%" height="15" fill="rgb(250,166,2)" fg:x="2900" fg:w="3730"/><text x="0.7875%" y="623.50"></text></g><g><title>IR::IR (3,747 samples, 0.69%)</title><rect x="0.5370%" y="629" width="0.6945%" height="15" fill="rgb(242,216,29)" fg:x="2897" fg:w="3747"/><text x="0.7870%" y="639.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (74 samples, 0.01%)</title><rect x="1.2315%" y="613" width="0.0137%" height="15" fill="rgb(230,116,27)" fg:x="6644" fg:w="74"/><text x="1.4815%" y="623.50"></text></g><g><title>IR::compute_code (82 samples, 0.02%)</title><rect x="1.2315%" y="629" width="0.0152%" height="15" fill="rgb(228,99,48)" fg:x="6644" fg:w="82"/><text x="1.4815%" y="639.50"></text></g><g><title>BlockList::iterate_backward (89 samples, 0.02%)</title><rect x="1.2472%" y="613" width="0.0165%" height="15" fill="rgb(253,11,6)" fg:x="6729" fg:w="89"/><text x="1.4972%" y="623.50"></text></g><g><title>UseCountComputer::block_do (81 samples, 0.02%)</title><rect x="1.2487%" y="597" width="0.0150%" height="15" fill="rgb(247,143,39)" fg:x="6737" fg:w="81"/><text x="1.4987%" y="607.50"></text></g><g><title>IR::compute_use_counts (129 samples, 0.02%)</title><rect x="1.2467%" y="629" width="0.0239%" height="15" fill="rgb(236,97,10)" fg:x="6726" fg:w="129"/><text x="1.4967%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (176 samples, 0.03%)</title><rect x="1.2752%" y="597" width="0.0326%" height="15" fill="rgb(233,208,19)" fg:x="6880" fg:w="176"/><text x="1.5252%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (210 samples, 0.04%)</title><rect x="1.2706%" y="629" width="0.0389%" height="15" fill="rgb(216,164,2)" fg:x="6855" fg:w="210"/><text x="1.5206%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (210 samples, 0.04%)</title><rect x="1.2706%" y="613" width="0.0389%" height="15" fill="rgb(220,129,5)" fg:x="6855" fg:w="210"/><text x="1.5206%" y="623.50"></text></g><g><title>IR::optimize_blocks (65 samples, 0.01%)</title><rect x="1.3095%" y="629" width="0.0120%" height="15" fill="rgb(242,17,10)" fg:x="7065" fg:w="65"/><text x="1.5595%" y="639.50"></text></g><g><title>IR::split_critical_edges (56 samples, 0.01%)</title><rect x="1.3216%" y="629" width="0.0104%" height="15" fill="rgb(242,107,0)" fg:x="7130" fg:w="56"/><text x="1.5716%" y="639.50"></text></g><g><title>Compilation::build_hir (4,769 samples, 0.88%)</title><rect x="0.4574%" y="645" width="0.8839%" height="15" fill="rgb(251,28,31)" fg:x="2468" fg:w="4769"/><text x="0.7074%" y="655.50"></text></g><g><title>CodeEmitInfo::record_debug_info (90 samples, 0.02%)</title><rect x="1.3703%" y="565" width="0.0167%" height="15" fill="rgb(233,223,10)" fg:x="7393" fg:w="90"/><text x="1.6203%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (91 samples, 0.02%)</title><rect x="1.3703%" y="581" width="0.0169%" height="15" fill="rgb(215,21,27)" fg:x="7393" fg:w="91"/><text x="1.6203%" y="591.50"></text></g><g><title>LIR_Assembler::call (104 samples, 0.02%)</title><rect x="1.3688%" y="597" width="0.0193%" height="15" fill="rgb(232,23,21)" fg:x="7385" fg:w="104"/><text x="1.6188%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (188 samples, 0.03%)</title><rect x="1.3620%" y="613" width="0.0348%" height="15" fill="rgb(244,5,23)" fg:x="7348" fg:w="188"/><text x="1.6120%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (164 samples, 0.03%)</title><rect x="1.4020%" y="613" width="0.0304%" height="15" fill="rgb(226,81,46)" fg:x="7564" fg:w="164"/><text x="1.6520%" y="623.50"></text></g><g><title>LIR_Assembler::emit_profile_call (65 samples, 0.01%)</title><rect x="1.4359%" y="613" width="0.0120%" height="15" fill="rgb(247,70,30)" fg:x="7747" fg:w="65"/><text x="1.6859%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (690 samples, 0.13%)</title><rect x="1.3449%" y="629" width="0.1279%" height="15" fill="rgb(212,68,19)" fg:x="7256" fg:w="690"/><text x="1.5949%" y="639.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (54 samples, 0.01%)</title><rect x="1.4745%" y="629" width="0.0100%" height="15" fill="rgb(240,187,13)" fg:x="7955" fg:w="54"/><text x="1.7245%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (117 samples, 0.02%)</title><rect x="1.4899%" y="597" width="0.0217%" height="15" fill="rgb(223,113,26)" fg:x="8038" fg:w="117"/><text x="1.7399%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (116 samples, 0.02%)</title><rect x="1.4900%" y="581" width="0.0215%" height="15" fill="rgb(206,192,2)" fg:x="8039" fg:w="116"/><text x="1.7400%" y="591.50"></text></g><g><title>CounterOverflowStub::emit_code (151 samples, 0.03%)</title><rect x="1.4876%" y="613" width="0.0280%" height="15" fill="rgb(241,108,4)" fg:x="8026" fg:w="151"/><text x="1.7376%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (61 samples, 0.01%)</title><rect x="1.5199%" y="597" width="0.0113%" height="15" fill="rgb(247,173,49)" fg:x="8200" fg:w="61"/><text x="1.7699%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (61 samples, 0.01%)</title><rect x="1.5199%" y="581" width="0.0113%" height="15" fill="rgb(224,114,35)" fg:x="8200" fg:w="61"/><text x="1.7699%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (74 samples, 0.01%)</title><rect x="1.5182%" y="613" width="0.0137%" height="15" fill="rgb(245,159,27)" fg:x="8191" fg:w="74"/><text x="1.7682%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (356 samples, 0.07%)</title><rect x="1.4845%" y="629" width="0.0660%" height="15" fill="rgb(245,172,44)" fg:x="8009" fg:w="356"/><text x="1.7345%" y="639.50"></text></g><g><title>Compilation::emit_code_body (1,140 samples, 0.21%)</title><rect x="1.3414%" y="645" width="0.2113%" height="15" fill="rgb(236,23,11)" fg:x="7237" fg:w="1140"/><text x="1.5914%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (103 samples, 0.02%)</title><rect x="1.5644%" y="597" width="0.0191%" height="15" fill="rgb(205,117,38)" fg:x="8440" fg:w="103"/><text x="1.8144%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (55 samples, 0.01%)</title><rect x="1.5905%" y="565" width="0.0102%" height="15" fill="rgb(237,72,25)" fg:x="8581" fg:w="55"/><text x="1.8405%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (259 samples, 0.05%)</title><rect x="1.5870%" y="581" width="0.0480%" height="15" fill="rgb(244,70,9)" fg:x="8562" fg:w="259"/><text x="1.8370%" y="591.50"></text></g><g><title>PhiResolverState::reset (177 samples, 0.03%)</title><rect x="1.6022%" y="565" width="0.0328%" height="15" fill="rgb(217,125,39)" fg:x="8644" fg:w="177"/><text x="1.8522%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (288 samples, 0.05%)</title><rect x="1.5848%" y="597" width="0.0534%" height="15" fill="rgb(235,36,10)" fg:x="8550" fg:w="288"/><text x="1.8348%" y="607.50"></text></g><g><title>LIRGenerator::do_If (63 samples, 0.01%)</title><rect x="1.6381%" y="597" width="0.0117%" height="15" fill="rgb(251,123,47)" fg:x="8838" fg:w="63"/><text x="1.8881%" y="607.50"></text></g><g><title>LIRGenerator::do_Invoke (114 samples, 0.02%)</title><rect x="1.6513%" y="597" width="0.0211%" height="15" fill="rgb(221,13,13)" fg:x="8909" fg:w="114"/><text x="1.9013%" y="607.50"></text></g><g><title>LIRGenerator::do_NewInstance (55 samples, 0.01%)</title><rect x="1.6797%" y="597" width="0.0102%" height="15" fill="rgb(238,131,9)" fg:x="9062" fg:w="55"/><text x="1.9297%" y="607.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (106 samples, 0.02%)</title><rect x="1.7012%" y="597" width="0.0196%" height="15" fill="rgb(211,50,8)" fg:x="9178" fg:w="106"/><text x="1.9512%" y="607.50"></text></g><g><title>BlockList::iterate_forward (981 samples, 0.18%)</title><rect x="1.5540%" y="629" width="0.1818%" height="15" fill="rgb(245,182,24)" fg:x="8384" fg:w="981"/><text x="1.8040%" y="639.50"></text></g><g><title>LIRGenerator::block_do (978 samples, 0.18%)</title><rect x="1.5546%" y="613" width="0.1813%" height="15" fill="rgb(242,14,37)" fg:x="8387" fg:w="978"/><text x="1.8046%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (165 samples, 0.03%)</title><rect x="1.7614%" y="581" width="0.0306%" height="15" fill="rgb(246,228,12)" fg:x="9503" fg:w="165"/><text x="2.0114%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (107 samples, 0.02%)</title><rect x="1.8165%" y="549" width="0.0198%" height="15" fill="rgb(213,55,15)" fg:x="9800" fg:w="107"/><text x="2.0665%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (136 samples, 0.03%)</title><rect x="1.8407%" y="549" width="0.0252%" height="15" fill="rgb(209,9,3)" fg:x="9931" fg:w="136"/><text x="2.0907%" y="559.50"></text></g><g><title>Interval::split (64 samples, 0.01%)</title><rect x="1.8684%" y="533" width="0.0119%" height="15" fill="rgb(230,59,30)" fg:x="10080" fg:w="64"/><text x="2.1184%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (89 samples, 0.02%)</title><rect x="1.8659%" y="549" width="0.0165%" height="15" fill="rgb(209,121,21)" fg:x="10067" fg:w="89"/><text x="2.1159%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (471 samples, 0.09%)</title><rect x="1.7964%" y="565" width="0.0873%" height="15" fill="rgb(220,109,13)" fg:x="9692" fg:w="471"/><text x="2.0464%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (78 samples, 0.01%)</title><rect x="1.8923%" y="549" width="0.0145%" height="15" fill="rgb(232,18,1)" fg:x="10209" fg:w="78"/><text x="2.1423%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (150 samples, 0.03%)</title><rect x="1.8837%" y="565" width="0.0278%" height="15" fill="rgb(215,41,42)" fg:x="10163" fg:w="150"/><text x="2.1337%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (729 samples, 0.14%)</title><rect x="1.7920%" y="581" width="0.1351%" height="15" fill="rgb(224,123,36)" fg:x="9668" fg:w="729"/><text x="2.0420%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (952 samples, 0.18%)</title><rect x="1.7510%" y="597" width="0.1765%" height="15" fill="rgb(240,125,3)" fg:x="9447" fg:w="952"/><text x="2.0010%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (74 samples, 0.01%)</title><rect x="1.9280%" y="597" width="0.0137%" height="15" fill="rgb(205,98,50)" fg:x="10402" fg:w="74"/><text x="2.1780%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (1,049 samples, 0.19%)</title><rect x="1.7481%" y="613" width="0.1944%" height="15" fill="rgb(205,185,37)" fg:x="9431" fg:w="1049"/><text x="1.9981%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (93 samples, 0.02%)</title><rect x="1.9738%" y="581" width="0.0172%" height="15" fill="rgb(238,207,15)" fg:x="10649" fg:w="93"/><text x="2.2238%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (57 samples, 0.01%)</title><rect x="1.9918%" y="581" width="0.0106%" height="15" fill="rgb(213,199,42)" fg:x="10746" fg:w="57"/><text x="2.2418%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (61 samples, 0.01%)</title><rect x="2.0207%" y="549" width="0.0113%" height="15" fill="rgb(235,201,11)" fg:x="10902" fg:w="61"/><text x="2.2707%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (104 samples, 0.02%)</title><rect x="2.0146%" y="565" width="0.0193%" height="15" fill="rgb(207,46,11)" fg:x="10869" fg:w="104"/><text x="2.2646%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (182 samples, 0.03%)</title><rect x="2.0024%" y="581" width="0.0337%" height="15" fill="rgb(241,35,35)" fg:x="10803" fg:w="182"/><text x="2.2524%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (95 samples, 0.02%)</title><rect x="2.0463%" y="549" width="0.0176%" height="15" fill="rgb(243,32,47)" fg:x="11040" fg:w="95"/><text x="2.2963%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (177 samples, 0.03%)</title><rect x="2.0404%" y="565" width="0.0328%" height="15" fill="rgb(247,202,23)" fg:x="11008" fg:w="177"/><text x="2.2904%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (201 samples, 0.04%)</title><rect x="2.0361%" y="581" width="0.0373%" height="15" fill="rgb(219,102,11)" fg:x="10985" fg:w="201"/><text x="2.2861%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (699 samples, 0.13%)</title><rect x="1.9445%" y="597" width="0.1296%" height="15" fill="rgb(243,110,44)" fg:x="10491" fg:w="699"/><text x="2.1945%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (743 samples, 0.14%)</title><rect x="1.9425%" y="613" width="0.1377%" height="15" fill="rgb(222,74,54)" fg:x="10480" fg:w="743"/><text x="2.1925%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (81 samples, 0.02%)</title><rect x="2.1408%" y="597" width="0.0150%" height="15" fill="rgb(216,99,12)" fg:x="11550" fg:w="81"/><text x="2.3908%" y="607.50"></text></g><g><title>LinearScan::add_def (62 samples, 0.01%)</title><rect x="2.1558%" y="597" width="0.0115%" height="15" fill="rgb(226,22,26)" fg:x="11631" fg:w="62"/><text x="2.4058%" y="607.50"></text></g><g><title>LinearScan::add_temp (119 samples, 0.02%)</title><rect x="2.1708%" y="597" width="0.0221%" height="15" fill="rgb(217,163,10)" fg:x="11712" fg:w="119"/><text x="2.4208%" y="607.50"></text></g><g><title>LinearScan::create_interval (63 samples, 0.01%)</title><rect x="2.1812%" y="581" width="0.0117%" height="15" fill="rgb(213,25,53)" fg:x="11768" fg:w="63"/><text x="2.4312%" y="591.50"></text></g><g><title>Interval::add_range (58 samples, 0.01%)</title><rect x="2.2042%" y="581" width="0.0108%" height="15" fill="rgb(252,105,26)" fg:x="11892" fg:w="58"/><text x="2.4542%" y="591.50"></text></g><g><title>LinearScan::create_interval (68 samples, 0.01%)</title><rect x="2.2151%" y="581" width="0.0126%" height="15" fill="rgb(220,39,43)" fg:x="11951" fg:w="68"/><text x="2.4651%" y="591.50"></text></g><g><title>LinearScan::add_use (190 samples, 0.04%)</title><rect x="2.1929%" y="597" width="0.0352%" height="15" fill="rgb(229,68,48)" fg:x="11831" fg:w="190"/><text x="2.4429%" y="607.50"></text></g><g><title>LinearScan::build_intervals (878 samples, 0.16%)</title><rect x="2.0802%" y="613" width="0.1627%" height="15" fill="rgb(252,8,32)" fg:x="11223" fg:w="878"/><text x="2.3302%" y="623.50"></text></g><g><title>LinearScan::compute_global_live_sets (63 samples, 0.01%)</title><rect x="2.2429%" y="613" width="0.0117%" height="15" fill="rgb(223,20,43)" fg:x="12101" fg:w="63"/><text x="2.4929%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (128 samples, 0.02%)</title><rect x="2.2798%" y="597" width="0.0237%" height="15" fill="rgb(229,81,49)" fg:x="12300" fg:w="128"/><text x="2.5298%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (322 samples, 0.06%)</title><rect x="2.2546%" y="613" width="0.0597%" height="15" fill="rgb(236,28,36)" fg:x="12164" fg:w="322"/><text x="2.5046%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (70 samples, 0.01%)</title><rect x="2.3143%" y="613" width="0.0130%" height="15" fill="rgb(249,185,26)" fg:x="12486" fg:w="70"/><text x="2.5643%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (86 samples, 0.02%)</title><rect x="2.3416%" y="597" width="0.0159%" height="15" fill="rgb(249,174,33)" fg:x="12633" fg:w="86"/><text x="2.5916%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (150 samples, 0.03%)</title><rect x="2.3364%" y="613" width="0.0278%" height="15" fill="rgb(233,201,37)" fg:x="12605" fg:w="150"/><text x="2.5864%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (3,489 samples, 0.65%)</title><rect x="1.7436%" y="629" width="0.6467%" height="15" fill="rgb(221,78,26)" fg:x="9407" fg:w="3489"/><text x="1.9936%" y="639.50"></text></g><g><title>Compilation::emit_lir (4,522 samples, 0.84%)</title><rect x="1.5527%" y="645" width="0.8382%" height="15" fill="rgb(250,127,30)" fg:x="8377" fg:w="4522"/><text x="1.8027%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.01%)</title><rect x="2.3962%" y="613" width="0.0115%" height="15" fill="rgb(230,49,44)" fg:x="12928" fg:w="62"/><text x="2.6462%" y="623.50"></text></g><g><title>MethodData::allocate (61 samples, 0.01%)</title><rect x="2.3964%" y="597" width="0.0113%" height="15" fill="rgb(229,67,23)" fg:x="12929" fg:w="61"/><text x="2.6464%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (127 samples, 0.02%)</title><rect x="2.3955%" y="629" width="0.0235%" height="15" fill="rgb(249,83,47)" fg:x="12924" fg:w="127"/><text x="2.6455%" y="639.50"></text></g><g><title>Compilation::compile_java_method (10,594 samples, 1.96%)</title><rect x="0.4556%" y="661" width="1.9636%" height="15" fill="rgb(215,43,3)" fg:x="2458" fg:w="10594"/><text x="0.7056%" y="671.50">C..</text></g><g><title>ciMethod::ensure_method_data (135 samples, 0.03%)</title><rect x="2.3942%" y="645" width="0.0250%" height="15" fill="rgb(238,154,13)" fg:x="12917" fg:w="135"/><text x="2.6442%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (88 samples, 0.02%)</title><rect x="2.4411%" y="629" width="0.0163%" height="15" fill="rgb(219,56,2)" fg:x="13170" fg:w="88"/><text x="2.6911%" y="639.50"></text></g><g><title>CodeCache::allocate (62 samples, 0.01%)</title><rect x="2.4574%" y="629" width="0.0115%" height="15" fill="rgb(233,0,4)" fg:x="13258" fg:w="62"/><text x="2.7074%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (152 samples, 0.03%)</title><rect x="2.4808%" y="597" width="0.0282%" height="15" fill="rgb(235,30,7)" fg:x="13384" fg:w="152"/><text x="2.7308%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (158 samples, 0.03%)</title><rect x="2.4804%" y="613" width="0.0293%" height="15" fill="rgb(250,79,13)" fg:x="13382" fg:w="158"/><text x="2.7304%" y="623.50"></text></g><g><title>nmethod::nmethod (329 samples, 0.06%)</title><rect x="2.4798%" y="629" width="0.0610%" height="15" fill="rgb(211,146,34)" fg:x="13379" fg:w="329"/><text x="2.7298%" y="639.50"></text></g><g><title>nmethod::new_nmethod (548 samples, 0.10%)</title><rect x="2.4394%" y="645" width="0.1016%" height="15" fill="rgb(228,22,38)" fg:x="13161" fg:w="548"/><text x="2.6894%" y="655.50"></text></g><g><title>ciEnv::register_method (609 samples, 0.11%)</title><rect x="2.4289%" y="661" width="0.1129%" height="15" fill="rgb(235,168,5)" fg:x="13104" fg:w="609"/><text x="2.6789%" y="671.50"></text></g><g><title>Compilation::compile_method (11,267 samples, 2.09%)</title><rect x="0.4536%" y="677" width="2.0884%" height="15" fill="rgb(221,155,16)" fg:x="2447" fg:w="11267"/><text x="0.7036%" y="687.50">C..</text></g><g><title>Compilation::Compilation (11,283 samples, 2.09%)</title><rect x="0.4519%" y="693" width="2.0913%" height="15" fill="rgb(215,215,53)" fg:x="2438" fg:w="11283"/><text x="0.7019%" y="703.50">C..</text></g><g><title>Compiler::compile_method (11,309 samples, 2.10%)</title><rect x="0.4476%" y="709" width="2.0961%" height="15" fill="rgb(223,4,10)" fg:x="2415" fg:w="11309"/><text x="0.6976%" y="719.50">C..</text></g><g><title>ciObjectFactory::get (65 samples, 0.01%)</title><rect x="2.5610%" y="693" width="0.0120%" height="15" fill="rgb(234,103,6)" fg:x="13817" fg:w="65"/><text x="2.8110%" y="703.50"></text></g><g><title>ciEnv::ciEnv (117 samples, 0.02%)</title><rect x="2.5516%" y="709" width="0.0217%" height="15" fill="rgb(227,97,0)" fg:x="13766" fg:w="117"/><text x="2.8016%" y="719.50"></text></g><g><title>ciSignature::ciSignature (98 samples, 0.02%)</title><rect x="2.5775%" y="645" width="0.0182%" height="15" fill="rgb(234,150,53)" fg:x="13906" fg:w="98"/><text x="2.8275%" y="655.50"></text></g><g><title>ciMethod::ciMethod (113 samples, 0.02%)</title><rect x="2.5751%" y="661" width="0.0209%" height="15" fill="rgb(228,201,54)" fg:x="13893" fg:w="113"/><text x="2.8251%" y="671.50"></text></g><g><title>ciEnv::get_method_from_handle (135 samples, 0.03%)</title><rect x="2.5732%" y="709" width="0.0250%" height="15" fill="rgb(222,22,37)" fg:x="13883" fg:w="135"/><text x="2.8232%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (133 samples, 0.02%)</title><rect x="2.5736%" y="693" width="0.0247%" height="15" fill="rgb(237,53,32)" fg:x="13885" fg:w="133"/><text x="2.8236%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (127 samples, 0.02%)</title><rect x="2.5747%" y="677" width="0.0235%" height="15" fill="rgb(233,25,53)" fg:x="13891" fg:w="127"/><text x="2.8247%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,907 samples, 2.21%)</title><rect x="0.3983%" y="725" width="2.2070%" height="15" fill="rgb(210,40,34)" fg:x="2149" fg:w="11907"/><text x="0.6483%" y="735.50">C..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (54 samples, 0.01%)</title><rect x="2.6053%" y="725" width="0.0100%" height="15" fill="rgb(241,220,44)" fg:x="14056" fg:w="54"/><text x="2.8553%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (430 samples, 0.08%)</title><rect x="2.6305%" y="469" width="0.0797%" height="15" fill="rgb(235,28,35)" fg:x="14192" fg:w="430"/><text x="2.8805%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (424 samples, 0.08%)</title><rect x="2.6316%" y="453" width="0.0786%" height="15" fill="rgb(210,56,17)" fg:x="14198" fg:w="424"/><text x="2.8816%" y="463.50"></text></g><g><title>native_write_msr (422 samples, 0.08%)</title><rect x="2.6320%" y="437" width="0.0782%" height="15" fill="rgb(224,130,29)" fg:x="14200" fg:w="422"/><text x="2.8820%" y="447.50"></text></g><g><title>finish_task_switch (445 samples, 0.08%)</title><rect x="2.6301%" y="485" width="0.0825%" height="15" fill="rgb(235,212,8)" fg:x="14190" fg:w="445"/><text x="2.8801%" y="495.50"></text></g><g><title>futex_wait_queue_me (477 samples, 0.09%)</title><rect x="2.6263%" y="533" width="0.0884%" height="15" fill="rgb(223,33,50)" fg:x="14169" fg:w="477"/><text x="2.8763%" y="543.50"></text></g><g><title>schedule (469 samples, 0.09%)</title><rect x="2.6277%" y="517" width="0.0869%" height="15" fill="rgb(219,149,13)" fg:x="14177" fg:w="469"/><text x="2.8777%" y="527.50"></text></g><g><title>__schedule (468 samples, 0.09%)</title><rect x="2.6279%" y="501" width="0.0867%" height="15" fill="rgb(250,156,29)" fg:x="14178" fg:w="468"/><text x="2.8779%" y="511.50"></text></g><g><title>do_futex (500 samples, 0.09%)</title><rect x="2.6259%" y="565" width="0.0927%" height="15" fill="rgb(216,193,19)" fg:x="14167" fg:w="500"/><text x="2.8759%" y="575.50"></text></g><g><title>futex_wait (499 samples, 0.09%)</title><rect x="2.6261%" y="549" width="0.0925%" height="15" fill="rgb(216,135,14)" fg:x="14168" fg:w="499"/><text x="2.8761%" y="559.50"></text></g><g><title>do_syscall_64 (502 samples, 0.09%)</title><rect x="2.6259%" y="597" width="0.0930%" height="15" fill="rgb(241,47,5)" fg:x="14167" fg:w="502"/><text x="2.8759%" y="607.50"></text></g><g><title>__x64_sys_futex (502 samples, 0.09%)</title><rect x="2.6259%" y="581" width="0.0930%" height="15" fill="rgb(233,42,35)" fg:x="14167" fg:w="502"/><text x="2.8759%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (509 samples, 0.09%)</title><rect x="2.6259%" y="613" width="0.0943%" height="15" fill="rgb(231,13,6)" fg:x="14167" fg:w="509"/><text x="2.8759%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (519 samples, 0.10%)</title><rect x="2.6246%" y="661" width="0.0962%" height="15" fill="rgb(207,181,40)" fg:x="14160" fg:w="519"/><text x="2.8746%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (518 samples, 0.10%)</title><rect x="2.6248%" y="645" width="0.0960%" height="15" fill="rgb(254,173,49)" fg:x="14161" fg:w="518"/><text x="2.8748%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (516 samples, 0.10%)</title><rect x="2.6251%" y="629" width="0.0956%" height="15" fill="rgb(221,1,38)" fg:x="14163" fg:w="516"/><text x="2.8751%" y="639.50"></text></g><g><title>Monitor::IWait (531 samples, 0.10%)</title><rect x="2.6231%" y="693" width="0.0984%" height="15" fill="rgb(206,124,46)" fg:x="14152" fg:w="531"/><text x="2.8731%" y="703.50"></text></g><g><title>os::PlatformEvent::park (525 samples, 0.10%)</title><rect x="2.6242%" y="677" width="0.0973%" height="15" fill="rgb(249,21,11)" fg:x="14158" fg:w="525"/><text x="2.8742%" y="687.50"></text></g><g><title>Monitor::wait (544 samples, 0.10%)</title><rect x="2.6224%" y="709" width="0.1008%" height="15" fill="rgb(222,201,40)" fg:x="14148" fg:w="544"/><text x="2.8724%" y="719.50"></text></g><g><title>TieredThresholdPolicy::select_task (61 samples, 0.01%)</title><rect x="2.7232%" y="709" width="0.0113%" height="15" fill="rgb(235,61,29)" fg:x="14692" fg:w="61"/><text x="2.9732%" y="719.50"></text></g><g><title>CompileQueue::get (661 samples, 0.12%)</title><rect x="2.6153%" y="725" width="0.1225%" height="15" fill="rgb(219,207,3)" fg:x="14110" fg:w="661"/><text x="2.8653%" y="735.50"></text></g><g><title>Thread::call_run (12,646 samples, 2.34%)</title><rect x="0.3959%" y="773" width="2.3440%" height="15" fill="rgb(222,56,46)" fg:x="2136" fg:w="12646"/><text x="0.6459%" y="783.50">T..</text></g><g><title>JavaThread::thread_main_inner (12,645 samples, 2.34%)</title><rect x="0.3961%" y="757" width="2.3438%" height="15" fill="rgb(239,76,54)" fg:x="2137" fg:w="12645"/><text x="0.6461%" y="767.50">J..</text></g><g><title>CompileBroker::compiler_thread_loop (12,645 samples, 2.34%)</title><rect x="0.3961%" y="741" width="2.3438%" height="15" fill="rgb(231,124,27)" fg:x="2137" fg:w="12645"/><text x="0.6461%" y="751.50">C..</text></g><g><title>__GI___clone (12,675 samples, 2.35%)</title><rect x="0.3907%" y="821" width="2.3493%" height="15" fill="rgb(249,195,6)" fg:x="2108" fg:w="12675"/><text x="0.6407%" y="831.50">_..</text></g><g><title>start_thread (12,648 samples, 2.34%)</title><rect x="0.3957%" y="805" width="2.3443%" height="15" fill="rgb(237,174,47)" fg:x="2135" fg:w="12648"/><text x="0.6457%" y="815.50">s..</text></g><g><title>thread_native_entry (12,648 samples, 2.34%)</title><rect x="0.3957%" y="789" width="2.3443%" height="15" fill="rgb(206,201,31)" fg:x="2135" fg:w="12648"/><text x="0.6457%" y="799.50">t..</text></g><g><title>C1_CompilerThre (14,544 samples, 2.70%)</title><rect x="0.0543%" y="837" width="2.6958%" height="15" fill="rgb(231,57,52)" fg:x="293" fg:w="14544"/><text x="0.3043%" y="847.50">C1..</text></g><g><title>ProjNode::pinned (105 samples, 0.02%)</title><rect x="2.8046%" y="805" width="0.0195%" height="15" fill="rgb(248,177,22)" fg:x="15131" fg:w="105"/><text x="3.0546%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (109 samples, 0.02%)</title><rect x="2.8042%" y="821" width="0.0202%" height="15" fill="rgb(215,211,37)" fg:x="15129" fg:w="109"/><text x="3.0542%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (87 samples, 0.02%)</title><rect x="3.0155%" y="805" width="0.0161%" height="15" fill="rgb(241,128,51)" fg:x="16269" fg:w="87"/><text x="3.2655%" y="815.50"></text></g><g><title>MultiNode::is_CFG (69 samples, 0.01%)</title><rect x="3.1360%" y="805" width="0.0128%" height="15" fill="rgb(227,165,31)" fg:x="16919" fg:w="69"/><text x="3.3860%" y="815.50"></text></g><g><title>Node::is_CFG (93 samples, 0.02%)</title><rect x="3.1667%" y="805" width="0.0172%" height="15" fill="rgb(228,167,24)" fg:x="17085" fg:w="93"/><text x="3.4167%" y="815.50"></text></g><g><title>PhiNode::Opcode (62 samples, 0.01%)</title><rect x="3.2802%" y="805" width="0.0115%" height="15" fill="rgb(228,143,12)" fg:x="17697" fg:w="62"/><text x="3.5302%" y="815.50"></text></g><g><title>_dl_update_slotinfo (233 samples, 0.04%)</title><rect x="3.4683%" y="805" width="0.0432%" height="15" fill="rgb(249,149,8)" fg:x="18712" fg:w="233"/><text x="3.7183%" y="815.50"></text></g><g><title>find_lowest_bit (62 samples, 0.01%)</title><rect x="3.5556%" y="805" width="0.0115%" height="15" fill="rgb(243,35,44)" fg:x="19183" fg:w="62"/><text x="3.8056%" y="815.50"></text></g><g><title>update_get_addr (71 samples, 0.01%)</title><rect x="3.6388%" y="805" width="0.0132%" height="15" fill="rgb(246,89,9)" fg:x="19632" fg:w="71"/><text x="3.8888%" y="815.50"></text></g><g><title>[anon] (4,436 samples, 0.82%)</title><rect x="2.8309%" y="821" width="0.8222%" height="15" fill="rgb(233,213,13)" fg:x="15273" fg:w="4436"/><text x="3.0809%" y="831.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (80 samples, 0.01%)</title><rect x="3.6844%" y="549" width="0.0148%" height="15" fill="rgb(233,141,41)" fg:x="19878" fg:w="80"/><text x="3.9344%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (77 samples, 0.01%)</title><rect x="3.6850%" y="533" width="0.0143%" height="15" fill="rgb(239,167,4)" fg:x="19881" fg:w="77"/><text x="3.9350%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (73 samples, 0.01%)</title><rect x="3.6857%" y="517" width="0.0135%" height="15" fill="rgb(209,217,16)" fg:x="19885" fg:w="73"/><text x="3.9357%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (126 samples, 0.02%)</title><rect x="3.6781%" y="565" width="0.0234%" height="15" fill="rgb(219,88,35)" fg:x="19844" fg:w="126"/><text x="3.9281%" y="575.50"></text></g><g><title>ciTypeFlow::df_flow_types (146 samples, 0.03%)</title><rect x="3.6748%" y="597" width="0.0271%" height="15" fill="rgb(220,193,23)" fg:x="19826" fg:w="146"/><text x="3.9248%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (146 samples, 0.03%)</title><rect x="3.6748%" y="581" width="0.0271%" height="15" fill="rgb(230,90,52)" fg:x="19826" fg:w="146"/><text x="3.9248%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (151 samples, 0.03%)</title><rect x="3.6744%" y="629" width="0.0280%" height="15" fill="rgb(252,106,19)" fg:x="19824" fg:w="151"/><text x="3.9244%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (151 samples, 0.03%)</title><rect x="3.6744%" y="613" width="0.0280%" height="15" fill="rgb(206,74,20)" fg:x="19824" fg:w="151"/><text x="3.9244%" y="623.50"></text></g><g><title>InlineTree::ok_to_inline (159 samples, 0.03%)</title><rect x="3.6731%" y="661" width="0.0295%" height="15" fill="rgb(230,138,44)" fg:x="19817" fg:w="159"/><text x="3.9231%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (152 samples, 0.03%)</title><rect x="3.6744%" y="645" width="0.0282%" height="15" fill="rgb(235,182,43)" fg:x="19824" fg:w="152"/><text x="3.9244%" y="655.50"></text></g><g><title>Compile::call_generator (203 samples, 0.04%)</title><rect x="3.6659%" y="677" width="0.0376%" height="15" fill="rgb(242,16,51)" fg:x="19778" fg:w="203"/><text x="3.9159%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (57 samples, 0.01%)</title><rect x="3.7371%" y="453" width="0.0106%" height="15" fill="rgb(248,9,4)" fg:x="20162" fg:w="57"/><text x="3.9871%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (56 samples, 0.01%)</title><rect x="3.7373%" y="437" width="0.0104%" height="15" fill="rgb(210,31,22)" fg:x="20163" fg:w="56"/><text x="3.9873%" y="447.50"></text></g><g><title>ciTypeFlow::df_flow_types (115 samples, 0.02%)</title><rect x="3.7284%" y="501" width="0.0213%" height="15" fill="rgb(239,54,39)" fg:x="20115" fg:w="115"/><text x="3.9784%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (103 samples, 0.02%)</title><rect x="3.7306%" y="485" width="0.0191%" height="15" fill="rgb(230,99,41)" fg:x="20127" fg:w="103"/><text x="3.9806%" y="495.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (94 samples, 0.02%)</title><rect x="3.7323%" y="469" width="0.0174%" height="15" fill="rgb(253,106,12)" fg:x="20136" fg:w="94"/><text x="3.9823%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (126 samples, 0.02%)</title><rect x="3.7278%" y="533" width="0.0234%" height="15" fill="rgb(213,46,41)" fg:x="20112" fg:w="126"/><text x="3.9778%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (126 samples, 0.02%)</title><rect x="3.7278%" y="517" width="0.0234%" height="15" fill="rgb(215,133,35)" fg:x="20112" fg:w="126"/><text x="3.9778%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (167 samples, 0.03%)</title><rect x="3.7209%" y="565" width="0.0310%" height="15" fill="rgb(213,28,5)" fg:x="20075" fg:w="167"/><text x="3.9709%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (138 samples, 0.03%)</title><rect x="3.7263%" y="549" width="0.0256%" height="15" fill="rgb(215,77,49)" fg:x="20104" fg:w="138"/><text x="3.9763%" y="559.50"></text></g><g><title>Compile::call_generator (211 samples, 0.04%)</title><rect x="3.7148%" y="581" width="0.0391%" height="15" fill="rgb(248,100,22)" fg:x="20042" fg:w="211"/><text x="3.9648%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (56 samples, 0.01%)</title><rect x="3.7999%" y="437" width="0.0104%" height="15" fill="rgb(208,67,9)" fg:x="20501" fg:w="56"/><text x="4.0499%" y="447.50"></text></g><g><title>ciTypeFlow::flow_types (55 samples, 0.01%)</title><rect x="3.8001%" y="421" width="0.0102%" height="15" fill="rgb(219,133,21)" fg:x="20502" fg:w="55"/><text x="4.0501%" y="431.50"></text></g><g><title>InlineTree::ok_to_inline (86 samples, 0.02%)</title><rect x="3.7947%" y="469" width="0.0159%" height="15" fill="rgb(246,46,29)" fg:x="20473" fg:w="86"/><text x="4.0447%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (67 samples, 0.01%)</title><rect x="3.7982%" y="453" width="0.0124%" height="15" fill="rgb(246,185,52)" fg:x="20492" fg:w="67"/><text x="4.0482%" y="463.50"></text></g><g><title>Compile::call_generator (111 samples, 0.02%)</title><rect x="3.7914%" y="485" width="0.0206%" height="15" fill="rgb(252,136,11)" fg:x="20455" fg:w="111"/><text x="4.0414%" y="495.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="3.8561%" y="341" width="0.0126%" height="15" fill="rgb(219,138,53)" fg:x="20804" fg:w="68"/><text x="4.1061%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.01%)</title><rect x="3.8568%" y="325" width="0.0119%" height="15" fill="rgb(211,51,23)" fg:x="20808" fg:w="64"/><text x="4.1068%" y="335.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.01%)</title><rect x="3.8555%" y="357" width="0.0141%" height="15" fill="rgb(247,221,28)" fg:x="20801" fg:w="76"/><text x="4.1055%" y="367.50"></text></g><g><title>Parse::Parse (126 samples, 0.02%)</title><rect x="3.8511%" y="373" width="0.0234%" height="15" fill="rgb(251,222,45)" fg:x="20777" fg:w="126"/><text x="4.1011%" y="383.50"></text></g><g><title>ParseGenerator::generate (129 samples, 0.02%)</title><rect x="3.8507%" y="389" width="0.0239%" height="15" fill="rgb(217,162,53)" fg:x="20775" fg:w="129"/><text x="4.1007%" y="399.50"></text></g><g><title>Parse::do_call (252 samples, 0.05%)</title><rect x="3.8355%" y="405" width="0.0467%" height="15" fill="rgb(229,93,14)" fg:x="20693" fg:w="252"/><text x="4.0855%" y="415.50"></text></g><g><title>Parse::do_field_access (96 samples, 0.02%)</title><rect x="3.8839%" y="405" width="0.0178%" height="15" fill="rgb(209,67,49)" fg:x="20954" fg:w="96"/><text x="4.1339%" y="415.50"></text></g><g><title>Parse::do_one_block (489 samples, 0.09%)</title><rect x="3.8288%" y="437" width="0.0906%" height="15" fill="rgb(213,87,29)" fg:x="20657" fg:w="489"/><text x="4.0788%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (474 samples, 0.09%)</title><rect x="3.8316%" y="421" width="0.0879%" height="15" fill="rgb(205,151,52)" fg:x="20672" fg:w="474"/><text x="4.0816%" y="431.50"></text></g><g><title>Parse::do_all_blocks (498 samples, 0.09%)</title><rect x="3.8285%" y="453" width="0.0923%" height="15" fill="rgb(253,215,39)" fg:x="20655" fg:w="498"/><text x="4.0785%" y="463.50"></text></g><g><title>ParseGenerator::generate (565 samples, 0.10%)</title><rect x="3.8222%" y="485" width="0.1047%" height="15" fill="rgb(221,220,41)" fg:x="20621" fg:w="565"/><text x="4.0722%" y="495.50"></text></g><g><title>Parse::Parse (564 samples, 0.10%)</title><rect x="3.8223%" y="469" width="0.1045%" height="15" fill="rgb(218,133,21)" fg:x="20622" fg:w="564"/><text x="4.0723%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (80 samples, 0.01%)</title><rect x="3.9269%" y="485" width="0.0148%" height="15" fill="rgb(221,193,43)" fg:x="21186" fg:w="80"/><text x="4.1769%" y="495.50"></text></g><g><title>Parse::do_call (846 samples, 0.16%)</title><rect x="3.7914%" y="501" width="0.1568%" height="15" fill="rgb(240,128,52)" fg:x="20455" fg:w="846"/><text x="4.0414%" y="511.50"></text></g><g><title>Parse::do_get_xxx (59 samples, 0.01%)</title><rect x="3.9508%" y="485" width="0.0109%" height="15" fill="rgb(253,114,12)" fg:x="21315" fg:w="59"/><text x="4.2008%" y="495.50"></text></g><g><title>Parse::do_field_access (126 samples, 0.02%)</title><rect x="3.9497%" y="501" width="0.0234%" height="15" fill="rgb(215,223,47)" fg:x="21309" fg:w="126"/><text x="4.1997%" y="511.50"></text></g><g><title>Parse::do_one_block (1,160 samples, 0.22%)</title><rect x="3.7793%" y="533" width="0.2150%" height="15" fill="rgb(248,225,23)" fg:x="20390" fg:w="1160"/><text x="4.0293%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,144 samples, 0.21%)</title><rect x="3.7823%" y="517" width="0.2120%" height="15" fill="rgb(250,108,0)" fg:x="20406" fg:w="1144"/><text x="4.0323%" y="527.50"></text></g><g><title>Parse::do_all_blocks (1,177 samples, 0.22%)</title><rect x="3.7782%" y="549" width="0.2182%" height="15" fill="rgb(228,208,7)" fg:x="20384" fg:w="1177"/><text x="4.0282%" y="559.50"></text></g><g><title>ParseGenerator::generate (1,278 samples, 0.24%)</title><rect x="3.7669%" y="581" width="0.2369%" height="15" fill="rgb(244,45,10)" fg:x="20323" fg:w="1278"/><text x="4.0169%" y="591.50"></text></g><g><title>Parse::Parse (1,278 samples, 0.24%)</title><rect x="3.7669%" y="565" width="0.2369%" height="15" fill="rgb(207,125,25)" fg:x="20323" fg:w="1278"/><text x="4.0169%" y="575.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.01%)</title><rect x="4.0155%" y="421" width="0.0119%" height="15" fill="rgb(210,195,18)" fg:x="21664" fg:w="64"/><text x="4.2655%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="4.0166%" y="405" width="0.0108%" height="15" fill="rgb(249,80,12)" fg:x="21670" fg:w="58"/><text x="4.2666%" y="415.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="4.0153%" y="437" width="0.0124%" height="15" fill="rgb(221,65,9)" fg:x="21663" fg:w="67"/><text x="4.2653%" y="447.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.01%)</title><rect x="4.0144%" y="469" width="0.0139%" height="15" fill="rgb(235,49,36)" fg:x="21658" fg:w="75"/><text x="4.2644%" y="479.50"></text></g><g><title>Parse::Parse (75 samples, 0.01%)</title><rect x="4.0144%" y="453" width="0.0139%" height="15" fill="rgb(225,32,20)" fg:x="21658" fg:w="75"/><text x="4.2644%" y="463.50"></text></g><g><title>Parse::do_call (112 samples, 0.02%)</title><rect x="4.0099%" y="485" width="0.0208%" height="15" fill="rgb(215,141,46)" fg:x="21634" fg:w="112"/><text x="4.2599%" y="495.50"></text></g><g><title>Parse::do_one_block (149 samples, 0.03%)</title><rect x="4.0081%" y="517" width="0.0276%" height="15" fill="rgb(250,160,47)" fg:x="21624" fg:w="149"/><text x="4.2581%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (144 samples, 0.03%)</title><rect x="4.0090%" y="501" width="0.0267%" height="15" fill="rgb(216,222,40)" fg:x="21629" fg:w="144"/><text x="4.2590%" y="511.50"></text></g><g><title>Parse::do_all_blocks (151 samples, 0.03%)</title><rect x="4.0081%" y="533" width="0.0280%" height="15" fill="rgb(234,217,39)" fg:x="21624" fg:w="151"/><text x="4.2581%" y="543.50"></text></g><g><title>ParseGenerator::generate (157 samples, 0.03%)</title><rect x="4.0079%" y="565" width="0.0291%" height="15" fill="rgb(207,178,40)" fg:x="21623" fg:w="157"/><text x="4.2579%" y="575.50"></text></g><g><title>Parse::Parse (157 samples, 0.03%)</title><rect x="4.0079%" y="549" width="0.0291%" height="15" fill="rgb(221,136,13)" fg:x="21623" fg:w="157"/><text x="4.2579%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (213 samples, 0.04%)</title><rect x="4.0038%" y="581" width="0.0395%" height="15" fill="rgb(249,199,10)" fg:x="21601" fg:w="213"/><text x="4.2538%" y="591.50"></text></g><g><title>Parse::do_call (1,801 samples, 0.33%)</title><rect x="3.7148%" y="597" width="0.3338%" height="15" fill="rgb(249,222,13)" fg:x="20042" fg:w="1801"/><text x="3.9648%" y="607.50"></text></g><g><title>GraphKit::access_store_at (70 samples, 0.01%)</title><rect x="4.0629%" y="565" width="0.0130%" height="15" fill="rgb(244,185,38)" fg:x="21920" fg:w="70"/><text x="4.3129%" y="575.50"></text></g><g><title>BarrierSetC2::store_at (70 samples, 0.01%)</title><rect x="4.0629%" y="549" width="0.0130%" height="15" fill="rgb(236,202,9)" fg:x="21920" fg:w="70"/><text x="4.3129%" y="559.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (61 samples, 0.01%)</title><rect x="4.0646%" y="533" width="0.0113%" height="15" fill="rgb(250,229,37)" fg:x="21929" fg:w="61"/><text x="4.3146%" y="543.50"></text></g><g><title>Parse::do_put_xxx (76 samples, 0.01%)</title><rect x="4.0629%" y="581" width="0.0141%" height="15" fill="rgb(206,174,23)" fg:x="21920" fg:w="76"/><text x="4.3129%" y="591.50"></text></g><g><title>Parse::do_field_access (143 samples, 0.03%)</title><rect x="4.0512%" y="597" width="0.0265%" height="15" fill="rgb(211,33,43)" fg:x="21857" fg:w="143"/><text x="4.3012%" y="607.50"></text></g><g><title>Parse::do_one_block (2,063 samples, 0.38%)</title><rect x="3.7076%" y="629" width="0.3824%" height="15" fill="rgb(245,58,50)" fg:x="20003" fg:w="2063"/><text x="3.9576%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (2,056 samples, 0.38%)</title><rect x="3.7089%" y="613" width="0.3811%" height="15" fill="rgb(244,68,36)" fg:x="20010" fg:w="2056"/><text x="3.9589%" y="623.50"></text></g><g><title>Parse::do_all_blocks (2,066 samples, 0.38%)</title><rect x="3.7072%" y="645" width="0.3829%" height="15" fill="rgb(232,229,15)" fg:x="20001" fg:w="2066"/><text x="3.9572%" y="655.50"></text></g><g><title>ParseGenerator::generate (2,084 samples, 0.39%)</title><rect x="3.7041%" y="677" width="0.3863%" height="15" fill="rgb(254,30,23)" fg:x="19984" fg:w="2084"/><text x="3.9541%" y="687.50"></text></g><g><title>Parse::Parse (2,084 samples, 0.39%)</title><rect x="3.7041%" y="661" width="0.3863%" height="15" fill="rgb(235,160,14)" fg:x="19984" fg:w="2084"/><text x="3.9541%" y="671.50"></text></g><g><title>Parse::do_one_block (107 samples, 0.02%)</title><rect x="4.1178%" y="421" width="0.0198%" height="15" fill="rgb(212,155,44)" fg:x="22216" fg:w="107"/><text x="4.3678%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.02%)</title><rect x="4.1182%" y="405" width="0.0195%" height="15" fill="rgb(226,2,50)" fg:x="22218" fg:w="105"/><text x="4.3682%" y="415.50"></text></g><g><title>Parse::do_all_blocks (110 samples, 0.02%)</title><rect x="4.1176%" y="437" width="0.0204%" height="15" fill="rgb(234,177,6)" fg:x="22215" fg:w="110"/><text x="4.3676%" y="447.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.02%)</title><rect x="4.1165%" y="469" width="0.0224%" height="15" fill="rgb(217,24,9)" fg:x="22209" fg:w="121"/><text x="4.3665%" y="479.50"></text></g><g><title>Parse::Parse (121 samples, 0.02%)</title><rect x="4.1165%" y="453" width="0.0224%" height="15" fill="rgb(220,13,46)" fg:x="22209" fg:w="121"/><text x="4.3665%" y="463.50"></text></g><g><title>Parse::do_call (169 samples, 0.03%)</title><rect x="4.1111%" y="485" width="0.0313%" height="15" fill="rgb(239,221,27)" fg:x="22180" fg:w="169"/><text x="4.3611%" y="495.50"></text></g><g><title>Parse::do_one_block (236 samples, 0.04%)</title><rect x="4.1085%" y="517" width="0.0437%" height="15" fill="rgb(222,198,25)" fg:x="22166" fg:w="236"/><text x="4.3585%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (232 samples, 0.04%)</title><rect x="4.1093%" y="501" width="0.0430%" height="15" fill="rgb(211,99,13)" fg:x="22170" fg:w="232"/><text x="4.3593%" y="511.50"></text></g><g><title>Parse::do_all_blocks (238 samples, 0.04%)</title><rect x="4.1083%" y="533" width="0.0441%" height="15" fill="rgb(232,111,31)" fg:x="22165" fg:w="238"/><text x="4.3583%" y="543.50"></text></g><g><title>ParseGenerator::generate (262 samples, 0.05%)</title><rect x="4.1061%" y="565" width="0.0486%" height="15" fill="rgb(245,82,37)" fg:x="22153" fg:w="262"/><text x="4.3561%" y="575.50"></text></g><g><title>Parse::Parse (261 samples, 0.05%)</title><rect x="4.1063%" y="549" width="0.0484%" height="15" fill="rgb(227,149,46)" fg:x="22154" fg:w="261"/><text x="4.3563%" y="559.50"></text></g><g><title>Parse::do_call (375 samples, 0.07%)</title><rect x="4.0939%" y="581" width="0.0695%" height="15" fill="rgb(218,36,50)" fg:x="22087" fg:w="375"/><text x="4.3439%" y="591.50"></text></g><g><title>Parse::do_one_block (440 samples, 0.08%)</title><rect x="4.0913%" y="613" width="0.0816%" height="15" fill="rgb(226,80,48)" fg:x="22073" fg:w="440"/><text x="4.3413%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (439 samples, 0.08%)</title><rect x="4.0915%" y="597" width="0.0814%" height="15" fill="rgb(238,224,15)" fg:x="22074" fg:w="439"/><text x="4.3415%" y="607.50"></text></g><g><title>Parse::do_all_blocks (441 samples, 0.08%)</title><rect x="4.0913%" y="629" width="0.0817%" height="15" fill="rgb(241,136,10)" fg:x="22073" fg:w="441"/><text x="4.3413%" y="639.50"></text></g><g><title>ParseGenerator::generate (443 samples, 0.08%)</title><rect x="4.0911%" y="661" width="0.0821%" height="15" fill="rgb(208,32,45)" fg:x="22072" fg:w="443"/><text x="4.3411%" y="671.50"></text></g><g><title>Parse::Parse (443 samples, 0.08%)</title><rect x="4.0911%" y="645" width="0.0821%" height="15" fill="rgb(207,135,9)" fg:x="22072" fg:w="443"/><text x="4.3411%" y="655.50"></text></g><g><title>Parse::do_call (71 samples, 0.01%)</title><rect x="4.1745%" y="565" width="0.0132%" height="15" fill="rgb(206,86,44)" fg:x="22522" fg:w="71"/><text x="4.4245%" y="575.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.01%)</title><rect x="4.1736%" y="597" width="0.0146%" height="15" fill="rgb(245,177,15)" fg:x="22517" fg:w="79"/><text x="4.4236%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.01%)</title><rect x="4.1738%" y="581" width="0.0145%" height="15" fill="rgb(206,64,50)" fg:x="22518" fg:w="78"/><text x="4.4238%" y="591.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.01%)</title><rect x="4.1736%" y="613" width="0.0148%" height="15" fill="rgb(234,36,40)" fg:x="22517" fg:w="80"/><text x="4.4236%" y="623.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="4.1732%" y="645" width="0.0161%" height="15" fill="rgb(213,64,8)" fg:x="22515" fg:w="87"/><text x="4.4232%" y="655.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="4.1732%" y="629" width="0.0161%" height="15" fill="rgb(210,75,36)" fg:x="22515" fg:w="87"/><text x="4.4232%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (89 samples, 0.02%)</title><rect x="4.1732%" y="661" width="0.0165%" height="15" fill="rgb(229,88,21)" fg:x="22515" fg:w="89"/><text x="4.4232%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (538 samples, 0.10%)</title><rect x="4.0904%" y="677" width="0.0997%" height="15" fill="rgb(252,204,47)" fg:x="22068" fg:w="538"/><text x="4.3404%" y="687.50"></text></g><g><title>Parse::do_call (2,848 samples, 0.53%)</title><rect x="3.6659%" y="693" width="0.5279%" height="15" fill="rgb(208,77,27)" fg:x="19778" fg:w="2848"/><text x="3.9159%" y="703.50"></text></g><g><title>Parse::do_all_blocks (2,866 samples, 0.53%)</title><rect x="3.6657%" y="741" width="0.5312%" height="15" fill="rgb(221,76,26)" fg:x="19777" fg:w="2866"/><text x="3.9157%" y="751.50"></text></g><g><title>Parse::do_one_block (2,866 samples, 0.53%)</title><rect x="3.6657%" y="725" width="0.5312%" height="15" fill="rgb(225,139,18)" fg:x="19777" fg:w="2866"/><text x="3.9157%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (2,866 samples, 0.53%)</title><rect x="3.6657%" y="709" width="0.5312%" height="15" fill="rgb(230,137,11)" fg:x="19777" fg:w="2866"/><text x="3.9157%" y="719.50"></text></g><g><title>C2Compiler::compile_method (2,897 samples, 0.54%)</title><rect x="3.6602%" y="805" width="0.5370%" height="15" fill="rgb(212,28,1)" fg:x="19747" fg:w="2897"/><text x="3.9102%" y="815.50"></text></g><g><title>Compile::Compile (2,897 samples, 0.54%)</title><rect x="3.6602%" y="789" width="0.5370%" height="15" fill="rgb(248,164,17)" fg:x="19747" fg:w="2897"/><text x="3.9102%" y="799.50"></text></g><g><title>ParseGenerator::generate (2,867 samples, 0.53%)</title><rect x="3.6657%" y="773" width="0.5314%" height="15" fill="rgb(222,171,42)" fg:x="19777" fg:w="2867"/><text x="3.9157%" y="783.50"></text></g><g><title>Parse::Parse (2,867 samples, 0.53%)</title><rect x="3.6657%" y="757" width="0.5314%" height="15" fill="rgb(243,84,45)" fg:x="19777" fg:w="2867"/><text x="3.9157%" y="767.50"></text></g><g><title>MachSpillCopyNode::implementation (76 samples, 0.01%)</title><rect x="4.1979%" y="725" width="0.0141%" height="15" fill="rgb(252,49,23)" fg:x="22648" fg:w="76"/><text x="4.4479%" y="735.50"></text></g><g><title>Compile::Output (86 samples, 0.02%)</title><rect x="4.1973%" y="789" width="0.0159%" height="15" fill="rgb(215,19,7)" fg:x="22645" fg:w="86"/><text x="4.4473%" y="799.50"></text></g><g><title>Compile::init_buffer (86 samples, 0.02%)</title><rect x="4.1973%" y="773" width="0.0159%" height="15" fill="rgb(238,81,41)" fg:x="22645" fg:w="86"/><text x="4.4473%" y="783.50"></text></g><g><title>Compile::shorten_branches (84 samples, 0.02%)</title><rect x="4.1977%" y="757" width="0.0156%" height="15" fill="rgb(210,199,37)" fg:x="22647" fg:w="84"/><text x="4.4477%" y="767.50"></text></g><g><title>Compile::scratch_emit_size (84 samples, 0.02%)</title><rect x="4.1977%" y="741" width="0.0156%" height="15" fill="rgb(244,192,49)" fg:x="22647" fg:w="84"/><text x="4.4477%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (64 samples, 0.01%)</title><rect x="4.2182%" y="757" width="0.0119%" height="15" fill="rgb(226,211,11)" fg:x="22758" fg:w="64"/><text x="4.4682%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (64 samples, 0.01%)</title><rect x="4.2182%" y="741" width="0.0119%" height="15" fill="rgb(236,162,54)" fg:x="22758" fg:w="64"/><text x="4.4682%" y="751.50"></text></g><g><title>PhaseCFG::sched_call (260 samples, 0.05%)</title><rect x="4.2301%" y="741" width="0.0482%" height="15" fill="rgb(220,229,9)" fg:x="22822" fg:w="260"/><text x="4.4801%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (265 samples, 0.05%)</title><rect x="4.2301%" y="757" width="0.0491%" height="15" fill="rgb(250,87,22)" fg:x="22822" fg:w="265"/><text x="4.4801%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (332 samples, 0.06%)</title><rect x="4.2179%" y="789" width="0.0615%" height="15" fill="rgb(239,43,17)" fg:x="22756" fg:w="332"/><text x="4.4679%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (332 samples, 0.06%)</title><rect x="4.2179%" y="773" width="0.0615%" height="15" fill="rgb(231,177,25)" fg:x="22756" fg:w="332"/><text x="4.4679%" y="783.50"></text></g><g><title>Compile::Code_Gen (500 samples, 0.09%)</title><rect x="4.1973%" y="805" width="0.0927%" height="15" fill="rgb(219,179,1)" fg:x="22645" fg:w="500"/><text x="4.4473%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (57 samples, 0.01%)</title><rect x="4.2794%" y="789" width="0.0106%" height="15" fill="rgb(238,219,53)" fg:x="23088" fg:w="57"/><text x="4.5294%" y="799.50"></text></g><g><title>OopFlow::compute_reach (288 samples, 0.05%)</title><rect x="4.4103%" y="741" width="0.0534%" height="15" fill="rgb(232,167,36)" fg:x="23794" fg:w="288"/><text x="4.6603%" y="751.50"></text></g><g><title>OopFlow::build_oop_map (164 samples, 0.03%)</title><rect x="4.4333%" y="725" width="0.0304%" height="15" fill="rgb(244,19,51)" fg:x="23918" fg:w="164"/><text x="4.6833%" y="735.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (118 samples, 0.02%)</title><rect x="4.4674%" y="741" width="0.0219%" height="15" fill="rgb(224,6,22)" fg:x="24102" fg:w="118"/><text x="4.7174%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (1,073 samples, 0.20%)</title><rect x="4.2935%" y="757" width="0.1989%" height="15" fill="rgb(224,145,5)" fg:x="23164" fg:w="1073"/><text x="4.5435%" y="767.50"></text></g><g><title>Compile::init_scratch_buffer_blob (68 samples, 0.01%)</title><rect x="4.4974%" y="741" width="0.0126%" height="15" fill="rgb(234,130,49)" fg:x="24264" fg:w="68"/><text x="4.7474%" y="751.50"></text></g><g><title>BufferBlob::create (66 samples, 0.01%)</title><rect x="4.4978%" y="725" width="0.0122%" height="15" fill="rgb(254,6,2)" fg:x="24266" fg:w="66"/><text x="4.7478%" y="735.50"></text></g><g><title>Compile::scratch_emit_size (205 samples, 0.04%)</title><rect x="4.5447%" y="725" width="0.0380%" height="15" fill="rgb(208,96,46)" fg:x="24519" fg:w="205"/><text x="4.7947%" y="735.50"></text></g><g><title>Compile::shorten_branches (430 samples, 0.08%)</title><rect x="4.5100%" y="741" width="0.0797%" height="15" fill="rgb(239,3,39)" fg:x="24332" fg:w="430"/><text x="4.7600%" y="751.50"></text></g><g><title>Compile::init_buffer (527 samples, 0.10%)</title><rect x="4.4924%" y="757" width="0.0977%" height="15" fill="rgb(233,210,1)" fg:x="24237" fg:w="527"/><text x="4.7424%" y="767.50"></text></g><g><title>Compile::Output (1,616 samples, 0.30%)</title><rect x="4.2907%" y="773" width="0.2995%" height="15" fill="rgb(244,137,37)" fg:x="23149" fg:w="1616"/><text x="4.5407%" y="783.50"></text></g><g><title>Compile::FillLocArray (66 samples, 0.01%)</title><rect x="4.6355%" y="741" width="0.0122%" height="15" fill="rgb(240,136,2)" fg:x="25009" fg:w="66"/><text x="4.8855%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (62 samples, 0.01%)</title><rect x="4.6518%" y="725" width="0.0115%" height="15" fill="rgb(239,18,37)" fg:x="25097" fg:w="62"/><text x="4.9018%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (90 samples, 0.02%)</title><rect x="4.6486%" y="741" width="0.0167%" height="15" fill="rgb(218,185,22)" fg:x="25080" fg:w="90"/><text x="4.8986%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (60 samples, 0.01%)</title><rect x="4.6692%" y="725" width="0.0111%" height="15" fill="rgb(225,218,4)" fg:x="25191" fg:w="60"/><text x="4.9192%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (85 samples, 0.02%)</title><rect x="4.6653%" y="741" width="0.0158%" height="15" fill="rgb(230,182,32)" fg:x="25170" fg:w="85"/><text x="4.9153%" y="751.50"></text></g><g><title>Compile::Process_OopMap_Node (334 samples, 0.06%)</title><rect x="4.6281%" y="757" width="0.0619%" height="15" fill="rgb(242,56,43)" fg:x="24969" fg:w="334"/><text x="4.8781%" y="767.50"></text></g><g><title>Compile::valid_bundle_info (85 samples, 0.02%)</title><rect x="4.6918%" y="757" width="0.0158%" height="15" fill="rgb(233,99,24)" fg:x="25313" fg:w="85"/><text x="4.9418%" y="767.50"></text></g><g><title>Compile::fill_buffer (815 samples, 0.15%)</title><rect x="4.5906%" y="773" width="0.1511%" height="15" fill="rgb(234,209,42)" fg:x="24767" fg:w="815"/><text x="4.8406%" y="783.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (63 samples, 0.01%)</title><rect x="4.7502%" y="757" width="0.0117%" height="15" fill="rgb(227,7,12)" fg:x="25628" fg:w="63"/><text x="5.0002%" y="767.50"></text></g><g><title>Matcher::find_shared (504 samples, 0.09%)</title><rect x="4.7619%" y="757" width="0.0934%" height="15" fill="rgb(245,203,43)" fg:x="25691" fg:w="504"/><text x="5.0119%" y="767.50"></text></g><g><title>Arena::contains (638 samples, 0.12%)</title><rect x="4.9534%" y="741" width="0.1183%" height="15" fill="rgb(238,205,33)" fg:x="26724" fg:w="638"/><text x="5.2034%" y="751.50"></text></g><g><title>Matcher::match_tree (153 samples, 0.03%)</title><rect x="5.0866%" y="725" width="0.0284%" height="15" fill="rgb(231,56,7)" fg:x="27443" fg:w="153"/><text x="5.3366%" y="735.50"></text></g><g><title>Matcher::match_sfpt (200 samples, 0.04%)</title><rect x="5.0816%" y="741" width="0.0371%" height="15" fill="rgb(244,186,29)" fg:x="27416" fg:w="200"/><text x="5.3316%" y="751.50"></text></g><g><title>Matcher::Label_Root (75 samples, 0.01%)</title><rect x="5.2114%" y="677" width="0.0139%" height="15" fill="rgb(234,111,31)" fg:x="28116" fg:w="75"/><text x="5.4614%" y="687.50"></text></g><g><title>State::DFA (82 samples, 0.02%)</title><rect x="5.2253%" y="677" width="0.0152%" height="15" fill="rgb(241,149,10)" fg:x="28191" fg:w="82"/><text x="5.4753%" y="687.50"></text></g><g><title>Matcher::Label_Root (186 samples, 0.03%)</title><rect x="5.2071%" y="693" width="0.0345%" height="15" fill="rgb(249,206,44)" fg:x="28093" fg:w="186"/><text x="5.4571%" y="703.50"></text></g><g><title>State::_sub_Op_AddP (60 samples, 0.01%)</title><rect x="5.2466%" y="677" width="0.0111%" height="15" fill="rgb(251,153,30)" fg:x="28306" fg:w="60"/><text x="5.4966%" y="687.50"></text></g><g><title>State::DFA (114 samples, 0.02%)</title><rect x="5.2429%" y="693" width="0.0211%" height="15" fill="rgb(239,152,38)" fg:x="28286" fg:w="114"/><text x="5.4929%" y="703.50"></text></g><g><title>Matcher::Label_Root (423 samples, 0.08%)</title><rect x="5.1878%" y="709" width="0.0784%" height="15" fill="rgb(249,139,47)" fg:x="27989" fg:w="423"/><text x="5.4378%" y="719.50"></text></g><g><title>State::DFA (58 samples, 0.01%)</title><rect x="5.2673%" y="709" width="0.0108%" height="15" fill="rgb(244,64,35)" fg:x="28418" fg:w="58"/><text x="5.5173%" y="719.50"></text></g><g><title>Matcher::Label_Root (663 samples, 0.12%)</title><rect x="5.1669%" y="725" width="0.1229%" height="15" fill="rgb(216,46,15)" fg:x="27876" fg:w="663"/><text x="5.4169%" y="735.50"></text></g><g><title>Matcher::ReduceInst_Interior (74 samples, 0.01%)</title><rect x="5.3033%" y="677" width="0.0137%" height="15" fill="rgb(250,74,19)" fg:x="28612" fg:w="74"/><text x="5.5533%" y="687.50"></text></g><g><title>Matcher::ReduceInst (122 samples, 0.02%)</title><rect x="5.3014%" y="693" width="0.0226%" height="15" fill="rgb(249,42,33)" fg:x="28602" fg:w="122"/><text x="5.5514%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (219 samples, 0.04%)</title><rect x="5.2953%" y="709" width="0.0406%" height="15" fill="rgb(242,149,17)" fg:x="28569" fg:w="219"/><text x="5.5453%" y="719.50"></text></g><g><title>State::MachNodeGenerator (89 samples, 0.02%)</title><rect x="5.3441%" y="709" width="0.0165%" height="15" fill="rgb(244,29,21)" fg:x="28832" fg:w="89"/><text x="5.5941%" y="719.50"></text></g><g><title>Matcher::ReduceInst (424 samples, 0.08%)</title><rect x="5.2898%" y="725" width="0.0786%" height="15" fill="rgb(220,130,37)" fg:x="28539" fg:w="424"/><text x="5.5398%" y="735.50"></text></g><g><title>Matcher::match_tree (1,366 samples, 0.25%)</title><rect x="5.1187%" y="741" width="0.2532%" height="15" fill="rgb(211,67,2)" fg:x="27616" fg:w="1366"/><text x="5.3687%" y="751.50"></text></g><g><title>Node::clone (117 samples, 0.02%)</title><rect x="5.3737%" y="741" width="0.0217%" height="15" fill="rgb(235,68,52)" fg:x="28992" fg:w="117"/><text x="5.6237%" y="751.50"></text></g><g><title>Matcher::xform (2,971 samples, 0.55%)</title><rect x="4.8572%" y="757" width="0.5507%" height="15" fill="rgb(246,142,3)" fg:x="26205" fg:w="2971"/><text x="5.1072%" y="767.50"></text></g><g><title>Matcher::match (3,597 samples, 0.67%)</title><rect x="4.7434%" y="773" width="0.6667%" height="15" fill="rgb(241,25,7)" fg:x="25591" fg:w="3597"/><text x="4.9934%" y="783.50"></text></g><g><title>PhaseBlockLayout::find_edges (94 samples, 0.02%)</title><rect x="5.4106%" y="757" width="0.0174%" height="15" fill="rgb(242,119,39)" fg:x="29191" fg:w="94"/><text x="5.6606%" y="767.50"></text></g><g><title>PhaseBlockLayout::grow_traces (58 samples, 0.01%)</title><rect x="5.4280%" y="757" width="0.0108%" height="15" fill="rgb(241,98,45)" fg:x="29285" fg:w="58"/><text x="5.6780%" y="767.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (213 samples, 0.04%)</title><rect x="5.4101%" y="773" width="0.0395%" height="15" fill="rgb(254,28,30)" fg:x="29188" fg:w="213"/><text x="5.6601%" y="783.50"></text></g><g><title>PhaseCFG::PhaseCFG (192 samples, 0.04%)</title><rect x="5.4495%" y="773" width="0.0356%" height="15" fill="rgb(241,142,54)" fg:x="29401" fg:w="192"/><text x="5.6995%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (183 samples, 0.03%)</title><rect x="5.4512%" y="757" width="0.0339%" height="15" fill="rgb(222,85,15)" fg:x="29410" fg:w="183"/><text x="5.7012%" y="767.50"></text></g><g><title>PhaseCFG::build_dominator_tree (107 samples, 0.02%)</title><rect x="5.4853%" y="757" width="0.0198%" height="15" fill="rgb(210,85,47)" fg:x="29594" fg:w="107"/><text x="5.7353%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (79 samples, 0.01%)</title><rect x="5.5052%" y="757" width="0.0146%" height="15" fill="rgb(224,206,25)" fg:x="29701" fg:w="79"/><text x="5.7552%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (77 samples, 0.01%)</title><rect x="5.6128%" y="741" width="0.0143%" height="15" fill="rgb(243,201,19)" fg:x="30282" fg:w="77"/><text x="5.8628%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (344 samples, 0.06%)</title><rect x="5.6664%" y="725" width="0.0638%" height="15" fill="rgb(236,59,4)" fg:x="30571" fg:w="344"/><text x="5.9164%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (190 samples, 0.04%)</title><rect x="5.7302%" y="725" width="0.0352%" height="15" fill="rgb(254,179,45)" fg:x="30915" fg:w="190"/><text x="5.9802%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (209 samples, 0.04%)</title><rect x="5.7654%" y="725" width="0.0387%" height="15" fill="rgb(226,14,10)" fg:x="31105" fg:w="209"/><text x="6.0154%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (91 samples, 0.02%)</title><rect x="5.8041%" y="725" width="0.0169%" height="15" fill="rgb(244,27,41)" fg:x="31314" fg:w="91"/><text x="6.0541%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (998 samples, 0.18%)</title><rect x="5.6369%" y="741" width="0.1850%" height="15" fill="rgb(235,35,32)" fg:x="30412" fg:w="998"/><text x="5.8869%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (95 samples, 0.02%)</title><rect x="5.8942%" y="725" width="0.0176%" height="15" fill="rgb(218,68,31)" fg:x="31800" fg:w="95"/><text x="6.1442%" y="735.50"></text></g><g><title>PhaseCFG::select (142 samples, 0.03%)</title><rect x="5.9192%" y="725" width="0.0263%" height="15" fill="rgb(207,120,37)" fg:x="31935" fg:w="142"/><text x="6.1692%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (65 samples, 0.01%)</title><rect x="5.9455%" y="725" width="0.0120%" height="15" fill="rgb(227,98,0)" fg:x="32077" fg:w="65"/><text x="6.1955%" y="735.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (70 samples, 0.01%)</title><rect x="5.9576%" y="725" width="0.0130%" height="15" fill="rgb(207,7,3)" fg:x="32142" fg:w="70"/><text x="6.2076%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (814 samples, 0.15%)</title><rect x="5.8219%" y="741" width="0.1509%" height="15" fill="rgb(206,98,19)" fg:x="31410" fg:w="814"/><text x="6.0719%" y="751.50"></text></g><g><title>RegMask::Size (133 samples, 0.02%)</title><rect x="6.0560%" y="725" width="0.0247%" height="15" fill="rgb(217,5,26)" fg:x="32673" fg:w="133"/><text x="6.3060%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (630 samples, 0.12%)</title><rect x="5.9835%" y="741" width="0.1168%" height="15" fill="rgb(235,190,38)" fg:x="32282" fg:w="630"/><text x="6.2335%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (117 samples, 0.02%)</title><rect x="6.1003%" y="741" width="0.0217%" height="15" fill="rgb(247,86,24)" fg:x="32912" fg:w="117"/><text x="6.3503%" y="751.50"></text></g><g><title>IndexSet::initialize (134 samples, 0.02%)</title><rect x="6.1357%" y="725" width="0.0248%" height="15" fill="rgb(205,101,16)" fg:x="33103" fg:w="134"/><text x="6.3857%" y="735.50"></text></g><g><title>[libc-2.31.so] (62 samples, 0.01%)</title><rect x="6.1606%" y="725" width="0.0115%" height="15" fill="rgb(246,168,33)" fg:x="33237" fg:w="62"/><text x="6.4106%" y="735.50"></text></g><g><title>PhaseIFG::init (271 samples, 0.05%)</title><rect x="6.1220%" y="741" width="0.0502%" height="15" fill="rgb(231,114,1)" fg:x="33029" fg:w="271"/><text x="6.3720%" y="751.50"></text></g><g><title>IndexSet::initialize (70 samples, 0.01%)</title><rect x="6.2367%" y="725" width="0.0130%" height="15" fill="rgb(207,184,53)" fg:x="33648" fg:w="70"/><text x="6.4867%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (91 samples, 0.02%)</title><rect x="6.2807%" y="709" width="0.0169%" height="15" fill="rgb(224,95,51)" fg:x="33885" fg:w="91"/><text x="6.5307%" y="719.50"></text></g><g><title>PhaseLive::add_livein (259 samples, 0.05%)</title><rect x="6.2499%" y="725" width="0.0480%" height="15" fill="rgb(212,188,45)" fg:x="33719" fg:w="259"/><text x="6.4999%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (79 samples, 0.01%)</title><rect x="6.3439%" y="709" width="0.0146%" height="15" fill="rgb(223,154,38)" fg:x="34226" fg:w="79"/><text x="6.5939%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (142 samples, 0.03%)</title><rect x="6.3635%" y="709" width="0.0263%" height="15" fill="rgb(251,22,52)" fg:x="34332" fg:w="142"/><text x="6.6135%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (503 samples, 0.09%)</title><rect x="6.2979%" y="725" width="0.0932%" height="15" fill="rgb(229,209,22)" fg:x="33978" fg:w="503"/><text x="6.5479%" y="735.50"></text></g><g><title>PhaseLive::compute (1,187 samples, 0.22%)</title><rect x="6.1722%" y="741" width="0.2200%" height="15" fill="rgb(234,138,34)" fg:x="33300" fg:w="1187"/><text x="6.4222%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,922 samples, 0.91%)</title><rect x="5.4851%" y="773" width="0.9123%" height="15" fill="rgb(212,95,11)" fg:x="29593" fg:w="4922"/><text x="5.7351%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (4,735 samples, 0.88%)</title><rect x="5.5198%" y="757" width="0.8776%" height="15" fill="rgb(240,179,47)" fg:x="29780" fg:w="4735"/><text x="5.7698%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (90 samples, 0.02%)</title><rect x="6.4036%" y="773" width="0.0167%" height="15" fill="rgb(240,163,11)" fg:x="34548" fg:w="90"/><text x="6.6536%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,451 samples, 0.27%)</title><rect x="6.4553%" y="757" width="0.2689%" height="15" fill="rgb(236,37,12)" fg:x="34827" fg:w="1451"/><text x="6.7053%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (443 samples, 0.08%)</title><rect x="6.8779%" y="741" width="0.0821%" height="15" fill="rgb(232,164,16)" fg:x="37107" fg:w="443"/><text x="7.1279%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (237 samples, 0.04%)</title><rect x="6.9600%" y="741" width="0.0439%" height="15" fill="rgb(244,205,15)" fg:x="37550" fg:w="237"/><text x="7.2100%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (68 samples, 0.01%)</title><rect x="7.0844%" y="725" width="0.0126%" height="15" fill="rgb(223,117,47)" fg:x="38221" fg:w="68"/><text x="7.3344%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (112 samples, 0.02%)</title><rect x="7.0970%" y="725" width="0.0208%" height="15" fill="rgb(244,107,35)" fg:x="38289" fg:w="112"/><text x="7.3470%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (489 samples, 0.09%)</title><rect x="7.1177%" y="725" width="0.0906%" height="15" fill="rgb(205,140,8)" fg:x="38401" fg:w="489"/><text x="7.3677%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (1,112 samples, 0.21%)</title><rect x="7.0059%" y="741" width="0.2061%" height="15" fill="rgb(228,84,46)" fg:x="37798" fg:w="1112"/><text x="7.2559%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (201 samples, 0.04%)</title><rect x="7.2121%" y="741" width="0.0373%" height="15" fill="rgb(254,188,9)" fg:x="38910" fg:w="201"/><text x="7.4621%" y="751.50"></text></g><g><title>PhaseChaitin::Select (2,850 samples, 0.53%)</title><rect x="6.7242%" y="757" width="0.5283%" height="15" fill="rgb(206,112,54)" fg:x="36278" fg:w="2850"/><text x="6.9742%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (429 samples, 0.08%)</title><rect x="7.3225%" y="741" width="0.0795%" height="15" fill="rgb(216,84,49)" fg:x="39506" fg:w="429"/><text x="7.5725%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (82 samples, 0.02%)</title><rect x="7.5149%" y="725" width="0.0152%" height="15" fill="rgb(214,194,35)" fg:x="40544" fg:w="82"/><text x="7.7649%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (565 samples, 0.10%)</title><rect x="7.5301%" y="725" width="0.1047%" height="15" fill="rgb(249,28,3)" fg:x="40626" fg:w="565"/><text x="7.7801%" y="735.50"></text></g><g><title>PhaseIFG::remove_node (1,260 samples, 0.23%)</title><rect x="7.4020%" y="741" width="0.2335%" height="15" fill="rgb(222,56,52)" fg:x="39935" fg:w="1260"/><text x="7.6520%" y="751.50"></text></g><g><title>PhaseChaitin::Simplify (2,070 samples, 0.38%)</title><rect x="7.2525%" y="757" width="0.3837%" height="15" fill="rgb(245,217,50)" fg:x="39128" fg:w="2070"/><text x="7.5025%" y="767.50"></text></g><g><title>MachNode::rematerialize (227 samples, 0.04%)</title><rect x="8.2916%" y="741" width="0.0421%" height="15" fill="rgb(213,201,24)" fg:x="44734" fg:w="227"/><text x="8.5416%" y="751.50"></text></g><g><title>Node::rematerialize (199 samples, 0.04%)</title><rect x="8.3442%" y="741" width="0.0369%" height="15" fill="rgb(248,116,28)" fg:x="45018" fg:w="199"/><text x="8.5942%" y="751.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (56 samples, 0.01%)</title><rect x="8.4072%" y="741" width="0.0104%" height="15" fill="rgb(219,72,43)" fg:x="45358" fg:w="56"/><text x="8.6572%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (56 samples, 0.01%)</title><rect x="8.4406%" y="709" width="0.0104%" height="15" fill="rgb(209,138,14)" fg:x="45538" fg:w="56"/><text x="8.6906%" y="719.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (106 samples, 0.02%)</title><rect x="8.4326%" y="725" width="0.0196%" height="15" fill="rgb(222,18,33)" fg:x="45495" fg:w="106"/><text x="8.6826%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (230 samples, 0.04%)</title><rect x="8.4176%" y="741" width="0.0426%" height="15" fill="rgb(213,199,7)" fg:x="45414" fg:w="230"/><text x="8.6676%" y="751.50"></text></g><g><title>PhaseChaitin::Split (4,578 samples, 0.85%)</title><rect x="7.6361%" y="757" width="0.8485%" height="15" fill="rgb(250,110,10)" fg:x="41198" fg:w="4578"/><text x="7.8861%" y="767.50"></text></g><g><title>IndexSet::IndexSet (369 samples, 0.07%)</title><rect x="8.7084%" y="741" width="0.0684%" height="15" fill="rgb(248,123,6)" fg:x="46983" fg:w="369"/><text x="8.9584%" y="751.50"></text></g><g><title>MachNode::rematerialize (115 samples, 0.02%)</title><rect x="8.7790%" y="741" width="0.0213%" height="15" fill="rgb(206,91,31)" fg:x="47364" fg:w="115"/><text x="9.0290%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (57 samples, 0.01%)</title><rect x="8.9066%" y="725" width="0.0106%" height="15" fill="rgb(211,154,13)" fg:x="48052" fg:w="57"/><text x="9.1566%" y="735.50"></text></g><g><title>MachNode::rematerialize (157 samples, 0.03%)</title><rect x="8.9240%" y="725" width="0.0291%" height="15" fill="rgb(225,148,7)" fg:x="48146" fg:w="157"/><text x="9.1740%" y="735.50"></text></g><g><title>RegMask::is_UP (85 samples, 0.02%)</title><rect x="8.9768%" y="709" width="0.0158%" height="15" fill="rgb(220,160,43)" fg:x="48431" fg:w="85"/><text x="9.2268%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (196 samples, 0.04%)</title><rect x="8.9564%" y="725" width="0.0363%" height="15" fill="rgb(213,52,39)" fg:x="48321" fg:w="196"/><text x="9.2064%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,023 samples, 0.19%)</title><rect x="8.8042%" y="741" width="0.1896%" height="15" fill="rgb(243,137,7)" fg:x="47500" fg:w="1023"/><text x="9.0542%" y="751.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (77 samples, 0.01%)</title><rect x="9.0018%" y="741" width="0.0143%" height="15" fill="rgb(230,79,13)" fg:x="48566" fg:w="77"/><text x="9.2518%" y="751.50"></text></g><g><title>RegMask::Size (56 samples, 0.01%)</title><rect x="9.0057%" y="725" width="0.0104%" height="15" fill="rgb(247,105,23)" fg:x="48587" fg:w="56"/><text x="9.2557%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (211 samples, 0.04%)</title><rect x="9.0815%" y="725" width="0.0391%" height="15" fill="rgb(223,179,41)" fg:x="48996" fg:w="211"/><text x="9.3315%" y="735.50"></text></g><g><title>RegMask::is_UP (130 samples, 0.02%)</title><rect x="9.1206%" y="725" width="0.0241%" height="15" fill="rgb(218,9,34)" fg:x="49207" fg:w="130"/><text x="9.3706%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (716 samples, 0.13%)</title><rect x="9.0161%" y="741" width="0.1327%" height="15" fill="rgb(222,106,8)" fg:x="48643" fg:w="716"/><text x="9.2661%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (175 samples, 0.03%)</title><rect x="9.6352%" y="725" width="0.0324%" height="15" fill="rgb(211,220,0)" fg:x="51983" fg:w="175"/><text x="9.8852%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,137 samples, 0.21%)</title><rect x="9.6713%" y="725" width="0.2107%" height="15" fill="rgb(229,52,16)" fg:x="52178" fg:w="1137"/><text x="9.9213%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,978 samples, 0.74%)</title><rect x="9.1488%" y="741" width="0.7373%" height="15" fill="rgb(212,155,18)" fg:x="49359" fg:w="3978"/><text x="9.3988%" y="751.50"></text></g><g><title>PhaseChaitin::lower_pressure (124 samples, 0.02%)</title><rect x="9.8861%" y="741" width="0.0230%" height="15" fill="rgb(242,21,14)" fg:x="53337" fg:w="124"/><text x="10.1361%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (267 samples, 0.05%)</title><rect x="10.0337%" y="725" width="0.0495%" height="15" fill="rgb(222,19,48)" fg:x="54133" fg:w="267"/><text x="10.2837%" y="735.50"></text></g><g><title>RegMask::Size (428 samples, 0.08%)</title><rect x="10.0832%" y="725" width="0.0793%" height="15" fill="rgb(232,45,27)" fg:x="54400" fg:w="428"/><text x="10.3332%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (979 samples, 0.18%)</title><rect x="10.1625%" y="725" width="0.1815%" height="15" fill="rgb(249,103,42)" fg:x="54828" fg:w="979"/><text x="10.4125%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,376 samples, 0.44%)</title><rect x="9.9093%" y="741" width="0.4404%" height="15" fill="rgb(246,81,33)" fg:x="53462" fg:w="2376"/><text x="10.1593%" y="751.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (56 samples, 0.01%)</title><rect x="10.3497%" y="741" width="0.0104%" height="15" fill="rgb(252,33,42)" fg:x="55838" fg:w="56"/><text x="10.5997%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (57 samples, 0.01%)</title><rect x="10.3638%" y="741" width="0.0106%" height="15" fill="rgb(209,212,41)" fg:x="55914" fg:w="57"/><text x="10.6138%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (10,203 samples, 1.89%)</title><rect x="8.4852%" y="757" width="1.8911%" height="15" fill="rgb(207,154,6)" fg:x="45779" fg:w="10203"/><text x="8.7352%" y="767.50">P..</text></g><g><title>IndexSetIterator::advance_and_next (95 samples, 0.02%)</title><rect x="10.4876%" y="725" width="0.0176%" height="15" fill="rgb(223,64,47)" fg:x="56582" fg:w="95"/><text x="10.7376%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (503 samples, 0.09%)</title><rect x="10.4138%" y="741" width="0.0932%" height="15" fill="rgb(211,161,38)" fg:x="56184" fg:w="503"/><text x="10.6638%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (711 samples, 0.13%)</title><rect x="10.3764%" y="757" width="0.1318%" height="15" fill="rgb(219,138,40)" fg:x="55982" fg:w="711"/><text x="10.6264%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (164 samples, 0.03%)</title><rect x="10.5082%" y="757" width="0.0304%" height="15" fill="rgb(241,228,46)" fg:x="56693" fg:w="164"/><text x="10.7582%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (141 samples, 0.03%)</title><rect x="10.5480%" y="757" width="0.0261%" height="15" fill="rgb(223,209,38)" fg:x="56908" fg:w="141"/><text x="10.7980%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (87 samples, 0.02%)</title><rect x="10.5749%" y="757" width="0.0161%" height="15" fill="rgb(236,164,45)" fg:x="57053" fg:w="87"/><text x="10.8249%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (93 samples, 0.02%)</title><rect x="11.0500%" y="741" width="0.0172%" height="15" fill="rgb(231,15,5)" fg:x="59616" fg:w="93"/><text x="11.3000%" y="751.50"></text></g><g><title>MachNode::ideal_reg (94 samples, 0.02%)</title><rect x="11.0678%" y="741" width="0.0174%" height="15" fill="rgb(252,35,15)" fg:x="59712" fg:w="94"/><text x="11.3178%" y="751.50"></text></g><g><title>MachNode::in_RegMask (99 samples, 0.02%)</title><rect x="11.0852%" y="741" width="0.0183%" height="15" fill="rgb(248,181,18)" fg:x="59806" fg:w="99"/><text x="11.3352%" y="751.50"></text></g><g><title>RegMask::Size (1,600 samples, 0.30%)</title><rect x="11.1278%" y="741" width="0.2966%" height="15" fill="rgb(233,39,42)" fg:x="60036" fg:w="1600"/><text x="11.3778%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (248 samples, 0.05%)</title><rect x="11.4244%" y="741" width="0.0460%" height="15" fill="rgb(238,110,33)" fg:x="61636" fg:w="248"/><text x="11.6744%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (145 samples, 0.03%)</title><rect x="11.4703%" y="741" width="0.0269%" height="15" fill="rgb(233,195,10)" fg:x="61884" fg:w="145"/><text x="11.7203%" y="751.50"></text></g><g><title>RegMask::is_bound1 (201 samples, 0.04%)</title><rect x="11.4972%" y="741" width="0.0373%" height="15" fill="rgb(254,105,3)" fg:x="62029" fg:w="201"/><text x="11.7472%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (123 samples, 0.02%)</title><rect x="11.5345%" y="741" width="0.0228%" height="15" fill="rgb(221,225,9)" fg:x="62230" fg:w="123"/><text x="11.7845%" y="751.50"></text></g><g><title>Type::hashcons (54 samples, 0.01%)</title><rect x="11.5660%" y="741" width="0.0100%" height="15" fill="rgb(224,227,45)" fg:x="62400" fg:w="54"/><text x="11.8160%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,438 samples, 1.01%)</title><rect x="10.5910%" y="757" width="1.0079%" height="15" fill="rgb(229,198,43)" fg:x="57140" fg:w="5438"/><text x="10.8410%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (694 samples, 0.13%)</title><rect x="11.5993%" y="757" width="0.1286%" height="15" fill="rgb(206,209,35)" fg:x="62580" fg:w="694"/><text x="11.8493%" y="767.50"></text></g><g><title>RegMask::Size (56 samples, 0.01%)</title><rect x="12.7244%" y="709" width="0.0104%" height="15" fill="rgb(245,195,53)" fg:x="68650" fg:w="56"/><text x="12.9744%" y="719.50"></text></g><g><title>PhaseChaitin::use_prior_register (140 samples, 0.03%)</title><rect x="12.7115%" y="725" width="0.0259%" height="15" fill="rgb(240,92,26)" fg:x="68580" fg:w="140"/><text x="12.9615%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (2,985 samples, 0.55%)</title><rect x="12.1951%" y="741" width="0.5533%" height="15" fill="rgb(207,40,23)" fg:x="65794" fg:w="2985"/><text x="12.4451%" y="751.50"></text></g><g><title>[libc-2.31.so] (77 samples, 0.01%)</title><rect x="12.7602%" y="741" width="0.0143%" height="15" fill="rgb(223,111,35)" fg:x="68843" fg:w="77"/><text x="13.0102%" y="751.50"></text></g><g><title>find_lowest_bit (458 samples, 0.08%)</title><rect x="12.7791%" y="741" width="0.0849%" height="15" fill="rgb(229,147,28)" fg:x="68945" fg:w="458"/><text x="13.0291%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (6,135 samples, 1.14%)</title><rect x="11.7280%" y="757" width="1.1371%" height="15" fill="rgb(211,29,28)" fg:x="63274" fg:w="6135"/><text x="11.9780%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (265 samples, 0.05%)</title><rect x="12.8653%" y="757" width="0.0491%" height="15" fill="rgb(228,72,33)" fg:x="69410" fg:w="265"/><text x="13.1153%" y="767.50"></text></g><g><title>PhaseIFG::Union (66 samples, 0.01%)</title><rect x="12.9445%" y="709" width="0.0122%" height="15" fill="rgb(205,214,31)" fg:x="69837" fg:w="66"/><text x="13.1945%" y="719.50"></text></g><g><title>PhaseCoalesce::combine_these_two (97 samples, 0.02%)</title><rect x="12.9394%" y="725" width="0.0180%" height="15" fill="rgb(224,111,15)" fg:x="69810" fg:w="97"/><text x="13.1894%" y="735.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (225 samples, 0.04%)</title><rect x="12.9161%" y="741" width="0.0417%" height="15" fill="rgb(253,21,26)" fg:x="69684" fg:w="225"/><text x="13.1661%" y="751.50"></text></g><g><title>PhaseCFG::is_uncommon (192 samples, 0.04%)</title><rect x="12.9708%" y="725" width="0.0356%" height="15" fill="rgb(245,139,43)" fg:x="69979" fg:w="192"/><text x="13.2208%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (73 samples, 0.01%)</title><rect x="13.0937%" y="693" width="0.0135%" height="15" fill="rgb(252,170,7)" fg:x="70642" fg:w="73"/><text x="13.3437%" y="703.50"></text></g><g><title>IndexSet::lrg_union (498 samples, 0.09%)</title><rect x="13.0171%" y="709" width="0.0923%" height="15" fill="rgb(231,118,14)" fg:x="70229" fg:w="498"/><text x="13.2671%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (65 samples, 0.01%)</title><rect x="13.2026%" y="693" width="0.0120%" height="15" fill="rgb(238,83,0)" fg:x="71230" fg:w="65"/><text x="13.4526%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (554 samples, 0.10%)</title><rect x="13.1128%" y="709" width="0.1027%" height="15" fill="rgb(221,39,39)" fg:x="70745" fg:w="554"/><text x="13.3628%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (151 samples, 0.03%)</title><rect x="13.2154%" y="709" width="0.0280%" height="15" fill="rgb(222,119,46)" fg:x="71299" fg:w="151"/><text x="13.4654%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,320 samples, 0.24%)</title><rect x="13.0064%" y="725" width="0.2447%" height="15" fill="rgb(222,165,49)" fg:x="70171" fg:w="1320"/><text x="13.2564%" y="735.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,818 samples, 0.34%)</title><rect x="12.9144%" y="757" width="0.3370%" height="15" fill="rgb(219,113,52)" fg:x="69675" fg:w="1818"/><text x="13.1644%" y="767.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,584 samples, 0.29%)</title><rect x="12.9578%" y="741" width="0.2936%" height="15" fill="rgb(214,7,15)" fg:x="69909" fg:w="1584"/><text x="13.2078%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (69 samples, 0.01%)</title><rect x="13.3576%" y="741" width="0.0128%" height="15" fill="rgb(235,32,4)" fg:x="72066" fg:w="69"/><text x="13.6076%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (653 samples, 0.12%)</title><rect x="13.3704%" y="741" width="0.1210%" height="15" fill="rgb(238,90,54)" fg:x="72135" fg:w="653"/><text x="13.6204%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,292 samples, 0.24%)</title><rect x="13.2521%" y="757" width="0.2395%" height="15" fill="rgb(213,208,19)" fg:x="71497" fg:w="1292"/><text x="13.5021%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (77 samples, 0.01%)</title><rect x="13.5759%" y="741" width="0.0143%" height="15" fill="rgb(233,156,4)" fg:x="73244" fg:w="77"/><text x="13.8259%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (107 samples, 0.02%)</title><rect x="13.5902%" y="741" width="0.0198%" height="15" fill="rgb(207,194,5)" fg:x="73321" fg:w="107"/><text x="13.8402%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (596 samples, 0.11%)</title><rect x="13.6101%" y="741" width="0.1105%" height="15" fill="rgb(206,111,30)" fg:x="73428" fg:w="596"/><text x="13.8601%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (1,242 samples, 0.23%)</title><rect x="13.4916%" y="757" width="0.2302%" height="15" fill="rgb(243,70,54)" fg:x="72789" fg:w="1242"/><text x="13.7416%" y="767.50"></text></g><g><title>IndexSet::initialize (244 samples, 0.05%)</title><rect x="13.7511%" y="741" width="0.0452%" height="15" fill="rgb(242,28,8)" fg:x="74189" fg:w="244"/><text x="14.0011%" y="751.50"></text></g><g><title>PhaseIFG::init (480 samples, 0.09%)</title><rect x="13.7218%" y="757" width="0.0890%" height="15" fill="rgb(219,106,18)" fg:x="74031" fg:w="480"/><text x="13.9718%" y="767.50"></text></g><g><title>[libc-2.31.so] (76 samples, 0.01%)</title><rect x="13.7967%" y="741" width="0.0141%" height="15" fill="rgb(244,222,10)" fg:x="74435" fg:w="76"/><text x="14.0467%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (94 samples, 0.02%)</title><rect x="14.1124%" y="741" width="0.0174%" height="15" fill="rgb(236,179,52)" fg:x="76138" fg:w="94"/><text x="14.3624%" y="751.50"></text></g><g><title>IndexSet::free_block (60 samples, 0.01%)</title><rect x="14.1298%" y="741" width="0.0111%" height="15" fill="rgb(213,23,39)" fg:x="76232" fg:w="60"/><text x="14.3798%" y="751.50"></text></g><g><title>IndexSet::initialize (150 samples, 0.03%)</title><rect x="14.1409%" y="741" width="0.0278%" height="15" fill="rgb(238,48,10)" fg:x="76292" fg:w="150"/><text x="14.3909%" y="751.50"></text></g><g><title>__tls_get_addr (82 samples, 0.02%)</title><rect x="14.3815%" y="709" width="0.0152%" height="15" fill="rgb(251,196,23)" fg:x="77590" fg:w="82"/><text x="14.6315%" y="719.50"></text></g><g><title>update_get_addr (61 samples, 0.01%)</title><rect x="14.3854%" y="693" width="0.0113%" height="15" fill="rgb(250,152,24)" fg:x="77611" fg:w="61"/><text x="14.6354%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (272 samples, 0.05%)</title><rect x="14.3479%" y="725" width="0.0504%" height="15" fill="rgb(209,150,17)" fg:x="77409" fg:w="272"/><text x="14.5979%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (419 samples, 0.08%)</title><rect x="14.4085%" y="725" width="0.0777%" height="15" fill="rgb(234,202,34)" fg:x="77736" fg:w="419"/><text x="14.6585%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,737 samples, 0.32%)</title><rect x="14.1691%" y="741" width="0.3220%" height="15" fill="rgb(253,148,53)" fg:x="76444" fg:w="1737"/><text x="14.4191%" y="751.50"></text></g><g><title>PhaseLive::compute (3,684 samples, 0.68%)</title><rect x="13.8117%" y="757" width="0.6828%" height="15" fill="rgb(218,129,16)" fg:x="74516" fg:w="3684"/><text x="14.0617%" y="767.50"></text></g><g><title>RegMask::Size (68 samples, 0.01%)</title><rect x="14.4957%" y="757" width="0.0126%" height="15" fill="rgb(216,85,19)" fg:x="78206" fg:w="68"/><text x="14.7457%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (43,732 samples, 8.11%)</title><rect x="6.4247%" y="773" width="8.1058%" height="15" fill="rgb(235,228,7)" fg:x="34662" fg:w="43732"/><text x="6.6747%" y="783.50">PhaseChaiti..</text></g><g><title>PhasePeephole::do_transform (63 samples, 0.01%)</title><rect x="14.5318%" y="773" width="0.0117%" height="15" fill="rgb(245,175,0)" fg:x="78401" fg:w="63"/><text x="14.7818%" y="783.50"></text></g><g><title>Compile::Code_Gen (55,320 samples, 10.25%)</title><rect x="4.2900%" y="789" width="10.2537%" height="15" fill="rgb(208,168,36)" fg:x="23145" fg:w="55320"/><text x="4.5400%" y="799.50">Compile::Code_G..</text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="14.6126%" y="69" width="0.0108%" height="15" fill="rgb(246,171,24)" fg:x="78837" fg:w="58"/><text x="14.8626%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="14.6134%" y="53" width="0.0100%" height="15" fill="rgb(215,142,24)" fg:x="78841" fg:w="54"/><text x="14.8634%" y="63.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.01%)</title><rect x="14.6124%" y="85" width="0.0117%" height="15" fill="rgb(250,187,7)" fg:x="78836" fg:w="63"/><text x="14.8624%" y="95.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.01%)</title><rect x="14.6108%" y="117" width="0.0146%" height="15" fill="rgb(228,66,33)" fg:x="78827" fg:w="79"/><text x="14.8608%" y="127.50"></text></g><g><title>Parse::Parse (78 samples, 0.01%)</title><rect x="14.6110%" y="101" width="0.0145%" height="15" fill="rgb(234,215,21)" fg:x="78828" fg:w="78"/><text x="14.8610%" y="111.50"></text></g><g><title>Parse::do_call (117 samples, 0.02%)</title><rect x="14.6048%" y="133" width="0.0217%" height="15" fill="rgb(222,191,20)" fg:x="78795" fg:w="117"/><text x="14.8548%" y="143.50"></text></g><g><title>Parse::do_one_block (189 samples, 0.04%)</title><rect x="14.6009%" y="165" width="0.0350%" height="15" fill="rgb(245,79,54)" fg:x="78774" fg:w="189"/><text x="14.8509%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (186 samples, 0.03%)</title><rect x="14.6015%" y="149" width="0.0345%" height="15" fill="rgb(240,10,37)" fg:x="78777" fg:w="186"/><text x="14.8515%" y="159.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.04%)</title><rect x="14.6006%" y="181" width="0.0361%" height="15" fill="rgb(214,192,32)" fg:x="78772" fg:w="195"/><text x="14.8506%" y="191.50"></text></g><g><title>ParseGenerator::generate (227 samples, 0.04%)</title><rect x="14.5967%" y="213" width="0.0421%" height="15" fill="rgb(209,36,54)" fg:x="78751" fg:w="227"/><text x="14.8467%" y="223.50"></text></g><g><title>Parse::Parse (226 samples, 0.04%)</title><rect x="14.5969%" y="197" width="0.0419%" height="15" fill="rgb(220,10,11)" fg:x="78752" fg:w="226"/><text x="14.8469%" y="207.50"></text></g><g><title>Parse::do_call (300 samples, 0.06%)</title><rect x="14.5870%" y="229" width="0.0556%" height="15" fill="rgb(221,106,17)" fg:x="78699" fg:w="300"/><text x="14.8370%" y="239.50"></text></g><g><title>Parse::do_one_block (409 samples, 0.08%)</title><rect x="14.5822%" y="261" width="0.0758%" height="15" fill="rgb(251,142,44)" fg:x="78673" fg:w="409"/><text x="14.8322%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (401 samples, 0.07%)</title><rect x="14.5837%" y="245" width="0.0743%" height="15" fill="rgb(238,13,15)" fg:x="78681" fg:w="401"/><text x="14.8337%" y="255.50"></text></g><g><title>Parse::do_all_blocks (417 samples, 0.08%)</title><rect x="14.5819%" y="277" width="0.0773%" height="15" fill="rgb(208,107,27)" fg:x="78671" fg:w="417"/><text x="14.8319%" y="287.50"></text></g><g><title>ParseGenerator::generate (449 samples, 0.08%)</title><rect x="14.5778%" y="309" width="0.0832%" height="15" fill="rgb(205,136,37)" fg:x="78649" fg:w="449"/><text x="14.8278%" y="319.50"></text></g><g><title>Parse::Parse (449 samples, 0.08%)</title><rect x="14.5778%" y="293" width="0.0832%" height="15" fill="rgb(250,205,27)" fg:x="78649" fg:w="449"/><text x="14.8278%" y="303.50"></text></g><g><title>Parse::do_call (557 samples, 0.10%)</title><rect x="14.5663%" y="325" width="0.1032%" height="15" fill="rgb(210,80,43)" fg:x="78587" fg:w="557"/><text x="14.8163%" y="335.50"></text></g><g><title>Parse::do_field_access (69 samples, 0.01%)</title><rect x="14.6703%" y="325" width="0.0128%" height="15" fill="rgb(247,160,36)" fg:x="79148" fg:w="69"/><text x="14.9203%" y="335.50"></text></g><g><title>Parse::do_all_blocks (674 samples, 0.12%)</title><rect x="14.5648%" y="373" width="0.1249%" height="15" fill="rgb(234,13,49)" fg:x="78579" fg:w="674"/><text x="14.8148%" y="383.50"></text></g><g><title>Parse::do_one_block (674 samples, 0.12%)</title><rect x="14.5648%" y="357" width="0.1249%" height="15" fill="rgb(234,122,0)" fg:x="78579" fg:w="674"/><text x="14.8148%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (674 samples, 0.12%)</title><rect x="14.5648%" y="341" width="0.1249%" height="15" fill="rgb(207,146,38)" fg:x="78579" fg:w="674"/><text x="14.8148%" y="351.50"></text></g><g><title>ParseGenerator::generate (685 samples, 0.13%)</title><rect x="14.5633%" y="405" width="0.1270%" height="15" fill="rgb(207,177,25)" fg:x="78571" fg:w="685"/><text x="14.8133%" y="415.50"></text></g><g><title>Parse::Parse (685 samples, 0.13%)</title><rect x="14.5633%" y="389" width="0.1270%" height="15" fill="rgb(211,178,42)" fg:x="78571" fg:w="685"/><text x="14.8133%" y="399.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="14.6907%" y="309" width="0.0106%" height="15" fill="rgb(230,69,54)" fg:x="79258" fg:w="57"/><text x="14.9407%" y="319.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.01%)</title><rect x="14.6905%" y="357" width="0.0117%" height="15" fill="rgb(214,135,41)" fg:x="79257" fg:w="63"/><text x="14.9405%" y="367.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="14.6905%" y="341" width="0.0117%" height="15" fill="rgb(237,67,25)" fg:x="79257" fg:w="63"/><text x="14.9405%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="14.6905%" y="325" width="0.0117%" height="15" fill="rgb(222,189,50)" fg:x="79257" fg:w="63"/><text x="14.9405%" y="335.50"></text></g><g><title>ParseGenerator::generate (66 samples, 0.01%)</title><rect x="14.6903%" y="389" width="0.0122%" height="15" fill="rgb(245,148,34)" fg:x="79256" fg:w="66"/><text x="14.9403%" y="399.50"></text></g><g><title>Parse::Parse (66 samples, 0.01%)</title><rect x="14.6903%" y="373" width="0.0122%" height="15" fill="rgb(222,29,6)" fg:x="79256" fg:w="66"/><text x="14.9403%" y="383.50"></text></g><g><title>PredictedCallGenerator::generate (91 samples, 0.02%)</title><rect x="14.6903%" y="405" width="0.0169%" height="15" fill="rgb(221,189,43)" fg:x="79256" fg:w="91"/><text x="14.9403%" y="415.50"></text></g><g><title>Parse::do_call (827 samples, 0.15%)</title><rect x="14.5544%" y="421" width="0.1533%" height="15" fill="rgb(207,36,27)" fg:x="78523" fg:w="827"/><text x="14.8044%" y="431.50"></text></g><g><title>ParseGenerator::generate (838 samples, 0.16%)</title><rect x="14.5541%" y="501" width="0.1553%" height="15" fill="rgb(217,90,24)" fg:x="78521" fg:w="838"/><text x="14.8041%" y="511.50"></text></g><g><title>Parse::Parse (838 samples, 0.16%)</title><rect x="14.5541%" y="485" width="0.1553%" height="15" fill="rgb(224,66,35)" fg:x="78521" fg:w="838"/><text x="14.8041%" y="495.50"></text></g><g><title>Parse::do_all_blocks (837 samples, 0.16%)</title><rect x="14.5542%" y="469" width="0.1551%" height="15" fill="rgb(221,13,50)" fg:x="78522" fg:w="837"/><text x="14.8042%" y="479.50"></text></g><g><title>Parse::do_one_block (837 samples, 0.16%)</title><rect x="14.5542%" y="453" width="0.1551%" height="15" fill="rgb(236,68,49)" fg:x="78522" fg:w="837"/><text x="14.8042%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (837 samples, 0.16%)</title><rect x="14.5542%" y="437" width="0.1551%" height="15" fill="rgb(229,146,28)" fg:x="78522" fg:w="837"/><text x="14.8042%" y="447.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="14.7155%" y="245" width="0.0102%" height="15" fill="rgb(225,31,38)" fg:x="79392" fg:w="55"/><text x="14.9655%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="14.7155%" y="229" width="0.0102%" height="15" fill="rgb(250,208,3)" fg:x="79392" fg:w="55"/><text x="14.9655%" y="239.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="14.7155%" y="293" width="0.0108%" height="15" fill="rgb(246,54,23)" fg:x="79392" fg:w="58"/><text x="14.9655%" y="303.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="14.7155%" y="277" width="0.0108%" height="15" fill="rgb(243,76,11)" fg:x="79392" fg:w="58"/><text x="14.9655%" y="287.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="14.7155%" y="261" width="0.0108%" height="15" fill="rgb(245,21,50)" fg:x="79392" fg:w="58"/><text x="14.9655%" y="271.50"></text></g><g><title>Parse::do_call (86 samples, 0.02%)</title><rect x="14.7129%" y="309" width="0.0159%" height="15" fill="rgb(228,9,43)" fg:x="79378" fg:w="86"/><text x="14.9629%" y="319.50"></text></g><g><title>Parse::do_one_block (110 samples, 0.02%)</title><rect x="14.7114%" y="341" width="0.0204%" height="15" fill="rgb(208,100,47)" fg:x="79370" fg:w="110"/><text x="14.9614%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (109 samples, 0.02%)</title><rect x="14.7116%" y="325" width="0.0202%" height="15" fill="rgb(232,26,8)" fg:x="79371" fg:w="109"/><text x="14.9616%" y="335.50"></text></g><g><title>ParseGenerator::generate (112 samples, 0.02%)</title><rect x="14.7112%" y="389" width="0.0208%" height="15" fill="rgb(216,166,38)" fg:x="79369" fg:w="112"/><text x="14.9612%" y="399.50"></text></g><g><title>Parse::Parse (112 samples, 0.02%)</title><rect x="14.7112%" y="373" width="0.0208%" height="15" fill="rgb(251,202,51)" fg:x="79369" fg:w="112"/><text x="14.9612%" y="383.50"></text></g><g><title>Parse::do_all_blocks (111 samples, 0.02%)</title><rect x="14.7114%" y="357" width="0.0206%" height="15" fill="rgb(254,216,34)" fg:x="79370" fg:w="111"/><text x="14.9614%" y="367.50"></text></g><g><title>Parse::do_call (128 samples, 0.02%)</title><rect x="14.7096%" y="405" width="0.0237%" height="15" fill="rgb(251,32,27)" fg:x="79360" fg:w="128"/><text x="14.9596%" y="415.50"></text></g><g><title>ParseGenerator::generate (129 samples, 0.02%)</title><rect x="14.7096%" y="485" width="0.0239%" height="15" fill="rgb(208,127,28)" fg:x="79360" fg:w="129"/><text x="14.9596%" y="495.50"></text></g><g><title>Parse::Parse (129 samples, 0.02%)</title><rect x="14.7096%" y="469" width="0.0239%" height="15" fill="rgb(224,137,22)" fg:x="79360" fg:w="129"/><text x="14.9596%" y="479.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.02%)</title><rect x="14.7096%" y="453" width="0.0239%" height="15" fill="rgb(254,70,32)" fg:x="79360" fg:w="129"/><text x="14.9596%" y="463.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.02%)</title><rect x="14.7096%" y="437" width="0.0239%" height="15" fill="rgb(229,75,37)" fg:x="79360" fg:w="129"/><text x="14.9596%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (129 samples, 0.02%)</title><rect x="14.7096%" y="421" width="0.0239%" height="15" fill="rgb(252,64,23)" fg:x="79360" fg:w="129"/><text x="14.9596%" y="431.50"></text></g><g><title>Parse::do_call (1,033 samples, 0.19%)</title><rect x="14.5466%" y="517" width="0.1915%" height="15" fill="rgb(232,162,48)" fg:x="78481" fg:w="1033"/><text x="14.7966%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (155 samples, 0.03%)</title><rect x="14.7094%" y="501" width="0.0287%" height="15" fill="rgb(246,160,12)" fg:x="79359" fg:w="155"/><text x="14.9594%" y="511.50"></text></g><g><title>Parse::do_all_blocks (1,036 samples, 0.19%)</title><rect x="14.5466%" y="565" width="0.1920%" height="15" fill="rgb(247,166,0)" fg:x="78481" fg:w="1036"/><text x="14.7966%" y="575.50"></text></g><g><title>Parse::do_one_block (1,036 samples, 0.19%)</title><rect x="14.5466%" y="549" width="0.1920%" height="15" fill="rgb(249,219,21)" fg:x="78481" fg:w="1036"/><text x="14.7966%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,036 samples, 0.19%)</title><rect x="14.5466%" y="533" width="0.1920%" height="15" fill="rgb(205,209,3)" fg:x="78481" fg:w="1036"/><text x="14.7966%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,037 samples, 0.19%)</title><rect x="14.5466%" y="597" width="0.1922%" height="15" fill="rgb(243,44,1)" fg:x="78481" fg:w="1037"/><text x="14.7966%" y="607.50"></text></g><g><title>Parse::Parse (1,037 samples, 0.19%)</title><rect x="14.5466%" y="581" width="0.1922%" height="15" fill="rgb(206,159,16)" fg:x="78481" fg:w="1037"/><text x="14.7966%" y="591.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="14.7455%" y="261" width="0.0126%" height="15" fill="rgb(244,77,30)" fg:x="79554" fg:w="68"/><text x="14.9955%" y="271.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="14.7455%" y="245" width="0.0126%" height="15" fill="rgb(218,69,12)" fg:x="79554" fg:w="68"/><text x="14.9955%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="14.7457%" y="229" width="0.0124%" height="15" fill="rgb(212,87,7)" fg:x="79555" fg:w="67"/><text x="14.9957%" y="239.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.01%)</title><rect x="14.7451%" y="293" width="0.0137%" height="15" fill="rgb(245,114,25)" fg:x="79552" fg:w="74"/><text x="14.9951%" y="303.50"></text></g><g><title>Parse::Parse (74 samples, 0.01%)</title><rect x="14.7451%" y="277" width="0.0137%" height="15" fill="rgb(210,61,42)" fg:x="79552" fg:w="74"/><text x="14.9951%" y="287.50"></text></g><g><title>Parse::do_call (95 samples, 0.02%)</title><rect x="14.7429%" y="309" width="0.0176%" height="15" fill="rgb(211,52,33)" fg:x="79540" fg:w="95"/><text x="14.9929%" y="319.50"></text></g><g><title>Parse::do_one_block (119 samples, 0.02%)</title><rect x="14.7422%" y="341" width="0.0221%" height="15" fill="rgb(234,58,33)" fg:x="79536" fg:w="119"/><text x="14.9922%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (119 samples, 0.02%)</title><rect x="14.7422%" y="325" width="0.0221%" height="15" fill="rgb(220,115,36)" fg:x="79536" fg:w="119"/><text x="14.9922%" y="335.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="14.7416%" y="389" width="0.0230%" height="15" fill="rgb(243,153,54)" fg:x="79533" fg:w="124"/><text x="14.9916%" y="399.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="14.7416%" y="373" width="0.0230%" height="15" fill="rgb(251,47,18)" fg:x="79533" fg:w="124"/><text x="14.9916%" y="383.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.02%)</title><rect x="14.7422%" y="357" width="0.0224%" height="15" fill="rgb(242,102,42)" fg:x="79536" fg:w="121"/><text x="14.9922%" y="367.50"></text></g><g><title>Parse::do_call (142 samples, 0.03%)</title><rect x="14.7401%" y="405" width="0.0263%" height="15" fill="rgb(234,31,38)" fg:x="79525" fg:w="142"/><text x="14.9901%" y="415.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.03%)</title><rect x="14.7400%" y="485" width="0.0282%" height="15" fill="rgb(221,117,51)" fg:x="79524" fg:w="152"/><text x="14.9900%" y="495.50"></text></g><g><title>Parse::Parse (152 samples, 0.03%)</title><rect x="14.7400%" y="469" width="0.0282%" height="15" fill="rgb(212,20,18)" fg:x="79524" fg:w="152"/><text x="14.9900%" y="479.50"></text></g><g><title>Parse::do_all_blocks (151 samples, 0.03%)</title><rect x="14.7401%" y="453" width="0.0280%" height="15" fill="rgb(245,133,36)" fg:x="79525" fg:w="151"/><text x="14.9901%" y="463.50"></text></g><g><title>Parse::do_one_block (151 samples, 0.03%)</title><rect x="14.7401%" y="437" width="0.0280%" height="15" fill="rgb(212,6,19)" fg:x="79525" fg:w="151"/><text x="14.9901%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="14.7401%" y="421" width="0.0280%" height="15" fill="rgb(218,1,36)" fg:x="79525" fg:w="151"/><text x="14.9901%" y="431.50"></text></g><g><title>ParseGenerator::generate (173 samples, 0.03%)</title><rect x="14.7388%" y="581" width="0.0321%" height="15" fill="rgb(246,84,54)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="591.50"></text></g><g><title>Parse::Parse (173 samples, 0.03%)</title><rect x="14.7388%" y="565" width="0.0321%" height="15" fill="rgb(242,110,6)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="575.50"></text></g><g><title>Parse::do_all_blocks (173 samples, 0.03%)</title><rect x="14.7388%" y="549" width="0.0321%" height="15" fill="rgb(214,47,5)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="559.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.03%)</title><rect x="14.7388%" y="533" width="0.0321%" height="15" fill="rgb(218,159,25)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (173 samples, 0.03%)</title><rect x="14.7388%" y="517" width="0.0321%" height="15" fill="rgb(215,211,28)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="527.50"></text></g><g><title>Parse::do_call (173 samples, 0.03%)</title><rect x="14.7388%" y="501" width="0.0321%" height="15" fill="rgb(238,59,32)" fg:x="79518" fg:w="173"/><text x="14.9888%" y="511.50"></text></g><g><title>ParseGenerator::generate (1,240 samples, 0.23%)</title><rect x="14.5459%" y="693" width="0.2298%" height="15" fill="rgb(226,82,3)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="703.50"></text></g><g><title>Parse::Parse (1,240 samples, 0.23%)</title><rect x="14.5459%" y="677" width="0.2298%" height="15" fill="rgb(240,164,32)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="687.50"></text></g><g><title>Parse::do_all_blocks (1,240 samples, 0.23%)</title><rect x="14.5459%" y="661" width="0.2298%" height="15" fill="rgb(232,46,7)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="671.50"></text></g><g><title>Parse::do_one_block (1,240 samples, 0.23%)</title><rect x="14.5459%" y="645" width="0.2298%" height="15" fill="rgb(229,129,53)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (1,240 samples, 0.23%)</title><rect x="14.5459%" y="629" width="0.2298%" height="15" fill="rgb(234,188,29)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="639.50"></text></g><g><title>Parse::do_call (1,240 samples, 0.23%)</title><rect x="14.5459%" y="613" width="0.2298%" height="15" fill="rgb(246,141,4)" fg:x="78477" fg:w="1240"/><text x="14.7959%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (199 samples, 0.04%)</title><rect x="14.7388%" y="597" width="0.0369%" height="15" fill="rgb(229,23,39)" fg:x="79518" fg:w="199"/><text x="14.9888%" y="607.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="14.7946%" y="149" width="0.0102%" height="15" fill="rgb(206,12,3)" fg:x="79819" fg:w="55"/><text x="15.0446%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="14.7946%" y="133" width="0.0102%" height="15" fill="rgb(252,226,20)" fg:x="79819" fg:w="55"/><text x="15.0446%" y="143.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="14.7946%" y="165" width="0.0104%" height="15" fill="rgb(216,123,35)" fg:x="79819" fg:w="56"/><text x="15.0446%" y="175.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.01%)</title><rect x="14.7939%" y="197" width="0.0119%" height="15" fill="rgb(212,68,40)" fg:x="79815" fg:w="64"/><text x="15.0439%" y="207.50"></text></g><g><title>Parse::Parse (64 samples, 0.01%)</title><rect x="14.7939%" y="181" width="0.0119%" height="15" fill="rgb(254,125,32)" fg:x="79815" fg:w="64"/><text x="15.0439%" y="191.50"></text></g><g><title>Parse::do_call (81 samples, 0.02%)</title><rect x="14.7919%" y="213" width="0.0150%" height="15" fill="rgb(253,97,22)" fg:x="79804" fg:w="81"/><text x="15.0419%" y="223.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="14.7911%" y="245" width="0.0222%" height="15" fill="rgb(241,101,14)" fg:x="79800" fg:w="120"/><text x="15.0411%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (118 samples, 0.02%)</title><rect x="14.7915%" y="229" width="0.0219%" height="15" fill="rgb(238,103,29)" fg:x="79802" fg:w="118"/><text x="15.0415%" y="239.50"></text></g><g><title>Parse::do_all_blocks (123 samples, 0.02%)</title><rect x="14.7909%" y="261" width="0.0228%" height="15" fill="rgb(233,195,47)" fg:x="79799" fg:w="123"/><text x="15.0409%" y="271.50"></text></g><g><title>ParseGenerator::generate (136 samples, 0.03%)</title><rect x="14.7893%" y="293" width="0.0252%" height="15" fill="rgb(246,218,30)" fg:x="79790" fg:w="136"/><text x="15.0393%" y="303.50"></text></g><g><title>Parse::Parse (136 samples, 0.03%)</title><rect x="14.7893%" y="277" width="0.0252%" height="15" fill="rgb(219,145,47)" fg:x="79790" fg:w="136"/><text x="15.0393%" y="287.50"></text></g><g><title>Parse::do_call (171 samples, 0.03%)</title><rect x="14.7848%" y="309" width="0.0317%" height="15" fill="rgb(243,12,26)" fg:x="79766" fg:w="171"/><text x="15.0348%" y="319.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.04%)</title><rect x="14.7826%" y="389" width="0.0413%" height="15" fill="rgb(214,87,16)" fg:x="79754" fg:w="223"/><text x="15.0326%" y="399.50"></text></g><g><title>Parse::Parse (223 samples, 0.04%)</title><rect x="14.7826%" y="373" width="0.0413%" height="15" fill="rgb(208,99,42)" fg:x="79754" fg:w="223"/><text x="15.0326%" y="383.50"></text></g><g><title>Parse::do_all_blocks (218 samples, 0.04%)</title><rect x="14.7835%" y="357" width="0.0404%" height="15" fill="rgb(253,99,2)" fg:x="79759" fg:w="218"/><text x="15.0335%" y="367.50"></text></g><g><title>Parse::do_one_block (218 samples, 0.04%)</title><rect x="14.7835%" y="341" width="0.0404%" height="15" fill="rgb(220,168,23)" fg:x="79759" fg:w="218"/><text x="15.0335%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (216 samples, 0.04%)</title><rect x="14.7839%" y="325" width="0.0400%" height="15" fill="rgb(242,38,24)" fg:x="79761" fg:w="216"/><text x="15.0339%" y="335.50"></text></g><g><title>Parse::do_call (271 samples, 0.05%)</title><rect x="14.7781%" y="405" width="0.0502%" height="15" fill="rgb(225,182,9)" fg:x="79730" fg:w="271"/><text x="15.0281%" y="415.50"></text></g><g><title>ParseGenerator::generate (274 samples, 0.05%)</title><rect x="14.7781%" y="485" width="0.0508%" height="15" fill="rgb(243,178,37)" fg:x="79730" fg:w="274"/><text x="15.0281%" y="495.50"></text></g><g><title>Parse::Parse (274 samples, 0.05%)</title><rect x="14.7781%" y="469" width="0.0508%" height="15" fill="rgb(232,139,19)" fg:x="79730" fg:w="274"/><text x="15.0281%" y="479.50"></text></g><g><title>Parse::do_all_blocks (274 samples, 0.05%)</title><rect x="14.7781%" y="453" width="0.0508%" height="15" fill="rgb(225,201,24)" fg:x="79730" fg:w="274"/><text x="15.0281%" y="463.50"></text></g><g><title>Parse::do_one_block (274 samples, 0.05%)</title><rect x="14.7781%" y="437" width="0.0508%" height="15" fill="rgb(221,47,46)" fg:x="79730" fg:w="274"/><text x="15.0281%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (274 samples, 0.05%)</title><rect x="14.7781%" y="421" width="0.0508%" height="15" fill="rgb(249,23,13)" fg:x="79730" fg:w="274"/><text x="15.0281%" y="431.50"></text></g><g><title>Parse::do_call (294 samples, 0.05%)</title><rect x="14.7763%" y="501" width="0.0545%" height="15" fill="rgb(219,9,5)" fg:x="79720" fg:w="294"/><text x="15.0263%" y="511.50"></text></g><g><title>ParseGenerator::generate (296 samples, 0.05%)</title><rect x="14.7763%" y="581" width="0.0549%" height="15" fill="rgb(254,171,16)" fg:x="79720" fg:w="296"/><text x="15.0263%" y="591.50"></text></g><g><title>Parse::Parse (296 samples, 0.05%)</title><rect x="14.7763%" y="565" width="0.0549%" height="15" fill="rgb(230,171,20)" fg:x="79720" fg:w="296"/><text x="15.0263%" y="575.50"></text></g><g><title>Parse::do_all_blocks (296 samples, 0.05%)</title><rect x="14.7763%" y="549" width="0.0549%" height="15" fill="rgb(210,71,41)" fg:x="79720" fg:w="296"/><text x="15.0263%" y="559.50"></text></g><g><title>Parse::do_one_block (296 samples, 0.05%)</title><rect x="14.7763%" y="533" width="0.0549%" height="15" fill="rgb(206,173,20)" fg:x="79720" fg:w="296"/><text x="15.0263%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (296 samples, 0.05%)</title><rect x="14.7763%" y="517" width="0.0549%" height="15" fill="rgb(233,88,34)" fg:x="79720" fg:w="296"/><text x="15.0263%" y="527.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="14.8321%" y="469" width="0.0113%" height="15" fill="rgb(223,209,46)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="479.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="14.8321%" y="453" width="0.0113%" height="15" fill="rgb(250,43,18)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="463.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.01%)</title><rect x="14.8321%" y="437" width="0.0113%" height="15" fill="rgb(208,13,10)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="447.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.01%)</title><rect x="14.8321%" y="421" width="0.0113%" height="15" fill="rgb(212,200,36)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.01%)</title><rect x="14.8321%" y="405" width="0.0113%" height="15" fill="rgb(225,90,30)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="415.50"></text></g><g><title>Parse::do_call (61 samples, 0.01%)</title><rect x="14.8321%" y="389" width="0.0113%" height="15" fill="rgb(236,182,39)" fg:x="80021" fg:w="61"/><text x="15.0821%" y="399.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.01%)</title><rect x="14.8312%" y="565" width="0.0137%" height="15" fill="rgb(212,144,35)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="575.50"></text></g><g><title>Parse::Parse (74 samples, 0.01%)</title><rect x="14.8312%" y="549" width="0.0137%" height="15" fill="rgb(228,63,44)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="559.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.01%)</title><rect x="14.8312%" y="533" width="0.0137%" height="15" fill="rgb(228,109,6)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="543.50"></text></g><g><title>Parse::do_one_block (74 samples, 0.01%)</title><rect x="14.8312%" y="517" width="0.0137%" height="15" fill="rgb(238,117,24)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (74 samples, 0.01%)</title><rect x="14.8312%" y="501" width="0.0137%" height="15" fill="rgb(242,26,26)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="511.50"></text></g><g><title>Parse::do_call (74 samples, 0.01%)</title><rect x="14.8312%" y="485" width="0.0137%" height="15" fill="rgb(221,92,48)" fg:x="80016" fg:w="74"/><text x="15.0812%" y="495.50"></text></g><g><title>ParseGenerator::generate (388 samples, 0.07%)</title><rect x="14.7757%" y="677" width="0.0719%" height="15" fill="rgb(209,209,32)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="687.50"></text></g><g><title>Parse::Parse (388 samples, 0.07%)</title><rect x="14.7757%" y="661" width="0.0719%" height="15" fill="rgb(221,70,22)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="671.50"></text></g><g><title>Parse::do_all_blocks (388 samples, 0.07%)</title><rect x="14.7757%" y="645" width="0.0719%" height="15" fill="rgb(248,145,5)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="655.50"></text></g><g><title>Parse::do_one_block (388 samples, 0.07%)</title><rect x="14.7757%" y="629" width="0.0719%" height="15" fill="rgb(226,116,26)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (388 samples, 0.07%)</title><rect x="14.7757%" y="613" width="0.0719%" height="15" fill="rgb(244,5,17)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="623.50"></text></g><g><title>Parse::do_call (388 samples, 0.07%)</title><rect x="14.7757%" y="597" width="0.0719%" height="15" fill="rgb(252,159,33)" fg:x="79717" fg:w="388"/><text x="15.0257%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (89 samples, 0.02%)</title><rect x="14.8312%" y="581" width="0.0165%" height="15" fill="rgb(206,71,0)" fg:x="80016" fg:w="89"/><text x="15.0812%" y="591.50"></text></g><g><title>Compile::Compile (57,004 samples, 10.57%)</title><rect x="4.2900%" y="805" width="10.5658%" height="15" fill="rgb(233,118,54)" fg:x="23145" fg:w="57004"/><text x="4.5400%" y="815.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (1,672 samples, 0.31%)</title><rect x="14.5459%" y="789" width="0.3099%" height="15" fill="rgb(234,83,48)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="799.50"></text></g><g><title>Parse::Parse (1,672 samples, 0.31%)</title><rect x="14.5459%" y="773" width="0.3099%" height="15" fill="rgb(228,3,54)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,672 samples, 0.31%)</title><rect x="14.5459%" y="757" width="0.3099%" height="15" fill="rgb(226,155,13)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="767.50"></text></g><g><title>Parse::do_one_block (1,672 samples, 0.31%)</title><rect x="14.5459%" y="741" width="0.3099%" height="15" fill="rgb(241,28,37)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,672 samples, 0.31%)</title><rect x="14.5459%" y="725" width="0.3099%" height="15" fill="rgb(233,93,10)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="735.50"></text></g><g><title>Parse::do_call (1,672 samples, 0.31%)</title><rect x="14.5459%" y="709" width="0.3099%" height="15" fill="rgb(225,113,19)" fg:x="78477" fg:w="1672"/><text x="14.7959%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (432 samples, 0.08%)</title><rect x="14.7757%" y="693" width="0.0801%" height="15" fill="rgb(241,2,18)" fg:x="79717" fg:w="432"/><text x="15.0257%" y="703.50"></text></g><g><title>Compile::final_graph_reshaping_impl (155 samples, 0.03%)</title><rect x="14.8975%" y="757" width="0.0287%" height="15" fill="rgb(228,207,21)" fg:x="80374" fg:w="155"/><text x="15.1475%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (396 samples, 0.07%)</title><rect x="14.8564%" y="789" width="0.0734%" height="15" fill="rgb(213,211,35)" fg:x="80152" fg:w="396"/><text x="15.1064%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping_walk (387 samples, 0.07%)</title><rect x="14.8580%" y="773" width="0.0717%" height="15" fill="rgb(209,83,10)" fg:x="80161" fg:w="387"/><text x="15.1080%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (74 samples, 0.01%)</title><rect x="14.9754%" y="773" width="0.0137%" height="15" fill="rgb(209,164,1)" fg:x="80794" fg:w="74"/><text x="15.2254%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (73 samples, 0.01%)</title><rect x="14.9755%" y="757" width="0.0135%" height="15" fill="rgb(213,184,43)" fg:x="80795" fg:w="73"/><text x="15.2255%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (70 samples, 0.01%)</title><rect x="14.9891%" y="773" width="0.0130%" height="15" fill="rgb(231,61,34)" fg:x="80868" fg:w="70"/><text x="15.2391%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (344 samples, 0.06%)</title><rect x="14.9405%" y="789" width="0.0638%" height="15" fill="rgb(235,75,3)" fg:x="80606" fg:w="344"/><text x="15.1905%" y="799.50"></text></g><g><title>ConnectionGraph::add_final_edges (54 samples, 0.01%)</title><rect x="15.0362%" y="757" width="0.0100%" height="15" fill="rgb(220,106,47)" fg:x="81122" fg:w="54"/><text x="15.2862%" y="767.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (113 samples, 0.02%)</title><rect x="15.0491%" y="757" width="0.0209%" height="15" fill="rgb(210,196,33)" fg:x="81192" fg:w="113"/><text x="15.2991%" y="767.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (78 samples, 0.01%)</title><rect x="15.0780%" y="741" width="0.0145%" height="15" fill="rgb(229,154,42)" fg:x="81348" fg:w="78"/><text x="15.3280%" y="751.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (184 samples, 0.03%)</title><rect x="15.0710%" y="757" width="0.0341%" height="15" fill="rgb(228,114,26)" fg:x="81310" fg:w="184"/><text x="15.3210%" y="767.50"></text></g><g><title>ConnectionGraph::split_memory_phi (75 samples, 0.01%)</title><rect x="15.1133%" y="725" width="0.0139%" height="15" fill="rgb(208,144,1)" fg:x="81538" fg:w="75"/><text x="15.3633%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (60 samples, 0.01%)</title><rect x="15.1160%" y="709" width="0.0111%" height="15" fill="rgb(239,112,37)" fg:x="81553" fg:w="60"/><text x="15.3660%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (93 samples, 0.02%)</title><rect x="15.1105%" y="741" width="0.0172%" height="15" fill="rgb(210,96,50)" fg:x="81523" fg:w="93"/><text x="15.3605%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (139 samples, 0.03%)</title><rect x="15.1075%" y="757" width="0.0258%" height="15" fill="rgb(222,178,2)" fg:x="81507" fg:w="139"/><text x="15.3575%" y="767.50"></text></g><g><title>ConnectionGraph::compute_escape (697 samples, 0.13%)</title><rect x="15.0061%" y="773" width="0.1292%" height="15" fill="rgb(226,74,18)" fg:x="80960" fg:w="697"/><text x="15.2561%" y="783.50"></text></g><g><title>ConnectionGraph::do_analysis (708 samples, 0.13%)</title><rect x="15.0045%" y="789" width="0.1312%" height="15" fill="rgb(225,67,54)" fg:x="80951" fg:w="708"/><text x="15.2545%" y="799.50"></text></g><g><title>PhiNode::Value (66 samples, 0.01%)</title><rect x="15.2652%" y="773" width="0.0122%" height="15" fill="rgb(251,92,32)" fg:x="82358" fg:w="66"/><text x="15.5152%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (65 samples, 0.01%)</title><rect x="15.2997%" y="773" width="0.0120%" height="15" fill="rgb(228,149,22)" fg:x="82544" fg:w="65"/><text x="15.5497%" y="783.50"></text></g><g><title>PhaseCCP::analyze (997 samples, 0.18%)</title><rect x="15.1368%" y="789" width="0.1848%" height="15" fill="rgb(243,54,13)" fg:x="81665" fg:w="997"/><text x="15.3868%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (111 samples, 0.02%)</title><rect x="15.3516%" y="757" width="0.0206%" height="15" fill="rgb(243,180,28)" fg:x="82824" fg:w="111"/><text x="15.6016%" y="767.50"></text></g><g><title>PhaseCCP::transform (279 samples, 0.05%)</title><rect x="15.3216%" y="773" width="0.0517%" height="15" fill="rgb(208,167,24)" fg:x="82662" fg:w="279"/><text x="15.5716%" y="783.50"></text></g><g><title>PhaseCCP::do_transform (280 samples, 0.05%)</title><rect x="15.3216%" y="789" width="0.0519%" height="15" fill="rgb(245,73,45)" fg:x="82662" fg:w="280"/><text x="15.5716%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (56 samples, 0.01%)</title><rect x="15.3878%" y="773" width="0.0104%" height="15" fill="rgb(237,203,48)" fg:x="83019" fg:w="56"/><text x="15.6378%" y="783.50"></text></g><g><title>IdealLoopTree::counted_loop (56 samples, 0.01%)</title><rect x="15.3878%" y="757" width="0.0104%" height="15" fill="rgb(211,197,16)" fg:x="83019" fg:w="56"/><text x="15.6378%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (71 samples, 0.01%)</title><rect x="15.4026%" y="677" width="0.0132%" height="15" fill="rgb(243,99,51)" fg:x="83099" fg:w="71"/><text x="15.6526%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (85 samples, 0.02%)</title><rect x="15.4026%" y="693" width="0.0158%" height="15" fill="rgb(215,123,29)" fg:x="83099" fg:w="85"/><text x="15.6526%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (95 samples, 0.02%)</title><rect x="15.4024%" y="709" width="0.0176%" height="15" fill="rgb(239,186,37)" fg:x="83098" fg:w="95"/><text x="15.6524%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (134 samples, 0.02%)</title><rect x="15.4013%" y="725" width="0.0248%" height="15" fill="rgb(252,136,39)" fg:x="83092" fg:w="134"/><text x="15.6513%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (67 samples, 0.01%)</title><rect x="15.4261%" y="725" width="0.0124%" height="15" fill="rgb(223,213,32)" fg:x="83226" fg:w="67"/><text x="15.6761%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (214 samples, 0.04%)</title><rect x="15.4006%" y="741" width="0.0397%" height="15" fill="rgb(233,115,5)" fg:x="83088" fg:w="214"/><text x="15.6506%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (274 samples, 0.05%)</title><rect x="15.3991%" y="757" width="0.0508%" height="15" fill="rgb(207,226,44)" fg:x="83080" fg:w="274"/><text x="15.6491%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (306 samples, 0.06%)</title><rect x="15.3981%" y="773" width="0.0567%" height="15" fill="rgb(208,126,0)" fg:x="83075" fg:w="306"/><text x="15.6481%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (131 samples, 0.02%)</title><rect x="15.4549%" y="757" width="0.0243%" height="15" fill="rgb(244,66,21)" fg:x="83381" fg:w="131"/><text x="15.7049%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (89 samples, 0.02%)</title><rect x="15.4626%" y="741" width="0.0165%" height="15" fill="rgb(222,97,12)" fg:x="83423" fg:w="89"/><text x="15.7126%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (90 samples, 0.02%)</title><rect x="15.4880%" y="741" width="0.0167%" height="15" fill="rgb(219,213,19)" fg:x="83560" fg:w="90"/><text x="15.7380%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (344 samples, 0.06%)</title><rect x="15.4549%" y="773" width="0.0638%" height="15" fill="rgb(252,169,30)" fg:x="83381" fg:w="344"/><text x="15.7049%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (213 samples, 0.04%)</title><rect x="15.4791%" y="757" width="0.0395%" height="15" fill="rgb(206,32,51)" fg:x="83512" fg:w="213"/><text x="15.7291%" y="767.50"></text></g><g><title>NTarjan::DFS (420 samples, 0.08%)</title><rect x="15.7182%" y="757" width="0.0778%" height="15" fill="rgb(250,172,42)" fg:x="84802" fg:w="420"/><text x="15.9682%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,490 samples, 0.28%)</title><rect x="15.5335%" y="773" width="0.2762%" height="15" fill="rgb(209,34,43)" fg:x="83805" fg:w="1490"/><text x="15.7835%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (91 samples, 0.02%)</title><rect x="16.1360%" y="725" width="0.0169%" height="15" fill="rgb(223,11,35)" fg:x="87056" fg:w="91"/><text x="16.3860%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (203 samples, 0.04%)</title><rect x="16.1529%" y="725" width="0.0376%" height="15" fill="rgb(251,219,26)" fg:x="87147" fg:w="203"/><text x="16.4029%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (553 samples, 0.10%)</title><rect x="16.0884%" y="757" width="0.1025%" height="15" fill="rgb(231,119,3)" fg:x="86799" fg:w="553"/><text x="16.3384%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (503 samples, 0.09%)</title><rect x="16.0977%" y="741" width="0.0932%" height="15" fill="rgb(216,97,11)" fg:x="86849" fg:w="503"/><text x="16.3477%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,174 samples, 0.40%)</title><rect x="15.8096%" y="773" width="0.4030%" height="15" fill="rgb(223,59,9)" fg:x="85295" fg:w="2174"/><text x="16.0596%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (94 samples, 0.02%)</title><rect x="16.6711%" y="741" width="0.0174%" height="15" fill="rgb(233,93,31)" fg:x="89943" fg:w="94"/><text x="16.9211%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (103 samples, 0.02%)</title><rect x="16.6895%" y="741" width="0.0191%" height="15" fill="rgb(239,81,33)" fg:x="90042" fg:w="103"/><text x="16.9395%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (84 samples, 0.02%)</title><rect x="16.8671%" y="693" width="0.0156%" height="15" fill="rgb(213,120,34)" fg:x="91000" fg:w="84"/><text x="17.1171%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (391 samples, 0.07%)</title><rect x="16.8463%" y="709" width="0.0725%" height="15" fill="rgb(243,49,53)" fg:x="90888" fg:w="391"/><text x="17.0963%" y="719.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (195 samples, 0.04%)</title><rect x="16.8826%" y="693" width="0.0361%" height="15" fill="rgb(247,216,33)" fg:x="91084" fg:w="195"/><text x="17.1326%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (560 samples, 0.10%)</title><rect x="16.8257%" y="725" width="0.1038%" height="15" fill="rgb(226,26,14)" fg:x="90777" fg:w="560"/><text x="17.0757%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (58 samples, 0.01%)</title><rect x="16.9188%" y="709" width="0.0108%" height="15" fill="rgb(215,49,53)" fg:x="91279" fg:w="58"/><text x="17.1688%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (61 samples, 0.01%)</title><rect x="16.9516%" y="709" width="0.0113%" height="15" fill="rgb(245,162,40)" fg:x="91456" fg:w="61"/><text x="17.2016%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (201 samples, 0.04%)</title><rect x="16.9297%" y="725" width="0.0373%" height="15" fill="rgb(229,68,17)" fg:x="91338" fg:w="201"/><text x="17.1797%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (631 samples, 0.12%)</title><rect x="17.4422%" y="709" width="0.1170%" height="15" fill="rgb(213,182,10)" fg:x="94103" fg:w="631"/><text x="17.6922%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,170 samples, 0.59%)</title><rect x="16.9731%" y="725" width="0.5876%" height="15" fill="rgb(245,125,30)" fg:x="91572" fg:w="3170"/><text x="17.2231%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,633 samples, 0.86%)</title><rect x="16.7086%" y="741" width="0.8587%" height="15" fill="rgb(232,202,2)" fg:x="90145" fg:w="4633"/><text x="16.9586%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_loop (58 samples, 0.01%)</title><rect x="17.5673%" y="741" width="0.0108%" height="15" fill="rgb(237,140,51)" fg:x="94778" fg:w="58"/><text x="17.8173%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,789 samples, 1.07%)</title><rect x="16.5160%" y="757" width="1.0730%" height="15" fill="rgb(236,157,25)" fg:x="89106" fg:w="5789"/><text x="16.7660%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (7,450 samples, 1.38%)</title><rect x="16.2126%" y="773" width="1.3809%" height="15" fill="rgb(219,209,0)" fg:x="87469" fg:w="7450"/><text x="16.4626%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (300 samples, 0.06%)</title><rect x="17.7486%" y="757" width="0.0556%" height="15" fill="rgb(240,116,54)" fg:x="95756" fg:w="300"/><text x="17.9986%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,151 samples, 0.21%)</title><rect x="17.5944%" y="773" width="0.2133%" height="15" fill="rgb(216,10,36)" fg:x="94924" fg:w="1151"/><text x="17.8444%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (124 samples, 0.02%)</title><rect x="17.9288%" y="757" width="0.0230%" height="15" fill="rgb(222,72,44)" fg:x="96728" fg:w="124"/><text x="18.1788%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (336 samples, 0.06%)</title><rect x="17.9529%" y="757" width="0.0623%" height="15" fill="rgb(232,159,9)" fg:x="96858" fg:w="336"/><text x="18.2029%" y="767.50"></text></g><g><title>ConstraintCastNode::dominating_cast (76 samples, 0.01%)</title><rect x="18.0435%" y="741" width="0.0141%" height="15" fill="rgb(210,39,32)" fg:x="97347" fg:w="76"/><text x="18.2935%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (61 samples, 0.01%)</title><rect x="18.0648%" y="741" width="0.0113%" height="15" fill="rgb(216,194,45)" fg:x="97462" fg:w="61"/><text x="18.3148%" y="751.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (120 samples, 0.02%)</title><rect x="18.0761%" y="741" width="0.0222%" height="15" fill="rgb(218,18,35)" fg:x="97523" fg:w="120"/><text x="18.3261%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (216 samples, 0.04%)</title><rect x="18.0987%" y="741" width="0.0400%" height="15" fill="rgb(207,83,51)" fg:x="97645" fg:w="216"/><text x="18.3487%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (71 samples, 0.01%)</title><rect x="18.1256%" y="725" width="0.0132%" height="15" fill="rgb(225,63,43)" fg:x="97790" fg:w="71"/><text x="18.3756%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (74 samples, 0.01%)</title><rect x="18.1686%" y="725" width="0.0137%" height="15" fill="rgb(207,57,36)" fg:x="98022" fg:w="74"/><text x="18.4186%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (268 samples, 0.05%)</title><rect x="18.1388%" y="741" width="0.0497%" height="15" fill="rgb(216,99,33)" fg:x="97861" fg:w="268"/><text x="18.3888%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,007 samples, 0.19%)</title><rect x="18.0151%" y="757" width="0.1866%" height="15" fill="rgb(225,42,16)" fg:x="97194" fg:w="1007"/><text x="18.2651%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,080 samples, 0.39%)</title><rect x="17.8196%" y="773" width="0.3855%" height="15" fill="rgb(220,201,45)" fg:x="96139" fg:w="2080"/><text x="18.0696%" y="783.50"></text></g><g><title>Node::remove_dead_region (57 samples, 0.01%)</title><rect x="18.2639%" y="725" width="0.0106%" height="15" fill="rgb(225,33,4)" fg:x="98536" fg:w="57"/><text x="18.5139%" y="735.50"></text></g><g><title>CallNode::Ideal (59 samples, 0.01%)</title><rect x="18.2637%" y="741" width="0.0109%" height="15" fill="rgb(224,33,50)" fg:x="98535" fg:w="59"/><text x="18.5137%" y="751.50"></text></g><g><title>LoadNode::Ideal (118 samples, 0.02%)</title><rect x="18.3136%" y="741" width="0.0219%" height="15" fill="rgb(246,198,51)" fg:x="98804" fg:w="118"/><text x="18.5636%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (142 samples, 0.03%)</title><rect x="18.3465%" y="741" width="0.0263%" height="15" fill="rgb(205,22,4)" fg:x="98982" fg:w="142"/><text x="18.5965%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (71 samples, 0.01%)</title><rect x="18.3736%" y="741" width="0.0132%" height="15" fill="rgb(206,3,8)" fg:x="99128" fg:w="71"/><text x="18.6236%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (72 samples, 0.01%)</title><rect x="18.3992%" y="725" width="0.0133%" height="15" fill="rgb(251,23,15)" fg:x="99266" fg:w="72"/><text x="18.6492%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (149 samples, 0.03%)</title><rect x="18.3870%" y="741" width="0.0276%" height="15" fill="rgb(252,88,28)" fg:x="99200" fg:w="149"/><text x="18.6370%" y="751.50"></text></g><g><title>PhiNode::Ideal (62 samples, 0.01%)</title><rect x="18.4148%" y="741" width="0.0115%" height="15" fill="rgb(212,127,14)" fg:x="99350" fg:w="62"/><text x="18.6648%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (159 samples, 0.03%)</title><rect x="18.4691%" y="725" width="0.0295%" height="15" fill="rgb(247,145,37)" fg:x="99643" fg:w="159"/><text x="18.7191%" y="735.50"></text></g><g><title>RegionNode::Ideal (299 samples, 0.06%)</title><rect x="18.4440%" y="741" width="0.0554%" height="15" fill="rgb(209,117,53)" fg:x="99508" fg:w="299"/><text x="18.6940%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="18.5021%" y="549" width="0.0106%" height="15" fill="rgb(212,90,42)" fg:x="99821" fg:w="57"/><text x="18.7521%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (64 samples, 0.01%)</title><rect x="18.5021%" y="565" width="0.0119%" height="15" fill="rgb(218,164,37)" fg:x="99821" fg:w="64"/><text x="18.7521%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (75 samples, 0.01%)</title><rect x="18.5021%" y="581" width="0.0139%" height="15" fill="rgb(246,65,34)" fg:x="99821" fg:w="75"/><text x="18.7521%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.01%)</title><rect x="18.5021%" y="597" width="0.0148%" height="15" fill="rgb(231,100,33)" fg:x="99821" fg:w="80"/><text x="18.7521%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.02%)</title><rect x="18.5021%" y="613" width="0.0152%" height="15" fill="rgb(228,126,14)" fg:x="99821" fg:w="82"/><text x="18.7521%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (87 samples, 0.02%)</title><rect x="18.5021%" y="629" width="0.0161%" height="15" fill="rgb(215,173,21)" fg:x="99821" fg:w="87"/><text x="18.7521%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (94 samples, 0.02%)</title><rect x="18.5021%" y="645" width="0.0174%" height="15" fill="rgb(210,6,40)" fg:x="99821" fg:w="94"/><text x="18.7521%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (104 samples, 0.02%)</title><rect x="18.5021%" y="661" width="0.0193%" height="15" fill="rgb(212,48,18)" fg:x="99821" fg:w="104"/><text x="18.7521%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (110 samples, 0.02%)</title><rect x="18.5021%" y="677" width="0.0204%" height="15" fill="rgb(230,214,11)" fg:x="99821" fg:w="110"/><text x="18.7521%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (117 samples, 0.02%)</title><rect x="18.5019%" y="725" width="0.0217%" height="15" fill="rgb(254,105,39)" fg:x="99820" fg:w="117"/><text x="18.7519%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (116 samples, 0.02%)</title><rect x="18.5021%" y="709" width="0.0215%" height="15" fill="rgb(245,158,5)" fg:x="99821" fg:w="116"/><text x="18.7521%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (116 samples, 0.02%)</title><rect x="18.5021%" y="693" width="0.0215%" height="15" fill="rgb(249,208,11)" fg:x="99821" fg:w="116"/><text x="18.7521%" y="703.50"></text></g><g><title>StoreNode::Ideal (130 samples, 0.02%)</title><rect x="18.5019%" y="741" width="0.0241%" height="15" fill="rgb(210,39,28)" fg:x="99820" fg:w="130"/><text x="18.7519%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (1,726 samples, 0.32%)</title><rect x="18.2174%" y="757" width="0.3199%" height="15" fill="rgb(211,56,53)" fg:x="98285" fg:w="1726"/><text x="18.4674%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (1,802 samples, 0.33%)</title><rect x="18.2059%" y="773" width="0.3340%" height="15" fill="rgb(226,201,30)" fg:x="98223" fg:w="1802"/><text x="18.4559%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (17,203 samples, 3.19%)</title><rect x="15.3776%" y="789" width="3.1886%" height="15" fill="rgb(239,101,34)" fg:x="82964" fg:w="17203"/><text x="15.6276%" y="799.50">Pha..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (80 samples, 0.01%)</title><rect x="18.5769%" y="773" width="0.0148%" height="15" fill="rgb(226,209,5)" fg:x="100225" fg:w="80"/><text x="18.8269%" y="783.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (139 samples, 0.03%)</title><rect x="18.5662%" y="789" width="0.0258%" height="15" fill="rgb(250,105,47)" fg:x="100167" fg:w="139"/><text x="18.8162%" y="799.50"></text></g><g><title>Unique_Node_List::remove (100 samples, 0.02%)</title><rect x="18.7211%" y="709" width="0.0185%" height="15" fill="rgb(230,72,3)" fg:x="101003" fg:w="100"/><text x="18.9711%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (121 samples, 0.02%)</title><rect x="18.7174%" y="725" width="0.0224%" height="15" fill="rgb(232,218,39)" fg:x="100983" fg:w="121"/><text x="18.9674%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (139 samples, 0.03%)</title><rect x="18.7156%" y="741" width="0.0258%" height="15" fill="rgb(248,166,6)" fg:x="100973" fg:w="139"/><text x="18.9656%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (59 samples, 0.01%)</title><rect x="18.7501%" y="725" width="0.0109%" height="15" fill="rgb(247,89,20)" fg:x="101159" fg:w="59"/><text x="19.0001%" y="735.50"></text></g><g><title>IfNode::Ideal (402 samples, 0.07%)</title><rect x="18.6900%" y="757" width="0.0745%" height="15" fill="rgb(248,130,54)" fg:x="100835" fg:w="402"/><text x="18.9400%" y="767.50"></text></g><g><title>split_if (108 samples, 0.02%)</title><rect x="18.7445%" y="741" width="0.0200%" height="15" fill="rgb(234,196,4)" fg:x="101129" fg:w="108"/><text x="18.9945%" y="751.50"></text></g><g><title>MemNode::Ideal_common (99 samples, 0.02%)</title><rect x="18.7788%" y="741" width="0.0183%" height="15" fill="rgb(250,143,31)" fg:x="101314" fg:w="99"/><text x="19.0288%" y="751.50"></text></g><g><title>MemNode::find_previous_store (94 samples, 0.02%)</title><rect x="18.7977%" y="741" width="0.0174%" height="15" fill="rgb(211,110,34)" fg:x="101416" fg:w="94"/><text x="19.0477%" y="751.50"></text></g><g><title>LoadNode::Ideal (229 samples, 0.04%)</title><rect x="18.7729%" y="757" width="0.0424%" height="15" fill="rgb(215,124,48)" fg:x="101282" fg:w="229"/><text x="19.0229%" y="767.50"></text></g><g><title>MergeMemNode::Ideal (55 samples, 0.01%)</title><rect x="18.8377%" y="757" width="0.0102%" height="15" fill="rgb(216,46,13)" fg:x="101632" fg:w="55"/><text x="19.0877%" y="767.50"></text></g><g><title>NodeHash::grow (88 samples, 0.02%)</title><rect x="18.8794%" y="741" width="0.0163%" height="15" fill="rgb(205,184,25)" fg:x="101857" fg:w="88"/><text x="19.1294%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (248 samples, 0.05%)</title><rect x="18.8524%" y="757" width="0.0460%" height="15" fill="rgb(228,1,10)" fg:x="101711" fg:w="248"/><text x="19.1024%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (77 samples, 0.01%)</title><rect x="18.8983%" y="757" width="0.0143%" height="15" fill="rgb(213,116,27)" fg:x="101959" fg:w="77"/><text x="19.1483%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (107 samples, 0.02%)</title><rect x="18.9334%" y="741" width="0.0198%" height="15" fill="rgb(241,95,50)" fg:x="102148" fg:w="107"/><text x="19.1834%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (235 samples, 0.04%)</title><rect x="18.9132%" y="757" width="0.0436%" height="15" fill="rgb(238,48,32)" fg:x="102039" fg:w="235"/><text x="19.1632%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (56 samples, 0.01%)</title><rect x="18.9754%" y="741" width="0.0104%" height="15" fill="rgb(235,113,49)" fg:x="102375" fg:w="56"/><text x="19.2254%" y="751.50"></text></g><g><title>PhiNode::Ideal (177 samples, 0.03%)</title><rect x="18.9577%" y="757" width="0.0328%" height="15" fill="rgb(205,127,43)" fg:x="102279" fg:w="177"/><text x="19.2077%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (145 samples, 0.03%)</title><rect x="19.0425%" y="725" width="0.0269%" height="15" fill="rgb(250,162,2)" fg:x="102737" fg:w="145"/><text x="19.2925%" y="735.50"></text></g><g><title>Unique_Node_List::remove (125 samples, 0.02%)</title><rect x="19.0463%" y="709" width="0.0232%" height="15" fill="rgb(220,13,41)" fg:x="102757" fg:w="125"/><text x="19.2963%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (177 samples, 0.03%)</title><rect x="19.0381%" y="741" width="0.0328%" height="15" fill="rgb(249,221,25)" fg:x="102713" fg:w="177"/><text x="19.2881%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (140 samples, 0.03%)</title><rect x="19.0807%" y="741" width="0.0259%" height="15" fill="rgb(215,208,19)" fg:x="102943" fg:w="140"/><text x="19.3307%" y="751.50"></text></g><g><title>RegionNode::Ideal (508 samples, 0.09%)</title><rect x="19.0138%" y="757" width="0.0942%" height="15" fill="rgb(236,175,2)" fg:x="102582" fg:w="508"/><text x="19.2638%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.01%)</title><rect x="19.1135%" y="469" width="0.0106%" height="15" fill="rgb(241,52,2)" fg:x="103120" fg:w="57"/><text x="19.3635%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="19.1133%" y="485" width="0.0126%" height="15" fill="rgb(248,140,14)" fg:x="103119" fg:w="68"/><text x="19.3633%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (87 samples, 0.02%)</title><rect x="19.1133%" y="501" width="0.0161%" height="15" fill="rgb(253,22,42)" fg:x="103119" fg:w="87"/><text x="19.3633%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.02%)</title><rect x="19.1133%" y="517" width="0.0196%" height="15" fill="rgb(234,61,47)" fg:x="103119" fg:w="106"/><text x="19.3633%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (118 samples, 0.02%)</title><rect x="19.1133%" y="533" width="0.0219%" height="15" fill="rgb(208,226,15)" fg:x="103119" fg:w="118"/><text x="19.3633%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (133 samples, 0.02%)</title><rect x="19.1133%" y="549" width="0.0247%" height="15" fill="rgb(217,221,4)" fg:x="103119" fg:w="133"/><text x="19.3633%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (158 samples, 0.03%)</title><rect x="19.1133%" y="565" width="0.0293%" height="15" fill="rgb(212,174,34)" fg:x="103119" fg:w="158"/><text x="19.3633%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (175 samples, 0.03%)</title><rect x="19.1133%" y="581" width="0.0324%" height="15" fill="rgb(253,83,4)" fg:x="103119" fg:w="175"/><text x="19.3633%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (190 samples, 0.04%)</title><rect x="19.1133%" y="597" width="0.0352%" height="15" fill="rgb(250,195,49)" fg:x="103119" fg:w="190"/><text x="19.3633%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (207 samples, 0.04%)</title><rect x="19.1133%" y="613" width="0.0384%" height="15" fill="rgb(241,192,25)" fg:x="103119" fg:w="207"/><text x="19.3633%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (223 samples, 0.04%)</title><rect x="19.1133%" y="629" width="0.0413%" height="15" fill="rgb(208,124,10)" fg:x="103119" fg:w="223"/><text x="19.3633%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (248 samples, 0.05%)</title><rect x="19.1133%" y="645" width="0.0460%" height="15" fill="rgb(222,33,0)" fg:x="103119" fg:w="248"/><text x="19.3633%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (273 samples, 0.05%)</title><rect x="19.1133%" y="661" width="0.0506%" height="15" fill="rgb(234,209,28)" fg:x="103119" fg:w="273"/><text x="19.3633%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (285 samples, 0.05%)</title><rect x="19.1133%" y="677" width="0.0528%" height="15" fill="rgb(224,11,23)" fg:x="103119" fg:w="285"/><text x="19.3633%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (310 samples, 0.06%)</title><rect x="19.1133%" y="693" width="0.0575%" height="15" fill="rgb(232,99,1)" fg:x="103119" fg:w="310"/><text x="19.3633%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (347 samples, 0.06%)</title><rect x="19.1128%" y="741" width="0.0643%" height="15" fill="rgb(237,95,45)" fg:x="103116" fg:w="347"/><text x="19.3628%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (346 samples, 0.06%)</title><rect x="19.1130%" y="725" width="0.0641%" height="15" fill="rgb(208,109,11)" fg:x="103117" fg:w="346"/><text x="19.3630%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (345 samples, 0.06%)</title><rect x="19.1132%" y="709" width="0.0639%" height="15" fill="rgb(216,190,48)" fg:x="103118" fg:w="345"/><text x="19.3632%" y="719.50"></text></g><g><title>StoreNode::Ideal (387 samples, 0.07%)</title><rect x="19.1119%" y="757" width="0.0717%" height="15" fill="rgb(251,171,36)" fg:x="103111" fg:w="387"/><text x="19.3619%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (3,166 samples, 0.59%)</title><rect x="18.6118%" y="773" width="0.5868%" height="15" fill="rgb(230,62,22)" fg:x="100413" fg:w="3166"/><text x="18.8618%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (3,301 samples, 0.61%)</title><rect x="18.5920%" y="789" width="0.6118%" height="15" fill="rgb(225,114,35)" fg:x="100306" fg:w="3301"/><text x="18.8420%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (350 samples, 0.06%)</title><rect x="19.2170%" y="757" width="0.0649%" height="15" fill="rgb(215,118,42)" fg:x="103678" fg:w="350"/><text x="19.4670%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (376 samples, 0.07%)</title><rect x="19.2134%" y="773" width="0.0697%" height="15" fill="rgb(243,119,21)" fg:x="103659" fg:w="376"/><text x="19.4634%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (123 samples, 0.02%)</title><rect x="19.2852%" y="773" width="0.0228%" height="15" fill="rgb(252,177,53)" fg:x="104046" fg:w="123"/><text x="19.5352%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (565 samples, 0.10%)</title><rect x="19.2110%" y="789" width="0.1047%" height="15" fill="rgb(237,209,29)" fg:x="103646" fg:w="565"/><text x="19.4610%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (103 samples, 0.02%)</title><rect x="19.3237%" y="757" width="0.0191%" height="15" fill="rgb(212,65,23)" fg:x="104254" fg:w="103"/><text x="19.5737%" y="767.50"></text></g><g><title>Compile::remove_useless_nodes (73 samples, 0.01%)</title><rect x="19.3428%" y="757" width="0.0135%" height="15" fill="rgb(230,222,46)" fg:x="104357" fg:w="73"/><text x="19.5928%" y="767.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (242 samples, 0.04%)</title><rect x="19.3158%" y="789" width="0.0449%" height="15" fill="rgb(215,135,32)" fg:x="104211" fg:w="242"/><text x="19.5658%" y="799.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (219 samples, 0.04%)</title><rect x="19.3200%" y="773" width="0.0406%" height="15" fill="rgb(246,101,22)" fg:x="104234" fg:w="219"/><text x="19.5700%" y="783.50"></text></g><g><title>Compile::Optimize (24,315 samples, 4.51%)</title><rect x="14.8558%" y="805" width="4.5068%" height="15" fill="rgb(206,107,13)" fg:x="80149" fg:w="24315"/><text x="15.1058%" y="815.50">Compi..</text></g><g><title>Parse::do_one_block (179 samples, 0.03%)</title><rect x="19.3678%" y="693" width="0.0332%" height="15" fill="rgb(250,100,44)" fg:x="104492" fg:w="179"/><text x="19.6178%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (164 samples, 0.03%)</title><rect x="19.3706%" y="677" width="0.0304%" height="15" fill="rgb(231,147,38)" fg:x="104507" fg:w="164"/><text x="19.6206%" y="687.50"></text></g><g><title>Parse::do_all_blocks (185 samples, 0.03%)</title><rect x="19.3671%" y="709" width="0.0343%" height="15" fill="rgb(229,8,40)" fg:x="104488" fg:w="185"/><text x="19.6171%" y="719.50"></text></g><g><title>ParseGenerator::generate (203 samples, 0.04%)</title><rect x="19.3671%" y="741" width="0.0376%" height="15" fill="rgb(221,135,30)" fg:x="104488" fg:w="203"/><text x="19.6171%" y="751.50"></text></g><g><title>Parse::Parse (203 samples, 0.04%)</title><rect x="19.3671%" y="725" width="0.0376%" height="15" fill="rgb(249,193,18)" fg:x="104488" fg:w="203"/><text x="19.6171%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (242 samples, 0.04%)</title><rect x="19.3634%" y="805" width="0.0449%" height="15" fill="rgb(209,133,39)" fg:x="104468" fg:w="242"/><text x="19.6134%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (242 samples, 0.04%)</title><rect x="19.3634%" y="789" width="0.0449%" height="15" fill="rgb(232,100,14)" fg:x="104468" fg:w="242"/><text x="19.6134%" y="799.50"></text></g><g><title>C2Compiler::compile_method (242 samples, 0.04%)</title><rect x="19.3634%" y="773" width="0.0449%" height="15" fill="rgb(224,185,1)" fg:x="104468" fg:w="242"/><text x="19.6134%" y="783.50"></text></g><g><title>Compile::Compile (242 samples, 0.04%)</title><rect x="19.3634%" y="757" width="0.0449%" height="15" fill="rgb(223,139,8)" fg:x="104468" fg:w="242"/><text x="19.6134%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (84 samples, 0.02%)</title><rect x="19.4084%" y="677" width="0.0156%" height="15" fill="rgb(232,213,38)" fg:x="104711" fg:w="84"/><text x="19.6584%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (84 samples, 0.02%)</title><rect x="19.4084%" y="661" width="0.0156%" height="15" fill="rgb(207,94,22)" fg:x="104711" fg:w="84"/><text x="19.6584%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (84 samples, 0.02%)</title><rect x="19.4084%" y="645" width="0.0156%" height="15" fill="rgb(219,183,54)" fg:x="104711" fg:w="84"/><text x="19.6584%" y="655.50"></text></g><g><title>CallGenerator::for_inline (87 samples, 0.02%)</title><rect x="19.4082%" y="757" width="0.0161%" height="15" fill="rgb(216,185,54)" fg:x="104710" fg:w="87"/><text x="19.6582%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (87 samples, 0.02%)</title><rect x="19.4082%" y="741" width="0.0161%" height="15" fill="rgb(254,217,39)" fg:x="104710" fg:w="87"/><text x="19.6582%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (87 samples, 0.02%)</title><rect x="19.4082%" y="725" width="0.0161%" height="15" fill="rgb(240,178,23)" fg:x="104710" fg:w="87"/><text x="19.6582%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (87 samples, 0.02%)</title><rect x="19.4082%" y="709" width="0.0161%" height="15" fill="rgb(218,11,47)" fg:x="104710" fg:w="87"/><text x="19.6582%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (87 samples, 0.02%)</title><rect x="19.4082%" y="693" width="0.0161%" height="15" fill="rgb(218,51,51)" fg:x="104710" fg:w="87"/><text x="19.6582%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (71 samples, 0.01%)</title><rect x="19.4385%" y="645" width="0.0132%" height="15" fill="rgb(238,126,27)" fg:x="104873" fg:w="71"/><text x="19.6885%" y="655.50"></text></g><g><title>Compile::call_generator (99 samples, 0.02%)</title><rect x="19.4366%" y="661" width="0.0183%" height="15" fill="rgb(249,202,22)" fg:x="104863" fg:w="99"/><text x="19.6866%" y="671.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.02%)</title><rect x="19.4792%" y="613" width="0.0217%" height="15" fill="rgb(254,195,49)" fg:x="105093" fg:w="117"/><text x="19.7292%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="19.4816%" y="597" width="0.0193%" height="15" fill="rgb(208,123,14)" fg:x="105106" fg:w="104"/><text x="19.7316%" y="607.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.03%)</title><rect x="19.4779%" y="629" width="0.0252%" height="15" fill="rgb(224,200,8)" fg:x="105086" fg:w="136"/><text x="19.7279%" y="639.50"></text></g><g><title>ParseGenerator::generate (228 samples, 0.04%)</title><rect x="19.4687%" y="661" width="0.0423%" height="15" fill="rgb(217,61,36)" fg:x="105036" fg:w="228"/><text x="19.7187%" y="671.50"></text></g><g><title>Parse::Parse (226 samples, 0.04%)</title><rect x="19.4690%" y="645" width="0.0419%" height="15" fill="rgb(206,35,45)" fg:x="105038" fg:w="226"/><text x="19.7190%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (97 samples, 0.02%)</title><rect x="19.5109%" y="661" width="0.0180%" height="15" fill="rgb(217,65,33)" fg:x="105264" fg:w="97"/><text x="19.7609%" y="671.50"></text></g><g><title>Parse::do_call (538 samples, 0.10%)</title><rect x="19.4366%" y="677" width="0.0997%" height="15" fill="rgb(222,158,48)" fg:x="104863" fg:w="538"/><text x="19.6866%" y="687.50"></text></g><g><title>Parse::do_get_xxx (62 samples, 0.01%)</title><rect x="19.5413%" y="661" width="0.0115%" height="15" fill="rgb(254,2,54)" fg:x="105428" fg:w="62"/><text x="19.7913%" y="671.50"></text></g><g><title>Parse::do_field_access (114 samples, 0.02%)</title><rect x="19.5402%" y="677" width="0.0211%" height="15" fill="rgb(250,143,38)" fg:x="105422" fg:w="114"/><text x="19.7902%" y="687.50"></text></g><g><title>Parse::do_all_blocks (794 samples, 0.15%)</title><rect x="19.4264%" y="725" width="0.1472%" height="15" fill="rgb(248,25,0)" fg:x="104808" fg:w="794"/><text x="19.6764%" y="735.50"></text></g><g><title>Parse::do_one_block (792 samples, 0.15%)</title><rect x="19.4268%" y="709" width="0.1468%" height="15" fill="rgb(206,152,27)" fg:x="104810" fg:w="792"/><text x="19.6768%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (789 samples, 0.15%)</title><rect x="19.4273%" y="693" width="0.1462%" height="15" fill="rgb(240,77,30)" fg:x="104813" fg:w="789"/><text x="19.6773%" y="703.50"></text></g><g><title>ParseGenerator::generate (802 samples, 0.15%)</title><rect x="19.4264%" y="757" width="0.1487%" height="15" fill="rgb(231,5,3)" fg:x="104808" fg:w="802"/><text x="19.6764%" y="767.50"></text></g><g><title>Parse::Parse (802 samples, 0.15%)</title><rect x="19.4264%" y="741" width="0.1487%" height="15" fill="rgb(207,226,32)" fg:x="104808" fg:w="802"/><text x="19.6764%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (929 samples, 0.17%)</title><rect x="19.4082%" y="805" width="0.1722%" height="15" fill="rgb(222,207,47)" fg:x="104710" fg:w="929"/><text x="19.6582%" y="815.50"></text></g><g><title>C2Compiler::compile_method (929 samples, 0.17%)</title><rect x="19.4082%" y="789" width="0.1722%" height="15" fill="rgb(229,115,45)" fg:x="104710" fg:w="929"/><text x="19.6582%" y="799.50"></text></g><g><title>Compile::Compile (929 samples, 0.17%)</title><rect x="19.4082%" y="773" width="0.1722%" height="15" fill="rgb(224,191,6)" fg:x="104710" fg:w="929"/><text x="19.6582%" y="783.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="19.5958%" y="677" width="0.0117%" height="15" fill="rgb(230,227,24)" fg:x="105722" fg:w="63"/><text x="19.8458%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.01%)</title><rect x="19.5962%" y="661" width="0.0113%" height="15" fill="rgb(228,80,19)" fg:x="105724" fg:w="61"/><text x="19.8462%" y="671.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.01%)</title><rect x="19.5953%" y="693" width="0.0137%" height="15" fill="rgb(247,229,0)" fg:x="105719" fg:w="74"/><text x="19.8453%" y="703.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.02%)</title><rect x="19.5947%" y="725" width="0.0156%" height="15" fill="rgb(237,194,15)" fg:x="105716" fg:w="84"/><text x="19.8447%" y="735.50"></text></g><g><title>Parse::Parse (84 samples, 0.02%)</title><rect x="19.5947%" y="709" width="0.0156%" height="15" fill="rgb(219,203,20)" fg:x="105716" fg:w="84"/><text x="19.8447%" y="719.50"></text></g><g><title>JavaThread::thread_main_inner (107 samples, 0.02%)</title><rect x="19.5927%" y="805" width="0.0198%" height="15" fill="rgb(234,128,8)" fg:x="105705" fg:w="107"/><text x="19.8427%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (107 samples, 0.02%)</title><rect x="19.5927%" y="789" width="0.0198%" height="15" fill="rgb(248,202,8)" fg:x="105705" fg:w="107"/><text x="19.8427%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (107 samples, 0.02%)</title><rect x="19.5927%" y="773" width="0.0198%" height="15" fill="rgb(206,104,37)" fg:x="105705" fg:w="107"/><text x="19.8427%" y="783.50"></text></g><g><title>C2Compiler::compile_method (107 samples, 0.02%)</title><rect x="19.5927%" y="757" width="0.0198%" height="15" fill="rgb(223,8,27)" fg:x="105705" fg:w="107"/><text x="19.8427%" y="767.50"></text></g><g><title>Compile::Compile (107 samples, 0.02%)</title><rect x="19.5927%" y="741" width="0.0198%" height="15" fill="rgb(216,217,28)" fg:x="105705" fg:w="107"/><text x="19.8427%" y="751.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="19.6145%" y="805" width="0.0106%" height="15" fill="rgb(249,199,1)" fg:x="105823" fg:w="57"/><text x="19.8645%" y="815.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="19.6145%" y="789" width="0.0106%" height="15" fill="rgb(240,85,17)" fg:x="105823" fg:w="57"/><text x="19.8645%" y="799.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.01%)</title><rect x="19.6145%" y="773" width="0.0106%" height="15" fill="rgb(206,108,45)" fg:x="105823" fg:w="57"/><text x="19.8645%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="19.6145%" y="757" width="0.0106%" height="15" fill="rgb(245,210,41)" fg:x="105823" fg:w="57"/><text x="19.8645%" y="767.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="19.6145%" y="741" width="0.0106%" height="15" fill="rgb(206,13,37)" fg:x="105823" fg:w="57"/><text x="19.8645%" y="751.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="19.6251%" y="805" width="0.0126%" height="15" fill="rgb(250,61,18)" fg:x="105880" fg:w="68"/><text x="19.8751%" y="815.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="19.6251%" y="789" width="0.0126%" height="15" fill="rgb(235,172,48)" fg:x="105880" fg:w="68"/><text x="19.8751%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.01%)</title><rect x="19.6251%" y="773" width="0.0126%" height="15" fill="rgb(249,201,17)" fg:x="105880" fg:w="68"/><text x="19.8751%" y="783.50"></text></g><g><title>Parse::do_call (68 samples, 0.01%)</title><rect x="19.6251%" y="757" width="0.0126%" height="15" fill="rgb(219,208,6)" fg:x="105880" fg:w="68"/><text x="19.8751%" y="767.50"></text></g><g><title>Parse::do_call (73 samples, 0.01%)</title><rect x="19.6377%" y="517" width="0.0135%" height="15" fill="rgb(248,31,23)" fg:x="105948" fg:w="73"/><text x="19.8877%" y="527.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.01%)</title><rect x="19.6377%" y="597" width="0.0148%" height="15" fill="rgb(245,15,42)" fg:x="105948" fg:w="80"/><text x="19.8877%" y="607.50"></text></g><g><title>Parse::Parse (80 samples, 0.01%)</title><rect x="19.6377%" y="581" width="0.0148%" height="15" fill="rgb(222,217,39)" fg:x="105948" fg:w="80"/><text x="19.8877%" y="591.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.01%)</title><rect x="19.6377%" y="565" width="0.0148%" height="15" fill="rgb(210,219,27)" fg:x="105948" fg:w="80"/><text x="19.8877%" y="575.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.01%)</title><rect x="19.6377%" y="549" width="0.0148%" height="15" fill="rgb(252,166,36)" fg:x="105948" fg:w="80"/><text x="19.8877%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.01%)</title><rect x="19.6377%" y="533" width="0.0148%" height="15" fill="rgb(245,132,34)" fg:x="105948" fg:w="80"/><text x="19.8877%" y="543.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.02%)</title><rect x="19.6377%" y="693" width="0.0161%" height="15" fill="rgb(236,54,3)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="703.50"></text></g><g><title>Parse::Parse (87 samples, 0.02%)</title><rect x="19.6377%" y="677" width="0.0161%" height="15" fill="rgb(241,173,43)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="687.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="19.6377%" y="661" width="0.0161%" height="15" fill="rgb(215,190,9)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="671.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.02%)</title><rect x="19.6377%" y="645" width="0.0161%" height="15" fill="rgb(242,101,16)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="19.6377%" y="629" width="0.0161%" height="15" fill="rgb(223,190,21)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="639.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="19.6377%" y="613" width="0.0161%" height="15" fill="rgb(215,228,25)" fg:x="105948" fg:w="87"/><text x="19.8877%" y="623.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.02%)</title><rect x="19.6377%" y="789" width="0.0195%" height="15" fill="rgb(225,36,22)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="799.50"></text></g><g><title>Parse::Parse (105 samples, 0.02%)</title><rect x="19.6377%" y="773" width="0.0195%" height="15" fill="rgb(251,106,46)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="783.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.02%)</title><rect x="19.6377%" y="757" width="0.0195%" height="15" fill="rgb(208,90,1)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="767.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.02%)</title><rect x="19.6377%" y="741" width="0.0195%" height="15" fill="rgb(243,10,4)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.02%)</title><rect x="19.6377%" y="725" width="0.0195%" height="15" fill="rgb(212,137,27)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="735.50"></text></g><g><title>Parse::do_call (105 samples, 0.02%)</title><rect x="19.6377%" y="709" width="0.0195%" height="15" fill="rgb(231,220,49)" fg:x="105948" fg:w="105"/><text x="19.8877%" y="719.50"></text></g><g><title>Parse::do_call (130 samples, 0.02%)</title><rect x="19.6377%" y="805" width="0.0241%" height="15" fill="rgb(237,96,20)" fg:x="105948" fg:w="130"/><text x="19.8877%" y="815.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.01%)</title><rect x="19.6618%" y="757" width="0.0111%" height="15" fill="rgb(239,229,30)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="767.50"></text></g><g><title>Parse::Parse (60 samples, 0.01%)</title><rect x="19.6618%" y="741" width="0.0111%" height="15" fill="rgb(219,65,33)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="751.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.01%)</title><rect x="19.6618%" y="725" width="0.0111%" height="15" fill="rgb(243,134,7)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="735.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.01%)</title><rect x="19.6618%" y="709" width="0.0111%" height="15" fill="rgb(216,177,54)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.01%)</title><rect x="19.6618%" y="693" width="0.0111%" height="15" fill="rgb(211,160,20)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="703.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="19.6618%" y="677" width="0.0111%" height="15" fill="rgb(239,85,39)" fg:x="106078" fg:w="60"/><text x="19.9118%" y="687.50"></text></g><g><title>Parse::do_one_block (77 samples, 0.01%)</title><rect x="19.6618%" y="805" width="0.0143%" height="15" fill="rgb(232,125,22)" fg:x="106078" fg:w="77"/><text x="19.9118%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (77 samples, 0.01%)</title><rect x="19.6618%" y="789" width="0.0143%" height="15" fill="rgb(244,57,34)" fg:x="106078" fg:w="77"/><text x="19.9118%" y="799.50"></text></g><g><title>Parse::do_call (77 samples, 0.01%)</title><rect x="19.6618%" y="773" width="0.0143%" height="15" fill="rgb(214,203,32)" fg:x="106078" fg:w="77"/><text x="19.9118%" y="783.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.01%)</title><rect x="19.6761%" y="773" width="0.0111%" height="15" fill="rgb(207,58,43)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="783.50"></text></g><g><title>Parse::Parse (60 samples, 0.01%)</title><rect x="19.6761%" y="757" width="0.0111%" height="15" fill="rgb(215,193,15)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="767.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.01%)</title><rect x="19.6761%" y="741" width="0.0111%" height="15" fill="rgb(232,15,44)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="751.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.01%)</title><rect x="19.6761%" y="725" width="0.0111%" height="15" fill="rgb(212,3,48)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.01%)</title><rect x="19.6761%" y="709" width="0.0111%" height="15" fill="rgb(218,128,7)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="719.50"></text></g><g><title>Parse::do_call (60 samples, 0.01%)</title><rect x="19.6761%" y="693" width="0.0111%" height="15" fill="rgb(226,216,39)" fg:x="106155" fg:w="60"/><text x="19.9261%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.01%)</title><rect x="19.6761%" y="805" width="0.0141%" height="15" fill="rgb(243,47,51)" fg:x="106155" fg:w="76"/><text x="19.9261%" y="815.50"></text></g><g><title>Parse::do_call (76 samples, 0.01%)</title><rect x="19.6761%" y="789" width="0.0141%" height="15" fill="rgb(241,183,40)" fg:x="106155" fg:w="76"/><text x="19.9261%" y="799.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="19.6952%" y="53" width="0.0108%" height="15" fill="rgb(231,217,32)" fg:x="106258" fg:w="58"/><text x="19.9452%" y="63.50"></text></g><g><title>ParseGenerator::generate (81 samples, 0.02%)</title><rect x="19.6944%" y="133" width="0.0150%" height="15" fill="rgb(229,61,38)" fg:x="106254" fg:w="81"/><text x="19.9444%" y="143.50"></text></g><g><title>Parse::Parse (81 samples, 0.02%)</title><rect x="19.6944%" y="117" width="0.0150%" height="15" fill="rgb(225,210,5)" fg:x="106254" fg:w="81"/><text x="19.9444%" y="127.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.02%)</title><rect x="19.6944%" y="101" width="0.0150%" height="15" fill="rgb(231,79,45)" fg:x="106254" fg:w="81"/><text x="19.9444%" y="111.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.02%)</title><rect x="19.6944%" y="85" width="0.0150%" height="15" fill="rgb(224,100,7)" fg:x="106254" fg:w="81"/><text x="19.9444%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.02%)</title><rect x="19.6944%" y="69" width="0.0150%" height="15" fill="rgb(241,198,18)" fg:x="106254" fg:w="81"/><text x="19.9444%" y="79.50"></text></g><g><title>Parse::do_call (99 samples, 0.02%)</title><rect x="19.6915%" y="149" width="0.0183%" height="15" fill="rgb(252,97,53)" fg:x="106238" fg:w="99"/><text x="19.9415%" y="159.50"></text></g><g><title>ParseGenerator::generate (106 samples, 0.02%)</title><rect x="19.6911%" y="229" width="0.0196%" height="15" fill="rgb(220,88,7)" fg:x="106236" fg:w="106"/><text x="19.9411%" y="239.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="19.6911%" y="213" width="0.0196%" height="15" fill="rgb(213,176,14)" fg:x="106236" fg:w="106"/><text x="19.9411%" y="223.50"></text></g><g><title>Parse::do_all_blocks (106 samples, 0.02%)</title><rect x="19.6911%" y="197" width="0.0196%" height="15" fill="rgb(246,73,7)" fg:x="106236" fg:w="106"/><text x="19.9411%" y="207.50"></text></g><g><title>Parse::do_one_block (106 samples, 0.02%)</title><rect x="19.6911%" y="181" width="0.0196%" height="15" fill="rgb(245,64,36)" fg:x="106236" fg:w="106"/><text x="19.9411%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (106 samples, 0.02%)</title><rect x="19.6911%" y="165" width="0.0196%" height="15" fill="rgb(245,80,10)" fg:x="106236" fg:w="106"/><text x="19.9411%" y="175.50"></text></g><g><title>ParseGenerator::generate (115 samples, 0.02%)</title><rect x="19.6905%" y="325" width="0.0213%" height="15" fill="rgb(232,107,50)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="335.50"></text></g><g><title>Parse::Parse (115 samples, 0.02%)</title><rect x="19.6905%" y="309" width="0.0213%" height="15" fill="rgb(253,3,0)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="319.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="19.6905%" y="293" width="0.0213%" height="15" fill="rgb(212,99,53)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="303.50"></text></g><g><title>Parse::do_one_block (115 samples, 0.02%)</title><rect x="19.6905%" y="277" width="0.0213%" height="15" fill="rgb(249,111,54)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (115 samples, 0.02%)</title><rect x="19.6905%" y="261" width="0.0213%" height="15" fill="rgb(249,55,30)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="271.50"></text></g><g><title>Parse::do_call (115 samples, 0.02%)</title><rect x="19.6905%" y="245" width="0.0213%" height="15" fill="rgb(237,47,42)" fg:x="106233" fg:w="115"/><text x="19.9405%" y="255.50"></text></g><g><title>ParseGenerator::generate (124 samples, 0.02%)</title><rect x="19.6904%" y="421" width="0.0230%" height="15" fill="rgb(211,20,18)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="431.50"></text></g><g><title>Parse::Parse (124 samples, 0.02%)</title><rect x="19.6904%" y="405" width="0.0230%" height="15" fill="rgb(231,203,46)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="415.50"></text></g><g><title>Parse::do_all_blocks (124 samples, 0.02%)</title><rect x="19.6904%" y="389" width="0.0230%" height="15" fill="rgb(237,142,3)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="399.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.02%)</title><rect x="19.6904%" y="373" width="0.0230%" height="15" fill="rgb(241,107,1)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (124 samples, 0.02%)</title><rect x="19.6904%" y="357" width="0.0230%" height="15" fill="rgb(229,83,13)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="367.50"></text></g><g><title>Parse::do_call (124 samples, 0.02%)</title><rect x="19.6904%" y="341" width="0.0230%" height="15" fill="rgb(241,91,40)" fg:x="106232" fg:w="124"/><text x="19.9404%" y="351.50"></text></g><g><title>ParseGenerator::generate (137 samples, 0.03%)</title><rect x="19.6904%" y="517" width="0.0254%" height="15" fill="rgb(225,3,45)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="527.50"></text></g><g><title>Parse::Parse (137 samples, 0.03%)</title><rect x="19.6904%" y="501" width="0.0254%" height="15" fill="rgb(244,223,14)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="511.50"></text></g><g><title>Parse::do_all_blocks (137 samples, 0.03%)</title><rect x="19.6904%" y="485" width="0.0254%" height="15" fill="rgb(224,124,37)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="495.50"></text></g><g><title>Parse::do_one_block (137 samples, 0.03%)</title><rect x="19.6904%" y="469" width="0.0254%" height="15" fill="rgb(251,171,30)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (137 samples, 0.03%)</title><rect x="19.6904%" y="453" width="0.0254%" height="15" fill="rgb(236,46,54)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="463.50"></text></g><g><title>Parse::do_call (137 samples, 0.03%)</title><rect x="19.6904%" y="437" width="0.0254%" height="15" fill="rgb(245,213,5)" fg:x="106232" fg:w="137"/><text x="19.9404%" y="447.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.03%)</title><rect x="19.6904%" y="613" width="0.0326%" height="15" fill="rgb(230,144,27)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="623.50"></text></g><g><title>Parse::Parse (176 samples, 0.03%)</title><rect x="19.6904%" y="597" width="0.0326%" height="15" fill="rgb(220,86,6)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="607.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.03%)</title><rect x="19.6904%" y="581" width="0.0326%" height="15" fill="rgb(240,20,13)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="591.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.03%)</title><rect x="19.6904%" y="565" width="0.0326%" height="15" fill="rgb(217,89,34)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.03%)</title><rect x="19.6904%" y="549" width="0.0326%" height="15" fill="rgb(229,13,5)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="559.50"></text></g><g><title>Parse::do_call (176 samples, 0.03%)</title><rect x="19.6904%" y="533" width="0.0326%" height="15" fill="rgb(244,67,35)" fg:x="106232" fg:w="176"/><text x="19.9404%" y="543.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="19.7230%" y="597" width="0.0109%" height="15" fill="rgb(221,40,2)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="607.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="19.7230%" y="581" width="0.0109%" height="15" fill="rgb(237,157,21)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="591.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.01%)</title><rect x="19.7230%" y="565" width="0.0109%" height="15" fill="rgb(222,94,11)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="575.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.01%)</title><rect x="19.7230%" y="549" width="0.0109%" height="15" fill="rgb(249,113,6)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.01%)</title><rect x="19.7230%" y="533" width="0.0109%" height="15" fill="rgb(238,137,36)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="543.50"></text></g><g><title>Parse::do_call (59 samples, 0.01%)</title><rect x="19.7230%" y="517" width="0.0109%" height="15" fill="rgb(210,102,26)" fg:x="106408" fg:w="59"/><text x="19.9730%" y="527.50"></text></g><g><title>ParseGenerator::generate (242 samples, 0.04%)</title><rect x="19.6902%" y="709" width="0.0449%" height="15" fill="rgb(218,30,30)" fg:x="106231" fg:w="242"/><text x="19.9402%" y="719.50"></text></g><g><title>Parse::Parse (242 samples, 0.04%)</title><rect x="19.6902%" y="693" width="0.0449%" height="15" fill="rgb(214,67,26)" fg:x="106231" fg:w="242"/><text x="19.9402%" y="703.50"></text></g><g><title>Parse::do_all_blocks (242 samples, 0.04%)</title><rect x="19.6902%" y="677" width="0.0449%" height="15" fill="rgb(251,9,53)" fg:x="106231" fg:w="242"/><text x="19.9402%" y="687.50"></text></g><g><title>Parse::do_one_block (242 samples, 0.04%)</title><rect x="19.6902%" y="661" width="0.0449%" height="15" fill="rgb(228,204,25)" fg:x="106231" fg:w="242"/><text x="19.9402%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (242 samples, 0.04%)</title><rect x="19.6902%" y="645" width="0.0449%" height="15" fill="rgb(207,153,8)" fg:x="106231" fg:w="242"/><text x="19.9402%" y="655.50"></text></g><g><title>Parse::do_call (241 samples, 0.04%)</title><rect x="19.6904%" y="629" width="0.0447%" height="15" fill="rgb(242,9,16)" fg:x="106232" fg:w="241"/><text x="19.9404%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (65 samples, 0.01%)</title><rect x="19.7230%" y="613" width="0.0120%" height="15" fill="rgb(217,211,10)" fg:x="106408" fg:w="65"/><text x="19.9730%" y="623.50"></text></g><g><title>ParseGenerator::generate (306 samples, 0.06%)</title><rect x="19.6902%" y="805" width="0.0567%" height="15" fill="rgb(219,228,52)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="815.50"></text></g><g><title>Parse::Parse (306 samples, 0.06%)</title><rect x="19.6902%" y="789" width="0.0567%" height="15" fill="rgb(231,92,29)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="799.50"></text></g><g><title>Parse::do_all_blocks (306 samples, 0.06%)</title><rect x="19.6902%" y="773" width="0.0567%" height="15" fill="rgb(232,8,23)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="783.50"></text></g><g><title>Parse::do_one_block (306 samples, 0.06%)</title><rect x="19.6902%" y="757" width="0.0567%" height="15" fill="rgb(216,211,34)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (306 samples, 0.06%)</title><rect x="19.6902%" y="741" width="0.0567%" height="15" fill="rgb(236,151,0)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="751.50"></text></g><g><title>Parse::do_call (306 samples, 0.06%)</title><rect x="19.6902%" y="725" width="0.0567%" height="15" fill="rgb(209,168,3)" fg:x="106231" fg:w="306"/><text x="19.9402%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (64 samples, 0.01%)</title><rect x="19.7350%" y="709" width="0.0119%" height="15" fill="rgb(208,129,28)" fg:x="106473" fg:w="64"/><text x="19.9850%" y="719.50"></text></g><g><title>Thread::call_run (80 samples, 0.01%)</title><rect x="19.7615%" y="805" width="0.0148%" height="15" fill="rgb(229,78,22)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (80 samples, 0.01%)</title><rect x="19.7615%" y="789" width="0.0148%" height="15" fill="rgb(228,187,13)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (80 samples, 0.01%)</title><rect x="19.7615%" y="773" width="0.0148%" height="15" fill="rgb(240,119,24)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (80 samples, 0.01%)</title><rect x="19.7615%" y="757" width="0.0148%" height="15" fill="rgb(209,194,42)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="767.50"></text></g><g><title>C2Compiler::compile_method (80 samples, 0.01%)</title><rect x="19.7615%" y="741" width="0.0148%" height="15" fill="rgb(247,200,46)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="751.50"></text></g><g><title>Compile::Compile (80 samples, 0.01%)</title><rect x="19.7615%" y="725" width="0.0148%" height="15" fill="rgb(218,76,16)" fg:x="106616" fg:w="80"/><text x="20.0115%" y="735.50"></text></g><g><title>start_thread (109 samples, 0.02%)</title><rect x="19.7927%" y="805" width="0.0202%" height="15" fill="rgb(225,21,48)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="815.50"></text></g><g><title>thread_native_entry (109 samples, 0.02%)</title><rect x="19.7927%" y="789" width="0.0202%" height="15" fill="rgb(239,223,50)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="799.50"></text></g><g><title>Thread::call_run (109 samples, 0.02%)</title><rect x="19.7927%" y="773" width="0.0202%" height="15" fill="rgb(244,45,21)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (109 samples, 0.02%)</title><rect x="19.7927%" y="757" width="0.0202%" height="15" fill="rgb(232,33,43)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (109 samples, 0.02%)</title><rect x="19.7927%" y="741" width="0.0202%" height="15" fill="rgb(209,8,3)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (109 samples, 0.02%)</title><rect x="19.7927%" y="725" width="0.0202%" height="15" fill="rgb(214,25,53)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="735.50"></text></g><g><title>C2Compiler::compile_method (109 samples, 0.02%)</title><rect x="19.7927%" y="709" width="0.0202%" height="15" fill="rgb(254,186,54)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="719.50"></text></g><g><title>Compile::Compile (109 samples, 0.02%)</title><rect x="19.7927%" y="693" width="0.0202%" height="15" fill="rgb(208,174,49)" fg:x="106784" fg:w="109"/><text x="20.0427%" y="703.50"></text></g><g><title>[unknown] (87,179 samples, 16.16%)</title><rect x="3.6594%" y="821" width="16.1588%" height="15" fill="rgb(233,191,51)" fg:x="19743" fg:w="87179"/><text x="3.9094%" y="831.50">[unknown]</text></g><g><title>Dict::Insert (88 samples, 0.02%)</title><rect x="19.8498%" y="645" width="0.0163%" height="15" fill="rgb(222,134,10)" fg:x="107092" fg:w="88"/><text x="20.0998%" y="655.50"></text></g><g><title>Type::Initialize (107 samples, 0.02%)</title><rect x="19.8496%" y="661" width="0.0198%" height="15" fill="rgb(230,226,20)" fg:x="107091" fg:w="107"/><text x="20.0996%" y="671.50"></text></g><g><title>CompileWrapper::CompileWrapper (109 samples, 0.02%)</title><rect x="19.8494%" y="677" width="0.0202%" height="15" fill="rgb(251,111,25)" fg:x="107090" fg:w="109"/><text x="20.0994%" y="687.50"></text></g><g><title>Compile::identify_useful_nodes (222 samples, 0.04%)</title><rect x="19.8785%" y="661" width="0.0411%" height="15" fill="rgb(224,40,46)" fg:x="107247" fg:w="222"/><text x="20.1285%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (252 samples, 0.05%)</title><rect x="19.9196%" y="661" width="0.0467%" height="15" fill="rgb(236,108,47)" fg:x="107469" fg:w="252"/><text x="20.1696%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (596 samples, 0.11%)</title><rect x="19.8705%" y="677" width="0.1105%" height="15" fill="rgb(234,93,0)" fg:x="107204" fg:w="596"/><text x="20.1205%" y="687.50"></text></g><g><title>C2Compiler::compile_method (884 samples, 0.16%)</title><rect x="19.8277%" y="709" width="0.1639%" height="15" fill="rgb(224,213,32)" fg:x="106973" fg:w="884"/><text x="20.0777%" y="719.50"></text></g><g><title>Compile::Compile (875 samples, 0.16%)</title><rect x="19.8294%" y="693" width="0.1622%" height="15" fill="rgb(251,11,48)" fg:x="106982" fg:w="875"/><text x="20.0794%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,074 samples, 0.20%)</title><rect x="19.8258%" y="725" width="0.1991%" height="15" fill="rgb(236,173,5)" fg:x="106963" fg:w="1074"/><text x="20.0758%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (410 samples, 0.08%)</title><rect x="20.0497%" y="469" width="0.0760%" height="15" fill="rgb(230,95,12)" fg:x="108171" fg:w="410"/><text x="20.2997%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (402 samples, 0.07%)</title><rect x="20.0512%" y="453" width="0.0745%" height="15" fill="rgb(232,209,1)" fg:x="108179" fg:w="402"/><text x="20.3012%" y="463.50"></text></g><g><title>native_write_msr (399 samples, 0.07%)</title><rect x="20.0518%" y="437" width="0.0740%" height="15" fill="rgb(232,6,1)" fg:x="108182" fg:w="399"/><text x="20.3018%" y="447.50"></text></g><g><title>finish_task_switch (436 samples, 0.08%)</title><rect x="20.0490%" y="485" width="0.0808%" height="15" fill="rgb(210,224,50)" fg:x="108167" fg:w="436"/><text x="20.2990%" y="495.50"></text></g><g><title>futex_wait_queue_me (489 samples, 0.09%)</title><rect x="20.0429%" y="533" width="0.0906%" height="15" fill="rgb(228,127,35)" fg:x="108134" fg:w="489"/><text x="20.2929%" y="543.50"></text></g><g><title>schedule (480 samples, 0.09%)</title><rect x="20.0446%" y="517" width="0.0890%" height="15" fill="rgb(245,102,45)" fg:x="108143" fg:w="480"/><text x="20.2946%" y="527.50"></text></g><g><title>__schedule (479 samples, 0.09%)</title><rect x="20.0447%" y="501" width="0.0888%" height="15" fill="rgb(214,1,49)" fg:x="108144" fg:w="479"/><text x="20.2947%" y="511.50"></text></g><g><title>do_futex (511 samples, 0.09%)</title><rect x="20.0420%" y="565" width="0.0947%" height="15" fill="rgb(226,163,40)" fg:x="108129" fg:w="511"/><text x="20.2920%" y="575.50"></text></g><g><title>futex_wait (508 samples, 0.09%)</title><rect x="20.0425%" y="549" width="0.0942%" height="15" fill="rgb(239,212,28)" fg:x="108132" fg:w="508"/><text x="20.2925%" y="559.50"></text></g><g><title>do_syscall_64 (514 samples, 0.10%)</title><rect x="20.0416%" y="597" width="0.0953%" height="15" fill="rgb(220,20,13)" fg:x="108127" fg:w="514"/><text x="20.2916%" y="607.50"></text></g><g><title>__x64_sys_futex (514 samples, 0.10%)</title><rect x="20.0416%" y="581" width="0.0953%" height="15" fill="rgb(210,164,35)" fg:x="108127" fg:w="514"/><text x="20.2916%" y="591.50"></text></g><g><title>__pthread_cond_timedwait (530 samples, 0.10%)</title><rect x="20.0396%" y="661" width="0.0982%" height="15" fill="rgb(248,109,41)" fg:x="108116" fg:w="530"/><text x="20.2896%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (529 samples, 0.10%)</title><rect x="20.0397%" y="645" width="0.0981%" height="15" fill="rgb(238,23,50)" fg:x="108117" fg:w="529"/><text x="20.2897%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (523 samples, 0.10%)</title><rect x="20.0409%" y="629" width="0.0969%" height="15" fill="rgb(211,48,49)" fg:x="108123" fg:w="523"/><text x="20.2909%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (519 samples, 0.10%)</title><rect x="20.0416%" y="613" width="0.0962%" height="15" fill="rgb(223,36,21)" fg:x="108127" fg:w="519"/><text x="20.2916%" y="623.50"></text></g><g><title>os::PlatformEvent::park (546 samples, 0.10%)</title><rect x="20.0388%" y="677" width="0.1012%" height="15" fill="rgb(207,123,46)" fg:x="108112" fg:w="546"/><text x="20.2888%" y="687.50"></text></g><g><title>Monitor::IWait (589 samples, 0.11%)</title><rect x="20.0314%" y="693" width="0.1092%" height="15" fill="rgb(240,218,32)" fg:x="108072" fg:w="589"/><text x="20.2814%" y="703.50"></text></g><g><title>Monitor::wait (607 samples, 0.11%)</title><rect x="20.0303%" y="709" width="0.1125%" height="15" fill="rgb(252,5,43)" fg:x="108066" fg:w="607"/><text x="20.2803%" y="719.50"></text></g><g><title>CompileQueue::get (664 samples, 0.12%)</title><rect x="20.0275%" y="725" width="0.1231%" height="15" fill="rgb(252,84,19)" fg:x="108051" fg:w="664"/><text x="20.2775%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,760 samples, 0.33%)</title><rect x="19.8251%" y="741" width="0.3262%" height="15" fill="rgb(243,152,39)" fg:x="106959" fg:w="1760"/><text x="20.0751%" y="751.50"></text></g><g><title>Thread::call_run (1,763 samples, 0.33%)</title><rect x="19.8249%" y="773" width="0.3268%" height="15" fill="rgb(234,160,15)" fg:x="106958" fg:w="1763"/><text x="20.0749%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,762 samples, 0.33%)</title><rect x="19.8251%" y="757" width="0.3266%" height="15" fill="rgb(237,34,20)" fg:x="106959" fg:w="1762"/><text x="20.0751%" y="767.50"></text></g><g><title>__GI___clone (1,796 samples, 0.33%)</title><rect x="19.8192%" y="821" width="0.3329%" height="15" fill="rgb(229,97,13)" fg:x="106927" fg:w="1796"/><text x="20.0692%" y="831.50"></text></g><g><title>start_thread (1,768 samples, 0.33%)</title><rect x="19.8244%" y="805" width="0.3277%" height="15" fill="rgb(234,71,50)" fg:x="106955" fg:w="1768"/><text x="20.0744%" y="815.50"></text></g><g><title>thread_native_entry (1,765 samples, 0.33%)</title><rect x="19.8249%" y="789" width="0.3271%" height="15" fill="rgb(253,155,4)" fg:x="106958" fg:w="1765"/><text x="20.0749%" y="799.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="20.1548%" y="821" width="0.0106%" height="15" fill="rgb(222,185,37)" fg:x="108738" fg:w="57"/><text x="20.4048%" y="831.50"></text></g><g><title>C2_CompilerThre (94,046 samples, 17.43%)</title><rect x="2.7501%" y="837" width="17.4316%" height="15" fill="rgb(251,177,13)" fg:x="14837" fg:w="94046"/><text x="3.0001%" y="847.50">C2_CompilerThre</text></g><g><title>[perf-34054.map] (96 samples, 0.02%)</title><rect x="20.1830%" y="821" width="0.0178%" height="15" fill="rgb(250,179,40)" fg:x="108890" fg:w="96"/><text x="20.4330%" y="831.50"></text></g><g><title>Command-Accumul (150 samples, 0.03%)</title><rect x="20.1817%" y="837" width="0.0278%" height="15" fill="rgb(242,44,2)" fg:x="108883" fg:w="150"/><text x="20.4317%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (285 samples, 0.05%)</title><rect x="20.3469%" y="581" width="0.0528%" height="15" fill="rgb(216,177,13)" fg:x="109774" fg:w="285"/><text x="20.5969%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (281 samples, 0.05%)</title><rect x="20.3476%" y="565" width="0.0521%" height="15" fill="rgb(216,106,43)" fg:x="109778" fg:w="281"/><text x="20.5976%" y="575.50"></text></g><g><title>native_write_msr (280 samples, 0.05%)</title><rect x="20.3478%" y="549" width="0.0519%" height="15" fill="rgb(216,183,2)" fg:x="109779" fg:w="280"/><text x="20.5978%" y="559.50"></text></g><g><title>finish_task_switch (302 samples, 0.06%)</title><rect x="20.3456%" y="597" width="0.0560%" height="15" fill="rgb(249,75,3)" fg:x="109767" fg:w="302"/><text x="20.5956%" y="607.50"></text></g><g><title>futex_wait_queue_me (424 samples, 0.08%)</title><rect x="20.3335%" y="645" width="0.0786%" height="15" fill="rgb(219,67,39)" fg:x="109702" fg:w="424"/><text x="20.5835%" y="655.50"></text></g><g><title>schedule (409 samples, 0.08%)</title><rect x="20.3363%" y="629" width="0.0758%" height="15" fill="rgb(253,228,2)" fg:x="109717" fg:w="409"/><text x="20.5863%" y="639.50"></text></g><g><title>__schedule (402 samples, 0.07%)</title><rect x="20.3376%" y="613" width="0.0745%" height="15" fill="rgb(235,138,27)" fg:x="109724" fg:w="402"/><text x="20.5876%" y="623.50"></text></g><g><title>do_futex (463 samples, 0.09%)</title><rect x="20.3304%" y="677" width="0.0858%" height="15" fill="rgb(236,97,51)" fg:x="109685" fg:w="463"/><text x="20.5804%" y="687.50"></text></g><g><title>futex_wait (455 samples, 0.08%)</title><rect x="20.3319%" y="661" width="0.0843%" height="15" fill="rgb(240,80,30)" fg:x="109693" fg:w="455"/><text x="20.5819%" y="671.50"></text></g><g><title>do_syscall_64 (466 samples, 0.09%)</title><rect x="20.3300%" y="709" width="0.0864%" height="15" fill="rgb(230,178,19)" fg:x="109683" fg:w="466"/><text x="20.5800%" y="719.50"></text></g><g><title>__x64_sys_futex (465 samples, 0.09%)</title><rect x="20.3302%" y="693" width="0.0862%" height="15" fill="rgb(210,190,27)" fg:x="109684" fg:w="465"/><text x="20.5802%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (474 samples, 0.09%)</title><rect x="20.3298%" y="725" width="0.0879%" height="15" fill="rgb(222,107,31)" fg:x="109682" fg:w="474"/><text x="20.5798%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (505 samples, 0.09%)</title><rect x="20.3250%" y="773" width="0.0936%" height="15" fill="rgb(216,127,34)" fg:x="109656" fg:w="505"/><text x="20.5750%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (505 samples, 0.09%)</title><rect x="20.3250%" y="757" width="0.0936%" height="15" fill="rgb(234,116,52)" fg:x="109656" fg:w="505"/><text x="20.5750%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (494 samples, 0.09%)</title><rect x="20.3270%" y="741" width="0.0916%" height="15" fill="rgb(222,124,15)" fg:x="109667" fg:w="494"/><text x="20.5770%" y="751.50"></text></g><g><title>Parker::park (608 samples, 0.11%)</title><rect x="20.3204%" y="789" width="0.1127%" height="15" fill="rgb(231,179,28)" fg:x="109631" fg:w="608"/><text x="20.5704%" y="799.50"></text></g><g><title>Unsafe_Park (622 samples, 0.12%)</title><rect x="20.3183%" y="805" width="0.1153%" height="15" fill="rgb(226,93,45)" fg:x="109620" fg:w="622"/><text x="20.5683%" y="815.50"></text></g><g><title>[perf-34054.map] (1,159 samples, 0.21%)</title><rect x="20.2212%" y="821" width="0.2148%" height="15" fill="rgb(215,8,51)" fg:x="109096" fg:w="1159"/><text x="20.4712%" y="831.50"></text></g><g><title>ForkJoinPool.co (1,188 samples, 0.22%)</title><rect x="20.2182%" y="837" width="0.2202%" height="15" fill="rgb(223,106,5)" fg:x="109080" fg:w="1188"/><text x="20.4682%" y="847.50"></text></g><g><title>G1_Conc#0 (80 samples, 0.01%)</title><rect x="20.4384%" y="837" width="0.0148%" height="15" fill="rgb(250,191,5)" fg:x="110268" fg:w="80"/><text x="20.6884%" y="847.50"></text></g><g><title>__GI___clone (78 samples, 0.01%)</title><rect x="20.4388%" y="821" width="0.0145%" height="15" fill="rgb(242,132,44)" fg:x="110270" fg:w="78"/><text x="20.6888%" y="831.50"></text></g><g><title>start_thread (78 samples, 0.01%)</title><rect x="20.4388%" y="805" width="0.0145%" height="15" fill="rgb(251,152,29)" fg:x="110270" fg:w="78"/><text x="20.6888%" y="815.50"></text></g><g><title>thread_native_entry (78 samples, 0.01%)</title><rect x="20.4388%" y="789" width="0.0145%" height="15" fill="rgb(218,179,5)" fg:x="110270" fg:w="78"/><text x="20.6888%" y="799.50"></text></g><g><title>Thread::call_run (78 samples, 0.01%)</title><rect x="20.4388%" y="773" width="0.0145%" height="15" fill="rgb(227,67,19)" fg:x="110270" fg:w="78"/><text x="20.6888%" y="783.50"></text></g><g><title>GangWorker::loop (78 samples, 0.01%)</title><rect x="20.4388%" y="757" width="0.0145%" height="15" fill="rgb(233,119,31)" fg:x="110270" fg:w="78"/><text x="20.6888%" y="767.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (125 samples, 0.02%)</title><rect x="20.4685%" y="725" width="0.0232%" height="15" fill="rgb(241,120,22)" fg:x="110430" fg:w="125"/><text x="20.7185%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (125 samples, 0.02%)</title><rect x="20.4685%" y="709" width="0.0232%" height="15" fill="rgb(224,102,30)" fg:x="110430" fg:w="125"/><text x="20.7185%" y="719.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (164 samples, 0.03%)</title><rect x="20.4685%" y="741" width="0.0304%" height="15" fill="rgb(210,164,37)" fg:x="110430" fg:w="164"/><text x="20.7185%" y="751.50"></text></g><g><title>__GI___clone (173 samples, 0.03%)</title><rect x="20.4670%" y="821" width="0.0321%" height="15" fill="rgb(226,191,16)" fg:x="110422" fg:w="173"/><text x="20.7170%" y="831.50"></text></g><g><title>start_thread (166 samples, 0.03%)</title><rect x="20.4683%" y="805" width="0.0308%" height="15" fill="rgb(214,40,45)" fg:x="110429" fg:w="166"/><text x="20.7183%" y="815.50"></text></g><g><title>thread_native_entry (166 samples, 0.03%)</title><rect x="20.4683%" y="789" width="0.0308%" height="15" fill="rgb(244,29,26)" fg:x="110429" fg:w="166"/><text x="20.7183%" y="799.50"></text></g><g><title>Thread::call_run (165 samples, 0.03%)</title><rect x="20.4685%" y="773" width="0.0306%" height="15" fill="rgb(216,16,5)" fg:x="110430" fg:w="165"/><text x="20.7185%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (165 samples, 0.03%)</title><rect x="20.4685%" y="757" width="0.0306%" height="15" fill="rgb(249,76,35)" fg:x="110430" fg:w="165"/><text x="20.7185%" y="767.50"></text></g><g><title>G1_Refine#0 (181 samples, 0.03%)</title><rect x="20.4657%" y="837" width="0.0335%" height="15" fill="rgb(207,11,44)" fg:x="110415" fg:w="181"/><text x="20.7157%" y="847.50"></text></g><g><title>__GI___clone (82 samples, 0.02%)</title><rect x="20.5059%" y="821" width="0.0152%" height="15" fill="rgb(228,190,49)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="831.50"></text></g><g><title>start_thread (82 samples, 0.02%)</title><rect x="20.5059%" y="805" width="0.0152%" height="15" fill="rgb(214,173,12)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="815.50"></text></g><g><title>thread_native_entry (82 samples, 0.02%)</title><rect x="20.5059%" y="789" width="0.0152%" height="15" fill="rgb(218,26,35)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="799.50"></text></g><g><title>Thread::call_run (82 samples, 0.02%)</title><rect x="20.5059%" y="773" width="0.0152%" height="15" fill="rgb(220,200,19)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (82 samples, 0.02%)</title><rect x="20.5059%" y="757" width="0.0152%" height="15" fill="rgb(239,95,49)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="767.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (82 samples, 0.02%)</title><rect x="20.5059%" y="741" width="0.0152%" height="15" fill="rgb(235,85,53)" fg:x="110632" fg:w="82"/><text x="20.7559%" y="751.50"></text></g><g><title>G1_Young_RemSet (85 samples, 0.02%)</title><rect x="20.5055%" y="837" width="0.0158%" height="15" fill="rgb(233,133,31)" fg:x="110630" fg:w="85"/><text x="20.7555%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (61 samples, 0.01%)</title><rect x="20.5661%" y="677" width="0.0113%" height="15" fill="rgb(218,25,20)" fg:x="110957" fg:w="61"/><text x="20.8161%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (188 samples, 0.03%)</title><rect x="20.5500%" y="693" width="0.0348%" height="15" fill="rgb(252,210,38)" fg:x="110870" fg:w="188"/><text x="20.8000%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (309 samples, 0.06%)</title><rect x="20.5287%" y="709" width="0.0573%" height="15" fill="rgb(242,134,21)" fg:x="110755" fg:w="309"/><text x="20.7787%" y="719.50"></text></g><g><title>SpinPause (95 samples, 0.02%)</title><rect x="20.5873%" y="709" width="0.0176%" height="15" fill="rgb(213,28,48)" fg:x="111071" fg:w="95"/><text x="20.8373%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (421 samples, 0.08%)</title><rect x="20.5276%" y="725" width="0.0780%" height="15" fill="rgb(250,196,2)" fg:x="110749" fg:w="421"/><text x="20.7776%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (114 samples, 0.02%)</title><rect x="20.6108%" y="629" width="0.0211%" height="15" fill="rgb(227,5,17)" fg:x="111198" fg:w="114"/><text x="20.8608%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (81 samples, 0.02%)</title><rect x="20.6169%" y="613" width="0.0150%" height="15" fill="rgb(221,226,24)" fg:x="111231" fg:w="81"/><text x="20.8669%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (156 samples, 0.03%)</title><rect x="20.6058%" y="645" width="0.0289%" height="15" fill="rgb(211,5,48)" fg:x="111171" fg:w="156"/><text x="20.8558%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (186 samples, 0.03%)</title><rect x="20.6056%" y="725" width="0.0345%" height="15" fill="rgb(219,150,6)" fg:x="111170" fg:w="186"/><text x="20.8556%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (186 samples, 0.03%)</title><rect x="20.6056%" y="709" width="0.0345%" height="15" fill="rgb(251,46,16)" fg:x="111170" fg:w="186"/><text x="20.8556%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (186 samples, 0.03%)</title><rect x="20.6056%" y="693" width="0.0345%" height="15" fill="rgb(220,204,40)" fg:x="111170" fg:w="186"/><text x="20.8556%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (186 samples, 0.03%)</title><rect x="20.6056%" y="677" width="0.0345%" height="15" fill="rgb(211,85,2)" fg:x="111170" fg:w="186"/><text x="20.8556%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (186 samples, 0.03%)</title><rect x="20.6056%" y="661" width="0.0345%" height="15" fill="rgb(229,17,7)" fg:x="111170" fg:w="186"/><text x="20.8556%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.01%)</title><rect x="20.6403%" y="645" width="0.0128%" height="15" fill="rgb(239,72,28)" fg:x="111357" fg:w="69"/><text x="20.8903%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (82 samples, 0.02%)</title><rect x="20.6403%" y="661" width="0.0152%" height="15" fill="rgb(230,47,54)" fg:x="111357" fg:w="82"/><text x="20.8903%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (84 samples, 0.02%)</title><rect x="20.6401%" y="677" width="0.0156%" height="15" fill="rgb(214,50,8)" fg:x="111356" fg:w="84"/><text x="20.8901%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (91 samples, 0.02%)</title><rect x="20.6401%" y="725" width="0.0169%" height="15" fill="rgb(216,198,43)" fg:x="111356" fg:w="91"/><text x="20.8901%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (91 samples, 0.02%)</title><rect x="20.6401%" y="709" width="0.0169%" height="15" fill="rgb(234,20,35)" fg:x="111356" fg:w="91"/><text x="20.8901%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (91 samples, 0.02%)</title><rect x="20.6401%" y="693" width="0.0169%" height="15" fill="rgb(254,45,19)" fg:x="111356" fg:w="91"/><text x="20.8901%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (54 samples, 0.01%)</title><rect x="20.6736%" y="581" width="0.0100%" height="15" fill="rgb(219,14,44)" fg:x="111537" fg:w="54"/><text x="20.9236%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (68 samples, 0.01%)</title><rect x="20.6712%" y="597" width="0.0126%" height="15" fill="rgb(217,220,26)" fg:x="111524" fg:w="68"/><text x="20.9212%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (110 samples, 0.02%)</title><rect x="20.6649%" y="629" width="0.0204%" height="15" fill="rgb(213,158,28)" fg:x="111490" fg:w="110"/><text x="20.9149%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (98 samples, 0.02%)</title><rect x="20.6672%" y="613" width="0.0182%" height="15" fill="rgb(252,51,52)" fg:x="111502" fg:w="98"/><text x="20.9172%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (150 samples, 0.03%)</title><rect x="20.6577%" y="709" width="0.0278%" height="15" fill="rgb(246,89,16)" fg:x="111451" fg:w="150"/><text x="20.9077%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (150 samples, 0.03%)</title><rect x="20.6577%" y="693" width="0.0278%" height="15" fill="rgb(216,158,49)" fg:x="111451" fg:w="150"/><text x="20.9077%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (150 samples, 0.03%)</title><rect x="20.6577%" y="677" width="0.0278%" height="15" fill="rgb(236,107,19)" fg:x="111451" fg:w="150"/><text x="20.9077%" y="687.50"></text></g><g><title>JavaThread::oops_do (149 samples, 0.03%)</title><rect x="20.6579%" y="661" width="0.0276%" height="15" fill="rgb(228,185,30)" fg:x="111452" fg:w="149"/><text x="20.9079%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (116 samples, 0.02%)</title><rect x="20.6640%" y="645" width="0.0215%" height="15" fill="rgb(246,134,8)" fg:x="111485" fg:w="116"/><text x="20.9140%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (200 samples, 0.04%)</title><rect x="20.6570%" y="725" width="0.0371%" height="15" fill="rgb(214,143,50)" fg:x="111447" fg:w="200"/><text x="20.9070%" y="735.50"></text></g><g><title>G1ParTask::work (899 samples, 0.17%)</title><rect x="20.5276%" y="741" width="0.1666%" height="15" fill="rgb(228,75,8)" fg:x="110749" fg:w="899"/><text x="20.7776%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (73 samples, 0.01%)</title><rect x="20.6948%" y="741" width="0.0135%" height="15" fill="rgb(207,175,4)" fg:x="111651" fg:w="73"/><text x="20.9448%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (59 samples, 0.01%)</title><rect x="20.7083%" y="741" width="0.0109%" height="15" fill="rgb(205,108,24)" fg:x="111724" fg:w="59"/><text x="20.9583%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (57 samples, 0.01%)</title><rect x="20.7087%" y="725" width="0.0106%" height="15" fill="rgb(244,120,49)" fg:x="111726" fg:w="57"/><text x="20.9587%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (101 samples, 0.02%)</title><rect x="20.7224%" y="517" width="0.0187%" height="15" fill="rgb(223,47,38)" fg:x="111800" fg:w="101"/><text x="20.9724%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="20.7226%" y="501" width="0.0185%" height="15" fill="rgb(229,179,11)" fg:x="111801" fg:w="100"/><text x="20.9726%" y="511.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="20.7226%" y="485" width="0.0185%" height="15" fill="rgb(231,122,1)" fg:x="111801" fg:w="100"/><text x="20.9726%" y="495.50"></text></g><g><title>finish_task_switch (103 samples, 0.02%)</title><rect x="20.7222%" y="533" width="0.0191%" height="15" fill="rgb(245,119,9)" fg:x="111799" fg:w="103"/><text x="20.9722%" y="543.50"></text></g><g><title>futex_wait_queue_me (119 samples, 0.02%)</title><rect x="20.7207%" y="581" width="0.0221%" height="15" fill="rgb(241,163,25)" fg:x="111791" fg:w="119"/><text x="20.9707%" y="591.50"></text></g><g><title>schedule (117 samples, 0.02%)</title><rect x="20.7211%" y="565" width="0.0217%" height="15" fill="rgb(217,214,3)" fg:x="111793" fg:w="117"/><text x="20.9711%" y="575.50"></text></g><g><title>__schedule (116 samples, 0.02%)</title><rect x="20.7213%" y="549" width="0.0215%" height="15" fill="rgb(240,86,28)" fg:x="111794" fg:w="116"/><text x="20.9713%" y="559.50"></text></g><g><title>do_syscall_64 (127 samples, 0.02%)</title><rect x="20.7198%" y="645" width="0.0235%" height="15" fill="rgb(215,47,9)" fg:x="111786" fg:w="127"/><text x="20.9698%" y="655.50"></text></g><g><title>__x64_sys_futex (126 samples, 0.02%)</title><rect x="20.7200%" y="629" width="0.0234%" height="15" fill="rgb(252,25,45)" fg:x="111787" fg:w="126"/><text x="20.9700%" y="639.50"></text></g><g><title>do_futex (125 samples, 0.02%)</title><rect x="20.7202%" y="613" width="0.0232%" height="15" fill="rgb(251,164,9)" fg:x="111788" fg:w="125"/><text x="20.9702%" y="623.50"></text></g><g><title>futex_wait (124 samples, 0.02%)</title><rect x="20.7204%" y="597" width="0.0230%" height="15" fill="rgb(233,194,0)" fg:x="111789" fg:w="124"/><text x="20.9704%" y="607.50"></text></g><g><title>__GI___clone (1,181 samples, 0.22%)</title><rect x="20.5250%" y="821" width="0.2189%" height="15" fill="rgb(249,111,24)" fg:x="110735" fg:w="1181"/><text x="20.7750%" y="831.50"></text></g><g><title>start_thread (1,181 samples, 0.22%)</title><rect x="20.5250%" y="805" width="0.2189%" height="15" fill="rgb(250,223,3)" fg:x="110735" fg:w="1181"/><text x="20.7750%" y="815.50"></text></g><g><title>thread_native_entry (1,181 samples, 0.22%)</title><rect x="20.5250%" y="789" width="0.2189%" height="15" fill="rgb(236,178,37)" fg:x="110735" fg:w="1181"/><text x="20.7750%" y="799.50"></text></g><g><title>Thread::call_run (1,181 samples, 0.22%)</title><rect x="20.5250%" y="773" width="0.2189%" height="15" fill="rgb(241,158,50)" fg:x="110735" fg:w="1181"/><text x="20.7750%" y="783.50"></text></g><g><title>GangWorker::loop (1,181 samples, 0.22%)</title><rect x="20.5250%" y="757" width="0.2189%" height="15" fill="rgb(213,121,41)" fg:x="110735" fg:w="1181"/><text x="20.7750%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (132 samples, 0.02%)</title><rect x="20.7194%" y="741" width="0.0245%" height="15" fill="rgb(240,92,3)" fg:x="111784" fg:w="132"/><text x="20.9694%" y="751.50"></text></g><g><title>PosixSemaphore::wait (132 samples, 0.02%)</title><rect x="20.7194%" y="725" width="0.0245%" height="15" fill="rgb(205,123,3)" fg:x="111784" fg:w="132"/><text x="20.9694%" y="735.50"></text></g><g><title>__new_sem_wait_slow (132 samples, 0.02%)</title><rect x="20.7194%" y="709" width="0.0245%" height="15" fill="rgb(205,97,47)" fg:x="111784" fg:w="132"/><text x="20.9694%" y="719.50"></text></g><g><title>do_futex_wait (132 samples, 0.02%)</title><rect x="20.7194%" y="693" width="0.0245%" height="15" fill="rgb(247,152,14)" fg:x="111784" fg:w="132"/><text x="20.9694%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (132 samples, 0.02%)</title><rect x="20.7194%" y="677" width="0.0245%" height="15" fill="rgb(248,195,53)" fg:x="111784" fg:w="132"/><text x="20.9694%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.02%)</title><rect x="20.7196%" y="661" width="0.0243%" height="15" fill="rgb(226,201,16)" fg:x="111785" fg:w="131"/><text x="20.9696%" y="671.50"></text></g><g><title>GC_Thread#0 (1,202 samples, 0.22%)</title><rect x="20.5213%" y="837" width="0.2228%" height="15" fill="rgb(205,98,0)" fg:x="110715" fg:w="1202"/><text x="20.7713%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (80 samples, 0.01%)</title><rect x="20.7938%" y="677" width="0.0148%" height="15" fill="rgb(214,191,48)" fg:x="112185" fg:w="80"/><text x="21.0438%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (222 samples, 0.04%)</title><rect x="20.7737%" y="693" width="0.0411%" height="15" fill="rgb(237,112,39)" fg:x="112077" fg:w="222"/><text x="21.0237%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (344 samples, 0.06%)</title><rect x="20.7522%" y="709" width="0.0638%" height="15" fill="rgb(247,203,27)" fg:x="111961" fg:w="344"/><text x="21.0022%" y="719.50"></text></g><g><title>SpinPause (197 samples, 0.04%)</title><rect x="20.8162%" y="709" width="0.0365%" height="15" fill="rgb(235,124,28)" fg:x="112306" fg:w="197"/><text x="21.0662%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (553 samples, 0.10%)</title><rect x="20.7509%" y="725" width="0.1025%" height="15" fill="rgb(208,207,46)" fg:x="111954" fg:w="553"/><text x="21.0009%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (80 samples, 0.01%)</title><rect x="20.8545%" y="629" width="0.0148%" height="15" fill="rgb(234,176,4)" fg:x="112513" fg:w="80"/><text x="21.1045%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (67 samples, 0.01%)</title><rect x="20.8570%" y="613" width="0.0124%" height="15" fill="rgb(230,133,28)" fg:x="112526" fg:w="67"/><text x="21.1070%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (107 samples, 0.02%)</title><rect x="20.8536%" y="645" width="0.0198%" height="15" fill="rgb(211,137,40)" fg:x="112508" fg:w="107"/><text x="21.1036%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (125 samples, 0.02%)</title><rect x="20.8534%" y="725" width="0.0232%" height="15" fill="rgb(254,35,13)" fg:x="112507" fg:w="125"/><text x="21.1034%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (125 samples, 0.02%)</title><rect x="20.8534%" y="709" width="0.0232%" height="15" fill="rgb(225,49,51)" fg:x="112507" fg:w="125"/><text x="21.1034%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (125 samples, 0.02%)</title><rect x="20.8534%" y="693" width="0.0232%" height="15" fill="rgb(251,10,15)" fg:x="112507" fg:w="125"/><text x="21.1034%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (125 samples, 0.02%)</title><rect x="20.8534%" y="677" width="0.0232%" height="15" fill="rgb(228,207,15)" fg:x="112507" fg:w="125"/><text x="21.1034%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (125 samples, 0.02%)</title><rect x="20.8534%" y="661" width="0.0232%" height="15" fill="rgb(241,99,19)" fg:x="112507" fg:w="125"/><text x="21.1034%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (54 samples, 0.01%)</title><rect x="20.8766%" y="645" width="0.0100%" height="15" fill="rgb(207,104,49)" fg:x="112632" fg:w="54"/><text x="21.1266%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (63 samples, 0.01%)</title><rect x="20.8766%" y="661" width="0.0117%" height="15" fill="rgb(234,99,18)" fg:x="112632" fg:w="63"/><text x="21.1266%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (64 samples, 0.01%)</title><rect x="20.8766%" y="677" width="0.0119%" height="15" fill="rgb(213,191,49)" fg:x="112632" fg:w="64"/><text x="21.1266%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (70 samples, 0.01%)</title><rect x="20.8766%" y="725" width="0.0130%" height="15" fill="rgb(210,226,19)" fg:x="112632" fg:w="70"/><text x="21.1266%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (70 samples, 0.01%)</title><rect x="20.8766%" y="709" width="0.0130%" height="15" fill="rgb(229,97,18)" fg:x="112632" fg:w="70"/><text x="21.1266%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (70 samples, 0.01%)</title><rect x="20.8766%" y="693" width="0.0130%" height="15" fill="rgb(211,167,15)" fg:x="112632" fg:w="70"/><text x="21.1266%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (58 samples, 0.01%)</title><rect x="20.8937%" y="629" width="0.0108%" height="15" fill="rgb(210,169,34)" fg:x="112724" fg:w="58"/><text x="21.1437%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (81 samples, 0.02%)</title><rect x="20.8896%" y="693" width="0.0150%" height="15" fill="rgb(241,121,31)" fg:x="112702" fg:w="81"/><text x="21.1396%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (79 samples, 0.01%)</title><rect x="20.8900%" y="677" width="0.0146%" height="15" fill="rgb(232,40,11)" fg:x="112704" fg:w="79"/><text x="21.1400%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (79 samples, 0.01%)</title><rect x="20.8900%" y="661" width="0.0146%" height="15" fill="rgb(205,86,26)" fg:x="112704" fg:w="79"/><text x="21.1400%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.01%)</title><rect x="20.8922%" y="645" width="0.0124%" height="15" fill="rgb(231,126,28)" fg:x="112716" fg:w="67"/><text x="21.1422%" y="655.50"></text></g><g><title>frame::oops_do_internal (72 samples, 0.01%)</title><rect x="20.9066%" y="645" width="0.0133%" height="15" fill="rgb(219,221,18)" fg:x="112794" fg:w="72"/><text x="21.1566%" y="655.50"></text></g><g><title>OopMapSet::oops_do (72 samples, 0.01%)</title><rect x="20.9066%" y="629" width="0.0133%" height="15" fill="rgb(211,40,0)" fg:x="112794" fg:w="72"/><text x="21.1566%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="20.9074%" y="613" width="0.0126%" height="15" fill="rgb(239,85,43)" fg:x="112798" fg:w="68"/><text x="21.1574%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (65 samples, 0.01%)</title><rect x="20.9235%" y="597" width="0.0120%" height="15" fill="rgb(231,55,21)" fg:x="112885" fg:w="65"/><text x="21.1735%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (90 samples, 0.02%)</title><rect x="20.9200%" y="629" width="0.0167%" height="15" fill="rgb(225,184,43)" fg:x="112866" fg:w="90"/><text x="21.1700%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (89 samples, 0.02%)</title><rect x="20.9202%" y="613" width="0.0165%" height="15" fill="rgb(251,158,41)" fg:x="112867" fg:w="89"/><text x="21.1702%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (97 samples, 0.02%)</title><rect x="20.9200%" y="645" width="0.0180%" height="15" fill="rgb(234,159,37)" fg:x="112866" fg:w="97"/><text x="21.1700%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (264 samples, 0.05%)</title><rect x="20.8896%" y="709" width="0.0489%" height="15" fill="rgb(216,204,22)" fg:x="112702" fg:w="264"/><text x="21.1396%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (183 samples, 0.03%)</title><rect x="20.9046%" y="693" width="0.0339%" height="15" fill="rgb(214,17,3)" fg:x="112783" fg:w="183"/><text x="21.1546%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (183 samples, 0.03%)</title><rect x="20.9046%" y="677" width="0.0339%" height="15" fill="rgb(212,111,17)" fg:x="112783" fg:w="183"/><text x="21.1546%" y="687.50"></text></g><g><title>JavaThread::oops_do (183 samples, 0.03%)</title><rect x="20.9046%" y="661" width="0.0339%" height="15" fill="rgb(221,157,24)" fg:x="112783" fg:w="183"/><text x="21.1546%" y="671.50"></text></g><g><title>G1RootProcessor::evacuate_roots (303 samples, 0.06%)</title><rect x="20.8896%" y="725" width="0.0562%" height="15" fill="rgb(252,16,13)" fg:x="112702" fg:w="303"/><text x="21.1396%" y="735.50"></text></g><g><title>G1ParTask::work (1,053 samples, 0.20%)</title><rect x="20.7509%" y="741" width="0.1952%" height="15" fill="rgb(221,62,2)" fg:x="111954" fg:w="1053"/><text x="21.0009%" y="751.50"></text></g><g><title>ParallelSPCleanupTask::work (57 samples, 0.01%)</title><rect x="20.9563%" y="741" width="0.0106%" height="15" fill="rgb(247,87,22)" fg:x="113062" fg:w="57"/><text x="21.2063%" y="751.50"></text></g><g><title>Threads::possibly_parallel_threads_do (54 samples, 0.01%)</title><rect x="20.9569%" y="725" width="0.0100%" height="15" fill="rgb(215,73,9)" fg:x="113065" fg:w="54"/><text x="21.2069%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (95 samples, 0.02%)</title><rect x="20.9695%" y="517" width="0.0176%" height="15" fill="rgb(207,175,33)" fg:x="113133" fg:w="95"/><text x="21.2195%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (95 samples, 0.02%)</title><rect x="20.9695%" y="501" width="0.0176%" height="15" fill="rgb(243,129,54)" fg:x="113133" fg:w="95"/><text x="21.2195%" y="511.50"></text></g><g><title>native_write_msr (95 samples, 0.02%)</title><rect x="20.9695%" y="485" width="0.0176%" height="15" fill="rgb(227,119,45)" fg:x="113133" fg:w="95"/><text x="21.2195%" y="495.50"></text></g><g><title>finish_task_switch (98 samples, 0.02%)</title><rect x="20.9695%" y="533" width="0.0182%" height="15" fill="rgb(205,109,36)" fg:x="113133" fg:w="98"/><text x="21.2195%" y="543.50"></text></g><g><title>futex_wait_queue_me (110 samples, 0.02%)</title><rect x="20.9680%" y="581" width="0.0204%" height="15" fill="rgb(205,6,39)" fg:x="113125" fg:w="110"/><text x="21.2180%" y="591.50"></text></g><g><title>schedule (108 samples, 0.02%)</title><rect x="20.9684%" y="565" width="0.0200%" height="15" fill="rgb(221,32,16)" fg:x="113127" fg:w="108"/><text x="21.2184%" y="575.50"></text></g><g><title>__schedule (106 samples, 0.02%)</title><rect x="20.9687%" y="549" width="0.0196%" height="15" fill="rgb(228,144,50)" fg:x="113129" fg:w="106"/><text x="21.2187%" y="559.50"></text></g><g><title>do_syscall_64 (116 samples, 0.02%)</title><rect x="20.9674%" y="645" width="0.0215%" height="15" fill="rgb(229,201,53)" fg:x="113122" fg:w="116"/><text x="21.2174%" y="655.50"></text></g><g><title>__x64_sys_futex (115 samples, 0.02%)</title><rect x="20.9676%" y="629" width="0.0213%" height="15" fill="rgb(249,153,27)" fg:x="113123" fg:w="115"/><text x="21.2176%" y="639.50"></text></g><g><title>do_futex (114 samples, 0.02%)</title><rect x="20.9678%" y="613" width="0.0211%" height="15" fill="rgb(227,106,25)" fg:x="113124" fg:w="114"/><text x="21.2178%" y="623.50"></text></g><g><title>futex_wait (114 samples, 0.02%)</title><rect x="20.9678%" y="597" width="0.0211%" height="15" fill="rgb(230,65,29)" fg:x="113124" fg:w="114"/><text x="21.2178%" y="607.50"></text></g><g><title>__GI___clone (1,299 samples, 0.24%)</title><rect x="20.7489%" y="821" width="0.2408%" height="15" fill="rgb(221,57,46)" fg:x="111943" fg:w="1299"/><text x="20.9989%" y="831.50"></text></g><g><title>start_thread (1,299 samples, 0.24%)</title><rect x="20.7489%" y="805" width="0.2408%" height="15" fill="rgb(229,161,17)" fg:x="111943" fg:w="1299"/><text x="20.9989%" y="815.50"></text></g><g><title>thread_native_entry (1,299 samples, 0.24%)</title><rect x="20.7489%" y="789" width="0.2408%" height="15" fill="rgb(222,213,11)" fg:x="111943" fg:w="1299"/><text x="20.9989%" y="799.50"></text></g><g><title>Thread::call_run (1,299 samples, 0.24%)</title><rect x="20.7489%" y="773" width="0.2408%" height="15" fill="rgb(235,35,13)" fg:x="111943" fg:w="1299"/><text x="20.9989%" y="783.50"></text></g><g><title>GangWorker::loop (1,299 samples, 0.24%)</title><rect x="20.7489%" y="757" width="0.2408%" height="15" fill="rgb(233,158,34)" fg:x="111943" fg:w="1299"/><text x="20.9989%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (122 samples, 0.02%)</title><rect x="20.9671%" y="741" width="0.0226%" height="15" fill="rgb(215,151,48)" fg:x="113120" fg:w="122"/><text x="21.2171%" y="751.50"></text></g><g><title>PosixSemaphore::wait (122 samples, 0.02%)</title><rect x="20.9671%" y="725" width="0.0226%" height="15" fill="rgb(229,84,14)" fg:x="113120" fg:w="122"/><text x="21.2171%" y="735.50"></text></g><g><title>__new_sem_wait_slow (121 samples, 0.02%)</title><rect x="20.9672%" y="709" width="0.0224%" height="15" fill="rgb(229,68,14)" fg:x="113121" fg:w="121"/><text x="21.2172%" y="719.50"></text></g><g><title>do_futex_wait (121 samples, 0.02%)</title><rect x="20.9672%" y="693" width="0.0224%" height="15" fill="rgb(243,106,26)" fg:x="113121" fg:w="121"/><text x="21.2172%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (121 samples, 0.02%)</title><rect x="20.9672%" y="677" width="0.0224%" height="15" fill="rgb(206,45,38)" fg:x="113121" fg:w="121"/><text x="21.2172%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (120 samples, 0.02%)</title><rect x="20.9674%" y="661" width="0.0222%" height="15" fill="rgb(226,6,15)" fg:x="113122" fg:w="120"/><text x="21.2174%" y="671.50"></text></g><g><title>GC_Thread#1 (1,326 samples, 0.25%)</title><rect x="20.7441%" y="837" width="0.2458%" height="15" fill="rgb(232,22,54)" fg:x="111917" fg:w="1326"/><text x="20.9941%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (132 samples, 0.02%)</title><rect x="21.0178%" y="693" width="0.0245%" height="15" fill="rgb(229,222,32)" fg:x="113394" fg:w="132"/><text x="21.2678%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (232 samples, 0.04%)</title><rect x="21.0001%" y="709" width="0.0430%" height="15" fill="rgb(228,62,29)" fg:x="113298" fg:w="232"/><text x="21.2501%" y="719.50"></text></g><g><title>SpinPause (151 samples, 0.03%)</title><rect x="21.0451%" y="709" width="0.0280%" height="15" fill="rgb(251,103,34)" fg:x="113541" fg:w="151"/><text x="21.2951%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (404 samples, 0.07%)</title><rect x="20.9986%" y="725" width="0.0749%" height="15" fill="rgb(233,12,30)" fg:x="113290" fg:w="404"/><text x="21.2486%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (111 samples, 0.02%)</title><rect x="21.0779%" y="629" width="0.0206%" height="15" fill="rgb(238,52,0)" fg:x="113718" fg:w="111"/><text x="21.3279%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (93 samples, 0.02%)</title><rect x="21.0812%" y="613" width="0.0172%" height="15" fill="rgb(223,98,5)" fg:x="113736" fg:w="93"/><text x="21.3312%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (147 samples, 0.03%)</title><rect x="21.0736%" y="645" width="0.0272%" height="15" fill="rgb(228,75,37)" fg:x="113695" fg:w="147"/><text x="21.3236%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (173 samples, 0.03%)</title><rect x="21.0736%" y="725" width="0.0321%" height="15" fill="rgb(205,115,49)" fg:x="113695" fg:w="173"/><text x="21.3236%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (173 samples, 0.03%)</title><rect x="21.0736%" y="709" width="0.0321%" height="15" fill="rgb(250,154,43)" fg:x="113695" fg:w="173"/><text x="21.3236%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (173 samples, 0.03%)</title><rect x="21.0736%" y="693" width="0.0321%" height="15" fill="rgb(226,43,29)" fg:x="113695" fg:w="173"/><text x="21.3236%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (173 samples, 0.03%)</title><rect x="21.0736%" y="677" width="0.0321%" height="15" fill="rgb(249,228,39)" fg:x="113695" fg:w="173"/><text x="21.3236%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (173 samples, 0.03%)</title><rect x="21.0736%" y="661" width="0.0321%" height="15" fill="rgb(216,79,43)" fg:x="113695" fg:w="173"/><text x="21.3236%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (55 samples, 0.01%)</title><rect x="21.1076%" y="629" width="0.0102%" height="15" fill="rgb(228,95,12)" fg:x="113878" fg:w="55"/><text x="21.3576%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="21.1059%" y="645" width="0.0137%" height="15" fill="rgb(249,221,15)" fg:x="113869" fg:w="74"/><text x="21.3559%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (93 samples, 0.02%)</title><rect x="21.1059%" y="661" width="0.0172%" height="15" fill="rgb(233,34,13)" fg:x="113869" fg:w="93"/><text x="21.3559%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (94 samples, 0.02%)</title><rect x="21.1059%" y="677" width="0.0174%" height="15" fill="rgb(214,103,39)" fg:x="113869" fg:w="94"/><text x="21.3559%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (125 samples, 0.02%)</title><rect x="21.1057%" y="725" width="0.0232%" height="15" fill="rgb(251,126,39)" fg:x="113868" fg:w="125"/><text x="21.3557%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (125 samples, 0.02%)</title><rect x="21.1057%" y="709" width="0.0232%" height="15" fill="rgb(214,216,36)" fg:x="113868" fg:w="125"/><text x="21.3557%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (125 samples, 0.02%)</title><rect x="21.1057%" y="693" width="0.0232%" height="15" fill="rgb(220,221,8)" fg:x="113868" fg:w="125"/><text x="21.3557%" y="703.50"></text></g><g><title>frame::oops_do_internal (61 samples, 0.01%)</title><rect x="21.1348%" y="645" width="0.0113%" height="15" fill="rgb(240,216,3)" fg:x="114025" fg:w="61"/><text x="21.3848%" y="655.50"></text></g><g><title>OopMapSet::oops_do (61 samples, 0.01%)</title><rect x="21.1348%" y="629" width="0.0113%" height="15" fill="rgb(232,218,17)" fg:x="114025" fg:w="61"/><text x="21.3848%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (59 samples, 0.01%)</title><rect x="21.1352%" y="613" width="0.0109%" height="15" fill="rgb(229,163,45)" fg:x="114027" fg:w="59"/><text x="21.3852%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (93 samples, 0.02%)</title><rect x="21.1526%" y="597" width="0.0172%" height="15" fill="rgb(231,110,42)" fg:x="114121" fg:w="93"/><text x="21.4026%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="21.1578%" y="581" width="0.0120%" height="15" fill="rgb(208,170,48)" fg:x="114149" fg:w="65"/><text x="21.4078%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (138 samples, 0.03%)</title><rect x="21.1461%" y="629" width="0.0256%" height="15" fill="rgb(239,116,25)" fg:x="114086" fg:w="138"/><text x="21.3961%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (138 samples, 0.03%)</title><rect x="21.1461%" y="613" width="0.0256%" height="15" fill="rgb(219,200,50)" fg:x="114086" fg:w="138"/><text x="21.3961%" y="623.50"></text></g><g><title>JavaThread::oops_do (235 samples, 0.04%)</title><rect x="21.1305%" y="661" width="0.0436%" height="15" fill="rgb(245,200,0)" fg:x="114002" fg:w="235"/><text x="21.3805%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (151 samples, 0.03%)</title><rect x="21.1461%" y="645" width="0.0280%" height="15" fill="rgb(245,119,33)" fg:x="114086" fg:w="151"/><text x="21.3961%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (236 samples, 0.04%)</title><rect x="21.1305%" y="709" width="0.0437%" height="15" fill="rgb(231,125,12)" fg:x="114002" fg:w="236"/><text x="21.3805%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (236 samples, 0.04%)</title><rect x="21.1305%" y="693" width="0.0437%" height="15" fill="rgb(216,96,41)" fg:x="114002" fg:w="236"/><text x="21.3805%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (236 samples, 0.04%)</title><rect x="21.1305%" y="677" width="0.0437%" height="15" fill="rgb(248,43,45)" fg:x="114002" fg:w="236"/><text x="21.3805%" y="687.50"></text></g><g><title>G1ParTask::work (984 samples, 0.18%)</title><rect x="20.9986%" y="741" width="0.1824%" height="15" fill="rgb(217,222,7)" fg:x="113290" fg:w="984"/><text x="21.2486%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (281 samples, 0.05%)</title><rect x="21.1289%" y="725" width="0.0521%" height="15" fill="rgb(233,28,6)" fg:x="113993" fg:w="281"/><text x="21.3789%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.01%)</title><rect x="21.1858%" y="741" width="0.0113%" height="15" fill="rgb(231,218,15)" fg:x="114300" fg:w="61"/><text x="21.4358%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (151 samples, 0.03%)</title><rect x="21.2097%" y="517" width="0.0280%" height="15" fill="rgb(226,171,48)" fg:x="114429" fg:w="151"/><text x="21.4597%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (150 samples, 0.03%)</title><rect x="21.2099%" y="501" width="0.0278%" height="15" fill="rgb(235,201,9)" fg:x="114430" fg:w="150"/><text x="21.4599%" y="511.50"></text></g><g><title>native_write_msr (148 samples, 0.03%)</title><rect x="21.2102%" y="485" width="0.0274%" height="15" fill="rgb(217,80,15)" fg:x="114432" fg:w="148"/><text x="21.4602%" y="495.50"></text></g><g><title>finish_task_switch (159 samples, 0.03%)</title><rect x="21.2086%" y="533" width="0.0295%" height="15" fill="rgb(219,152,8)" fg:x="114423" fg:w="159"/><text x="21.4586%" y="543.50"></text></g><g><title>do_syscall_64 (174 samples, 0.03%)</title><rect x="21.2069%" y="645" width="0.0323%" height="15" fill="rgb(243,107,38)" fg:x="114414" fg:w="174"/><text x="21.4569%" y="655.50"></text></g><g><title>__x64_sys_futex (174 samples, 0.03%)</title><rect x="21.2069%" y="629" width="0.0323%" height="15" fill="rgb(231,17,5)" fg:x="114414" fg:w="174"/><text x="21.4569%" y="639.50"></text></g><g><title>do_futex (173 samples, 0.03%)</title><rect x="21.2071%" y="613" width="0.0321%" height="15" fill="rgb(209,25,54)" fg:x="114415" fg:w="173"/><text x="21.4571%" y="623.50"></text></g><g><title>futex_wait (173 samples, 0.03%)</title><rect x="21.2071%" y="597" width="0.0321%" height="15" fill="rgb(219,0,2)" fg:x="114415" fg:w="173"/><text x="21.4571%" y="607.50"></text></g><g><title>futex_wait_queue_me (170 samples, 0.03%)</title><rect x="21.2076%" y="581" width="0.0315%" height="15" fill="rgb(246,9,5)" fg:x="114418" fg:w="170"/><text x="21.4576%" y="591.50"></text></g><g><title>schedule (169 samples, 0.03%)</title><rect x="21.2078%" y="565" width="0.0313%" height="15" fill="rgb(226,159,4)" fg:x="114419" fg:w="169"/><text x="21.4578%" y="575.50"></text></g><g><title>__schedule (169 samples, 0.03%)</title><rect x="21.2078%" y="549" width="0.0313%" height="15" fill="rgb(219,175,34)" fg:x="114419" fg:w="169"/><text x="21.4578%" y="559.50"></text></g><g><title>__GI___clone (1,311 samples, 0.24%)</title><rect x="20.9967%" y="821" width="0.2430%" height="15" fill="rgb(236,10,46)" fg:x="113280" fg:w="1311"/><text x="21.2467%" y="831.50"></text></g><g><title>start_thread (1,311 samples, 0.24%)</title><rect x="20.9967%" y="805" width="0.2430%" height="15" fill="rgb(240,211,16)" fg:x="113280" fg:w="1311"/><text x="21.2467%" y="815.50"></text></g><g><title>thread_native_entry (1,311 samples, 0.24%)</title><rect x="20.9967%" y="789" width="0.2430%" height="15" fill="rgb(205,3,43)" fg:x="113280" fg:w="1311"/><text x="21.2467%" y="799.50"></text></g><g><title>Thread::call_run (1,311 samples, 0.24%)</title><rect x="20.9967%" y="773" width="0.2430%" height="15" fill="rgb(245,7,22)" fg:x="113280" fg:w="1311"/><text x="21.2467%" y="783.50"></text></g><g><title>GangWorker::loop (1,311 samples, 0.24%)</title><rect x="20.9967%" y="757" width="0.2430%" height="15" fill="rgb(239,132,32)" fg:x="113280" fg:w="1311"/><text x="21.2467%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (178 samples, 0.03%)</title><rect x="21.2067%" y="741" width="0.0330%" height="15" fill="rgb(228,202,34)" fg:x="114413" fg:w="178"/><text x="21.4567%" y="751.50"></text></g><g><title>PosixSemaphore::wait (178 samples, 0.03%)</title><rect x="21.2067%" y="725" width="0.0330%" height="15" fill="rgb(254,200,22)" fg:x="114413" fg:w="178"/><text x="21.4567%" y="735.50"></text></g><g><title>__new_sem_wait_slow (178 samples, 0.03%)</title><rect x="21.2067%" y="709" width="0.0330%" height="15" fill="rgb(219,10,39)" fg:x="114413" fg:w="178"/><text x="21.4567%" y="719.50"></text></g><g><title>do_futex_wait (177 samples, 0.03%)</title><rect x="21.2069%" y="693" width="0.0328%" height="15" fill="rgb(226,210,39)" fg:x="114414" fg:w="177"/><text x="21.4569%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (177 samples, 0.03%)</title><rect x="21.2069%" y="677" width="0.0328%" height="15" fill="rgb(208,219,16)" fg:x="114414" fg:w="177"/><text x="21.4569%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (177 samples, 0.03%)</title><rect x="21.2069%" y="661" width="0.0328%" height="15" fill="rgb(216,158,51)" fg:x="114414" fg:w="177"/><text x="21.4569%" y="671.50"></text></g><g><title>GC_Thread#2 (1,350 samples, 0.25%)</title><rect x="20.9899%" y="837" width="0.2502%" height="15" fill="rgb(233,14,44)" fg:x="113243" fg:w="1350"/><text x="21.2399%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (165 samples, 0.03%)</title><rect x="21.2694%" y="693" width="0.0306%" height="15" fill="rgb(237,97,39)" fg:x="114751" fg:w="165"/><text x="21.5194%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (281 samples, 0.05%)</title><rect x="21.2488%" y="709" width="0.0521%" height="15" fill="rgb(218,198,43)" fg:x="114640" fg:w="281"/><text x="21.4988%" y="719.50"></text></g><g><title>SpinPause (222 samples, 0.04%)</title><rect x="21.3029%" y="709" width="0.0411%" height="15" fill="rgb(231,104,20)" fg:x="114932" fg:w="222"/><text x="21.5529%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (534 samples, 0.10%)</title><rect x="21.2458%" y="725" width="0.0990%" height="15" fill="rgb(254,36,13)" fg:x="114624" fg:w="534"/><text x="21.4958%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (80 samples, 0.01%)</title><rect x="21.3480%" y="629" width="0.0148%" height="15" fill="rgb(248,14,50)" fg:x="115175" fg:w="80"/><text x="21.5980%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (55 samples, 0.01%)</title><rect x="21.3526%" y="613" width="0.0102%" height="15" fill="rgb(217,107,29)" fg:x="115200" fg:w="55"/><text x="21.6026%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (112 samples, 0.02%)</title><rect x="21.3448%" y="645" width="0.0208%" height="15" fill="rgb(251,169,33)" fg:x="115158" fg:w="112"/><text x="21.5948%" y="655.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (124 samples, 0.02%)</title><rect x="21.3448%" y="661" width="0.0230%" height="15" fill="rgb(217,108,32)" fg:x="115158" fg:w="124"/><text x="21.5948%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (125 samples, 0.02%)</title><rect x="21.3448%" y="725" width="0.0232%" height="15" fill="rgb(219,66,42)" fg:x="115158" fg:w="125"/><text x="21.5948%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (125 samples, 0.02%)</title><rect x="21.3448%" y="709" width="0.0232%" height="15" fill="rgb(206,180,7)" fg:x="115158" fg:w="125"/><text x="21.5948%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (125 samples, 0.02%)</title><rect x="21.3448%" y="693" width="0.0232%" height="15" fill="rgb(208,226,31)" fg:x="115158" fg:w="125"/><text x="21.5948%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (125 samples, 0.02%)</title><rect x="21.3448%" y="677" width="0.0232%" height="15" fill="rgb(218,26,49)" fg:x="115158" fg:w="125"/><text x="21.5948%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (61 samples, 0.01%)</title><rect x="21.3696%" y="629" width="0.0113%" height="15" fill="rgb(233,197,48)" fg:x="115292" fg:w="61"/><text x="21.6196%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="21.3682%" y="645" width="0.0137%" height="15" fill="rgb(252,181,51)" fg:x="115284" fg:w="74"/><text x="21.6182%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (92 samples, 0.02%)</title><rect x="21.3682%" y="661" width="0.0171%" height="15" fill="rgb(253,90,19)" fg:x="115284" fg:w="92"/><text x="21.6182%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (100 samples, 0.02%)</title><rect x="21.3680%" y="677" width="0.0185%" height="15" fill="rgb(215,171,30)" fg:x="115283" fg:w="100"/><text x="21.6180%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (102 samples, 0.02%)</title><rect x="21.3680%" y="725" width="0.0189%" height="15" fill="rgb(214,222,9)" fg:x="115283" fg:w="102"/><text x="21.6180%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (102 samples, 0.02%)</title><rect x="21.3680%" y="709" width="0.0189%" height="15" fill="rgb(223,3,22)" fg:x="115283" fg:w="102"/><text x="21.6180%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (102 samples, 0.02%)</title><rect x="21.3680%" y="693" width="0.0189%" height="15" fill="rgb(225,196,46)" fg:x="115283" fg:w="102"/><text x="21.6180%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (60 samples, 0.01%)</title><rect x="21.3869%" y="693" width="0.0111%" height="15" fill="rgb(209,110,37)" fg:x="115385" fg:w="60"/><text x="21.6369%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (58 samples, 0.01%)</title><rect x="21.3873%" y="677" width="0.0108%" height="15" fill="rgb(249,89,12)" fg:x="115387" fg:w="58"/><text x="21.6373%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (58 samples, 0.01%)</title><rect x="21.3873%" y="661" width="0.0108%" height="15" fill="rgb(226,27,33)" fg:x="115387" fg:w="58"/><text x="21.6373%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (72 samples, 0.01%)</title><rect x="21.4043%" y="597" width="0.0133%" height="15" fill="rgb(213,82,22)" fg:x="115479" fg:w="72"/><text x="21.6543%" y="607.50"></text></g><g><title>frame::oops_do_internal (103 samples, 0.02%)</title><rect x="21.4010%" y="645" width="0.0191%" height="15" fill="rgb(248,140,0)" fg:x="115461" fg:w="103"/><text x="21.6510%" y="655.50"></text></g><g><title>OopMapSet::oops_do (103 samples, 0.02%)</title><rect x="21.4010%" y="629" width="0.0191%" height="15" fill="rgb(228,106,3)" fg:x="115461" fg:w="103"/><text x="21.6510%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (100 samples, 0.02%)</title><rect x="21.4015%" y="613" width="0.0185%" height="15" fill="rgb(209,23,37)" fg:x="115464" fg:w="100"/><text x="21.6515%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (98 samples, 0.02%)</title><rect x="21.4240%" y="597" width="0.0182%" height="15" fill="rgb(241,93,50)" fg:x="115585" fg:w="98"/><text x="21.6740%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.01%)</title><rect x="21.4295%" y="581" width="0.0126%" height="15" fill="rgb(253,46,43)" fg:x="115615" fg:w="68"/><text x="21.6795%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (119 samples, 0.02%)</title><rect x="21.4206%" y="629" width="0.0221%" height="15" fill="rgb(226,206,43)" fg:x="115567" fg:w="119"/><text x="21.6706%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (119 samples, 0.02%)</title><rect x="21.4206%" y="613" width="0.0221%" height="15" fill="rgb(217,54,7)" fg:x="115567" fg:w="119"/><text x="21.6706%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (127 samples, 0.02%)</title><rect x="21.4201%" y="645" width="0.0235%" height="15" fill="rgb(223,5,52)" fg:x="115564" fg:w="127"/><text x="21.6701%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (309 samples, 0.06%)</title><rect x="21.3869%" y="709" width="0.0573%" height="15" fill="rgb(206,52,46)" fg:x="115385" fg:w="309"/><text x="21.6369%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (248 samples, 0.05%)</title><rect x="21.3982%" y="693" width="0.0460%" height="15" fill="rgb(253,136,11)" fg:x="115446" fg:w="248"/><text x="21.6482%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (248 samples, 0.05%)</title><rect x="21.3982%" y="677" width="0.0460%" height="15" fill="rgb(208,106,33)" fg:x="115446" fg:w="248"/><text x="21.6482%" y="687.50"></text></g><g><title>JavaThread::oops_do (247 samples, 0.05%)</title><rect x="21.3984%" y="661" width="0.0458%" height="15" fill="rgb(206,54,4)" fg:x="115447" fg:w="247"/><text x="21.6484%" y="671.50"></text></g><g><title>G1ParTask::work (1,079 samples, 0.20%)</title><rect x="21.2458%" y="741" width="0.2000%" height="15" fill="rgb(213,3,15)" fg:x="114624" fg:w="1079"/><text x="21.4958%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (318 samples, 0.06%)</title><rect x="21.3869%" y="725" width="0.0589%" height="15" fill="rgb(252,211,39)" fg:x="115385" fg:w="318"/><text x="21.6369%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (90 samples, 0.02%)</title><rect x="21.4484%" y="741" width="0.0167%" height="15" fill="rgb(223,6,36)" fg:x="115717" fg:w="90"/><text x="21.6984%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (122 samples, 0.02%)</title><rect x="21.4768%" y="517" width="0.0226%" height="15" fill="rgb(252,169,45)" fg:x="115870" fg:w="122"/><text x="21.7268%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (121 samples, 0.02%)</title><rect x="21.4770%" y="501" width="0.0224%" height="15" fill="rgb(212,48,26)" fg:x="115871" fg:w="121"/><text x="21.7270%" y="511.50"></text></g><g><title>native_write_msr (121 samples, 0.02%)</title><rect x="21.4770%" y="485" width="0.0224%" height="15" fill="rgb(251,102,48)" fg:x="115871" fg:w="121"/><text x="21.7270%" y="495.50"></text></g><g><title>finish_task_switch (129 samples, 0.02%)</title><rect x="21.4760%" y="533" width="0.0239%" height="15" fill="rgb(243,208,16)" fg:x="115866" fg:w="129"/><text x="21.7260%" y="543.50"></text></g><g><title>futex_wait_queue_me (140 samples, 0.03%)</title><rect x="21.4747%" y="581" width="0.0259%" height="15" fill="rgb(219,96,24)" fg:x="115859" fg:w="140"/><text x="21.7247%" y="591.50"></text></g><g><title>schedule (138 samples, 0.03%)</title><rect x="21.4751%" y="565" width="0.0256%" height="15" fill="rgb(219,33,29)" fg:x="115861" fg:w="138"/><text x="21.7251%" y="575.50"></text></g><g><title>__schedule (137 samples, 0.03%)</title><rect x="21.4753%" y="549" width="0.0254%" height="15" fill="rgb(223,176,5)" fg:x="115862" fg:w="137"/><text x="21.7253%" y="559.50"></text></g><g><title>do_syscall_64 (147 samples, 0.03%)</title><rect x="21.4740%" y="645" width="0.0272%" height="15" fill="rgb(228,140,14)" fg:x="115855" fg:w="147"/><text x="21.7240%" y="655.50"></text></g><g><title>__x64_sys_futex (146 samples, 0.03%)</title><rect x="21.4742%" y="629" width="0.0271%" height="15" fill="rgb(217,179,31)" fg:x="115856" fg:w="146"/><text x="21.7242%" y="639.50"></text></g><g><title>do_futex (145 samples, 0.03%)</title><rect x="21.4744%" y="613" width="0.0269%" height="15" fill="rgb(230,9,30)" fg:x="115857" fg:w="145"/><text x="21.7244%" y="623.50"></text></g><g><title>futex_wait (144 samples, 0.03%)</title><rect x="21.4746%" y="597" width="0.0267%" height="15" fill="rgb(230,136,20)" fg:x="115858" fg:w="144"/><text x="21.7246%" y="607.50"></text></g><g><title>__GI___clone (1,392 samples, 0.26%)</title><rect x="21.2445%" y="821" width="0.2580%" height="15" fill="rgb(215,210,22)" fg:x="114617" fg:w="1392"/><text x="21.4945%" y="831.50"></text></g><g><title>start_thread (1,392 samples, 0.26%)</title><rect x="21.2445%" y="805" width="0.2580%" height="15" fill="rgb(218,43,5)" fg:x="114617" fg:w="1392"/><text x="21.4945%" y="815.50"></text></g><g><title>thread_native_entry (1,392 samples, 0.26%)</title><rect x="21.2445%" y="789" width="0.2580%" height="15" fill="rgb(216,11,5)" fg:x="114617" fg:w="1392"/><text x="21.4945%" y="799.50"></text></g><g><title>Thread::call_run (1,392 samples, 0.26%)</title><rect x="21.2445%" y="773" width="0.2580%" height="15" fill="rgb(209,82,29)" fg:x="114617" fg:w="1392"/><text x="21.4945%" y="783.50"></text></g><g><title>GangWorker::loop (1,392 samples, 0.26%)</title><rect x="21.2445%" y="757" width="0.2580%" height="15" fill="rgb(244,115,12)" fg:x="114617" fg:w="1392"/><text x="21.4945%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (155 samples, 0.03%)</title><rect x="21.4738%" y="741" width="0.0287%" height="15" fill="rgb(222,82,18)" fg:x="115854" fg:w="155"/><text x="21.7238%" y="751.50"></text></g><g><title>PosixSemaphore::wait (155 samples, 0.03%)</title><rect x="21.4738%" y="725" width="0.0287%" height="15" fill="rgb(249,227,8)" fg:x="115854" fg:w="155"/><text x="21.7238%" y="735.50"></text></g><g><title>__new_sem_wait_slow (154 samples, 0.03%)</title><rect x="21.4740%" y="709" width="0.0285%" height="15" fill="rgb(253,141,45)" fg:x="115855" fg:w="154"/><text x="21.7240%" y="719.50"></text></g><g><title>do_futex_wait (154 samples, 0.03%)</title><rect x="21.4740%" y="693" width="0.0285%" height="15" fill="rgb(234,184,4)" fg:x="115855" fg:w="154"/><text x="21.7240%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (154 samples, 0.03%)</title><rect x="21.4740%" y="677" width="0.0285%" height="15" fill="rgb(218,194,23)" fg:x="115855" fg:w="154"/><text x="21.7240%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="21.4740%" y="661" width="0.0285%" height="15" fill="rgb(235,66,41)" fg:x="115855" fg:w="154"/><text x="21.7240%" y="671.50"></text></g><g><title>GC_Thread#3 (1,417 samples, 0.26%)</title><rect x="21.2401%" y="837" width="0.2626%" height="15" fill="rgb(245,217,1)" fg:x="114593" fg:w="1417"/><text x="21.4901%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (159 samples, 0.03%)</title><rect x="21.5385%" y="693" width="0.0295%" height="15" fill="rgb(229,91,1)" fg:x="116203" fg:w="159"/><text x="21.7885%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (315 samples, 0.06%)</title><rect x="21.5124%" y="709" width="0.0584%" height="15" fill="rgb(207,101,30)" fg:x="116062" fg:w="315"/><text x="21.7624%" y="719.50"></text></g><g><title>SpinPause (172 samples, 0.03%)</title><rect x="21.5715%" y="709" width="0.0319%" height="15" fill="rgb(223,82,49)" fg:x="116381" fg:w="172"/><text x="21.8215%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (504 samples, 0.09%)</title><rect x="21.5111%" y="725" width="0.0934%" height="15" fill="rgb(218,167,17)" fg:x="116055" fg:w="504"/><text x="21.7611%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (116 samples, 0.02%)</title><rect x="21.6097%" y="629" width="0.0215%" height="15" fill="rgb(208,103,14)" fg:x="116587" fg:w="116"/><text x="21.8597%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.02%)</title><rect x="21.6147%" y="613" width="0.0165%" height="15" fill="rgb(238,20,8)" fg:x="116614" fg:w="89"/><text x="21.8647%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (151 samples, 0.03%)</title><rect x="21.6047%" y="645" width="0.0280%" height="15" fill="rgb(218,80,54)" fg:x="116560" fg:w="151"/><text x="21.8547%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (179 samples, 0.03%)</title><rect x="21.6047%" y="725" width="0.0332%" height="15" fill="rgb(240,144,17)" fg:x="116560" fg:w="179"/><text x="21.8547%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (179 samples, 0.03%)</title><rect x="21.6047%" y="709" width="0.0332%" height="15" fill="rgb(245,27,50)" fg:x="116560" fg:w="179"/><text x="21.8547%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (179 samples, 0.03%)</title><rect x="21.6047%" y="693" width="0.0332%" height="15" fill="rgb(251,51,7)" fg:x="116560" fg:w="179"/><text x="21.8547%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (179 samples, 0.03%)</title><rect x="21.6047%" y="677" width="0.0332%" height="15" fill="rgb(245,217,29)" fg:x="116560" fg:w="179"/><text x="21.8547%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (179 samples, 0.03%)</title><rect x="21.6047%" y="661" width="0.0332%" height="15" fill="rgb(221,176,29)" fg:x="116560" fg:w="179"/><text x="21.8547%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (54 samples, 0.01%)</title><rect x="21.6378%" y="645" width="0.0100%" height="15" fill="rgb(212,180,24)" fg:x="116739" fg:w="54"/><text x="21.8878%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (73 samples, 0.01%)</title><rect x="21.6378%" y="661" width="0.0135%" height="15" fill="rgb(254,24,2)" fg:x="116739" fg:w="73"/><text x="21.8878%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (78 samples, 0.01%)</title><rect x="21.6378%" y="677" width="0.0145%" height="15" fill="rgb(230,100,2)" fg:x="116739" fg:w="78"/><text x="21.8878%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (102 samples, 0.02%)</title><rect x="21.6378%" y="725" width="0.0189%" height="15" fill="rgb(219,142,25)" fg:x="116739" fg:w="102"/><text x="21.8878%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (102 samples, 0.02%)</title><rect x="21.6378%" y="709" width="0.0189%" height="15" fill="rgb(240,73,43)" fg:x="116739" fg:w="102"/><text x="21.8878%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (102 samples, 0.02%)</title><rect x="21.6378%" y="693" width="0.0189%" height="15" fill="rgb(214,114,15)" fg:x="116739" fg:w="102"/><text x="21.8878%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (62 samples, 0.01%)</title><rect x="21.6568%" y="693" width="0.0115%" height="15" fill="rgb(207,130,4)" fg:x="116841" fg:w="62"/><text x="21.9068%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (62 samples, 0.01%)</title><rect x="21.6568%" y="677" width="0.0115%" height="15" fill="rgb(221,25,40)" fg:x="116841" fg:w="62"/><text x="21.9068%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (62 samples, 0.01%)</title><rect x="21.6568%" y="661" width="0.0115%" height="15" fill="rgb(241,184,7)" fg:x="116841" fg:w="62"/><text x="21.9068%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (58 samples, 0.01%)</title><rect x="21.6575%" y="645" width="0.0108%" height="15" fill="rgb(235,159,4)" fg:x="116845" fg:w="58"/><text x="21.9075%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (57 samples, 0.01%)</title><rect x="21.6729%" y="629" width="0.0106%" height="15" fill="rgb(214,87,48)" fg:x="116928" fg:w="57"/><text x="21.9229%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (153 samples, 0.03%)</title><rect x="21.6568%" y="709" width="0.0284%" height="15" fill="rgb(246,198,24)" fg:x="116841" fg:w="153"/><text x="21.9068%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (91 samples, 0.02%)</title><rect x="21.6682%" y="693" width="0.0169%" height="15" fill="rgb(209,66,40)" fg:x="116903" fg:w="91"/><text x="21.9182%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (91 samples, 0.02%)</title><rect x="21.6682%" y="677" width="0.0169%" height="15" fill="rgb(233,147,39)" fg:x="116903" fg:w="91"/><text x="21.9182%" y="687.50"></text></g><g><title>JavaThread::oops_do (90 samples, 0.02%)</title><rect x="21.6684%" y="661" width="0.0167%" height="15" fill="rgb(231,145,52)" fg:x="116904" fg:w="90"/><text x="21.9184%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (69 samples, 0.01%)</title><rect x="21.6723%" y="645" width="0.0128%" height="15" fill="rgb(206,20,26)" fg:x="116925" fg:w="69"/><text x="21.9223%" y="655.50"></text></g><g><title>G1ParTask::work (949 samples, 0.18%)</title><rect x="21.5111%" y="741" width="0.1759%" height="15" fill="rgb(238,220,4)" fg:x="116055" fg:w="949"/><text x="21.7611%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (163 samples, 0.03%)</title><rect x="21.6568%" y="725" width="0.0302%" height="15" fill="rgb(252,195,42)" fg:x="116841" fg:w="163"/><text x="21.9068%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="21.7109%" y="517" width="0.0189%" height="15" fill="rgb(209,10,6)" fg:x="117133" fg:w="102"/><text x="21.9609%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.02%)</title><rect x="21.7111%" y="501" width="0.0187%" height="15" fill="rgb(229,3,52)" fg:x="117134" fg:w="101"/><text x="21.9611%" y="511.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="21.7112%" y="485" width="0.0185%" height="15" fill="rgb(253,49,37)" fg:x="117135" fg:w="100"/><text x="21.9612%" y="495.50"></text></g><g><title>finish_task_switch (109 samples, 0.02%)</title><rect x="21.7103%" y="533" width="0.0202%" height="15" fill="rgb(240,103,49)" fg:x="117130" fg:w="109"/><text x="21.9603%" y="543.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.02%)</title><rect x="21.7070%" y="581" width="0.0247%" height="15" fill="rgb(250,182,30)" fg:x="117112" fg:w="133"/><text x="21.9570%" y="591.50"></text></g><g><title>schedule (130 samples, 0.02%)</title><rect x="21.7075%" y="565" width="0.0241%" height="15" fill="rgb(248,8,30)" fg:x="117115" fg:w="130"/><text x="21.9575%" y="575.50"></text></g><g><title>__schedule (129 samples, 0.02%)</title><rect x="21.7077%" y="549" width="0.0239%" height="15" fill="rgb(237,120,30)" fg:x="117116" fg:w="129"/><text x="21.9577%" y="559.50"></text></g><g><title>do_syscall_64 (136 samples, 0.03%)</title><rect x="21.7068%" y="645" width="0.0252%" height="15" fill="rgb(221,146,34)" fg:x="117111" fg:w="136"/><text x="21.9568%" y="655.50"></text></g><g><title>__x64_sys_futex (136 samples, 0.03%)</title><rect x="21.7068%" y="629" width="0.0252%" height="15" fill="rgb(242,55,13)" fg:x="117111" fg:w="136"/><text x="21.9568%" y="639.50"></text></g><g><title>do_futex (136 samples, 0.03%)</title><rect x="21.7068%" y="613" width="0.0252%" height="15" fill="rgb(242,112,31)" fg:x="117111" fg:w="136"/><text x="21.9568%" y="623.50"></text></g><g><title>futex_wait (135 samples, 0.03%)</title><rect x="21.7070%" y="597" width="0.0250%" height="15" fill="rgb(249,192,27)" fg:x="117112" fg:w="135"/><text x="21.9570%" y="607.50"></text></g><g><title>__GI___clone (1,217 samples, 0.23%)</title><rect x="21.5068%" y="821" width="0.2256%" height="15" fill="rgb(208,204,44)" fg:x="116032" fg:w="1217"/><text x="21.7568%" y="831.50"></text></g><g><title>start_thread (1,217 samples, 0.23%)</title><rect x="21.5068%" y="805" width="0.2256%" height="15" fill="rgb(208,93,54)" fg:x="116032" fg:w="1217"/><text x="21.7568%" y="815.50"></text></g><g><title>thread_native_entry (1,217 samples, 0.23%)</title><rect x="21.5068%" y="789" width="0.2256%" height="15" fill="rgb(242,1,31)" fg:x="116032" fg:w="1217"/><text x="21.7568%" y="799.50"></text></g><g><title>Thread::call_run (1,217 samples, 0.23%)</title><rect x="21.5068%" y="773" width="0.2256%" height="15" fill="rgb(241,83,25)" fg:x="116032" fg:w="1217"/><text x="21.7568%" y="783.50"></text></g><g><title>GangWorker::loop (1,217 samples, 0.23%)</title><rect x="21.5068%" y="757" width="0.2256%" height="15" fill="rgb(205,169,50)" fg:x="116032" fg:w="1217"/><text x="21.7568%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (139 samples, 0.03%)</title><rect x="21.7066%" y="741" width="0.0258%" height="15" fill="rgb(239,186,37)" fg:x="117110" fg:w="139"/><text x="21.9566%" y="751.50"></text></g><g><title>PosixSemaphore::wait (139 samples, 0.03%)</title><rect x="21.7066%" y="725" width="0.0258%" height="15" fill="rgb(205,221,10)" fg:x="117110" fg:w="139"/><text x="21.9566%" y="735.50"></text></g><g><title>__new_sem_wait_slow (139 samples, 0.03%)</title><rect x="21.7066%" y="709" width="0.0258%" height="15" fill="rgb(218,196,15)" fg:x="117110" fg:w="139"/><text x="21.9566%" y="719.50"></text></g><g><title>do_futex_wait (139 samples, 0.03%)</title><rect x="21.7066%" y="693" width="0.0258%" height="15" fill="rgb(218,196,35)" fg:x="117110" fg:w="139"/><text x="21.9566%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (139 samples, 0.03%)</title><rect x="21.7066%" y="677" width="0.0258%" height="15" fill="rgb(233,63,24)" fg:x="117110" fg:w="139"/><text x="21.9566%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.03%)</title><rect x="21.7068%" y="661" width="0.0256%" height="15" fill="rgb(225,8,4)" fg:x="117111" fg:w="138"/><text x="21.9568%" y="671.50"></text></g><g><title>GC_Thread#4 (1,241 samples, 0.23%)</title><rect x="21.5027%" y="837" width="0.2300%" height="15" fill="rgb(234,105,35)" fg:x="116010" fg:w="1241"/><text x="21.7527%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (141 samples, 0.03%)</title><rect x="21.7591%" y="693" width="0.0261%" height="15" fill="rgb(236,21,32)" fg:x="117393" fg:w="141"/><text x="22.0091%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (245 samples, 0.05%)</title><rect x="21.7415%" y="709" width="0.0454%" height="15" fill="rgb(228,109,6)" fg:x="117298" fg:w="245"/><text x="21.9915%" y="719.50"></text></g><g><title>SpinPause (108 samples, 0.02%)</title><rect x="21.7872%" y="709" width="0.0200%" height="15" fill="rgb(229,215,31)" fg:x="117545" fg:w="108"/><text x="22.0372%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (368 samples, 0.07%)</title><rect x="21.7394%" y="725" width="0.0682%" height="15" fill="rgb(221,52,54)" fg:x="117287" fg:w="368"/><text x="21.9894%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (78 samples, 0.01%)</title><rect x="21.8099%" y="629" width="0.0145%" height="15" fill="rgb(252,129,43)" fg:x="117667" fg:w="78"/><text x="22.0599%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.01%)</title><rect x="21.8134%" y="613" width="0.0109%" height="15" fill="rgb(248,183,27)" fg:x="117686" fg:w="59"/><text x="22.0634%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (116 samples, 0.02%)</title><rect x="21.8078%" y="645" width="0.0215%" height="15" fill="rgb(250,0,22)" fg:x="117656" fg:w="116"/><text x="22.0578%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (131 samples, 0.02%)</title><rect x="21.8078%" y="725" width="0.0243%" height="15" fill="rgb(213,166,10)" fg:x="117656" fg:w="131"/><text x="22.0578%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (131 samples, 0.02%)</title><rect x="21.8078%" y="709" width="0.0243%" height="15" fill="rgb(207,163,36)" fg:x="117656" fg:w="131"/><text x="22.0578%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (131 samples, 0.02%)</title><rect x="21.8078%" y="693" width="0.0243%" height="15" fill="rgb(208,122,22)" fg:x="117656" fg:w="131"/><text x="22.0578%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (131 samples, 0.02%)</title><rect x="21.8078%" y="677" width="0.0243%" height="15" fill="rgb(207,104,49)" fg:x="117656" fg:w="131"/><text x="22.0578%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (131 samples, 0.02%)</title><rect x="21.8078%" y="661" width="0.0243%" height="15" fill="rgb(248,211,50)" fg:x="117656" fg:w="131"/><text x="22.0578%" y="671.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (65 samples, 0.01%)</title><rect x="21.8406%" y="693" width="0.0120%" height="15" fill="rgb(217,13,45)" fg:x="117833" fg:w="65"/><text x="22.0906%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (63 samples, 0.01%)</title><rect x="21.8410%" y="677" width="0.0117%" height="15" fill="rgb(211,216,49)" fg:x="117835" fg:w="63"/><text x="22.0910%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (63 samples, 0.01%)</title><rect x="21.8410%" y="661" width="0.0117%" height="15" fill="rgb(221,58,53)" fg:x="117835" fg:w="63"/><text x="22.0910%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (57 samples, 0.01%)</title><rect x="21.8551%" y="629" width="0.0106%" height="15" fill="rgb(220,112,41)" fg:x="117911" fg:w="57"/><text x="22.1051%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (111 samples, 0.02%)</title><rect x="21.8551%" y="645" width="0.0206%" height="15" fill="rgb(236,38,28)" fg:x="117911" fg:w="111"/><text x="22.1051%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (190 samples, 0.04%)</title><rect x="21.8406%" y="709" width="0.0352%" height="15" fill="rgb(227,195,22)" fg:x="117833" fg:w="190"/><text x="22.0906%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (125 samples, 0.02%)</title><rect x="21.8527%" y="693" width="0.0232%" height="15" fill="rgb(214,55,33)" fg:x="117898" fg:w="125"/><text x="22.1027%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (125 samples, 0.02%)</title><rect x="21.8527%" y="677" width="0.0232%" height="15" fill="rgb(248,80,13)" fg:x="117898" fg:w="125"/><text x="22.1027%" y="687.50"></text></g><g><title>JavaThread::oops_do (124 samples, 0.02%)</title><rect x="21.8529%" y="661" width="0.0230%" height="15" fill="rgb(238,52,6)" fg:x="117899" fg:w="124"/><text x="22.1029%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.01%)</title><rect x="21.8781%" y="677" width="0.0100%" height="15" fill="rgb(224,198,47)" fg:x="118035" fg:w="54"/><text x="22.1281%" y="687.50"></text></g><g><title>G1ParTask::work (805 samples, 0.15%)</title><rect x="21.7394%" y="741" width="0.1492%" height="15" fill="rgb(233,171,20)" fg:x="117287" fg:w="805"/><text x="21.9894%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (262 samples, 0.05%)</title><rect x="21.8401%" y="725" width="0.0486%" height="15" fill="rgb(241,30,25)" fg:x="117830" fg:w="262"/><text x="22.0901%" y="735.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (69 samples, 0.01%)</title><rect x="21.8758%" y="709" width="0.0128%" height="15" fill="rgb(207,171,38)" fg:x="118023" fg:w="69"/><text x="22.1258%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (68 samples, 0.01%)</title><rect x="21.8760%" y="693" width="0.0126%" height="15" fill="rgb(234,70,1)" fg:x="118024" fg:w="68"/><text x="22.1260%" y="703.50"></text></g><g><title>G1STWRefProcTaskProxy::work (60 samples, 0.01%)</title><rect x="21.8897%" y="741" width="0.0111%" height="15" fill="rgb(232,178,18)" fg:x="118098" fg:w="60"/><text x="22.1397%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="21.9114%" y="517" width="0.0196%" height="15" fill="rgb(241,78,40)" fg:x="118215" fg:w="106"/><text x="22.1614%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (105 samples, 0.02%)</title><rect x="21.9116%" y="501" width="0.0195%" height="15" fill="rgb(222,35,25)" fg:x="118216" fg:w="105"/><text x="22.1616%" y="511.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="21.9116%" y="485" width="0.0195%" height="15" fill="rgb(207,92,16)" fg:x="118216" fg:w="105"/><text x="22.1616%" y="495.50"></text></g><g><title>finish_task_switch (114 samples, 0.02%)</title><rect x="21.9109%" y="533" width="0.0211%" height="15" fill="rgb(216,59,51)" fg:x="118212" fg:w="114"/><text x="22.1609%" y="543.50"></text></g><g><title>futex_wait_queue_me (123 samples, 0.02%)</title><rect x="21.9103%" y="581" width="0.0228%" height="15" fill="rgb(213,80,28)" fg:x="118209" fg:w="123"/><text x="22.1603%" y="591.50"></text></g><g><title>schedule (123 samples, 0.02%)</title><rect x="21.9103%" y="565" width="0.0228%" height="15" fill="rgb(220,93,7)" fg:x="118209" fg:w="123"/><text x="22.1603%" y="575.50"></text></g><g><title>__schedule (123 samples, 0.02%)</title><rect x="21.9103%" y="549" width="0.0228%" height="15" fill="rgb(225,24,44)" fg:x="118209" fg:w="123"/><text x="22.1603%" y="559.50"></text></g><g><title>do_syscall_64 (128 samples, 0.02%)</title><rect x="21.9099%" y="645" width="0.0237%" height="15" fill="rgb(243,74,40)" fg:x="118207" fg:w="128"/><text x="22.1599%" y="655.50"></text></g><g><title>__x64_sys_futex (128 samples, 0.02%)</title><rect x="21.9099%" y="629" width="0.0237%" height="15" fill="rgb(228,39,7)" fg:x="118207" fg:w="128"/><text x="22.1599%" y="639.50"></text></g><g><title>do_futex (128 samples, 0.02%)</title><rect x="21.9099%" y="613" width="0.0237%" height="15" fill="rgb(227,79,8)" fg:x="118207" fg:w="128"/><text x="22.1599%" y="623.50"></text></g><g><title>futex_wait (127 samples, 0.02%)</title><rect x="21.9101%" y="597" width="0.0235%" height="15" fill="rgb(236,58,11)" fg:x="118208" fg:w="127"/><text x="22.1601%" y="607.50"></text></g><g><title>__GI___clone (1,067 samples, 0.20%)</title><rect x="21.7370%" y="821" width="0.1978%" height="15" fill="rgb(249,63,35)" fg:x="117274" fg:w="1067"/><text x="21.9870%" y="831.50"></text></g><g><title>start_thread (1,067 samples, 0.20%)</title><rect x="21.7370%" y="805" width="0.1978%" height="15" fill="rgb(252,114,16)" fg:x="117274" fg:w="1067"/><text x="21.9870%" y="815.50"></text></g><g><title>thread_native_entry (1,067 samples, 0.20%)</title><rect x="21.7370%" y="789" width="0.1978%" height="15" fill="rgb(254,151,24)" fg:x="117274" fg:w="1067"/><text x="21.9870%" y="799.50"></text></g><g><title>Thread::call_run (1,067 samples, 0.20%)</title><rect x="21.7370%" y="773" width="0.1978%" height="15" fill="rgb(253,54,39)" fg:x="117274" fg:w="1067"/><text x="21.9870%" y="783.50"></text></g><g><title>GangWorker::loop (1,067 samples, 0.20%)</title><rect x="21.7370%" y="757" width="0.1978%" height="15" fill="rgb(243,25,45)" fg:x="117274" fg:w="1067"/><text x="21.9870%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (138 samples, 0.03%)</title><rect x="21.9092%" y="741" width="0.0256%" height="15" fill="rgb(234,134,9)" fg:x="118203" fg:w="138"/><text x="22.1592%" y="751.50"></text></g><g><title>PosixSemaphore::wait (137 samples, 0.03%)</title><rect x="21.9094%" y="725" width="0.0254%" height="15" fill="rgb(227,166,31)" fg:x="118204" fg:w="137"/><text x="22.1594%" y="735.50"></text></g><g><title>__new_sem_wait_slow (137 samples, 0.03%)</title><rect x="21.9094%" y="709" width="0.0254%" height="15" fill="rgb(245,143,41)" fg:x="118204" fg:w="137"/><text x="22.1594%" y="719.50"></text></g><g><title>do_futex_wait (135 samples, 0.03%)</title><rect x="21.9098%" y="693" width="0.0250%" height="15" fill="rgb(238,181,32)" fg:x="118206" fg:w="135"/><text x="22.1598%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (135 samples, 0.03%)</title><rect x="21.9098%" y="677" width="0.0250%" height="15" fill="rgb(224,113,18)" fg:x="118206" fg:w="135"/><text x="22.1598%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (134 samples, 0.02%)</title><rect x="21.9099%" y="661" width="0.0248%" height="15" fill="rgb(240,229,28)" fg:x="118207" fg:w="134"/><text x="22.1599%" y="671.50"></text></g><g><title>GC_Thread#5 (1,091 samples, 0.20%)</title><rect x="21.7327%" y="837" width="0.2022%" height="15" fill="rgb(250,185,3)" fg:x="117251" fg:w="1091"/><text x="21.9827%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (145 samples, 0.03%)</title><rect x="21.9591%" y="693" width="0.0269%" height="15" fill="rgb(212,59,25)" fg:x="118472" fg:w="145"/><text x="22.2091%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (250 samples, 0.05%)</title><rect x="21.9409%" y="709" width="0.0463%" height="15" fill="rgb(221,87,20)" fg:x="118374" fg:w="250"/><text x="22.1909%" y="719.50"></text></g><g><title>SpinPause (142 samples, 0.03%)</title><rect x="21.9887%" y="709" width="0.0263%" height="15" fill="rgb(213,74,28)" fg:x="118632" fg:w="142"/><text x="22.2387%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (414 samples, 0.08%)</title><rect x="21.9390%" y="725" width="0.0767%" height="15" fill="rgb(224,132,34)" fg:x="118364" fg:w="414"/><text x="22.1890%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (142 samples, 0.03%)</title><rect x="22.0219%" y="629" width="0.0263%" height="15" fill="rgb(222,101,24)" fg:x="118811" fg:w="142"/><text x="22.2719%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (116 samples, 0.02%)</title><rect x="22.0267%" y="613" width="0.0215%" height="15" fill="rgb(254,142,4)" fg:x="118837" fg:w="116"/><text x="22.2767%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (184 samples, 0.03%)</title><rect x="22.0160%" y="645" width="0.0341%" height="15" fill="rgb(230,229,49)" fg:x="118779" fg:w="184"/><text x="22.2660%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (207 samples, 0.04%)</title><rect x="22.0160%" y="725" width="0.0384%" height="15" fill="rgb(238,70,47)" fg:x="118779" fg:w="207"/><text x="22.2660%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (207 samples, 0.04%)</title><rect x="22.0160%" y="709" width="0.0384%" height="15" fill="rgb(231,160,17)" fg:x="118779" fg:w="207"/><text x="22.2660%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (207 samples, 0.04%)</title><rect x="22.0160%" y="693" width="0.0384%" height="15" fill="rgb(218,68,53)" fg:x="118779" fg:w="207"/><text x="22.2660%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (207 samples, 0.04%)</title><rect x="22.0160%" y="677" width="0.0384%" height="15" fill="rgb(236,111,10)" fg:x="118779" fg:w="207"/><text x="22.2660%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (207 samples, 0.04%)</title><rect x="22.0160%" y="661" width="0.0384%" height="15" fill="rgb(224,34,41)" fg:x="118779" fg:w="207"/><text x="22.2660%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (87 samples, 0.02%)</title><rect x="22.0784%" y="597" width="0.0161%" height="15" fill="rgb(241,118,19)" fg:x="119116" fg:w="87"/><text x="22.3284%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.01%)</title><rect x="22.0812%" y="581" width="0.0133%" height="15" fill="rgb(238,129,25)" fg:x="119131" fg:w="72"/><text x="22.3312%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (128 samples, 0.02%)</title><rect x="22.0718%" y="629" width="0.0237%" height="15" fill="rgb(238,22,31)" fg:x="119080" fg:w="128"/><text x="22.3218%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (119 samples, 0.02%)</title><rect x="22.0734%" y="613" width="0.0221%" height="15" fill="rgb(222,174,48)" fg:x="119089" fg:w="119"/><text x="22.3234%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (134 samples, 0.02%)</title><rect x="22.0716%" y="645" width="0.0248%" height="15" fill="rgb(206,152,40)" fg:x="119079" fg:w="134"/><text x="22.3216%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (180 samples, 0.03%)</title><rect x="22.0632%" y="709" width="0.0334%" height="15" fill="rgb(218,99,54)" fg:x="119034" fg:w="180"/><text x="22.3132%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (180 samples, 0.03%)</title><rect x="22.0632%" y="693" width="0.0334%" height="15" fill="rgb(220,174,26)" fg:x="119034" fg:w="180"/><text x="22.3132%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (180 samples, 0.03%)</title><rect x="22.0632%" y="677" width="0.0334%" height="15" fill="rgb(245,116,9)" fg:x="119034" fg:w="180"/><text x="22.3132%" y="687.50"></text></g><g><title>JavaThread::oops_do (174 samples, 0.03%)</title><rect x="22.0643%" y="661" width="0.0323%" height="15" fill="rgb(209,72,35)" fg:x="119040" fg:w="174"/><text x="22.3143%" y="671.50"></text></g><g><title>G1ParTask::work (896 samples, 0.17%)</title><rect x="21.9390%" y="741" width="0.1661%" height="15" fill="rgb(226,126,21)" fg:x="118364" fg:w="896"/><text x="22.1890%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (226 samples, 0.04%)</title><rect x="22.0632%" y="725" width="0.0419%" height="15" fill="rgb(227,192,1)" fg:x="119034" fg:w="226"/><text x="22.3132%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.02%)</title><rect x="22.1270%" y="517" width="0.0213%" height="15" fill="rgb(237,180,29)" fg:x="119378" fg:w="115"/><text x="22.3770%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (112 samples, 0.02%)</title><rect x="22.1275%" y="501" width="0.0208%" height="15" fill="rgb(230,197,35)" fg:x="119381" fg:w="112"/><text x="22.3775%" y="511.50"></text></g><g><title>native_write_msr (111 samples, 0.02%)</title><rect x="22.1277%" y="485" width="0.0206%" height="15" fill="rgb(246,193,31)" fg:x="119382" fg:w="111"/><text x="22.3777%" y="495.50"></text></g><g><title>finish_task_switch (124 samples, 0.02%)</title><rect x="22.1264%" y="533" width="0.0230%" height="15" fill="rgb(241,36,4)" fg:x="119375" fg:w="124"/><text x="22.3764%" y="543.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.02%)</title><rect x="22.1259%" y="581" width="0.0247%" height="15" fill="rgb(241,130,17)" fg:x="119372" fg:w="133"/><text x="22.3759%" y="591.50"></text></g><g><title>schedule (133 samples, 0.02%)</title><rect x="22.1259%" y="565" width="0.0247%" height="15" fill="rgb(206,137,32)" fg:x="119372" fg:w="133"/><text x="22.3759%" y="575.50"></text></g><g><title>__schedule (133 samples, 0.02%)</title><rect x="22.1259%" y="549" width="0.0247%" height="15" fill="rgb(237,228,51)" fg:x="119372" fg:w="133"/><text x="22.3759%" y="559.50"></text></g><g><title>do_syscall_64 (135 samples, 0.03%)</title><rect x="22.1257%" y="645" width="0.0250%" height="15" fill="rgb(243,6,42)" fg:x="119371" fg:w="135"/><text x="22.3757%" y="655.50"></text></g><g><title>__x64_sys_futex (135 samples, 0.03%)</title><rect x="22.1257%" y="629" width="0.0250%" height="15" fill="rgb(251,74,28)" fg:x="119371" fg:w="135"/><text x="22.3757%" y="639.50"></text></g><g><title>do_futex (134 samples, 0.02%)</title><rect x="22.1259%" y="613" width="0.0248%" height="15" fill="rgb(218,20,49)" fg:x="119372" fg:w="134"/><text x="22.3759%" y="623.50"></text></g><g><title>futex_wait (134 samples, 0.02%)</title><rect x="22.1259%" y="597" width="0.0248%" height="15" fill="rgb(238,28,14)" fg:x="119372" fg:w="134"/><text x="22.3759%" y="607.50"></text></g><g><title>GC_Thread#6 (1,168 samples, 0.22%)</title><rect x="21.9350%" y="837" width="0.2165%" height="15" fill="rgb(229,40,46)" fg:x="118342" fg:w="1168"/><text x="22.1850%" y="847.50"></text></g><g><title>__GI___clone (1,155 samples, 0.21%)</title><rect x="21.9374%" y="821" width="0.2141%" height="15" fill="rgb(244,195,20)" fg:x="118355" fg:w="1155"/><text x="22.1874%" y="831.50"></text></g><g><title>start_thread (1,155 samples, 0.21%)</title><rect x="21.9374%" y="805" width="0.2141%" height="15" fill="rgb(253,56,35)" fg:x="118355" fg:w="1155"/><text x="22.1874%" y="815.50"></text></g><g><title>thread_native_entry (1,155 samples, 0.21%)</title><rect x="21.9374%" y="789" width="0.2141%" height="15" fill="rgb(210,149,44)" fg:x="118355" fg:w="1155"/><text x="22.1874%" y="799.50"></text></g><g><title>Thread::call_run (1,155 samples, 0.21%)</title><rect x="21.9374%" y="773" width="0.2141%" height="15" fill="rgb(240,135,12)" fg:x="118355" fg:w="1155"/><text x="22.1874%" y="783.50"></text></g><g><title>GangWorker::loop (1,155 samples, 0.21%)</title><rect x="21.9374%" y="757" width="0.2141%" height="15" fill="rgb(251,24,50)" fg:x="118355" fg:w="1155"/><text x="22.1874%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (142 samples, 0.03%)</title><rect x="22.1251%" y="741" width="0.0263%" height="15" fill="rgb(243,200,47)" fg:x="119368" fg:w="142"/><text x="22.3751%" y="751.50"></text></g><g><title>PosixSemaphore::wait (141 samples, 0.03%)</title><rect x="22.1253%" y="725" width="0.0261%" height="15" fill="rgb(224,166,26)" fg:x="119369" fg:w="141"/><text x="22.3753%" y="735.50"></text></g><g><title>__new_sem_wait_slow (141 samples, 0.03%)</title><rect x="22.1253%" y="709" width="0.0261%" height="15" fill="rgb(233,0,47)" fg:x="119369" fg:w="141"/><text x="22.3753%" y="719.50"></text></g><g><title>do_futex_wait (141 samples, 0.03%)</title><rect x="22.1253%" y="693" width="0.0261%" height="15" fill="rgb(253,80,5)" fg:x="119369" fg:w="141"/><text x="22.3753%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (141 samples, 0.03%)</title><rect x="22.1253%" y="677" width="0.0261%" height="15" fill="rgb(214,133,25)" fg:x="119369" fg:w="141"/><text x="22.3753%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 0.03%)</title><rect x="22.1257%" y="661" width="0.0258%" height="15" fill="rgb(209,27,14)" fg:x="119371" fg:w="139"/><text x="22.3757%" y="671.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="22.1943%" y="677" width="0.0113%" height="15" fill="rgb(219,102,51)" fg:x="119741" fg:w="61"/><text x="22.4443%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (180 samples, 0.03%)</title><rect x="22.1798%" y="693" width="0.0334%" height="15" fill="rgb(237,18,16)" fg:x="119663" fg:w="180"/><text x="22.4298%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (288 samples, 0.05%)</title><rect x="22.1609%" y="709" width="0.0534%" height="15" fill="rgb(241,85,17)" fg:x="119561" fg:w="288"/><text x="22.4109%" y="719.50"></text></g><g><title>SpinPause (191 samples, 0.04%)</title><rect x="22.2171%" y="709" width="0.0354%" height="15" fill="rgb(236,90,42)" fg:x="119864" fg:w="191"/><text x="22.4671%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (503 samples, 0.09%)</title><rect x="22.1594%" y="725" width="0.0932%" height="15" fill="rgb(249,57,21)" fg:x="119553" fg:w="503"/><text x="22.4094%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (97 samples, 0.02%)</title><rect x="22.2551%" y="629" width="0.0180%" height="15" fill="rgb(243,12,36)" fg:x="120069" fg:w="97"/><text x="22.5051%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (81 samples, 0.02%)</title><rect x="22.2580%" y="613" width="0.0150%" height="15" fill="rgb(253,128,47)" fg:x="120085" fg:w="81"/><text x="22.5080%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.02%)</title><rect x="22.2528%" y="645" width="0.0226%" height="15" fill="rgb(207,33,20)" fg:x="120057" fg:w="122"/><text x="22.5028%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (156 samples, 0.03%)</title><rect x="22.2528%" y="725" width="0.0289%" height="15" fill="rgb(233,215,35)" fg:x="120057" fg:w="156"/><text x="22.5028%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (156 samples, 0.03%)</title><rect x="22.2528%" y="709" width="0.0289%" height="15" fill="rgb(249,188,52)" fg:x="120057" fg:w="156"/><text x="22.5028%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (156 samples, 0.03%)</title><rect x="22.2528%" y="693" width="0.0289%" height="15" fill="rgb(225,12,32)" fg:x="120057" fg:w="156"/><text x="22.5028%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (156 samples, 0.03%)</title><rect x="22.2528%" y="677" width="0.0289%" height="15" fill="rgb(247,98,14)" fg:x="120057" fg:w="156"/><text x="22.5028%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (156 samples, 0.03%)</title><rect x="22.2528%" y="661" width="0.0289%" height="15" fill="rgb(247,219,48)" fg:x="120057" fg:w="156"/><text x="22.5028%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.01%)</title><rect x="22.2832%" y="629" width="0.0117%" height="15" fill="rgb(253,60,48)" fg:x="120221" fg:w="63"/><text x="22.5332%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="22.2818%" y="645" width="0.0137%" height="15" fill="rgb(245,15,52)" fg:x="120213" fg:w="74"/><text x="22.5318%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (93 samples, 0.02%)</title><rect x="22.2818%" y="661" width="0.0172%" height="15" fill="rgb(220,133,28)" fg:x="120213" fg:w="93"/><text x="22.5318%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (99 samples, 0.02%)</title><rect x="22.2818%" y="677" width="0.0183%" height="15" fill="rgb(217,180,4)" fg:x="120213" fg:w="99"/><text x="22.5318%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (108 samples, 0.02%)</title><rect x="22.2818%" y="725" width="0.0200%" height="15" fill="rgb(251,24,1)" fg:x="120213" fg:w="108"/><text x="22.5318%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (108 samples, 0.02%)</title><rect x="22.2818%" y="709" width="0.0200%" height="15" fill="rgb(212,185,49)" fg:x="120213" fg:w="108"/><text x="22.5318%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (108 samples, 0.02%)</title><rect x="22.2818%" y="693" width="0.0200%" height="15" fill="rgb(215,175,22)" fg:x="120213" fg:w="108"/><text x="22.5318%" y="703.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (72 samples, 0.01%)</title><rect x="22.3018%" y="693" width="0.0133%" height="15" fill="rgb(250,205,14)" fg:x="120321" fg:w="72"/><text x="22.5518%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (72 samples, 0.01%)</title><rect x="22.3018%" y="677" width="0.0133%" height="15" fill="rgb(225,211,22)" fg:x="120321" fg:w="72"/><text x="22.5518%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (72 samples, 0.01%)</title><rect x="22.3018%" y="661" width="0.0133%" height="15" fill="rgb(251,179,42)" fg:x="120321" fg:w="72"/><text x="22.5518%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (62 samples, 0.01%)</title><rect x="22.3036%" y="645" width="0.0115%" height="15" fill="rgb(208,216,51)" fg:x="120331" fg:w="62"/><text x="22.5536%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (63 samples, 0.01%)</title><rect x="22.3212%" y="613" width="0.0117%" height="15" fill="rgb(235,36,11)" fg:x="120426" fg:w="63"/><text x="22.5712%" y="623.50"></text></g><g><title>frame::oops_do_internal (76 samples, 0.01%)</title><rect x="22.3190%" y="645" width="0.0141%" height="15" fill="rgb(213,189,28)" fg:x="120414" fg:w="76"/><text x="22.5690%" y="655.50"></text></g><g><title>OopMapSet::oops_do (76 samples, 0.01%)</title><rect x="22.3190%" y="629" width="0.0141%" height="15" fill="rgb(227,203,42)" fg:x="120414" fg:w="76"/><text x="22.5690%" y="639.50"></text></g><g><title>InterpreterOopMap::iterate_oop (73 samples, 0.01%)</title><rect x="22.3331%" y="629" width="0.0135%" height="15" fill="rgb(244,72,36)" fg:x="120490" fg:w="73"/><text x="22.5831%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.01%)</title><rect x="22.3333%" y="613" width="0.0133%" height="15" fill="rgb(213,53,17)" fg:x="120491" fg:w="72"/><text x="22.5833%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (74 samples, 0.01%)</title><rect x="22.3331%" y="645" width="0.0137%" height="15" fill="rgb(207,167,3)" fg:x="120490" fg:w="74"/><text x="22.5831%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (244 samples, 0.05%)</title><rect x="22.3018%" y="709" width="0.0452%" height="15" fill="rgb(216,98,30)" fg:x="120321" fg:w="244"/><text x="22.5518%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (171 samples, 0.03%)</title><rect x="22.3153%" y="693" width="0.0317%" height="15" fill="rgb(236,123,15)" fg:x="120394" fg:w="171"/><text x="22.5653%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (171 samples, 0.03%)</title><rect x="22.3153%" y="677" width="0.0317%" height="15" fill="rgb(248,81,50)" fg:x="120394" fg:w="171"/><text x="22.5653%" y="687.50"></text></g><g><title>JavaThread::oops_do (170 samples, 0.03%)</title><rect x="22.3155%" y="661" width="0.0315%" height="15" fill="rgb(214,120,4)" fg:x="120395" fg:w="170"/><text x="22.5655%" y="671.50"></text></g><g><title>G1ParTask::work (1,021 samples, 0.19%)</title><rect x="22.1594%" y="741" width="0.1892%" height="15" fill="rgb(208,179,34)" fg:x="119553" fg:w="1021"/><text x="22.4094%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (253 samples, 0.05%)</title><rect x="22.3018%" y="725" width="0.0469%" height="15" fill="rgb(227,140,7)" fg:x="120321" fg:w="253"/><text x="22.5518%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (56 samples, 0.01%)</title><rect x="22.3496%" y="741" width="0.0104%" height="15" fill="rgb(214,22,6)" fg:x="120579" fg:w="56"/><text x="22.5996%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (134 samples, 0.02%)</title><rect x="22.3711%" y="517" width="0.0248%" height="15" fill="rgb(207,137,27)" fg:x="120695" fg:w="134"/><text x="22.6211%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (134 samples, 0.02%)</title><rect x="22.3711%" y="501" width="0.0248%" height="15" fill="rgb(210,8,46)" fg:x="120695" fg:w="134"/><text x="22.6211%" y="511.50"></text></g><g><title>native_write_msr (133 samples, 0.02%)</title><rect x="22.3713%" y="485" width="0.0247%" height="15" fill="rgb(240,16,54)" fg:x="120696" fg:w="133"/><text x="22.6213%" y="495.50"></text></g><g><title>finish_task_switch (144 samples, 0.03%)</title><rect x="22.3705%" y="533" width="0.0267%" height="15" fill="rgb(211,209,29)" fg:x="120692" fg:w="144"/><text x="22.6205%" y="543.50"></text></g><g><title>futex_wait_queue_me (154 samples, 0.03%)</title><rect x="22.3698%" y="581" width="0.0285%" height="15" fill="rgb(226,228,24)" fg:x="120688" fg:w="154"/><text x="22.6198%" y="591.50"></text></g><g><title>schedule (152 samples, 0.03%)</title><rect x="22.3702%" y="565" width="0.0282%" height="15" fill="rgb(222,84,9)" fg:x="120690" fg:w="152"/><text x="22.6202%" y="575.50"></text></g><g><title>__schedule (152 samples, 0.03%)</title><rect x="22.3702%" y="549" width="0.0282%" height="15" fill="rgb(234,203,30)" fg:x="120690" fg:w="152"/><text x="22.6202%" y="559.50"></text></g><g><title>do_syscall_64 (157 samples, 0.03%)</title><rect x="22.3696%" y="645" width="0.0291%" height="15" fill="rgb(238,109,14)" fg:x="120687" fg:w="157"/><text x="22.6196%" y="655.50"></text></g><g><title>__x64_sys_futex (157 samples, 0.03%)</title><rect x="22.3696%" y="629" width="0.0291%" height="15" fill="rgb(233,206,34)" fg:x="120687" fg:w="157"/><text x="22.6196%" y="639.50"></text></g><g><title>do_futex (157 samples, 0.03%)</title><rect x="22.3696%" y="613" width="0.0291%" height="15" fill="rgb(220,167,47)" fg:x="120687" fg:w="157"/><text x="22.6196%" y="623.50"></text></g><g><title>futex_wait (156 samples, 0.03%)</title><rect x="22.3698%" y="597" width="0.0289%" height="15" fill="rgb(238,105,10)" fg:x="120688" fg:w="156"/><text x="22.6198%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.03%)</title><rect x="22.3694%" y="661" width="0.0300%" height="15" fill="rgb(213,227,17)" fg:x="120686" fg:w="162"/><text x="22.6194%" y="671.50"></text></g><g><title>__GI___clone (1,316 samples, 0.24%)</title><rect x="22.1559%" y="821" width="0.2439%" height="15" fill="rgb(217,132,38)" fg:x="119534" fg:w="1316"/><text x="22.4059%" y="831.50"></text></g><g><title>start_thread (1,316 samples, 0.24%)</title><rect x="22.1559%" y="805" width="0.2439%" height="15" fill="rgb(242,146,4)" fg:x="119534" fg:w="1316"/><text x="22.4059%" y="815.50"></text></g><g><title>thread_native_entry (1,316 samples, 0.24%)</title><rect x="22.1559%" y="789" width="0.2439%" height="15" fill="rgb(212,61,9)" fg:x="119534" fg:w="1316"/><text x="22.4059%" y="799.50"></text></g><g><title>Thread::call_run (1,316 samples, 0.24%)</title><rect x="22.1559%" y="773" width="0.2439%" height="15" fill="rgb(247,126,22)" fg:x="119534" fg:w="1316"/><text x="22.4059%" y="783.50"></text></g><g><title>GangWorker::loop (1,316 samples, 0.24%)</title><rect x="22.1559%" y="757" width="0.2439%" height="15" fill="rgb(220,196,2)" fg:x="119534" fg:w="1316"/><text x="22.4059%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (166 samples, 0.03%)</title><rect x="22.3691%" y="741" width="0.0308%" height="15" fill="rgb(208,46,4)" fg:x="120684" fg:w="166"/><text x="22.6191%" y="751.50"></text></g><g><title>PosixSemaphore::wait (166 samples, 0.03%)</title><rect x="22.3691%" y="725" width="0.0308%" height="15" fill="rgb(252,104,46)" fg:x="120684" fg:w="166"/><text x="22.6191%" y="735.50"></text></g><g><title>__new_sem_wait_slow (166 samples, 0.03%)</title><rect x="22.3691%" y="709" width="0.0308%" height="15" fill="rgb(237,152,48)" fg:x="120684" fg:w="166"/><text x="22.6191%" y="719.50"></text></g><g><title>do_futex_wait (165 samples, 0.03%)</title><rect x="22.3692%" y="693" width="0.0306%" height="15" fill="rgb(221,59,37)" fg:x="120685" fg:w="165"/><text x="22.6192%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (165 samples, 0.03%)</title><rect x="22.3692%" y="677" width="0.0306%" height="15" fill="rgb(209,202,51)" fg:x="120685" fg:w="165"/><text x="22.6192%" y="687.50"></text></g><g><title>GC_Thread#7 (1,341 samples, 0.25%)</title><rect x="22.1515%" y="837" width="0.2486%" height="15" fill="rgb(228,81,30)" fg:x="119510" fg:w="1341"/><text x="22.4015%" y="847.50"></text></g><g><title>[perf-34054.map] (169 samples, 0.03%)</title><rect x="22.4128%" y="821" width="0.0313%" height="15" fill="rgb(227,42,39)" fg:x="120920" fg:w="169"/><text x="22.6628%" y="831.50"></text></g><g><title>Service_Thread (248 samples, 0.05%)</title><rect x="22.4106%" y="837" width="0.0460%" height="15" fill="rgb(221,26,2)" fg:x="120908" fg:w="248"/><text x="22.6606%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (493 samples, 0.09%)</title><rect x="22.4816%" y="485" width="0.0914%" height="15" fill="rgb(254,61,31)" fg:x="121291" fg:w="493"/><text x="22.7316%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (482 samples, 0.09%)</title><rect x="22.4836%" y="469" width="0.0893%" height="15" fill="rgb(222,173,38)" fg:x="121302" fg:w="482"/><text x="22.7336%" y="479.50"></text></g><g><title>native_write_msr (478 samples, 0.09%)</title><rect x="22.4844%" y="453" width="0.0886%" height="15" fill="rgb(218,50,12)" fg:x="121306" fg:w="478"/><text x="22.7344%" y="463.50"></text></g><g><title>finish_task_switch (525 samples, 0.10%)</title><rect x="22.4803%" y="501" width="0.0973%" height="15" fill="rgb(223,88,40)" fg:x="121284" fg:w="525"/><text x="22.7303%" y="511.50"></text></g><g><title>futex_wait_queue_me (597 samples, 0.11%)</title><rect x="22.4719%" y="549" width="0.1107%" height="15" fill="rgb(237,54,19)" fg:x="121239" fg:w="597"/><text x="22.7219%" y="559.50"></text></g><g><title>schedule (582 samples, 0.11%)</title><rect x="22.4747%" y="533" width="0.1079%" height="15" fill="rgb(251,129,25)" fg:x="121254" fg:w="582"/><text x="22.7247%" y="543.50"></text></g><g><title>__schedule (580 samples, 0.11%)</title><rect x="22.4751%" y="517" width="0.1075%" height="15" fill="rgb(238,97,19)" fg:x="121256" fg:w="580"/><text x="22.7251%" y="527.50"></text></g><g><title>do_futex (630 samples, 0.12%)</title><rect x="22.4705%" y="581" width="0.1168%" height="15" fill="rgb(240,169,18)" fg:x="121231" fg:w="630"/><text x="22.7205%" y="591.50"></text></g><g><title>futex_wait (630 samples, 0.12%)</title><rect x="22.4705%" y="565" width="0.1168%" height="15" fill="rgb(230,187,49)" fg:x="121231" fg:w="630"/><text x="22.7205%" y="575.50"></text></g><g><title>do_syscall_64 (640 samples, 0.12%)</title><rect x="22.4690%" y="613" width="0.1186%" height="15" fill="rgb(209,44,26)" fg:x="121223" fg:w="640"/><text x="22.7190%" y="623.50"></text></g><g><title>__x64_sys_futex (639 samples, 0.12%)</title><rect x="22.4692%" y="597" width="0.1184%" height="15" fill="rgb(244,0,6)" fg:x="121224" fg:w="639"/><text x="22.7192%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (669 samples, 0.12%)</title><rect x="22.4649%" y="677" width="0.1240%" height="15" fill="rgb(248,18,21)" fg:x="121201" fg:w="669"/><text x="22.7149%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (668 samples, 0.12%)</title><rect x="22.4651%" y="661" width="0.1238%" height="15" fill="rgb(245,180,19)" fg:x="121202" fg:w="668"/><text x="22.7151%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (659 samples, 0.12%)</title><rect x="22.4667%" y="645" width="0.1221%" height="15" fill="rgb(252,118,36)" fg:x="121211" fg:w="659"/><text x="22.7167%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (649 samples, 0.12%)</title><rect x="22.4686%" y="629" width="0.1203%" height="15" fill="rgb(210,224,19)" fg:x="121221" fg:w="649"/><text x="22.7186%" y="639.50"></text></g><g><title>Monitor::IWait (705 samples, 0.13%)</title><rect x="22.4627%" y="709" width="0.1307%" height="15" fill="rgb(218,30,24)" fg:x="121189" fg:w="705"/><text x="22.7127%" y="719.50"></text></g><g><title>os::PlatformEvent::park (698 samples, 0.13%)</title><rect x="22.4640%" y="693" width="0.1294%" height="15" fill="rgb(219,75,50)" fg:x="121196" fg:w="698"/><text x="22.7140%" y="703.50"></text></g><g><title>Monitor::wait (708 samples, 0.13%)</title><rect x="22.4623%" y="725" width="0.1312%" height="15" fill="rgb(234,72,50)" fg:x="121187" fg:w="708"/><text x="22.7123%" y="735.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (94 samples, 0.02%)</title><rect x="22.6013%" y="677" width="0.0174%" height="15" fill="rgb(219,100,48)" fg:x="121937" fg:w="94"/><text x="22.8513%" y="687.50"></text></g><g><title>NMethodSweeper::process_compiled_method (129 samples, 0.02%)</title><rect x="22.6008%" y="693" width="0.0239%" height="15" fill="rgb(253,5,41)" fg:x="121934" fg:w="129"/><text x="22.8508%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (171 samples, 0.03%)</title><rect x="22.5935%" y="725" width="0.0317%" height="15" fill="rgb(247,181,11)" fg:x="121895" fg:w="171"/><text x="22.8435%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (158 samples, 0.03%)</title><rect x="22.5959%" y="709" width="0.0293%" height="15" fill="rgb(222,223,25)" fg:x="121908" fg:w="158"/><text x="22.8459%" y="719.50"></text></g><g><title>__GI___clone (894 samples, 0.17%)</title><rect x="22.4608%" y="821" width="0.1657%" height="15" fill="rgb(214,198,28)" fg:x="121179" fg:w="894"/><text x="22.7108%" y="831.50"></text></g><g><title>start_thread (894 samples, 0.17%)</title><rect x="22.4608%" y="805" width="0.1657%" height="15" fill="rgb(230,46,43)" fg:x="121179" fg:w="894"/><text x="22.7108%" y="815.50"></text></g><g><title>thread_native_entry (894 samples, 0.17%)</title><rect x="22.4608%" y="789" width="0.1657%" height="15" fill="rgb(233,65,53)" fg:x="121179" fg:w="894"/><text x="22.7108%" y="799.50"></text></g><g><title>Thread::call_run (894 samples, 0.17%)</title><rect x="22.4608%" y="773" width="0.1657%" height="15" fill="rgb(221,121,27)" fg:x="121179" fg:w="894"/><text x="22.7108%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (894 samples, 0.17%)</title><rect x="22.4608%" y="757" width="0.1657%" height="15" fill="rgb(247,70,47)" fg:x="121179" fg:w="894"/><text x="22.7108%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (893 samples, 0.17%)</title><rect x="22.4610%" y="741" width="0.1655%" height="15" fill="rgb(228,85,35)" fg:x="121180" fg:w="893"/><text x="22.7110%" y="751.50"></text></g><g><title>Sweeper_thread (915 samples, 0.17%)</title><rect x="22.4580%" y="837" width="0.1696%" height="15" fill="rgb(209,50,18)" fg:x="121164" fg:w="915"/><text x="22.7080%" y="847.50"></text></g><g><title>[perf-34054.map] (290 samples, 0.05%)</title><rect x="22.6297%" y="821" width="0.0538%" height="15" fill="rgb(250,19,35)" fg:x="122090" fg:w="290"/><text x="22.8797%" y="831.50"></text></g><g><title>Thread-0 (315 samples, 0.06%)</title><rect x="22.6276%" y="837" width="0.0584%" height="15" fill="rgb(253,107,29)" fg:x="122079" fg:w="315"/><text x="22.8776%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (208 samples, 0.04%)</title><rect x="22.6958%" y="485" width="0.0386%" height="15" fill="rgb(252,179,29)" fg:x="122447" fg:w="208"/><text x="22.9458%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (205 samples, 0.04%)</title><rect x="22.6964%" y="469" width="0.0380%" height="15" fill="rgb(238,194,6)" fg:x="122450" fg:w="205"/><text x="22.9464%" y="479.50"></text></g><g><title>native_write_msr (205 samples, 0.04%)</title><rect x="22.6964%" y="453" width="0.0380%" height="15" fill="rgb(238,164,29)" fg:x="122450" fg:w="205"/><text x="22.9464%" y="463.50"></text></g><g><title>finish_task_switch (218 samples, 0.04%)</title><rect x="22.6953%" y="501" width="0.0404%" height="15" fill="rgb(224,25,9)" fg:x="122444" fg:w="218"/><text x="22.9453%" y="511.50"></text></g><g><title>futex_wait_queue_me (231 samples, 0.04%)</title><rect x="22.6940%" y="549" width="0.0428%" height="15" fill="rgb(244,153,23)" fg:x="122437" fg:w="231"/><text x="22.9440%" y="559.50"></text></g><g><title>schedule (228 samples, 0.04%)</title><rect x="22.6945%" y="533" width="0.0423%" height="15" fill="rgb(212,203,14)" fg:x="122440" fg:w="228"/><text x="22.9445%" y="543.50"></text></g><g><title>__schedule (228 samples, 0.04%)</title><rect x="22.6945%" y="517" width="0.0423%" height="15" fill="rgb(220,164,20)" fg:x="122440" fg:w="228"/><text x="22.9445%" y="527.50"></text></g><g><title>do_futex (239 samples, 0.04%)</title><rect x="22.6929%" y="581" width="0.0443%" height="15" fill="rgb(222,203,48)" fg:x="122431" fg:w="239"/><text x="22.9429%" y="591.50"></text></g><g><title>futex_wait (238 samples, 0.04%)</title><rect x="22.6931%" y="565" width="0.0441%" height="15" fill="rgb(215,159,22)" fg:x="122432" fg:w="238"/><text x="22.9431%" y="575.50"></text></g><g><title>do_syscall_64 (242 samples, 0.04%)</title><rect x="22.6927%" y="613" width="0.0449%" height="15" fill="rgb(216,183,47)" fg:x="122430" fg:w="242"/><text x="22.9427%" y="623.50"></text></g><g><title>__x64_sys_futex (241 samples, 0.04%)</title><rect x="22.6929%" y="597" width="0.0447%" height="15" fill="rgb(229,195,25)" fg:x="122431" fg:w="241"/><text x="22.9429%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (250 samples, 0.05%)</title><rect x="22.6916%" y="677" width="0.0463%" height="15" fill="rgb(224,132,51)" fg:x="122424" fg:w="250"/><text x="22.9416%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (250 samples, 0.05%)</title><rect x="22.6916%" y="661" width="0.0463%" height="15" fill="rgb(240,63,7)" fg:x="122424" fg:w="250"/><text x="22.9416%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (248 samples, 0.05%)</title><rect x="22.6919%" y="645" width="0.0460%" height="15" fill="rgb(249,182,41)" fg:x="122426" fg:w="248"/><text x="22.9419%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (244 samples, 0.05%)</title><rect x="22.6927%" y="629" width="0.0452%" height="15" fill="rgb(243,47,26)" fg:x="122430" fg:w="244"/><text x="22.9427%" y="639.50"></text></g><g><title>Monitor::wait (257 samples, 0.05%)</title><rect x="22.6906%" y="725" width="0.0476%" height="15" fill="rgb(233,48,2)" fg:x="122419" fg:w="257"/><text x="22.9406%" y="735.50"></text></g><g><title>Monitor::IWait (256 samples, 0.05%)</title><rect x="22.6908%" y="709" width="0.0475%" height="15" fill="rgb(244,165,34)" fg:x="122420" fg:w="256"/><text x="22.9408%" y="719.50"></text></g><g><title>os::PlatformEvent::park (253 samples, 0.05%)</title><rect x="22.6914%" y="693" width="0.0469%" height="15" fill="rgb(207,89,7)" fg:x="122423" fg:w="253"/><text x="22.9414%" y="703.50"></text></g><g><title>VM_Periodic_Tas (285 samples, 0.05%)</title><rect x="22.6860%" y="837" width="0.0528%" height="15" fill="rgb(244,117,36)" fg:x="122394" fg:w="285"/><text x="22.9360%" y="847.50"></text></g><g><title>__GI___clone (279 samples, 0.05%)</title><rect x="22.6871%" y="821" width="0.0517%" height="15" fill="rgb(226,144,34)" fg:x="122400" fg:w="279"/><text x="22.9371%" y="831.50"></text></g><g><title>start_thread (279 samples, 0.05%)</title><rect x="22.6871%" y="805" width="0.0517%" height="15" fill="rgb(213,23,19)" fg:x="122400" fg:w="279"/><text x="22.9371%" y="815.50"></text></g><g><title>thread_native_entry (279 samples, 0.05%)</title><rect x="22.6871%" y="789" width="0.0517%" height="15" fill="rgb(217,75,12)" fg:x="122400" fg:w="279"/><text x="22.9371%" y="799.50"></text></g><g><title>Thread::call_run (279 samples, 0.05%)</title><rect x="22.6871%" y="773" width="0.0517%" height="15" fill="rgb(224,159,17)" fg:x="122400" fg:w="279"/><text x="22.9371%" y="783.50"></text></g><g><title>WatcherThread::run (279 samples, 0.05%)</title><rect x="22.6871%" y="757" width="0.0517%" height="15" fill="rgb(217,118,1)" fg:x="122400" fg:w="279"/><text x="22.9371%" y="767.50"></text></g><g><title>WatcherThread::sleep (261 samples, 0.05%)</title><rect x="22.6905%" y="741" width="0.0484%" height="15" fill="rgb(232,180,48)" fg:x="122418" fg:w="261"/><text x="22.9405%" y="751.50"></text></g><g><title>[unknown] (124 samples, 0.02%)</title><rect x="22.7444%" y="821" width="0.0230%" height="15" fill="rgb(230,27,33)" fg:x="122709" fg:w="124"/><text x="22.9944%" y="831.50"></text></g><g><title>vframe::sender (115 samples, 0.02%)</title><rect x="22.7461%" y="805" width="0.0213%" height="15" fill="rgb(205,31,21)" fg:x="122718" fg:w="115"/><text x="22.9961%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (104 samples, 0.02%)</title><rect x="22.7831%" y="485" width="0.0193%" height="15" fill="rgb(253,59,4)" fg:x="122918" fg:w="104"/><text x="23.0331%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="22.7833%" y="469" width="0.0191%" height="15" fill="rgb(224,201,9)" fg:x="122919" fg:w="103"/><text x="23.0333%" y="479.50"></text></g><g><title>native_write_msr (103 samples, 0.02%)</title><rect x="22.7833%" y="453" width="0.0191%" height="15" fill="rgb(229,206,30)" fg:x="122919" fg:w="103"/><text x="23.0333%" y="463.50"></text></g><g><title>finish_task_switch (111 samples, 0.02%)</title><rect x="22.7826%" y="501" width="0.0206%" height="15" fill="rgb(212,67,47)" fg:x="122915" fg:w="111"/><text x="23.0326%" y="511.50"></text></g><g><title>futex_wait_queue_me (120 samples, 0.02%)</title><rect x="22.7815%" y="549" width="0.0222%" height="15" fill="rgb(211,96,50)" fg:x="122909" fg:w="120"/><text x="23.0315%" y="559.50"></text></g><g><title>schedule (117 samples, 0.02%)</title><rect x="22.7820%" y="533" width="0.0217%" height="15" fill="rgb(252,114,18)" fg:x="122912" fg:w="117"/><text x="23.0320%" y="543.50"></text></g><g><title>__schedule (116 samples, 0.02%)</title><rect x="22.7822%" y="517" width="0.0215%" height="15" fill="rgb(223,58,37)" fg:x="122913" fg:w="116"/><text x="23.0322%" y="527.50"></text></g><g><title>do_futex (126 samples, 0.02%)</title><rect x="22.7813%" y="581" width="0.0234%" height="15" fill="rgb(237,70,4)" fg:x="122908" fg:w="126"/><text x="23.0313%" y="591.50"></text></g><g><title>futex_wait (126 samples, 0.02%)</title><rect x="22.7813%" y="565" width="0.0234%" height="15" fill="rgb(244,85,46)" fg:x="122908" fg:w="126"/><text x="23.0313%" y="575.50"></text></g><g><title>do_syscall_64 (128 samples, 0.02%)</title><rect x="22.7811%" y="613" width="0.0237%" height="15" fill="rgb(223,39,52)" fg:x="122907" fg:w="128"/><text x="23.0311%" y="623.50"></text></g><g><title>__x64_sys_futex (128 samples, 0.02%)</title><rect x="22.7811%" y="597" width="0.0237%" height="15" fill="rgb(218,200,14)" fg:x="122907" fg:w="128"/><text x="23.0311%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.02%)</title><rect x="22.7811%" y="629" width="0.0243%" height="15" fill="rgb(208,171,16)" fg:x="122907" fg:w="131"/><text x="23.0311%" y="639.50"></text></g><g><title>__pthread_cond_timedwait (135 samples, 0.03%)</title><rect x="22.7805%" y="677" width="0.0250%" height="15" fill="rgb(234,200,18)" fg:x="122904" fg:w="135"/><text x="23.0305%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (135 samples, 0.03%)</title><rect x="22.7805%" y="661" width="0.0250%" height="15" fill="rgb(228,45,11)" fg:x="122904" fg:w="135"/><text x="23.0305%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (135 samples, 0.03%)</title><rect x="22.7805%" y="645" width="0.0250%" height="15" fill="rgb(237,182,11)" fg:x="122904" fg:w="135"/><text x="23.0305%" y="655.50"></text></g><g><title>Monitor::wait (138 samples, 0.03%)</title><rect x="22.7804%" y="725" width="0.0256%" height="15" fill="rgb(241,175,49)" fg:x="122903" fg:w="138"/><text x="23.0304%" y="735.50"></text></g><g><title>Monitor::IWait (138 samples, 0.03%)</title><rect x="22.7804%" y="709" width="0.0256%" height="15" fill="rgb(247,38,35)" fg:x="122903" fg:w="138"/><text x="23.0304%" y="719.50"></text></g><g><title>os::PlatformEvent::park (138 samples, 0.03%)</title><rect x="22.7804%" y="693" width="0.0256%" height="15" fill="rgb(228,39,49)" fg:x="122903" fg:w="138"/><text x="23.0304%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (159 samples, 0.03%)</title><rect x="22.8551%" y="469" width="0.0295%" height="15" fill="rgb(226,101,26)" fg:x="123306" fg:w="159"/><text x="23.1051%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (159 samples, 0.03%)</title><rect x="22.8551%" y="453" width="0.0295%" height="15" fill="rgb(206,141,19)" fg:x="123306" fg:w="159"/><text x="23.1051%" y="463.50"></text></g><g><title>native_write_msr (159 samples, 0.03%)</title><rect x="22.8551%" y="437" width="0.0295%" height="15" fill="rgb(211,200,13)" fg:x="123306" fg:w="159"/><text x="23.1051%" y="447.50"></text></g><g><title>finish_task_switch (165 samples, 0.03%)</title><rect x="22.8545%" y="485" width="0.0306%" height="15" fill="rgb(241,121,6)" fg:x="123303" fg:w="165"/><text x="23.1045%" y="495.50"></text></g><g><title>futex_wait_queue_me (173 samples, 0.03%)</title><rect x="22.8534%" y="533" width="0.0321%" height="15" fill="rgb(234,221,29)" fg:x="123297" fg:w="173"/><text x="23.1034%" y="543.50"></text></g><g><title>schedule (171 samples, 0.03%)</title><rect x="22.8538%" y="517" width="0.0317%" height="15" fill="rgb(229,136,5)" fg:x="123299" fg:w="171"/><text x="23.1038%" y="527.50"></text></g><g><title>__schedule (171 samples, 0.03%)</title><rect x="22.8538%" y="501" width="0.0317%" height="15" fill="rgb(238,36,11)" fg:x="123299" fg:w="171"/><text x="23.1038%" y="511.50"></text></g><g><title>__x64_sys_futex (174 samples, 0.03%)</title><rect x="22.8534%" y="581" width="0.0323%" height="15" fill="rgb(251,55,41)" fg:x="123297" fg:w="174"/><text x="23.1034%" y="591.50"></text></g><g><title>do_futex (174 samples, 0.03%)</title><rect x="22.8534%" y="565" width="0.0323%" height="15" fill="rgb(242,34,40)" fg:x="123297" fg:w="174"/><text x="23.1034%" y="575.50"></text></g><g><title>futex_wait (174 samples, 0.03%)</title><rect x="22.8534%" y="549" width="0.0323%" height="15" fill="rgb(215,42,17)" fg:x="123297" fg:w="174"/><text x="23.1034%" y="559.50"></text></g><g><title>do_syscall_64 (177 samples, 0.03%)</title><rect x="22.8530%" y="597" width="0.0328%" height="15" fill="rgb(207,44,46)" fg:x="123295" fg:w="177"/><text x="23.1030%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (179 samples, 0.03%)</title><rect x="22.8530%" y="613" width="0.0332%" height="15" fill="rgb(211,206,28)" fg:x="123295" fg:w="179"/><text x="23.1030%" y="623.50"></text></g><g><title>__pthread_cond_wait (183 samples, 0.03%)</title><rect x="22.8525%" y="661" width="0.0339%" height="15" fill="rgb(237,167,16)" fg:x="123292" fg:w="183"/><text x="23.1025%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (183 samples, 0.03%)</title><rect x="22.8525%" y="645" width="0.0339%" height="15" fill="rgb(233,66,6)" fg:x="123292" fg:w="183"/><text x="23.1025%" y="655.50"></text></g><g><title>futex_wait_cancelable (182 samples, 0.03%)</title><rect x="22.8526%" y="629" width="0.0337%" height="15" fill="rgb(246,123,29)" fg:x="123293" fg:w="182"/><text x="23.1026%" y="639.50"></text></g><g><title>Monitor::wait (192 samples, 0.04%)</title><rect x="22.8510%" y="709" width="0.0356%" height="15" fill="rgb(209,62,40)" fg:x="123284" fg:w="192"/><text x="23.1010%" y="719.50"></text></g><g><title>Monitor::IWait (192 samples, 0.04%)</title><rect x="22.8510%" y="693" width="0.0356%" height="15" fill="rgb(218,4,25)" fg:x="123284" fg:w="192"/><text x="23.1010%" y="703.50"></text></g><g><title>os::PlatformEvent::park (184 samples, 0.03%)</title><rect x="22.8525%" y="677" width="0.0341%" height="15" fill="rgb(253,91,49)" fg:x="123292" fg:w="184"/><text x="23.1025%" y="687.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="22.8899%" y="597" width="0.0135%" height="15" fill="rgb(228,155,29)" fg:x="123494" fg:w="73"/><text x="23.1399%" y="607.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.01%)</title><rect x="22.8899%" y="581" width="0.0135%" height="15" fill="rgb(243,57,37)" fg:x="123494" fg:w="73"/><text x="23.1399%" y="591.50"></text></g><g><title>do_futex (73 samples, 0.01%)</title><rect x="22.8899%" y="565" width="0.0135%" height="15" fill="rgb(244,167,17)" fg:x="123494" fg:w="73"/><text x="23.1399%" y="575.50"></text></g><g><title>futex_wake (73 samples, 0.01%)</title><rect x="22.8899%" y="549" width="0.0135%" height="15" fill="rgb(207,181,38)" fg:x="123494" fg:w="73"/><text x="23.1399%" y="559.50"></text></g><g><title>wake_up_q (61 samples, 0.01%)</title><rect x="22.8921%" y="533" width="0.0113%" height="15" fill="rgb(211,8,23)" fg:x="123506" fg:w="61"/><text x="23.1421%" y="543.50"></text></g><g><title>try_to_wake_up (61 samples, 0.01%)</title><rect x="22.8921%" y="517" width="0.0113%" height="15" fill="rgb(235,11,44)" fg:x="123506" fg:w="61"/><text x="23.1421%" y="527.50"></text></g><g><title>PosixSemaphore::signal (76 samples, 0.01%)</title><rect x="22.8895%" y="661" width="0.0141%" height="15" fill="rgb(248,18,52)" fg:x="123492" fg:w="76"/><text x="23.1395%" y="671.50"></text></g><g><title>__new_sem_post (76 samples, 0.01%)</title><rect x="22.8895%" y="645" width="0.0141%" height="15" fill="rgb(208,4,7)" fg:x="123492" fg:w="76"/><text x="23.1395%" y="655.50"></text></g><g><title>futex_wake (74 samples, 0.01%)</title><rect x="22.8899%" y="629" width="0.0137%" height="15" fill="rgb(240,17,39)" fg:x="123494" fg:w="74"/><text x="23.1399%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.01%)</title><rect x="22.8899%" y="613" width="0.0137%" height="15" fill="rgb(207,170,3)" fg:x="123494" fg:w="74"/><text x="23.1399%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.01%)</title><rect x="22.9057%" y="453" width="0.0146%" height="15" fill="rgb(236,100,52)" fg:x="123579" fg:w="79"/><text x="23.1557%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.01%)</title><rect x="22.9058%" y="437" width="0.0145%" height="15" fill="rgb(246,78,51)" fg:x="123580" fg:w="78"/><text x="23.1558%" y="447.50"></text></g><g><title>native_write_msr (78 samples, 0.01%)</title><rect x="22.9058%" y="421" width="0.0145%" height="15" fill="rgb(211,17,15)" fg:x="123580" fg:w="78"/><text x="23.1558%" y="431.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="22.9051%" y="469" width="0.0154%" height="15" fill="rgb(209,59,46)" fg:x="123576" fg:w="83"/><text x="23.1551%" y="479.50"></text></g><g><title>futex_wait_queue_me (96 samples, 0.02%)</title><rect x="22.9040%" y="517" width="0.0178%" height="15" fill="rgb(210,92,25)" fg:x="123570" fg:w="96"/><text x="23.1540%" y="527.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="22.9044%" y="501" width="0.0174%" height="15" fill="rgb(238,174,52)" fg:x="123572" fg:w="94"/><text x="23.1544%" y="511.50"></text></g><g><title>__schedule (94 samples, 0.02%)</title><rect x="22.9044%" y="485" width="0.0174%" height="15" fill="rgb(230,73,7)" fg:x="123572" fg:w="94"/><text x="23.1544%" y="495.50"></text></g><g><title>do_syscall_64 (99 samples, 0.02%)</title><rect x="22.9036%" y="581" width="0.0183%" height="15" fill="rgb(243,124,40)" fg:x="123568" fg:w="99"/><text x="23.1536%" y="591.50"></text></g><g><title>__x64_sys_futex (98 samples, 0.02%)</title><rect x="22.9038%" y="565" width="0.0182%" height="15" fill="rgb(244,170,11)" fg:x="123569" fg:w="98"/><text x="23.1538%" y="575.50"></text></g><g><title>do_futex (98 samples, 0.02%)</title><rect x="22.9038%" y="549" width="0.0182%" height="15" fill="rgb(207,114,54)" fg:x="123569" fg:w="98"/><text x="23.1538%" y="559.50"></text></g><g><title>futex_wait (97 samples, 0.02%)</title><rect x="22.9040%" y="533" width="0.0180%" height="15" fill="rgb(205,42,20)" fg:x="123570" fg:w="97"/><text x="23.1540%" y="543.50"></text></g><g><title>WorkGang::run_task (176 samples, 0.03%)</title><rect x="22.8895%" y="693" width="0.0326%" height="15" fill="rgb(230,30,28)" fg:x="123492" fg:w="176"/><text x="23.1395%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (176 samples, 0.03%)</title><rect x="22.8895%" y="677" width="0.0326%" height="15" fill="rgb(205,73,54)" fg:x="123492" fg:w="176"/><text x="23.1395%" y="687.50"></text></g><g><title>PosixSemaphore::wait (100 samples, 0.02%)</title><rect x="22.9036%" y="661" width="0.0185%" height="15" fill="rgb(254,227,23)" fg:x="123568" fg:w="100"/><text x="23.1536%" y="671.50"></text></g><g><title>__new_sem_wait_slow (100 samples, 0.02%)</title><rect x="22.9036%" y="645" width="0.0185%" height="15" fill="rgb(228,202,34)" fg:x="123568" fg:w="100"/><text x="23.1536%" y="655.50"></text></g><g><title>do_futex_wait (100 samples, 0.02%)</title><rect x="22.9036%" y="629" width="0.0185%" height="15" fill="rgb(222,225,37)" fg:x="123568" fg:w="100"/><text x="23.1536%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (100 samples, 0.02%)</title><rect x="22.9036%" y="613" width="0.0185%" height="15" fill="rgb(221,14,54)" fg:x="123568" fg:w="100"/><text x="23.1536%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.02%)</title><rect x="22.9036%" y="597" width="0.0185%" height="15" fill="rgb(254,102,2)" fg:x="123568" fg:w="100"/><text x="23.1536%" y="607.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (189 samples, 0.04%)</title><rect x="22.8879%" y="709" width="0.0350%" height="15" fill="rgb(232,104,17)" fg:x="123483" fg:w="189"/><text x="23.1379%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (697 samples, 0.13%)</title><rect x="22.8059%" y="725" width="0.1292%" height="15" fill="rgb(250,220,14)" fg:x="123041" fg:w="697"/><text x="23.0559%" y="735.50"></text></g><g><title>VM_G1CollectForAllocation::doit (68 samples, 0.01%)</title><rect x="22.9600%" y="693" width="0.0126%" height="15" fill="rgb(241,158,9)" fg:x="123872" fg:w="68"/><text x="23.2100%" y="703.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (68 samples, 0.01%)</title><rect x="22.9600%" y="677" width="0.0126%" height="15" fill="rgb(246,9,43)" fg:x="123872" fg:w="68"/><text x="23.2100%" y="687.50"></text></g><g><title>VM_Operation::evaluate (177 samples, 0.03%)</title><rect x="22.9437%" y="709" width="0.0328%" height="15" fill="rgb(206,73,33)" fg:x="123784" fg:w="177"/><text x="23.1937%" y="719.50"></text></g><g><title>VMThread::evaluate_operation (180 samples, 0.03%)</title><rect x="22.9435%" y="725" width="0.0334%" height="15" fill="rgb(222,79,8)" fg:x="123783" fg:w="180"/><text x="23.1935%" y="735.50"></text></g><g><title>Thread::call_run (1,098 samples, 0.20%)</title><rect x="22.7748%" y="773" width="0.2035%" height="15" fill="rgb(234,8,54)" fg:x="122873" fg:w="1098"/><text x="23.0248%" y="783.50"></text></g><g><title>VMThread::run (1,098 samples, 0.20%)</title><rect x="22.7748%" y="757" width="0.2035%" height="15" fill="rgb(209,134,38)" fg:x="122873" fg:w="1098"/><text x="23.0248%" y="767.50"></text></g><g><title>VMThread::loop (1,098 samples, 0.20%)</title><rect x="22.7748%" y="741" width="0.2035%" height="15" fill="rgb(230,127,29)" fg:x="122873" fg:w="1098"/><text x="23.0248%" y="751.50"></text></g><g><title>__GI___clone (1,142 samples, 0.21%)</title><rect x="22.7674%" y="821" width="0.2117%" height="15" fill="rgb(242,44,41)" fg:x="122833" fg:w="1142"/><text x="23.0174%" y="831.50"></text></g><g><title>start_thread (1,103 samples, 0.20%)</title><rect x="22.7746%" y="805" width="0.2044%" height="15" fill="rgb(222,56,43)" fg:x="122872" fg:w="1103"/><text x="23.0246%" y="815.50"></text></g><g><title>thread_native_entry (1,103 samples, 0.20%)</title><rect x="22.7746%" y="789" width="0.2044%" height="15" fill="rgb(238,39,47)" fg:x="122872" fg:w="1103"/><text x="23.0246%" y="799.50"></text></g><g><title>VM_Thread (1,300 samples, 0.24%)</title><rect x="22.7388%" y="837" width="0.2410%" height="15" fill="rgb(226,79,43)" fg:x="122679" fg:w="1300"/><text x="22.9888%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (136 samples, 0.03%)</title><rect x="23.0360%" y="661" width="0.0252%" height="15" fill="rgb(242,105,53)" fg:x="124282" fg:w="136"/><text x="23.2860%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (130 samples, 0.02%)</title><rect x="23.0371%" y="645" width="0.0241%" height="15" fill="rgb(251,132,46)" fg:x="124288" fg:w="130"/><text x="23.2871%" y="655.50"></text></g><g><title>native_write_msr (129 samples, 0.02%)</title><rect x="23.0373%" y="629" width="0.0239%" height="15" fill="rgb(231,77,14)" fg:x="124289" fg:w="129"/><text x="23.2873%" y="639.50"></text></g><g><title>finish_task_switch (147 samples, 0.03%)</title><rect x="23.0348%" y="677" width="0.0272%" height="15" fill="rgb(240,135,9)" fg:x="124276" fg:w="147"/><text x="23.2848%" y="687.50"></text></g><g><title>futex_wait (168 samples, 0.03%)</title><rect x="23.0317%" y="741" width="0.0311%" height="15" fill="rgb(248,109,14)" fg:x="124259" fg:w="168"/><text x="23.2817%" y="751.50"></text></g><g><title>futex_wait_queue_me (166 samples, 0.03%)</title><rect x="23.0321%" y="725" width="0.0308%" height="15" fill="rgb(227,146,52)" fg:x="124261" fg:w="166"/><text x="23.2821%" y="735.50"></text></g><g><title>schedule (160 samples, 0.03%)</title><rect x="23.0332%" y="709" width="0.0297%" height="15" fill="rgb(232,54,3)" fg:x="124267" fg:w="160"/><text x="23.2832%" y="719.50"></text></g><g><title>__schedule (160 samples, 0.03%)</title><rect x="23.0332%" y="693" width="0.0297%" height="15" fill="rgb(229,201,43)" fg:x="124267" fg:w="160"/><text x="23.2832%" y="703.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.03%)</title><rect x="23.0311%" y="773" width="0.0334%" height="15" fill="rgb(252,161,33)" fg:x="124256" fg:w="180"/><text x="23.2811%" y="783.50"></text></g><g><title>do_futex (177 samples, 0.03%)</title><rect x="23.0317%" y="757" width="0.0328%" height="15" fill="rgb(226,146,40)" fg:x="124259" fg:w="177"/><text x="23.2817%" y="767.50"></text></g><g><title>do_syscall_64 (291 samples, 0.05%)</title><rect x="23.0228%" y="789" width="0.0539%" height="15" fill="rgb(219,47,25)" fg:x="124211" fg:w="291"/><text x="23.2728%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (297 samples, 0.06%)</title><rect x="23.0228%" y="805" width="0.0550%" height="15" fill="rgb(250,135,13)" fg:x="124211" fg:w="297"/><text x="23.2728%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="23.0784%" y="757" width="0.0102%" height="15" fill="rgb(219,229,18)" fg:x="124511" fg:w="55"/><text x="23.3284%" y="767.50"></text></g><g><title>ret_from_fork (60 samples, 0.01%)</title><rect x="23.0780%" y="805" width="0.0111%" height="15" fill="rgb(217,152,27)" fg:x="124509" fg:w="60"/><text x="23.3280%" y="815.50"></text></g><g><title>schedule_tail (60 samples, 0.01%)</title><rect x="23.0780%" y="789" width="0.0111%" height="15" fill="rgb(225,71,47)" fg:x="124509" fg:w="60"/><text x="23.3280%" y="799.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="23.0782%" y="773" width="0.0109%" height="15" fill="rgb(220,139,14)" fg:x="124510" fg:w="59"/><text x="23.3282%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (578 samples, 0.11%)</title><rect x="22.9822%" y="821" width="0.1071%" height="15" fill="rgb(247,54,32)" fg:x="123992" fg:w="578"/><text x="23.2322%" y="831.50"></text></g><g><title>bazel (632 samples, 0.12%)</title><rect x="22.9815%" y="837" width="0.1171%" height="15" fill="rgb(252,131,39)" fg:x="123988" fg:w="632"/><text x="23.2315%" y="847.50"></text></g><g><title>_dl_catch_exception (61 samples, 0.01%)</title><rect x="23.1188%" y="725" width="0.0113%" height="15" fill="rgb(210,108,39)" fg:x="124729" fg:w="61"/><text x="23.3688%" y="735.50"></text></g><g><title>openaux (60 samples, 0.01%)</title><rect x="23.1190%" y="709" width="0.0111%" height="15" fill="rgb(205,23,29)" fg:x="124730" fg:w="60"/><text x="23.3690%" y="719.50"></text></g><g><title>_dl_map_object (60 samples, 0.01%)</title><rect x="23.1190%" y="693" width="0.0111%" height="15" fill="rgb(246,139,46)" fg:x="124730" fg:w="60"/><text x="23.3690%" y="703.50"></text></g><g><title>_dl_map_object_deps (62 samples, 0.01%)</title><rect x="23.1188%" y="741" width="0.0115%" height="15" fill="rgb(250,81,26)" fg:x="124729" fg:w="62"/><text x="23.3688%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (127 samples, 0.02%)</title><rect x="23.1399%" y="693" width="0.0235%" height="15" fill="rgb(214,104,7)" fg:x="124843" fg:w="127"/><text x="23.3899%" y="703.50"></text></g><g><title>do_lookup_x (70 samples, 0.01%)</title><rect x="23.1505%" y="677" width="0.0130%" height="15" fill="rgb(233,189,8)" fg:x="124900" fg:w="70"/><text x="23.4005%" y="687.50"></text></g><g><title>elf_machine_rela (153 samples, 0.03%)</title><rect x="23.1355%" y="709" width="0.0284%" height="15" fill="rgb(228,141,17)" fg:x="124819" fg:w="153"/><text x="23.3855%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (177 samples, 0.03%)</title><rect x="23.1327%" y="725" width="0.0328%" height="15" fill="rgb(247,157,1)" fg:x="124804" fg:w="177"/><text x="23.3827%" y="735.50"></text></g><g><title>_dl_relocate_object (187 samples, 0.03%)</title><rect x="23.1312%" y="741" width="0.0347%" height="15" fill="rgb(249,225,5)" fg:x="124796" fg:w="187"/><text x="23.3812%" y="751.50"></text></g><g><title>[ld-2.31.so] (266 samples, 0.05%)</title><rect x="23.1179%" y="757" width="0.0493%" height="15" fill="rgb(242,55,13)" fg:x="124724" fg:w="266"/><text x="23.3679%" y="767.50"></text></g><g><title>_dl_start_final (273 samples, 0.05%)</title><rect x="23.1179%" y="789" width="0.0506%" height="15" fill="rgb(230,49,50)" fg:x="124724" fg:w="273"/><text x="23.3679%" y="799.50"></text></g><g><title>_dl_sysdep_start (273 samples, 0.05%)</title><rect x="23.1179%" y="773" width="0.0506%" height="15" fill="rgb(241,111,38)" fg:x="124724" fg:w="273"/><text x="23.3679%" y="783.50"></text></g><g><title>_dl_start (276 samples, 0.05%)</title><rect x="23.1179%" y="805" width="0.0512%" height="15" fill="rgb(252,155,4)" fg:x="124724" fg:w="276"/><text x="23.3679%" y="815.50"></text></g><g><title>_start (312 samples, 0.06%)</title><rect x="23.1114%" y="821" width="0.0578%" height="15" fill="rgb(212,69,32)" fg:x="124689" fg:w="312"/><text x="23.3614%" y="831.50"></text></g><g><title>build-runfiles (432 samples, 0.08%)</title><rect x="23.0992%" y="837" width="0.0801%" height="15" fill="rgb(243,107,47)" fg:x="124623" fg:w="432"/><text x="23.3492%" y="847.50"></text></g><g><title>__GI___libc_malloc (56 samples, 0.01%)</title><rect x="23.3053%" y="453" width="0.0104%" height="15" fill="rgb(247,130,12)" fg:x="125735" fg:w="56"/><text x="23.5553%" y="463.50"></text></g><g><title>_int_malloc (55 samples, 0.01%)</title><rect x="23.3055%" y="437" width="0.0102%" height="15" fill="rgb(233,74,16)" fg:x="125736" fg:w="55"/><text x="23.5555%" y="447.50"></text></g><g><title>[dash] (64 samples, 0.01%)</title><rect x="23.3042%" y="485" width="0.0119%" height="15" fill="rgb(208,58,18)" fg:x="125729" fg:w="64"/><text x="23.5542%" y="495.50"></text></g><g><title>[dash] (58 samples, 0.01%)</title><rect x="23.3053%" y="469" width="0.0108%" height="15" fill="rgb(242,225,1)" fg:x="125735" fg:w="58"/><text x="23.5553%" y="479.50"></text></g><g><title>[dash] (138 samples, 0.03%)</title><rect x="23.3034%" y="501" width="0.0256%" height="15" fill="rgb(249,39,40)" fg:x="125725" fg:w="138"/><text x="23.5534%" y="511.50"></text></g><g><title>__GI___libc_write (57 samples, 0.01%)</title><rect x="23.3414%" y="501" width="0.0106%" height="15" fill="rgb(207,72,44)" fg:x="125930" fg:w="57"/><text x="23.5914%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="23.3418%" y="485" width="0.0102%" height="15" fill="rgb(215,193,12)" fg:x="125932" fg:w="55"/><text x="23.5918%" y="495.50"></text></g><g><title>alloc_bprm (79 samples, 0.01%)</title><rect x="23.3525%" y="421" width="0.0146%" height="15" fill="rgb(248,41,39)" fg:x="125990" fg:w="79"/><text x="23.6025%" y="431.50"></text></g><g><title>do_open_execat (80 samples, 0.01%)</title><rect x="23.3740%" y="405" width="0.0148%" height="15" fill="rgb(253,85,4)" fg:x="126106" fg:w="80"/><text x="23.6240%" y="415.50"></text></g><g><title>do_filp_open (78 samples, 0.01%)</title><rect x="23.3744%" y="389" width="0.0145%" height="15" fill="rgb(243,70,31)" fg:x="126108" fg:w="78"/><text x="23.6244%" y="399.50"></text></g><g><title>path_openat (78 samples, 0.01%)</title><rect x="23.3744%" y="373" width="0.0145%" height="15" fill="rgb(253,195,26)" fg:x="126108" fg:w="78"/><text x="23.6244%" y="383.50"></text></g><g><title>btrfs_search_slot (59 samples, 0.01%)</title><rect x="23.3976%" y="277" width="0.0109%" height="15" fill="rgb(243,42,11)" fg:x="126233" fg:w="59"/><text x="23.6476%" y="287.50"></text></g><g><title>btrfs_lookup_xattr (68 samples, 0.01%)</title><rect x="23.3976%" y="293" width="0.0126%" height="15" fill="rgb(239,66,17)" fg:x="126233" fg:w="68"/><text x="23.6476%" y="303.50"></text></g><g><title>btrfs_getxattr (79 samples, 0.01%)</title><rect x="23.3959%" y="309" width="0.0146%" height="15" fill="rgb(217,132,21)" fg:x="126224" fg:w="79"/><text x="23.6459%" y="319.50"></text></g><g><title>get_vfs_caps_from_disk (87 samples, 0.02%)</title><rect x="23.3959%" y="341" width="0.0161%" height="15" fill="rgb(252,202,21)" fg:x="126224" fg:w="87"/><text x="23.6459%" y="351.50"></text></g><g><title>__vfs_getxattr (87 samples, 0.02%)</title><rect x="23.3959%" y="325" width="0.0161%" height="15" fill="rgb(233,98,36)" fg:x="126224" fg:w="87"/><text x="23.6459%" y="335.50"></text></g><g><title>begin_new_exec (109 samples, 0.02%)</title><rect x="23.3924%" y="389" width="0.0202%" height="15" fill="rgb(216,153,54)" fg:x="126205" fg:w="109"/><text x="23.6424%" y="399.50"></text></g><g><title>security_bprm_creds_from_file (97 samples, 0.02%)</title><rect x="23.3946%" y="373" width="0.0180%" height="15" fill="rgb(250,99,7)" fg:x="126217" fg:w="97"/><text x="23.6446%" y="383.50"></text></g><g><title>cap_bprm_creds_from_file (97 samples, 0.02%)</title><rect x="23.3946%" y="357" width="0.0180%" height="15" fill="rgb(207,56,50)" fg:x="126217" fg:w="97"/><text x="23.6446%" y="367.50"></text></g><g><title>do_open_execat (69 samples, 0.01%)</title><rect x="23.4159%" y="373" width="0.0128%" height="15" fill="rgb(244,61,34)" fg:x="126332" fg:w="69"/><text x="23.6659%" y="383.50"></text></g><g><title>do_filp_open (69 samples, 0.01%)</title><rect x="23.4159%" y="357" width="0.0128%" height="15" fill="rgb(241,50,38)" fg:x="126332" fg:w="69"/><text x="23.6659%" y="367.50"></text></g><g><title>path_openat (67 samples, 0.01%)</title><rect x="23.4163%" y="341" width="0.0124%" height="15" fill="rgb(212,166,30)" fg:x="126334" fg:w="67"/><text x="23.6663%" y="351.50"></text></g><g><title>open_exec (74 samples, 0.01%)</title><rect x="23.4159%" y="389" width="0.0137%" height="15" fill="rgb(249,127,32)" fg:x="126332" fg:w="74"/><text x="23.6659%" y="399.50"></text></g><g><title>load_elf_binary (216 samples, 0.04%)</title><rect x="23.3898%" y="405" width="0.0400%" height="15" fill="rgb(209,103,0)" fg:x="126191" fg:w="216"/><text x="23.6398%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (735 samples, 0.14%)</title><rect x="23.4530%" y="325" width="0.1362%" height="15" fill="rgb(238,209,51)" fg:x="126532" fg:w="735"/><text x="23.7030%" y="335.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (729 samples, 0.14%)</title><rect x="23.4541%" y="309" width="0.1351%" height="15" fill="rgb(237,56,23)" fg:x="126538" fg:w="729"/><text x="23.7041%" y="319.50"></text></g><g><title>native_write_msr (725 samples, 0.13%)</title><rect x="23.4549%" y="293" width="0.1344%" height="15" fill="rgb(215,153,46)" fg:x="126542" fg:w="725"/><text x="23.7049%" y="303.50"></text></g><g><title>finish_task_switch (761 samples, 0.14%)</title><rect x="23.4502%" y="341" width="0.1411%" height="15" fill="rgb(224,49,31)" fg:x="126517" fg:w="761"/><text x="23.7002%" y="351.50"></text></g><g><title>_cond_resched (768 samples, 0.14%)</title><rect x="23.4499%" y="373" width="0.1424%" height="15" fill="rgb(250,18,42)" fg:x="126515" fg:w="768"/><text x="23.6999%" y="383.50"></text></g><g><title>__schedule (768 samples, 0.14%)</title><rect x="23.4499%" y="357" width="0.1424%" height="15" fill="rgb(215,176,39)" fg:x="126515" fg:w="768"/><text x="23.6999%" y="367.50"></text></g><g><title>sched_exec (808 samples, 0.15%)</title><rect x="23.4426%" y="405" width="0.1498%" height="15" fill="rgb(223,77,29)" fg:x="126476" fg:w="808"/><text x="23.6926%" y="415.50"></text></g><g><title>stop_one_cpu (775 samples, 0.14%)</title><rect x="23.4487%" y="389" width="0.1436%" height="15" fill="rgb(234,94,52)" fg:x="126509" fg:w="775"/><text x="23.6987%" y="399.50"></text></g><g><title>security_bprm_check (95 samples, 0.02%)</title><rect x="23.5924%" y="405" width="0.0176%" height="15" fill="rgb(220,154,50)" fg:x="127284" fg:w="95"/><text x="23.8424%" y="415.50"></text></g><g><title>tomoyo_bprm_check_security (95 samples, 0.02%)</title><rect x="23.5924%" y="389" width="0.0176%" height="15" fill="rgb(212,11,10)" fg:x="127284" fg:w="95"/><text x="23.8424%" y="399.50"></text></g><g><title>tomoyo_find_next_domain (94 samples, 0.02%)</title><rect x="23.5926%" y="373" width="0.0174%" height="15" fill="rgb(205,166,19)" fg:x="127285" fg:w="94"/><text x="23.8426%" y="383.50"></text></g><g><title>tomoyo_realpath_nofollow (58 samples, 0.01%)</title><rect x="23.5992%" y="357" width="0.0108%" height="15" fill="rgb(244,198,16)" fg:x="127321" fg:w="58"/><text x="23.8492%" y="367.50"></text></g><g><title>aa_dfa_leftmatch (57 samples, 0.01%)</title><rect x="23.6298%" y="341" width="0.0106%" height="15" fill="rgb(219,69,12)" fg:x="127486" fg:w="57"/><text x="23.8798%" y="351.50"></text></g><g><title>apparmor_bprm_creds_for_exec (184 samples, 0.03%)</title><rect x="23.6106%" y="389" width="0.0341%" height="15" fill="rgb(245,30,7)" fg:x="127382" fg:w="184"/><text x="23.8606%" y="399.50"></text></g><g><title>profile_transition (157 samples, 0.03%)</title><rect x="23.6156%" y="373" width="0.0291%" height="15" fill="rgb(218,221,48)" fg:x="127409" fg:w="157"/><text x="23.8656%" y="383.50"></text></g><g><title>find_attach (124 samples, 0.02%)</title><rect x="23.6217%" y="357" width="0.0230%" height="15" fill="rgb(216,66,15)" fg:x="127442" fg:w="124"/><text x="23.8717%" y="367.50"></text></g><g><title>security_bprm_creds_for_exec (190 samples, 0.04%)</title><rect x="23.6100%" y="405" width="0.0352%" height="15" fill="rgb(226,122,50)" fg:x="127379" fg:w="190"/><text x="23.8600%" y="415.50"></text></g><g><title>bprm_execve (1,501 samples, 0.28%)</title><rect x="23.3672%" y="421" width="0.2782%" height="15" fill="rgb(239,156,16)" fg:x="126069" fg:w="1501"/><text x="23.6172%" y="431.50"></text></g><g><title>__get_user_pages_remote (104 samples, 0.02%)</title><rect x="23.6463%" y="389" width="0.0193%" height="15" fill="rgb(224,27,38)" fg:x="127575" fg:w="104"/><text x="23.8963%" y="399.50"></text></g><g><title>__get_user_pages (101 samples, 0.02%)</title><rect x="23.6469%" y="373" width="0.0187%" height="15" fill="rgb(224,39,27)" fg:x="127578" fg:w="101"/><text x="23.8969%" y="383.50"></text></g><g><title>handle_mm_fault (79 samples, 0.01%)</title><rect x="23.6510%" y="357" width="0.0146%" height="15" fill="rgb(215,92,29)" fg:x="127600" fg:w="79"/><text x="23.9010%" y="367.50"></text></g><g><title>get_arg_page (109 samples, 0.02%)</title><rect x="23.6458%" y="405" width="0.0202%" height="15" fill="rgb(207,159,16)" fg:x="127572" fg:w="109"/><text x="23.8958%" y="415.50"></text></g><g><title>copy_string_kernel (112 samples, 0.02%)</title><rect x="23.6454%" y="421" width="0.0208%" height="15" fill="rgb(238,163,47)" fg:x="127570" fg:w="112"/><text x="23.8954%" y="431.50"></text></g><g><title>copy_strings.isra.0 (61 samples, 0.01%)</title><rect x="23.6662%" y="421" width="0.0113%" height="15" fill="rgb(219,91,49)" fg:x="127682" fg:w="61"/><text x="23.9162%" y="431.50"></text></g><g><title>do_execveat_common (1,767 samples, 0.33%)</title><rect x="23.3520%" y="437" width="0.3275%" height="15" fill="rgb(227,167,31)" fg:x="125987" fg:w="1767"/><text x="23.6020%" y="447.50"></text></g><g><title>__x64_sys_execve (1,789 samples, 0.33%)</title><rect x="23.3520%" y="453" width="0.3316%" height="15" fill="rgb(234,80,54)" fg:x="125987" fg:w="1789"/><text x="23.6020%" y="463.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,790 samples, 0.33%)</title><rect x="23.3520%" y="485" width="0.3318%" height="15" fill="rgb(212,114,2)" fg:x="125987" fg:w="1790"/><text x="23.6020%" y="495.50"></text></g><g><title>do_syscall_64 (1,790 samples, 0.33%)</title><rect x="23.3520%" y="469" width="0.3318%" height="15" fill="rgb(234,50,24)" fg:x="125987" fg:w="1790"/><text x="23.6020%" y="479.50"></text></g><g><title>__GI_execve (1,791 samples, 0.33%)</title><rect x="23.3520%" y="501" width="0.3320%" height="15" fill="rgb(221,68,8)" fg:x="125987" fg:w="1791"/><text x="23.6020%" y="511.50"></text></g><g><title>__strcspn_sse42 (107 samples, 0.02%)</title><rect x="23.6849%" y="501" width="0.0198%" height="15" fill="rgb(254,180,31)" fg:x="127783" fg:w="107"/><text x="23.9349%" y="511.50"></text></g><g><title>[dash] (2,232 samples, 0.41%)</title><rect x="23.2940%" y="517" width="0.4137%" height="15" fill="rgb(247,130,50)" fg:x="125674" fg:w="2232"/><text x="23.5440%" y="527.50"></text></g><g><title>_int_malloc (62 samples, 0.01%)</title><rect x="23.7143%" y="501" width="0.0115%" height="15" fill="rgb(211,109,4)" fg:x="127942" fg:w="62"/><text x="23.9643%" y="511.50"></text></g><g><title>__GI___libc_malloc (76 samples, 0.01%)</title><rect x="23.7140%" y="517" width="0.0141%" height="15" fill="rgb(238,50,21)" fg:x="127940" fg:w="76"/><text x="23.9640%" y="527.50"></text></g><g><title>__free_pages_ok (108 samples, 0.02%)</title><rect x="23.8054%" y="373" width="0.0200%" height="15" fill="rgb(225,57,45)" fg:x="128433" fg:w="108"/><text x="24.0554%" y="383.50"></text></g><g><title>__mmdrop (183 samples, 0.03%)</title><rect x="23.7996%" y="389" width="0.0339%" height="15" fill="rgb(209,196,50)" fg:x="128402" fg:w="183"/><text x="24.0496%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (8,653 samples, 1.60%)</title><rect x="23.8335%" y="389" width="1.6039%" height="15" fill="rgb(242,140,13)" fg:x="128585" fg:w="8653"/><text x="24.0835%" y="399.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (8,559 samples, 1.59%)</title><rect x="23.8510%" y="373" width="1.5864%" height="15" fill="rgb(217,111,7)" fg:x="128679" fg:w="8559"/><text x="24.1010%" y="383.50"></text></g><g><title>native_write_msr (8,506 samples, 1.58%)</title><rect x="23.8608%" y="357" width="1.5766%" height="15" fill="rgb(253,193,51)" fg:x="128732" fg:w="8506"/><text x="24.1108%" y="367.50"></text></g><g><title>__wake_up_common (65 samples, 0.01%)</title><rect x="25.4563%" y="229" width="0.0120%" height="15" fill="rgb(252,70,29)" fg:x="137340" fg:w="65"/><text x="25.7063%" y="239.50"></text></g><g><title>pollwake (63 samples, 0.01%)</title><rect x="25.4567%" y="213" width="0.0117%" height="15" fill="rgb(232,127,12)" fg:x="137342" fg:w="63"/><text x="25.7067%" y="223.50"></text></g><g><title>try_to_wake_up (63 samples, 0.01%)</title><rect x="25.4567%" y="197" width="0.0117%" height="15" fill="rgb(211,180,21)" fg:x="137342" fg:w="63"/><text x="25.7067%" y="207.50"></text></g><g><title>irq_work_run (83 samples, 0.02%)</title><rect x="25.4537%" y="325" width="0.0154%" height="15" fill="rgb(229,72,13)" fg:x="137326" fg:w="83"/><text x="25.7037%" y="335.50"></text></g><g><title>irq_work_run_list (83 samples, 0.02%)</title><rect x="25.4537%" y="309" width="0.0154%" height="15" fill="rgb(240,211,49)" fg:x="137326" fg:w="83"/><text x="25.7037%" y="319.50"></text></g><g><title>irq_work_single (80 samples, 0.01%)</title><rect x="25.4543%" y="293" width="0.0148%" height="15" fill="rgb(219,149,40)" fg:x="137329" fg:w="80"/><text x="25.7043%" y="303.50"></text></g><g><title>perf_pending_event (79 samples, 0.01%)</title><rect x="25.4544%" y="277" width="0.0146%" height="15" fill="rgb(210,127,46)" fg:x="137330" fg:w="79"/><text x="25.7044%" y="287.50"></text></g><g><title>perf_event_wakeup (71 samples, 0.01%)</title><rect x="25.4559%" y="261" width="0.0132%" height="15" fill="rgb(220,106,7)" fg:x="137338" fg:w="71"/><text x="25.7059%" y="271.50"></text></g><g><title>__wake_up_common_lock (70 samples, 0.01%)</title><rect x="25.4561%" y="245" width="0.0130%" height="15" fill="rgb(249,31,22)" fg:x="137339" fg:w="70"/><text x="25.7061%" y="255.50"></text></g><g><title>asm_call_sysvec_on_stack (94 samples, 0.02%)</title><rect x="25.4522%" y="357" width="0.0174%" height="15" fill="rgb(253,1,49)" fg:x="137318" fg:w="94"/><text x="25.7022%" y="367.50"></text></g><g><title>__sysvec_irq_work (87 samples, 0.02%)</title><rect x="25.4535%" y="341" width="0.0161%" height="15" fill="rgb(227,144,33)" fg:x="137325" fg:w="87"/><text x="25.7035%" y="351.50"></text></g><g><title>asm_sysvec_irq_work (157 samples, 0.03%)</title><rect x="25.4437%" y="389" width="0.0291%" height="15" fill="rgb(249,163,44)" fg:x="137272" fg:w="157"/><text x="25.6937%" y="399.50"></text></g><g><title>sysvec_irq_work (115 samples, 0.02%)</title><rect x="25.4515%" y="373" width="0.0213%" height="15" fill="rgb(234,15,39)" fg:x="137314" fg:w="115"/><text x="25.7015%" y="383.50"></text></g><g><title>kmem_cache_free (85 samples, 0.02%)</title><rect x="25.4769%" y="389" width="0.0158%" height="15" fill="rgb(207,66,16)" fg:x="137451" fg:w="85"/><text x="25.7269%" y="399.50"></text></g><g><title>put_task_stack (117 samples, 0.02%)</title><rect x="25.4989%" y="389" width="0.0217%" height="15" fill="rgb(233,112,24)" fg:x="137570" fg:w="117"/><text x="25.7489%" y="399.50"></text></g><g><title>finish_task_switch (9,414 samples, 1.74%)</title><rect x="23.7818%" y="405" width="1.7449%" height="15" fill="rgb(230,90,22)" fg:x="128306" fg:w="9414"/><text x="24.0318%" y="415.50"></text></g><g><title>pick_next_task_fair (57 samples, 0.01%)</title><rect x="25.5267%" y="405" width="0.0106%" height="15" fill="rgb(229,61,13)" fg:x="137720" fg:w="57"/><text x="25.7767%" y="415.50"></text></g><g><title>schedule (9,619 samples, 1.78%)</title><rect x="23.7633%" y="437" width="1.7829%" height="15" fill="rgb(225,57,24)" fg:x="128206" fg:w="9619"/><text x="24.0133%" y="447.50">s..</text></g><g><title>__schedule (9,612 samples, 1.78%)</title><rect x="23.7646%" y="421" width="1.7816%" height="15" fill="rgb(208,169,48)" fg:x="128213" fg:w="9612"/><text x="24.0146%" y="431.50">_..</text></g><g><title>free_pid (98 samples, 0.02%)</title><rect x="25.6027%" y="405" width="0.0182%" height="15" fill="rgb(244,218,51)" fg:x="138130" fg:w="98"/><text x="25.8527%" y="415.50"></text></g><g><title>radix_tree_delete_item (80 samples, 0.01%)</title><rect x="25.6061%" y="389" width="0.0148%" height="15" fill="rgb(214,148,10)" fg:x="138148" fg:w="80"/><text x="25.8561%" y="399.50"></text></g><g><title>release_task (380 samples, 0.07%)</title><rect x="25.5673%" y="421" width="0.0704%" height="15" fill="rgb(225,174,27)" fg:x="137939" fg:w="380"/><text x="25.8173%" y="431.50"></text></g><g><title>do_wait (10,213 samples, 1.89%)</title><rect x="23.7507%" y="453" width="1.8930%" height="15" fill="rgb(230,96,26)" fg:x="128138" fg:w="10213"/><text x="24.0007%" y="463.50">d..</text></g><g><title>wait_consider_task (526 samples, 0.10%)</title><rect x="25.5462%" y="437" width="0.0975%" height="15" fill="rgb(232,10,30)" fg:x="137825" fg:w="526"/><text x="25.7962%" y="447.50"></text></g><g><title>do_syscall_64 (10,276 samples, 1.90%)</title><rect x="23.7392%" y="485" width="1.9047%" height="15" fill="rgb(222,8,50)" fg:x="128076" fg:w="10276"/><text x="23.9892%" y="495.50">d..</text></g><g><title>kernel_wait4 (10,227 samples, 1.90%)</title><rect x="23.7483%" y="469" width="1.8956%" height="15" fill="rgb(213,81,27)" fg:x="128125" fg:w="10227"/><text x="23.9983%" y="479.50">k..</text></g><g><title>copy_fpstate_to_sigframe (116 samples, 0.02%)</title><rect x="25.6524%" y="421" width="0.0215%" height="15" fill="rgb(245,50,10)" fg:x="138398" fg:w="116"/><text x="25.9024%" y="431.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (126 samples, 0.02%)</title><rect x="25.6517%" y="437" width="0.0234%" height="15" fill="rgb(216,100,18)" fg:x="138394" fg:w="126"/><text x="25.9017%" y="447.50"></text></g><g><title>arch_do_signal (232 samples, 0.04%)</title><rect x="25.6448%" y="453" width="0.0430%" height="15" fill="rgb(236,147,54)" fg:x="138357" fg:w="232"/><text x="25.8948%" y="463.50"></text></g><g><title>get_signal (69 samples, 0.01%)</title><rect x="25.6750%" y="437" width="0.0128%" height="15" fill="rgb(205,143,26)" fg:x="138520" fg:w="69"/><text x="25.9250%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10,519 samples, 1.95%)</title><rect x="23.7384%" y="501" width="1.9497%" height="15" fill="rgb(236,26,9)" fg:x="128072" fg:w="10519"/><text x="23.9884%" y="511.50">e..</text></g><g><title>syscall_exit_to_user_mode (239 samples, 0.04%)</title><rect x="25.6439%" y="485" width="0.0443%" height="15" fill="rgb(221,165,53)" fg:x="138352" fg:w="239"/><text x="25.8939%" y="495.50"></text></g><g><title>exit_to_user_mode_prepare (239 samples, 0.04%)</title><rect x="25.6439%" y="469" width="0.0443%" height="15" fill="rgb(214,110,17)" fg:x="138352" fg:w="239"/><text x="25.8939%" y="479.50"></text></g><g><title>killpg (71 samples, 0.01%)</title><rect x="25.6887%" y="501" width="0.0132%" height="15" fill="rgb(237,197,12)" fg:x="138594" fg:w="71"/><text x="25.9387%" y="511.50"></text></g><g><title>[dash] (71 samples, 0.01%)</title><rect x="25.6887%" y="485" width="0.0132%" height="15" fill="rgb(205,84,17)" fg:x="138594" fg:w="71"/><text x="25.9387%" y="495.50"></text></g><g><title>__GI___wait4 (10,652 samples, 1.97%)</title><rect x="23.7281%" y="517" width="1.9744%" height="15" fill="rgb(237,18,45)" fg:x="128016" fg:w="10652"/><text x="23.9781%" y="527.50">_..</text></g><g><title>_int_free (55 samples, 0.01%)</title><rect x="25.7134%" y="517" width="0.0102%" height="15" fill="rgb(221,87,14)" fg:x="138727" fg:w="55"/><text x="25.9634%" y="527.50"></text></g><g><title>exc_page_fault (98 samples, 0.02%)</title><rect x="25.7238%" y="501" width="0.0182%" height="15" fill="rgb(238,186,15)" fg:x="138783" fg:w="98"/><text x="25.9738%" y="511.50"></text></g><g><title>do_user_addr_fault (98 samples, 0.02%)</title><rect x="25.7238%" y="485" width="0.0182%" height="15" fill="rgb(208,115,11)" fg:x="138783" fg:w="98"/><text x="25.9738%" y="495.50"></text></g><g><title>handle_mm_fault (88 samples, 0.02%)</title><rect x="25.7256%" y="469" width="0.0163%" height="15" fill="rgb(254,175,0)" fg:x="138793" fg:w="88"/><text x="25.9756%" y="479.50"></text></g><g><title>asm_exc_page_fault (102 samples, 0.02%)</title><rect x="25.7236%" y="517" width="0.0189%" height="15" fill="rgb(227,24,42)" fg:x="138782" fg:w="102"/><text x="25.9736%" y="527.50"></text></g><g><title>[dash] (13,353 samples, 2.48%)</title><rect x="23.2799%" y="533" width="2.4750%" height="15" fill="rgb(223,211,37)" fg:x="125598" fg:w="13353"/><text x="23.5299%" y="543.50">[d..</text></g><g><title>_int_free (61 samples, 0.01%)</title><rect x="25.7744%" y="533" width="0.0113%" height="15" fill="rgb(235,49,27)" fg:x="139056" fg:w="61"/><text x="26.0244%" y="543.50"></text></g><g><title>tcache_put (58 samples, 0.01%)</title><rect x="25.7749%" y="517" width="0.0108%" height="15" fill="rgb(254,97,51)" fg:x="139059" fg:w="58"/><text x="26.0249%" y="527.50"></text></g><g><title>handle_mm_fault (128 samples, 0.02%)</title><rect x="25.7905%" y="485" width="0.0237%" height="15" fill="rgb(249,51,40)" fg:x="139143" fg:w="128"/><text x="26.0405%" y="495.50"></text></g><g><title>wp_page_copy (103 samples, 0.02%)</title><rect x="25.7951%" y="469" width="0.0191%" height="15" fill="rgb(210,128,45)" fg:x="139168" fg:w="103"/><text x="26.0451%" y="479.50"></text></g><g><title>exc_page_fault (154 samples, 0.03%)</title><rect x="25.7858%" y="517" width="0.0285%" height="15" fill="rgb(224,137,50)" fg:x="139118" fg:w="154"/><text x="26.0358%" y="527.50"></text></g><g><title>do_user_addr_fault (153 samples, 0.03%)</title><rect x="25.7860%" y="501" width="0.0284%" height="15" fill="rgb(242,15,9)" fg:x="139119" fg:w="153"/><text x="26.0360%" y="511.50"></text></g><g><title>asm_exc_page_fault (163 samples, 0.03%)</title><rect x="25.7857%" y="533" width="0.0302%" height="15" fill="rgb(233,187,41)" fg:x="139117" fg:w="163"/><text x="26.0357%" y="543.50"></text></g><g><title>[dash] (13,792 samples, 2.56%)</title><rect x="23.2639%" y="549" width="2.5564%" height="15" fill="rgb(227,2,29)" fg:x="125512" fg:w="13792"/><text x="23.5139%" y="559.50">[d..</text></g><g><title>link_path_walk.part.0 (90 samples, 0.02%)</title><rect x="25.8326%" y="437" width="0.0167%" height="15" fill="rgb(222,70,3)" fg:x="139370" fg:w="90"/><text x="26.0826%" y="447.50"></text></g><g><title>filename_lookup (131 samples, 0.02%)</title><rect x="25.8288%" y="469" width="0.0243%" height="15" fill="rgb(213,11,42)" fg:x="139350" fg:w="131"/><text x="26.0788%" y="479.50"></text></g><g><title>path_lookupat (119 samples, 0.02%)</title><rect x="25.8311%" y="453" width="0.0221%" height="15" fill="rgb(225,150,9)" fg:x="139362" fg:w="119"/><text x="26.0811%" y="463.50"></text></g><g><title>__do_sys_newstat (177 samples, 0.03%)</title><rect x="25.8270%" y="501" width="0.0328%" height="15" fill="rgb(230,162,45)" fg:x="139340" fg:w="177"/><text x="26.0770%" y="511.50"></text></g><g><title>vfs_statx (173 samples, 0.03%)</title><rect x="25.8277%" y="485" width="0.0321%" height="15" fill="rgb(222,14,52)" fg:x="139344" fg:w="173"/><text x="26.0777%" y="495.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (182 samples, 0.03%)</title><rect x="25.8264%" y="533" width="0.0337%" height="15" fill="rgb(254,198,14)" fg:x="139337" fg:w="182"/><text x="26.0764%" y="543.50"></text></g><g><title>do_syscall_64 (182 samples, 0.03%)</title><rect x="25.8264%" y="517" width="0.0337%" height="15" fill="rgb(220,217,30)" fg:x="139337" fg:w="182"/><text x="26.0764%" y="527.50"></text></g><g><title>__GI___xstat (208 samples, 0.04%)</title><rect x="25.8224%" y="549" width="0.0386%" height="15" fill="rgb(215,146,41)" fg:x="139315" fg:w="208"/><text x="26.0724%" y="559.50"></text></g><g><title>filemap_map_pages (90 samples, 0.02%)</title><rect x="25.8870%" y="453" width="0.0167%" height="15" fill="rgb(217,27,36)" fg:x="139664" fg:w="90"/><text x="26.1370%" y="463.50"></text></g><g><title>exc_page_fault (113 samples, 0.02%)</title><rect x="25.8843%" y="501" width="0.0209%" height="15" fill="rgb(219,218,39)" fg:x="139649" fg:w="113"/><text x="26.1343%" y="511.50"></text></g><g><title>do_user_addr_fault (112 samples, 0.02%)</title><rect x="25.8845%" y="485" width="0.0208%" height="15" fill="rgb(219,4,42)" fg:x="139650" fg:w="112"/><text x="26.1345%" y="495.50"></text></g><g><title>handle_mm_fault (108 samples, 0.02%)</title><rect x="25.8852%" y="469" width="0.0200%" height="15" fill="rgb(249,119,36)" fg:x="139654" fg:w="108"/><text x="26.1352%" y="479.50"></text></g><g><title>asm_exc_page_fault (122 samples, 0.02%)</title><rect x="25.8841%" y="517" width="0.0226%" height="15" fill="rgb(209,23,33)" fg:x="139648" fg:w="122"/><text x="26.1341%" y="527.50"></text></g><g><title>__run_fork_handlers (145 samples, 0.03%)</title><rect x="25.8817%" y="533" width="0.0269%" height="15" fill="rgb(211,10,0)" fg:x="139635" fg:w="145"/><text x="26.1317%" y="543.50"></text></g><g><title>filemap_map_pages (134 samples, 0.02%)</title><rect x="25.9239%" y="453" width="0.0248%" height="15" fill="rgb(208,99,37)" fg:x="139863" fg:w="134"/><text x="26.1739%" y="463.50"></text></g><g><title>exc_page_fault (216 samples, 0.04%)</title><rect x="25.9158%" y="501" width="0.0400%" height="15" fill="rgb(213,132,31)" fg:x="139819" fg:w="216"/><text x="26.1658%" y="511.50"></text></g><g><title>do_user_addr_fault (215 samples, 0.04%)</title><rect x="25.9160%" y="485" width="0.0399%" height="15" fill="rgb(243,129,40)" fg:x="139820" fg:w="215"/><text x="26.1660%" y="495.50"></text></g><g><title>handle_mm_fault (200 samples, 0.04%)</title><rect x="25.9187%" y="469" width="0.0371%" height="15" fill="rgb(210,66,33)" fg:x="139835" fg:w="200"/><text x="26.1687%" y="479.50"></text></g><g><title>asm_exc_page_fault (231 samples, 0.04%)</title><rect x="25.9152%" y="517" width="0.0428%" height="15" fill="rgb(209,189,4)" fg:x="139816" fg:w="231"/><text x="26.1652%" y="527.50"></text></g><g><title>__vmalloc_node_range (74 samples, 0.01%)</title><rect x="25.9703%" y="437" width="0.0137%" height="15" fill="rgb(214,107,37)" fg:x="140113" fg:w="74"/><text x="26.2203%" y="447.50"></text></g><g><title>__rb_insert_augmented (60 samples, 0.01%)</title><rect x="26.0266%" y="421" width="0.0111%" height="15" fill="rgb(245,88,54)" fg:x="140417" fg:w="60"/><text x="26.2766%" y="431.50"></text></g><g><title>kmem_cache_alloc (114 samples, 0.02%)</title><rect x="26.0583%" y="389" width="0.0211%" height="15" fill="rgb(205,146,20)" fg:x="140588" fg:w="114"/><text x="26.3083%" y="399.50"></text></g><g><title>anon_vma_clone (197 samples, 0.04%)</title><rect x="26.0446%" y="405" width="0.0365%" height="15" fill="rgb(220,161,25)" fg:x="140514" fg:w="197"/><text x="26.2946%" y="415.50"></text></g><g><title>kmem_cache_alloc (82 samples, 0.02%)</title><rect x="26.0843%" y="405" width="0.0152%" height="15" fill="rgb(215,152,15)" fg:x="140728" fg:w="82"/><text x="26.3343%" y="415.50"></text></g><g><title>anon_vma_fork (315 samples, 0.06%)</title><rect x="26.0422%" y="421" width="0.0584%" height="15" fill="rgb(233,192,44)" fg:x="140501" fg:w="315"/><text x="26.2922%" y="431.50"></text></g><g><title>__pmd_alloc (54 samples, 0.01%)</title><rect x="26.1193%" y="405" width="0.0100%" height="15" fill="rgb(240,170,46)" fg:x="140917" fg:w="54"/><text x="26.3693%" y="415.50"></text></g><g><title>__alloc_pages_nodemask (55 samples, 0.01%)</title><rect x="26.1302%" y="373" width="0.0102%" height="15" fill="rgb(207,104,33)" fg:x="140976" fg:w="55"/><text x="26.3802%" y="383.50"></text></g><g><title>__pte_alloc (63 samples, 0.01%)</title><rect x="26.1293%" y="405" width="0.0117%" height="15" fill="rgb(219,21,39)" fg:x="140971" fg:w="63"/><text x="26.3793%" y="415.50"></text></g><g><title>pte_alloc_one (58 samples, 0.01%)</title><rect x="26.1302%" y="389" width="0.0108%" height="15" fill="rgb(214,133,29)" fg:x="140976" fg:w="58"/><text x="26.3802%" y="399.50"></text></g><g><title>__alloc_pages_nodemask (54 samples, 0.01%)</title><rect x="26.1419%" y="373" width="0.0100%" height="15" fill="rgb(226,93,6)" fg:x="141039" fg:w="54"/><text x="26.3919%" y="383.50"></text></g><g><title>__pud_alloc (62 samples, 0.01%)</title><rect x="26.1410%" y="405" width="0.0115%" height="15" fill="rgb(252,222,34)" fg:x="141034" fg:w="62"/><text x="26.3910%" y="415.50"></text></g><g><title>get_zeroed_page (60 samples, 0.01%)</title><rect x="26.1414%" y="389" width="0.0111%" height="15" fill="rgb(252,92,48)" fg:x="141036" fg:w="60"/><text x="26.3914%" y="399.50"></text></g><g><title>copy_page_range (306 samples, 0.06%)</title><rect x="26.1006%" y="421" width="0.0567%" height="15" fill="rgb(245,223,24)" fg:x="140816" fg:w="306"/><text x="26.3506%" y="431.50"></text></g><g><title>vm_area_dup (179 samples, 0.03%)</title><rect x="26.1775%" y="421" width="0.0332%" height="15" fill="rgb(205,176,3)" fg:x="141231" fg:w="179"/><text x="26.4275%" y="431.50"></text></g><g><title>kmem_cache_alloc (113 samples, 0.02%)</title><rect x="26.1897%" y="405" width="0.0209%" height="15" fill="rgb(235,151,15)" fg:x="141297" fg:w="113"/><text x="26.4397%" y="415.50"></text></g><g><title>dup_mm (1,048 samples, 0.19%)</title><rect x="26.0181%" y="437" width="0.1942%" height="15" fill="rgb(237,209,11)" fg:x="140371" fg:w="1048"/><text x="26.2681%" y="447.50"></text></g><g><title>kmem_cache_alloc_trace (62 samples, 0.01%)</title><rect x="26.2603%" y="373" width="0.0115%" height="15" fill="rgb(243,227,24)" fg:x="141678" fg:w="62"/><text x="26.5103%" y="383.50"></text></g><g><title>allocate_fake_cpuc (70 samples, 0.01%)</title><rect x="26.2731%" y="341" width="0.0130%" height="15" fill="rgb(239,193,16)" fg:x="141747" fg:w="70"/><text x="26.5231%" y="351.50"></text></g><g><title>perf_try_init_event (137 samples, 0.03%)</title><rect x="26.2718%" y="373" width="0.0254%" height="15" fill="rgb(231,27,9)" fg:x="141740" fg:w="137"/><text x="26.5218%" y="383.50"></text></g><g><title>x86_pmu_event_init (136 samples, 0.03%)</title><rect x="26.2720%" y="357" width="0.0252%" height="15" fill="rgb(219,169,10)" fg:x="141741" fg:w="136"/><text x="26.5220%" y="367.50"></text></g><g><title>inherit_task_group.isra.0 (305 samples, 0.06%)</title><rect x="26.2413%" y="421" width="0.0565%" height="15" fill="rgb(244,229,43)" fg:x="141575" fg:w="305"/><text x="26.4913%" y="431.50"></text></g><g><title>inherit_event.constprop.0 (292 samples, 0.05%)</title><rect x="26.2437%" y="405" width="0.0541%" height="15" fill="rgb(254,38,20)" fg:x="141588" fg:w="292"/><text x="26.4937%" y="415.50"></text></g><g><title>perf_event_alloc (252 samples, 0.05%)</title><rect x="26.2511%" y="389" width="0.0467%" height="15" fill="rgb(250,47,30)" fg:x="141628" fg:w="252"/><text x="26.5011%" y="399.50"></text></g><g><title>perf_event_init_task (324 samples, 0.06%)</title><rect x="26.2398%" y="437" width="0.0601%" height="15" fill="rgb(224,124,36)" fg:x="141567" fg:w="324"/><text x="26.4898%" y="447.50"></text></g><g><title>copy_process (1,882 samples, 0.35%)</title><rect x="25.9597%" y="453" width="0.3488%" height="15" fill="rgb(246,68,51)" fg:x="140056" fg:w="1882"/><text x="26.2097%" y="463.50"></text></g><g><title>__do_sys_clone (2,015 samples, 0.37%)</title><rect x="25.9590%" y="485" width="0.3735%" height="15" fill="rgb(253,43,49)" fg:x="140052" fg:w="2015"/><text x="26.2090%" y="495.50"></text></g><g><title>kernel_clone (2,014 samples, 0.37%)</title><rect x="25.9592%" y="469" width="0.3733%" height="15" fill="rgb(219,54,36)" fg:x="140053" fg:w="2014"/><text x="26.2092%" y="479.50"></text></g><g><title>wake_up_new_task (123 samples, 0.02%)</title><rect x="26.3097%" y="453" width="0.0228%" height="15" fill="rgb(227,133,34)" fg:x="141944" fg:w="123"/><text x="26.5597%" y="463.50"></text></g><g><title>do_syscall_64 (2,016 samples, 0.37%)</title><rect x="25.9590%" y="501" width="0.3737%" height="15" fill="rgb(247,227,15)" fg:x="140052" fg:w="2016"/><text x="26.2090%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,037 samples, 0.38%)</title><rect x="25.9586%" y="517" width="0.3776%" height="15" fill="rgb(229,96,14)" fg:x="140050" fg:w="2037"/><text x="26.2086%" y="527.50"></text></g><g><title>find_vma (64 samples, 0.01%)</title><rect x="26.3910%" y="421" width="0.0119%" height="15" fill="rgb(220,79,17)" fg:x="142383" fg:w="64"/><text x="26.6410%" y="431.50"></text></g><g><title>alloc_pages_vma (65 samples, 0.01%)</title><rect x="26.4270%" y="389" width="0.0120%" height="15" fill="rgb(205,131,53)" fg:x="142577" fg:w="65"/><text x="26.6770%" y="399.50"></text></g><g><title>handle_mm_fault (232 samples, 0.04%)</title><rect x="26.4029%" y="421" width="0.0430%" height="15" fill="rgb(209,50,29)" fg:x="142447" fg:w="232"/><text x="26.6529%" y="431.50"></text></g><g><title>wp_page_copy (106 samples, 0.02%)</title><rect x="26.4262%" y="405" width="0.0196%" height="15" fill="rgb(245,86,46)" fg:x="142573" fg:w="106"/><text x="26.6762%" y="415.50"></text></g><g><title>do_user_addr_fault (347 samples, 0.06%)</title><rect x="26.3818%" y="437" width="0.0643%" height="15" fill="rgb(235,66,46)" fg:x="142333" fg:w="347"/><text x="26.6318%" y="447.50"></text></g><g><title>exc_page_fault (355 samples, 0.07%)</title><rect x="26.3805%" y="453" width="0.0658%" height="15" fill="rgb(232,148,31)" fg:x="142326" fg:w="355"/><text x="26.6305%" y="463.50"></text></g><g><title>asm_exc_page_fault (488 samples, 0.09%)</title><rect x="26.3562%" y="469" width="0.0905%" height="15" fill="rgb(217,149,8)" fg:x="142195" fg:w="488"/><text x="26.6062%" y="479.50"></text></g><g><title>__put_user_nocheck_4 (514 samples, 0.10%)</title><rect x="26.3515%" y="485" width="0.0953%" height="15" fill="rgb(209,183,11)" fg:x="142170" fg:w="514"/><text x="26.6015%" y="495.50"></text></g><g><title>__mmdrop (105 samples, 0.02%)</title><rect x="26.4755%" y="469" width="0.0195%" height="15" fill="rgb(208,55,20)" fg:x="142839" fg:w="105"/><text x="26.7255%" y="479.50"></text></g><g><title>__perf_event_task_sched_in (7,738 samples, 1.43%)</title><rect x="26.4950%" y="469" width="1.4343%" height="15" fill="rgb(218,39,14)" fg:x="142944" fg:w="7738"/><text x="26.7450%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (7,585 samples, 1.41%)</title><rect x="26.5234%" y="453" width="1.4059%" height="15" fill="rgb(216,169,33)" fg:x="143097" fg:w="7585"/><text x="26.7734%" y="463.50"></text></g><g><title>native_write_msr (7,515 samples, 1.39%)</title><rect x="26.5363%" y="437" width="1.3929%" height="15" fill="rgb(233,80,24)" fg:x="143167" fg:w="7515"/><text x="26.7863%" y="447.50"></text></g><g><title>__wake_up_common (80 samples, 0.01%)</title><rect x="27.9430%" y="309" width="0.0148%" height="15" fill="rgb(213,179,31)" fg:x="150756" fg:w="80"/><text x="28.1930%" y="319.50"></text></g><g><title>pollwake (79 samples, 0.01%)</title><rect x="27.9432%" y="293" width="0.0146%" height="15" fill="rgb(209,19,5)" fg:x="150757" fg:w="79"/><text x="28.1932%" y="303.50"></text></g><g><title>try_to_wake_up (79 samples, 0.01%)</title><rect x="27.9432%" y="277" width="0.0146%" height="15" fill="rgb(219,18,35)" fg:x="150757" fg:w="79"/><text x="28.1932%" y="287.50"></text></g><g><title>irq_work_run (91 samples, 0.02%)</title><rect x="27.9413%" y="405" width="0.0169%" height="15" fill="rgb(209,169,16)" fg:x="150747" fg:w="91"/><text x="28.1913%" y="415.50"></text></g><g><title>irq_work_run_list (89 samples, 0.02%)</title><rect x="27.9417%" y="389" width="0.0165%" height="15" fill="rgb(245,90,51)" fg:x="150749" fg:w="89"/><text x="28.1917%" y="399.50"></text></g><g><title>irq_work_single (88 samples, 0.02%)</title><rect x="27.9419%" y="373" width="0.0163%" height="15" fill="rgb(220,99,45)" fg:x="150750" fg:w="88"/><text x="28.1919%" y="383.50"></text></g><g><title>perf_pending_event (86 samples, 0.02%)</title><rect x="27.9422%" y="357" width="0.0159%" height="15" fill="rgb(249,89,25)" fg:x="150752" fg:w="86"/><text x="28.1922%" y="367.50"></text></g><g><title>perf_event_wakeup (83 samples, 0.02%)</title><rect x="27.9428%" y="341" width="0.0154%" height="15" fill="rgb(239,193,0)" fg:x="150755" fg:w="83"/><text x="28.1928%" y="351.50"></text></g><g><title>__wake_up_common_lock (83 samples, 0.02%)</title><rect x="27.9428%" y="325" width="0.0154%" height="15" fill="rgb(231,126,1)" fg:x="150755" fg:w="83"/><text x="28.1928%" y="335.50"></text></g><g><title>asm_call_sysvec_on_stack (97 samples, 0.02%)</title><rect x="27.9409%" y="437" width="0.0180%" height="15" fill="rgb(243,166,3)" fg:x="150745" fg:w="97"/><text x="28.1909%" y="447.50"></text></g><g><title>__sysvec_irq_work (96 samples, 0.02%)</title><rect x="27.9411%" y="421" width="0.0178%" height="15" fill="rgb(223,22,34)" fg:x="150746" fg:w="96"/><text x="28.1911%" y="431.50"></text></g><g><title>asm_sysvec_irq_work (151 samples, 0.03%)</title><rect x="27.9317%" y="469" width="0.0280%" height="15" fill="rgb(251,52,51)" fg:x="150695" fg:w="151"/><text x="28.1817%" y="479.50"></text></g><g><title>sysvec_irq_work (106 samples, 0.02%)</title><rect x="27.9400%" y="453" width="0.0196%" height="15" fill="rgb(221,165,28)" fg:x="150740" fg:w="106"/><text x="28.1900%" y="463.50"></text></g><g><title>put_task_stack (59 samples, 0.01%)</title><rect x="27.9687%" y="469" width="0.0109%" height="15" fill="rgb(218,121,47)" fg:x="150895" fg:w="59"/><text x="28.2187%" y="479.50"></text></g><g><title>schedule_tail (8,828 samples, 1.64%)</title><rect x="26.3452%" y="501" width="1.6363%" height="15" fill="rgb(209,120,9)" fg:x="142136" fg:w="8828"/><text x="26.5952%" y="511.50"></text></g><g><title>finish_task_switch (8,237 samples, 1.53%)</title><rect x="26.4548%" y="485" width="1.5267%" height="15" fill="rgb(236,68,12)" fg:x="142727" fg:w="8237"/><text x="26.7048%" y="495.50"></text></g><g><title>ret_from_fork (8,887 samples, 1.65%)</title><rect x="26.3430%" y="517" width="1.6472%" height="15" fill="rgb(225,194,26)" fg:x="142124" fg:w="8887"/><text x="26.5930%" y="527.50"></text></g><g><title>arch_fork (11,235 samples, 2.08%)</title><rect x="25.9086%" y="533" width="2.0824%" height="15" fill="rgb(231,84,39)" fg:x="139780" fg:w="11235"/><text x="26.1586%" y="543.50">a..</text></g><g><title>handle_mm_fault (158 samples, 0.03%)</title><rect x="27.9977%" y="485" width="0.0293%" height="15" fill="rgb(210,11,45)" fg:x="151051" fg:w="158"/><text x="28.2477%" y="495.50"></text></g><g><title>wp_page_copy (106 samples, 0.02%)</title><rect x="28.0073%" y="469" width="0.0196%" height="15" fill="rgb(224,54,52)" fg:x="151103" fg:w="106"/><text x="28.2573%" y="479.50"></text></g><g><title>asm_exc_page_fault (197 samples, 0.04%)</title><rect x="27.9910%" y="533" width="0.0365%" height="15" fill="rgb(238,102,14)" fg:x="151015" fg:w="197"/><text x="28.2410%" y="543.50"></text></g><g><title>exc_page_fault (196 samples, 0.04%)</title><rect x="27.9912%" y="517" width="0.0363%" height="15" fill="rgb(243,160,52)" fg:x="151016" fg:w="196"/><text x="28.2412%" y="527.50"></text></g><g><title>do_user_addr_fault (193 samples, 0.04%)</title><rect x="27.9917%" y="501" width="0.0358%" height="15" fill="rgb(216,114,19)" fg:x="151019" fg:w="193"/><text x="28.2417%" y="511.50"></text></g><g><title>__libc_fork (11,664 samples, 2.16%)</title><rect x="25.8691%" y="549" width="2.1619%" height="15" fill="rgb(244,166,37)" fg:x="139567" fg:w="11664"/><text x="26.1191%" y="559.50">_..</text></g><g><title>filemap_map_pages (135 samples, 0.03%)</title><rect x="28.0407%" y="485" width="0.0250%" height="15" fill="rgb(246,29,44)" fg:x="151283" fg:w="135"/><text x="28.2907%" y="495.50"></text></g><g><title>do_user_addr_fault (171 samples, 0.03%)</title><rect x="28.0344%" y="517" width="0.0317%" height="15" fill="rgb(215,56,53)" fg:x="151249" fg:w="171"/><text x="28.2844%" y="527.50"></text></g><g><title>handle_mm_fault (153 samples, 0.03%)</title><rect x="28.0377%" y="501" width="0.0284%" height="15" fill="rgb(217,60,2)" fg:x="151267" fg:w="153"/><text x="28.2877%" y="511.50"></text></g><g><title>asm_exc_page_fault (174 samples, 0.03%)</title><rect x="28.0340%" y="549" width="0.0323%" height="15" fill="rgb(207,26,24)" fg:x="151247" fg:w="174"/><text x="28.2840%" y="559.50"></text></g><g><title>exc_page_fault (172 samples, 0.03%)</title><rect x="28.0344%" y="533" width="0.0319%" height="15" fill="rgb(252,210,15)" fg:x="151249" fg:w="172"/><text x="28.2844%" y="543.50"></text></g><g><title>[dash] (25,967 samples, 4.81%)</title><rect x="23.2554%" y="565" width="4.8130%" height="15" fill="rgb(253,209,26)" fg:x="125466" fg:w="25967"/><text x="23.5054%" y="575.50">[dash]</text></g><g><title>__GI___close (77 samples, 0.01%)</title><rect x="28.0685%" y="565" width="0.0143%" height="15" fill="rgb(238,170,14)" fg:x="151433" fg:w="77"/><text x="28.3185%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.01%)</title><rect x="28.0896%" y="549" width="0.0148%" height="15" fill="rgb(216,178,15)" fg:x="151547" fg:w="80"/><text x="28.3396%" y="559.50"></text></g><g><title>do_syscall_64 (80 samples, 0.01%)</title><rect x="28.0896%" y="533" width="0.0148%" height="15" fill="rgb(250,197,2)" fg:x="151547" fg:w="80"/><text x="28.3396%" y="543.50"></text></g><g><title>__x64_sys_pipe (77 samples, 0.01%)</title><rect x="28.0901%" y="517" width="0.0143%" height="15" fill="rgb(212,70,42)" fg:x="151550" fg:w="77"/><text x="28.3401%" y="527.50"></text></g><g><title>do_pipe2 (76 samples, 0.01%)</title><rect x="28.0903%" y="501" width="0.0141%" height="15" fill="rgb(227,213,9)" fg:x="151551" fg:w="76"/><text x="28.3403%" y="511.50"></text></g><g><title>create_pipe_files (70 samples, 0.01%)</title><rect x="28.0914%" y="485" width="0.0130%" height="15" fill="rgb(245,99,25)" fg:x="151557" fg:w="70"/><text x="28.3414%" y="495.50"></text></g><g><title>__GI_pipe (82 samples, 0.02%)</title><rect x="28.0894%" y="565" width="0.0152%" height="15" fill="rgb(250,82,29)" fg:x="151546" fg:w="82"/><text x="28.3394%" y="575.50"></text></g><g><title>[dash] (26,195 samples, 4.86%)</title><rect x="23.2513%" y="581" width="4.8553%" height="15" fill="rgb(241,226,54)" fg:x="125444" fg:w="26195"/><text x="23.5013%" y="591.50">[dash]</text></g><g><title>[dash] (26,325 samples, 4.88%)</title><rect x="23.2461%" y="597" width="4.8794%" height="15" fill="rgb(221,99,41)" fg:x="125416" fg:w="26325"/><text x="23.4961%" y="607.50">[dash]</text></g><g><title>[dash] (26,510 samples, 4.91%)</title><rect x="23.2398%" y="613" width="4.9137%" height="15" fill="rgb(213,90,21)" fg:x="125382" fg:w="26510"/><text x="23.4898%" y="623.50">[dash]</text></g><g><title>__perf_event_task_sched_in (204 samples, 0.04%)</title><rect x="28.1626%" y="485" width="0.0378%" height="15" fill="rgb(205,208,24)" fg:x="151941" fg:w="204"/><text x="28.4126%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (201 samples, 0.04%)</title><rect x="28.1632%" y="469" width="0.0373%" height="15" fill="rgb(246,31,12)" fg:x="151944" fg:w="201"/><text x="28.4132%" y="479.50"></text></g><g><title>native_write_msr (201 samples, 0.04%)</title><rect x="28.1632%" y="453" width="0.0373%" height="15" fill="rgb(213,154,6)" fg:x="151944" fg:w="201"/><text x="28.4132%" y="463.50"></text></g><g><title>finish_task_switch (226 samples, 0.04%)</title><rect x="28.1617%" y="501" width="0.0419%" height="15" fill="rgb(222,163,29)" fg:x="151936" fg:w="226"/><text x="28.4117%" y="511.50"></text></g><g><title>schedule (237 samples, 0.04%)</title><rect x="28.1606%" y="533" width="0.0439%" height="15" fill="rgb(227,201,8)" fg:x="151930" fg:w="237"/><text x="28.4106%" y="543.50"></text></g><g><title>__schedule (237 samples, 0.04%)</title><rect x="28.1606%" y="517" width="0.0439%" height="15" fill="rgb(233,9,32)" fg:x="151930" fg:w="237"/><text x="28.4106%" y="527.50"></text></g><g><title>release_task (74 samples, 0.01%)</title><rect x="28.2078%" y="517" width="0.0137%" height="15" fill="rgb(217,54,24)" fg:x="152185" fg:w="74"/><text x="28.4578%" y="527.50"></text></g><g><title>do_syscall_64 (351 samples, 0.07%)</title><rect x="28.1576%" y="581" width="0.0651%" height="15" fill="rgb(235,192,0)" fg:x="151914" fg:w="351"/><text x="28.4076%" y="591.50"></text></g><g><title>kernel_wait4 (348 samples, 0.06%)</title><rect x="28.1582%" y="565" width="0.0645%" height="15" fill="rgb(235,45,9)" fg:x="151917" fg:w="348"/><text x="28.4082%" y="575.50"></text></g><g><title>do_wait (344 samples, 0.06%)</title><rect x="28.1589%" y="549" width="0.0638%" height="15" fill="rgb(246,42,40)" fg:x="151921" fg:w="344"/><text x="28.4089%" y="559.50"></text></g><g><title>wait_consider_task (98 samples, 0.02%)</title><rect x="28.2045%" y="533" width="0.0182%" height="15" fill="rgb(248,111,24)" fg:x="152167" fg:w="98"/><text x="28.4545%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (364 samples, 0.07%)</title><rect x="28.1574%" y="597" width="0.0675%" height="15" fill="rgb(249,65,22)" fg:x="151913" fg:w="364"/><text x="28.4074%" y="607.50"></text></g><g><title>__GI___wait4 (391 samples, 0.07%)</title><rect x="28.1543%" y="613" width="0.0725%" height="15" fill="rgb(238,111,51)" fg:x="151896" fg:w="391"/><text x="28.4043%" y="623.50"></text></g><g><title>filemap_map_pages (55 samples, 0.01%)</title><rect x="28.2312%" y="533" width="0.0102%" height="15" fill="rgb(250,118,22)" fg:x="152311" fg:w="55"/><text x="28.4812%" y="543.50"></text></g><g><title>asm_exc_page_fault (70 samples, 0.01%)</title><rect x="28.2286%" y="597" width="0.0130%" height="15" fill="rgb(234,84,26)" fg:x="152297" fg:w="70"/><text x="28.4786%" y="607.50"></text></g><g><title>exc_page_fault (70 samples, 0.01%)</title><rect x="28.2286%" y="581" width="0.0130%" height="15" fill="rgb(243,172,12)" fg:x="152297" fg:w="70"/><text x="28.4786%" y="591.50"></text></g><g><title>do_user_addr_fault (70 samples, 0.01%)</title><rect x="28.2286%" y="565" width="0.0130%" height="15" fill="rgb(236,150,49)" fg:x="152297" fg:w="70"/><text x="28.4786%" y="575.50"></text></g><g><title>handle_mm_fault (64 samples, 0.01%)</title><rect x="28.2297%" y="549" width="0.0119%" height="15" fill="rgb(225,197,26)" fg:x="152303" fg:w="64"/><text x="28.4797%" y="559.50"></text></g><g><title>__longjmp_chk (80 samples, 0.01%)</title><rect x="28.2271%" y="613" width="0.0148%" height="15" fill="rgb(214,17,42)" fg:x="152289" fg:w="80"/><text x="28.4771%" y="623.50"></text></g><g><title>handle_mm_fault (88 samples, 0.02%)</title><rect x="28.2453%" y="565" width="0.0163%" height="15" fill="rgb(224,165,40)" fg:x="152387" fg:w="88"/><text x="28.4953%" y="575.50"></text></g><g><title>wp_page_copy (72 samples, 0.01%)</title><rect x="28.2483%" y="549" width="0.0133%" height="15" fill="rgb(246,100,4)" fg:x="152403" fg:w="72"/><text x="28.4983%" y="559.50"></text></g><g><title>exc_page_fault (101 samples, 0.02%)</title><rect x="28.2431%" y="597" width="0.0187%" height="15" fill="rgb(222,103,0)" fg:x="152375" fg:w="101"/><text x="28.4931%" y="607.50"></text></g><g><title>do_user_addr_fault (100 samples, 0.02%)</title><rect x="28.2432%" y="581" width="0.0185%" height="15" fill="rgb(227,189,26)" fg:x="152376" fg:w="100"/><text x="28.4932%" y="591.50"></text></g><g><title>asm_exc_page_fault (108 samples, 0.02%)</title><rect x="28.2429%" y="613" width="0.0200%" height="15" fill="rgb(214,202,17)" fg:x="152374" fg:w="108"/><text x="28.4929%" y="623.50"></text></g><g><title>[dash] (27,159 samples, 5.03%)</title><rect x="23.2300%" y="629" width="5.0340%" height="15" fill="rgb(229,111,3)" fg:x="125329" fg:w="27159"/><text x="23.4800%" y="639.50">[dash]</text></g><g><title>asm_exc_page_fault (67 samples, 0.01%)</title><rect x="28.2731%" y="597" width="0.0124%" height="15" fill="rgb(229,172,15)" fg:x="152537" fg:w="67"/><text x="28.5231%" y="607.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="28.2731%" y="581" width="0.0124%" height="15" fill="rgb(230,224,35)" fg:x="152537" fg:w="67"/><text x="28.5231%" y="591.50"></text></g><g><title>do_user_addr_fault (67 samples, 0.01%)</title><rect x="28.2731%" y="565" width="0.0124%" height="15" fill="rgb(251,141,6)" fg:x="152537" fg:w="67"/><text x="28.5231%" y="575.50"></text></g><g><title>handle_mm_fault (61 samples, 0.01%)</title><rect x="28.2742%" y="549" width="0.0113%" height="15" fill="rgb(225,208,6)" fg:x="152543" fg:w="61"/><text x="28.5242%" y="559.50"></text></g><g><title>__run_fork_handlers (79 samples, 0.01%)</title><rect x="28.2716%" y="613" width="0.0146%" height="15" fill="rgb(246,181,16)" fg:x="152529" fg:w="79"/><text x="28.5216%" y="623.50"></text></g><g><title>filemap_map_pages (63 samples, 0.01%)</title><rect x="28.2955%" y="533" width="0.0117%" height="15" fill="rgb(227,129,36)" fg:x="152658" fg:w="63"/><text x="28.5455%" y="543.50"></text></g><g><title>handle_mm_fault (87 samples, 0.02%)</title><rect x="28.2937%" y="549" width="0.0161%" height="15" fill="rgb(248,117,24)" fg:x="152648" fg:w="87"/><text x="28.5437%" y="559.50"></text></g><g><title>exc_page_fault (101 samples, 0.02%)</title><rect x="28.2913%" y="581" width="0.0187%" height="15" fill="rgb(214,185,35)" fg:x="152635" fg:w="101"/><text x="28.5413%" y="591.50"></text></g><g><title>do_user_addr_fault (101 samples, 0.02%)</title><rect x="28.2913%" y="565" width="0.0187%" height="15" fill="rgb(236,150,34)" fg:x="152635" fg:w="101"/><text x="28.5413%" y="575.50"></text></g><g><title>asm_exc_page_fault (106 samples, 0.02%)</title><rect x="28.2907%" y="597" width="0.0196%" height="15" fill="rgb(243,228,27)" fg:x="152632" fg:w="106"/><text x="28.5407%" y="607.50"></text></g><g><title>anon_vma_clone (65 samples, 0.01%)</title><rect x="28.3589%" y="485" width="0.0120%" height="15" fill="rgb(245,77,44)" fg:x="153000" fg:w="65"/><text x="28.6089%" y="495.50"></text></g><g><title>kmem_cache_alloc (73 samples, 0.01%)</title><rect x="28.3717%" y="485" width="0.0135%" height="15" fill="rgb(235,214,42)" fg:x="153069" fg:w="73"/><text x="28.6217%" y="495.50"></text></g><g><title>anon_vma_fork (160 samples, 0.03%)</title><rect x="28.3559%" y="501" width="0.0297%" height="15" fill="rgb(221,74,3)" fg:x="152984" fg:w="160"/><text x="28.6059%" y="511.50"></text></g><g><title>copy_page_range (201 samples, 0.04%)</title><rect x="28.3858%" y="501" width="0.0373%" height="15" fill="rgb(206,121,29)" fg:x="153145" fg:w="201"/><text x="28.6358%" y="511.50"></text></g><g><title>mm_init (54 samples, 0.01%)</title><rect x="28.4279%" y="501" width="0.0100%" height="15" fill="rgb(249,131,53)" fg:x="153372" fg:w="54"/><text x="28.6779%" y="511.50"></text></g><g><title>vm_area_dup (129 samples, 0.02%)</title><rect x="28.4410%" y="501" width="0.0239%" height="15" fill="rgb(236,170,29)" fg:x="153443" fg:w="129"/><text x="28.6910%" y="511.50"></text></g><g><title>kmem_cache_alloc (84 samples, 0.02%)</title><rect x="28.4494%" y="485" width="0.0156%" height="15" fill="rgb(247,96,15)" fg:x="153488" fg:w="84"/><text x="28.6994%" y="495.50"></text></g><g><title>dup_mm (657 samples, 0.12%)</title><rect x="28.3452%" y="517" width="0.1218%" height="15" fill="rgb(211,210,7)" fg:x="152926" fg:w="657"/><text x="28.5952%" y="527.50"></text></g><g><title>allocate_fake_cpuc (57 samples, 0.01%)</title><rect x="28.5064%" y="421" width="0.0106%" height="15" fill="rgb(240,88,50)" fg:x="153796" fg:w="57"/><text x="28.7564%" y="431.50"></text></g><g><title>perf_try_init_event (111 samples, 0.02%)</title><rect x="28.5052%" y="453" width="0.0206%" height="15" fill="rgb(209,229,26)" fg:x="153789" fg:w="111"/><text x="28.7552%" y="463.50"></text></g><g><title>x86_pmu_event_init (109 samples, 0.02%)</title><rect x="28.5055%" y="437" width="0.0202%" height="15" fill="rgb(210,68,23)" fg:x="153791" fg:w="109"/><text x="28.7555%" y="447.50"></text></g><g><title>inherit_task_group.isra.0 (253 samples, 0.05%)</title><rect x="28.4792%" y="501" width="0.0469%" height="15" fill="rgb(229,180,13)" fg:x="153649" fg:w="253"/><text x="28.7292%" y="511.50"></text></g><g><title>inherit_event.constprop.0 (241 samples, 0.04%)</title><rect x="28.4814%" y="485" width="0.0447%" height="15" fill="rgb(236,53,44)" fg:x="153661" fg:w="241"/><text x="28.7314%" y="495.50"></text></g><g><title>perf_event_alloc (198 samples, 0.04%)</title><rect x="28.4894%" y="469" width="0.0367%" height="15" fill="rgb(244,214,29)" fg:x="153704" fg:w="198"/><text x="28.7394%" y="479.50"></text></g><g><title>perf_event_init_task (266 samples, 0.05%)</title><rect x="28.4779%" y="517" width="0.0493%" height="15" fill="rgb(220,75,29)" fg:x="153642" fg:w="266"/><text x="28.7279%" y="527.50"></text></g><g><title>copy_process (1,193 samples, 0.22%)</title><rect x="28.3113%" y="533" width="0.2211%" height="15" fill="rgb(214,183,37)" fg:x="152743" fg:w="1193"/><text x="28.5613%" y="543.50"></text></g><g><title>__do_sys_clone (1,273 samples, 0.24%)</title><rect x="28.3103%" y="565" width="0.2360%" height="15" fill="rgb(239,117,29)" fg:x="152738" fg:w="1273"/><text x="28.5603%" y="575.50"></text></g><g><title>kernel_clone (1,270 samples, 0.24%)</title><rect x="28.3109%" y="549" width="0.2354%" height="15" fill="rgb(237,171,35)" fg:x="152741" fg:w="1270"/><text x="28.5609%" y="559.50"></text></g><g><title>wake_up_new_task (75 samples, 0.01%)</title><rect x="28.5324%" y="533" width="0.0139%" height="15" fill="rgb(229,178,53)" fg:x="153936" fg:w="75"/><text x="28.7824%" y="543.50"></text></g><g><title>do_syscall_64 (1,274 samples, 0.24%)</title><rect x="28.3103%" y="581" width="0.2361%" height="15" fill="rgb(210,102,19)" fg:x="152738" fg:w="1274"/><text x="28.5603%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,275 samples, 0.24%)</title><rect x="28.3103%" y="597" width="0.2363%" height="15" fill="rgb(235,127,22)" fg:x="152738" fg:w="1275"/><text x="28.5603%" y="607.50"></text></g><g><title>get_page_from_freelist (67 samples, 0.01%)</title><rect x="28.5956%" y="437" width="0.0124%" height="15" fill="rgb(244,31,31)" fg:x="154277" fg:w="67"/><text x="28.8456%" y="447.50"></text></g><g><title>__alloc_pages_nodemask (95 samples, 0.02%)</title><rect x="28.5906%" y="453" width="0.0176%" height="15" fill="rgb(231,43,21)" fg:x="154250" fg:w="95"/><text x="28.8406%" y="463.50"></text></g><g><title>alloc_pages_vma (104 samples, 0.02%)</title><rect x="28.5895%" y="469" width="0.0193%" height="15" fill="rgb(217,131,35)" fg:x="154244" fg:w="104"/><text x="28.8395%" y="479.50"></text></g><g><title>handle_mm_fault (249 samples, 0.05%)</title><rect x="28.5782%" y="501" width="0.0462%" height="15" fill="rgb(221,149,4)" fg:x="154183" fg:w="249"/><text x="28.8282%" y="511.50"></text></g><g><title>wp_page_copy (192 samples, 0.04%)</title><rect x="28.5887%" y="485" width="0.0356%" height="15" fill="rgb(232,170,28)" fg:x="154240" fg:w="192"/><text x="28.8387%" y="495.50"></text></g><g><title>do_user_addr_fault (311 samples, 0.06%)</title><rect x="28.5672%" y="517" width="0.0576%" height="15" fill="rgb(238,56,10)" fg:x="154124" fg:w="311"/><text x="28.8172%" y="527.50"></text></g><g><title>asm_exc_page_fault (382 samples, 0.07%)</title><rect x="28.5545%" y="549" width="0.0708%" height="15" fill="rgb(235,196,14)" fg:x="154055" fg:w="382"/><text x="28.8045%" y="559.50"></text></g><g><title>exc_page_fault (315 samples, 0.06%)</title><rect x="28.5669%" y="533" width="0.0584%" height="15" fill="rgb(216,45,48)" fg:x="154122" fg:w="315"/><text x="28.8169%" y="543.50"></text></g><g><title>__put_user_nocheck_4 (393 samples, 0.07%)</title><rect x="28.5528%" y="565" width="0.0728%" height="15" fill="rgb(238,213,17)" fg:x="154046" fg:w="393"/><text x="28.8028%" y="575.50"></text></g><g><title>__mmdrop (75 samples, 0.01%)</title><rect x="28.6423%" y="549" width="0.0139%" height="15" fill="rgb(212,13,2)" fg:x="154529" fg:w="75"/><text x="28.8923%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (4,920 samples, 0.91%)</title><rect x="28.6562%" y="549" width="0.9119%" height="15" fill="rgb(240,114,20)" fg:x="154604" fg:w="4920"/><text x="28.9062%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (4,832 samples, 0.90%)</title><rect x="28.6725%" y="533" width="0.8956%" height="15" fill="rgb(228,41,40)" fg:x="154692" fg:w="4832"/><text x="28.9225%" y="543.50"></text></g><g><title>native_write_msr (4,782 samples, 0.89%)</title><rect x="28.6818%" y="517" width="0.8864%" height="15" fill="rgb(244,132,35)" fg:x="154742" fg:w="4782"/><text x="28.9318%" y="527.50"></text></g><g><title>irq_work_run (59 samples, 0.01%)</title><rect x="29.5759%" y="485" width="0.0109%" height="15" fill="rgb(253,189,4)" fg:x="159566" fg:w="59"/><text x="29.8259%" y="495.50"></text></g><g><title>irq_work_run_list (59 samples, 0.01%)</title><rect x="29.5759%" y="469" width="0.0109%" height="15" fill="rgb(224,37,19)" fg:x="159566" fg:w="59"/><text x="29.8259%" y="479.50"></text></g><g><title>irq_work_single (58 samples, 0.01%)</title><rect x="29.5761%" y="453" width="0.0108%" height="15" fill="rgb(235,223,18)" fg:x="159567" fg:w="58"/><text x="29.8261%" y="463.50"></text></g><g><title>perf_pending_event (56 samples, 0.01%)</title><rect x="29.5765%" y="437" width="0.0104%" height="15" fill="rgb(235,163,25)" fg:x="159569" fg:w="56"/><text x="29.8265%" y="447.50"></text></g><g><title>asm_call_sysvec_on_stack (64 samples, 0.01%)</title><rect x="29.5756%" y="517" width="0.0119%" height="15" fill="rgb(217,145,28)" fg:x="159564" fg:w="64"/><text x="29.8256%" y="527.50"></text></g><g><title>__sysvec_irq_work (62 samples, 0.01%)</title><rect x="29.5759%" y="501" width="0.0115%" height="15" fill="rgb(223,223,32)" fg:x="159566" fg:w="62"/><text x="29.8259%" y="511.50"></text></g><g><title>asm_sysvec_irq_work (97 samples, 0.02%)</title><rect x="29.5702%" y="549" width="0.0180%" height="15" fill="rgb(227,189,39)" fg:x="159535" fg:w="97"/><text x="29.8202%" y="559.50"></text></g><g><title>sysvec_irq_work (70 samples, 0.01%)</title><rect x="29.5752%" y="533" width="0.0130%" height="15" fill="rgb(248,10,22)" fg:x="159562" fg:w="70"/><text x="29.8252%" y="543.50"></text></g><g><title>schedule_tail (5,679 samples, 1.05%)</title><rect x="28.5509%" y="581" width="1.0526%" height="15" fill="rgb(248,46,39)" fg:x="154036" fg:w="5679"/><text x="28.8009%" y="591.50"></text></g><g><title>finish_task_switch (5,259 samples, 0.97%)</title><rect x="28.6288%" y="565" width="0.9748%" height="15" fill="rgb(248,113,48)" fg:x="154456" fg:w="5259"/><text x="28.8788%" y="575.50"></text></g><g><title>arch_fork (7,117 samples, 1.32%)</title><rect x="28.2863%" y="613" width="1.3192%" height="15" fill="rgb(245,16,25)" fg:x="152608" fg:w="7117"/><text x="28.5363%" y="623.50"></text></g><g><title>ret_from_fork (5,693 samples, 1.06%)</title><rect x="28.5502%" y="597" width="1.0552%" height="15" fill="rgb(249,152,16)" fg:x="154032" fg:w="5693"/><text x="28.8002%" y="607.50"></text></g><g><title>handle_mm_fault (107 samples, 0.02%)</title><rect x="29.6093%" y="565" width="0.0198%" height="15" fill="rgb(250,16,1)" fg:x="159746" fg:w="107"/><text x="29.8593%" y="575.50"></text></g><g><title>wp_page_copy (81 samples, 0.02%)</title><rect x="29.6141%" y="549" width="0.0150%" height="15" fill="rgb(249,138,3)" fg:x="159772" fg:w="81"/><text x="29.8641%" y="559.50"></text></g><g><title>asm_exc_page_fault (129 samples, 0.02%)</title><rect x="29.6054%" y="613" width="0.0239%" height="15" fill="rgb(227,71,41)" fg:x="159725" fg:w="129"/><text x="29.8554%" y="623.50"></text></g><g><title>exc_page_fault (128 samples, 0.02%)</title><rect x="29.6056%" y="597" width="0.0237%" height="15" fill="rgb(209,184,23)" fg:x="159726" fg:w="128"/><text x="29.8556%" y="607.50"></text></g><g><title>do_user_addr_fault (127 samples, 0.02%)</title><rect x="29.6058%" y="581" width="0.0235%" height="15" fill="rgb(223,215,31)" fg:x="159727" fg:w="127"/><text x="29.8558%" y="591.50"></text></g><g><title>__libc_fork (7,372 samples, 1.37%)</title><rect x="28.2647%" y="629" width="1.3664%" height="15" fill="rgb(210,146,28)" fg:x="152492" fg:w="7372"/><text x="28.5147%" y="639.50"></text></g><g><title>exc_page_fault (82 samples, 0.02%)</title><rect x="29.6323%" y="613" width="0.0152%" height="15" fill="rgb(209,183,41)" fg:x="159870" fg:w="82"/><text x="29.8823%" y="623.50"></text></g><g><title>do_user_addr_fault (81 samples, 0.02%)</title><rect x="29.6325%" y="597" width="0.0150%" height="15" fill="rgb(209,224,45)" fg:x="159871" fg:w="81"/><text x="29.8825%" y="607.50"></text></g><g><title>handle_mm_fault (71 samples, 0.01%)</title><rect x="29.6343%" y="581" width="0.0132%" height="15" fill="rgb(224,209,51)" fg:x="159881" fg:w="71"/><text x="29.8843%" y="591.50"></text></g><g><title>filemap_map_pages (63 samples, 0.01%)</title><rect x="29.6358%" y="565" width="0.0117%" height="15" fill="rgb(223,17,39)" fg:x="159889" fg:w="63"/><text x="29.8858%" y="575.50"></text></g><g><title>asm_exc_page_fault (84 samples, 0.02%)</title><rect x="29.6321%" y="629" width="0.0156%" height="15" fill="rgb(234,204,37)" fg:x="159869" fg:w="84"/><text x="29.8821%" y="639.50"></text></g><g><title>[dash] (34,671 samples, 6.43%)</title><rect x="23.2228%" y="645" width="6.4264%" height="15" fill="rgb(236,120,5)" fg:x="125290" fg:w="34671"/><text x="23.4728%" y="655.50">[dash]</text></g><g><title>[dash] (34,818 samples, 6.45%)</title><rect x="23.2169%" y="661" width="6.4536%" height="15" fill="rgb(248,97,27)" fg:x="125258" fg:w="34818"/><text x="23.4669%" y="671.50">[dash]</text></g><g><title>__dentry_kill (58 samples, 0.01%)</title><rect x="29.6782%" y="565" width="0.0108%" height="15" fill="rgb(240,66,17)" fg:x="160118" fg:w="58"/><text x="29.9282%" y="575.50"></text></g><g><title>pipe_release (69 samples, 0.01%)</title><rect x="29.6916%" y="565" width="0.0128%" height="15" fill="rgb(210,79,3)" fg:x="160190" fg:w="69"/><text x="29.9416%" y="575.50"></text></g><g><title>__fput (154 samples, 0.03%)</title><rect x="29.6771%" y="581" width="0.0285%" height="15" fill="rgb(214,176,27)" fg:x="160112" fg:w="154"/><text x="29.9271%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (180 samples, 0.03%)</title><rect x="29.6731%" y="645" width="0.0334%" height="15" fill="rgb(235,185,3)" fg:x="160090" fg:w="180"/><text x="29.9231%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (168 samples, 0.03%)</title><rect x="29.6753%" y="629" width="0.0311%" height="15" fill="rgb(227,24,12)" fg:x="160102" fg:w="168"/><text x="29.9253%" y="639.50"></text></g><g><title>exit_to_user_mode_prepare (168 samples, 0.03%)</title><rect x="29.6753%" y="613" width="0.0311%" height="15" fill="rgb(252,169,48)" fg:x="160102" fg:w="168"/><text x="29.9253%" y="623.50"></text></g><g><title>task_work_run (160 samples, 0.03%)</title><rect x="29.6768%" y="597" width="0.0297%" height="15" fill="rgb(212,65,1)" fg:x="160110" fg:w="160"/><text x="29.9268%" y="607.50"></text></g><g><title>__GI___close (193 samples, 0.04%)</title><rect x="29.6714%" y="661" width="0.0358%" height="15" fill="rgb(242,39,24)" fg:x="160081" fg:w="193"/><text x="29.9214%" y="671.50"></text></g><g><title>__free_pages_ok (75 samples, 0.01%)</title><rect x="29.7807%" y="485" width="0.0139%" height="15" fill="rgb(249,32,23)" fg:x="160671" fg:w="75"/><text x="30.0307%" y="495.50"></text></g><g><title>__mmdrop (126 samples, 0.02%)</title><rect x="29.7767%" y="501" width="0.0234%" height="15" fill="rgb(251,195,23)" fg:x="160649" fg:w="126"/><text x="30.0267%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (5,303 samples, 0.98%)</title><rect x="29.8000%" y="501" width="0.9829%" height="15" fill="rgb(236,174,8)" fg:x="160775" fg:w="5303"/><text x="30.0500%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (5,261 samples, 0.98%)</title><rect x="29.8078%" y="485" width="0.9751%" height="15" fill="rgb(220,197,8)" fg:x="160817" fg:w="5261"/><text x="30.0578%" y="495.50"></text></g><g><title>native_write_msr (5,230 samples, 0.97%)</title><rect x="29.8136%" y="469" width="0.9694%" height="15" fill="rgb(240,108,37)" fg:x="160848" fg:w="5230"/><text x="30.0636%" y="479.50"></text></g><g><title>asm_call_sysvec_on_stack (55 samples, 0.01%)</title><rect x="30.7918%" y="469" width="0.0102%" height="15" fill="rgb(232,176,24)" fg:x="166126" fg:w="55"/><text x="31.0418%" y="479.50"></text></g><g><title>asm_sysvec_irq_work (91 samples, 0.02%)</title><rect x="30.7861%" y="501" width="0.0169%" height="15" fill="rgb(243,35,29)" fg:x="166095" fg:w="91"/><text x="31.0361%" y="511.50"></text></g><g><title>sysvec_irq_work (64 samples, 0.01%)</title><rect x="30.7911%" y="485" width="0.0119%" height="15" fill="rgb(210,37,18)" fg:x="166122" fg:w="64"/><text x="31.0411%" y="495.50"></text></g><g><title>asm_sysvec_reschedule_ipi (59 samples, 0.01%)</title><rect x="30.8030%" y="501" width="0.0109%" height="15" fill="rgb(224,184,40)" fg:x="166186" fg:w="59"/><text x="31.0530%" y="511.50"></text></g><g><title>kmem_cache_free (67 samples, 0.01%)</title><rect x="30.8150%" y="501" width="0.0124%" height="15" fill="rgb(236,39,29)" fg:x="166251" fg:w="67"/><text x="31.0650%" y="511.50"></text></g><g><title>put_task_stack (95 samples, 0.02%)</title><rect x="30.8317%" y="501" width="0.0176%" height="15" fill="rgb(232,48,39)" fg:x="166341" fg:w="95"/><text x="31.0817%" y="511.50"></text></g><g><title>finish_task_switch (5,868 samples, 1.09%)</title><rect x="29.7639%" y="517" width="1.0876%" height="15" fill="rgb(236,34,42)" fg:x="160580" fg:w="5868"/><text x="30.0139%" y="527.50"></text></g><g><title>schedule (6,001 samples, 1.11%)</title><rect x="29.7491%" y="549" width="1.1123%" height="15" fill="rgb(243,106,37)" fg:x="160500" fg:w="6001"/><text x="29.9991%" y="559.50"></text></g><g><title>__schedule (5,998 samples, 1.11%)</title><rect x="29.7496%" y="533" width="1.1117%" height="15" fill="rgb(218,96,6)" fg:x="160503" fg:w="5998"/><text x="29.9996%" y="543.50"></text></g><g><title>new_sync_read (6,144 samples, 1.14%)</title><rect x="29.7263%" y="581" width="1.1388%" height="15" fill="rgb(235,130,12)" fg:x="160377" fg:w="6144"/><text x="29.9763%" y="591.50"></text></g><g><title>pipe_read (6,137 samples, 1.14%)</title><rect x="29.7276%" y="565" width="1.1375%" height="15" fill="rgb(231,95,0)" fg:x="160384" fg:w="6137"/><text x="29.9776%" y="575.50"></text></g><g><title>do_syscall_64 (6,213 samples, 1.15%)</title><rect x="29.7162%" y="629" width="1.1516%" height="15" fill="rgb(228,12,23)" fg:x="160323" fg:w="6213"/><text x="29.9662%" y="639.50"></text></g><g><title>ksys_read (6,198 samples, 1.15%)</title><rect x="29.7190%" y="613" width="1.1488%" height="15" fill="rgb(216,12,1)" fg:x="160338" fg:w="6198"/><text x="29.9690%" y="623.50"></text></g><g><title>vfs_read (6,188 samples, 1.15%)</title><rect x="29.7209%" y="597" width="1.1470%" height="15" fill="rgb(219,59,3)" fg:x="160348" fg:w="6188"/><text x="29.9709%" y="607.50"></text></g><g><title>copy_fpstate_to_sigframe (71 samples, 0.01%)</title><rect x="30.8706%" y="565" width="0.0132%" height="15" fill="rgb(215,208,46)" fg:x="166551" fg:w="71"/><text x="31.1206%" y="575.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (73 samples, 0.01%)</title><rect x="30.8706%" y="581" width="0.0135%" height="15" fill="rgb(254,224,29)" fg:x="166551" fg:w="73"/><text x="31.1206%" y="591.50"></text></g><g><title>arch_do_signal (108 samples, 0.02%)</title><rect x="30.8684%" y="597" width="0.0200%" height="15" fill="rgb(232,14,29)" fg:x="166539" fg:w="108"/><text x="31.1184%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,345 samples, 1.18%)</title><rect x="29.7162%" y="645" width="1.1761%" height="15" fill="rgb(208,45,52)" fg:x="160323" fg:w="6345"/><text x="29.9662%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (132 samples, 0.02%)</title><rect x="30.8678%" y="629" width="0.0245%" height="15" fill="rgb(234,191,28)" fg:x="166536" fg:w="132"/><text x="31.1178%" y="639.50"></text></g><g><title>exit_to_user_mode_prepare (130 samples, 0.02%)</title><rect x="30.8682%" y="613" width="0.0241%" height="15" fill="rgb(244,67,43)" fg:x="166538" fg:w="130"/><text x="31.1182%" y="623.50"></text></g><g><title>killpg (92 samples, 0.02%)</title><rect x="30.8927%" y="645" width="0.0171%" height="15" fill="rgb(236,189,24)" fg:x="166670" fg:w="92"/><text x="31.1427%" y="655.50"></text></g><g><title>[dash] (92 samples, 0.02%)</title><rect x="30.8927%" y="629" width="0.0171%" height="15" fill="rgb(239,214,33)" fg:x="166670" fg:w="92"/><text x="31.1427%" y="639.50"></text></g><g><title>__GI___libc_read (6,485 samples, 1.20%)</title><rect x="29.7086%" y="661" width="1.2020%" height="15" fill="rgb(226,176,41)" fg:x="160282" fg:w="6485"/><text x="29.9586%" y="671.50"></text></g><g><title>sched_exec (58 samples, 0.01%)</title><rect x="30.9197%" y="565" width="0.0108%" height="15" fill="rgb(248,47,8)" fg:x="166816" fg:w="58"/><text x="31.1697%" y="575.50"></text></g><g><title>stop_one_cpu (56 samples, 0.01%)</title><rect x="30.9201%" y="549" width="0.0104%" height="15" fill="rgb(218,81,44)" fg:x="166818" fg:w="56"/><text x="31.1701%" y="559.50"></text></g><g><title>_cond_resched (56 samples, 0.01%)</title><rect x="30.9201%" y="533" width="0.0104%" height="15" fill="rgb(213,98,6)" fg:x="166818" fg:w="56"/><text x="31.1701%" y="543.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="30.9201%" y="517" width="0.0104%" height="15" fill="rgb(222,85,22)" fg:x="166818" fg:w="56"/><text x="31.1701%" y="527.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="30.9201%" y="501" width="0.0104%" height="15" fill="rgb(239,46,39)" fg:x="166818" fg:w="56"/><text x="31.1701%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="30.9205%" y="485" width="0.0100%" height="15" fill="rgb(237,12,29)" fg:x="166820" fg:w="54"/><text x="31.1705%" y="495.50"></text></g><g><title>bprm_execve (105 samples, 0.02%)</title><rect x="30.9144%" y="581" width="0.0195%" height="15" fill="rgb(214,77,8)" fg:x="166787" fg:w="105"/><text x="31.1644%" y="591.50"></text></g><g><title>__GI_execve (122 samples, 0.02%)</title><rect x="30.9129%" y="661" width="0.0226%" height="15" fill="rgb(217,168,37)" fg:x="166779" fg:w="122"/><text x="31.1629%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.02%)</title><rect x="30.9129%" y="645" width="0.0226%" height="15" fill="rgb(221,217,23)" fg:x="166779" fg:w="122"/><text x="31.1629%" y="655.50"></text></g><g><title>do_syscall_64 (122 samples, 0.02%)</title><rect x="30.9129%" y="629" width="0.0226%" height="15" fill="rgb(243,229,36)" fg:x="166779" fg:w="122"/><text x="31.1629%" y="639.50"></text></g><g><title>__x64_sys_execve (122 samples, 0.02%)</title><rect x="30.9129%" y="613" width="0.0226%" height="15" fill="rgb(251,163,40)" fg:x="166779" fg:w="122"/><text x="31.1629%" y="623.50"></text></g><g><title>do_execveat_common (122 samples, 0.02%)</title><rect x="30.9129%" y="597" width="0.0226%" height="15" fill="rgb(237,222,12)" fg:x="166779" fg:w="122"/><text x="31.1629%" y="607.50"></text></g><g><title>[dash] (41,731 samples, 7.73%)</title><rect x="23.2063%" y="677" width="7.7349%" height="15" fill="rgb(248,132,6)" fg:x="125201" fg:w="41731"/><text x="23.4563%" y="687.50">[dash]</text></g><g><title>[dash] (41,762 samples, 7.74%)</title><rect x="23.2037%" y="693" width="7.7407%" height="15" fill="rgb(227,167,50)" fg:x="125187" fg:w="41762"/><text x="23.4537%" y="703.50">[dash]</text></g><g><title>[dash] (41,799 samples, 7.75%)</title><rect x="23.1998%" y="709" width="7.7475%" height="15" fill="rgb(242,84,37)" fg:x="125166" fg:w="41799"/><text x="23.4498%" y="719.50">[dash]</text></g><g><title>[dash] (41,813 samples, 7.75%)</title><rect x="23.1983%" y="725" width="7.7501%" height="15" fill="rgb(212,4,50)" fg:x="125158" fg:w="41813"/><text x="23.4483%" y="735.50">[dash]</text></g><g><title>[dash] (41,865 samples, 7.76%)</title><rect x="23.1972%" y="741" width="7.7598%" height="15" fill="rgb(230,228,32)" fg:x="125152" fg:w="41865"/><text x="23.4472%" y="751.50">[dash]</text></g><g><title>[dash] (41,876 samples, 7.76%)</title><rect x="23.1954%" y="757" width="7.7618%" height="15" fill="rgb(248,217,23)" fg:x="125142" fg:w="41876"/><text x="23.4454%" y="767.50">[dash]</text></g><g><title>__GI__exit (57 samples, 0.01%)</title><rect x="30.9587%" y="757" width="0.0106%" height="15" fill="rgb(238,197,32)" fg:x="167026" fg:w="57"/><text x="31.2087%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="30.9588%" y="741" width="0.0104%" height="15" fill="rgb(236,106,1)" fg:x="167027" fg:w="56"/><text x="31.2088%" y="751.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="30.9588%" y="725" width="0.0104%" height="15" fill="rgb(219,228,13)" fg:x="167027" fg:w="56"/><text x="31.2088%" y="735.50"></text></g><g><title>__x64_sys_exit_group (56 samples, 0.01%)</title><rect x="30.9588%" y="709" width="0.0104%" height="15" fill="rgb(238,30,35)" fg:x="167027" fg:w="56"/><text x="31.2088%" y="719.50"></text></g><g><title>do_group_exit (56 samples, 0.01%)</title><rect x="30.9588%" y="693" width="0.0104%" height="15" fill="rgb(236,70,23)" fg:x="167027" fg:w="56"/><text x="31.2088%" y="703.50"></text></g><g><title>do_exit (55 samples, 0.01%)</title><rect x="30.9590%" y="677" width="0.0102%" height="15" fill="rgb(249,104,48)" fg:x="167028" fg:w="55"/><text x="31.2090%" y="687.50"></text></g><g><title>[dash] (41,945 samples, 7.77%)</title><rect x="23.1952%" y="773" width="7.7746%" height="15" fill="rgb(254,117,50)" fg:x="125141" fg:w="41945"/><text x="23.4452%" y="783.50">[dash]</text></g><g><title>[dash] (41,974 samples, 7.78%)</title><rect x="23.1943%" y="789" width="7.7800%" height="15" fill="rgb(223,152,4)" fg:x="125136" fg:w="41974"/><text x="23.4443%" y="799.50">[dash]</text></g><g><title>__libc_start_main (41,975 samples, 7.78%)</title><rect x="23.1943%" y="805" width="7.7802%" height="15" fill="rgb(245,6,2)" fg:x="125136" fg:w="41975"/><text x="23.4443%" y="815.50">__libc_star..</text></g><g><title>[dash] (41,999 samples, 7.78%)</title><rect x="23.1902%" y="821" width="7.7846%" height="15" fill="rgb(249,150,24)" fg:x="125114" fg:w="41999"/><text x="23.4402%" y="831.50">[dash]</text></g><g><title>[unknown] (132 samples, 0.02%)</title><rect x="30.9748%" y="821" width="0.0245%" height="15" fill="rgb(228,185,42)" fg:x="167113" fg:w="132"/><text x="31.2248%" y="831.50"></text></g><g><title>[ld-2.31.so] (114 samples, 0.02%)</title><rect x="31.0035%" y="757" width="0.0211%" height="15" fill="rgb(226,39,33)" fg:x="167268" fg:w="114"/><text x="31.2535%" y="767.50"></text></g><g><title>_dl_start_final (125 samples, 0.02%)</title><rect x="31.0035%" y="789" width="0.0232%" height="15" fill="rgb(221,166,19)" fg:x="167268" fg:w="125"/><text x="31.2535%" y="799.50"></text></g><g><title>_dl_sysdep_start (125 samples, 0.02%)</title><rect x="31.0035%" y="773" width="0.0232%" height="15" fill="rgb(209,109,2)" fg:x="167268" fg:w="125"/><text x="31.2535%" y="783.50"></text></g><g><title>_dl_start (129 samples, 0.02%)</title><rect x="31.0035%" y="805" width="0.0239%" height="15" fill="rgb(252,216,26)" fg:x="167268" fg:w="129"/><text x="31.2535%" y="815.50"></text></g><g><title>_start (133 samples, 0.02%)</title><rect x="31.0033%" y="821" width="0.0247%" height="15" fill="rgb(227,173,36)" fg:x="167267" fg:w="133"/><text x="31.2533%" y="831.50"></text></g><g><title>asm_exc_page_fault (571 samples, 0.11%)</title><rect x="31.0280%" y="821" width="0.1058%" height="15" fill="rgb(209,90,7)" fg:x="167400" fg:w="571"/><text x="31.2780%" y="831.50"></text></g><g><title>kmem_cache_free (70 samples, 0.01%)</title><rect x="31.1575%" y="645" width="0.0130%" height="15" fill="rgb(250,194,11)" fg:x="168099" fg:w="70"/><text x="31.4075%" y="655.50"></text></g><g><title>unlink_anon_vmas (131 samples, 0.02%)</title><rect x="31.1468%" y="661" width="0.0243%" height="15" fill="rgb(220,72,50)" fg:x="168041" fg:w="131"/><text x="31.3968%" y="671.50"></text></g><g><title>free_pgtables (189 samples, 0.04%)</title><rect x="31.1442%" y="677" width="0.0350%" height="15" fill="rgb(222,106,48)" fg:x="168027" fg:w="189"/><text x="31.3942%" y="687.50"></text></g><g><title>remove_vma (72 samples, 0.01%)</title><rect x="31.1837%" y="677" width="0.0133%" height="15" fill="rgb(216,220,45)" fg:x="168240" fg:w="72"/><text x="31.4337%" y="687.50"></text></g><g><title>tlb_finish_mmu (104 samples, 0.02%)</title><rect x="31.1970%" y="677" width="0.0193%" height="15" fill="rgb(234,112,18)" fg:x="168312" fg:w="104"/><text x="31.4470%" y="687.50"></text></g><g><title>release_pages (73 samples, 0.01%)</title><rect x="31.2028%" y="661" width="0.0135%" height="15" fill="rgb(206,179,9)" fg:x="168343" fg:w="73"/><text x="31.4528%" y="671.50"></text></g><g><title>page_remove_rmap (73 samples, 0.01%)</title><rect x="31.2524%" y="645" width="0.0135%" height="15" fill="rgb(215,115,40)" fg:x="168611" fg:w="73"/><text x="31.5024%" y="655.50"></text></g><g><title>unmap_page_range (283 samples, 0.05%)</title><rect x="31.2172%" y="661" width="0.0525%" height="15" fill="rgb(222,69,34)" fg:x="168421" fg:w="283"/><text x="31.4672%" y="671.50"></text></g><g><title>exit_mmap (689 samples, 0.13%)</title><rect x="31.1431%" y="693" width="0.1277%" height="15" fill="rgb(209,161,10)" fg:x="168021" fg:w="689"/><text x="31.3931%" y="703.50"></text></g><g><title>unmap_vmas (294 samples, 0.05%)</title><rect x="31.2163%" y="677" width="0.0545%" height="15" fill="rgb(217,6,38)" fg:x="168416" fg:w="294"/><text x="31.4663%" y="687.50"></text></g><g><title>mmput (702 samples, 0.13%)</title><rect x="31.1427%" y="709" width="0.1301%" height="15" fill="rgb(229,229,48)" fg:x="168019" fg:w="702"/><text x="31.3927%" y="719.50"></text></g><g><title>begin_new_exec (762 samples, 0.14%)</title><rect x="31.1360%" y="725" width="0.1412%" height="15" fill="rgb(225,21,28)" fg:x="167983" fg:w="762"/><text x="31.3860%" y="735.50"></text></g><g><title>__x64_sys_execve (811 samples, 0.15%)</title><rect x="31.1355%" y="789" width="0.1503%" height="15" fill="rgb(206,33,13)" fg:x="167980" fg:w="811"/><text x="31.3855%" y="799.50"></text></g><g><title>do_execveat_common (811 samples, 0.15%)</title><rect x="31.1355%" y="773" width="0.1503%" height="15" fill="rgb(242,178,17)" fg:x="167980" fg:w="811"/><text x="31.3855%" y="783.50"></text></g><g><title>bprm_execve (811 samples, 0.15%)</title><rect x="31.1355%" y="757" width="0.1503%" height="15" fill="rgb(220,162,5)" fg:x="167980" fg:w="811"/><text x="31.3855%" y="767.50"></text></g><g><title>load_elf_binary (811 samples, 0.15%)</title><rect x="31.1355%" y="741" width="0.1503%" height="15" fill="rgb(210,33,43)" fg:x="167980" fg:w="811"/><text x="31.3855%" y="751.50"></text></g><g><title>__put_anon_vma (56 samples, 0.01%)</title><rect x="31.3166%" y="677" width="0.0104%" height="15" fill="rgb(216,116,54)" fg:x="168957" fg:w="56"/><text x="31.5666%" y="687.50"></text></g><g><title>kmem_cache_free (128 samples, 0.02%)</title><rect x="31.3357%" y="677" width="0.0237%" height="15" fill="rgb(249,92,24)" fg:x="169060" fg:w="128"/><text x="31.5857%" y="687.50"></text></g><g><title>unlink_anon_vmas (280 samples, 0.05%)</title><rect x="31.3090%" y="693" width="0.0519%" height="15" fill="rgb(231,189,14)" fg:x="168916" fg:w="280"/><text x="31.5590%" y="703.50"></text></g><g><title>unlink_file_vma (68 samples, 0.01%)</title><rect x="31.3609%" y="693" width="0.0126%" height="15" fill="rgb(230,8,41)" fg:x="169196" fg:w="68"/><text x="31.6109%" y="703.50"></text></g><g><title>free_pgtables (398 samples, 0.07%)</title><rect x="31.3019%" y="709" width="0.0738%" height="15" fill="rgb(249,7,27)" fg:x="168878" fg:w="398"/><text x="31.5519%" y="719.50"></text></g><g><title>kmem_cache_free (182 samples, 0.03%)</title><rect x="31.3937%" y="693" width="0.0337%" height="15" fill="rgb(232,86,5)" fg:x="169373" fg:w="182"/><text x="31.6437%" y="703.50"></text></g><g><title>remove_vma (227 samples, 0.04%)</title><rect x="31.3855%" y="709" width="0.0421%" height="15" fill="rgb(224,175,18)" fg:x="169329" fg:w="227"/><text x="31.6355%" y="719.50"></text></g><g><title>free_unref_page_list (61 samples, 0.01%)</title><rect x="31.4699%" y="677" width="0.0113%" height="15" fill="rgb(220,129,12)" fg:x="169784" fg:w="61"/><text x="31.7199%" y="687.50"></text></g><g><title>tlb_finish_mmu (331 samples, 0.06%)</title><rect x="31.4276%" y="709" width="0.0614%" height="15" fill="rgb(210,19,36)" fg:x="169556" fg:w="331"/><text x="31.6776%" y="719.50"></text></g><g><title>release_pages (257 samples, 0.05%)</title><rect x="31.4413%" y="693" width="0.0476%" height="15" fill="rgb(219,96,14)" fg:x="169630" fg:w="257"/><text x="31.6913%" y="703.50"></text></g><g><title>page_remove_rmap (107 samples, 0.02%)</title><rect x="31.5538%" y="677" width="0.0198%" height="15" fill="rgb(249,106,1)" fg:x="170237" fg:w="107"/><text x="31.8038%" y="687.50"></text></g><g><title>unmap_page_range (483 samples, 0.09%)</title><rect x="31.4904%" y="693" width="0.0895%" height="15" fill="rgb(249,155,20)" fg:x="169895" fg:w="483"/><text x="31.7404%" y="703.50"></text></g><g><title>exit_mmap (1,543 samples, 0.29%)</title><rect x="31.2971%" y="725" width="0.2860%" height="15" fill="rgb(244,168,9)" fg:x="168852" fg:w="1543"/><text x="31.5471%" y="735.50"></text></g><g><title>unmap_vmas (506 samples, 0.09%)</title><rect x="31.4893%" y="709" width="0.0938%" height="15" fill="rgb(216,23,50)" fg:x="169889" fg:w="506"/><text x="31.7393%" y="719.50"></text></g><g><title>mmput (1,551 samples, 0.29%)</title><rect x="31.2967%" y="741" width="0.2875%" height="15" fill="rgb(224,219,20)" fg:x="168850" fg:w="1551"/><text x="31.5467%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.02%)</title><rect x="31.5972%" y="645" width="0.0172%" height="15" fill="rgb(222,156,15)" fg:x="170471" fg:w="93"/><text x="31.8472%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (92 samples, 0.02%)</title><rect x="31.5974%" y="629" width="0.0171%" height="15" fill="rgb(231,97,17)" fg:x="170472" fg:w="92"/><text x="31.8474%" y="639.50"></text></g><g><title>native_write_msr (92 samples, 0.02%)</title><rect x="31.5974%" y="613" width="0.0171%" height="15" fill="rgb(218,70,48)" fg:x="170472" fg:w="92"/><text x="31.8474%" y="623.50"></text></g><g><title>finish_task_switch (101 samples, 0.02%)</title><rect x="31.5972%" y="661" width="0.0187%" height="15" fill="rgb(212,196,52)" fg:x="170471" fg:w="101"/><text x="31.8472%" y="671.50"></text></g><g><title>__schedule (103 samples, 0.02%)</title><rect x="31.5972%" y="677" width="0.0191%" height="15" fill="rgb(243,203,18)" fg:x="170471" fg:w="103"/><text x="31.8472%" y="687.50"></text></g><g><title>_cond_resched (104 samples, 0.02%)</title><rect x="31.5972%" y="693" width="0.0193%" height="15" fill="rgb(252,125,41)" fg:x="170471" fg:w="104"/><text x="31.8472%" y="703.50"></text></g><g><title>dput (105 samples, 0.02%)</title><rect x="31.5972%" y="709" width="0.0195%" height="15" fill="rgb(223,180,33)" fg:x="170471" fg:w="105"/><text x="31.8472%" y="719.50"></text></g><g><title>__wake_up_common (74 samples, 0.01%)</title><rect x="31.6191%" y="677" width="0.0137%" height="15" fill="rgb(254,159,46)" fg:x="170589" fg:w="74"/><text x="31.8691%" y="687.50"></text></g><g><title>autoremove_wake_function (67 samples, 0.01%)</title><rect x="31.6204%" y="661" width="0.0124%" height="15" fill="rgb(254,38,10)" fg:x="170596" fg:w="67"/><text x="31.8704%" y="671.50"></text></g><g><title>try_to_wake_up (66 samples, 0.01%)</title><rect x="31.6206%" y="645" width="0.0122%" height="15" fill="rgb(208,217,32)" fg:x="170597" fg:w="66"/><text x="31.8706%" y="655.50"></text></g><g><title>__wake_up_common_lock (75 samples, 0.01%)</title><rect x="31.6191%" y="693" width="0.0139%" height="15" fill="rgb(221,120,13)" fg:x="170589" fg:w="75"/><text x="31.8691%" y="703.50"></text></g><g><title>pipe_release (82 samples, 0.02%)</title><rect x="31.6189%" y="709" width="0.0152%" height="15" fill="rgb(246,54,52)" fg:x="170588" fg:w="82"/><text x="31.8689%" y="719.50"></text></g><g><title>__fput (213 samples, 0.04%)</title><rect x="31.5948%" y="725" width="0.0395%" height="15" fill="rgb(242,34,25)" fg:x="170458" fg:w="213"/><text x="31.8448%" y="735.50"></text></g><g><title>__x64_sys_exit_group (1,883 samples, 0.35%)</title><rect x="31.2858%" y="789" width="0.3490%" height="15" fill="rgb(247,209,9)" fg:x="168791" fg:w="1883"/><text x="31.5358%" y="799.50"></text></g><g><title>do_group_exit (1,883 samples, 0.35%)</title><rect x="31.2858%" y="773" width="0.3490%" height="15" fill="rgb(228,71,26)" fg:x="168791" fg:w="1883"/><text x="31.5358%" y="783.50"></text></g><g><title>do_exit (1,883 samples, 0.35%)</title><rect x="31.2858%" y="757" width="0.3490%" height="15" fill="rgb(222,145,49)" fg:x="168791" fg:w="1883"/><text x="31.5358%" y="767.50"></text></g><g><title>task_work_run (219 samples, 0.04%)</title><rect x="31.5942%" y="741" width="0.0406%" height="15" fill="rgb(218,121,17)" fg:x="170455" fg:w="219"/><text x="31.8442%" y="751.50"></text></g><g><title>do_syscall_64 (2,700 samples, 0.50%)</title><rect x="31.1355%" y="805" width="0.5005%" height="15" fill="rgb(244,50,7)" fg:x="167980" fg:w="2700"/><text x="31.3855%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,707 samples, 0.50%)</title><rect x="31.1346%" y="821" width="0.5017%" height="15" fill="rgb(246,229,37)" fg:x="167975" fg:w="2707"/><text x="31.3846%" y="831.50"></text></g><g><title>c++ (45,646 samples, 8.46%)</title><rect x="23.1792%" y="837" width="8.4606%" height="15" fill="rgb(225,18,5)" fg:x="125055" fg:w="45646"/><text x="23.4292%" y="847.50">c++</text></g><g><title>[perf-34054.map] (624 samples, 0.12%)</title><rect x="31.6497%" y="821" width="0.1157%" height="15" fill="rgb(213,204,8)" fg:x="170754" fg:w="624"/><text x="31.8997%" y="831.50"></text></g><g><title>find-action-loo (688 samples, 0.13%)</title><rect x="31.6485%" y="837" width="0.1275%" height="15" fill="rgb(238,103,6)" fg:x="170748" fg:w="688"/><text x="31.8985%" y="847.50"></text></g><g><title>__GI___clone (54 samples, 0.01%)</title><rect x="31.7661%" y="821" width="0.0100%" height="15" fill="rgb(222,25,35)" fg:x="171382" fg:w="54"/><text x="32.0161%" y="831.50"></text></g><g><title>globbing_pool-0 (114 samples, 0.02%)</title><rect x="31.7761%" y="837" width="0.0211%" height="15" fill="rgb(213,203,35)" fg:x="171436" fg:w="114"/><text x="32.0261%" y="847.50"></text></g><g><title>JVM_StartThread (84 samples, 0.02%)</title><rect x="31.8385%" y="805" width="0.0156%" height="15" fill="rgb(221,79,53)" fg:x="171773" fg:w="84"/><text x="32.0885%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.01%)</title><rect x="31.8572%" y="581" width="0.0146%" height="15" fill="rgb(243,200,35)" fg:x="171874" fg:w="79"/><text x="32.1072%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (77 samples, 0.01%)</title><rect x="31.8576%" y="565" width="0.0143%" height="15" fill="rgb(248,60,25)" fg:x="171876" fg:w="77"/><text x="32.1076%" y="575.50"></text></g><g><title>native_write_msr (77 samples, 0.01%)</title><rect x="31.8576%" y="549" width="0.0143%" height="15" fill="rgb(227,53,46)" fg:x="171876" fg:w="77"/><text x="32.1076%" y="559.50"></text></g><g><title>finish_task_switch (81 samples, 0.02%)</title><rect x="31.8572%" y="597" width="0.0150%" height="15" fill="rgb(216,120,32)" fg:x="171874" fg:w="81"/><text x="32.1072%" y="607.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="31.8572%" y="709" width="0.0152%" height="15" fill="rgb(220,134,1)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="719.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.02%)</title><rect x="31.8572%" y="693" width="0.0152%" height="15" fill="rgb(237,168,5)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="703.50"></text></g><g><title>do_futex (82 samples, 0.02%)</title><rect x="31.8572%" y="677" width="0.0152%" height="15" fill="rgb(231,100,33)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="687.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="31.8572%" y="661" width="0.0152%" height="15" fill="rgb(236,177,47)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="671.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.02%)</title><rect x="31.8572%" y="645" width="0.0152%" height="15" fill="rgb(235,7,49)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="655.50"></text></g><g><title>schedule (82 samples, 0.02%)</title><rect x="31.8572%" y="629" width="0.0152%" height="15" fill="rgb(232,119,22)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="639.50"></text></g><g><title>__schedule (82 samples, 0.02%)</title><rect x="31.8572%" y="613" width="0.0152%" height="15" fill="rgb(254,73,53)" fg:x="171874" fg:w="82"/><text x="32.1072%" y="623.50"></text></g><g><title>__pthread_cond_wait (83 samples, 0.02%)</title><rect x="31.8572%" y="773" width="0.0154%" height="15" fill="rgb(251,35,20)" fg:x="171874" fg:w="83"/><text x="32.1072%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (83 samples, 0.02%)</title><rect x="31.8572%" y="757" width="0.0154%" height="15" fill="rgb(241,119,20)" fg:x="171874" fg:w="83"/><text x="32.1072%" y="767.50"></text></g><g><title>futex_wait_cancelable (83 samples, 0.02%)</title><rect x="31.8572%" y="741" width="0.0154%" height="15" fill="rgb(207,102,14)" fg:x="171874" fg:w="83"/><text x="32.1072%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="31.8572%" y="725" width="0.0154%" height="15" fill="rgb(248,201,50)" fg:x="171874" fg:w="83"/><text x="32.1072%" y="735.50"></text></g><g><title>Unsafe_Park (95 samples, 0.02%)</title><rect x="31.8552%" y="805" width="0.0176%" height="15" fill="rgb(222,185,44)" fg:x="171863" fg:w="95"/><text x="32.1052%" y="815.50"></text></g><g><title>Parker::park (94 samples, 0.02%)</title><rect x="31.8554%" y="789" width="0.0174%" height="15" fill="rgb(218,107,18)" fg:x="171864" fg:w="94"/><text x="32.1054%" y="799.50"></text></g><g><title>[perf-34054.map] (382 samples, 0.07%)</title><rect x="31.8035%" y="821" width="0.0708%" height="15" fill="rgb(237,177,39)" fg:x="171584" fg:w="382"/><text x="32.0535%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="31.8775%" y="757" width="0.0119%" height="15" fill="rgb(246,69,6)" fg:x="171983" fg:w="64"/><text x="32.1275%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (63 samples, 0.01%)</title><rect x="31.8776%" y="741" width="0.0117%" height="15" fill="rgb(234,208,37)" fg:x="171984" fg:w="63"/><text x="32.1276%" y="751.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="31.8776%" y="725" width="0.0117%" height="15" fill="rgb(225,4,6)" fg:x="171984" fg:w="63"/><text x="32.1276%" y="735.50"></text></g><g><title>schedule_tail (68 samples, 0.01%)</title><rect x="31.8773%" y="789" width="0.0126%" height="15" fill="rgb(233,45,0)" fg:x="171982" fg:w="68"/><text x="32.1273%" y="799.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="31.8775%" y="773" width="0.0124%" height="15" fill="rgb(226,136,5)" fg:x="171983" fg:w="67"/><text x="32.1275%" y="783.50"></text></g><g><title>ret_from_fork (71 samples, 0.01%)</title><rect x="31.8769%" y="805" width="0.0132%" height="15" fill="rgb(211,91,47)" fg:x="171980" fg:w="71"/><text x="32.1269%" y="815.50"></text></g><g><title>__GI___clone (129 samples, 0.02%)</title><rect x="31.8750%" y="821" width="0.0239%" height="15" fill="rgb(242,88,51)" fg:x="171970" fg:w="129"/><text x="32.1250%" y="831.50"></text></g><g><title>globbing_pool-1 (551 samples, 0.10%)</title><rect x="31.7972%" y="837" width="0.1021%" height="15" fill="rgb(230,91,28)" fg:x="171550" fg:w="551"/><text x="32.0472%" y="847.50"></text></g><g><title>[perf-34054.map] (223 samples, 0.04%)</title><rect x="31.9075%" y="821" width="0.0413%" height="15" fill="rgb(254,186,29)" fg:x="172145" fg:w="223"/><text x="32.1575%" y="831.50"></text></g><g><title>__GI___clone (79 samples, 0.01%)</title><rect x="31.9488%" y="821" width="0.0146%" height="15" fill="rgb(238,6,4)" fg:x="172368" fg:w="79"/><text x="32.1988%" y="831.50"></text></g><g><title>globbing_pool-2 (349 samples, 0.06%)</title><rect x="31.8993%" y="837" width="0.0647%" height="15" fill="rgb(221,151,16)" fg:x="172101" fg:w="349"/><text x="32.1493%" y="847.50"></text></g><g><title>JVM_StartThread (71 samples, 0.01%)</title><rect x="32.0018%" y="805" width="0.0132%" height="15" fill="rgb(251,143,52)" fg:x="172654" fg:w="71"/><text x="32.2518%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (62 samples, 0.01%)</title><rect x="32.0198%" y="581" width="0.0115%" height="15" fill="rgb(206,90,15)" fg:x="172751" fg:w="62"/><text x="32.2698%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (61 samples, 0.01%)</title><rect x="32.0200%" y="565" width="0.0113%" height="15" fill="rgb(218,35,8)" fg:x="172752" fg:w="61"/><text x="32.2700%" y="575.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="32.0202%" y="549" width="0.0111%" height="15" fill="rgb(239,215,6)" fg:x="172753" fg:w="60"/><text x="32.2702%" y="559.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="32.0194%" y="709" width="0.0124%" height="15" fill="rgb(245,116,39)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="719.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.01%)</title><rect x="32.0194%" y="693" width="0.0124%" height="15" fill="rgb(242,65,28)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="703.50"></text></g><g><title>do_futex (67 samples, 0.01%)</title><rect x="32.0194%" y="677" width="0.0124%" height="15" fill="rgb(252,132,53)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="687.50"></text></g><g><title>futex_wait (67 samples, 0.01%)</title><rect x="32.0194%" y="661" width="0.0124%" height="15" fill="rgb(224,159,50)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="671.50"></text></g><g><title>futex_wait_queue_me (67 samples, 0.01%)</title><rect x="32.0194%" y="645" width="0.0124%" height="15" fill="rgb(224,93,4)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="655.50"></text></g><g><title>schedule (67 samples, 0.01%)</title><rect x="32.0194%" y="629" width="0.0124%" height="15" fill="rgb(208,81,34)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="639.50"></text></g><g><title>__schedule (67 samples, 0.01%)</title><rect x="32.0194%" y="613" width="0.0124%" height="15" fill="rgb(233,92,54)" fg:x="172749" fg:w="67"/><text x="32.2694%" y="623.50"></text></g><g><title>finish_task_switch (66 samples, 0.01%)</title><rect x="32.0196%" y="597" width="0.0122%" height="15" fill="rgb(237,21,14)" fg:x="172750" fg:w="66"/><text x="32.2696%" y="607.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.01%)</title><rect x="32.0194%" y="773" width="0.0126%" height="15" fill="rgb(249,128,51)" fg:x="172749" fg:w="68"/><text x="32.2694%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.01%)</title><rect x="32.0194%" y="757" width="0.0126%" height="15" fill="rgb(223,129,24)" fg:x="172749" fg:w="68"/><text x="32.2694%" y="767.50"></text></g><g><title>futex_wait_cancelable (68 samples, 0.01%)</title><rect x="32.0194%" y="741" width="0.0126%" height="15" fill="rgb(231,168,25)" fg:x="172749" fg:w="68"/><text x="32.2694%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="32.0194%" y="725" width="0.0126%" height="15" fill="rgb(224,39,20)" fg:x="172749" fg:w="68"/><text x="32.2694%" y="735.50"></text></g><g><title>Parker::park (87 samples, 0.02%)</title><rect x="32.0167%" y="789" width="0.0161%" height="15" fill="rgb(225,152,53)" fg:x="172734" fg:w="87"/><text x="32.2667%" y="799.50"></text></g><g><title>Unsafe_Park (88 samples, 0.02%)</title><rect x="32.0167%" y="805" width="0.0163%" height="15" fill="rgb(252,17,24)" fg:x="172734" fg:w="88"/><text x="32.2667%" y="815.50"></text></g><g><title>[perf-34054.map] (342 samples, 0.06%)</title><rect x="31.9705%" y="821" width="0.0634%" height="15" fill="rgb(250,114,30)" fg:x="172485" fg:w="342"/><text x="32.2205%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.01%)</title><rect x="32.0369%" y="757" width="0.0148%" height="15" fill="rgb(229,5,4)" fg:x="172843" fg:w="80"/><text x="32.2869%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (80 samples, 0.01%)</title><rect x="32.0369%" y="741" width="0.0148%" height="15" fill="rgb(225,176,49)" fg:x="172843" fg:w="80"/><text x="32.2869%" y="751.50"></text></g><g><title>native_write_msr (79 samples, 0.01%)</title><rect x="32.0370%" y="725" width="0.0146%" height="15" fill="rgb(224,221,49)" fg:x="172844" fg:w="79"/><text x="32.2870%" y="735.50"></text></g><g><title>schedule_tail (83 samples, 0.02%)</title><rect x="32.0365%" y="789" width="0.0154%" height="15" fill="rgb(253,169,27)" fg:x="172841" fg:w="83"/><text x="32.2865%" y="799.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="32.0365%" y="773" width="0.0154%" height="15" fill="rgb(211,206,16)" fg:x="172841" fg:w="83"/><text x="32.2865%" y="783.50"></text></g><g><title>ret_from_fork (91 samples, 0.02%)</title><rect x="32.0357%" y="805" width="0.0169%" height="15" fill="rgb(244,87,35)" fg:x="172837" fg:w="91"/><text x="32.2857%" y="815.50"></text></g><g><title>globbing_pool-3 (513 samples, 0.10%)</title><rect x="31.9640%" y="837" width="0.0951%" height="15" fill="rgb(246,28,10)" fg:x="172450" fg:w="513"/><text x="32.2140%" y="847.50"></text></g><g><title>__GI___clone (134 samples, 0.02%)</title><rect x="32.0343%" y="821" width="0.0248%" height="15" fill="rgb(229,12,44)" fg:x="172829" fg:w="134"/><text x="32.2843%" y="831.50"></text></g><g><title>[libunix_jni.so] (74 samples, 0.01%)</title><rect x="32.0600%" y="821" width="0.0137%" height="15" fill="rgb(210,145,37)" fg:x="172968" fg:w="74"/><text x="32.3100%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="32.1258%" y="581" width="0.0102%" height="15" fill="rgb(227,112,52)" fg:x="173323" fg:w="55"/><text x="32.3758%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (55 samples, 0.01%)</title><rect x="32.1258%" y="565" width="0.0102%" height="15" fill="rgb(238,155,34)" fg:x="173323" fg:w="55"/><text x="32.3758%" y="575.50"></text></g><g><title>native_write_msr (55 samples, 0.01%)</title><rect x="32.1258%" y="549" width="0.0102%" height="15" fill="rgb(239,226,36)" fg:x="173323" fg:w="55"/><text x="32.3758%" y="559.50"></text></g><g><title>do_syscall_64 (60 samples, 0.01%)</title><rect x="32.1253%" y="709" width="0.0111%" height="15" fill="rgb(230,16,23)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="719.50"></text></g><g><title>__x64_sys_futex (60 samples, 0.01%)</title><rect x="32.1253%" y="693" width="0.0111%" height="15" fill="rgb(236,171,36)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="703.50"></text></g><g><title>do_futex (60 samples, 0.01%)</title><rect x="32.1253%" y="677" width="0.0111%" height="15" fill="rgb(221,22,14)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="687.50"></text></g><g><title>futex_wait (60 samples, 0.01%)</title><rect x="32.1253%" y="661" width="0.0111%" height="15" fill="rgb(242,43,11)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="671.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.01%)</title><rect x="32.1253%" y="645" width="0.0111%" height="15" fill="rgb(232,69,23)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="655.50"></text></g><g><title>schedule (60 samples, 0.01%)</title><rect x="32.1253%" y="629" width="0.0111%" height="15" fill="rgb(216,180,54)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="639.50"></text></g><g><title>__schedule (60 samples, 0.01%)</title><rect x="32.1253%" y="613" width="0.0111%" height="15" fill="rgb(216,5,24)" fg:x="173320" fg:w="60"/><text x="32.3753%" y="623.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="32.1256%" y="597" width="0.0108%" height="15" fill="rgb(225,89,9)" fg:x="173322" fg:w="58"/><text x="32.3756%" y="607.50"></text></g><g><title>__pthread_cond_wait (62 samples, 0.01%)</title><rect x="32.1253%" y="773" width="0.0115%" height="15" fill="rgb(243,75,33)" fg:x="173320" fg:w="62"/><text x="32.3753%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.01%)</title><rect x="32.1253%" y="757" width="0.0115%" height="15" fill="rgb(247,141,45)" fg:x="173320" fg:w="62"/><text x="32.3753%" y="767.50"></text></g><g><title>futex_wait_cancelable (62 samples, 0.01%)</title><rect x="32.1253%" y="741" width="0.0115%" height="15" fill="rgb(232,177,36)" fg:x="173320" fg:w="62"/><text x="32.3753%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.01%)</title><rect x="32.1253%" y="725" width="0.0115%" height="15" fill="rgb(219,125,36)" fg:x="173320" fg:w="62"/><text x="32.3753%" y="735.50"></text></g><g><title>Parker::park (72 samples, 0.01%)</title><rect x="32.1240%" y="789" width="0.0133%" height="15" fill="rgb(227,94,9)" fg:x="173313" fg:w="72"/><text x="32.3740%" y="799.50"></text></g><g><title>Unsafe_Park (73 samples, 0.01%)</title><rect x="32.1240%" y="805" width="0.0135%" height="15" fill="rgb(240,34,52)" fg:x="173313" fg:w="73"/><text x="32.3740%" y="815.50"></text></g><g><title>[perf-34054.map] (349 samples, 0.06%)</title><rect x="32.0737%" y="821" width="0.0647%" height="15" fill="rgb(216,45,12)" fg:x="173042" fg:w="349"/><text x="32.3237%" y="831.50"></text></g><g><title>globbing_pool-4 (477 samples, 0.09%)</title><rect x="32.0591%" y="837" width="0.0884%" height="15" fill="rgb(246,21,19)" fg:x="172963" fg:w="477"/><text x="32.3091%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="32.1885%" y="581" width="0.0106%" height="15" fill="rgb(213,98,42)" fg:x="173661" fg:w="57"/><text x="32.4385%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="32.1887%" y="565" width="0.0104%" height="15" fill="rgb(250,136,47)" fg:x="173662" fg:w="56"/><text x="32.4387%" y="575.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="32.1887%" y="549" width="0.0104%" height="15" fill="rgb(251,124,27)" fg:x="173662" fg:w="56"/><text x="32.4387%" y="559.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="32.1877%" y="709" width="0.0115%" height="15" fill="rgb(229,180,14)" fg:x="173657" fg:w="62"/><text x="32.4377%" y="719.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.01%)</title><rect x="32.1879%" y="693" width="0.0113%" height="15" fill="rgb(245,216,25)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="703.50"></text></g><g><title>do_futex (61 samples, 0.01%)</title><rect x="32.1879%" y="677" width="0.0113%" height="15" fill="rgb(251,43,5)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="687.50"></text></g><g><title>futex_wait (61 samples, 0.01%)</title><rect x="32.1879%" y="661" width="0.0113%" height="15" fill="rgb(250,128,24)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="671.50"></text></g><g><title>futex_wait_queue_me (61 samples, 0.01%)</title><rect x="32.1879%" y="645" width="0.0113%" height="15" fill="rgb(217,117,27)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="655.50"></text></g><g><title>schedule (61 samples, 0.01%)</title><rect x="32.1879%" y="629" width="0.0113%" height="15" fill="rgb(245,147,4)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="639.50"></text></g><g><title>__schedule (61 samples, 0.01%)</title><rect x="32.1879%" y="613" width="0.0113%" height="15" fill="rgb(242,201,35)" fg:x="173658" fg:w="61"/><text x="32.4379%" y="623.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="32.1883%" y="597" width="0.0109%" height="15" fill="rgb(218,181,1)" fg:x="173660" fg:w="59"/><text x="32.4383%" y="607.50"></text></g><g><title>__pthread_cond_wait (64 samples, 0.01%)</title><rect x="32.1877%" y="773" width="0.0119%" height="15" fill="rgb(222,6,29)" fg:x="173657" fg:w="64"/><text x="32.4377%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="32.1877%" y="757" width="0.0119%" height="15" fill="rgb(208,186,3)" fg:x="173657" fg:w="64"/><text x="32.4377%" y="767.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.01%)</title><rect x="32.1877%" y="741" width="0.0119%" height="15" fill="rgb(216,36,26)" fg:x="173657" fg:w="64"/><text x="32.4377%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="32.1877%" y="725" width="0.0119%" height="15" fill="rgb(248,201,23)" fg:x="173657" fg:w="64"/><text x="32.4377%" y="735.50"></text></g><g><title>Unsafe_Park (65 samples, 0.01%)</title><rect x="32.1877%" y="805" width="0.0120%" height="15" fill="rgb(251,170,31)" fg:x="173657" fg:w="65"/><text x="32.4377%" y="815.50"></text></g><g><title>Parker::park (65 samples, 0.01%)</title><rect x="32.1877%" y="789" width="0.0120%" height="15" fill="rgb(207,110,25)" fg:x="173657" fg:w="65"/><text x="32.4377%" y="799.50"></text></g><g><title>[perf-34054.map] (261 samples, 0.05%)</title><rect x="32.1529%" y="821" width="0.0484%" height="15" fill="rgb(250,54,15)" fg:x="173469" fg:w="261"/><text x="32.4029%" y="831.50"></text></g><g><title>__GI___clone (72 samples, 0.01%)</title><rect x="32.2022%" y="821" width="0.0133%" height="15" fill="rgb(227,68,33)" fg:x="173735" fg:w="72"/><text x="32.4522%" y="831.50"></text></g><g><title>mmput (62 samples, 0.01%)</title><rect x="32.2155%" y="709" width="0.0115%" height="15" fill="rgb(238,34,41)" fg:x="173807" fg:w="62"/><text x="32.4655%" y="719.50"></text></g><g><title>exit_mmap (62 samples, 0.01%)</title><rect x="32.2155%" y="693" width="0.0115%" height="15" fill="rgb(220,11,15)" fg:x="173807" fg:w="62"/><text x="32.4655%" y="703.50"></text></g><g><title>unmap_vmas (60 samples, 0.01%)</title><rect x="32.2159%" y="677" width="0.0111%" height="15" fill="rgb(246,111,35)" fg:x="173809" fg:w="60"/><text x="32.4659%" y="687.50"></text></g><g><title>unmap_page_range (60 samples, 0.01%)</title><rect x="32.2159%" y="661" width="0.0111%" height="15" fill="rgb(209,88,53)" fg:x="173809" fg:w="60"/><text x="32.4659%" y="671.50"></text></g><g><title>globbing_pool-5 (430 samples, 0.08%)</title><rect x="32.1475%" y="837" width="0.0797%" height="15" fill="rgb(231,185,47)" fg:x="173440" fg:w="430"/><text x="32.3975%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="32.2155%" y="821" width="0.0117%" height="15" fill="rgb(233,154,1)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (63 samples, 0.01%)</title><rect x="32.2155%" y="805" width="0.0117%" height="15" fill="rgb(225,15,46)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (63 samples, 0.01%)</title><rect x="32.2155%" y="789" width="0.0117%" height="15" fill="rgb(211,135,41)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="799.50"></text></g><g><title>arch_do_signal (63 samples, 0.01%)</title><rect x="32.2155%" y="773" width="0.0117%" height="15" fill="rgb(208,54,0)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="783.50"></text></g><g><title>get_signal (63 samples, 0.01%)</title><rect x="32.2155%" y="757" width="0.0117%" height="15" fill="rgb(244,136,14)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="767.50"></text></g><g><title>do_group_exit (63 samples, 0.01%)</title><rect x="32.2155%" y="741" width="0.0117%" height="15" fill="rgb(241,56,14)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="751.50"></text></g><g><title>do_exit (63 samples, 0.01%)</title><rect x="32.2155%" y="725" width="0.0117%" height="15" fill="rgb(205,80,24)" fg:x="173807" fg:w="63"/><text x="32.4655%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="32.2452%" y="581" width="0.0106%" height="15" fill="rgb(220,57,4)" fg:x="173967" fg:w="57"/><text x="32.4952%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="32.2454%" y="565" width="0.0104%" height="15" fill="rgb(226,193,50)" fg:x="173968" fg:w="56"/><text x="32.4954%" y="575.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="32.2454%" y="549" width="0.0104%" height="15" fill="rgb(231,168,22)" fg:x="173968" fg:w="56"/><text x="32.4954%" y="559.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="32.2452%" y="597" width="0.0111%" height="15" fill="rgb(254,215,14)" fg:x="173967" fg:w="60"/><text x="32.4952%" y="607.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="32.2450%" y="709" width="0.0115%" height="15" fill="rgb(211,115,16)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="719.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="32.2450%" y="693" width="0.0115%" height="15" fill="rgb(236,210,16)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="703.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="32.2450%" y="677" width="0.0115%" height="15" fill="rgb(221,94,12)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="687.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="32.2450%" y="661" width="0.0115%" height="15" fill="rgb(235,218,49)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="671.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="32.2450%" y="645" width="0.0115%" height="15" fill="rgb(217,114,14)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="655.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="32.2450%" y="629" width="0.0115%" height="15" fill="rgb(216,145,22)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="639.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="32.2450%" y="613" width="0.0115%" height="15" fill="rgb(217,112,39)" fg:x="173966" fg:w="62"/><text x="32.4950%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="32.2450%" y="725" width="0.0119%" height="15" fill="rgb(225,85,32)" fg:x="173966" fg:w="64"/><text x="32.4950%" y="735.50"></text></g><g><title>Unsafe_Park (67 samples, 0.01%)</title><rect x="32.2446%" y="805" width="0.0124%" height="15" fill="rgb(245,209,47)" fg:x="173964" fg:w="67"/><text x="32.4946%" y="815.50"></text></g><g><title>Parker::park (67 samples, 0.01%)</title><rect x="32.2446%" y="789" width="0.0124%" height="15" fill="rgb(218,220,15)" fg:x="173964" fg:w="67"/><text x="32.4946%" y="799.50"></text></g><g><title>__pthread_cond_wait (67 samples, 0.01%)</title><rect x="32.2446%" y="773" width="0.0124%" height="15" fill="rgb(222,202,31)" fg:x="173964" fg:w="67"/><text x="32.4946%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (67 samples, 0.01%)</title><rect x="32.2446%" y="757" width="0.0124%" height="15" fill="rgb(243,203,4)" fg:x="173964" fg:w="67"/><text x="32.4946%" y="767.50"></text></g><g><title>futex_wait_cancelable (65 samples, 0.01%)</title><rect x="32.2450%" y="741" width="0.0120%" height="15" fill="rgb(237,92,17)" fg:x="173966" fg:w="65"/><text x="32.4950%" y="751.50"></text></g><g><title>[perf-34054.map] (164 samples, 0.03%)</title><rect x="32.2280%" y="821" width="0.0304%" height="15" fill="rgb(231,119,7)" fg:x="173874" fg:w="164"/><text x="32.4780%" y="831.50"></text></g><g><title>globbing_pool-6 (171 samples, 0.03%)</title><rect x="32.2272%" y="837" width="0.0317%" height="15" fill="rgb(237,82,41)" fg:x="173870" fg:w="171"/><text x="32.4772%" y="847.50"></text></g><g><title>[perf-34054.map] (186 samples, 0.03%)</title><rect x="32.2643%" y="821" width="0.0345%" height="15" fill="rgb(226,81,48)" fg:x="174070" fg:w="186"/><text x="32.5143%" y="831.50"></text></g><g><title>globbing_pool-7 (240 samples, 0.04%)</title><rect x="32.2589%" y="837" width="0.0445%" height="15" fill="rgb(234,70,51)" fg:x="174041" fg:w="240"/><text x="32.5089%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="32.3288%" y="581" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="174418" fg:w="59"/><text x="32.5788%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (57 samples, 0.01%)</title><rect x="32.3292%" y="565" width="0.0106%" height="15" fill="rgb(244,144,28)" fg:x="174420" fg:w="57"/><text x="32.5792%" y="575.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="32.3292%" y="549" width="0.0106%" height="15" fill="rgb(232,161,39)" fg:x="174420" fg:w="57"/><text x="32.5792%" y="559.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="32.3277%" y="709" width="0.0124%" height="15" fill="rgb(247,34,51)" fg:x="174412" fg:w="67"/><text x="32.5777%" y="719.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.01%)</title><rect x="32.3277%" y="693" width="0.0124%" height="15" fill="rgb(225,132,2)" fg:x="174412" fg:w="67"/><text x="32.5777%" y="703.50"></text></g><g><title>do_futex (67 samples, 0.01%)</title><rect x="32.3277%" y="677" width="0.0124%" height="15" fill="rgb(209,159,44)" fg:x="174412" fg:w="67"/><text x="32.5777%" y="687.50"></text></g><g><title>futex_wait (67 samples, 0.01%)</title><rect x="32.3277%" y="661" width="0.0124%" height="15" fill="rgb(251,214,1)" fg:x="174412" fg:w="67"/><text x="32.5777%" y="671.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="32.3280%" y="645" width="0.0120%" height="15" fill="rgb(247,84,47)" fg:x="174414" fg:w="65"/><text x="32.5780%" y="655.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="32.3280%" y="629" width="0.0120%" height="15" fill="rgb(240,111,43)" fg:x="174414" fg:w="65"/><text x="32.5780%" y="639.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="32.3280%" y="613" width="0.0120%" height="15" fill="rgb(215,214,35)" fg:x="174414" fg:w="65"/><text x="32.5780%" y="623.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="32.3286%" y="597" width="0.0115%" height="15" fill="rgb(248,207,23)" fg:x="174417" fg:w="62"/><text x="32.5786%" y="607.50"></text></g><g><title>Unsafe_Park (70 samples, 0.01%)</title><rect x="32.3273%" y="805" width="0.0130%" height="15" fill="rgb(214,186,4)" fg:x="174410" fg:w="70"/><text x="32.5773%" y="815.50"></text></g><g><title>Parker::park (70 samples, 0.01%)</title><rect x="32.3273%" y="789" width="0.0130%" height="15" fill="rgb(220,133,22)" fg:x="174410" fg:w="70"/><text x="32.5773%" y="799.50"></text></g><g><title>__pthread_cond_wait (68 samples, 0.01%)</title><rect x="32.3277%" y="773" width="0.0126%" height="15" fill="rgb(239,134,19)" fg:x="174412" fg:w="68"/><text x="32.5777%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (68 samples, 0.01%)</title><rect x="32.3277%" y="757" width="0.0126%" height="15" fill="rgb(250,140,9)" fg:x="174412" fg:w="68"/><text x="32.5777%" y="767.50"></text></g><g><title>futex_wait_cancelable (68 samples, 0.01%)</title><rect x="32.3277%" y="741" width="0.0126%" height="15" fill="rgb(225,59,14)" fg:x="174412" fg:w="68"/><text x="32.5777%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="32.3277%" y="725" width="0.0126%" height="15" fill="rgb(214,152,51)" fg:x="174412" fg:w="68"/><text x="32.5777%" y="735.50"></text></g><g><title>[perf-34054.map] (185 samples, 0.03%)</title><rect x="32.3064%" y="821" width="0.0343%" height="15" fill="rgb(251,227,43)" fg:x="174297" fg:w="185"/><text x="32.5564%" y="831.50"></text></g><g><title>globbing_pool-8 (227 samples, 0.04%)</title><rect x="32.3034%" y="837" width="0.0421%" height="15" fill="rgb(241,96,17)" fg:x="174281" fg:w="227"/><text x="32.5534%" y="847.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="32.3718%" y="709" width="0.0106%" height="15" fill="rgb(234,198,43)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="719.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.01%)</title><rect x="32.3718%" y="693" width="0.0106%" height="15" fill="rgb(220,108,29)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="703.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="32.3718%" y="677" width="0.0106%" height="15" fill="rgb(226,163,33)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="687.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="32.3718%" y="661" width="0.0106%" height="15" fill="rgb(205,194,45)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="671.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="32.3718%" y="645" width="0.0106%" height="15" fill="rgb(206,143,44)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="655.50"></text></g><g><title>schedule (57 samples, 0.01%)</title><rect x="32.3718%" y="629" width="0.0106%" height="15" fill="rgb(236,136,36)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="639.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="32.3718%" y="613" width="0.0106%" height="15" fill="rgb(249,172,42)" fg:x="174650" fg:w="57"/><text x="32.6218%" y="623.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.01%)</title><rect x="32.3718%" y="773" width="0.0109%" height="15" fill="rgb(216,139,23)" fg:x="174650" fg:w="59"/><text x="32.6218%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.01%)</title><rect x="32.3718%" y="757" width="0.0109%" height="15" fill="rgb(207,166,20)" fg:x="174650" fg:w="59"/><text x="32.6218%" y="767.50"></text></g><g><title>futex_wait_cancelable (59 samples, 0.01%)</title><rect x="32.3718%" y="741" width="0.0109%" height="15" fill="rgb(210,209,22)" fg:x="174650" fg:w="59"/><text x="32.6218%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="32.3718%" y="725" width="0.0109%" height="15" fill="rgb(232,118,20)" fg:x="174650" fg:w="59"/><text x="32.6218%" y="735.50"></text></g><g><title>Unsafe_Park (60 samples, 0.01%)</title><rect x="32.3718%" y="805" width="0.0111%" height="15" fill="rgb(238,113,42)" fg:x="174650" fg:w="60"/><text x="32.6218%" y="815.50"></text></g><g><title>Parker::park (60 samples, 0.01%)</title><rect x="32.3718%" y="789" width="0.0111%" height="15" fill="rgb(231,42,5)" fg:x="174650" fg:w="60"/><text x="32.6218%" y="799.50"></text></g><g><title>[perf-34054.map] (186 samples, 0.03%)</title><rect x="32.3494%" y="821" width="0.0345%" height="15" fill="rgb(243,166,24)" fg:x="174529" fg:w="186"/><text x="32.5994%" y="831.50"></text></g><g><title>globbing_pool-9 (219 samples, 0.04%)</title><rect x="32.3455%" y="837" width="0.0406%" height="15" fill="rgb(237,226,12)" fg:x="174508" fg:w="219"/><text x="32.5955%" y="847.50"></text></g><g><title>[anon] (255 samples, 0.05%)</title><rect x="32.3885%" y="821" width="0.0473%" height="15" fill="rgb(229,133,24)" fg:x="174740" fg:w="255"/><text x="32.6385%" y="831.50"></text></g><g><title>do_rmdir (104 samples, 0.02%)</title><rect x="32.4496%" y="757" width="0.0193%" height="15" fill="rgb(238,33,43)" fg:x="175070" fg:w="104"/><text x="32.6996%" y="767.50"></text></g><g><title>vfs_rmdir.part.0 (99 samples, 0.02%)</title><rect x="32.4506%" y="741" width="0.0183%" height="15" fill="rgb(227,59,38)" fg:x="175075" fg:w="99"/><text x="32.7006%" y="751.50"></text></g><g><title>btrfs_del_items (75 samples, 0.01%)</title><rect x="32.4876%" y="677" width="0.0139%" height="15" fill="rgb(230,97,0)" fg:x="175275" fg:w="75"/><text x="32.7376%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (114 samples, 0.02%)</title><rect x="32.4874%" y="693" width="0.0211%" height="15" fill="rgb(250,173,50)" fg:x="175274" fg:w="114"/><text x="32.7374%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (131 samples, 0.02%)</title><rect x="32.4861%" y="709" width="0.0243%" height="15" fill="rgb(240,15,50)" fg:x="175267" fg:w="131"/><text x="32.7361%" y="719.50"></text></g><g><title>btrfs_del_items (97 samples, 0.02%)</title><rect x="32.5240%" y="693" width="0.0180%" height="15" fill="rgb(221,93,22)" fg:x="175471" fg:w="97"/><text x="32.7740%" y="703.50"></text></g><g><title>btrfs_truncate_inode_items (199 samples, 0.04%)</title><rect x="32.5195%" y="709" width="0.0369%" height="15" fill="rgb(245,180,53)" fg:x="175447" fg:w="199"/><text x="32.7695%" y="719.50"></text></g><g><title>btrfs_evict_inode (519 samples, 0.10%)</title><rect x="32.4806%" y="725" width="0.0962%" height="15" fill="rgb(231,88,51)" fg:x="175237" fg:w="519"/><text x="32.7306%" y="735.50"></text></g><g><title>evict (530 samples, 0.10%)</title><rect x="32.4787%" y="741" width="0.0982%" height="15" fill="rgb(240,58,21)" fg:x="175227" fg:w="530"/><text x="32.7287%" y="751.50"></text></g><g><title>btrfs_del_dir_entries_in_log (58 samples, 0.01%)</title><rect x="32.5825%" y="693" width="0.0108%" height="15" fill="rgb(237,21,10)" fg:x="175787" fg:w="58"/><text x="32.8325%" y="703.50"></text></g><g><title>btrfs_del_inode_ref (65 samples, 0.01%)</title><rect x="32.5933%" y="677" width="0.0120%" height="15" fill="rgb(218,43,11)" fg:x="175845" fg:w="65"/><text x="32.8433%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (66 samples, 0.01%)</title><rect x="32.5933%" y="693" width="0.0122%" height="15" fill="rgb(218,221,29)" fg:x="175845" fg:w="66"/><text x="32.8433%" y="703.50"></text></g><g><title>btrfs_del_items (127 samples, 0.02%)</title><rect x="32.6055%" y="693" width="0.0235%" height="15" fill="rgb(214,118,42)" fg:x="175911" fg:w="127"/><text x="32.8555%" y="703.50"></text></g><g><title>btrfs_search_slot (60 samples, 0.01%)</title><rect x="32.6348%" y="677" width="0.0111%" height="15" fill="rgb(251,200,26)" fg:x="176069" fg:w="60"/><text x="32.8848%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (65 samples, 0.01%)</title><rect x="32.6346%" y="693" width="0.0120%" height="15" fill="rgb(237,101,39)" fg:x="176068" fg:w="65"/><text x="32.8846%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (381 samples, 0.07%)</title><rect x="32.5822%" y="709" width="0.0706%" height="15" fill="rgb(251,117,11)" fg:x="175785" fg:w="381"/><text x="32.8322%" y="719.50"></text></g><g><title>btrfs_unlink (460 samples, 0.09%)</title><rect x="32.5809%" y="725" width="0.0853%" height="15" fill="rgb(216,223,23)" fg:x="175778" fg:w="460"/><text x="32.8309%" y="735.50"></text></g><g><title>do_unlinkat (1,079 samples, 0.20%)</title><rect x="32.4689%" y="757" width="0.2000%" height="15" fill="rgb(251,54,12)" fg:x="175174" fg:w="1079"/><text x="32.7189%" y="767.50"></text></g><g><title>vfs_unlink (479 samples, 0.09%)</title><rect x="32.5801%" y="741" width="0.0888%" height="15" fill="rgb(254,176,54)" fg:x="175774" fg:w="479"/><text x="32.8301%" y="751.50"></text></g><g><title>__GI_unlinkat (1,204 samples, 0.22%)</title><rect x="32.4459%" y="805" width="0.2232%" height="15" fill="rgb(210,32,8)" fg:x="175050" fg:w="1204"/><text x="32.6959%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,199 samples, 0.22%)</title><rect x="32.4469%" y="789" width="0.2222%" height="15" fill="rgb(235,52,38)" fg:x="175055" fg:w="1199"/><text x="32.6969%" y="799.50"></text></g><g><title>do_syscall_64 (1,199 samples, 0.22%)</title><rect x="32.4469%" y="773" width="0.2222%" height="15" fill="rgb(231,4,44)" fg:x="175055" fg:w="1199"/><text x="32.6969%" y="783.50"></text></g><g><title>[libunix_jni.so] (1,297 samples, 0.24%)</title><rect x="32.4357%" y="821" width="0.2404%" height="15" fill="rgb(249,2,32)" fg:x="174995" fg:w="1297"/><text x="32.6857%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (63 samples, 0.01%)</title><rect x="33.1089%" y="693" width="0.0117%" height="15" fill="rgb(224,65,26)" fg:x="178627" fg:w="63"/><text x="33.3589%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (63 samples, 0.01%)</title><rect x="33.1089%" y="677" width="0.0117%" height="15" fill="rgb(250,73,40)" fg:x="178627" fg:w="63"/><text x="33.3589%" y="687.50"></text></g><g><title>ClassLoader::load_class (108 samples, 0.02%)</title><rect x="33.1071%" y="725" width="0.0200%" height="15" fill="rgb(253,177,16)" fg:x="178617" fg:w="108"/><text x="33.3571%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (98 samples, 0.02%)</title><rect x="33.1089%" y="709" width="0.0182%" height="15" fill="rgb(217,32,34)" fg:x="178627" fg:w="98"/><text x="33.3589%" y="719.50"></text></g><g><title>SystemDictionary::load_instance_class (121 samples, 0.02%)</title><rect x="33.1069%" y="741" width="0.0224%" height="15" fill="rgb(212,7,10)" fg:x="178616" fg:w="121"/><text x="33.3569%" y="751.50"></text></g><g><title>ConstantPool::klass_at_impl (135 samples, 0.03%)</title><rect x="33.1045%" y="789" width="0.0250%" height="15" fill="rgb(245,89,8)" fg:x="178603" fg:w="135"/><text x="33.3545%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (134 samples, 0.02%)</title><rect x="33.1047%" y="773" width="0.0248%" height="15" fill="rgb(237,16,53)" fg:x="178604" fg:w="134"/><text x="33.3547%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (132 samples, 0.02%)</title><rect x="33.1050%" y="757" width="0.0245%" height="15" fill="rgb(250,204,30)" fg:x="178606" fg:w="132"/><text x="33.3550%" y="767.50"></text></g><g><title>Rewriter::rewrite (72 samples, 0.01%)</title><rect x="33.1425%" y="757" width="0.0133%" height="15" fill="rgb(208,77,27)" fg:x="178808" fg:w="72"/><text x="33.3925%" y="767.50"></text></g><g><title>Rewriter::Rewriter (70 samples, 0.01%)</title><rect x="33.1429%" y="741" width="0.0130%" height="15" fill="rgb(250,204,28)" fg:x="178810" fg:w="70"/><text x="33.3929%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (171 samples, 0.03%)</title><rect x="33.1310%" y="773" width="0.0317%" height="15" fill="rgb(244,63,21)" fg:x="178746" fg:w="171"/><text x="33.3810%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (176 samples, 0.03%)</title><rect x="33.1306%" y="789" width="0.0326%" height="15" fill="rgb(236,85,44)" fg:x="178744" fg:w="176"/><text x="33.3806%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (318 samples, 0.06%)</title><rect x="33.1045%" y="805" width="0.0589%" height="15" fill="rgb(215,98,4)" fg:x="178603" fg:w="318"/><text x="33.3545%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (56 samples, 0.01%)</title><rect x="33.1725%" y="805" width="0.0104%" height="15" fill="rgb(235,38,11)" fg:x="178970" fg:w="56"/><text x="33.4225%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (56 samples, 0.01%)</title><rect x="33.1725%" y="789" width="0.0104%" height="15" fill="rgb(254,186,25)" fg:x="178970" fg:w="56"/><text x="33.4225%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (54 samples, 0.01%)</title><rect x="33.1729%" y="773" width="0.0100%" height="15" fill="rgb(225,55,31)" fg:x="178972" fg:w="54"/><text x="33.4229%" y="783.50"></text></g><g><title>LinkResolver::resolve_field (66 samples, 0.01%)</title><rect x="33.2025%" y="757" width="0.0122%" height="15" fill="rgb(211,15,21)" fg:x="179132" fg:w="66"/><text x="33.4525%" y="767.50"></text></g><g><title>LinkResolver::resolve_field_access (91 samples, 0.02%)</title><rect x="33.1981%" y="773" width="0.0169%" height="15" fill="rgb(215,187,41)" fg:x="179108" fg:w="91"/><text x="33.4481%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (107 samples, 0.02%)</title><rect x="33.1957%" y="789" width="0.0198%" height="15" fill="rgb(248,69,32)" fg:x="179095" fg:w="107"/><text x="33.4457%" y="799.50"></text></g><g><title>ClassLoader::load_class (71 samples, 0.01%)</title><rect x="33.2281%" y="693" width="0.0132%" height="15" fill="rgb(252,102,52)" fg:x="179270" fg:w="71"/><text x="33.4781%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (64 samples, 0.01%)</title><rect x="33.2294%" y="677" width="0.0119%" height="15" fill="rgb(253,140,32)" fg:x="179277" fg:w="64"/><text x="33.4794%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (73 samples, 0.01%)</title><rect x="33.2281%" y="709" width="0.0135%" height="15" fill="rgb(216,56,42)" fg:x="179270" fg:w="73"/><text x="33.4781%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (96 samples, 0.02%)</title><rect x="33.2244%" y="757" width="0.0178%" height="15" fill="rgb(216,184,14)" fg:x="179250" fg:w="96"/><text x="33.4744%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (92 samples, 0.02%)</title><rect x="33.2251%" y="741" width="0.0171%" height="15" fill="rgb(237,187,27)" fg:x="179254" fg:w="92"/><text x="33.4751%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (91 samples, 0.02%)</title><rect x="33.2253%" y="725" width="0.0169%" height="15" fill="rgb(219,65,3)" fg:x="179255" fg:w="91"/><text x="33.4753%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (94 samples, 0.02%)</title><rect x="33.2583%" y="725" width="0.0174%" height="15" fill="rgb(245,83,25)" fg:x="179433" fg:w="94"/><text x="33.5083%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (103 samples, 0.02%)</title><rect x="33.2570%" y="741" width="0.0191%" height="15" fill="rgb(214,205,45)" fg:x="179426" fg:w="103"/><text x="33.5070%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (131 samples, 0.02%)</title><rect x="33.2567%" y="757" width="0.0243%" height="15" fill="rgb(241,20,18)" fg:x="179424" fg:w="131"/><text x="33.5067%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (319 samples, 0.06%)</title><rect x="33.2229%" y="773" width="0.0591%" height="15" fill="rgb(232,163,23)" fg:x="179242" fg:w="319"/><text x="33.4729%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (370 samples, 0.07%)</title><rect x="33.2155%" y="789" width="0.0686%" height="15" fill="rgb(214,5,46)" fg:x="179202" fg:w="370"/><text x="33.4655%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (54 samples, 0.01%)</title><rect x="33.2841%" y="789" width="0.0100%" height="15" fill="rgb(229,78,17)" fg:x="179572" fg:w="54"/><text x="33.5341%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (539 samples, 0.10%)</title><rect x="33.1946%" y="805" width="0.0999%" height="15" fill="rgb(248,89,10)" fg:x="179089" fg:w="539"/><text x="33.4446%" y="815.50"></text></g><g><title>JVM_GetClassDeclaredMethods (60 samples, 0.01%)</title><rect x="33.3256%" y="805" width="0.0111%" height="15" fill="rgb(248,54,15)" fg:x="179796" fg:w="60"/><text x="33.5756%" y="815.50"></text></g><g><title>get_class_declared_methods_helper (59 samples, 0.01%)</title><rect x="33.3258%" y="789" width="0.0109%" height="15" fill="rgb(223,116,6)" fg:x="179797" fg:w="59"/><text x="33.5758%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (623 samples, 0.12%)</title><rect x="33.3736%" y="677" width="0.1155%" height="15" fill="rgb(205,125,38)" fg:x="180055" fg:w="623"/><text x="33.6236%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (547 samples, 0.10%)</title><rect x="33.3877%" y="661" width="0.1014%" height="15" fill="rgb(251,78,38)" fg:x="180131" fg:w="547"/><text x="33.6377%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (637 samples, 0.12%)</title><rect x="33.3719%" y="693" width="0.1181%" height="15" fill="rgb(253,78,28)" fg:x="180046" fg:w="637"/><text x="33.6219%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (150 samples, 0.03%)</title><rect x="33.4958%" y="677" width="0.0278%" height="15" fill="rgb(209,120,3)" fg:x="180714" fg:w="150"/><text x="33.7458%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (154 samples, 0.03%)</title><rect x="33.4954%" y="693" width="0.0285%" height="15" fill="rgb(238,229,9)" fg:x="180712" fg:w="154"/><text x="33.7454%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (849 samples, 0.16%)</title><rect x="33.3697%" y="725" width="0.1574%" height="15" fill="rgb(253,159,18)" fg:x="180034" fg:w="849"/><text x="33.6197%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (849 samples, 0.16%)</title><rect x="33.3697%" y="709" width="0.1574%" height="15" fill="rgb(244,42,34)" fg:x="180034" fg:w="849"/><text x="33.6197%" y="719.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (112 samples, 0.02%)</title><rect x="33.5321%" y="677" width="0.0208%" height="15" fill="rgb(224,8,7)" fg:x="180910" fg:w="112"/><text x="33.7821%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (164 samples, 0.03%)</title><rect x="33.5282%" y="693" width="0.0304%" height="15" fill="rgb(210,201,45)" fg:x="180889" fg:w="164"/><text x="33.7782%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (203 samples, 0.04%)</title><rect x="33.5271%" y="709" width="0.0376%" height="15" fill="rgb(252,185,21)" fg:x="180883" fg:w="203"/><text x="33.7771%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (212 samples, 0.04%)</title><rect x="33.5271%" y="725" width="0.0393%" height="15" fill="rgb(223,131,1)" fg:x="180883" fg:w="212"/><text x="33.7771%" y="735.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (66 samples, 0.01%)</title><rect x="33.5664%" y="725" width="0.0122%" height="15" fill="rgb(245,141,16)" fg:x="181095" fg:w="66"/><text x="33.8164%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (1,131 samples, 0.21%)</title><rect x="33.3694%" y="741" width="0.2096%" height="15" fill="rgb(229,55,45)" fg:x="180032" fg:w="1131"/><text x="33.6194%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,164 samples, 0.22%)</title><rect x="33.3694%" y="757" width="0.2158%" height="15" fill="rgb(208,92,15)" fg:x="180032" fg:w="1164"/><text x="33.6194%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (1,179 samples, 0.22%)</title><rect x="33.3668%" y="789" width="0.2185%" height="15" fill="rgb(234,185,47)" fg:x="180018" fg:w="1179"/><text x="33.6168%" y="799.50"></text></g><g><title>jvm_define_class_common (1,178 samples, 0.22%)</title><rect x="33.3669%" y="773" width="0.2183%" height="15" fill="rgb(253,104,50)" fg:x="180019" fg:w="1178"/><text x="33.6169%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,226 samples, 0.23%)</title><rect x="33.3666%" y="805" width="0.2272%" height="15" fill="rgb(205,70,7)" fg:x="180017" fg:w="1226"/><text x="33.6166%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (57 samples, 0.01%)</title><rect x="33.5977%" y="741" width="0.0106%" height="15" fill="rgb(240,178,43)" fg:x="181264" fg:w="57"/><text x="33.8477%" y="751.50"></text></g><g><title>JVM_FindClassFromBootLoader (77 samples, 0.01%)</title><rect x="33.5942%" y="789" width="0.0143%" height="15" fill="rgb(214,112,2)" fg:x="181245" fg:w="77"/><text x="33.8442%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_null (71 samples, 0.01%)</title><rect x="33.5953%" y="773" width="0.0132%" height="15" fill="rgb(206,46,17)" fg:x="181251" fg:w="71"/><text x="33.8453%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (71 samples, 0.01%)</title><rect x="33.5953%" y="757" width="0.0132%" height="15" fill="rgb(225,220,16)" fg:x="181251" fg:w="71"/><text x="33.8453%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (95 samples, 0.02%)</title><rect x="33.5938%" y="805" width="0.0176%" height="15" fill="rgb(238,65,40)" fg:x="181243" fg:w="95"/><text x="33.8438%" y="815.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (72 samples, 0.01%)</title><rect x="33.6348%" y="805" width="0.0133%" height="15" fill="rgb(230,151,21)" fg:x="181464" fg:w="72"/><text x="33.8848%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (68 samples, 0.01%)</title><rect x="33.6355%" y="789" width="0.0126%" height="15" fill="rgb(218,58,49)" fg:x="181468" fg:w="68"/><text x="33.8855%" y="799.50"></text></g><g><title>asm_common_interrupt (54 samples, 0.01%)</title><rect x="33.6533%" y="805" width="0.0100%" height="15" fill="rgb(219,179,14)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="815.50"></text></g><g><title>common_interrupt (54 samples, 0.01%)</title><rect x="33.6533%" y="789" width="0.0100%" height="15" fill="rgb(223,72,1)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="799.50"></text></g><g><title>handle_edge_irq (54 samples, 0.01%)</title><rect x="33.6533%" y="773" width="0.0100%" height="15" fill="rgb(238,126,10)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="783.50"></text></g><g><title>handle_irq_event (54 samples, 0.01%)</title><rect x="33.6533%" y="757" width="0.0100%" height="15" fill="rgb(224,206,38)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="767.50"></text></g><g><title>__handle_irq_event_percpu (54 samples, 0.01%)</title><rect x="33.6533%" y="741" width="0.0100%" height="15" fill="rgb(212,201,54)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="751.50"></text></g><g><title>nvme_irq (54 samples, 0.01%)</title><rect x="33.6533%" y="725" width="0.0100%" height="15" fill="rgb(218,154,48)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="735.50"></text></g><g><title>nvme_process_cq (54 samples, 0.01%)</title><rect x="33.6533%" y="709" width="0.0100%" height="15" fill="rgb(232,93,24)" fg:x="181564" fg:w="54"/><text x="33.9033%" y="719.50"></text></g><g><title>[perf-34054.map] (5,343 samples, 0.99%)</title><rect x="32.6761%" y="821" width="0.9903%" height="15" fill="rgb(245,30,21)" fg:x="176292" fg:w="5343"/><text x="32.9261%" y="831.50"></text></g><g><title>readBytes (66 samples, 0.01%)</title><rect x="33.6815%" y="805" width="0.0122%" height="15" fill="rgb(242,148,29)" fg:x="181716" fg:w="66"/><text x="33.9315%" y="815.50"></text></g><g><title>[unknown] (152 samples, 0.03%)</title><rect x="33.6665%" y="821" width="0.0282%" height="15" fill="rgb(244,153,54)" fg:x="181635" fg:w="152"/><text x="33.9165%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (294 samples, 0.05%)</title><rect x="33.6982%" y="757" width="0.0545%" height="15" fill="rgb(252,87,22)" fg:x="181806" fg:w="294"/><text x="33.9482%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (292 samples, 0.05%)</title><rect x="33.6985%" y="741" width="0.0541%" height="15" fill="rgb(210,51,29)" fg:x="181808" fg:w="292"/><text x="33.9485%" y="751.50"></text></g><g><title>native_write_msr (290 samples, 0.05%)</title><rect x="33.6989%" y="725" width="0.0538%" height="15" fill="rgb(242,136,47)" fg:x="181810" fg:w="290"/><text x="33.9489%" y="735.50"></text></g><g><title>schedule_tail (309 samples, 0.06%)</title><rect x="33.6971%" y="789" width="0.0573%" height="15" fill="rgb(238,68,4)" fg:x="181800" fg:w="309"/><text x="33.9471%" y="799.50"></text></g><g><title>finish_task_switch (306 samples, 0.06%)</title><rect x="33.6976%" y="773" width="0.0567%" height="15" fill="rgb(242,161,30)" fg:x="181803" fg:w="306"/><text x="33.9476%" y="783.50"></text></g><g><title>ret_from_fork (321 samples, 0.06%)</title><rect x="33.6961%" y="805" width="0.0595%" height="15" fill="rgb(218,58,44)" fg:x="181795" fg:w="321"/><text x="33.9461%" y="815.50"></text></g><g><title>JNI_CreateJavaVM (55 samples, 0.01%)</title><rect x="33.7558%" y="773" width="0.0102%" height="15" fill="rgb(252,125,32)" fg:x="182117" fg:w="55"/><text x="34.0058%" y="783.50"></text></g><g><title>Threads::create_vm (55 samples, 0.01%)</title><rect x="33.7558%" y="757" width="0.0102%" height="15" fill="rgb(219,178,0)" fg:x="182117" fg:w="55"/><text x="34.0058%" y="767.50"></text></g><g><title>JavaMain (56 samples, 0.01%)</title><rect x="33.7558%" y="789" width="0.0104%" height="15" fill="rgb(213,152,7)" fg:x="182117" fg:w="56"/><text x="34.0058%" y="799.50"></text></g><g><title>__GI___clone (473 samples, 0.09%)</title><rect x="33.6946%" y="821" width="0.0877%" height="15" fill="rgb(249,109,34)" fg:x="181787" fg:w="473"/><text x="33.9446%" y="831.50"></text></g><g><title>start_thread (144 samples, 0.03%)</title><rect x="33.7556%" y="805" width="0.0267%" height="15" fill="rgb(232,96,21)" fg:x="182116" fg:w="144"/><text x="34.0056%" y="815.50"></text></g><g><title>thread_native_entry (81 samples, 0.02%)</title><rect x="33.7673%" y="789" width="0.0150%" height="15" fill="rgb(228,27,39)" fg:x="182179" fg:w="81"/><text x="34.0173%" y="799.50"></text></g><g><title>java (7,565 samples, 1.40%)</title><rect x="32.3861%" y="837" width="1.4022%" height="15" fill="rgb(211,182,52)" fg:x="174727" fg:w="7565"/><text x="32.6361%" y="847.50"></text></g><g><title>[bash] (72 samples, 0.01%)</title><rect x="33.8033%" y="805" width="0.0133%" height="15" fill="rgb(234,178,38)" fg:x="182373" fg:w="72"/><text x="34.0533%" y="815.50"></text></g><g><title>[bash] (73 samples, 0.01%)</title><rect x="33.8207%" y="789" width="0.0135%" height="15" fill="rgb(221,111,3)" fg:x="182467" fg:w="73"/><text x="34.0707%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.01%)</title><rect x="33.8424%" y="69" width="0.0148%" height="15" fill="rgb(228,175,21)" fg:x="182584" fg:w="80"/><text x="34.0924%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.01%)</title><rect x="33.8426%" y="53" width="0.0146%" height="15" fill="rgb(228,174,43)" fg:x="182585" fg:w="79"/><text x="34.0926%" y="63.50"></text></g><g><title>native_write_msr (79 samples, 0.01%)</title><rect x="33.8426%" y="37" width="0.0146%" height="15" fill="rgb(211,191,0)" fg:x="182585" fg:w="79"/><text x="34.0926%" y="47.50"></text></g><g><title>schedule_tail (96 samples, 0.02%)</title><rect x="33.8400%" y="101" width="0.0178%" height="15" fill="rgb(253,117,3)" fg:x="182571" fg:w="96"/><text x="34.0900%" y="111.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="33.8416%" y="85" width="0.0161%" height="15" fill="rgb(241,127,19)" fg:x="182580" fg:w="87"/><text x="34.0916%" y="95.50"></text></g><g><title>make_child (116 samples, 0.02%)</title><rect x="33.8364%" y="165" width="0.0215%" height="15" fill="rgb(218,103,12)" fg:x="182552" fg:w="116"/><text x="34.0864%" y="175.50"></text></g><g><title>__libc_fork (116 samples, 0.02%)</title><rect x="33.8364%" y="149" width="0.0215%" height="15" fill="rgb(236,214,43)" fg:x="182552" fg:w="116"/><text x="34.0864%" y="159.50"></text></g><g><title>arch_fork (115 samples, 0.02%)</title><rect x="33.8366%" y="133" width="0.0213%" height="15" fill="rgb(244,144,19)" fg:x="182553" fg:w="115"/><text x="34.0866%" y="143.50"></text></g><g><title>ret_from_fork (98 samples, 0.02%)</title><rect x="33.8398%" y="117" width="0.0182%" height="15" fill="rgb(246,188,10)" fg:x="182570" fg:w="98"/><text x="34.0898%" y="127.50"></text></g><g><title>execute_command (129 samples, 0.02%)</title><rect x="33.8342%" y="757" width="0.0239%" height="15" fill="rgb(212,193,33)" fg:x="182540" fg:w="129"/><text x="34.0842%" y="767.50"></text></g><g><title>execute_command_internal (129 samples, 0.02%)</title><rect x="33.8342%" y="741" width="0.0239%" height="15" fill="rgb(241,51,29)" fg:x="182540" fg:w="129"/><text x="34.0842%" y="751.50"></text></g><g><title>[bash] (129 samples, 0.02%)</title><rect x="33.8342%" y="725" width="0.0239%" height="15" fill="rgb(211,58,19)" fg:x="182540" fg:w="129"/><text x="34.0842%" y="735.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="709" width="0.0228%" height="15" fill="rgb(229,111,26)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="719.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="693" width="0.0228%" height="15" fill="rgb(213,115,40)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="703.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="677" width="0.0228%" height="15" fill="rgb(209,56,44)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="687.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="661" width="0.0228%" height="15" fill="rgb(230,108,32)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="671.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="645" width="0.0228%" height="15" fill="rgb(216,165,31)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="655.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="629" width="0.0228%" height="15" fill="rgb(218,122,21)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="639.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="613" width="0.0228%" height="15" fill="rgb(223,224,47)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="623.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="597" width="0.0228%" height="15" fill="rgb(238,102,44)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="607.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="581" width="0.0228%" height="15" fill="rgb(236,46,40)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="591.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="565" width="0.0228%" height="15" fill="rgb(247,202,50)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="575.50"></text></g><g><title>execute_command (123 samples, 0.02%)</title><rect x="33.8353%" y="549" width="0.0228%" height="15" fill="rgb(209,99,20)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="559.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="533" width="0.0228%" height="15" fill="rgb(252,27,34)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="543.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="517" width="0.0228%" height="15" fill="rgb(215,206,23)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="527.50"></text></g><g><title>execute_command (123 samples, 0.02%)</title><rect x="33.8353%" y="501" width="0.0228%" height="15" fill="rgb(212,135,36)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="511.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="485" width="0.0228%" height="15" fill="rgb(240,189,1)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="495.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="469" width="0.0228%" height="15" fill="rgb(242,56,20)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="479.50"></text></g><g><title>execute_command (123 samples, 0.02%)</title><rect x="33.8353%" y="453" width="0.0228%" height="15" fill="rgb(247,132,33)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="463.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="437" width="0.0228%" height="15" fill="rgb(208,149,11)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="447.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="421" width="0.0228%" height="15" fill="rgb(211,33,11)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="431.50"></text></g><g><title>execute_command (123 samples, 0.02%)</title><rect x="33.8353%" y="405" width="0.0228%" height="15" fill="rgb(221,29,38)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="415.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="389" width="0.0228%" height="15" fill="rgb(206,182,49)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="399.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="373" width="0.0228%" height="15" fill="rgb(216,140,1)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="383.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="357" width="0.0228%" height="15" fill="rgb(232,57,40)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="367.50"></text></g><g><title>expand_words (123 samples, 0.02%)</title><rect x="33.8353%" y="341" width="0.0228%" height="15" fill="rgb(224,186,18)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="351.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="325" width="0.0228%" height="15" fill="rgb(215,121,11)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="335.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="309" width="0.0228%" height="15" fill="rgb(245,147,10)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="319.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="293" width="0.0228%" height="15" fill="rgb(238,153,13)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="303.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="277" width="0.0228%" height="15" fill="rgb(233,108,0)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="287.50"></text></g><g><title>command_substitute (123 samples, 0.02%)</title><rect x="33.8353%" y="261" width="0.0228%" height="15" fill="rgb(212,157,17)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="271.50"></text></g><g><title>parse_and_execute (123 samples, 0.02%)</title><rect x="33.8353%" y="245" width="0.0228%" height="15" fill="rgb(225,213,38)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="255.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="229" width="0.0228%" height="15" fill="rgb(248,16,11)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="239.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="213" width="0.0228%" height="15" fill="rgb(241,33,4)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="223.50"></text></g><g><title>[bash] (123 samples, 0.02%)</title><rect x="33.8353%" y="197" width="0.0228%" height="15" fill="rgb(222,26,43)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="207.50"></text></g><g><title>execute_command_internal (123 samples, 0.02%)</title><rect x="33.8353%" y="181" width="0.0228%" height="15" fill="rgb(243,29,36)" fg:x="182546" fg:w="123"/><text x="34.0853%" y="191.50"></text></g><g><title>execute_command_internal (203 samples, 0.04%)</title><rect x="33.8207%" y="805" width="0.0376%" height="15" fill="rgb(241,9,27)" fg:x="182467" fg:w="203"/><text x="34.0707%" y="815.50"></text></g><g><title>execute_command_internal (130 samples, 0.02%)</title><rect x="33.8342%" y="789" width="0.0241%" height="15" fill="rgb(205,117,26)" fg:x="182540" fg:w="130"/><text x="34.0842%" y="799.50"></text></g><g><title>[bash] (130 samples, 0.02%)</title><rect x="33.8342%" y="773" width="0.0241%" height="15" fill="rgb(209,80,39)" fg:x="182540" fg:w="130"/><text x="34.0842%" y="783.50"></text></g><g><title>[unknown] (326 samples, 0.06%)</title><rect x="33.8033%" y="821" width="0.0604%" height="15" fill="rgb(239,155,6)" fg:x="182373" fg:w="326"/><text x="34.0533%" y="831.50"></text></g><g><title>arch_fork (67 samples, 0.01%)</title><rect x="33.8819%" y="645" width="0.0124%" height="15" fill="rgb(212,104,12)" fg:x="182797" fg:w="67"/><text x="34.1319%" y="655.50"></text></g><g><title>ret_from_fork (61 samples, 0.01%)</title><rect x="33.8830%" y="629" width="0.0113%" height="15" fill="rgb(234,204,3)" fg:x="182803" fg:w="61"/><text x="34.1330%" y="639.50"></text></g><g><title>schedule_tail (61 samples, 0.01%)</title><rect x="33.8830%" y="613" width="0.0113%" height="15" fill="rgb(251,218,7)" fg:x="182803" fg:w="61"/><text x="34.1330%" y="623.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="33.8835%" y="597" width="0.0108%" height="15" fill="rgb(221,81,32)" fg:x="182806" fg:w="58"/><text x="34.1335%" y="607.50"></text></g><g><title>__libc_fork (70 samples, 0.01%)</title><rect x="33.8815%" y="661" width="0.0130%" height="15" fill="rgb(214,152,26)" fg:x="182795" fg:w="70"/><text x="34.1315%" y="671.50"></text></g><g><title>make_child (72 samples, 0.01%)</title><rect x="33.8815%" y="677" width="0.0133%" height="15" fill="rgb(223,22,3)" fg:x="182795" fg:w="72"/><text x="34.1315%" y="687.50"></text></g><g><title>execute_command (139 samples, 0.03%)</title><rect x="33.8741%" y="709" width="0.0258%" height="15" fill="rgb(207,174,7)" fg:x="182755" fg:w="139"/><text x="34.1241%" y="719.50"></text></g><g><title>execute_command_internal (139 samples, 0.03%)</title><rect x="33.8741%" y="693" width="0.0258%" height="15" fill="rgb(224,19,52)" fg:x="182755" fg:w="139"/><text x="34.1241%" y="703.50"></text></g><g><title>[bash] (161 samples, 0.03%)</title><rect x="33.8733%" y="725" width="0.0298%" height="15" fill="rgb(228,24,14)" fg:x="182751" fg:w="161"/><text x="34.1233%" y="735.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="33.9050%" y="581" width="0.0100%" height="15" fill="rgb(230,153,43)" fg:x="182922" fg:w="54"/><text x="34.1550%" y="591.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="33.9050%" y="597" width="0.0106%" height="15" fill="rgb(231,106,12)" fg:x="182922" fg:w="57"/><text x="34.1550%" y="607.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="33.9041%" y="629" width="0.0120%" height="15" fill="rgb(215,92,2)" fg:x="182917" fg:w="65"/><text x="34.1541%" y="639.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="33.9048%" y="613" width="0.0113%" height="15" fill="rgb(249,143,25)" fg:x="182921" fg:w="61"/><text x="34.1548%" y="623.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="33.9039%" y="645" width="0.0124%" height="15" fill="rgb(252,7,35)" fg:x="182916" fg:w="67"/><text x="34.1539%" y="655.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="33.9037%" y="661" width="0.0128%" height="15" fill="rgb(216,69,40)" fg:x="182915" fg:w="69"/><text x="34.1537%" y="671.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="33.9037%" y="709" width="0.0130%" height="15" fill="rgb(240,36,33)" fg:x="182915" fg:w="70"/><text x="34.1537%" y="719.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="33.9037%" y="693" width="0.0130%" height="15" fill="rgb(231,128,14)" fg:x="182915" fg:w="70"/><text x="34.1537%" y="703.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="33.9037%" y="677" width="0.0130%" height="15" fill="rgb(245,143,14)" fg:x="182915" fg:w="70"/><text x="34.1537%" y="687.50"></text></g><g><title>bind_function (72 samples, 0.01%)</title><rect x="33.9035%" y="725" width="0.0133%" height="15" fill="rgb(222,130,28)" fg:x="182914" fg:w="72"/><text x="34.1535%" y="735.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="33.9193%" y="597" width="0.0100%" height="15" fill="rgb(212,10,48)" fg:x="182999" fg:w="54"/><text x="34.1693%" y="607.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="33.9187%" y="613" width="0.0108%" height="15" fill="rgb(254,118,45)" fg:x="182996" fg:w="58"/><text x="34.1687%" y="623.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="33.9176%" y="629" width="0.0124%" height="15" fill="rgb(228,6,45)" fg:x="182990" fg:w="67"/><text x="34.1676%" y="639.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="33.9174%" y="661" width="0.0130%" height="15" fill="rgb(241,18,35)" fg:x="182989" fg:w="70"/><text x="34.1674%" y="671.50"></text></g><g><title>copy_command (70 samples, 0.01%)</title><rect x="33.9174%" y="645" width="0.0130%" height="15" fill="rgb(227,214,53)" fg:x="182989" fg:w="70"/><text x="34.1674%" y="655.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="33.9174%" y="693" width="0.0132%" height="15" fill="rgb(224,107,51)" fg:x="182989" fg:w="71"/><text x="34.1674%" y="703.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="33.9174%" y="677" width="0.0132%" height="15" fill="rgb(248,60,28)" fg:x="182989" fg:w="71"/><text x="34.1674%" y="687.50"></text></g><g><title>copy_command (72 samples, 0.01%)</title><rect x="33.9174%" y="709" width="0.0133%" height="15" fill="rgb(249,101,23)" fg:x="182989" fg:w="72"/><text x="34.1674%" y="719.50"></text></g><g><title>copy_function_def_contents (74 samples, 0.01%)</title><rect x="33.9173%" y="725" width="0.0137%" height="15" fill="rgb(228,51,19)" fg:x="182988" fg:w="74"/><text x="34.1673%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="33.9399%" y="549" width="0.0119%" height="15" fill="rgb(213,20,6)" fg:x="183110" fg:w="64"/><text x="34.1899%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="33.9402%" y="533" width="0.0115%" height="15" fill="rgb(212,124,10)" fg:x="183112" fg:w="62"/><text x="34.1902%" y="543.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="33.9402%" y="517" width="0.0115%" height="15" fill="rgb(248,3,40)" fg:x="183112" fg:w="62"/><text x="34.1902%" y="527.50"></text></g><g><title>arch_fork (83 samples, 0.02%)</title><rect x="33.9373%" y="613" width="0.0154%" height="15" fill="rgb(223,178,23)" fg:x="183096" fg:w="83"/><text x="34.1873%" y="623.50"></text></g><g><title>ret_from_fork (77 samples, 0.01%)</title><rect x="33.9384%" y="597" width="0.0143%" height="15" fill="rgb(240,132,45)" fg:x="183102" fg:w="77"/><text x="34.1884%" y="607.50"></text></g><g><title>schedule_tail (77 samples, 0.01%)</title><rect x="33.9384%" y="581" width="0.0143%" height="15" fill="rgb(245,164,36)" fg:x="183102" fg:w="77"/><text x="34.1884%" y="591.50"></text></g><g><title>finish_task_switch (70 samples, 0.01%)</title><rect x="33.9397%" y="565" width="0.0130%" height="15" fill="rgb(231,188,53)" fg:x="183109" fg:w="70"/><text x="34.1897%" y="575.50"></text></g><g><title>__libc_fork (87 samples, 0.02%)</title><rect x="33.9367%" y="629" width="0.0161%" height="15" fill="rgb(237,198,39)" fg:x="183093" fg:w="87"/><text x="34.1867%" y="639.50"></text></g><g><title>make_child (89 samples, 0.02%)</title><rect x="33.9367%" y="645" width="0.0165%" height="15" fill="rgb(223,120,35)" fg:x="183093" fg:w="89"/><text x="34.1867%" y="655.50"></text></g><g><title>__libc_fork (62 samples, 0.01%)</title><rect x="33.9567%" y="597" width="0.0115%" height="15" fill="rgb(253,107,49)" fg:x="183201" fg:w="62"/><text x="34.2067%" y="607.50"></text></g><g><title>arch_fork (61 samples, 0.01%)</title><rect x="33.9569%" y="581" width="0.0113%" height="15" fill="rgb(216,44,31)" fg:x="183202" fg:w="61"/><text x="34.2069%" y="591.50"></text></g><g><title>ret_from_fork (55 samples, 0.01%)</title><rect x="33.9580%" y="565" width="0.0102%" height="15" fill="rgb(253,87,21)" fg:x="183208" fg:w="55"/><text x="34.2080%" y="575.50"></text></g><g><title>schedule_tail (55 samples, 0.01%)</title><rect x="33.9580%" y="549" width="0.0102%" height="15" fill="rgb(226,18,2)" fg:x="183208" fg:w="55"/><text x="34.2080%" y="559.50"></text></g><g><title>make_child (64 samples, 0.01%)</title><rect x="33.9565%" y="613" width="0.0119%" height="15" fill="rgb(216,8,46)" fg:x="183200" fg:w="64"/><text x="34.2065%" y="623.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="33.9536%" y="629" width="0.0183%" height="15" fill="rgb(226,140,39)" fg:x="183184" fg:w="99"/><text x="34.2036%" y="639.50"></text></g><g><title>parse_and_execute (105 samples, 0.02%)</title><rect x="33.9532%" y="645" width="0.0195%" height="15" fill="rgb(221,194,54)" fg:x="183182" fg:w="105"/><text x="34.2032%" y="655.50"></text></g><g><title>command_substitute (230 samples, 0.04%)</title><rect x="33.9360%" y="661" width="0.0426%" height="15" fill="rgb(213,92,11)" fg:x="183089" fg:w="230"/><text x="34.1860%" y="671.50"></text></g><g><title>expand_word_leave_quoted (231 samples, 0.04%)</title><rect x="33.9360%" y="693" width="0.0428%" height="15" fill="rgb(229,162,46)" fg:x="183089" fg:w="231"/><text x="34.1860%" y="703.50"></text></g><g><title>[bash] (231 samples, 0.04%)</title><rect x="33.9360%" y="677" width="0.0428%" height="15" fill="rgb(214,111,36)" fg:x="183089" fg:w="231"/><text x="34.1860%" y="687.50"></text></g><g><title>execute_command (266 samples, 0.05%)</title><rect x="33.9312%" y="725" width="0.0493%" height="15" fill="rgb(207,6,21)" fg:x="183063" fg:w="266"/><text x="34.1812%" y="735.50"></text></g><g><title>execute_command_internal (266 samples, 0.05%)</title><rect x="33.9312%" y="709" width="0.0493%" height="15" fill="rgb(213,127,38)" fg:x="183063" fg:w="266"/><text x="34.1812%" y="719.50"></text></g><g><title>__libc_fork (54 samples, 0.01%)</title><rect x="33.9836%" y="613" width="0.0100%" height="15" fill="rgb(238,118,32)" fg:x="183346" fg:w="54"/><text x="34.2336%" y="623.50"></text></g><g><title>make_child (57 samples, 0.01%)</title><rect x="33.9836%" y="629" width="0.0106%" height="15" fill="rgb(240,139,39)" fg:x="183346" fg:w="57"/><text x="34.2336%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.02%)</title><rect x="34.0116%" y="453" width="0.0202%" height="15" fill="rgb(235,10,37)" fg:x="183497" fg:w="109"/><text x="34.2616%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="34.0118%" y="437" width="0.0200%" height="15" fill="rgb(249,171,38)" fg:x="183498" fg:w="108"/><text x="34.2618%" y="447.50"></text></g><g><title>native_write_msr (107 samples, 0.02%)</title><rect x="34.0120%" y="421" width="0.0198%" height="15" fill="rgb(242,144,32)" fg:x="183499" fg:w="107"/><text x="34.2620%" y="431.50"></text></g><g><title>schedule_tail (129 samples, 0.02%)</title><rect x="34.0083%" y="485" width="0.0239%" height="15" fill="rgb(217,117,21)" fg:x="183479" fg:w="129"/><text x="34.2583%" y="495.50"></text></g><g><title>finish_task_switch (118 samples, 0.02%)</title><rect x="34.0103%" y="469" width="0.0219%" height="15" fill="rgb(249,87,1)" fg:x="183490" fg:w="118"/><text x="34.2603%" y="479.50"></text></g><g><title>arch_fork (147 samples, 0.03%)</title><rect x="34.0051%" y="517" width="0.0272%" height="15" fill="rgb(248,196,48)" fg:x="183462" fg:w="147"/><text x="34.2551%" y="527.50"></text></g><g><title>ret_from_fork (131 samples, 0.02%)</title><rect x="34.0081%" y="501" width="0.0243%" height="15" fill="rgb(251,206,33)" fg:x="183478" fg:w="131"/><text x="34.2581%" y="511.50"></text></g><g><title>__libc_fork (153 samples, 0.03%)</title><rect x="34.0042%" y="533" width="0.0284%" height="15" fill="rgb(232,141,28)" fg:x="183457" fg:w="153"/><text x="34.2542%" y="543.50"></text></g><g><title>make_child (158 samples, 0.03%)</title><rect x="34.0042%" y="549" width="0.0293%" height="15" fill="rgb(209,167,14)" fg:x="183457" fg:w="158"/><text x="34.2542%" y="559.50"></text></g><g><title>execute_command_internal (266 samples, 0.05%)</title><rect x="33.9944%" y="613" width="0.0493%" height="15" fill="rgb(225,11,50)" fg:x="183404" fg:w="266"/><text x="34.2444%" y="623.50"></text></g><g><title>[bash] (266 samples, 0.05%)</title><rect x="33.9944%" y="597" width="0.0493%" height="15" fill="rgb(209,50,20)" fg:x="183404" fg:w="266"/><text x="34.2444%" y="607.50"></text></g><g><title>[bash] (266 samples, 0.05%)</title><rect x="33.9944%" y="581" width="0.0493%" height="15" fill="rgb(212,17,46)" fg:x="183404" fg:w="266"/><text x="34.2444%" y="591.50"></text></g><g><title>execute_command_internal (263 samples, 0.05%)</title><rect x="33.9949%" y="565" width="0.0487%" height="15" fill="rgb(216,101,39)" fg:x="183407" fg:w="263"/><text x="34.2449%" y="575.50"></text></g><g><title>wait_for (54 samples, 0.01%)</title><rect x="34.0337%" y="549" width="0.0100%" height="15" fill="rgb(212,228,48)" fg:x="183616" fg:w="54"/><text x="34.2837%" y="559.50"></text></g><g><title>parse_and_execute (270 samples, 0.05%)</title><rect x="33.9942%" y="629" width="0.0500%" height="15" fill="rgb(250,6,50)" fg:x="183403" fg:w="270"/><text x="34.2442%" y="639.50"></text></g><g><title>command_substitute (355 samples, 0.07%)</title><rect x="33.9821%" y="645" width="0.0658%" height="15" fill="rgb(250,160,48)" fg:x="183338" fg:w="355"/><text x="34.2321%" y="655.50"></text></g><g><title>[bash] (364 samples, 0.07%)</title><rect x="33.9806%" y="661" width="0.0675%" height="15" fill="rgb(244,216,33)" fg:x="183330" fg:w="364"/><text x="34.2306%" y="671.50"></text></g><g><title>[bash] (367 samples, 0.07%)</title><rect x="33.9805%" y="677" width="0.0680%" height="15" fill="rgb(207,157,5)" fg:x="183329" fg:w="367"/><text x="34.2305%" y="687.50"></text></g><g><title>[bash] (368 samples, 0.07%)</title><rect x="33.9805%" y="693" width="0.0682%" height="15" fill="rgb(228,199,8)" fg:x="183329" fg:w="368"/><text x="34.2305%" y="703.50"></text></g><g><title>[bash] (376 samples, 0.07%)</title><rect x="33.9805%" y="709" width="0.0697%" height="15" fill="rgb(227,80,20)" fg:x="183329" fg:w="376"/><text x="34.2305%" y="719.50"></text></g><g><title>expand_words (380 samples, 0.07%)</title><rect x="33.9805%" y="725" width="0.0704%" height="15" fill="rgb(222,9,33)" fg:x="183329" fg:w="380"/><text x="34.2305%" y="735.50"></text></g><g><title>execute_command_internal (961 samples, 0.18%)</title><rect x="33.8730%" y="741" width="0.1781%" height="15" fill="rgb(239,44,28)" fg:x="182749" fg:w="961"/><text x="34.1230%" y="751.50"></text></g><g><title>execute_command (966 samples, 0.18%)</title><rect x="33.8724%" y="757" width="0.1791%" height="15" fill="rgb(249,187,43)" fg:x="182746" fg:w="966"/><text x="34.1224%" y="767.50"></text></g><g><title>[bash] (214 samples, 0.04%)</title><rect x="34.0798%" y="693" width="0.0397%" height="15" fill="rgb(216,141,28)" fg:x="183865" fg:w="214"/><text x="34.3298%" y="703.50"></text></g><g><title>[bash] (379 samples, 0.07%)</title><rect x="34.0622%" y="709" width="0.0702%" height="15" fill="rgb(230,154,53)" fg:x="183770" fg:w="379"/><text x="34.3122%" y="719.50"></text></g><g><title>reader_loop (1,483 samples, 0.27%)</title><rect x="33.8655%" y="773" width="0.2749%" height="15" fill="rgb(227,82,4)" fg:x="182709" fg:w="1483"/><text x="34.1155%" y="783.50"></text></g><g><title>read_command (480 samples, 0.09%)</title><rect x="34.0515%" y="757" width="0.0890%" height="15" fill="rgb(220,107,16)" fg:x="183712" fg:w="480"/><text x="34.3015%" y="767.50"></text></g><g><title>parse_command (480 samples, 0.09%)</title><rect x="34.0515%" y="741" width="0.0890%" height="15" fill="rgb(207,187,2)" fg:x="183712" fg:w="480"/><text x="34.3015%" y="751.50"></text></g><g><title>yyparse (480 samples, 0.09%)</title><rect x="34.0515%" y="725" width="0.0890%" height="15" fill="rgb(210,162,52)" fg:x="183712" fg:w="480"/><text x="34.3015%" y="735.50"></text></g><g><title>__libc_start_main (1,496 samples, 0.28%)</title><rect x="33.8639%" y="805" width="0.2773%" height="15" fill="rgb(217,216,49)" fg:x="182700" fg:w="1496"/><text x="34.1139%" y="815.50"></text></g><g><title>main (1,496 samples, 0.28%)</title><rect x="33.8639%" y="789" width="0.2773%" height="15" fill="rgb(218,146,49)" fg:x="182700" fg:w="1496"/><text x="34.1139%" y="799.50"></text></g><g><title>_start (1,516 samples, 0.28%)</title><rect x="33.8639%" y="821" width="0.2810%" height="15" fill="rgb(216,55,40)" fg:x="182700" fg:w="1516"/><text x="34.1139%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="34.1519%" y="821" width="0.0102%" height="15" fill="rgb(208,196,21)" fg:x="184254" fg:w="55"/><text x="34.4019%" y="831.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="34.1519%" y="805" width="0.0102%" height="15" fill="rgb(242,117,42)" fg:x="184254" fg:w="55"/><text x="34.4019%" y="815.50"></text></g><g><title>libtool (2,020 samples, 0.37%)</title><rect x="33.7882%" y="837" width="0.3744%" height="15" fill="rgb(210,11,23)" fg:x="182292" fg:w="2020"/><text x="34.0382%" y="847.50"></text></g><g><title>copy_namespaces (63 samples, 0.01%)</title><rect x="34.1779%" y="693" width="0.0117%" height="15" fill="rgb(217,110,2)" fg:x="184394" fg:w="63"/><text x="34.4279%" y="703.50"></text></g><g><title>create_new_namespaces (63 samples, 0.01%)</title><rect x="34.1779%" y="677" width="0.0117%" height="15" fill="rgb(229,77,54)" fg:x="184394" fg:w="63"/><text x="34.4279%" y="687.50"></text></g><g><title>copy_process (128 samples, 0.02%)</title><rect x="34.1753%" y="709" width="0.0237%" height="15" fill="rgb(218,53,16)" fg:x="184380" fg:w="128"/><text x="34.4253%" y="719.50"></text></g><g><title>__libc_start_main (136 samples, 0.03%)</title><rect x="34.1751%" y="805" width="0.0252%" height="15" fill="rgb(215,38,13)" fg:x="184379" fg:w="136"/><text x="34.4251%" y="815.50"></text></g><g><title>__GI___clone (136 samples, 0.03%)</title><rect x="34.1751%" y="789" width="0.0252%" height="15" fill="rgb(235,42,18)" fg:x="184379" fg:w="136"/><text x="34.4251%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="34.1753%" y="773" width="0.0250%" height="15" fill="rgb(219,66,54)" fg:x="184380" fg:w="135"/><text x="34.4253%" y="783.50"></text></g><g><title>do_syscall_64 (135 samples, 0.03%)</title><rect x="34.1753%" y="757" width="0.0250%" height="15" fill="rgb(222,205,4)" fg:x="184380" fg:w="135"/><text x="34.4253%" y="767.50"></text></g><g><title>__do_sys_clone (135 samples, 0.03%)</title><rect x="34.1753%" y="741" width="0.0250%" height="15" fill="rgb(227,213,46)" fg:x="184380" fg:w="135"/><text x="34.4253%" y="751.50"></text></g><g><title>kernel_clone (135 samples, 0.03%)</title><rect x="34.1753%" y="725" width="0.0250%" height="15" fill="rgb(250,145,42)" fg:x="184380" fg:w="135"/><text x="34.4253%" y="735.50"></text></g><g><title>[unknown] (204 samples, 0.04%)</title><rect x="34.1719%" y="821" width="0.0378%" height="15" fill="rgb(219,15,2)" fg:x="184362" fg:w="204"/><text x="34.4219%" y="831.50"></text></g><g><title>__GI___fgets_unlocked (59 samples, 0.01%)</title><rect x="34.2255%" y="757" width="0.0109%" height="15" fill="rgb(231,181,52)" fg:x="184651" fg:w="59"/><text x="34.4755%" y="767.50"></text></g><g><title>__GI__IO_getline_info (59 samples, 0.01%)</title><rect x="34.2255%" y="741" width="0.0109%" height="15" fill="rgb(235,1,42)" fg:x="184651" fg:w="59"/><text x="34.4755%" y="751.50"></text></g><g><title>__GI__IO_default_uflow (55 samples, 0.01%)</title><rect x="34.2262%" y="725" width="0.0102%" height="15" fill="rgb(249,88,27)" fg:x="184655" fg:w="55"/><text x="34.4762%" y="735.50"></text></g><g><title>_IO_new_file_underflow (55 samples, 0.01%)</title><rect x="34.2262%" y="709" width="0.0102%" height="15" fill="rgb(235,145,16)" fg:x="184655" fg:w="55"/><text x="34.4762%" y="719.50"></text></g><g><title>__GI___read_nocancel (54 samples, 0.01%)</title><rect x="34.2264%" y="693" width="0.0100%" height="15" fill="rgb(237,114,19)" fg:x="184656" fg:w="54"/><text x="34.4764%" y="703.50"></text></g><g><title>__GI___getmntent_r (79 samples, 0.01%)</title><rect x="34.2249%" y="789" width="0.0146%" height="15" fill="rgb(238,51,50)" fg:x="184648" fg:w="79"/><text x="34.4749%" y="799.50"></text></g><g><title>get_mnt_entry (77 samples, 0.01%)</title><rect x="34.2253%" y="773" width="0.0143%" height="15" fill="rgb(205,194,25)" fg:x="184650" fg:w="77"/><text x="34.4753%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (263 samples, 0.05%)</title><rect x="34.2461%" y="661" width="0.0487%" height="15" fill="rgb(215,203,17)" fg:x="184762" fg:w="263"/><text x="34.4961%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (261 samples, 0.05%)</title><rect x="34.2464%" y="645" width="0.0484%" height="15" fill="rgb(233,112,49)" fg:x="184764" fg:w="261"/><text x="34.4964%" y="655.50"></text></g><g><title>native_write_msr (259 samples, 0.05%)</title><rect x="34.2468%" y="629" width="0.0480%" height="15" fill="rgb(241,130,26)" fg:x="184766" fg:w="259"/><text x="34.4968%" y="639.50"></text></g><g><title>finish_task_switch (275 samples, 0.05%)</title><rect x="34.2455%" y="677" width="0.0510%" height="15" fill="rgb(252,223,19)" fg:x="184759" fg:w="275"/><text x="34.4955%" y="687.50"></text></g><g><title>schedule (283 samples, 0.05%)</title><rect x="34.2446%" y="709" width="0.0525%" height="15" fill="rgb(211,95,25)" fg:x="184754" fg:w="283"/><text x="34.4946%" y="719.50"></text></g><g><title>__schedule (282 samples, 0.05%)</title><rect x="34.2448%" y="693" width="0.0523%" height="15" fill="rgb(251,182,27)" fg:x="184755" fg:w="282"/><text x="34.4948%" y="703.50"></text></g><g><title>do_syscall_64 (313 samples, 0.06%)</title><rect x="34.2437%" y="757" width="0.0580%" height="15" fill="rgb(238,24,4)" fg:x="184749" fg:w="313"/><text x="34.4937%" y="767.50"></text></g><g><title>kernel_wait4 (312 samples, 0.06%)</title><rect x="34.2438%" y="741" width="0.0578%" height="15" fill="rgb(224,220,25)" fg:x="184750" fg:w="312"/><text x="34.4938%" y="751.50"></text></g><g><title>do_wait (312 samples, 0.06%)</title><rect x="34.2438%" y="725" width="0.0578%" height="15" fill="rgb(239,133,26)" fg:x="184750" fg:w="312"/><text x="34.4938%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (314 samples, 0.06%)</title><rect x="34.2437%" y="773" width="0.0582%" height="15" fill="rgb(211,94,48)" fg:x="184749" fg:w="314"/><text x="34.4937%" y="783.50"></text></g><g><title>__GI___wait4 (317 samples, 0.06%)</title><rect x="34.2433%" y="789" width="0.0588%" height="15" fill="rgb(239,87,6)" fg:x="184747" fg:w="317"/><text x="34.4933%" y="799.50"></text></g><g><title>bprm_execve (87 samples, 0.02%)</title><rect x="34.3059%" y="693" width="0.0161%" height="15" fill="rgb(227,62,0)" fg:x="185085" fg:w="87"/><text x="34.5559%" y="703.50"></text></g><g><title>do_execveat_common (93 samples, 0.02%)</title><rect x="34.3056%" y="709" width="0.0172%" height="15" fill="rgb(211,226,4)" fg:x="185083" fg:w="93"/><text x="34.5556%" y="719.50"></text></g><g><title>__execvpe_common (98 samples, 0.02%)</title><rect x="34.3048%" y="789" width="0.0182%" height="15" fill="rgb(253,38,52)" fg:x="185079" fg:w="98"/><text x="34.5548%" y="799.50"></text></g><g><title>__GI_execve (94 samples, 0.02%)</title><rect x="34.3056%" y="773" width="0.0174%" height="15" fill="rgb(229,126,40)" fg:x="185083" fg:w="94"/><text x="34.5556%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.02%)</title><rect x="34.3056%" y="757" width="0.0174%" height="15" fill="rgb(229,165,44)" fg:x="185083" fg:w="94"/><text x="34.5556%" y="767.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="34.3056%" y="741" width="0.0174%" height="15" fill="rgb(247,95,47)" fg:x="185083" fg:w="94"/><text x="34.5556%" y="751.50"></text></g><g><title>__x64_sys_execve (94 samples, 0.02%)</title><rect x="34.3056%" y="725" width="0.0174%" height="15" fill="rgb(216,140,30)" fg:x="185083" fg:w="94"/><text x="34.5556%" y="735.50"></text></g><g><title>copy_process (72 samples, 0.01%)</title><rect x="34.3254%" y="693" width="0.0133%" height="15" fill="rgb(246,214,8)" fg:x="185190" fg:w="72"/><text x="34.5754%" y="703.50"></text></g><g><title>__do_sys_clone (76 samples, 0.01%)</title><rect x="34.3254%" y="725" width="0.0141%" height="15" fill="rgb(227,224,15)" fg:x="185190" fg:w="76"/><text x="34.5754%" y="735.50"></text></g><g><title>kernel_clone (76 samples, 0.01%)</title><rect x="34.3254%" y="709" width="0.0141%" height="15" fill="rgb(233,175,4)" fg:x="185190" fg:w="76"/><text x="34.5754%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="34.3254%" y="757" width="0.0143%" height="15" fill="rgb(221,66,45)" fg:x="185190" fg:w="77"/><text x="34.5754%" y="767.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="34.3254%" y="741" width="0.0143%" height="15" fill="rgb(221,178,18)" fg:x="185190" fg:w="77"/><text x="34.5754%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (222 samples, 0.04%)</title><rect x="34.3443%" y="709" width="0.0411%" height="15" fill="rgb(213,81,29)" fg:x="185292" fg:w="222"/><text x="34.5943%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (215 samples, 0.04%)</title><rect x="34.3456%" y="693" width="0.0399%" height="15" fill="rgb(220,89,49)" fg:x="185299" fg:w="215"/><text x="34.5956%" y="703.50"></text></g><g><title>native_write_msr (214 samples, 0.04%)</title><rect x="34.3458%" y="677" width="0.0397%" height="15" fill="rgb(227,60,33)" fg:x="185300" fg:w="214"/><text x="34.5958%" y="687.50"></text></g><g><title>schedule_tail (248 samples, 0.05%)</title><rect x="34.3402%" y="741" width="0.0460%" height="15" fill="rgb(205,113,12)" fg:x="185270" fg:w="248"/><text x="34.5902%" y="751.50"></text></g><g><title>finish_task_switch (231 samples, 0.04%)</title><rect x="34.3434%" y="725" width="0.0428%" height="15" fill="rgb(211,32,1)" fg:x="185287" fg:w="231"/><text x="34.5934%" y="735.50"></text></g><g><title>arch_fork (340 samples, 0.06%)</title><rect x="34.3235%" y="773" width="0.0630%" height="15" fill="rgb(246,2,12)" fg:x="185180" fg:w="340"/><text x="34.5735%" y="783.50"></text></g><g><title>ret_from_fork (250 samples, 0.05%)</title><rect x="34.3402%" y="757" width="0.0463%" height="15" fill="rgb(243,37,27)" fg:x="185270" fg:w="250"/><text x="34.5902%" y="767.50"></text></g><g><title>__libc_fork (354 samples, 0.07%)</title><rect x="34.3230%" y="789" width="0.0656%" height="15" fill="rgb(248,211,31)" fg:x="185177" fg:w="354"/><text x="34.5730%" y="799.50"></text></g><g><title>path_mount (66 samples, 0.01%)</title><rect x="34.3997%" y="725" width="0.0122%" height="15" fill="rgb(242,146,47)" fg:x="185591" fg:w="66"/><text x="34.6497%" y="735.50"></text></g><g><title>do_syscall_64 (123 samples, 0.02%)</title><rect x="34.3925%" y="757" width="0.0228%" height="15" fill="rgb(206,70,20)" fg:x="185552" fg:w="123"/><text x="34.6425%" y="767.50"></text></g><g><title>__x64_sys_mount (122 samples, 0.02%)</title><rect x="34.3927%" y="741" width="0.0226%" height="15" fill="rgb(215,10,51)" fg:x="185553" fg:w="122"/><text x="34.6427%" y="751.50"></text></g><g><title>__mount (129 samples, 0.02%)</title><rect x="34.3918%" y="789" width="0.0239%" height="15" fill="rgb(243,178,53)" fg:x="185548" fg:w="129"/><text x="34.6418%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (126 samples, 0.02%)</title><rect x="34.3923%" y="773" width="0.0234%" height="15" fill="rgb(233,221,20)" fg:x="185551" fg:w="126"/><text x="34.6423%" y="783.50"></text></g><g><title>Pid1Main (1,198 samples, 0.22%)</title><rect x="34.2107%" y="805" width="0.2221%" height="15" fill="rgb(218,95,35)" fg:x="184571" fg:w="1198"/><text x="34.4607%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (310 samples, 0.06%)</title><rect x="34.4405%" y="757" width="0.0575%" height="15" fill="rgb(229,13,5)" fg:x="185811" fg:w="310"/><text x="34.6905%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (304 samples, 0.06%)</title><rect x="34.4416%" y="741" width="0.0563%" height="15" fill="rgb(252,164,30)" fg:x="185817" fg:w="304"/><text x="34.6916%" y="751.50"></text></g><g><title>native_write_msr (303 samples, 0.06%)</title><rect x="34.4418%" y="725" width="0.0562%" height="15" fill="rgb(232,68,36)" fg:x="185818" fg:w="303"/><text x="34.6918%" y="735.50"></text></g><g><title>schedule_tail (325 samples, 0.06%)</title><rect x="34.4387%" y="789" width="0.0602%" height="15" fill="rgb(219,59,54)" fg:x="185801" fg:w="325"/><text x="34.6887%" y="799.50"></text></g><g><title>finish_task_switch (323 samples, 0.06%)</title><rect x="34.4390%" y="773" width="0.0599%" height="15" fill="rgb(250,92,33)" fg:x="185803" fg:w="323"/><text x="34.6890%" y="783.50"></text></g><g><title>ret_from_fork (340 samples, 0.06%)</title><rect x="34.4372%" y="805" width="0.0630%" height="15" fill="rgb(229,162,54)" fg:x="185793" fg:w="340"/><text x="34.6872%" y="815.50"></text></g><g><title>__GI___clone (1,568 samples, 0.29%)</title><rect x="34.2097%" y="821" width="0.2906%" height="15" fill="rgb(244,114,52)" fg:x="184566" fg:w="1568"/><text x="34.4597%" y="831.50"></text></g><g><title>__GI_exit (62 samples, 0.01%)</title><rect x="34.5121%" y="789" width="0.0115%" height="15" fill="rgb(212,211,43)" fg:x="186197" fg:w="62"/><text x="34.7621%" y="799.50"></text></g><g><title>__run_exit_handlers (62 samples, 0.01%)</title><rect x="34.5121%" y="773" width="0.0115%" height="15" fill="rgb(226,147,8)" fg:x="186197" fg:w="62"/><text x="34.7621%" y="783.50"></text></g><g><title>__alloc_pages_nodemask (54 samples, 0.01%)</title><rect x="34.5463%" y="677" width="0.0100%" height="15" fill="rgb(226,23,13)" fg:x="186382" fg:w="54"/><text x="34.7963%" y="687.50"></text></g><g><title>alloc_pages_vma (59 samples, 0.01%)</title><rect x="34.5460%" y="693" width="0.0109%" height="15" fill="rgb(240,63,4)" fg:x="186380" fg:w="59"/><text x="34.7960%" y="703.50"></text></g><g><title>handle_mm_fault (130 samples, 0.02%)</title><rect x="34.5426%" y="709" width="0.0241%" height="15" fill="rgb(221,1,32)" fg:x="186362" fg:w="130"/><text x="34.7926%" y="719.50"></text></g><g><title>exc_page_fault (143 samples, 0.03%)</title><rect x="34.5408%" y="741" width="0.0265%" height="15" fill="rgb(242,117,10)" fg:x="186352" fg:w="143"/><text x="34.7908%" y="751.50"></text></g><g><title>do_user_addr_fault (140 samples, 0.03%)</title><rect x="34.5413%" y="725" width="0.0259%" height="15" fill="rgb(249,172,44)" fg:x="186355" fg:w="140"/><text x="34.7913%" y="735.50"></text></g><g><title>asm_exc_page_fault (148 samples, 0.03%)</title><rect x="34.5402%" y="757" width="0.0274%" height="15" fill="rgb(244,46,45)" fg:x="186349" fg:w="148"/><text x="34.7902%" y="767.50"></text></g><g><title>[libc-2.31.so] (178 samples, 0.03%)</title><rect x="34.5361%" y="773" width="0.0330%" height="15" fill="rgb(206,43,17)" fg:x="186327" fg:w="178"/><text x="34.7861%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (298 samples, 0.06%)</title><rect x="34.5719%" y="629" width="0.0552%" height="15" fill="rgb(239,218,39)" fg:x="186520" fg:w="298"/><text x="34.8219%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (295 samples, 0.05%)</title><rect x="34.5725%" y="613" width="0.0547%" height="15" fill="rgb(208,169,54)" fg:x="186523" fg:w="295"/><text x="34.8225%" y="623.50"></text></g><g><title>native_write_msr (294 samples, 0.05%)</title><rect x="34.5727%" y="597" width="0.0545%" height="15" fill="rgb(247,25,42)" fg:x="186524" fg:w="294"/><text x="34.8227%" y="607.50"></text></g><g><title>finish_task_switch (331 samples, 0.06%)</title><rect x="34.5706%" y="645" width="0.0614%" height="15" fill="rgb(226,23,31)" fg:x="186513" fg:w="331"/><text x="34.8206%" y="655.50"></text></g><g><title>schedule (337 samples, 0.06%)</title><rect x="34.5704%" y="677" width="0.0625%" height="15" fill="rgb(247,16,28)" fg:x="186512" fg:w="337"/><text x="34.8204%" y="687.50"></text></g><g><title>__schedule (337 samples, 0.06%)</title><rect x="34.5704%" y="661" width="0.0625%" height="15" fill="rgb(231,147,38)" fg:x="186512" fg:w="337"/><text x="34.8204%" y="671.50"></text></g><g><title>do_syscall_64 (365 samples, 0.07%)</title><rect x="34.5704%" y="741" width="0.0677%" height="15" fill="rgb(253,81,48)" fg:x="186512" fg:w="365"/><text x="34.8204%" y="751.50"></text></g><g><title>__do_sys_wait4 (365 samples, 0.07%)</title><rect x="34.5704%" y="725" width="0.0677%" height="15" fill="rgb(249,222,43)" fg:x="186512" fg:w="365"/><text x="34.8204%" y="735.50"></text></g><g><title>kernel_wait4 (365 samples, 0.07%)</title><rect x="34.5704%" y="709" width="0.0677%" height="15" fill="rgb(221,3,27)" fg:x="186512" fg:w="365"/><text x="34.8204%" y="719.50"></text></g><g><title>do_wait (365 samples, 0.07%)</title><rect x="34.5704%" y="693" width="0.0677%" height="15" fill="rgb(228,180,5)" fg:x="186512" fg:w="365"/><text x="34.8204%" y="703.50"></text></g><g><title>__GI___wait4 (370 samples, 0.07%)</title><rect x="34.5701%" y="773" width="0.0686%" height="15" fill="rgb(227,131,42)" fg:x="186510" fg:w="370"/><text x="34.8201%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (368 samples, 0.07%)</title><rect x="34.5704%" y="757" width="0.0682%" height="15" fill="rgb(212,3,39)" fg:x="186512" fg:w="368"/><text x="34.8204%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="34.6446%" y="613" width="0.0102%" height="15" fill="rgb(226,45,5)" fg:x="186912" fg:w="55"/><text x="34.8946%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="34.6448%" y="597" width="0.0100%" height="15" fill="rgb(215,167,45)" fg:x="186913" fg:w="54"/><text x="34.8948%" y="607.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="34.6448%" y="581" width="0.0100%" height="15" fill="rgb(250,218,53)" fg:x="186913" fg:w="54"/><text x="34.8948%" y="591.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="34.6446%" y="629" width="0.0104%" height="15" fill="rgb(207,140,0)" fg:x="186912" fg:w="56"/><text x="34.8946%" y="639.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="34.6444%" y="661" width="0.0109%" height="15" fill="rgb(238,133,51)" fg:x="186911" fg:w="59"/><text x="34.8944%" y="671.50"></text></g><g><title>__schedule (59 samples, 0.01%)</title><rect x="34.6444%" y="645" width="0.0109%" height="15" fill="rgb(218,203,53)" fg:x="186911" fg:w="59"/><text x="34.8944%" y="655.50"></text></g><g><title>do_syscall_64 (66 samples, 0.01%)</title><rect x="34.6435%" y="741" width="0.0122%" height="15" fill="rgb(226,184,25)" fg:x="186906" fg:w="66"/><text x="34.8935%" y="751.50"></text></g><g><title>ksys_read (66 samples, 0.01%)</title><rect x="34.6435%" y="725" width="0.0122%" height="15" fill="rgb(231,121,21)" fg:x="186906" fg:w="66"/><text x="34.8935%" y="735.50"></text></g><g><title>vfs_read (66 samples, 0.01%)</title><rect x="34.6435%" y="709" width="0.0122%" height="15" fill="rgb(251,14,34)" fg:x="186906" fg:w="66"/><text x="34.8935%" y="719.50"></text></g><g><title>new_sync_read (64 samples, 0.01%)</title><rect x="34.6438%" y="693" width="0.0119%" height="15" fill="rgb(249,193,11)" fg:x="186908" fg:w="64"/><text x="34.8938%" y="703.50"></text></g><g><title>pipe_read (64 samples, 0.01%)</title><rect x="34.6438%" y="677" width="0.0119%" height="15" fill="rgb(220,172,37)" fg:x="186908" fg:w="64"/><text x="34.8938%" y="687.50"></text></g><g><title>__libc_read (68 samples, 0.01%)</title><rect x="34.6435%" y="773" width="0.0126%" height="15" fill="rgb(231,229,43)" fg:x="186906" fg:w="68"/><text x="34.8935%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="34.6435%" y="757" width="0.0126%" height="15" fill="rgb(250,161,5)" fg:x="186906" fg:w="68"/><text x="34.8935%" y="767.50"></text></g><g><title>__libc_start_main (797 samples, 0.15%)</title><rect x="34.5121%" y="805" width="0.1477%" height="15" fill="rgb(218,225,18)" fg:x="186197" fg:w="797"/><text x="34.7621%" y="815.50"></text></g><g><title>main (698 samples, 0.13%)</title><rect x="34.5304%" y="789" width="0.1294%" height="15" fill="rgb(245,45,42)" fg:x="186296" fg:w="698"/><text x="34.7804%" y="799.50"></text></g><g><title>do_mmap (85 samples, 0.02%)</title><rect x="34.6681%" y="549" width="0.0158%" height="15" fill="rgb(211,115,1)" fg:x="187039" fg:w="85"/><text x="34.9181%" y="559.50"></text></g><g><title>mmap_region (82 samples, 0.02%)</title><rect x="34.6687%" y="533" width="0.0152%" height="15" fill="rgb(248,133,52)" fg:x="187042" fg:w="82"/><text x="34.9187%" y="543.50"></text></g><g><title>ksys_mmap_pgoff (86 samples, 0.02%)</title><rect x="34.6681%" y="581" width="0.0159%" height="15" fill="rgb(238,100,21)" fg:x="187039" fg:w="86"/><text x="34.9181%" y="591.50"></text></g><g><title>vm_mmap_pgoff (86 samples, 0.02%)</title><rect x="34.6681%" y="565" width="0.0159%" height="15" fill="rgb(247,144,11)" fg:x="187039" fg:w="86"/><text x="34.9181%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="34.6681%" y="613" width="0.0171%" height="15" fill="rgb(206,164,16)" fg:x="187039" fg:w="92"/><text x="34.9181%" y="623.50"></text></g><g><title>do_syscall_64 (92 samples, 0.02%)</title><rect x="34.6681%" y="597" width="0.0171%" height="15" fill="rgb(222,34,3)" fg:x="187039" fg:w="92"/><text x="34.9181%" y="607.50"></text></g><g><title>_dl_map_segments (104 samples, 0.02%)</title><rect x="34.6663%" y="661" width="0.0193%" height="15" fill="rgb(248,82,4)" fg:x="187029" fg:w="104"/><text x="34.9163%" y="671.50"></text></g><g><title>__mmap64 (96 samples, 0.02%)</title><rect x="34.6677%" y="645" width="0.0178%" height="15" fill="rgb(228,81,46)" fg:x="187037" fg:w="96"/><text x="34.9177%" y="655.50"></text></g><g><title>__mmap64 (96 samples, 0.02%)</title><rect x="34.6677%" y="629" width="0.0178%" height="15" fill="rgb(227,67,47)" fg:x="187037" fg:w="96"/><text x="34.9177%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (148 samples, 0.03%)</title><rect x="34.6639%" y="677" width="0.0274%" height="15" fill="rgb(215,93,53)" fg:x="187016" fg:w="148"/><text x="34.9139%" y="687.50"></text></g><g><title>_dl_catch_exception (186 samples, 0.03%)</title><rect x="34.6613%" y="725" width="0.0345%" height="15" fill="rgb(248,194,39)" fg:x="187002" fg:w="186"/><text x="34.9113%" y="735.50"></text></g><g><title>openaux (186 samples, 0.03%)</title><rect x="34.6613%" y="709" width="0.0345%" height="15" fill="rgb(215,5,19)" fg:x="187002" fg:w="186"/><text x="34.9113%" y="719.50"></text></g><g><title>_dl_map_object (186 samples, 0.03%)</title><rect x="34.6613%" y="693" width="0.0345%" height="15" fill="rgb(226,215,51)" fg:x="187002" fg:w="186"/><text x="34.9113%" y="703.50"></text></g><g><title>_dl_map_object_deps (192 samples, 0.04%)</title><rect x="34.6609%" y="741" width="0.0356%" height="15" fill="rgb(225,56,26)" fg:x="187000" fg:w="192"/><text x="34.9109%" y="751.50"></text></g><g><title>dl_new_hash (93 samples, 0.02%)</title><rect x="34.7261%" y="677" width="0.0172%" height="15" fill="rgb(222,75,29)" fg:x="187352" fg:w="93"/><text x="34.9761%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (320 samples, 0.06%)</title><rect x="34.7228%" y="693" width="0.0593%" height="15" fill="rgb(236,139,6)" fg:x="187334" fg:w="320"/><text x="34.9728%" y="703.50"></text></g><g><title>do_lookup_x (209 samples, 0.04%)</title><rect x="34.7434%" y="677" width="0.0387%" height="15" fill="rgb(223,137,36)" fg:x="187445" fg:w="209"/><text x="34.9934%" y="687.50"></text></g><g><title>elf_machine_rela (396 samples, 0.07%)</title><rect x="34.7100%" y="709" width="0.0734%" height="15" fill="rgb(226,99,2)" fg:x="187265" fg:w="396"/><text x="34.9600%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (449 samples, 0.08%)</title><rect x="34.7026%" y="725" width="0.0832%" height="15" fill="rgb(206,133,23)" fg:x="187225" fg:w="449"/><text x="34.9526%" y="735.50"></text></g><g><title>_dl_relocate_object (472 samples, 0.09%)</title><rect x="34.6993%" y="741" width="0.0875%" height="15" fill="rgb(243,173,15)" fg:x="187207" fg:w="472"/><text x="34.9493%" y="751.50"></text></g><g><title>[ld-2.31.so] (701 samples, 0.13%)</title><rect x="34.6598%" y="757" width="0.1299%" height="15" fill="rgb(228,69,28)" fg:x="186994" fg:w="701"/><text x="34.9098%" y="767.50"></text></g><g><title>_dl_start_final (707 samples, 0.13%)</title><rect x="34.6598%" y="789" width="0.1310%" height="15" fill="rgb(212,51,22)" fg:x="186994" fg:w="707"/><text x="34.9098%" y="799.50"></text></g><g><title>_dl_sysdep_start (707 samples, 0.13%)</title><rect x="34.6598%" y="773" width="0.1310%" height="15" fill="rgb(227,113,0)" fg:x="186994" fg:w="707"/><text x="34.9098%" y="783.50"></text></g><g><title>_dl_start (713 samples, 0.13%)</title><rect x="34.6598%" y="805" width="0.1322%" height="15" fill="rgb(252,84,27)" fg:x="186994" fg:w="713"/><text x="34.9098%" y="815.50"></text></g><g><title>_start (1,520 samples, 0.28%)</title><rect x="34.5119%" y="821" width="0.2817%" height="15" fill="rgb(223,145,39)" fg:x="186196" fg:w="1520"/><text x="34.7619%" y="831.50"></text></g><g><title>asm_exc_page_fault (147 samples, 0.03%)</title><rect x="34.7936%" y="821" width="0.0272%" height="15" fill="rgb(239,219,30)" fg:x="187716" fg:w="147"/><text x="35.0436%" y="831.50"></text></g><g><title>exit_mmap (78 samples, 0.01%)</title><rect x="34.8223%" y="693" width="0.0145%" height="15" fill="rgb(224,196,39)" fg:x="187871" fg:w="78"/><text x="35.0723%" y="703.50"></text></g><g><title>begin_new_exec (80 samples, 0.01%)</title><rect x="34.8221%" y="725" width="0.0148%" height="15" fill="rgb(205,35,43)" fg:x="187870" fg:w="80"/><text x="35.0721%" y="735.50"></text></g><g><title>mmput (79 samples, 0.01%)</title><rect x="34.8223%" y="709" width="0.0146%" height="15" fill="rgb(228,201,21)" fg:x="187871" fg:w="79"/><text x="35.0723%" y="719.50"></text></g><g><title>__x64_sys_execve (116 samples, 0.02%)</title><rect x="34.8212%" y="789" width="0.0215%" height="15" fill="rgb(237,118,16)" fg:x="187865" fg:w="116"/><text x="35.0712%" y="799.50"></text></g><g><title>do_execveat_common (116 samples, 0.02%)</title><rect x="34.8212%" y="773" width="0.0215%" height="15" fill="rgb(241,17,19)" fg:x="187865" fg:w="116"/><text x="35.0712%" y="783.50"></text></g><g><title>bprm_execve (116 samples, 0.02%)</title><rect x="34.8212%" y="757" width="0.0215%" height="15" fill="rgb(214,10,25)" fg:x="187865" fg:w="116"/><text x="35.0712%" y="767.50"></text></g><g><title>load_elf_binary (116 samples, 0.02%)</title><rect x="34.8212%" y="741" width="0.0215%" height="15" fill="rgb(238,37,29)" fg:x="187865" fg:w="116"/><text x="35.0712%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (102 samples, 0.02%)</title><rect x="34.8505%" y="645" width="0.0189%" height="15" fill="rgb(253,83,25)" fg:x="188023" fg:w="102"/><text x="35.1005%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.02%)</title><rect x="34.8507%" y="629" width="0.0187%" height="15" fill="rgb(234,192,12)" fg:x="188024" fg:w="101"/><text x="35.1007%" y="639.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="34.8507%" y="613" width="0.0187%" height="15" fill="rgb(241,216,45)" fg:x="188024" fg:w="101"/><text x="35.1007%" y="623.50"></text></g><g><title>namespace_unlock (141 samples, 0.03%)</title><rect x="34.8438%" y="725" width="0.0261%" height="15" fill="rgb(242,22,33)" fg:x="187987" fg:w="141"/><text x="35.0938%" y="735.50"></text></g><g><title>synchronize_rcu_expedited (129 samples, 0.02%)</title><rect x="34.8461%" y="709" width="0.0239%" height="15" fill="rgb(231,105,49)" fg:x="187999" fg:w="129"/><text x="35.0961%" y="719.50"></text></g><g><title>schedule (108 samples, 0.02%)</title><rect x="34.8499%" y="693" width="0.0200%" height="15" fill="rgb(218,204,15)" fg:x="188020" fg:w="108"/><text x="35.0999%" y="703.50"></text></g><g><title>__schedule (108 samples, 0.02%)</title><rect x="34.8499%" y="677" width="0.0200%" height="15" fill="rgb(235,138,41)" fg:x="188020" fg:w="108"/><text x="35.0999%" y="687.50"></text></g><g><title>finish_task_switch (107 samples, 0.02%)</title><rect x="34.8501%" y="661" width="0.0198%" height="15" fill="rgb(246,0,9)" fg:x="188021" fg:w="107"/><text x="35.1001%" y="671.50"></text></g><g><title>put_mnt_ns (145 samples, 0.03%)</title><rect x="34.8438%" y="741" width="0.0269%" height="15" fill="rgb(210,74,4)" fg:x="187987" fg:w="145"/><text x="35.0938%" y="751.50"></text></g><g><title>free_nsproxy (152 samples, 0.03%)</title><rect x="34.8429%" y="757" width="0.0282%" height="15" fill="rgb(250,60,41)" fg:x="187982" fg:w="152"/><text x="35.0929%" y="767.50"></text></g><g><title>unmap_page_range (66 samples, 0.01%)</title><rect x="34.8837%" y="709" width="0.0122%" height="15" fill="rgb(220,115,12)" fg:x="188202" fg:w="66"/><text x="35.1337%" y="719.50"></text></g><g><title>mmput (135 samples, 0.03%)</title><rect x="34.8711%" y="757" width="0.0250%" height="15" fill="rgb(237,100,13)" fg:x="188134" fg:w="135"/><text x="35.1211%" y="767.50"></text></g><g><title>exit_mmap (135 samples, 0.03%)</title><rect x="34.8711%" y="741" width="0.0250%" height="15" fill="rgb(213,55,26)" fg:x="188134" fg:w="135"/><text x="35.1211%" y="751.50"></text></g><g><title>unmap_vmas (67 samples, 0.01%)</title><rect x="34.8837%" y="725" width="0.0124%" height="15" fill="rgb(216,17,4)" fg:x="188202" fg:w="67"/><text x="35.1337%" y="735.50"></text></g><g><title>__x64_sys_exit (355 samples, 0.07%)</title><rect x="34.8427%" y="789" width="0.0658%" height="15" fill="rgb(220,153,47)" fg:x="187981" fg:w="355"/><text x="35.0927%" y="799.50"></text></g><g><title>do_exit (355 samples, 0.07%)</title><rect x="34.8427%" y="773" width="0.0658%" height="15" fill="rgb(215,131,9)" fg:x="187981" fg:w="355"/><text x="35.0927%" y="783.50"></text></g><g><title>task_work_run (62 samples, 0.01%)</title><rect x="34.8970%" y="757" width="0.0115%" height="15" fill="rgb(233,46,42)" fg:x="188274" fg:w="62"/><text x="35.1470%" y="767.50"></text></g><g><title>cleanup_mnt (60 samples, 0.01%)</title><rect x="34.8974%" y="741" width="0.0111%" height="15" fill="rgb(226,86,7)" fg:x="188276" fg:w="60"/><text x="35.1474%" y="751.50"></text></g><g><title>mmput (115 samples, 0.02%)</title><rect x="34.9085%" y="741" width="0.0213%" height="15" fill="rgb(239,226,21)" fg:x="188336" fg:w="115"/><text x="35.1585%" y="751.50"></text></g><g><title>exit_mmap (115 samples, 0.02%)</title><rect x="34.9085%" y="725" width="0.0213%" height="15" fill="rgb(244,137,22)" fg:x="188336" fg:w="115"/><text x="35.1585%" y="735.50"></text></g><g><title>unmap_vmas (60 samples, 0.01%)</title><rect x="34.9187%" y="709" width="0.0111%" height="15" fill="rgb(211,139,35)" fg:x="188391" fg:w="60"/><text x="35.1687%" y="719.50"></text></g><g><title>unmap_page_range (58 samples, 0.01%)</title><rect x="34.9191%" y="693" width="0.0108%" height="15" fill="rgb(214,62,50)" fg:x="188393" fg:w="58"/><text x="35.1691%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (598 samples, 0.11%)</title><rect x="34.8208%" y="821" width="0.1108%" height="15" fill="rgb(212,113,44)" fg:x="187863" fg:w="598"/><text x="35.0708%" y="831.50"></text></g><g><title>do_syscall_64 (597 samples, 0.11%)</title><rect x="34.8210%" y="805" width="0.1107%" height="15" fill="rgb(226,150,43)" fg:x="187864" fg:w="597"/><text x="35.0710%" y="815.50"></text></g><g><title>__x64_sys_exit_group (125 samples, 0.02%)</title><rect x="34.9085%" y="789" width="0.0232%" height="15" fill="rgb(250,71,37)" fg:x="188336" fg:w="125"/><text x="35.1585%" y="799.50"></text></g><g><title>do_group_exit (125 samples, 0.02%)</title><rect x="34.9085%" y="773" width="0.0232%" height="15" fill="rgb(219,76,19)" fg:x="188336" fg:w="125"/><text x="35.1585%" y="783.50"></text></g><g><title>do_exit (125 samples, 0.02%)</title><rect x="34.9085%" y="757" width="0.0232%" height="15" fill="rgb(250,39,11)" fg:x="188336" fg:w="125"/><text x="35.1585%" y="767.50"></text></g><g><title>linux-sandbox (4,152 samples, 0.77%)</title><rect x="34.1627%" y="837" width="0.7696%" height="15" fill="rgb(230,64,31)" fg:x="184312" fg:w="4152"/><text x="34.4127%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="34.9421%" y="661" width="0.0120%" height="15" fill="rgb(208,222,23)" fg:x="188517" fg:w="65"/><text x="35.1921%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="34.9421%" y="645" width="0.0120%" height="15" fill="rgb(227,125,18)" fg:x="188517" fg:w="65"/><text x="35.1921%" y="655.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="34.9421%" y="629" width="0.0120%" height="15" fill="rgb(234,210,9)" fg:x="188517" fg:w="65"/><text x="35.1921%" y="639.50"></text></g><g><title>arch_fork (82 samples, 0.02%)</title><rect x="34.9393%" y="725" width="0.0152%" height="15" fill="rgb(217,127,24)" fg:x="188502" fg:w="82"/><text x="35.1893%" y="735.50"></text></g><g><title>ret_from_fork (76 samples, 0.01%)</title><rect x="34.9404%" y="709" width="0.0141%" height="15" fill="rgb(239,141,48)" fg:x="188508" fg:w="76"/><text x="35.1904%" y="719.50"></text></g><g><title>schedule_tail (76 samples, 0.01%)</title><rect x="34.9404%" y="693" width="0.0141%" height="15" fill="rgb(227,109,8)" fg:x="188508" fg:w="76"/><text x="35.1904%" y="703.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="34.9421%" y="677" width="0.0124%" height="15" fill="rgb(235,184,23)" fg:x="188517" fg:w="67"/><text x="35.1921%" y="687.50"></text></g><g><title>__libc_fork (90 samples, 0.02%)</title><rect x="34.9384%" y="741" width="0.0167%" height="15" fill="rgb(227,226,48)" fg:x="188497" fg:w="90"/><text x="35.1884%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (110 samples, 0.02%)</title><rect x="34.9352%" y="773" width="0.0204%" height="15" fill="rgb(206,150,11)" fg:x="188480" fg:w="110"/><text x="35.1852%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (110 samples, 0.02%)</title><rect x="34.9352%" y="757" width="0.0204%" height="15" fill="rgb(254,2,33)" fg:x="188480" fg:w="110"/><text x="35.1852%" y="767.50"></text></g><g><title>__libc_start_main (127 samples, 0.02%)</title><rect x="34.9343%" y="805" width="0.0235%" height="15" fill="rgb(243,160,20)" fg:x="188475" fg:w="127"/><text x="35.1843%" y="815.50"></text></g><g><title>main (122 samples, 0.02%)</title><rect x="34.9352%" y="789" width="0.0226%" height="15" fill="rgb(218,208,30)" fg:x="188480" fg:w="122"/><text x="35.1852%" y="799.50"></text></g><g><title>_dl_start_final (69 samples, 0.01%)</title><rect x="34.9578%" y="789" width="0.0128%" height="15" fill="rgb(224,120,49)" fg:x="188602" fg:w="69"/><text x="35.2078%" y="799.50"></text></g><g><title>_dl_sysdep_start (69 samples, 0.01%)</title><rect x="34.9578%" y="773" width="0.0128%" height="15" fill="rgb(246,12,2)" fg:x="188602" fg:w="69"/><text x="35.2078%" y="783.50"></text></g><g><title>[ld-2.31.so] (69 samples, 0.01%)</title><rect x="34.9578%" y="757" width="0.0128%" height="15" fill="rgb(236,117,3)" fg:x="188602" fg:w="69"/><text x="35.2078%" y="767.50"></text></g><g><title>_start (197 samples, 0.04%)</title><rect x="34.9343%" y="821" width="0.0365%" height="15" fill="rgb(216,128,52)" fg:x="188475" fg:w="197"/><text x="35.1843%" y="831.50"></text></g><g><title>_dl_start (70 samples, 0.01%)</title><rect x="34.9578%" y="805" width="0.0130%" height="15" fill="rgb(246,145,19)" fg:x="188602" fg:w="70"/><text x="35.2078%" y="815.50"></text></g><g><title>process-wrapper (231 samples, 0.04%)</title><rect x="34.9334%" y="837" width="0.0428%" height="15" fill="rgb(222,11,46)" fg:x="188470" fg:w="231"/><text x="35.1834%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (300 samples, 0.06%)</title><rect x="35.0221%" y="661" width="0.0556%" height="15" fill="rgb(245,82,36)" fg:x="188949" fg:w="300"/><text x="35.2721%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (298 samples, 0.06%)</title><rect x="35.0225%" y="645" width="0.0552%" height="15" fill="rgb(250,73,51)" fg:x="188951" fg:w="298"/><text x="35.2725%" y="655.50"></text></g><g><title>native_write_msr (297 samples, 0.06%)</title><rect x="35.0227%" y="629" width="0.0550%" height="15" fill="rgb(221,189,23)" fg:x="188952" fg:w="297"/><text x="35.2727%" y="639.50"></text></g><g><title>finish_task_switch (326 samples, 0.06%)</title><rect x="35.0199%" y="677" width="0.0604%" height="15" fill="rgb(210,33,7)" fg:x="188937" fg:w="326"/><text x="35.2699%" y="687.50"></text></g><g><title>schedule (332 samples, 0.06%)</title><rect x="35.0194%" y="709" width="0.0615%" height="15" fill="rgb(210,107,22)" fg:x="188934" fg:w="332"/><text x="35.2694%" y="719.50"></text></g><g><title>__schedule (332 samples, 0.06%)</title><rect x="35.0194%" y="693" width="0.0615%" height="15" fill="rgb(222,116,37)" fg:x="188934" fg:w="332"/><text x="35.2694%" y="703.50"></text></g><g><title>do_wait (424 samples, 0.08%)</title><rect x="35.0068%" y="725" width="0.0786%" height="15" fill="rgb(254,17,48)" fg:x="188866" fg:w="424"/><text x="35.2568%" y="735.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (429 samples, 0.08%)</title><rect x="35.0060%" y="805" width="0.0795%" height="15" fill="rgb(224,36,32)" fg:x="188862" fg:w="429"/><text x="35.2560%" y="815.50"></text></g><g><title>__GI___wait4 (429 samples, 0.08%)</title><rect x="35.0060%" y="789" width="0.0795%" height="15" fill="rgb(232,90,46)" fg:x="188862" fg:w="429"/><text x="35.2560%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (427 samples, 0.08%)</title><rect x="35.0064%" y="773" width="0.0791%" height="15" fill="rgb(241,66,40)" fg:x="188864" fg:w="427"/><text x="35.2564%" y="783.50"></text></g><g><title>do_syscall_64 (427 samples, 0.08%)</title><rect x="35.0064%" y="757" width="0.0791%" height="15" fill="rgb(249,184,29)" fg:x="188864" fg:w="427"/><text x="35.2564%" y="767.50"></text></g><g><title>kernel_wait4 (426 samples, 0.08%)</title><rect x="35.0066%" y="741" width="0.0790%" height="15" fill="rgb(231,181,1)" fg:x="188865" fg:w="426"/><text x="35.2566%" y="751.50"></text></g><g><title>futex_wait_queue_me (55 samples, 0.01%)</title><rect x="35.0874%" y="645" width="0.0102%" height="15" fill="rgb(224,94,2)" fg:x="189301" fg:w="55"/><text x="35.3374%" y="655.50"></text></g><g><title>schedule (54 samples, 0.01%)</title><rect x="35.0876%" y="629" width="0.0100%" height="15" fill="rgb(229,170,15)" fg:x="189302" fg:w="54"/><text x="35.3376%" y="639.50"></text></g><g><title>__schedule (54 samples, 0.01%)</title><rect x="35.0876%" y="613" width="0.0100%" height="15" fill="rgb(240,127,35)" fg:x="189302" fg:w="54"/><text x="35.3376%" y="623.50"></text></g><g><title>Parker::park (66 samples, 0.01%)</title><rect x="35.0868%" y="789" width="0.0122%" height="15" fill="rgb(248,196,34)" fg:x="189298" fg:w="66"/><text x="35.3368%" y="799.50"></text></g><g><title>__pthread_cond_timedwait (64 samples, 0.01%)</title><rect x="35.0872%" y="773" width="0.0119%" height="15" fill="rgb(236,137,7)" fg:x="189300" fg:w="64"/><text x="35.3372%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="35.0872%" y="757" width="0.0119%" height="15" fill="rgb(235,127,16)" fg:x="189300" fg:w="64"/><text x="35.3372%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (63 samples, 0.01%)</title><rect x="35.0874%" y="741" width="0.0117%" height="15" fill="rgb(250,192,54)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="35.0874%" y="725" width="0.0117%" height="15" fill="rgb(218,98,20)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="735.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="35.0874%" y="709" width="0.0117%" height="15" fill="rgb(230,176,47)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="719.50"></text></g><g><title>__x64_sys_futex (63 samples, 0.01%)</title><rect x="35.0874%" y="693" width="0.0117%" height="15" fill="rgb(244,2,33)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="703.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="35.0874%" y="677" width="0.0117%" height="15" fill="rgb(231,100,17)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="687.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="35.0874%" y="661" width="0.0117%" height="15" fill="rgb(245,23,12)" fg:x="189301" fg:w="63"/><text x="35.3374%" y="671.50"></text></g><g><title>Unsafe_Park (67 samples, 0.01%)</title><rect x="35.0868%" y="805" width="0.0124%" height="15" fill="rgb(249,55,22)" fg:x="189298" fg:w="67"/><text x="35.3368%" y="815.50"></text></g><g><title>[perf-34054.map] (660 samples, 0.12%)</title><rect x="34.9771%" y="821" width="0.1223%" height="15" fill="rgb(207,134,9)" fg:x="188706" fg:w="660"/><text x="35.2271%" y="831.50"></text></g><g><title>process_reaper (669 samples, 0.12%)</title><rect x="34.9762%" y="837" width="0.1240%" height="15" fill="rgb(218,134,0)" fg:x="188701" fg:w="669"/><text x="35.2262%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (593 samples, 0.11%)</title><rect x="35.2095%" y="581" width="0.1099%" height="15" fill="rgb(213,212,33)" fg:x="189960" fg:w="593"/><text x="35.4595%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (586 samples, 0.11%)</title><rect x="35.2108%" y="565" width="0.1086%" height="15" fill="rgb(252,106,18)" fg:x="189967" fg:w="586"/><text x="35.4608%" y="575.50"></text></g><g><title>native_write_msr (586 samples, 0.11%)</title><rect x="35.2108%" y="549" width="0.1086%" height="15" fill="rgb(208,126,42)" fg:x="189967" fg:w="586"/><text x="35.4608%" y="559.50"></text></g><g><title>finish_task_switch (627 samples, 0.12%)</title><rect x="35.2062%" y="597" width="0.1162%" height="15" fill="rgb(246,175,29)" fg:x="189942" fg:w="627"/><text x="35.4562%" y="607.50"></text></g><g><title>futex_wait_queue_me (668 samples, 0.12%)</title><rect x="35.2001%" y="645" width="0.1238%" height="15" fill="rgb(215,13,50)" fg:x="189909" fg:w="668"/><text x="35.4501%" y="655.50"></text></g><g><title>schedule (652 samples, 0.12%)</title><rect x="35.2030%" y="629" width="0.1208%" height="15" fill="rgb(216,172,15)" fg:x="189925" fg:w="652"/><text x="35.4530%" y="639.50"></text></g><g><title>__schedule (651 samples, 0.12%)</title><rect x="35.2032%" y="613" width="0.1207%" height="15" fill="rgb(212,103,13)" fg:x="189926" fg:w="651"/><text x="35.4532%" y="623.50"></text></g><g><title>do_syscall_64 (686 samples, 0.13%)</title><rect x="35.1973%" y="709" width="0.1272%" height="15" fill="rgb(231,171,36)" fg:x="189894" fg:w="686"/><text x="35.4473%" y="719.50"></text></g><g><title>__x64_sys_futex (684 samples, 0.13%)</title><rect x="35.1977%" y="693" width="0.1268%" height="15" fill="rgb(250,123,20)" fg:x="189896" fg:w="684"/><text x="35.4477%" y="703.50"></text></g><g><title>do_futex (684 samples, 0.13%)</title><rect x="35.1977%" y="677" width="0.1268%" height="15" fill="rgb(212,53,50)" fg:x="189896" fg:w="684"/><text x="35.4477%" y="687.50"></text></g><g><title>futex_wait (684 samples, 0.13%)</title><rect x="35.1977%" y="661" width="0.1268%" height="15" fill="rgb(243,54,12)" fg:x="189896" fg:w="684"/><text x="35.4477%" y="671.50"></text></g><g><title>__pthread_cond_wait (701 samples, 0.13%)</title><rect x="35.1960%" y="773" width="0.1299%" height="15" fill="rgb(234,101,34)" fg:x="189887" fg:w="701"/><text x="35.4460%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (701 samples, 0.13%)</title><rect x="35.1960%" y="757" width="0.1299%" height="15" fill="rgb(254,67,22)" fg:x="189887" fg:w="701"/><text x="35.4460%" y="767.50"></text></g><g><title>futex_wait_cancelable (699 samples, 0.13%)</title><rect x="35.1964%" y="741" width="0.1296%" height="15" fill="rgb(250,35,47)" fg:x="189889" fg:w="699"/><text x="35.4464%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (694 samples, 0.13%)</title><rect x="35.1973%" y="725" width="0.1286%" height="15" fill="rgb(226,126,38)" fg:x="189894" fg:w="694"/><text x="35.4473%" y="735.50"></text></g><g><title>Parker::park (735 samples, 0.14%)</title><rect x="35.1923%" y="789" width="0.1362%" height="15" fill="rgb(216,138,53)" fg:x="189867" fg:w="735"/><text x="35.4423%" y="799.50"></text></g><g><title>Unsafe_Park (752 samples, 0.14%)</title><rect x="35.1899%" y="805" width="0.1394%" height="15" fill="rgb(246,199,43)" fg:x="189854" fg:w="752"/><text x="35.4399%" y="815.50"></text></g><g><title>[perf-34054.map] (1,226 samples, 0.23%)</title><rect x="35.1026%" y="821" width="0.2272%" height="15" fill="rgb(232,125,11)" fg:x="189383" fg:w="1226"/><text x="35.3526%" y="831.50"></text></g><g><title>profile-writer- (1,260 samples, 0.23%)</title><rect x="35.1002%" y="837" width="0.2335%" height="15" fill="rgb(218,219,45)" fg:x="189370" fg:w="1260"/><text x="35.3502%" y="847.50"></text></g><g><title>[python3.9] (65 samples, 0.01%)</title><rect x="35.3517%" y="805" width="0.0120%" height="15" fill="rgb(216,102,54)" fg:x="190727" fg:w="65"/><text x="35.6017%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (131 samples, 0.02%)</title><rect x="35.3662%" y="805" width="0.0243%" height="15" fill="rgb(250,228,7)" fg:x="190805" fg:w="131"/><text x="35.6162%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (77 samples, 0.01%)</title><rect x="35.3762%" y="789" width="0.0143%" height="15" fill="rgb(226,125,25)" fg:x="190859" fg:w="77"/><text x="35.6262%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (61 samples, 0.01%)</title><rect x="35.3791%" y="773" width="0.0113%" height="15" fill="rgb(224,165,27)" fg:x="190875" fg:w="61"/><text x="35.6291%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (61 samples, 0.01%)</title><rect x="35.3791%" y="757" width="0.0113%" height="15" fill="rgb(233,86,3)" fg:x="190875" fg:w="61"/><text x="35.6291%" y="767.50"></text></g><g><title>[unknown] (331 samples, 0.06%)</title><rect x="35.3408%" y="821" width="0.0614%" height="15" fill="rgb(228,116,20)" fg:x="190668" fg:w="331"/><text x="35.5908%" y="831.50"></text></g><g><title>Py_RunMain (79 samples, 0.01%)</title><rect x="35.4025%" y="773" width="0.0146%" height="15" fill="rgb(209,192,17)" fg:x="191001" fg:w="79"/><text x="35.6525%" y="783.50"></text></g><g><title>Py_FinalizeEx (60 samples, 0.01%)</title><rect x="35.4060%" y="757" width="0.0111%" height="15" fill="rgb(224,88,34)" fg:x="191020" fg:w="60"/><text x="35.6560%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (82 samples, 0.02%)</title><rect x="35.4171%" y="741" width="0.0152%" height="15" fill="rgb(233,38,6)" fg:x="191080" fg:w="82"/><text x="35.6671%" y="751.50"></text></g><g><title>[python3.9] (82 samples, 0.02%)</title><rect x="35.4171%" y="725" width="0.0152%" height="15" fill="rgb(212,59,30)" fg:x="191080" fg:w="82"/><text x="35.6671%" y="735.50"></text></g><g><title>[python3.9] (82 samples, 0.02%)</title><rect x="35.4171%" y="709" width="0.0152%" height="15" fill="rgb(213,80,3)" fg:x="191080" fg:w="82"/><text x="35.6671%" y="719.50"></text></g><g><title>__libc_start_main (165 samples, 0.03%)</title><rect x="35.4025%" y="805" width="0.0306%" height="15" fill="rgb(251,178,7)" fg:x="191001" fg:w="165"/><text x="35.6525%" y="815.50"></text></g><g><title>Py_BytesMain (165 samples, 0.03%)</title><rect x="35.4025%" y="789" width="0.0306%" height="15" fill="rgb(213,154,26)" fg:x="191001" fg:w="165"/><text x="35.6525%" y="799.50"></text></g><g><title>[python3.9] (86 samples, 0.02%)</title><rect x="35.4171%" y="773" width="0.0159%" height="15" fill="rgb(238,165,49)" fg:x="191080" fg:w="86"/><text x="35.6671%" y="783.50"></text></g><g><title>[python3.9] (86 samples, 0.02%)</title><rect x="35.4171%" y="757" width="0.0159%" height="15" fill="rgb(248,91,46)" fg:x="191080" fg:w="86"/><text x="35.6671%" y="767.50"></text></g><g><title>_start (173 samples, 0.03%)</title><rect x="35.4025%" y="821" width="0.0321%" height="15" fill="rgb(244,21,52)" fg:x="191001" fg:w="173"/><text x="35.6525%" y="831.50"></text></g><g><title>python3 (554 samples, 0.10%)</title><rect x="35.3346%" y="837" width="0.1027%" height="15" fill="rgb(247,122,20)" fg:x="190635" fg:w="554"/><text x="35.5846%" y="847.50"></text></g><g><title>__run_exit_handlers (71 samples, 0.01%)</title><rect x="35.4477%" y="805" width="0.0132%" height="15" fill="rgb(218,27,9)" fg:x="191245" fg:w="71"/><text x="35.6977%" y="815.50"></text></g><g><title>do_lookup_x (55 samples, 0.01%)</title><rect x="35.4618%" y="805" width="0.0102%" height="15" fill="rgb(246,7,6)" fg:x="191321" fg:w="55"/><text x="35.7118%" y="815.50"></text></g><g><title>[[stack]] (162 samples, 0.03%)</title><rect x="35.4425%" y="821" width="0.0300%" height="15" fill="rgb(227,135,54)" fg:x="191217" fg:w="162"/><text x="35.6925%" y="831.50"></text></g><g><title>[sed] (79 samples, 0.01%)</title><rect x="35.5159%" y="693" width="0.0146%" height="15" fill="rgb(247,14,11)" fg:x="191613" fg:w="79"/><text x="35.7659%" y="703.50"></text></g><g><title>[sed] (194 samples, 0.04%)</title><rect x="35.5052%" y="709" width="0.0360%" height="15" fill="rgb(206,149,34)" fg:x="191555" fg:w="194"/><text x="35.7552%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (545 samples, 0.10%)</title><rect x="35.5624%" y="517" width="0.1010%" height="15" fill="rgb(227,228,4)" fg:x="191864" fg:w="545"/><text x="35.8124%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (537 samples, 0.10%)</title><rect x="35.5639%" y="501" width="0.0995%" height="15" fill="rgb(238,218,28)" fg:x="191872" fg:w="537"/><text x="35.8139%" y="511.50"></text></g><g><title>native_write_msr (534 samples, 0.10%)</title><rect x="35.5645%" y="485" width="0.0990%" height="15" fill="rgb(252,86,40)" fg:x="191875" fg:w="534"/><text x="35.8145%" y="495.50"></text></g><g><title>finish_task_switch (585 samples, 0.11%)</title><rect x="35.5593%" y="533" width="0.1084%" height="15" fill="rgb(251,225,11)" fg:x="191847" fg:w="585"/><text x="35.8093%" y="543.50"></text></g><g><title>schedule (602 samples, 0.11%)</title><rect x="35.5574%" y="565" width="0.1116%" height="15" fill="rgb(206,46,49)" fg:x="191837" fg:w="602"/><text x="35.8074%" y="575.50"></text></g><g><title>__schedule (601 samples, 0.11%)</title><rect x="35.5576%" y="549" width="0.1114%" height="15" fill="rgb(245,128,24)" fg:x="191838" fg:w="601"/><text x="35.8076%" y="559.50"></text></g><g><title>new_sync_read (647 samples, 0.12%)</title><rect x="35.5508%" y="597" width="0.1199%" height="15" fill="rgb(219,177,34)" fg:x="191801" fg:w="647"/><text x="35.8008%" y="607.50"></text></g><g><title>pipe_read (643 samples, 0.12%)</title><rect x="35.5515%" y="581" width="0.1192%" height="15" fill="rgb(218,60,48)" fg:x="191805" fg:w="643"/><text x="35.8015%" y="591.50"></text></g><g><title>do_syscall_64 (654 samples, 0.12%)</title><rect x="35.5500%" y="645" width="0.1212%" height="15" fill="rgb(221,11,5)" fg:x="191797" fg:w="654"/><text x="35.8000%" y="655.50"></text></g><g><title>ksys_read (654 samples, 0.12%)</title><rect x="35.5500%" y="629" width="0.1212%" height="15" fill="rgb(220,148,13)" fg:x="191797" fg:w="654"/><text x="35.8000%" y="639.50"></text></g><g><title>vfs_read (652 samples, 0.12%)</title><rect x="35.5504%" y="613" width="0.1208%" height="15" fill="rgb(210,16,3)" fg:x="191799" fg:w="652"/><text x="35.8004%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (657 samples, 0.12%)</title><rect x="35.5498%" y="661" width="0.1218%" height="15" fill="rgb(236,80,2)" fg:x="191796" fg:w="657"/><text x="35.7998%" y="671.50"></text></g><g><title>_IO_new_file_underflow (698 samples, 0.13%)</title><rect x="35.5426%" y="693" width="0.1294%" height="15" fill="rgb(239,129,19)" fg:x="191757" fg:w="698"/><text x="35.7926%" y="703.50"></text></g><g><title>__GI___libc_read (661 samples, 0.12%)</title><rect x="35.5495%" y="677" width="0.1225%" height="15" fill="rgb(220,106,35)" fg:x="191794" fg:w="661"/><text x="35.7995%" y="687.50"></text></g><g><title>_IO_getdelim (708 samples, 0.13%)</title><rect x="35.5411%" y="709" width="0.1312%" height="15" fill="rgb(252,139,45)" fg:x="191749" fg:w="708"/><text x="35.7911%" y="719.50"></text></g><g><title>[sed] (1,002 samples, 0.19%)</title><rect x="35.5044%" y="725" width="0.1857%" height="15" fill="rgb(229,8,36)" fg:x="191551" fg:w="1002"/><text x="35.7544%" y="735.50"></text></g><g><title>[sed] (1,071 samples, 0.20%)</title><rect x="35.4957%" y="741" width="0.1985%" height="15" fill="rgb(230,126,33)" fg:x="191504" fg:w="1071"/><text x="35.7457%" y="751.50"></text></g><g><title>__GI___fflush_unlocked (69 samples, 0.01%)</title><rect x="35.6942%" y="741" width="0.0128%" height="15" fill="rgb(239,140,21)" fg:x="192575" fg:w="69"/><text x="35.9442%" y="751.50"></text></g><g><title>_IO_new_file_sync (69 samples, 0.01%)</title><rect x="35.6942%" y="725" width="0.0128%" height="15" fill="rgb(254,104,9)" fg:x="192575" fg:w="69"/><text x="35.9442%" y="735.50"></text></g><g><title>_IO_new_do_write (69 samples, 0.01%)</title><rect x="35.6942%" y="709" width="0.0128%" height="15" fill="rgb(239,52,14)" fg:x="192575" fg:w="69"/><text x="35.9442%" y="719.50"></text></g><g><title>_IO_new_do_write (69 samples, 0.01%)</title><rect x="35.6942%" y="693" width="0.0128%" height="15" fill="rgb(208,227,44)" fg:x="192575" fg:w="69"/><text x="35.9442%" y="703.50"></text></g><g><title>new_do_write (69 samples, 0.01%)</title><rect x="35.6942%" y="677" width="0.0128%" height="15" fill="rgb(246,18,19)" fg:x="192575" fg:w="69"/><text x="35.9442%" y="687.50"></text></g><g><title>_IO_new_file_write (66 samples, 0.01%)</title><rect x="35.6948%" y="661" width="0.0122%" height="15" fill="rgb(235,228,25)" fg:x="192578" fg:w="66"/><text x="35.9448%" y="671.50"></text></g><g><title>__GI___libc_write (65 samples, 0.01%)</title><rect x="35.6950%" y="645" width="0.0120%" height="15" fill="rgb(240,156,20)" fg:x="192579" fg:w="65"/><text x="35.9450%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="35.6950%" y="629" width="0.0120%" height="15" fill="rgb(224,8,20)" fg:x="192579" fg:w="65"/><text x="35.9450%" y="639.50"></text></g><g><title>__GI___mbrtowc (65 samples, 0.01%)</title><rect x="35.7070%" y="741" width="0.0120%" height="15" fill="rgb(214,12,52)" fg:x="192644" fg:w="65"/><text x="35.9570%" y="751.50"></text></g><g><title>[sed] (1,259 samples, 0.23%)</title><rect x="35.4918%" y="757" width="0.2334%" height="15" fill="rgb(211,220,47)" fg:x="191483" fg:w="1259"/><text x="35.7418%" y="767.50"></text></g><g><title>[sed] (1,296 samples, 0.24%)</title><rect x="35.4896%" y="773" width="0.2402%" height="15" fill="rgb(250,173,5)" fg:x="191471" fg:w="1296"/><text x="35.7396%" y="783.50"></text></g><g><title>[sed] (1,439 samples, 0.27%)</title><rect x="35.4892%" y="789" width="0.2667%" height="15" fill="rgb(250,125,52)" fg:x="191469" fg:w="1439"/><text x="35.7392%" y="799.50"></text></g><g><title>[libselinux.so.1] (57 samples, 0.01%)</title><rect x="35.7726%" y="741" width="0.0106%" height="15" fill="rgb(209,133,18)" fg:x="192998" fg:w="57"/><text x="36.0226%" y="751.50"></text></g><g><title>__libc_start_main (1,615 samples, 0.30%)</title><rect x="35.4887%" y="805" width="0.2993%" height="15" fill="rgb(216,173,22)" fg:x="191466" fg:w="1615"/><text x="35.7387%" y="815.50"></text></g><g><title>__GI_exit (148 samples, 0.03%)</title><rect x="35.7606%" y="789" width="0.0274%" height="15" fill="rgb(205,3,22)" fg:x="192933" fg:w="148"/><text x="36.0106%" y="799.50"></text></g><g><title>__run_exit_handlers (148 samples, 0.03%)</title><rect x="35.7606%" y="773" width="0.0274%" height="15" fill="rgb(248,22,20)" fg:x="192933" fg:w="148"/><text x="36.0106%" y="783.50"></text></g><g><title>_dl_fini (95 samples, 0.02%)</title><rect x="35.7704%" y="757" width="0.0176%" height="15" fill="rgb(233,6,29)" fg:x="192986" fg:w="95"/><text x="36.0204%" y="767.50"></text></g><g><title>[sed] (1,655 samples, 0.31%)</title><rect x="35.4870%" y="821" width="0.3068%" height="15" fill="rgb(240,22,54)" fg:x="191457" fg:w="1655"/><text x="35.7370%" y="831.50"></text></g><g><title>[unknown] (115 samples, 0.02%)</title><rect x="35.7941%" y="821" width="0.0213%" height="15" fill="rgb(231,133,32)" fg:x="193114" fg:w="115"/><text x="36.0441%" y="831.50"></text></g><g><title>filename_lookup (66 samples, 0.01%)</title><rect x="35.8216%" y="645" width="0.0122%" height="15" fill="rgb(248,193,4)" fg:x="193262" fg:w="66"/><text x="36.0716%" y="655.50"></text></g><g><title>path_lookupat (65 samples, 0.01%)</title><rect x="35.8218%" y="629" width="0.0120%" height="15" fill="rgb(211,178,46)" fg:x="193263" fg:w="65"/><text x="36.0718%" y="639.50"></text></g><g><title>__do_sys_statfs (96 samples, 0.02%)</title><rect x="35.8208%" y="677" width="0.0178%" height="15" fill="rgb(224,5,42)" fg:x="193258" fg:w="96"/><text x="36.0708%" y="687.50"></text></g><g><title>user_statfs (95 samples, 0.02%)</title><rect x="35.8210%" y="661" width="0.0176%" height="15" fill="rgb(239,176,25)" fg:x="193259" fg:w="95"/><text x="36.0710%" y="671.50"></text></g><g><title>[libselinux.so.1] (105 samples, 0.02%)</title><rect x="35.8195%" y="741" width="0.0195%" height="15" fill="rgb(245,187,50)" fg:x="193251" fg:w="105"/><text x="36.0695%" y="751.50"></text></g><g><title>__GI___statfs (105 samples, 0.02%)</title><rect x="35.8195%" y="725" width="0.0195%" height="15" fill="rgb(248,24,15)" fg:x="193251" fg:w="105"/><text x="36.0695%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (101 samples, 0.02%)</title><rect x="35.8203%" y="709" width="0.0187%" height="15" fill="rgb(205,166,13)" fg:x="193255" fg:w="101"/><text x="36.0703%" y="719.50"></text></g><g><title>do_syscall_64 (101 samples, 0.02%)</title><rect x="35.8203%" y="693" width="0.0187%" height="15" fill="rgb(208,114,23)" fg:x="193255" fg:w="101"/><text x="36.0703%" y="703.50"></text></g><g><title>filesystems_proc_show (89 samples, 0.02%)</title><rect x="35.8609%" y="565" width="0.0165%" height="15" fill="rgb(239,127,18)" fg:x="193474" fg:w="89"/><text x="36.1109%" y="575.50"></text></g><g><title>seq_printf (70 samples, 0.01%)</title><rect x="35.8644%" y="549" width="0.0130%" height="15" fill="rgb(219,154,28)" fg:x="193493" fg:w="70"/><text x="36.1144%" y="559.50"></text></g><g><title>vsnprintf (68 samples, 0.01%)</title><rect x="35.8648%" y="533" width="0.0126%" height="15" fill="rgb(225,157,23)" fg:x="193495" fg:w="68"/><text x="36.1148%" y="543.50"></text></g><g><title>new_sync_read (108 samples, 0.02%)</title><rect x="35.8577%" y="613" width="0.0200%" height="15" fill="rgb(219,8,6)" fg:x="193457" fg:w="108"/><text x="36.1077%" y="623.50"></text></g><g><title>proc_reg_read_iter (107 samples, 0.02%)</title><rect x="35.8579%" y="597" width="0.0198%" height="15" fill="rgb(212,47,6)" fg:x="193458" fg:w="107"/><text x="36.1079%" y="607.50"></text></g><g><title>seq_read_iter (105 samples, 0.02%)</title><rect x="35.8583%" y="581" width="0.0195%" height="15" fill="rgb(224,190,4)" fg:x="193460" fg:w="105"/><text x="36.1083%" y="591.50"></text></g><g><title>_IO_new_file_underflow (131 samples, 0.02%)</title><rect x="35.8546%" y="709" width="0.0243%" height="15" fill="rgb(239,183,29)" fg:x="193440" fg:w="131"/><text x="36.1046%" y="719.50"></text></g><g><title>__GI___libc_read (121 samples, 0.02%)</title><rect x="35.8564%" y="693" width="0.0224%" height="15" fill="rgb(213,57,7)" fg:x="193450" fg:w="121"/><text x="36.1064%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (118 samples, 0.02%)</title><rect x="35.8570%" y="677" width="0.0219%" height="15" fill="rgb(216,148,1)" fg:x="193453" fg:w="118"/><text x="36.1070%" y="687.50"></text></g><g><title>do_syscall_64 (118 samples, 0.02%)</title><rect x="35.8570%" y="661" width="0.0219%" height="15" fill="rgb(236,182,29)" fg:x="193453" fg:w="118"/><text x="36.1070%" y="671.50"></text></g><g><title>ksys_read (116 samples, 0.02%)</title><rect x="35.8573%" y="645" width="0.0215%" height="15" fill="rgb(244,120,48)" fg:x="193455" fg:w="116"/><text x="36.1073%" y="655.50"></text></g><g><title>vfs_read (114 samples, 0.02%)</title><rect x="35.8577%" y="629" width="0.0211%" height="15" fill="rgb(206,71,34)" fg:x="193457" fg:w="114"/><text x="36.1077%" y="639.50"></text></g><g><title>_IO_getdelim (153 samples, 0.03%)</title><rect x="35.8512%" y="725" width="0.0284%" height="15" fill="rgb(242,32,6)" fg:x="193422" fg:w="153"/><text x="36.1012%" y="735.50"></text></g><g><title>__GI__IO_file_open (57 samples, 0.01%)</title><rect x="35.8872%" y="693" width="0.0106%" height="15" fill="rgb(241,35,3)" fg:x="193616" fg:w="57"/><text x="36.1372%" y="703.50"></text></g><g><title>__libc_open64 (56 samples, 0.01%)</title><rect x="35.8874%" y="677" width="0.0104%" height="15" fill="rgb(222,62,19)" fg:x="193617" fg:w="56"/><text x="36.1374%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="35.8877%" y="661" width="0.0100%" height="15" fill="rgb(223,110,41)" fg:x="193619" fg:w="54"/><text x="36.1377%" y="671.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="35.8877%" y="645" width="0.0100%" height="15" fill="rgb(208,224,4)" fg:x="193619" fg:w="54"/><text x="36.1377%" y="655.50"></text></g><g><title>__x64_sys_openat (54 samples, 0.01%)</title><rect x="35.8877%" y="629" width="0.0100%" height="15" fill="rgb(241,137,19)" fg:x="193619" fg:w="54"/><text x="36.1377%" y="639.50"></text></g><g><title>do_sys_openat2 (54 samples, 0.01%)</title><rect x="35.8877%" y="613" width="0.0100%" height="15" fill="rgb(244,24,17)" fg:x="193619" fg:w="54"/><text x="36.1377%" y="623.50"></text></g><g><title>_IO_new_file_fopen (64 samples, 0.01%)</title><rect x="35.8872%" y="709" width="0.0119%" height="15" fill="rgb(245,178,49)" fg:x="193616" fg:w="64"/><text x="36.1372%" y="719.50"></text></g><g><title>__GI___libc_malloc (69 samples, 0.01%)</title><rect x="35.9002%" y="709" width="0.0128%" height="15" fill="rgb(219,160,38)" fg:x="193686" fg:w="69"/><text x="36.1502%" y="719.50"></text></g><g><title>tcache_init (68 samples, 0.01%)</title><rect x="35.9003%" y="693" width="0.0126%" height="15" fill="rgb(228,137,14)" fg:x="193687" fg:w="68"/><text x="36.1503%" y="703.50"></text></g><g><title>tcache_init (67 samples, 0.01%)</title><rect x="35.9005%" y="677" width="0.0124%" height="15" fill="rgb(237,134,11)" fg:x="193688" fg:w="67"/><text x="36.1505%" y="687.50"></text></g><g><title>_int_malloc (67 samples, 0.01%)</title><rect x="35.9005%" y="661" width="0.0124%" height="15" fill="rgb(211,126,44)" fg:x="193688" fg:w="67"/><text x="36.1505%" y="671.50"></text></g><g><title>sysmalloc (67 samples, 0.01%)</title><rect x="35.9005%" y="645" width="0.0124%" height="15" fill="rgb(226,171,33)" fg:x="193688" fg:w="67"/><text x="36.1505%" y="655.50"></text></g><g><title>determine_info (317 samples, 0.06%)</title><rect x="35.9218%" y="645" width="0.0588%" height="15" fill="rgb(253,99,13)" fg:x="193803" fg:w="317"/><text x="36.1718%" y="655.50"></text></g><g><title>__GI__dl_addr (361 samples, 0.07%)</title><rect x="35.9141%" y="661" width="0.0669%" height="15" fill="rgb(244,48,7)" fg:x="193761" fg:w="361"/><text x="36.1641%" y="671.50"></text></g><g><title>__fopen_internal (516 samples, 0.10%)</title><rect x="35.8872%" y="725" width="0.0956%" height="15" fill="rgb(244,217,54)" fg:x="193616" fg:w="516"/><text x="36.1372%" y="735.50"></text></g><g><title>malloc_hook_ini (377 samples, 0.07%)</title><rect x="35.9129%" y="709" width="0.0699%" height="15" fill="rgb(224,15,18)" fg:x="193755" fg:w="377"/><text x="36.1629%" y="719.50"></text></g><g><title>ptmalloc_init (376 samples, 0.07%)</title><rect x="35.9131%" y="693" width="0.0697%" height="15" fill="rgb(244,99,12)" fg:x="193756" fg:w="376"/><text x="36.1631%" y="703.50"></text></g><g><title>ptmalloc_init (376 samples, 0.07%)</title><rect x="35.9131%" y="677" width="0.0697%" height="15" fill="rgb(233,226,8)" fg:x="193756" fg:w="376"/><text x="36.1631%" y="687.50"></text></g><g><title>[libselinux.so.1] (896 samples, 0.17%)</title><rect x="35.8192%" y="757" width="0.1661%" height="15" fill="rgb(229,211,3)" fg:x="193249" fg:w="896"/><text x="36.0692%" y="767.50"></text></g><g><title>selinuxfs_exists (725 samples, 0.13%)</title><rect x="35.8509%" y="741" width="0.1344%" height="15" fill="rgb(216,140,21)" fg:x="193420" fg:w="725"/><text x="36.1009%" y="751.50"></text></g><g><title>_init (70 samples, 0.01%)</title><rect x="35.9852%" y="757" width="0.0130%" height="15" fill="rgb(234,122,30)" fg:x="194145" fg:w="70"/><text x="36.2352%" y="767.50"></text></g><g><title>_dl_start_user (1,017 samples, 0.19%)</title><rect x="35.8175%" y="821" width="0.1885%" height="15" fill="rgb(236,25,46)" fg:x="193240" fg:w="1017"/><text x="36.0675%" y="831.50"></text></g><g><title>_dl_init (1,016 samples, 0.19%)</title><rect x="35.8177%" y="805" width="0.1883%" height="15" fill="rgb(217,52,54)" fg:x="193241" fg:w="1016"/><text x="36.0677%" y="815.50"></text></g><g><title>call_init (1,013 samples, 0.19%)</title><rect x="35.8182%" y="789" width="0.1878%" height="15" fill="rgb(222,29,26)" fg:x="193244" fg:w="1013"/><text x="36.0682%" y="799.50"></text></g><g><title>call_init (1,010 samples, 0.19%)</title><rect x="35.8188%" y="773" width="0.1872%" height="15" fill="rgb(216,177,29)" fg:x="193247" fg:w="1010"/><text x="36.0688%" y="783.50"></text></g><g><title>__pthread_initialize_minimal_internal (118 samples, 0.02%)</title><rect x="36.0064%" y="805" width="0.0219%" height="15" fill="rgb(247,136,51)" fg:x="194259" fg:w="118"/><text x="36.2564%" y="815.50"></text></g><g><title>_init (157 samples, 0.03%)</title><rect x="36.0060%" y="821" width="0.0291%" height="15" fill="rgb(231,47,47)" fg:x="194257" fg:w="157"/><text x="36.2560%" y="831.50"></text></g><g><title>_dl_cache_libcmp (69 samples, 0.01%)</title><rect x="36.0825%" y="661" width="0.0128%" height="15" fill="rgb(211,192,36)" fg:x="194670" fg:w="69"/><text x="36.3325%" y="671.50"></text></g><g><title>_dl_sysdep_read_whole_file (123 samples, 0.02%)</title><rect x="36.0953%" y="661" width="0.0228%" height="15" fill="rgb(229,156,32)" fg:x="194739" fg:w="123"/><text x="36.3453%" y="671.50"></text></g><g><title>_dl_load_cache_lookup (259 samples, 0.05%)</title><rect x="36.0761%" y="677" width="0.0480%" height="15" fill="rgb(248,213,20)" fg:x="194635" fg:w="259"/><text x="36.3261%" y="687.50"></text></g><g><title>handle_mm_fault (153 samples, 0.03%)</title><rect x="36.1415%" y="581" width="0.0284%" height="15" fill="rgb(217,64,7)" fg:x="194988" fg:w="153"/><text x="36.3915%" y="591.50"></text></g><g><title>exc_page_fault (158 samples, 0.03%)</title><rect x="36.1407%" y="613" width="0.0293%" height="15" fill="rgb(232,142,8)" fg:x="194984" fg:w="158"/><text x="36.3907%" y="623.50"></text></g><g><title>do_user_addr_fault (158 samples, 0.03%)</title><rect x="36.1407%" y="597" width="0.0293%" height="15" fill="rgb(224,92,44)" fg:x="194984" fg:w="158"/><text x="36.3907%" y="607.50"></text></g><g><title>asm_exc_page_fault (169 samples, 0.03%)</title><rect x="36.1404%" y="629" width="0.0313%" height="15" fill="rgb(214,169,17)" fg:x="194982" fg:w="169"/><text x="36.3904%" y="639.50"></text></g><g><title>[ld-2.31.so] (193 samples, 0.04%)</title><rect x="36.1383%" y="645" width="0.0358%" height="15" fill="rgb(210,59,37)" fg:x="194971" fg:w="193"/><text x="36.3883%" y="655.50"></text></g><g><title>vma_interval_tree_insert (98 samples, 0.02%)</title><rect x="36.2186%" y="469" width="0.0182%" height="15" fill="rgb(214,116,48)" fg:x="195404" fg:w="98"/><text x="36.4686%" y="479.50"></text></g><g><title>__vma_adjust (237 samples, 0.04%)</title><rect x="36.2028%" y="485" width="0.0439%" height="15" fill="rgb(244,191,6)" fg:x="195319" fg:w="237"/><text x="36.4528%" y="495.50"></text></g><g><title>vma_interval_tree_remove (54 samples, 0.01%)</title><rect x="36.2368%" y="469" width="0.0100%" height="15" fill="rgb(241,50,52)" fg:x="195502" fg:w="54"/><text x="36.4868%" y="479.50"></text></g><g><title>vm_area_dup (89 samples, 0.02%)</title><rect x="36.2475%" y="485" width="0.0165%" height="15" fill="rgb(236,75,39)" fg:x="195560" fg:w="89"/><text x="36.4975%" y="495.50"></text></g><g><title>kmem_cache_alloc (65 samples, 0.01%)</title><rect x="36.2520%" y="469" width="0.0120%" height="15" fill="rgb(236,99,0)" fg:x="195584" fg:w="65"/><text x="36.5020%" y="479.50"></text></g><g><title>__split_vma (341 samples, 0.06%)</title><rect x="36.2010%" y="501" width="0.0632%" height="15" fill="rgb(207,202,15)" fg:x="195309" fg:w="341"/><text x="36.4510%" y="511.50"></text></g><g><title>unmap_region (139 samples, 0.03%)</title><rect x="36.2751%" y="501" width="0.0258%" height="15" fill="rgb(233,207,14)" fg:x="195709" fg:w="139"/><text x="36.5251%" y="511.50"></text></g><g><title>unmap_vmas (59 samples, 0.01%)</title><rect x="36.2900%" y="485" width="0.0109%" height="15" fill="rgb(226,27,51)" fg:x="195789" fg:w="59"/><text x="36.5400%" y="495.50"></text></g><g><title>__do_munmap (562 samples, 0.10%)</title><rect x="36.1973%" y="517" width="0.1042%" height="15" fill="rgb(206,104,42)" fg:x="195289" fg:w="562"/><text x="36.4473%" y="527.50"></text></g><g><title>perf_iterate_sb (120 samples, 0.02%)</title><rect x="36.3255%" y="501" width="0.0222%" height="15" fill="rgb(212,225,4)" fg:x="195981" fg:w="120"/><text x="36.5755%" y="511.50"></text></g><g><title>perf_iterate_ctx (110 samples, 0.02%)</title><rect x="36.3274%" y="485" width="0.0204%" height="15" fill="rgb(233,96,42)" fg:x="195991" fg:w="110"/><text x="36.5774%" y="495.50"></text></g><g><title>perf_event_mmap_output (86 samples, 0.02%)</title><rect x="36.3318%" y="469" width="0.0159%" height="15" fill="rgb(229,21,32)" fg:x="196015" fg:w="86"/><text x="36.5818%" y="479.50"></text></g><g><title>perf_event_mmap (256 samples, 0.05%)</title><rect x="36.3031%" y="517" width="0.0475%" height="15" fill="rgb(226,216,24)" fg:x="195860" fg:w="256"/><text x="36.5531%" y="527.50"></text></g><g><title>vma_link (97 samples, 0.02%)</title><rect x="36.3606%" y="517" width="0.0180%" height="15" fill="rgb(221,163,17)" fg:x="196170" fg:w="97"/><text x="36.6106%" y="527.50"></text></g><g><title>vma_interval_tree_insert (60 samples, 0.01%)</title><rect x="36.3674%" y="501" width="0.0111%" height="15" fill="rgb(216,216,42)" fg:x="196207" fg:w="60"/><text x="36.6174%" y="511.50"></text></g><g><title>mmap_region (1,068 samples, 0.20%)</title><rect x="36.1882%" y="533" width="0.1980%" height="15" fill="rgb(240,118,7)" fg:x="195240" fg:w="1068"/><text x="36.4382%" y="543.50"></text></g><g><title>do_mmap (1,107 samples, 0.21%)</title><rect x="36.1817%" y="549" width="0.2052%" height="15" fill="rgb(221,67,37)" fg:x="195205" fg:w="1107"/><text x="36.4317%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (1,142 samples, 0.21%)</title><rect x="36.1782%" y="581" width="0.2117%" height="15" fill="rgb(241,32,44)" fg:x="195186" fg:w="1142"/><text x="36.4282%" y="591.50"></text></g><g><title>vm_mmap_pgoff (1,130 samples, 0.21%)</title><rect x="36.1804%" y="565" width="0.2094%" height="15" fill="rgb(235,204,43)" fg:x="195198" fg:w="1130"/><text x="36.4304%" y="575.50"></text></g><g><title>do_mmap (85 samples, 0.02%)</title><rect x="36.3902%" y="565" width="0.0158%" height="15" fill="rgb(213,116,10)" fg:x="196330" fg:w="85"/><text x="36.6402%" y="575.50"></text></g><g><title>mmap_region (79 samples, 0.01%)</title><rect x="36.3913%" y="549" width="0.0146%" height="15" fill="rgb(239,15,48)" fg:x="196336" fg:w="79"/><text x="36.6413%" y="559.50"></text></g><g><title>do_syscall_64 (1,231 samples, 0.23%)</title><rect x="36.1780%" y="597" width="0.2282%" height="15" fill="rgb(207,123,36)" fg:x="195185" fg:w="1231"/><text x="36.4280%" y="607.50"></text></g><g><title>vm_mmap_pgoff (87 samples, 0.02%)</title><rect x="36.3900%" y="581" width="0.0161%" height="15" fill="rgb(209,103,30)" fg:x="196329" fg:w="87"/><text x="36.6400%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,258 samples, 0.23%)</title><rect x="36.1771%" y="613" width="0.2332%" height="15" fill="rgb(238,100,19)" fg:x="195180" fg:w="1258"/><text x="36.4271%" y="623.50"></text></g><g><title>__mmap64 (1,282 samples, 0.24%)</title><rect x="36.1741%" y="645" width="0.2376%" height="15" fill="rgb(244,30,14)" fg:x="195164" fg:w="1282"/><text x="36.4241%" y="655.50"></text></g><g><title>__mmap64 (1,281 samples, 0.24%)</title><rect x="36.1743%" y="629" width="0.2374%" height="15" fill="rgb(249,174,6)" fg:x="195165" fg:w="1281"/><text x="36.4243%" y="639.50"></text></g><g><title>_dl_map_segments (1,485 samples, 0.28%)</title><rect x="36.1372%" y="661" width="0.2752%" height="15" fill="rgb(235,213,41)" fg:x="194965" fg:w="1485"/><text x="36.3872%" y="671.50"></text></g><g><title>_dl_new_object (72 samples, 0.01%)</title><rect x="36.4125%" y="661" width="0.0133%" height="15" fill="rgb(213,118,6)" fg:x="196450" fg:w="72"/><text x="36.6625%" y="671.50"></text></g><g><title>handle_mm_fault (66 samples, 0.01%)</title><rect x="36.4312%" y="597" width="0.0122%" height="15" fill="rgb(235,44,51)" fg:x="196551" fg:w="66"/><text x="36.6812%" y="607.50"></text></g><g><title>exc_page_fault (78 samples, 0.01%)</title><rect x="36.4291%" y="629" width="0.0145%" height="15" fill="rgb(217,9,53)" fg:x="196540" fg:w="78"/><text x="36.6791%" y="639.50"></text></g><g><title>do_user_addr_fault (78 samples, 0.01%)</title><rect x="36.4291%" y="613" width="0.0145%" height="15" fill="rgb(237,172,34)" fg:x="196540" fg:w="78"/><text x="36.6791%" y="623.50"></text></g><g><title>asm_exc_page_fault (95 samples, 0.02%)</title><rect x="36.4288%" y="645" width="0.0176%" height="15" fill="rgb(206,206,11)" fg:x="196538" fg:w="95"/><text x="36.6788%" y="655.50"></text></g><g><title>_dl_setup_hash (124 samples, 0.02%)</title><rect x="36.4258%" y="661" width="0.0230%" height="15" fill="rgb(214,149,29)" fg:x="196522" fg:w="124"/><text x="36.6758%" y="671.50"></text></g><g><title>handle_mm_fault (124 samples, 0.02%)</title><rect x="36.4588%" y="597" width="0.0230%" height="15" fill="rgb(208,123,3)" fg:x="196700" fg:w="124"/><text x="36.7088%" y="607.50"></text></g><g><title>wp_page_copy (81 samples, 0.02%)</title><rect x="36.4668%" y="581" width="0.0150%" height="15" fill="rgb(229,126,4)" fg:x="196743" fg:w="81"/><text x="36.7168%" y="591.50"></text></g><g><title>exc_page_fault (139 samples, 0.03%)</title><rect x="36.4566%" y="629" width="0.0258%" height="15" fill="rgb(222,92,36)" fg:x="196688" fg:w="139"/><text x="36.7066%" y="639.50"></text></g><g><title>do_user_addr_fault (138 samples, 0.03%)</title><rect x="36.4568%" y="613" width="0.0256%" height="15" fill="rgb(216,39,41)" fg:x="196689" fg:w="138"/><text x="36.7068%" y="623.50"></text></g><g><title>asm_exc_page_fault (141 samples, 0.03%)</title><rect x="36.4566%" y="645" width="0.0261%" height="15" fill="rgb(253,127,28)" fg:x="196688" fg:w="141"/><text x="36.7066%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (1,948 samples, 0.36%)</title><rect x="36.1241%" y="677" width="0.3611%" height="15" fill="rgb(249,152,51)" fg:x="194894" fg:w="1948"/><text x="36.3741%" y="687.50"></text></g><g><title>elf_get_dynamic_info (196 samples, 0.04%)</title><rect x="36.4488%" y="661" width="0.0363%" height="15" fill="rgb(209,123,42)" fg:x="196646" fg:w="196"/><text x="36.6988%" y="671.50"></text></g><g><title>link_path_walk.part.0 (57 samples, 0.01%)</title><rect x="36.5107%" y="549" width="0.0106%" height="15" fill="rgb(241,118,22)" fg:x="196980" fg:w="57"/><text x="36.7607%" y="559.50"></text></g><g><title>do_filp_open (187 samples, 0.03%)</title><rect x="36.4957%" y="581" width="0.0347%" height="15" fill="rgb(208,25,7)" fg:x="196899" fg:w="187"/><text x="36.7457%" y="591.50"></text></g><g><title>path_openat (184 samples, 0.03%)</title><rect x="36.4962%" y="565" width="0.0341%" height="15" fill="rgb(243,144,39)" fg:x="196902" fg:w="184"/><text x="36.7462%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.05%)</title><rect x="36.4922%" y="645" width="0.0454%" height="15" fill="rgb(250,50,5)" fg:x="196880" fg:w="245"/><text x="36.7422%" y="655.50"></text></g><g><title>do_syscall_64 (245 samples, 0.05%)</title><rect x="36.4922%" y="629" width="0.0454%" height="15" fill="rgb(207,67,11)" fg:x="196880" fg:w="245"/><text x="36.7422%" y="639.50"></text></g><g><title>__x64_sys_openat (245 samples, 0.05%)</title><rect x="36.4922%" y="613" width="0.0454%" height="15" fill="rgb(245,204,40)" fg:x="196880" fg:w="245"/><text x="36.7422%" y="623.50"></text></g><g><title>do_sys_openat2 (243 samples, 0.05%)</title><rect x="36.4925%" y="597" width="0.0450%" height="15" fill="rgb(238,228,24)" fg:x="196882" fg:w="243"/><text x="36.7425%" y="607.50"></text></g><g><title>__GI___open64_nocancel (251 samples, 0.05%)</title><rect x="36.4916%" y="661" width="0.0465%" height="15" fill="rgb(217,116,22)" fg:x="196877" fg:w="251"/><text x="36.7416%" y="671.50"></text></g><g><title>open_verify (312 samples, 0.06%)</title><rect x="36.4899%" y="677" width="0.0578%" height="15" fill="rgb(234,98,12)" fg:x="196868" fg:w="312"/><text x="36.7399%" y="687.50"></text></g><g><title>_dl_catch_exception (2,617 samples, 0.49%)</title><rect x="36.0692%" y="725" width="0.4851%" height="15" fill="rgb(242,170,50)" fg:x="194598" fg:w="2617"/><text x="36.3192%" y="735.50"></text></g><g><title>openaux (2,611 samples, 0.48%)</title><rect x="36.0703%" y="709" width="0.4840%" height="15" fill="rgb(235,7,5)" fg:x="194604" fg:w="2611"/><text x="36.3203%" y="719.50"></text></g><g><title>_dl_map_object (2,609 samples, 0.48%)</title><rect x="36.0707%" y="693" width="0.4836%" height="15" fill="rgb(241,114,28)" fg:x="194606" fg:w="2609"/><text x="36.3207%" y="703.50"></text></g><g><title>_dl_map_object_deps (2,692 samples, 0.50%)</title><rect x="36.0659%" y="741" width="0.4990%" height="15" fill="rgb(246,112,42)" fg:x="194580" fg:w="2692"/><text x="36.3159%" y="751.50"></text></g><g><title>_dl_receive_error (88 samples, 0.02%)</title><rect x="36.5669%" y="741" width="0.0163%" height="15" fill="rgb(248,228,14)" fg:x="197283" fg:w="88"/><text x="36.8169%" y="751.50"></text></g><g><title>version_check_doit (88 samples, 0.02%)</title><rect x="36.5669%" y="725" width="0.0163%" height="15" fill="rgb(208,133,18)" fg:x="197283" fg:w="88"/><text x="36.8169%" y="735.50"></text></g><g><title>_dl_check_all_versions (88 samples, 0.02%)</title><rect x="36.5669%" y="709" width="0.0163%" height="15" fill="rgb(207,35,49)" fg:x="197283" fg:w="88"/><text x="36.8169%" y="719.50"></text></g><g><title>_dl_check_map_versions (88 samples, 0.02%)</title><rect x="36.5669%" y="693" width="0.0163%" height="15" fill="rgb(205,68,36)" fg:x="197283" fg:w="88"/><text x="36.8169%" y="703.50"></text></g><g><title>__vma_adjust (85 samples, 0.02%)</title><rect x="36.5893%" y="597" width="0.0158%" height="15" fill="rgb(245,62,40)" fg:x="197404" fg:w="85"/><text x="36.8393%" y="607.50"></text></g><g><title>__split_vma (145 samples, 0.03%)</title><rect x="36.5887%" y="613" width="0.0269%" height="15" fill="rgb(228,27,24)" fg:x="197401" fg:w="145"/><text x="36.8387%" y="623.50"></text></g><g><title>perf_event_mmap (89 samples, 0.02%)</title><rect x="36.6202%" y="613" width="0.0165%" height="15" fill="rgb(253,19,12)" fg:x="197571" fg:w="89"/><text x="36.8702%" y="623.50"></text></g><g><title>mprotect_fixup (269 samples, 0.05%)</title><rect x="36.5884%" y="629" width="0.0499%" height="15" fill="rgb(232,28,20)" fg:x="197399" fg:w="269"/><text x="36.8384%" y="639.50"></text></g><g><title>__x64_sys_mprotect (292 samples, 0.05%)</title><rect x="36.5863%" y="661" width="0.0541%" height="15" fill="rgb(218,35,51)" fg:x="197388" fg:w="292"/><text x="36.8363%" y="671.50"></text></g><g><title>do_mprotect_pkey (292 samples, 0.05%)</title><rect x="36.5863%" y="645" width="0.0541%" height="15" fill="rgb(212,90,40)" fg:x="197388" fg:w="292"/><text x="36.8363%" y="655.50"></text></g><g><title>do_syscall_64 (294 samples, 0.05%)</title><rect x="36.5861%" y="677" width="0.0545%" height="15" fill="rgb(220,172,12)" fg:x="197387" fg:w="294"/><text x="36.8361%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (296 samples, 0.05%)</title><rect x="36.5860%" y="693" width="0.0549%" height="15" fill="rgb(226,159,20)" fg:x="197386" fg:w="296"/><text x="36.8360%" y="703.50"></text></g><g><title>_dl_protect_relro (302 samples, 0.06%)</title><rect x="36.5850%" y="725" width="0.0560%" height="15" fill="rgb(234,205,16)" fg:x="197381" fg:w="302"/><text x="36.8350%" y="735.50"></text></g><g><title>__mprotect (301 samples, 0.06%)</title><rect x="36.5852%" y="709" width="0.0558%" height="15" fill="rgb(207,9,39)" fg:x="197382" fg:w="301"/><text x="36.8352%" y="719.50"></text></g><g><title>elf_machine_lazy_rel (59 samples, 0.01%)</title><rect x="36.6531%" y="709" width="0.0109%" height="15" fill="rgb(249,143,15)" fg:x="197748" fg:w="59"/><text x="36.9031%" y="719.50"></text></g><g><title>dl_new_hash (117 samples, 0.02%)</title><rect x="36.7016%" y="677" width="0.0217%" height="15" fill="rgb(253,133,29)" fg:x="198010" fg:w="117"/><text x="36.9516%" y="687.50"></text></g><g><title>check_match (255 samples, 0.05%)</title><rect x="36.8013%" y="661" width="0.0473%" height="15" fill="rgb(221,187,0)" fg:x="198548" fg:w="255"/><text x="37.0513%" y="671.50"></text></g><g><title>strcmp (165 samples, 0.03%)</title><rect x="36.8180%" y="645" width="0.0306%" height="15" fill="rgb(205,204,26)" fg:x="198638" fg:w="165"/><text x="37.0680%" y="655.50"></text></g><g><title>_dl_lookup_symbol_x (867 samples, 0.16%)</title><rect x="36.6888%" y="693" width="0.1607%" height="15" fill="rgb(224,68,54)" fg:x="197941" fg:w="867"/><text x="36.9388%" y="703.50"></text></g><g><title>do_lookup_x (681 samples, 0.13%)</title><rect x="36.7233%" y="677" width="0.1262%" height="15" fill="rgb(209,67,4)" fg:x="198127" fg:w="681"/><text x="36.9733%" y="687.50"></text></g><g><title>elf_machine_rela (1,021 samples, 0.19%)</title><rect x="36.6640%" y="709" width="0.1892%" height="15" fill="rgb(228,229,18)" fg:x="197807" fg:w="1021"/><text x="36.9140%" y="719.50"></text></g><g><title>exc_page_fault (57 samples, 0.01%)</title><rect x="36.8590%" y="677" width="0.0106%" height="15" fill="rgb(231,89,13)" fg:x="198859" fg:w="57"/><text x="37.1090%" y="687.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.01%)</title><rect x="36.8590%" y="661" width="0.0106%" height="15" fill="rgb(210,182,18)" fg:x="198859" fg:w="57"/><text x="37.1090%" y="671.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="36.8590%" y="693" width="0.0108%" height="15" fill="rgb(240,105,2)" fg:x="198859" fg:w="58"/><text x="37.1090%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (1,242 samples, 0.23%)</title><rect x="36.6410%" y="725" width="0.2302%" height="15" fill="rgb(207,170,50)" fg:x="197683" fg:w="1242"/><text x="36.8910%" y="735.50"></text></g><g><title>elf_machine_rela_relative (97 samples, 0.02%)</title><rect x="36.8532%" y="709" width="0.0180%" height="15" fill="rgb(232,133,24)" fg:x="198828" fg:w="97"/><text x="37.1032%" y="719.50"></text></g><g><title>_dl_relocate_object (1,582 samples, 0.29%)</title><rect x="36.5832%" y="741" width="0.2932%" height="15" fill="rgb(235,166,27)" fg:x="197371" fg:w="1582"/><text x="36.8332%" y="751.50"></text></g><g><title>do_syscall_64 (99 samples, 0.02%)</title><rect x="36.8766%" y="693" width="0.0183%" height="15" fill="rgb(209,19,13)" fg:x="198954" fg:w="99"/><text x="37.1266%" y="703.50"></text></g><g><title>__x64_sys_munmap (99 samples, 0.02%)</title><rect x="36.8766%" y="677" width="0.0183%" height="15" fill="rgb(226,79,39)" fg:x="198954" fg:w="99"/><text x="37.1266%" y="687.50"></text></g><g><title>__vm_munmap (99 samples, 0.02%)</title><rect x="36.8766%" y="661" width="0.0183%" height="15" fill="rgb(222,163,10)" fg:x="198954" fg:w="99"/><text x="37.1266%" y="671.50"></text></g><g><title>__do_munmap (97 samples, 0.02%)</title><rect x="36.8770%" y="645" width="0.0180%" height="15" fill="rgb(214,44,19)" fg:x="198956" fg:w="97"/><text x="37.1270%" y="655.50"></text></g><g><title>unmap_region (72 samples, 0.01%)</title><rect x="36.8816%" y="629" width="0.0133%" height="15" fill="rgb(210,217,13)" fg:x="198981" fg:w="72"/><text x="37.1316%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.02%)</title><rect x="36.8766%" y="709" width="0.0202%" height="15" fill="rgb(237,61,54)" fg:x="198954" fg:w="109"/><text x="37.1266%" y="719.50"></text></g><g><title>_dl_unload_cache (110 samples, 0.02%)</title><rect x="36.8766%" y="741" width="0.0204%" height="15" fill="rgb(226,184,24)" fg:x="198954" fg:w="110"/><text x="37.1266%" y="751.50"></text></g><g><title>munmap (110 samples, 0.02%)</title><rect x="36.8766%" y="725" width="0.0204%" height="15" fill="rgb(223,226,4)" fg:x="198954" fg:w="110"/><text x="37.1266%" y="735.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="36.8972%" y="725" width="0.0108%" height="15" fill="rgb(210,26,41)" fg:x="199065" fg:w="58"/><text x="37.1472%" y="735.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="36.8972%" y="709" width="0.0108%" height="15" fill="rgb(220,221,6)" fg:x="199065" fg:w="58"/><text x="37.1472%" y="719.50"></text></g><g><title>asm_exc_page_fault (60 samples, 0.01%)</title><rect x="36.8970%" y="741" width="0.0111%" height="15" fill="rgb(225,89,49)" fg:x="199064" fg:w="60"/><text x="37.1470%" y="751.50"></text></g><g><title>_dl_allocate_tls_storage (55 samples, 0.01%)</title><rect x="36.9101%" y="725" width="0.0102%" height="15" fill="rgb(218,70,45)" fg:x="199135" fg:w="55"/><text x="37.1601%" y="735.50"></text></g><g><title>[ld-2.31.so] (4,769 samples, 0.88%)</title><rect x="36.0377%" y="757" width="0.8839%" height="15" fill="rgb(238,166,21)" fg:x="194428" fg:w="4769"/><text x="36.2877%" y="767.50"></text></g><g><title>init_tls (63 samples, 0.01%)</title><rect x="36.9100%" y="741" width="0.0117%" height="15" fill="rgb(224,141,44)" fg:x="199134" fg:w="63"/><text x="37.1600%" y="751.50"></text></g><g><title>_dl_start_final (4,896 samples, 0.91%)</title><rect x="36.0358%" y="789" width="0.9075%" height="15" fill="rgb(230,12,49)" fg:x="194418" fg:w="4896"/><text x="36.2858%" y="799.50"></text></g><g><title>_dl_sysdep_start (4,895 samples, 0.91%)</title><rect x="36.0360%" y="773" width="0.9073%" height="15" fill="rgb(212,174,12)" fg:x="194419" fg:w="4895"/><text x="36.2860%" y="783.50"></text></g><g><title>_dl_start (4,988 samples, 0.92%)</title><rect x="36.0355%" y="805" width="0.9245%" height="15" fill="rgb(246,67,9)" fg:x="194416" fg:w="4988"/><text x="36.2855%" y="815.50"></text></g><g><title>_start (5,031 samples, 0.93%)</title><rect x="36.0351%" y="821" width="0.9325%" height="15" fill="rgb(239,35,23)" fg:x="194414" fg:w="5031"/><text x="36.2851%" y="831.50"></text></g><g><title>asm_exc_page_fault (317 samples, 0.06%)</title><rect x="36.9676%" y="821" width="0.0588%" height="15" fill="rgb(211,167,0)" fg:x="199445" fg:w="317"/><text x="37.2176%" y="831.50"></text></g><g><title>do_user_addr_fault (57 samples, 0.01%)</title><rect x="37.0332%" y="677" width="0.0106%" height="15" fill="rgb(225,119,45)" fg:x="199799" fg:w="57"/><text x="37.2832%" y="687.50"></text></g><g><title>__clear_user (63 samples, 0.01%)</title><rect x="37.0323%" y="725" width="0.0117%" height="15" fill="rgb(210,162,6)" fg:x="199794" fg:w="63"/><text x="37.2823%" y="735.50"></text></g><g><title>asm_exc_page_fault (59 samples, 0.01%)</title><rect x="37.0330%" y="709" width="0.0109%" height="15" fill="rgb(208,118,35)" fg:x="199798" fg:w="59"/><text x="37.2830%" y="719.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="37.0332%" y="693" width="0.0108%" height="15" fill="rgb(239,4,53)" fg:x="199799" fg:w="58"/><text x="37.2832%" y="703.50"></text></g><g><title>__do_munmap (69 samples, 0.01%)</title><rect x="37.0547%" y="693" width="0.0128%" height="15" fill="rgb(213,130,21)" fg:x="199915" fg:w="69"/><text x="37.3047%" y="703.50"></text></g><g><title>__vm_munmap (71 samples, 0.01%)</title><rect x="37.0547%" y="709" width="0.0132%" height="15" fill="rgb(235,148,0)" fg:x="199915" fg:w="71"/><text x="37.3047%" y="719.50"></text></g><g><title>do_mmap (83 samples, 0.02%)</title><rect x="37.0679%" y="693" width="0.0154%" height="15" fill="rgb(244,224,18)" fg:x="199986" fg:w="83"/><text x="37.3179%" y="703.50"></text></g><g><title>mmap_region (74 samples, 0.01%)</title><rect x="37.0695%" y="677" width="0.0137%" height="15" fill="rgb(211,214,4)" fg:x="199995" fg:w="74"/><text x="37.3195%" y="687.50"></text></g><g><title>vm_mmap_pgoff (86 samples, 0.02%)</title><rect x="37.0679%" y="709" width="0.0159%" height="15" fill="rgb(206,119,25)" fg:x="199986" fg:w="86"/><text x="37.3179%" y="719.50"></text></g><g><title>elf_map (159 samples, 0.03%)</title><rect x="37.0545%" y="725" width="0.0295%" height="15" fill="rgb(243,93,47)" fg:x="199914" fg:w="159"/><text x="37.3045%" y="735.50"></text></g><g><title>setup_arg_pages (82 samples, 0.02%)</title><rect x="37.0901%" y="725" width="0.0152%" height="15" fill="rgb(224,194,6)" fg:x="200106" fg:w="82"/><text x="37.3401%" y="735.50"></text></g><g><title>shift_arg_pages (63 samples, 0.01%)</title><rect x="37.0936%" y="709" width="0.0117%" height="15" fill="rgb(243,229,6)" fg:x="200125" fg:w="63"/><text x="37.3436%" y="719.50"></text></g><g><title>mmap_region (101 samples, 0.02%)</title><rect x="37.1125%" y="693" width="0.0187%" height="15" fill="rgb(207,23,50)" fg:x="200227" fg:w="101"/><text x="37.3625%" y="703.50"></text></g><g><title>do_mmap (107 samples, 0.02%)</title><rect x="37.1116%" y="709" width="0.0198%" height="15" fill="rgb(253,192,32)" fg:x="200222" fg:w="107"/><text x="37.3616%" y="719.50"></text></g><g><title>__x64_sys_execve (571 samples, 0.11%)</title><rect x="37.0280%" y="789" width="0.1058%" height="15" fill="rgb(213,21,6)" fg:x="199771" fg:w="571"/><text x="37.2780%" y="799.50"></text></g><g><title>do_execveat_common (571 samples, 0.11%)</title><rect x="37.0280%" y="773" width="0.1058%" height="15" fill="rgb(243,151,13)" fg:x="199771" fg:w="571"/><text x="37.2780%" y="783.50"></text></g><g><title>bprm_execve (571 samples, 0.11%)</title><rect x="37.0280%" y="757" width="0.1058%" height="15" fill="rgb(233,165,41)" fg:x="199771" fg:w="571"/><text x="37.2780%" y="767.50"></text></g><g><title>load_elf_binary (571 samples, 0.11%)</title><rect x="37.0280%" y="741" width="0.1058%" height="15" fill="rgb(246,176,45)" fg:x="199771" fg:w="571"/><text x="37.2780%" y="751.50"></text></g><g><title>vm_mmap_pgoff (120 samples, 0.02%)</title><rect x="37.1116%" y="725" width="0.0222%" height="15" fill="rgb(217,170,52)" fg:x="200222" fg:w="120"/><text x="37.3616%" y="735.50"></text></g><g><title>unlink_anon_vmas (81 samples, 0.02%)</title><rect x="37.1405%" y="693" width="0.0150%" height="15" fill="rgb(214,203,54)" fg:x="200378" fg:w="81"/><text x="37.3905%" y="703.50"></text></g><g><title>unlink_file_vma (65 samples, 0.01%)</title><rect x="37.1555%" y="693" width="0.0120%" height="15" fill="rgb(248,215,49)" fg:x="200459" fg:w="65"/><text x="37.4055%" y="703.50"></text></g><g><title>free_pgtables (164 samples, 0.03%)</title><rect x="37.1383%" y="709" width="0.0304%" height="15" fill="rgb(208,46,10)" fg:x="200366" fg:w="164"/><text x="37.3883%" y="719.50"></text></g><g><title>kmem_cache_free (58 samples, 0.01%)</title><rect x="37.1754%" y="693" width="0.0108%" height="15" fill="rgb(254,5,31)" fg:x="200566" fg:w="58"/><text x="37.4254%" y="703.50"></text></g><g><title>remove_vma (77 samples, 0.01%)</title><rect x="37.1720%" y="709" width="0.0143%" height="15" fill="rgb(222,104,33)" fg:x="200548" fg:w="77"/><text x="37.4220%" y="719.50"></text></g><g><title>tlb_finish_mmu (149 samples, 0.03%)</title><rect x="37.1863%" y="709" width="0.0276%" height="15" fill="rgb(248,49,16)" fg:x="200625" fg:w="149"/><text x="37.4363%" y="719.50"></text></g><g><title>release_pages (116 samples, 0.02%)</title><rect x="37.1924%" y="693" width="0.0215%" height="15" fill="rgb(232,198,41)" fg:x="200658" fg:w="116"/><text x="37.4424%" y="703.50"></text></g><g><title>page_remove_rmap (117 samples, 0.02%)</title><rect x="37.2651%" y="677" width="0.0217%" height="15" fill="rgb(214,125,3)" fg:x="201050" fg:w="117"/><text x="37.5151%" y="687.50"></text></g><g><title>unmap_page_range (413 samples, 0.08%)</title><rect x="37.2150%" y="693" width="0.0766%" height="15" fill="rgb(229,220,28)" fg:x="200780" fg:w="413"/><text x="37.4650%" y="703.50"></text></g><g><title>exit_mmap (848 samples, 0.16%)</title><rect x="37.1366%" y="725" width="0.1572%" height="15" fill="rgb(222,64,37)" fg:x="200357" fg:w="848"/><text x="37.3866%" y="735.50"></text></g><g><title>unmap_vmas (430 samples, 0.08%)</title><rect x="37.2141%" y="709" width="0.0797%" height="15" fill="rgb(249,184,13)" fg:x="200775" fg:w="430"/><text x="37.4641%" y="719.50"></text></g><g><title>mmput (854 samples, 0.16%)</title><rect x="37.1366%" y="741" width="0.1583%" height="15" fill="rgb(252,176,6)" fg:x="200357" fg:w="854"/><text x="37.3866%" y="751.50"></text></g><g><title>__fput (69 samples, 0.01%)</title><rect x="37.2970%" y="725" width="0.0128%" height="15" fill="rgb(228,153,7)" fg:x="201222" fg:w="69"/><text x="37.5470%" y="735.50"></text></g><g><title>__x64_sys_exit_group (960 samples, 0.18%)</title><rect x="37.1339%" y="789" width="0.1779%" height="15" fill="rgb(242,193,5)" fg:x="200342" fg:w="960"/><text x="37.3839%" y="799.50"></text></g><g><title>do_group_exit (960 samples, 0.18%)</title><rect x="37.1339%" y="773" width="0.1779%" height="15" fill="rgb(232,140,9)" fg:x="200342" fg:w="960"/><text x="37.3839%" y="783.50"></text></g><g><title>do_exit (960 samples, 0.18%)</title><rect x="37.1339%" y="757" width="0.1779%" height="15" fill="rgb(213,222,16)" fg:x="200342" fg:w="960"/><text x="37.3839%" y="767.50"></text></g><g><title>task_work_run (82 samples, 0.02%)</title><rect x="37.2966%" y="741" width="0.0152%" height="15" fill="rgb(222,75,50)" fg:x="201220" fg:w="82"/><text x="37.5466%" y="751.50"></text></g><g><title>do_syscall_64 (1,533 samples, 0.28%)</title><rect x="37.0280%" y="805" width="0.2841%" height="15" fill="rgb(205,180,2)" fg:x="199771" fg:w="1533"/><text x="37.2780%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,539 samples, 0.29%)</title><rect x="37.0271%" y="821" width="0.2853%" height="15" fill="rgb(216,34,7)" fg:x="199766" fg:w="1539"/><text x="37.2771%" y="831.50"></text></g><g><title>sed (10,126 samples, 1.88%)</title><rect x="35.4373%" y="837" width="1.8769%" height="15" fill="rgb(253,16,32)" fg:x="191189" fg:w="10126"/><text x="35.6873%" y="847.50">s..</text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (92 samples, 0.02%)</title><rect x="37.3270%" y="805" width="0.0171%" height="15" fill="rgb(208,97,28)" fg:x="201384" fg:w="92"/><text x="37.5770%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (55 samples, 0.01%)</title><rect x="37.3455%" y="805" width="0.0102%" height="15" fill="rgb(225,92,11)" fg:x="201484" fg:w="55"/><text x="37.5955%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (71 samples, 0.01%)</title><rect x="37.3889%" y="805" width="0.0132%" height="15" fill="rgb(243,38,12)" fg:x="201718" fg:w="71"/><text x="37.6389%" y="815.50"></text></g><g><title>JavaThread::is_Java_thread (144 samples, 0.03%)</title><rect x="37.4365%" y="805" width="0.0267%" height="15" fill="rgb(208,139,16)" fg:x="201975" fg:w="144"/><text x="37.6865%" y="815.50"></text></g><g><title>ThreadHeapSampler::enabled (66 samples, 0.01%)</title><rect x="37.5118%" y="805" width="0.0122%" height="15" fill="rgb(227,24,9)" fg:x="202381" fg:w="66"/><text x="37.7618%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (101 samples, 0.02%)</title><rect x="37.5346%" y="805" width="0.0187%" height="15" fill="rgb(206,62,11)" fg:x="202504" fg:w="101"/><text x="37.7846%" y="815.50"></text></g><g><title>_int_free (95 samples, 0.02%)</title><rect x="37.5928%" y="805" width="0.0176%" height="15" fill="rgb(228,134,27)" fg:x="202818" fg:w="95"/><text x="37.8428%" y="815.50"></text></g><g><title>check_bounds (161 samples, 0.03%)</title><rect x="37.6141%" y="805" width="0.0298%" height="15" fill="rgb(205,55,33)" fg:x="202933" fg:w="161"/><text x="37.8641%" y="815.50"></text></g><g><title>java_lang_String::basic_create (64 samples, 0.01%)</title><rect x="37.6503%" y="805" width="0.0119%" height="15" fill="rgb(243,75,43)" fg:x="203128" fg:w="64"/><text x="37.9003%" y="815.50"></text></g><g><title>jni_NewString (131 samples, 0.02%)</title><rect x="37.6910%" y="805" width="0.0243%" height="15" fill="rgb(223,27,42)" fg:x="203348" fg:w="131"/><text x="37.9410%" y="815.50"></text></g><g><title>[anon] (2,253 samples, 0.42%)</title><rect x="37.3222%" y="821" width="0.4176%" height="15" fill="rgb(232,189,33)" fg:x="201358" fg:w="2253"/><text x="37.5722%" y="831.50"></text></g><g><title>[libc-2.31.so] (279 samples, 0.05%)</title><rect x="38.4248%" y="805" width="0.0517%" height="15" fill="rgb(210,9,39)" fg:x="207307" fg:w="279"/><text x="38.6748%" y="815.50"></text></g><g><title>dnotify_flush (55 samples, 0.01%)</title><rect x="38.4908%" y="725" width="0.0102%" height="15" fill="rgb(242,85,26)" fg:x="207663" fg:w="55"/><text x="38.7408%" y="735.50"></text></g><g><title>__x64_sys_close (127 samples, 0.02%)</title><rect x="38.4843%" y="757" width="0.0235%" height="15" fill="rgb(248,44,4)" fg:x="207628" fg:w="127"/><text x="38.7343%" y="767.50"></text></g><g><title>filp_close (100 samples, 0.02%)</title><rect x="38.4893%" y="741" width="0.0185%" height="15" fill="rgb(250,96,46)" fg:x="207655" fg:w="100"/><text x="38.7393%" y="751.50"></text></g><g><title>do_syscall_64 (141 samples, 0.03%)</title><rect x="38.4821%" y="773" width="0.0261%" height="15" fill="rgb(229,116,26)" fg:x="207616" fg:w="141"/><text x="38.7321%" y="783.50"></text></g><g><title>btrfs_release_file (117 samples, 0.02%)</title><rect x="38.5242%" y="709" width="0.0217%" height="15" fill="rgb(246,94,34)" fg:x="207843" fg:w="117"/><text x="38.7742%" y="719.50"></text></g><g><title>kfree (80 samples, 0.01%)</title><rect x="38.5310%" y="693" width="0.0148%" height="15" fill="rgb(251,73,21)" fg:x="207880" fg:w="80"/><text x="38.7810%" y="703.50"></text></g><g><title>__fput (257 samples, 0.05%)</title><rect x="38.5171%" y="725" width="0.0476%" height="15" fill="rgb(254,121,25)" fg:x="207805" fg:w="257"/><text x="38.7671%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (493 samples, 0.09%)</title><rect x="38.4816%" y="789" width="0.0914%" height="15" fill="rgb(215,161,49)" fg:x="207613" fg:w="493"/><text x="38.7316%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (349 samples, 0.06%)</title><rect x="38.5082%" y="773" width="0.0647%" height="15" fill="rgb(221,43,13)" fg:x="207757" fg:w="349"/><text x="38.7582%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (348 samples, 0.06%)</title><rect x="38.5084%" y="757" width="0.0645%" height="15" fill="rgb(249,5,37)" fg:x="207758" fg:w="348"/><text x="38.7584%" y="767.50"></text></g><g><title>task_work_run (315 samples, 0.06%)</title><rect x="38.5145%" y="741" width="0.0584%" height="15" fill="rgb(226,25,44)" fg:x="207791" fg:w="315"/><text x="38.7645%" y="751.50"></text></g><g><title>__GI___close_nocancel (530 samples, 0.10%)</title><rect x="38.4766%" y="805" width="0.0982%" height="15" fill="rgb(238,189,16)" fg:x="207586" fg:w="530"/><text x="38.7266%" y="815.50"></text></g><g><title>__GI___libc_free (234 samples, 0.04%)</title><rect x="38.5748%" y="805" width="0.0434%" height="15" fill="rgb(251,186,8)" fg:x="208116" fg:w="234"/><text x="38.8248%" y="815.50"></text></g><g><title>inode_permission.part.0 (55 samples, 0.01%)</title><rect x="38.6374%" y="677" width="0.0102%" height="15" fill="rgb(254,34,31)" fg:x="208454" fg:w="55"/><text x="38.8874%" y="687.50"></text></g><g><title>lookup_fast (68 samples, 0.01%)</title><rect x="38.6499%" y="661" width="0.0126%" height="15" fill="rgb(225,215,27)" fg:x="208521" fg:w="68"/><text x="38.8999%" y="671.50"></text></g><g><title>__d_lookup_rcu (61 samples, 0.01%)</title><rect x="38.6512%" y="645" width="0.0113%" height="15" fill="rgb(221,192,48)" fg:x="208528" fg:w="61"/><text x="38.9012%" y="655.50"></text></g><g><title>link_path_walk.part.0 (175 samples, 0.03%)</title><rect x="38.6326%" y="693" width="0.0324%" height="15" fill="rgb(219,137,20)" fg:x="208428" fg:w="175"/><text x="38.8826%" y="703.50"></text></g><g><title>walk_component (93 samples, 0.02%)</title><rect x="38.6478%" y="677" width="0.0172%" height="15" fill="rgb(219,84,11)" fg:x="208510" fg:w="93"/><text x="38.8978%" y="687.50"></text></g><g><title>path_lookupat (243 samples, 0.05%)</title><rect x="38.6285%" y="709" width="0.0450%" height="15" fill="rgb(224,10,23)" fg:x="208406" fg:w="243"/><text x="38.8785%" y="719.50"></text></g><g><title>filename_lookup (263 samples, 0.05%)</title><rect x="38.6256%" y="725" width="0.0487%" height="15" fill="rgb(248,22,39)" fg:x="208390" fg:w="263"/><text x="38.8756%" y="735.50"></text></g><g><title>user_path_at_empty (63 samples, 0.01%)</title><rect x="38.6801%" y="725" width="0.0117%" height="15" fill="rgb(212,154,20)" fg:x="208684" fg:w="63"/><text x="38.9301%" y="735.50"></text></g><g><title>getname_flags.part.0 (59 samples, 0.01%)</title><rect x="38.6808%" y="709" width="0.0109%" height="15" fill="rgb(236,199,50)" fg:x="208688" fg:w="59"/><text x="38.9308%" y="719.50"></text></g><g><title>__do_sys_newlstat (389 samples, 0.07%)</title><rect x="38.6200%" y="757" width="0.0721%" height="15" fill="rgb(211,9,17)" fg:x="208360" fg:w="389"/><text x="38.8700%" y="767.50"></text></g><g><title>vfs_statx (376 samples, 0.07%)</title><rect x="38.6224%" y="741" width="0.0697%" height="15" fill="rgb(243,216,36)" fg:x="208373" fg:w="376"/><text x="38.8724%" y="751.50"></text></g><g><title>do_syscall_64 (395 samples, 0.07%)</title><rect x="38.6195%" y="773" width="0.0732%" height="15" fill="rgb(250,2,10)" fg:x="208357" fg:w="395"/><text x="38.8695%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (405 samples, 0.08%)</title><rect x="38.6193%" y="789" width="0.0751%" height="15" fill="rgb(226,50,48)" fg:x="208356" fg:w="405"/><text x="38.8693%" y="799.50"></text></g><g><title>__GI___lxstat (413 samples, 0.08%)</title><rect x="38.6182%" y="805" width="0.0766%" height="15" fill="rgb(243,81,16)" fg:x="208350" fg:w="413"/><text x="38.8682%" y="815.50"></text></g><g><title>__btrfs_tree_read_lock (122 samples, 0.02%)</title><rect x="38.7088%" y="645" width="0.0226%" height="15" fill="rgb(250,14,2)" fg:x="208839" fg:w="122"/><text x="38.9588%" y="655.50"></text></g><g><title>schedule (77 samples, 0.01%)</title><rect x="38.7171%" y="629" width="0.0143%" height="15" fill="rgb(233,135,29)" fg:x="208884" fg:w="77"/><text x="38.9671%" y="639.50"></text></g><g><title>__schedule (77 samples, 0.01%)</title><rect x="38.7171%" y="613" width="0.0143%" height="15" fill="rgb(224,64,43)" fg:x="208884" fg:w="77"/><text x="38.9671%" y="623.50"></text></g><g><title>btrfs_tree_read_lock_atomic (63 samples, 0.01%)</title><rect x="38.7359%" y="645" width="0.0117%" height="15" fill="rgb(238,84,13)" fg:x="208985" fg:w="63"/><text x="38.9859%" y="655.50"></text></g><g><title>queued_read_lock_slowpath (55 samples, 0.01%)</title><rect x="38.7373%" y="629" width="0.0102%" height="15" fill="rgb(253,48,26)" fg:x="208993" fg:w="55"/><text x="38.9873%" y="639.50"></text></g><g><title>btrfs_search_slot (298 samples, 0.06%)</title><rect x="38.7051%" y="661" width="0.0552%" height="15" fill="rgb(205,223,31)" fg:x="208819" fg:w="298"/><text x="38.9551%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (305 samples, 0.06%)</title><rect x="38.7047%" y="677" width="0.0565%" height="15" fill="rgb(221,41,32)" fg:x="208817" fg:w="305"/><text x="38.9547%" y="687.50"></text></g><g><title>btrfs_lookup (329 samples, 0.06%)</title><rect x="38.7019%" y="709" width="0.0610%" height="15" fill="rgb(213,158,31)" fg:x="208802" fg:w="329"/><text x="38.9519%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (329 samples, 0.06%)</title><rect x="38.7019%" y="693" width="0.0610%" height="15" fill="rgb(245,126,43)" fg:x="208802" fg:w="329"/><text x="38.9519%" y="703.50"></text></g><g><title>__lookup_hash (368 samples, 0.07%)</title><rect x="38.7019%" y="725" width="0.0682%" height="15" fill="rgb(227,7,22)" fg:x="208802" fg:w="368"/><text x="38.9519%" y="735.50"></text></g><g><title>link_path_walk.part.0 (121 samples, 0.02%)</title><rect x="38.7737%" y="693" width="0.0224%" height="15" fill="rgb(252,90,44)" fg:x="209189" fg:w="121"/><text x="39.0237%" y="703.50"></text></g><g><title>walk_component (65 samples, 0.01%)</title><rect x="38.7841%" y="677" width="0.0120%" height="15" fill="rgb(253,91,0)" fg:x="209245" fg:w="65"/><text x="39.0341%" y="687.50"></text></g><g><title>filename_parentat (150 samples, 0.03%)</title><rect x="38.7705%" y="725" width="0.0278%" height="15" fill="rgb(252,175,49)" fg:x="209172" fg:w="150"/><text x="39.0205%" y="735.50"></text></g><g><title>path_parentat (145 samples, 0.03%)</title><rect x="38.7714%" y="709" width="0.0269%" height="15" fill="rgb(246,150,1)" fg:x="209177" fg:w="145"/><text x="39.0214%" y="719.50"></text></g><g><title>filename_create (531 samples, 0.10%)</title><rect x="38.7016%" y="741" width="0.0984%" height="15" fill="rgb(241,192,25)" fg:x="208800" fg:w="531"/><text x="38.9516%" y="751.50"></text></g><g><title>__btrfs_tree_lock (133 samples, 0.02%)</title><rect x="38.8317%" y="629" width="0.0247%" height="15" fill="rgb(239,187,11)" fg:x="209502" fg:w="133"/><text x="39.0817%" y="639.50"></text></g><g><title>schedule (60 samples, 0.01%)</title><rect x="38.8452%" y="613" width="0.0111%" height="15" fill="rgb(218,202,51)" fg:x="209575" fg:w="60"/><text x="39.0952%" y="623.50"></text></g><g><title>__schedule (59 samples, 0.01%)</title><rect x="38.8454%" y="597" width="0.0109%" height="15" fill="rgb(225,176,8)" fg:x="209576" fg:w="59"/><text x="39.0954%" y="607.50"></text></g><g><title>btrfs_search_slot (330 samples, 0.06%)</title><rect x="38.8287%" y="645" width="0.0612%" height="15" fill="rgb(219,122,41)" fg:x="209486" fg:w="330"/><text x="39.0787%" y="655.50"></text></g><g><title>insert_with_overflow (447 samples, 0.08%)</title><rect x="38.8280%" y="677" width="0.0829%" height="15" fill="rgb(248,140,20)" fg:x="209482" fg:w="447"/><text x="39.0780%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (444 samples, 0.08%)</title><rect x="38.8285%" y="661" width="0.0823%" height="15" fill="rgb(245,41,37)" fg:x="209485" fg:w="444"/><text x="39.0785%" y="671.50"></text></g><g><title>setup_items_for_insert (113 samples, 0.02%)</title><rect x="38.8899%" y="645" width="0.0209%" height="15" fill="rgb(235,82,39)" fg:x="209816" fg:w="113"/><text x="39.1399%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (536 samples, 0.10%)</title><rect x="38.8137%" y="693" width="0.0993%" height="15" fill="rgb(230,108,42)" fg:x="209405" fg:w="536"/><text x="39.0637%" y="703.50"></text></g><g><title>btrfs_add_link (559 samples, 0.10%)</title><rect x="38.8135%" y="709" width="0.1036%" height="15" fill="rgb(215,150,50)" fg:x="209404" fg:w="559"/><text x="39.0635%" y="719.50"></text></g><g><title>__btrfs_tree_lock (129 samples, 0.02%)</title><rect x="38.9305%" y="661" width="0.0239%" height="15" fill="rgb(233,212,5)" fg:x="210035" fg:w="129"/><text x="39.1805%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (71 samples, 0.01%)</title><rect x="38.9557%" y="661" width="0.0132%" height="15" fill="rgb(245,80,22)" fg:x="210171" fg:w="71"/><text x="39.2057%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (69 samples, 0.01%)</title><rect x="38.9561%" y="645" width="0.0128%" height="15" fill="rgb(238,129,16)" fg:x="210173" fg:w="69"/><text x="39.2061%" y="655.50"></text></g><g><title>btrfs_search_slot (367 samples, 0.07%)</title><rect x="38.9273%" y="677" width="0.0680%" height="15" fill="rgb(240,19,0)" fg:x="210018" fg:w="367"/><text x="39.1773%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (408 samples, 0.08%)</title><rect x="38.9273%" y="693" width="0.0756%" height="15" fill="rgb(232,42,35)" fg:x="210018" fg:w="408"/><text x="39.1773%" y="703.50"></text></g><g><title>btrfs_new_inode (592 samples, 0.11%)</title><rect x="38.9220%" y="709" width="0.1097%" height="15" fill="rgb(223,130,24)" fg:x="209989" fg:w="592"/><text x="39.1720%" y="719.50"></text></g><g><title>btrfs_get_or_create_delayed_node (59 samples, 0.01%)</title><rect x="39.0346%" y="677" width="0.0109%" height="15" fill="rgb(237,16,22)" fg:x="210597" fg:w="59"/><text x="39.2846%" y="687.50"></text></g><g><title>btrfs_update_inode (80 samples, 0.01%)</title><rect x="39.0317%" y="709" width="0.0148%" height="15" fill="rgb(248,192,20)" fg:x="210581" fg:w="80"/><text x="39.2817%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (78 samples, 0.01%)</title><rect x="39.0321%" y="693" width="0.0145%" height="15" fill="rgb(233,167,2)" fg:x="210583" fg:w="78"/><text x="39.2821%" y="703.50"></text></g><g><title>btrfs_mkdir (1,356 samples, 0.25%)</title><rect x="38.8081%" y="725" width="0.2513%" height="15" fill="rgb(252,71,44)" fg:x="209375" fg:w="1356"/><text x="39.0581%" y="735.50"></text></g><g><title>start_transaction (55 samples, 0.01%)</title><rect x="39.0493%" y="709" width="0.0102%" height="15" fill="rgb(238,37,47)" fg:x="210676" fg:w="55"/><text x="39.2993%" y="719.50"></text></g><g><title>do_mkdirat (1,965 samples, 0.36%)</title><rect x="38.6973%" y="757" width="0.3642%" height="15" fill="rgb(214,202,54)" fg:x="208777" fg:w="1965"/><text x="38.9473%" y="767.50"></text></g><g><title>vfs_mkdir (1,371 samples, 0.25%)</title><rect x="38.8074%" y="741" width="0.2541%" height="15" fill="rgb(254,165,40)" fg:x="209371" fg:w="1371"/><text x="39.0574%" y="751.50"></text></g><g><title>do_syscall_64 (1,970 samples, 0.37%)</title><rect x="38.6968%" y="773" width="0.3651%" height="15" fill="rgb(246,173,38)" fg:x="208774" fg:w="1970"/><text x="38.9468%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,977 samples, 0.37%)</title><rect x="38.6966%" y="789" width="0.3664%" height="15" fill="rgb(215,3,27)" fg:x="208773" fg:w="1977"/><text x="38.9466%" y="799.50"></text></g><g><title>__GI___mkdir (1,988 samples, 0.37%)</title><rect x="38.6947%" y="805" width="0.3685%" height="15" fill="rgb(239,169,51)" fg:x="208763" fg:w="1988"/><text x="38.9447%" y="815.50"></text></g><g><title>btrfs_filldir (630 samples, 0.12%)</title><rect x="39.2068%" y="693" width="0.1168%" height="15" fill="rgb(212,5,25)" fg:x="211526" fg:w="630"/><text x="39.4568%" y="703.50"></text></g><g><title>filldir64 (577 samples, 0.11%)</title><rect x="39.2167%" y="677" width="0.1069%" height="15" fill="rgb(243,45,17)" fg:x="211579" fg:w="577"/><text x="39.4667%" y="687.50"></text></g><g><title>verify_dirent_name (166 samples, 0.03%)</title><rect x="39.2928%" y="661" width="0.0308%" height="15" fill="rgb(242,97,9)" fg:x="211990" fg:w="166"/><text x="39.5428%" y="671.50"></text></g><g><title>memchr (113 samples, 0.02%)</title><rect x="39.3027%" y="645" width="0.0209%" height="15" fill="rgb(228,71,31)" fg:x="212043" fg:w="113"/><text x="39.5527%" y="655.50"></text></g><g><title>btrfs_get_16 (168 samples, 0.03%)</title><rect x="39.3269%" y="693" width="0.0311%" height="15" fill="rgb(252,184,16)" fg:x="212174" fg:w="168"/><text x="39.5769%" y="703.50"></text></g><g><title>btrfs_get_32 (91 samples, 0.02%)</title><rect x="39.3581%" y="693" width="0.0169%" height="15" fill="rgb(236,169,46)" fg:x="212342" fg:w="91"/><text x="39.6081%" y="703.50"></text></g><g><title>btrfs_next_old_leaf (88 samples, 0.02%)</title><rect x="39.3844%" y="693" width="0.0163%" height="15" fill="rgb(207,17,47)" fg:x="212484" fg:w="88"/><text x="39.6344%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (78 samples, 0.01%)</title><rect x="39.4048%" y="677" width="0.0145%" height="15" fill="rgb(206,201,28)" fg:x="212594" fg:w="78"/><text x="39.6548%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (177 samples, 0.03%)</title><rect x="39.4022%" y="693" width="0.0328%" height="15" fill="rgb(224,184,23)" fg:x="212580" fg:w="177"/><text x="39.6522%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (59 samples, 0.01%)</title><rect x="39.4487%" y="677" width="0.0109%" height="15" fill="rgb(208,139,48)" fg:x="212831" fg:w="59"/><text x="39.6987%" y="687.50"></text></g><g><title>btrfs_release_path (154 samples, 0.03%)</title><rect x="39.4389%" y="693" width="0.0285%" height="15" fill="rgb(208,130,10)" fg:x="212778" fg:w="154"/><text x="39.6889%" y="703.50"></text></g><g><title>__btrfs_read_lock_root_node (105 samples, 0.02%)</title><rect x="39.4934%" y="677" width="0.0195%" height="15" fill="rgb(211,213,45)" fg:x="213072" fg:w="105"/><text x="39.7434%" y="687.50"></text></g><g><title>btrfs_root_node (68 samples, 0.01%)</title><rect x="39.5003%" y="661" width="0.0126%" height="15" fill="rgb(235,100,30)" fg:x="213109" fg:w="68"/><text x="39.7503%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (61 samples, 0.01%)</title><rect x="39.5175%" y="677" width="0.0113%" height="15" fill="rgb(206,144,31)" fg:x="213202" fg:w="61"/><text x="39.7675%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (487 samples, 0.09%)</title><rect x="39.5429%" y="677" width="0.0903%" height="15" fill="rgb(224,200,26)" fg:x="213339" fg:w="487"/><text x="39.7929%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (62 samples, 0.01%)</title><rect x="39.6452%" y="661" width="0.0115%" height="15" fill="rgb(247,104,53)" fg:x="213891" fg:w="62"/><text x="39.8952%" y="671.50"></text></g><g><title>btrfs_get_64 (67 samples, 0.01%)</title><rect x="39.6567%" y="661" width="0.0124%" height="15" fill="rgb(220,14,17)" fg:x="213953" fg:w="67"/><text x="39.9067%" y="671.50"></text></g><g><title>__radix_tree_lookup (303 samples, 0.06%)</title><rect x="39.6965%" y="645" width="0.0562%" height="15" fill="rgb(230,140,40)" fg:x="214168" fg:w="303"/><text x="39.9465%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (130 samples, 0.02%)</title><rect x="39.7527%" y="645" width="0.0241%" height="15" fill="rgb(229,2,41)" fg:x="214471" fg:w="130"/><text x="40.0027%" y="655.50"></text></g><g><title>mark_page_accessed (101 samples, 0.02%)</title><rect x="39.7581%" y="629" width="0.0187%" height="15" fill="rgb(232,89,16)" fg:x="214500" fg:w="101"/><text x="40.0081%" y="639.50"></text></g><g><title>find_extent_buffer (524 samples, 0.10%)</title><rect x="39.6804%" y="661" width="0.0971%" height="15" fill="rgb(247,59,52)" fg:x="214081" fg:w="524"/><text x="39.9304%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (850 samples, 0.16%)</title><rect x="39.6332%" y="677" width="0.1575%" height="15" fill="rgb(226,110,21)" fg:x="213826" fg:w="850"/><text x="39.8832%" y="687.50"></text></g><g><title>read_extent_buffer (71 samples, 0.01%)</title><rect x="39.7775%" y="661" width="0.0132%" height="15" fill="rgb(224,176,43)" fg:x="214605" fg:w="71"/><text x="40.0275%" y="671.50"></text></g><g><title>btrfs_search_slot (1,804 samples, 0.33%)</title><rect x="39.4674%" y="693" width="0.3344%" height="15" fill="rgb(221,73,6)" fg:x="212932" fg:w="1804"/><text x="39.7174%" y="703.50"></text></g><g><title>unlock_up (60 samples, 0.01%)</title><rect x="39.7907%" y="677" width="0.0111%" height="15" fill="rgb(232,78,19)" fg:x="214676" fg:w="60"/><text x="40.0407%" y="687.50"></text></g><g><title>filldir64 (67 samples, 0.01%)</title><rect x="39.8087%" y="693" width="0.0124%" height="15" fill="rgb(233,112,48)" fg:x="214773" fg:w="67"/><text x="40.0587%" y="703.50"></text></g><g><title>kmem_cache_alloc (90 samples, 0.02%)</title><rect x="39.8270%" y="693" width="0.0167%" height="15" fill="rgb(243,131,47)" fg:x="214872" fg:w="90"/><text x="40.0770%" y="703.50"></text></g><g><title>kmem_cache_free (59 samples, 0.01%)</title><rect x="39.8437%" y="693" width="0.0109%" height="15" fill="rgb(226,51,1)" fg:x="214962" fg:w="59"/><text x="40.0937%" y="703.50"></text></g><g><title>btrfs_real_readdir (4,572 samples, 0.85%)</title><rect x="39.1470%" y="709" width="0.8474%" height="15" fill="rgb(247,58,7)" fg:x="211203" fg:w="4572"/><text x="39.3970%" y="719.50"></text></g><g><title>read_extent_buffer (754 samples, 0.14%)</title><rect x="39.8546%" y="693" width="0.1398%" height="15" fill="rgb(209,7,32)" fg:x="215021" fg:w="754"/><text x="40.1046%" y="703.50"></text></g><g><title>apparmor_file_permission (54 samples, 0.01%)</title><rect x="40.0076%" y="693" width="0.0100%" height="15" fill="rgb(209,39,41)" fg:x="215846" fg:w="54"/><text x="40.2576%" y="703.50"></text></g><g><title>security_file_permission (90 samples, 0.02%)</title><rect x="40.0055%" y="709" width="0.0167%" height="15" fill="rgb(226,182,46)" fg:x="215835" fg:w="90"/><text x="40.2555%" y="719.50"></text></g><g><title>touch_atime (147 samples, 0.03%)</title><rect x="40.0222%" y="709" width="0.0272%" height="15" fill="rgb(230,219,10)" fg:x="215925" fg:w="147"/><text x="40.2722%" y="719.50"></text></g><g><title>btrfs_dirty_inode (88 samples, 0.02%)</title><rect x="40.0331%" y="693" width="0.0163%" height="15" fill="rgb(227,175,30)" fg:x="215984" fg:w="88"/><text x="40.2831%" y="703.50"></text></g><g><title>iterate_dir (4,929 samples, 0.91%)</title><rect x="39.1405%" y="725" width="0.9136%" height="15" fill="rgb(217,2,50)" fg:x="211168" fg:w="4929"/><text x="39.3905%" y="735.50"></text></g><g><title>__x64_sys_getdents64 (5,043 samples, 0.93%)</title><rect x="39.1216%" y="741" width="0.9347%" height="15" fill="rgb(229,160,0)" fg:x="211066" fg:w="5043"/><text x="39.3716%" y="751.50"></text></g><g><title>do_syscall_64 (5,060 samples, 0.94%)</title><rect x="39.1190%" y="757" width="0.9379%" height="15" fill="rgb(207,78,37)" fg:x="211052" fg:w="5060"/><text x="39.3690%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,105 samples, 0.95%)</title><rect x="39.1171%" y="773" width="0.9462%" height="15" fill="rgb(225,57,0)" fg:x="211042" fg:w="5105"/><text x="39.3671%" y="783.50"></text></g><g><title>__GI___getdents64 (5,161 samples, 0.96%)</title><rect x="39.1086%" y="789" width="0.9566%" height="15" fill="rgb(232,154,2)" fg:x="210996" fg:w="5161"/><text x="39.3586%" y="799.50"></text></g><g><title>__GI___readdir64 (5,408 samples, 1.00%)</title><rect x="39.0632%" y="805" width="1.0024%" height="15" fill="rgb(241,212,25)" fg:x="210751" fg:w="5408"/><text x="39.3132%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (218 samples, 0.04%)</title><rect x="40.0947%" y="789" width="0.0404%" height="15" fill="rgb(226,69,20)" fg:x="216316" fg:w="218"/><text x="40.3447%" y="799.50"></text></g><g><title>kmem_cache_free (437 samples, 0.08%)</title><rect x="40.2048%" y="709" width="0.0810%" height="15" fill="rgb(247,184,54)" fg:x="216910" fg:w="437"/><text x="40.4548%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (80 samples, 0.01%)</title><rect x="40.2709%" y="693" width="0.0148%" height="15" fill="rgb(210,145,0)" fg:x="217267" fg:w="80"/><text x="40.5209%" y="703.50"></text></g><g><title>__legitimize_mnt (187 samples, 0.03%)</title><rect x="40.3165%" y="645" width="0.0347%" height="15" fill="rgb(253,82,12)" fg:x="217513" fg:w="187"/><text x="40.5665%" y="655.50"></text></g><g><title>__legitimize_path (355 samples, 0.07%)</title><rect x="40.3104%" y="661" width="0.0658%" height="15" fill="rgb(245,42,11)" fg:x="217480" fg:w="355"/><text x="40.5604%" y="671.50"></text></g><g><title>lockref_get_not_dead (134 samples, 0.02%)</title><rect x="40.3514%" y="645" width="0.0248%" height="15" fill="rgb(219,147,32)" fg:x="217701" fg:w="134"/><text x="40.6014%" y="655.50"></text></g><g><title>complete_walk (432 samples, 0.08%)</title><rect x="40.3032%" y="693" width="0.0801%" height="15" fill="rgb(246,12,7)" fg:x="217441" fg:w="432"/><text x="40.5532%" y="703.50"></text></g><g><title>try_to_unlazy (420 samples, 0.08%)</title><rect x="40.3054%" y="677" width="0.0778%" height="15" fill="rgb(243,50,9)" fg:x="217453" fg:w="420"/><text x="40.5554%" y="687.50"></text></g><g><title>btrfs_permission (107 samples, 0.02%)</title><rect x="41.2277%" y="661" width="0.0198%" height="15" fill="rgb(219,149,6)" fg:x="222429" fg:w="107"/><text x="41.4777%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,660 samples, 0.49%)</title><rect x="40.8822%" y="677" width="0.4930%" height="15" fill="rgb(241,51,42)" fg:x="220565" fg:w="2660"/><text x="41.1322%" y="687.50"></text></g><g><title>generic_permission (689 samples, 0.13%)</title><rect x="41.2476%" y="661" width="0.1277%" height="15" fill="rgb(226,128,27)" fg:x="222536" fg:w="689"/><text x="41.4976%" y="671.50"></text></g><g><title>security_inode_permission (250 samples, 0.05%)</title><rect x="41.3753%" y="677" width="0.0463%" height="15" fill="rgb(244,144,4)" fg:x="223225" fg:w="250"/><text x="41.6253%" y="687.50"></text></g><g><title>__d_lookup_rcu (3,241 samples, 0.60%)</title><rect x="41.7560%" y="645" width="0.6007%" height="15" fill="rgb(221,4,13)" fg:x="225279" fg:w="3241"/><text x="42.0060%" y="655.50"></text></g><g><title>lookup_fast (4,060 samples, 0.75%)</title><rect x="41.6072%" y="661" width="0.7525%" height="15" fill="rgb(208,170,28)" fg:x="224476" fg:w="4060"/><text x="41.8572%" y="671.50"></text></g><g><title>__lookup_mnt (111 samples, 0.02%)</title><rect x="42.5450%" y="645" width="0.0206%" height="15" fill="rgb(226,131,13)" fg:x="229536" fg:w="111"/><text x="42.7950%" y="655.50"></text></g><g><title>link_path_walk.part.0 (11,787 samples, 2.18%)</title><rect x="40.3833%" y="693" width="2.1847%" height="15" fill="rgb(215,72,41)" fg:x="217873" fg:w="11787"/><text x="40.6333%" y="703.50">l..</text></g><g><title>walk_component (6,185 samples, 1.15%)</title><rect x="41.4216%" y="677" width="1.1464%" height="15" fill="rgb(243,108,20)" fg:x="223475" fg:w="6185"/><text x="41.6716%" y="687.50"></text></g><g><title>step_into (1,124 samples, 0.21%)</title><rect x="42.3597%" y="661" width="0.2083%" height="15" fill="rgb(230,189,17)" fg:x="228536" fg:w="1124"/><text x="42.6097%" y="671.50"></text></g><g><title>path_init (407 samples, 0.08%)</title><rect x="42.5680%" y="693" width="0.0754%" height="15" fill="rgb(220,50,17)" fg:x="229660" fg:w="407"/><text x="42.8180%" y="703.50"></text></g><g><title>nd_jump_root (299 samples, 0.06%)</title><rect x="42.5880%" y="677" width="0.0554%" height="15" fill="rgb(248,152,48)" fg:x="229768" fg:w="299"/><text x="42.8380%" y="687.50"></text></g><g><title>set_root (253 samples, 0.05%)</title><rect x="42.5966%" y="661" width="0.0469%" height="15" fill="rgb(244,91,11)" fg:x="229814" fg:w="253"/><text x="42.8466%" y="671.50"></text></g><g><title>terminate_walk (72 samples, 0.01%)</title><rect x="42.6435%" y="693" width="0.0133%" height="15" fill="rgb(220,157,5)" fg:x="230067" fg:w="72"/><text x="42.8935%" y="703.50"></text></g><g><title>lookup_fast (1,419 samples, 0.26%)</title><rect x="42.6646%" y="677" width="0.2630%" height="15" fill="rgb(253,137,8)" fg:x="230181" fg:w="1419"/><text x="42.9146%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,388 samples, 0.26%)</title><rect x="42.6703%" y="661" width="0.2573%" height="15" fill="rgb(217,137,51)" fg:x="230212" fg:w="1388"/><text x="42.9203%" y="671.50"></text></g><g><title>path_lookupat (14,293 samples, 2.65%)</title><rect x="40.2858%" y="709" width="2.6492%" height="15" fill="rgb(218,209,53)" fg:x="217347" fg:w="14293"/><text x="40.5358%" y="719.50">pa..</text></g><g><title>walk_component (1,501 samples, 0.28%)</title><rect x="42.6568%" y="693" width="0.2782%" height="15" fill="rgb(249,137,25)" fg:x="230139" fg:w="1501"/><text x="42.9068%" y="703.50"></text></g><g><title>filename_lookup (14,909 samples, 2.76%)</title><rect x="40.1748%" y="725" width="2.7634%" height="15" fill="rgb(239,155,26)" fg:x="216748" fg:w="14909"/><text x="40.4248%" y="735.50">fi..</text></g><g><title>__perf_event_task_sched_in (101 samples, 0.02%)</title><rect x="42.9680%" y="645" width="0.0187%" height="15" fill="rgb(227,85,46)" fg:x="231818" fg:w="101"/><text x="43.2180%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (101 samples, 0.02%)</title><rect x="42.9680%" y="629" width="0.0187%" height="15" fill="rgb(251,107,43)" fg:x="231818" fg:w="101"/><text x="43.2180%" y="639.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="42.9680%" y="613" width="0.0187%" height="15" fill="rgb(234,170,33)" fg:x="231818" fg:w="101"/><text x="43.2180%" y="623.50"></text></g><g><title>finish_task_switch (107 samples, 0.02%)</title><rect x="42.9676%" y="661" width="0.0198%" height="15" fill="rgb(206,29,35)" fg:x="231816" fg:w="107"/><text x="43.2176%" y="671.50"></text></g><g><title>__schedule (118 samples, 0.02%)</title><rect x="42.9669%" y="677" width="0.0219%" height="15" fill="rgb(227,138,25)" fg:x="231812" fg:w="118"/><text x="43.2169%" y="687.50"></text></g><g><title>_cond_resched (167 samples, 0.03%)</title><rect x="42.9632%" y="693" width="0.0310%" height="15" fill="rgb(249,131,35)" fg:x="231792" fg:w="167"/><text x="43.2132%" y="703.50"></text></g><g><title>btrfs_dentry_delete (577 samples, 0.11%)</title><rect x="42.9941%" y="693" width="0.1069%" height="15" fill="rgb(239,6,40)" fg:x="231959" fg:w="577"/><text x="43.2441%" y="703.50"></text></g><g><title>lockref_put_or_lock (131 samples, 0.02%)</title><rect x="43.1011%" y="693" width="0.0243%" height="15" fill="rgb(246,136,47)" fg:x="232536" fg:w="131"/><text x="43.3511%" y="703.50"></text></g><g><title>_raw_spin_lock (89 samples, 0.02%)</title><rect x="43.1089%" y="677" width="0.0165%" height="15" fill="rgb(253,58,26)" fg:x="232578" fg:w="89"/><text x="43.3589%" y="687.50"></text></g><g><title>path_put (982 samples, 0.18%)</title><rect x="42.9448%" y="725" width="0.1820%" height="15" fill="rgb(237,141,10)" fg:x="231693" fg:w="982"/><text x="43.1948%" y="735.50"></text></g><g><title>dput (968 samples, 0.18%)</title><rect x="42.9474%" y="709" width="0.1794%" height="15" fill="rgb(234,156,12)" fg:x="231707" fg:w="968"/><text x="43.1974%" y="719.50"></text></g><g><title>security_inode_readlink (584 samples, 0.11%)</title><rect x="43.1269%" y="725" width="0.1082%" height="15" fill="rgb(243,224,36)" fg:x="232675" fg:w="584"/><text x="43.3769%" y="735.50"></text></g><g><title>atime_needs_update (248 samples, 0.05%)</title><rect x="43.2453%" y="709" width="0.0460%" height="15" fill="rgb(205,229,51)" fg:x="233314" fg:w="248"/><text x="43.4953%" y="719.50"></text></g><g><title>current_time (55 samples, 0.01%)</title><rect x="43.2811%" y="693" width="0.0102%" height="15" fill="rgb(223,189,4)" fg:x="233507" fg:w="55"/><text x="43.5311%" y="703.50"></text></g><g><title>__btrfs_end_transaction (67 samples, 0.01%)</title><rect x="43.2929%" y="693" width="0.0124%" height="15" fill="rgb(249,167,54)" fg:x="233571" fg:w="67"/><text x="43.5429%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.01%)</title><rect x="43.3105%" y="629" width="0.0145%" height="15" fill="rgb(218,34,28)" fg:x="233666" fg:w="78"/><text x="43.5605%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.01%)</title><rect x="43.3105%" y="613" width="0.0145%" height="15" fill="rgb(232,109,42)" fg:x="233666" fg:w="78"/><text x="43.5605%" y="623.50"></text></g><g><title>native_write_msr (78 samples, 0.01%)</title><rect x="43.3105%" y="597" width="0.0145%" height="15" fill="rgb(248,214,46)" fg:x="233666" fg:w="78"/><text x="43.5605%" y="607.50"></text></g><g><title>finish_task_switch (82 samples, 0.02%)</title><rect x="43.3104%" y="645" width="0.0152%" height="15" fill="rgb(244,216,40)" fg:x="233665" fg:w="82"/><text x="43.5604%" y="655.50"></text></g><g><title>btrfs_balance_delayed_items (112 samples, 0.02%)</title><rect x="43.3054%" y="693" width="0.0208%" height="15" fill="rgb(231,226,31)" fg:x="233638" fg:w="112"/><text x="43.5554%" y="703.50"></text></g><g><title>schedule (89 samples, 0.02%)</title><rect x="43.3096%" y="677" width="0.0165%" height="15" fill="rgb(238,38,43)" fg:x="233661" fg:w="89"/><text x="43.5596%" y="687.50"></text></g><g><title>__schedule (89 samples, 0.02%)</title><rect x="43.3096%" y="661" width="0.0165%" height="15" fill="rgb(208,88,43)" fg:x="233661" fg:w="89"/><text x="43.5596%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (73 samples, 0.01%)</title><rect x="43.3339%" y="661" width="0.0135%" height="15" fill="rgb(205,136,37)" fg:x="233792" fg:w="73"/><text x="43.5839%" y="671.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (76 samples, 0.01%)</title><rect x="43.3669%" y="613" width="0.0141%" height="15" fill="rgb(237,34,14)" fg:x="233970" fg:w="76"/><text x="43.6169%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (225 samples, 0.04%)</title><rect x="43.3474%" y="661" width="0.0417%" height="15" fill="rgb(236,193,44)" fg:x="233865" fg:w="225"/><text x="43.5974%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (207 samples, 0.04%)</title><rect x="43.3508%" y="645" width="0.0384%" height="15" fill="rgb(231,48,10)" fg:x="233883" fg:w="207"/><text x="43.6008%" y="655.50"></text></g><g><title>__reserve_bytes (197 samples, 0.04%)</title><rect x="43.3526%" y="629" width="0.0365%" height="15" fill="rgb(213,141,34)" fg:x="233893" fg:w="197"/><text x="43.6026%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (73 samples, 0.01%)</title><rect x="43.3891%" y="661" width="0.0135%" height="15" fill="rgb(249,130,34)" fg:x="234090" fg:w="73"/><text x="43.6391%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (69 samples, 0.01%)</title><rect x="43.3899%" y="645" width="0.0128%" height="15" fill="rgb(219,42,41)" fg:x="234094" fg:w="69"/><text x="43.6399%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (463 samples, 0.09%)</title><rect x="43.3296%" y="677" width="0.0858%" height="15" fill="rgb(224,100,54)" fg:x="233769" fg:w="463"/><text x="43.5796%" y="687.50"></text></g><g><title>btrfs_update_inode (520 samples, 0.10%)</title><rect x="43.3272%" y="693" width="0.0964%" height="15" fill="rgb(229,200,27)" fg:x="233756" fg:w="520"/><text x="43.5772%" y="703.50"></text></g><g><title>join_transaction (69 samples, 0.01%)</title><rect x="43.4414%" y="677" width="0.0128%" height="15" fill="rgb(217,118,10)" fg:x="234372" fg:w="69"/><text x="43.6914%" y="687.50"></text></g><g><title>btrfs_dirty_inode (922 samples, 0.17%)</title><rect x="43.2913%" y="709" width="0.1709%" height="15" fill="rgb(206,22,3)" fg:x="233562" fg:w="922"/><text x="43.5413%" y="719.50"></text></g><g><title>start_transaction (159 samples, 0.03%)</title><rect x="43.4327%" y="693" width="0.0295%" height="15" fill="rgb(232,163,46)" fg:x="234325" fg:w="159"/><text x="43.6827%" y="703.50"></text></g><g><title>touch_atime (1,265 samples, 0.23%)</title><rect x="43.2351%" y="725" width="0.2345%" height="15" fill="rgb(206,95,13)" fg:x="233259" fg:w="1265"/><text x="43.4851%" y="735.50"></text></g><g><title>memset_erms (806 samples, 0.15%)</title><rect x="43.5483%" y="677" width="0.1494%" height="15" fill="rgb(253,154,18)" fg:x="234949" fg:w="806"/><text x="43.7983%" y="687.50"></text></g><g><title>_cond_resched (79 samples, 0.01%)</title><rect x="43.7148%" y="661" width="0.0146%" height="15" fill="rgb(219,32,23)" fg:x="235847" fg:w="79"/><text x="43.9648%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,270 samples, 0.24%)</title><rect x="43.4955%" y="693" width="0.2354%" height="15" fill="rgb(230,191,45)" fg:x="234664" fg:w="1270"/><text x="43.7455%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (179 samples, 0.03%)</title><rect x="43.6977%" y="677" width="0.0332%" height="15" fill="rgb(229,64,36)" fg:x="235755" fg:w="179"/><text x="43.9477%" y="687.50"></text></g><g><title>__check_heap_object (110 samples, 0.02%)</title><rect x="43.8903%" y="661" width="0.0204%" height="15" fill="rgb(205,129,25)" fg:x="236794" fg:w="110"/><text x="44.1403%" y="671.50"></text></g><g><title>__virt_addr_valid (218 samples, 0.04%)</title><rect x="43.9107%" y="661" width="0.0404%" height="15" fill="rgb(254,112,7)" fg:x="236904" fg:w="218"/><text x="44.1607%" y="671.50"></text></g><g><title>__check_object_size (476 samples, 0.09%)</title><rect x="43.8686%" y="677" width="0.0882%" height="15" fill="rgb(226,53,48)" fg:x="236677" fg:w="476"/><text x="44.1186%" y="687.50"></text></g><g><title>user_path_at_empty (2,634 samples, 0.49%)</title><rect x="43.4696%" y="725" width="0.4882%" height="15" fill="rgb(214,153,38)" fg:x="234524" fg:w="2634"/><text x="43.7196%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,588 samples, 0.48%)</title><rect x="43.4781%" y="709" width="0.4797%" height="15" fill="rgb(243,101,7)" fg:x="234570" fg:w="2588"/><text x="43.7281%" y="719.50"></text></g><g><title>strncpy_from_user (1,224 samples, 0.23%)</title><rect x="43.7309%" y="693" width="0.2269%" height="15" fill="rgb(240,140,22)" fg:x="235934" fg:w="1224"/><text x="43.9809%" y="703.50"></text></g><g><title>kernel_init_free_pages (117 samples, 0.02%)</title><rect x="44.0983%" y="629" width="0.0217%" height="15" fill="rgb(235,114,2)" fg:x="237916" fg:w="117"/><text x="44.3483%" y="639.50"></text></g><g><title>clear_page_erms (107 samples, 0.02%)</title><rect x="44.1001%" y="613" width="0.0198%" height="15" fill="rgb(242,59,12)" fg:x="237926" fg:w="107"/><text x="44.3501%" y="623.50"></text></g><g><title>get_page_from_freelist (224 samples, 0.04%)</title><rect x="44.0796%" y="661" width="0.0415%" height="15" fill="rgb(252,134,9)" fg:x="237815" fg:w="224"/><text x="44.3296%" y="671.50"></text></g><g><title>prep_new_page (123 samples, 0.02%)</title><rect x="44.0983%" y="645" width="0.0228%" height="15" fill="rgb(236,4,44)" fg:x="237916" fg:w="123"/><text x="44.3483%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (271 samples, 0.05%)</title><rect x="44.0714%" y="677" width="0.0502%" height="15" fill="rgb(254,172,41)" fg:x="237771" fg:w="271"/><text x="44.3214%" y="687.50"></text></g><g><title>mem_cgroup_charge (70 samples, 0.01%)</title><rect x="44.1407%" y="645" width="0.0130%" height="15" fill="rgb(244,63,20)" fg:x="238145" fg:w="70"/><text x="44.3907%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (239 samples, 0.04%)</title><rect x="44.1224%" y="661" width="0.0443%" height="15" fill="rgb(250,73,31)" fg:x="238046" fg:w="239"/><text x="44.3724%" y="671.50"></text></g><g><title>__pagevec_lru_add_fn (60 samples, 0.01%)</title><rect x="44.1689%" y="629" width="0.0111%" height="15" fill="rgb(241,38,36)" fg:x="238297" fg:w="60"/><text x="44.4189%" y="639.50"></text></g><g><title>add_to_page_cache_lru (324 samples, 0.06%)</title><rect x="44.1216%" y="677" width="0.0601%" height="15" fill="rgb(245,211,2)" fg:x="238042" fg:w="324"/><text x="44.3716%" y="687.50"></text></g><g><title>lru_cache_add (81 samples, 0.02%)</title><rect x="44.1667%" y="661" width="0.0150%" height="15" fill="rgb(206,120,28)" fg:x="238285" fg:w="81"/><text x="44.4167%" y="671.50"></text></g><g><title>pagevec_lru_move_fn (76 samples, 0.01%)</title><rect x="44.1676%" y="645" width="0.0141%" height="15" fill="rgb(211,59,34)" fg:x="238290" fg:w="76"/><text x="44.4176%" y="655.50"></text></g><g><title>__clear_extent_bit (158 samples, 0.03%)</title><rect x="44.2114%" y="645" width="0.0293%" height="15" fill="rgb(233,168,5)" fg:x="238526" fg:w="158"/><text x="44.4614%" y="655.50"></text></g><g><title>alloc_extent_map (69 samples, 0.01%)</title><rect x="44.2666%" y="629" width="0.0128%" height="15" fill="rgb(234,33,13)" fg:x="238824" fg:w="69"/><text x="44.5166%" y="639.50"></text></g><g><title>kmem_cache_alloc (63 samples, 0.01%)</title><rect x="44.2677%" y="613" width="0.0117%" height="15" fill="rgb(231,150,26)" fg:x="238830" fg:w="63"/><text x="44.5177%" y="623.50"></text></g><g><title>btrfs_extent_item_to_extent_map (67 samples, 0.01%)</title><rect x="44.2838%" y="629" width="0.0124%" height="15" fill="rgb(217,191,4)" fg:x="238917" fg:w="67"/><text x="44.5338%" y="639.50"></text></g><g><title>btrfs_get_8 (70 samples, 0.01%)</title><rect x="44.3081%" y="629" width="0.0130%" height="15" fill="rgb(246,198,38)" fg:x="239048" fg:w="70"/><text x="44.5581%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (56 samples, 0.01%)</title><rect x="44.3307%" y="597" width="0.0104%" height="15" fill="rgb(245,64,37)" fg:x="239170" fg:w="56"/><text x="44.5807%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (147 samples, 0.03%)</title><rect x="44.3519%" y="597" width="0.0272%" height="15" fill="rgb(250,30,36)" fg:x="239284" fg:w="147"/><text x="44.6019%" y="607.50"></text></g><g><title>__radix_tree_lookup (101 samples, 0.02%)</title><rect x="44.4130%" y="565" width="0.0187%" height="15" fill="rgb(217,86,53)" fg:x="239614" fg:w="101"/><text x="44.6630%" y="575.50"></text></g><g><title>find_extent_buffer (227 samples, 0.04%)</title><rect x="44.4021%" y="581" width="0.0421%" height="15" fill="rgb(228,157,16)" fg:x="239555" fg:w="227"/><text x="44.6521%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (67 samples, 0.01%)</title><rect x="44.4317%" y="565" width="0.0124%" height="15" fill="rgb(217,59,31)" fg:x="239715" fg:w="67"/><text x="44.6817%" y="575.50"></text></g><g><title>mark_page_accessed (59 samples, 0.01%)</title><rect x="44.4332%" y="549" width="0.0109%" height="15" fill="rgb(237,138,41)" fg:x="239723" fg:w="59"/><text x="44.6832%" y="559.50"></text></g><g><title>read_block_for_search.isra.0 (381 samples, 0.07%)</title><rect x="44.3791%" y="597" width="0.0706%" height="15" fill="rgb(227,91,49)" fg:x="239431" fg:w="381"/><text x="44.6291%" y="607.50"></text></g><g><title>btrfs_lookup_file_extent (714 samples, 0.13%)</title><rect x="44.3211%" y="629" width="0.1323%" height="15" fill="rgb(247,21,44)" fg:x="239118" fg:w="714"/><text x="44.5711%" y="639.50"></text></g><g><title>btrfs_search_slot (713 samples, 0.13%)</title><rect x="44.3213%" y="613" width="0.1322%" height="15" fill="rgb(219,210,51)" fg:x="239119" fg:w="713"/><text x="44.5713%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (54 samples, 0.01%)</title><rect x="44.4577%" y="613" width="0.0100%" height="15" fill="rgb(209,140,6)" fg:x="239855" fg:w="54"/><text x="44.7077%" y="623.50"></text></g><g><title>btrfs_release_path (104 samples, 0.02%)</title><rect x="44.4534%" y="629" width="0.0193%" height="15" fill="rgb(221,188,24)" fg:x="239832" fg:w="104"/><text x="44.7034%" y="639.50"></text></g><g><title>read_extent_buffer (63 samples, 0.01%)</title><rect x="44.4907%" y="629" width="0.0117%" height="15" fill="rgb(232,154,20)" fg:x="240033" fg:w="63"/><text x="44.7407%" y="639.50"></text></g><g><title>btrfs_get_extent (1,523 samples, 0.28%)</title><rect x="44.2408%" y="645" width="0.2823%" height="15" fill="rgb(244,137,50)" fg:x="238685" fg:w="1523"/><text x="44.4908%" y="655.50"></text></g><g><title>set_extent_bit (112 samples, 0.02%)</title><rect x="44.5024%" y="629" width="0.0208%" height="15" fill="rgb(225,185,43)" fg:x="240096" fg:w="112"/><text x="44.7524%" y="639.50"></text></g><g><title>__set_extent_bit (112 samples, 0.02%)</title><rect x="44.5024%" y="613" width="0.0208%" height="15" fill="rgb(213,205,38)" fg:x="240096" fg:w="112"/><text x="44.7524%" y="623.50"></text></g><g><title>btrfs_do_readpage (1,862 samples, 0.35%)</title><rect x="44.1884%" y="661" width="0.3451%" height="15" fill="rgb(236,73,12)" fg:x="238402" fg:w="1862"/><text x="44.4384%" y="671.50"></text></g><g><title>btrfs_readpage (2,054 samples, 0.38%)</title><rect x="44.1865%" y="677" width="0.3807%" height="15" fill="rgb(235,219,13)" fg:x="238392" fg:w="2054"/><text x="44.4365%" y="687.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (182 samples, 0.03%)</title><rect x="44.5335%" y="661" width="0.0337%" height="15" fill="rgb(218,59,36)" fg:x="240264" fg:w="182"/><text x="44.7835%" y="671.50"></text></g><g><title>lock_extent_bits (122 samples, 0.02%)</title><rect x="44.5446%" y="645" width="0.0226%" height="15" fill="rgb(205,110,39)" fg:x="240324" fg:w="122"/><text x="44.7946%" y="655.50"></text></g><g><title>__set_extent_bit (117 samples, 0.02%)</title><rect x="44.5455%" y="629" width="0.0217%" height="15" fill="rgb(218,206,42)" fg:x="240329" fg:w="117"/><text x="44.7955%" y="639.50"></text></g><g><title>__activate_page (61 samples, 0.01%)</title><rect x="44.5800%" y="645" width="0.0113%" height="15" fill="rgb(248,125,24)" fg:x="240515" fg:w="61"/><text x="44.8300%" y="655.50"></text></g><g><title>mark_page_accessed (143 samples, 0.03%)</title><rect x="44.5672%" y="677" width="0.0265%" height="15" fill="rgb(242,28,27)" fg:x="240446" fg:w="143"/><text x="44.8172%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (77 samples, 0.01%)</title><rect x="44.5795%" y="661" width="0.0143%" height="15" fill="rgb(216,228,15)" fg:x="240512" fg:w="77"/><text x="44.8295%" y="671.50"></text></g><g><title>pagecache_get_page (448 samples, 0.08%)</title><rect x="44.5937%" y="677" width="0.0830%" height="15" fill="rgb(235,116,46)" fg:x="240589" fg:w="448"/><text x="44.8437%" y="687.50"></text></g><g><title>find_get_entry (402 samples, 0.07%)</title><rect x="44.6023%" y="661" width="0.0745%" height="15" fill="rgb(224,18,32)" fg:x="240635" fg:w="402"/><text x="44.8523%" y="671.50"></text></g><g><title>xas_load (80 samples, 0.01%)</title><rect x="44.6619%" y="645" width="0.0148%" height="15" fill="rgb(252,5,12)" fg:x="240957" fg:w="80"/><text x="44.9119%" y="655.50"></text></g><g><title>xas_start (71 samples, 0.01%)</title><rect x="44.6636%" y="629" width="0.0132%" height="15" fill="rgb(251,36,5)" fg:x="240966" fg:w="71"/><text x="44.9136%" y="639.50"></text></g><g><title>do_read_cache_page (3,412 samples, 0.63%)</title><rect x="44.0599%" y="693" width="0.6324%" height="15" fill="rgb(217,53,14)" fg:x="237709" fg:w="3412"/><text x="44.3099%" y="703.50"></text></g><g><title>workingset_activation (83 samples, 0.02%)</title><rect x="44.6770%" y="677" width="0.0154%" height="15" fill="rgb(215,86,45)" fg:x="241038" fg:w="83"/><text x="44.9270%" y="687.50"></text></g><g><title>workingset_age_nonresident (70 samples, 0.01%)</title><rect x="44.6794%" y="661" width="0.0130%" height="15" fill="rgb(242,169,11)" fg:x="241051" fg:w="70"/><text x="44.9294%" y="671.50"></text></g><g><title>page_get_link (3,625 samples, 0.67%)</title><rect x="44.0392%" y="709" width="0.6719%" height="15" fill="rgb(211,213,45)" fg:x="237597" fg:w="3625"/><text x="44.2892%" y="719.50"></text></g><g><title>read_cache_page (101 samples, 0.02%)</title><rect x="44.6923%" y="693" width="0.0187%" height="15" fill="rgb(205,88,11)" fg:x="241121" fg:w="101"/><text x="44.9423%" y="703.50"></text></g><g><title>page_put_link (75 samples, 0.01%)</title><rect x="44.7111%" y="709" width="0.0139%" height="15" fill="rgb(252,69,26)" fg:x="241222" fg:w="75"/><text x="44.9611%" y="719.50"></text></g><g><title>__virt_addr_valid (157 samples, 0.03%)</title><rect x="44.7487%" y="677" width="0.0291%" height="15" fill="rgb(246,123,37)" fg:x="241425" fg:w="157"/><text x="44.9987%" y="687.50"></text></g><g><title>__check_object_size (295 samples, 0.05%)</title><rect x="44.7335%" y="693" width="0.0547%" height="15" fill="rgb(212,205,5)" fg:x="241343" fg:w="295"/><text x="44.9835%" y="703.50"></text></g><g><title>check_stack_object (56 samples, 0.01%)</title><rect x="44.7778%" y="677" width="0.0104%" height="15" fill="rgb(253,148,0)" fg:x="241582" fg:w="56"/><text x="45.0278%" y="687.50"></text></g><g><title>_copy_to_user (285 samples, 0.05%)</title><rect x="44.7882%" y="693" width="0.0528%" height="15" fill="rgb(239,22,4)" fg:x="241638" fg:w="285"/><text x="45.0382%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (257 samples, 0.05%)</title><rect x="44.7934%" y="677" width="0.0476%" height="15" fill="rgb(226,26,53)" fg:x="241666" fg:w="257"/><text x="45.0434%" y="687.50"></text></g><g><title>__x64_sys_readlink (27,052 samples, 5.01%)</title><rect x="40.1518%" y="757" width="5.0142%" height="15" fill="rgb(225,229,45)" fg:x="216624" fg:w="27052"/><text x="40.4018%" y="767.50">__x64_..</text></g><g><title>do_readlinkat (27,047 samples, 5.01%)</title><rect x="40.1527%" y="741" width="5.0132%" height="15" fill="rgb(220,60,37)" fg:x="216629" fg:w="27047"/><text x="40.4027%" y="751.50">do_rea..</text></g><g><title>vfs_readlink (6,518 samples, 1.21%)</title><rect x="43.9578%" y="725" width="1.2081%" height="15" fill="rgb(217,180,35)" fg:x="237158" fg:w="6518"/><text x="44.2078%" y="735.50"></text></g><g><title>readlink_copy (2,379 samples, 0.44%)</title><rect x="44.7250%" y="709" width="0.4410%" height="15" fill="rgb(229,7,53)" fg:x="241297" fg:w="2379"/><text x="44.9750%" y="719.50"></text></g><g><title>strlen (1,753 samples, 0.32%)</title><rect x="44.8410%" y="693" width="0.3249%" height="15" fill="rgb(254,137,3)" fg:x="241923" fg:w="1753"/><text x="45.0910%" y="703.50"></text></g><g><title>do_syscall_64 (27,161 samples, 5.03%)</title><rect x="40.1455%" y="773" width="5.0344%" height="15" fill="rgb(215,140,41)" fg:x="216590" fg:w="27161"/><text x="40.3955%" y="783.50">do_sys..</text></g><g><title>syscall_enter_from_user_mode (75 samples, 0.01%)</title><rect x="45.1659%" y="757" width="0.0139%" height="15" fill="rgb(250,80,15)" fg:x="243676" fg:w="75"/><text x="45.4159%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27,356 samples, 5.07%)</title><rect x="40.1351%" y="789" width="5.0705%" height="15" fill="rgb(252,191,6)" fg:x="216534" fg:w="27356"/><text x="40.3851%" y="799.50">entry_..</text></g><g><title>syscall_exit_to_user_mode (139 samples, 0.03%)</title><rect x="45.1798%" y="773" width="0.0258%" height="15" fill="rgb(246,217,18)" fg:x="243751" fg:w="139"/><text x="45.4298%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (110 samples, 0.02%)</title><rect x="45.1852%" y="757" width="0.0204%" height="15" fill="rgb(223,93,7)" fg:x="243780" fg:w="110"/><text x="45.4352%" y="767.50"></text></g><g><title>__GI___readlink (27,834 samples, 5.16%)</title><rect x="40.0656%" y="805" width="5.1591%" height="15" fill="rgb(225,55,52)" fg:x="216159" fg:w="27834"/><text x="40.3156%" y="815.50">__GI__..</text></g><g><title>syscall_return_via_sysret (102 samples, 0.02%)</title><rect x="45.2058%" y="789" width="0.0189%" height="15" fill="rgb(240,31,24)" fg:x="243891" fg:w="102"/><text x="45.4558%" y="799.50"></text></g><g><title>lookup_fast (55 samples, 0.01%)</title><rect x="45.2440%" y="661" width="0.0102%" height="15" fill="rgb(205,56,52)" fg:x="244097" fg:w="55"/><text x="45.4940%" y="671.50"></text></g><g><title>link_path_walk.part.0 (123 samples, 0.02%)</title><rect x="45.2334%" y="693" width="0.0228%" height="15" fill="rgb(246,146,12)" fg:x="244040" fg:w="123"/><text x="45.4834%" y="703.50"></text></g><g><title>walk_component (72 samples, 0.01%)</title><rect x="45.2428%" y="677" width="0.0133%" height="15" fill="rgb(239,84,36)" fg:x="244091" fg:w="72"/><text x="45.4928%" y="687.50"></text></g><g><title>path_lookupat (149 samples, 0.03%)</title><rect x="45.2321%" y="709" width="0.0276%" height="15" fill="rgb(207,41,40)" fg:x="244033" fg:w="149"/><text x="45.4821%" y="719.50"></text></g><g><title>filename_lookup (162 samples, 0.03%)</title><rect x="45.2299%" y="725" width="0.0300%" height="15" fill="rgb(241,179,25)" fg:x="244021" fg:w="162"/><text x="45.4799%" y="735.50"></text></g><g><title>__do_sys_newstat (248 samples, 0.05%)</title><rect x="45.2265%" y="757" width="0.0460%" height="15" fill="rgb(210,0,34)" fg:x="244003" fg:w="248"/><text x="45.4765%" y="767.50"></text></g><g><title>vfs_statx (241 samples, 0.04%)</title><rect x="45.2278%" y="741" width="0.0447%" height="15" fill="rgb(225,217,29)" fg:x="244010" fg:w="241"/><text x="45.4778%" y="751.50"></text></g><g><title>do_syscall_64 (252 samples, 0.05%)</title><rect x="45.2265%" y="773" width="0.0467%" height="15" fill="rgb(216,191,38)" fg:x="244003" fg:w="252"/><text x="45.4765%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (256 samples, 0.05%)</title><rect x="45.2263%" y="789" width="0.0475%" height="15" fill="rgb(232,140,52)" fg:x="244002" fg:w="256"/><text x="45.4763%" y="799.50"></text></g><g><title>__GI___xstat (266 samples, 0.05%)</title><rect x="45.2247%" y="805" width="0.0493%" height="15" fill="rgb(223,158,51)" fg:x="243993" fg:w="266"/><text x="45.4747%" y="815.50"></text></g><g><title>__GI_remove (127 samples, 0.02%)</title><rect x="45.2740%" y="805" width="0.0235%" height="15" fill="rgb(235,29,51)" fg:x="244259" fg:w="127"/><text x="45.5240%" y="815.50"></text></g><g><title>__unlink (88 samples, 0.02%)</title><rect x="45.2812%" y="789" width="0.0163%" height="15" fill="rgb(215,181,18)" fg:x="244298" fg:w="88"/><text x="45.5312%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="45.2812%" y="773" width="0.0163%" height="15" fill="rgb(227,125,34)" fg:x="244298" fg:w="88"/><text x="45.5312%" y="783.50"></text></g><g><title>do_syscall_64 (88 samples, 0.02%)</title><rect x="45.2812%" y="757" width="0.0163%" height="15" fill="rgb(230,197,49)" fg:x="244298" fg:w="88"/><text x="45.5312%" y="767.50"></text></g><g><title>do_unlinkat (84 samples, 0.02%)</title><rect x="45.2819%" y="741" width="0.0156%" height="15" fill="rgb(239,141,16)" fg:x="244302" fg:w="84"/><text x="45.5319%" y="751.50"></text></g><g><title>__GI_unlinkat (69 samples, 0.01%)</title><rect x="45.2975%" y="805" width="0.0128%" height="15" fill="rgb(225,105,43)" fg:x="244386" fg:w="69"/><text x="45.5475%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="45.2977%" y="789" width="0.0126%" height="15" fill="rgb(214,131,14)" fg:x="244387" fg:w="68"/><text x="45.5477%" y="799.50"></text></g><g><title>do_syscall_64 (68 samples, 0.01%)</title><rect x="45.2977%" y="773" width="0.0126%" height="15" fill="rgb(229,177,11)" fg:x="244387" fg:w="68"/><text x="45.5477%" y="783.50"></text></g><g><title>__closedir (69 samples, 0.01%)</title><rect x="45.3114%" y="805" width="0.0128%" height="15" fill="rgb(231,180,14)" fg:x="244461" fg:w="69"/><text x="45.5614%" y="815.50"></text></g><g><title>__alloc_fd (63 samples, 0.01%)</title><rect x="45.3529%" y="709" width="0.0117%" height="15" fill="rgb(232,88,2)" fg:x="244685" fg:w="63"/><text x="45.6029%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (84 samples, 0.02%)</title><rect x="45.3958%" y="629" width="0.0156%" height="15" fill="rgb(205,220,8)" fg:x="244916" fg:w="84"/><text x="45.6458%" y="639.50"></text></g><g><title>get_obj_cgroup_from_current (78 samples, 0.01%)</title><rect x="45.4147%" y="613" width="0.0145%" height="15" fill="rgb(225,23,53)" fg:x="245018" fg:w="78"/><text x="45.6647%" y="623.50"></text></g><g><title>kmem_cache_alloc (252 samples, 0.05%)</title><rect x="45.3861%" y="645" width="0.0467%" height="15" fill="rgb(213,62,29)" fg:x="244864" fg:w="252"/><text x="45.6361%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (110 samples, 0.02%)</title><rect x="45.4124%" y="629" width="0.0204%" height="15" fill="rgb(227,75,7)" fg:x="245006" fg:w="110"/><text x="45.6624%" y="639.50"></text></g><g><title>__alloc_file (370 samples, 0.07%)</title><rect x="45.3809%" y="661" width="0.0686%" height="15" fill="rgb(207,105,14)" fg:x="244836" fg:w="370"/><text x="45.6309%" y="671.50"></text></g><g><title>security_file_alloc (90 samples, 0.02%)</title><rect x="45.4328%" y="645" width="0.0167%" height="15" fill="rgb(245,62,29)" fg:x="245116" fg:w="90"/><text x="45.6828%" y="655.50"></text></g><g><title>alloc_empty_file (382 samples, 0.07%)</title><rect x="45.3794%" y="677" width="0.0708%" height="15" fill="rgb(236,202,4)" fg:x="244828" fg:w="382"/><text x="45.6294%" y="687.50"></text></g><g><title>memset_erms (82 samples, 0.02%)</title><rect x="45.4799%" y="629" width="0.0152%" height="15" fill="rgb(250,67,1)" fg:x="245370" fg:w="82"/><text x="45.7299%" y="639.50"></text></g><g><title>btrfs_opendir (215 samples, 0.04%)</title><rect x="45.4660%" y="661" width="0.0399%" height="15" fill="rgb(253,115,44)" fg:x="245295" fg:w="215"/><text x="45.7160%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (203 samples, 0.04%)</title><rect x="45.4682%" y="645" width="0.0376%" height="15" fill="rgb(251,139,18)" fg:x="245307" fg:w="203"/><text x="45.7182%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (58 samples, 0.01%)</title><rect x="45.4951%" y="629" width="0.0108%" height="15" fill="rgb(218,22,32)" fg:x="245452" fg:w="58"/><text x="45.7451%" y="639.50"></text></g><g><title>tomoyo_check_open_permission (74 samples, 0.01%)</title><rect x="45.5224%" y="645" width="0.0137%" height="15" fill="rgb(243,53,5)" fg:x="245599" fg:w="74"/><text x="45.7724%" y="655.50"></text></g><g><title>do_dentry_open (426 samples, 0.08%)</title><rect x="45.4578%" y="677" width="0.0790%" height="15" fill="rgb(227,56,16)" fg:x="245251" fg:w="426"/><text x="45.7078%" y="687.50"></text></g><g><title>security_file_open (112 samples, 0.02%)</title><rect x="45.5160%" y="661" width="0.0208%" height="15" fill="rgb(245,53,0)" fg:x="245565" fg:w="112"/><text x="45.7660%" y="671.50"></text></g><g><title>inode_permission.part.0 (239 samples, 0.04%)</title><rect x="45.5768%" y="661" width="0.0443%" height="15" fill="rgb(216,170,35)" fg:x="245893" fg:w="239"/><text x="45.8268%" y="671.50"></text></g><g><title>generic_permission (58 samples, 0.01%)</title><rect x="45.6104%" y="645" width="0.0108%" height="15" fill="rgb(211,200,8)" fg:x="246074" fg:w="58"/><text x="45.8604%" y="655.50"></text></g><g><title>__d_lookup_rcu (246 samples, 0.05%)</title><rect x="45.6475%" y="629" width="0.0456%" height="15" fill="rgb(228,204,44)" fg:x="246274" fg:w="246"/><text x="45.8975%" y="639.50"></text></g><g><title>lookup_fast (304 samples, 0.06%)</title><rect x="45.6373%" y="645" width="0.0563%" height="15" fill="rgb(214,121,17)" fg:x="246219" fg:w="304"/><text x="45.8873%" y="655.50"></text></g><g><title>link_path_walk.part.0 (928 samples, 0.17%)</title><rect x="45.5368%" y="677" width="0.1720%" height="15" fill="rgb(233,64,38)" fg:x="245677" fg:w="928"/><text x="45.7868%" y="687.50"></text></g><g><title>walk_component (456 samples, 0.08%)</title><rect x="45.6243%" y="661" width="0.0845%" height="15" fill="rgb(253,54,19)" fg:x="246149" fg:w="456"/><text x="45.8743%" y="671.50"></text></g><g><title>step_into (82 samples, 0.02%)</title><rect x="45.6936%" y="645" width="0.0152%" height="15" fill="rgb(253,94,18)" fg:x="246523" fg:w="82"/><text x="45.9436%" y="655.50"></text></g><g><title>lookup_fast (105 samples, 0.02%)</title><rect x="45.7088%" y="677" width="0.0195%" height="15" fill="rgb(227,57,52)" fg:x="246605" fg:w="105"/><text x="45.9588%" y="687.50"></text></g><g><title>__d_lookup_rcu (100 samples, 0.02%)</title><rect x="45.7097%" y="661" width="0.0185%" height="15" fill="rgb(230,228,50)" fg:x="246610" fg:w="100"/><text x="45.9597%" y="671.50"></text></g><g><title>may_open (70 samples, 0.01%)</title><rect x="45.7283%" y="677" width="0.0130%" height="15" fill="rgb(217,205,27)" fg:x="246710" fg:w="70"/><text x="45.9783%" y="687.50"></text></g><g><title>do_filp_open (2,069 samples, 0.38%)</title><rect x="45.3696%" y="709" width="0.3835%" height="15" fill="rgb(252,71,50)" fg:x="244775" fg:w="2069"/><text x="45.6196%" y="719.50"></text></g><g><title>path_openat (2,045 samples, 0.38%)</title><rect x="45.3741%" y="693" width="0.3790%" height="15" fill="rgb(209,86,4)" fg:x="244799" fg:w="2045"/><text x="45.6241%" y="703.50"></text></g><g><title>memset_erms (70 samples, 0.01%)</title><rect x="45.7687%" y="677" width="0.0130%" height="15" fill="rgb(229,94,0)" fg:x="246928" fg:w="70"/><text x="46.0187%" y="687.50"></text></g><g><title>kmem_cache_alloc (121 samples, 0.02%)</title><rect x="45.7642%" y="693" width="0.0224%" height="15" fill="rgb(252,223,21)" fg:x="246904" fg:w="121"/><text x="46.0142%" y="703.50"></text></g><g><title>getname_flags.part.0 (233 samples, 0.04%)</title><rect x="45.7637%" y="709" width="0.0432%" height="15" fill="rgb(230,210,4)" fg:x="246901" fg:w="233"/><text x="46.0137%" y="719.50"></text></g><g><title>strncpy_from_user (109 samples, 0.02%)</title><rect x="45.7867%" y="693" width="0.0202%" height="15" fill="rgb(240,149,38)" fg:x="247025" fg:w="109"/><text x="46.0367%" y="703.50"></text></g><g><title>__x64_sys_openat (2,530 samples, 0.47%)</title><rect x="45.3468%" y="741" width="0.4689%" height="15" fill="rgb(254,105,20)" fg:x="244652" fg:w="2530"/><text x="45.5968%" y="751.50"></text></g><g><title>do_sys_openat2 (2,519 samples, 0.47%)</title><rect x="45.3489%" y="725" width="0.4669%" height="15" fill="rgb(253,87,46)" fg:x="244663" fg:w="2519"/><text x="45.5989%" y="735.50"></text></g><g><title>do_syscall_64 (2,544 samples, 0.47%)</title><rect x="45.3453%" y="757" width="0.4715%" height="15" fill="rgb(253,116,33)" fg:x="244644" fg:w="2544"/><text x="45.5953%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,568 samples, 0.48%)</title><rect x="45.3439%" y="773" width="0.4760%" height="15" fill="rgb(229,198,5)" fg:x="244636" fg:w="2568"/><text x="45.5939%" y="783.50"></text></g><g><title>__GI___open64_nocancel (2,623 samples, 0.49%)</title><rect x="45.3357%" y="789" width="0.4862%" height="15" fill="rgb(242,38,37)" fg:x="244592" fg:w="2623"/><text x="45.5857%" y="799.50"></text></g><g><title>__opendir (2,634 samples, 0.49%)</title><rect x="45.3357%" y="805" width="0.4882%" height="15" fill="rgb(242,69,53)" fg:x="244592" fg:w="2634"/><text x="45.5857%" y="815.50"></text></g><g><title>d_lru_add (179 samples, 0.03%)</title><rect x="45.8832%" y="725" width="0.0332%" height="15" fill="rgb(249,80,16)" fg:x="247546" fg:w="179"/><text x="46.1332%" y="735.50"></text></g><g><title>list_lru_add (157 samples, 0.03%)</title><rect x="45.8873%" y="709" width="0.0291%" height="15" fill="rgb(206,128,11)" fg:x="247568" fg:w="157"/><text x="46.1373%" y="719.50"></text></g><g><title>dput (301 samples, 0.06%)</title><rect x="45.8673%" y="741" width="0.0558%" height="15" fill="rgb(212,35,20)" fg:x="247460" fg:w="301"/><text x="46.1173%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (64 samples, 0.01%)</title><rect x="45.9505%" y="645" width="0.0119%" height="15" fill="rgb(236,79,13)" fg:x="247909" fg:w="64"/><text x="46.2005%" y="655.50"></text></g><g><title>btrfs_free_path (134 samples, 0.02%)</title><rect x="45.9422%" y="677" width="0.0248%" height="15" fill="rgb(233,123,3)" fg:x="247864" fg:w="134"/><text x="46.1922%" y="687.50"></text></g><g><title>btrfs_release_path (125 samples, 0.02%)</title><rect x="45.9438%" y="661" width="0.0232%" height="15" fill="rgb(214,93,52)" fg:x="247873" fg:w="125"/><text x="46.1938%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.01%)</title><rect x="46.0193%" y="565" width="0.0143%" height="15" fill="rgb(251,37,40)" fg:x="248280" fg:w="77"/><text x="46.2693%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="46.0197%" y="549" width="0.0139%" height="15" fill="rgb(227,80,54)" fg:x="248282" fg:w="75"/><text x="46.2697%" y="559.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="46.0197%" y="533" width="0.0139%" height="15" fill="rgb(254,48,11)" fg:x="248282" fg:w="75"/><text x="46.2697%" y="543.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="46.0187%" y="581" width="0.0154%" height="15" fill="rgb(235,193,26)" fg:x="248277" fg:w="83"/><text x="46.2687%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (220 samples, 0.04%)</title><rect x="45.9948%" y="629" width="0.0408%" height="15" fill="rgb(229,99,21)" fg:x="248148" fg:w="220"/><text x="46.2448%" y="639.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="46.0152%" y="613" width="0.0204%" height="15" fill="rgb(211,140,41)" fg:x="248258" fg:w="110"/><text x="46.2652%" y="623.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="46.0152%" y="597" width="0.0204%" height="15" fill="rgb(240,227,30)" fg:x="248258" fg:w="110"/><text x="46.2652%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (329 samples, 0.06%)</title><rect x="45.9922%" y="645" width="0.0610%" height="15" fill="rgb(215,224,45)" fg:x="248134" fg:w="329"/><text x="46.2422%" y="655.50"></text></g><g><title>btrfs_root_node (95 samples, 0.02%)</title><rect x="46.0356%" y="629" width="0.0176%" height="15" fill="rgb(206,123,31)" fg:x="248368" fg:w="95"/><text x="46.2856%" y="639.50"></text></g><g><title>prepare_to_wait_event (54 samples, 0.01%)</title><rect x="46.0554%" y="629" width="0.0100%" height="15" fill="rgb(210,138,16)" fg:x="248475" fg:w="54"/><text x="46.3054%" y="639.50"></text></g><g><title>__btrfs_tree_read_lock (175 samples, 0.03%)</title><rect x="46.0532%" y="645" width="0.0324%" height="15" fill="rgb(228,57,28)" fg:x="248463" fg:w="175"/><text x="46.3032%" y="655.50"></text></g><g><title>schedule (90 samples, 0.02%)</title><rect x="46.0690%" y="629" width="0.0167%" height="15" fill="rgb(242,170,10)" fg:x="248548" fg:w="90"/><text x="46.3190%" y="639.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="46.0690%" y="613" width="0.0167%" height="15" fill="rgb(228,214,39)" fg:x="248548" fg:w="90"/><text x="46.3190%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (71 samples, 0.01%)</title><rect x="46.0895%" y="645" width="0.0132%" height="15" fill="rgb(218,179,33)" fg:x="248659" fg:w="71"/><text x="46.3395%" y="655.50"></text></g><g><title>btrfs_tree_read_lock_atomic (88 samples, 0.02%)</title><rect x="46.1027%" y="645" width="0.0163%" height="15" fill="rgb(235,193,39)" fg:x="248730" fg:w="88"/><text x="46.3527%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (303 samples, 0.06%)</title><rect x="46.1294%" y="645" width="0.0562%" height="15" fill="rgb(219,221,36)" fg:x="248874" fg:w="303"/><text x="46.3794%" y="655.50"></text></g><g><title>__radix_tree_lookup (178 samples, 0.03%)</title><rect x="46.2287%" y="613" width="0.0330%" height="15" fill="rgb(248,218,19)" fg:x="249410" fg:w="178"/><text x="46.4787%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (66 samples, 0.01%)</title><rect x="46.2619%" y="613" width="0.0122%" height="15" fill="rgb(205,50,9)" fg:x="249589" fg:w="66"/><text x="46.5119%" y="623.50"></text></g><g><title>find_extent_buffer (322 samples, 0.06%)</title><rect x="46.2150%" y="629" width="0.0597%" height="15" fill="rgb(238,81,28)" fg:x="249336" fg:w="322"/><text x="46.4650%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (525 samples, 0.10%)</title><rect x="46.1855%" y="645" width="0.0973%" height="15" fill="rgb(235,110,19)" fg:x="249177" fg:w="525"/><text x="46.4355%" y="655.50"></text></g><g><title>btrfs_search_slot (1,698 samples, 0.31%)</title><rect x="45.9726%" y="661" width="0.3147%" height="15" fill="rgb(214,7,14)" fg:x="248028" fg:w="1698"/><text x="46.2226%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (1,795 samples, 0.33%)</title><rect x="45.9670%" y="677" width="0.3327%" height="15" fill="rgb(211,77,3)" fg:x="247998" fg:w="1795"/><text x="46.2170%" y="687.50"></text></g><g><title>crc32c (67 samples, 0.01%)</title><rect x="46.2873%" y="661" width="0.0124%" height="15" fill="rgb(229,5,9)" fg:x="249726" fg:w="67"/><text x="46.5373%" y="671.50"></text></g><g><title>kmem_cache_alloc (81 samples, 0.02%)</title><rect x="46.2997%" y="677" width="0.0150%" height="15" fill="rgb(225,90,11)" fg:x="249793" fg:w="81"/><text x="46.5497%" y="687.50"></text></g><g><title>btrfs_lookup (2,102 samples, 0.39%)</title><rect x="45.9320%" y="709" width="0.3896%" height="15" fill="rgb(242,56,8)" fg:x="247809" fg:w="2102"/><text x="46.1820%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (2,100 samples, 0.39%)</title><rect x="45.9324%" y="693" width="0.3892%" height="15" fill="rgb(249,212,39)" fg:x="247811" fg:w="2100"/><text x="46.1824%" y="703.50"></text></g><g><title>__slab_alloc (66 samples, 0.01%)</title><rect x="46.3338%" y="661" width="0.0122%" height="15" fill="rgb(236,90,9)" fg:x="249977" fg:w="66"/><text x="46.5838%" y="671.50"></text></g><g><title>___slab_alloc (64 samples, 0.01%)</title><rect x="46.3342%" y="645" width="0.0119%" height="15" fill="rgb(206,88,35)" fg:x="249979" fg:w="64"/><text x="46.5842%" y="655.50"></text></g><g><title>allocate_slab (55 samples, 0.01%)</title><rect x="46.3359%" y="629" width="0.0102%" height="15" fill="rgb(205,126,30)" fg:x="249988" fg:w="55"/><text x="46.5859%" y="639.50"></text></g><g><title>memcg_slab_post_alloc_hook (115 samples, 0.02%)</title><rect x="46.3461%" y="661" width="0.0213%" height="15" fill="rgb(230,176,12)" fg:x="250043" fg:w="115"/><text x="46.5961%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (60 samples, 0.01%)</title><rect x="46.3713%" y="645" width="0.0111%" height="15" fill="rgb(243,19,9)" fg:x="250179" fg:w="60"/><text x="46.6213%" y="655.50"></text></g><g><title>kmem_cache_alloc (307 samples, 0.06%)</title><rect x="46.3290%" y="677" width="0.0569%" height="15" fill="rgb(245,171,17)" fg:x="249951" fg:w="307"/><text x="46.5790%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (88 samples, 0.02%)</title><rect x="46.3696%" y="661" width="0.0163%" height="15" fill="rgb(227,52,21)" fg:x="250170" fg:w="88"/><text x="46.6196%" y="671.50"></text></g><g><title>__d_alloc (357 samples, 0.07%)</title><rect x="46.3225%" y="693" width="0.0662%" height="15" fill="rgb(238,69,14)" fg:x="249916" fg:w="357"/><text x="46.5725%" y="703.50"></text></g><g><title>d_alloc (388 samples, 0.07%)</title><rect x="46.3216%" y="709" width="0.0719%" height="15" fill="rgb(241,156,39)" fg:x="249911" fg:w="388"/><text x="46.5716%" y="719.50"></text></g><g><title>d_splice_alias (85 samples, 0.02%)</title><rect x="46.3935%" y="709" width="0.0158%" height="15" fill="rgb(212,227,28)" fg:x="250299" fg:w="85"/><text x="46.6435%" y="719.50"></text></g><g><title>__d_add (68 samples, 0.01%)</title><rect x="46.3967%" y="693" width="0.0126%" height="15" fill="rgb(209,118,27)" fg:x="250316" fg:w="68"/><text x="46.6467%" y="703.50"></text></g><g><title>__lookup_hash (2,716 samples, 0.50%)</title><rect x="45.9288%" y="725" width="0.5034%" height="15" fill="rgb(226,102,5)" fg:x="247792" fg:w="2716"/><text x="46.1788%" y="735.50"></text></g><g><title>lookup_dcache (124 samples, 0.02%)</title><rect x="46.4093%" y="709" width="0.0230%" height="15" fill="rgb(223,34,3)" fg:x="250384" fg:w="124"/><text x="46.6593%" y="719.50"></text></g><g><title>d_lookup (121 samples, 0.02%)</title><rect x="46.4098%" y="693" width="0.0224%" height="15" fill="rgb(221,81,38)" fg:x="250387" fg:w="121"/><text x="46.6598%" y="703.50"></text></g><g><title>__d_lookup (108 samples, 0.02%)</title><rect x="46.4122%" y="677" width="0.0200%" height="15" fill="rgb(236,219,28)" fg:x="250400" fg:w="108"/><text x="46.6622%" y="687.50"></text></g><g><title>__legitimize_path (55 samples, 0.01%)</title><rect x="46.4458%" y="661" width="0.0102%" height="15" fill="rgb(213,200,14)" fg:x="250581" fg:w="55"/><text x="46.6958%" y="671.50"></text></g><g><title>complete_walk (104 samples, 0.02%)</title><rect x="46.4417%" y="693" width="0.0193%" height="15" fill="rgb(240,33,19)" fg:x="250559" fg:w="104"/><text x="46.6917%" y="703.50"></text></g><g><title>try_to_unlazy (93 samples, 0.02%)</title><rect x="46.4437%" y="677" width="0.0172%" height="15" fill="rgb(233,113,27)" fg:x="250570" fg:w="93"/><text x="46.6937%" y="687.50"></text></g><g><title>generic_permission (102 samples, 0.02%)</title><rect x="46.5798%" y="661" width="0.0189%" height="15" fill="rgb(220,221,18)" fg:x="251304" fg:w="102"/><text x="46.8298%" y="671.50"></text></g><g><title>inode_permission.part.0 (450 samples, 0.08%)</title><rect x="46.5155%" y="677" width="0.0834%" height="15" fill="rgb(238,92,8)" fg:x="250957" fg:w="450"/><text x="46.7655%" y="687.50"></text></g><g><title>lookup_fast (697 samples, 0.13%)</title><rect x="46.6283%" y="661" width="0.1292%" height="15" fill="rgb(222,164,16)" fg:x="251566" fg:w="697"/><text x="46.8783%" y="671.50"></text></g><g><title>__d_lookup_rcu (594 samples, 0.11%)</title><rect x="46.6474%" y="645" width="0.1101%" height="15" fill="rgb(241,119,3)" fg:x="251669" fg:w="594"/><text x="46.8974%" y="655.50"></text></g><g><title>link_path_walk.part.0 (1,732 samples, 0.32%)</title><rect x="46.4610%" y="693" width="0.3210%" height="15" fill="rgb(241,44,8)" fg:x="250663" fg:w="1732"/><text x="46.7110%" y="703.50"></text></g><g><title>walk_component (964 samples, 0.18%)</title><rect x="46.6033%" y="677" width="0.1787%" height="15" fill="rgb(230,36,40)" fg:x="251431" fg:w="964"/><text x="46.8533%" y="687.50"></text></g><g><title>step_into (132 samples, 0.02%)</title><rect x="46.7575%" y="661" width="0.0245%" height="15" fill="rgb(243,16,36)" fg:x="252263" fg:w="132"/><text x="47.0075%" y="671.50"></text></g><g><title>path_init (120 samples, 0.02%)</title><rect x="46.7820%" y="693" width="0.0222%" height="15" fill="rgb(231,4,26)" fg:x="252395" fg:w="120"/><text x="47.0320%" y="703.50"></text></g><g><title>nd_jump_root (68 samples, 0.01%)</title><rect x="46.7916%" y="677" width="0.0126%" height="15" fill="rgb(240,9,31)" fg:x="252447" fg:w="68"/><text x="47.0416%" y="687.50"></text></g><g><title>filename_parentat (2,044 samples, 0.38%)</title><rect x="46.4352%" y="725" width="0.3789%" height="15" fill="rgb(207,173,15)" fg:x="250524" fg:w="2044"/><text x="46.6852%" y="735.50"></text></g><g><title>path_parentat (2,022 samples, 0.37%)</title><rect x="46.4393%" y="709" width="0.3748%" height="15" fill="rgb(224,192,53)" fg:x="250546" fg:w="2022"/><text x="46.6893%" y="719.50"></text></g><g><title>mnt_want_write (63 samples, 0.01%)</title><rect x="46.8209%" y="725" width="0.0117%" height="15" fill="rgb(223,67,28)" fg:x="252605" fg:w="63"/><text x="47.0709%" y="735.50"></text></g><g><title>filename_create (4,920 samples, 0.91%)</title><rect x="45.9231%" y="741" width="0.9119%" height="15" fill="rgb(211,20,47)" fg:x="247761" fg:w="4920"/><text x="46.1731%" y="751.50"></text></g><g><title>memset_erms (218 samples, 0.04%)</title><rect x="46.8587%" y="709" width="0.0404%" height="15" fill="rgb(240,228,2)" fg:x="252809" fg:w="218"/><text x="47.1087%" y="719.50"></text></g><g><title>kmem_cache_alloc (318 samples, 0.06%)</title><rect x="46.8454%" y="725" width="0.0589%" height="15" fill="rgb(248,151,12)" fg:x="252737" fg:w="318"/><text x="47.0954%" y="735.50"></text></g><g><title>__virt_addr_valid (69 samples, 0.01%)</title><rect x="46.9496%" y="693" width="0.0128%" height="15" fill="rgb(244,8,39)" fg:x="253299" fg:w="69"/><text x="47.1996%" y="703.50"></text></g><g><title>getname_flags.part.0 (692 samples, 0.13%)</title><rect x="46.8376%" y="741" width="0.1283%" height="15" fill="rgb(222,26,8)" fg:x="252695" fg:w="692"/><text x="47.0876%" y="751.50"></text></g><g><title>strncpy_from_user (332 samples, 0.06%)</title><rect x="46.9043%" y="725" width="0.0615%" height="15" fill="rgb(213,106,44)" fg:x="253055" fg:w="332"/><text x="47.1543%" y="735.50"></text></g><g><title>__check_object_size (166 samples, 0.03%)</title><rect x="46.9351%" y="709" width="0.0308%" height="15" fill="rgb(214,129,20)" fg:x="253221" fg:w="166"/><text x="47.1851%" y="719.50"></text></g><g><title>kmem_cache_free (59 samples, 0.01%)</title><rect x="46.9659%" y="741" width="0.0109%" height="15" fill="rgb(212,32,13)" fg:x="253387" fg:w="59"/><text x="47.2159%" y="751.50"></text></g><g><title>security_path_symlink (154 samples, 0.03%)</title><rect x="46.9803%" y="741" width="0.0285%" height="15" fill="rgb(208,168,33)" fg:x="253465" fg:w="154"/><text x="47.2303%" y="751.50"></text></g><g><title>tomoyo_path_symlink (88 samples, 0.02%)</title><rect x="46.9926%" y="725" width="0.0163%" height="15" fill="rgb(231,207,8)" fg:x="253531" fg:w="88"/><text x="47.2426%" y="735.50"></text></g><g><title>tomoyo_path_perm (86 samples, 0.02%)</title><rect x="46.9929%" y="709" width="0.0159%" height="15" fill="rgb(235,219,23)" fg:x="253533" fg:w="86"/><text x="47.2429%" y="719.50"></text></g><g><title>tomoyo_init_request_info (57 samples, 0.01%)</title><rect x="46.9983%" y="693" width="0.0106%" height="15" fill="rgb(226,216,26)" fg:x="253562" fg:w="57"/><text x="47.2483%" y="703.50"></text></g><g><title>_raw_spin_lock (78 samples, 0.01%)</title><rect x="47.0880%" y="661" width="0.0145%" height="15" fill="rgb(239,137,16)" fg:x="254046" fg:w="78"/><text x="47.3380%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (147 samples, 0.03%)</title><rect x="47.0786%" y="693" width="0.0272%" height="15" fill="rgb(207,12,36)" fg:x="253995" fg:w="147"/><text x="47.3286%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (130 samples, 0.02%)</title><rect x="47.0817%" y="677" width="0.0241%" height="15" fill="rgb(210,214,24)" fg:x="254012" fg:w="130"/><text x="47.3317%" y="687.50"></text></g><g><title>__btrfs_end_transaction (365 samples, 0.07%)</title><rect x="47.0482%" y="709" width="0.0677%" height="15" fill="rgb(206,56,30)" fg:x="253831" fg:w="365"/><text x="47.2982%" y="719.50"></text></g><g><title>kmem_cache_free (54 samples, 0.01%)</title><rect x="47.1058%" y="693" width="0.0100%" height="15" fill="rgb(228,143,26)" fg:x="254142" fg:w="54"/><text x="47.3558%" y="703.50"></text></g><g><title>balance_dirty_pages_ratelimited (91 samples, 0.02%)</title><rect x="47.1158%" y="709" width="0.0169%" height="15" fill="rgb(216,218,46)" fg:x="254196" fg:w="91"/><text x="47.3658%" y="719.50"></text></g><g><title>__btrfs_add_delayed_item (126 samples, 0.02%)</title><rect x="47.1544%" y="661" width="0.0234%" height="15" fill="rgb(206,6,19)" fg:x="254404" fg:w="126"/><text x="47.4044%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (97 samples, 0.02%)</title><rect x="47.1777%" y="661" width="0.0180%" height="15" fill="rgb(239,177,51)" fg:x="254530" fg:w="97"/><text x="47.4277%" y="671.50"></text></g><g><title>__kmalloc (129 samples, 0.02%)</title><rect x="47.1957%" y="661" width="0.0239%" height="15" fill="rgb(216,55,25)" fg:x="254627" fg:w="129"/><text x="47.4457%" y="671.50"></text></g><g><title>mutex_spin_on_owner (58 samples, 0.01%)</title><rect x="47.2198%" y="645" width="0.0108%" height="15" fill="rgb(231,163,29)" fg:x="254757" fg:w="58"/><text x="47.4698%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (63 samples, 0.01%)</title><rect x="47.2196%" y="661" width="0.0117%" height="15" fill="rgb(232,149,50)" fg:x="254756" fg:w="63"/><text x="47.4696%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (92 samples, 0.02%)</title><rect x="47.2313%" y="661" width="0.0171%" height="15" fill="rgb(223,142,48)" fg:x="254819" fg:w="92"/><text x="47.4813%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (82 samples, 0.02%)</title><rect x="47.2332%" y="645" width="0.0152%" height="15" fill="rgb(245,83,23)" fg:x="254829" fg:w="82"/><text x="47.4832%" y="655.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="47.2350%" y="629" width="0.0133%" height="15" fill="rgb(224,63,2)" fg:x="254839" fg:w="72"/><text x="47.4850%" y="639.50"></text></g><g><title>btrfs_insert_delayed_dir_index (626 samples, 0.12%)</title><rect x="47.1490%" y="677" width="0.1160%" height="15" fill="rgb(218,65,53)" fg:x="254375" fg:w="626"/><text x="47.3990%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (82 samples, 0.02%)</title><rect x="47.2721%" y="661" width="0.0152%" height="15" fill="rgb(221,84,29)" fg:x="255039" fg:w="82"/><text x="47.5221%" y="671.50"></text></g><g><title>btrfs_release_path (118 samples, 0.02%)</title><rect x="47.2693%" y="677" width="0.0219%" height="15" fill="rgb(234,0,32)" fg:x="255024" fg:w="118"/><text x="47.5193%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (161 samples, 0.03%)</title><rect x="47.3423%" y="613" width="0.0298%" height="15" fill="rgb(206,20,16)" fg:x="255418" fg:w="161"/><text x="47.5923%" y="623.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="47.3592%" y="597" width="0.0130%" height="15" fill="rgb(244,172,18)" fg:x="255509" fg:w="70"/><text x="47.6092%" y="607.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="47.3594%" y="581" width="0.0128%" height="15" fill="rgb(254,133,1)" fg:x="255510" fg:w="69"/><text x="47.6094%" y="591.50"></text></g><g><title>__btrfs_read_lock_root_node (226 samples, 0.04%)</title><rect x="47.3416%" y="629" width="0.0419%" height="15" fill="rgb(222,206,41)" fg:x="255414" fg:w="226"/><text x="47.5916%" y="639.50"></text></g><g><title>btrfs_root_node (61 samples, 0.01%)</title><rect x="47.3722%" y="613" width="0.0113%" height="15" fill="rgb(212,3,42)" fg:x="255579" fg:w="61"/><text x="47.6222%" y="623.50"></text></g><g><title>prepare_to_wait_event (56 samples, 0.01%)</title><rect x="47.3861%" y="613" width="0.0104%" height="15" fill="rgb(241,11,4)" fg:x="255654" fg:w="56"/><text x="47.6361%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="47.4109%" y="565" width="0.0128%" height="15" fill="rgb(205,19,26)" fg:x="255788" fg:w="69"/><text x="47.6609%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="47.4116%" y="549" width="0.0120%" height="15" fill="rgb(210,179,32)" fg:x="255792" fg:w="65"/><text x="47.6616%" y="559.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="47.4120%" y="533" width="0.0117%" height="15" fill="rgb(227,116,49)" fg:x="255794" fg:w="63"/><text x="47.6620%" y="543.50"></text></g><g><title>finish_task_switch (80 samples, 0.01%)</title><rect x="47.4092%" y="581" width="0.0148%" height="15" fill="rgb(211,146,6)" fg:x="255779" fg:w="80"/><text x="47.6592%" y="591.50"></text></g><g><title>__btrfs_tree_lock (253 samples, 0.05%)</title><rect x="47.3835%" y="629" width="0.0469%" height="15" fill="rgb(219,44,39)" fg:x="255640" fg:w="253"/><text x="47.6335%" y="639.50"></text></g><g><title>schedule (152 samples, 0.03%)</title><rect x="47.4022%" y="613" width="0.0282%" height="15" fill="rgb(234,128,11)" fg:x="255741" fg:w="152"/><text x="47.6522%" y="623.50"></text></g><g><title>__schedule (150 samples, 0.03%)</title><rect x="47.4026%" y="597" width="0.0278%" height="15" fill="rgb(220,183,53)" fg:x="255743" fg:w="150"/><text x="47.6526%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.01%)</title><rect x="47.4682%" y="549" width="0.0145%" height="15" fill="rgb(213,219,32)" fg:x="256097" fg:w="78"/><text x="47.7182%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.01%)</title><rect x="47.4687%" y="533" width="0.0139%" height="15" fill="rgb(232,156,16)" fg:x="256100" fg:w="75"/><text x="47.7187%" y="543.50"></text></g><g><title>native_write_msr (74 samples, 0.01%)</title><rect x="47.4689%" y="517" width="0.0137%" height="15" fill="rgb(246,135,34)" fg:x="256101" fg:w="74"/><text x="47.7189%" y="527.50"></text></g><g><title>finish_task_switch (87 samples, 0.02%)</title><rect x="47.4669%" y="565" width="0.0161%" height="15" fill="rgb(241,99,0)" fg:x="256090" fg:w="87"/><text x="47.7169%" y="575.50"></text></g><g><title>__btrfs_tree_lock (262 samples, 0.05%)</title><rect x="47.4409%" y="613" width="0.0486%" height="15" fill="rgb(222,103,45)" fg:x="255950" fg:w="262"/><text x="47.6909%" y="623.50"></text></g><g><title>schedule (156 samples, 0.03%)</title><rect x="47.4606%" y="597" width="0.0289%" height="15" fill="rgb(212,57,4)" fg:x="256056" fg:w="156"/><text x="47.7106%" y="607.50"></text></g><g><title>__schedule (152 samples, 0.03%)</title><rect x="47.4613%" y="581" width="0.0282%" height="15" fill="rgb(215,68,47)" fg:x="256060" fg:w="152"/><text x="47.7113%" y="591.50"></text></g><g><title>btrfs_lock_root_node (264 samples, 0.05%)</title><rect x="47.4407%" y="629" width="0.0489%" height="15" fill="rgb(230,84,2)" fg:x="255949" fg:w="264"/><text x="47.6907%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (77 samples, 0.01%)</title><rect x="47.4919%" y="629" width="0.0143%" height="15" fill="rgb(220,102,14)" fg:x="256225" fg:w="77"/><text x="47.7419%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (306 samples, 0.06%)</title><rect x="47.5062%" y="629" width="0.0567%" height="15" fill="rgb(240,10,32)" fg:x="256302" fg:w="306"/><text x="47.7562%" y="639.50"></text></g><g><title>__radix_tree_lookup (136 samples, 0.03%)</title><rect x="47.6018%" y="597" width="0.0252%" height="15" fill="rgb(215,47,27)" fg:x="256818" fg:w="136"/><text x="47.8518%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (72 samples, 0.01%)</title><rect x="47.6270%" y="597" width="0.0133%" height="15" fill="rgb(233,188,43)" fg:x="256954" fg:w="72"/><text x="47.8770%" y="607.50"></text></g><g><title>find_extent_buffer (309 samples, 0.06%)</title><rect x="47.5835%" y="613" width="0.0573%" height="15" fill="rgb(253,190,1)" fg:x="256719" fg:w="309"/><text x="47.8335%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (459 samples, 0.09%)</title><rect x="47.5629%" y="629" width="0.0851%" height="15" fill="rgb(206,114,52)" fg:x="256608" fg:w="459"/><text x="47.8129%" y="639.50"></text></g><g><title>__push_leaf_left (112 samples, 0.02%)</title><rect x="47.6576%" y="597" width="0.0208%" height="15" fill="rgb(233,120,37)" fg:x="257119" fg:w="112"/><text x="47.9076%" y="607.50"></text></g><g><title>push_leaf_left (124 samples, 0.02%)</title><rect x="47.6572%" y="613" width="0.0230%" height="15" fill="rgb(214,52,39)" fg:x="257117" fg:w="124"/><text x="47.9072%" y="623.50"></text></g><g><title>__push_leaf_right (153 samples, 0.03%)</title><rect x="47.6817%" y="597" width="0.0284%" height="15" fill="rgb(223,80,29)" fg:x="257249" fg:w="153"/><text x="47.9317%" y="607.50"></text></g><g><title>split_leaf (355 samples, 0.07%)</title><rect x="47.6495%" y="629" width="0.0658%" height="15" fill="rgb(230,101,40)" fg:x="257075" fg:w="355"/><text x="47.8995%" y="639.50"></text></g><g><title>push_leaf_right (189 samples, 0.04%)</title><rect x="47.6802%" y="613" width="0.0350%" height="15" fill="rgb(219,211,8)" fg:x="257241" fg:w="189"/><text x="47.9302%" y="623.50"></text></g><g><title>ttwu_do_activate (66 samples, 0.01%)</title><rect x="47.7477%" y="549" width="0.0122%" height="15" fill="rgb(252,126,28)" fg:x="257605" fg:w="66"/><text x="47.9977%" y="559.50"></text></g><g><title>__wake_up_common_lock (162 samples, 0.03%)</title><rect x="47.7323%" y="613" width="0.0300%" height="15" fill="rgb(215,56,38)" fg:x="257522" fg:w="162"/><text x="47.9823%" y="623.50"></text></g><g><title>__wake_up_common (162 samples, 0.03%)</title><rect x="47.7323%" y="597" width="0.0300%" height="15" fill="rgb(249,55,44)" fg:x="257522" fg:w="162"/><text x="47.9823%" y="607.50"></text></g><g><title>autoremove_wake_function (159 samples, 0.03%)</title><rect x="47.7329%" y="581" width="0.0295%" height="15" fill="rgb(220,221,32)" fg:x="257525" fg:w="159"/><text x="47.9829%" y="591.50"></text></g><g><title>try_to_wake_up (153 samples, 0.03%)</title><rect x="47.7340%" y="565" width="0.0284%" height="15" fill="rgb(212,216,41)" fg:x="257531" fg:w="153"/><text x="47.9840%" y="575.50"></text></g><g><title>btrfs_search_slot (2,426 samples, 0.45%)</title><rect x="47.3203%" y="645" width="0.4497%" height="15" fill="rgb(228,213,43)" fg:x="255299" fg:w="2426"/><text x="47.5703%" y="655.50"></text></g><g><title>unlock_up (253 samples, 0.05%)</title><rect x="47.7230%" y="629" width="0.0469%" height="15" fill="rgb(211,31,26)" fg:x="257472" fg:w="253"/><text x="47.9730%" y="639.50"></text></g><g><title>btrfs_get_token_32 (730 samples, 0.14%)</title><rect x="47.8020%" y="629" width="0.1353%" height="15" fill="rgb(229,202,19)" fg:x="257898" fg:w="730"/><text x="48.0520%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (99 samples, 0.02%)</title><rect x="47.9190%" y="613" width="0.0183%" height="15" fill="rgb(229,105,46)" fg:x="258529" fg:w="99"/><text x="48.1690%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (67 samples, 0.01%)</title><rect x="47.9373%" y="629" width="0.0124%" height="15" fill="rgb(235,108,1)" fg:x="258628" fg:w="67"/><text x="48.1873%" y="639.50"></text></g><g><title>leaf_space_used (59 samples, 0.01%)</title><rect x="47.9388%" y="613" width="0.0109%" height="15" fill="rgb(245,111,35)" fg:x="258636" fg:w="59"/><text x="48.1888%" y="623.50"></text></g><g><title>btrfs_set_token_32 (619 samples, 0.11%)</title><rect x="47.9566%" y="629" width="0.1147%" height="15" fill="rgb(219,185,31)" fg:x="258732" fg:w="619"/><text x="48.2066%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (99 samples, 0.02%)</title><rect x="48.0530%" y="613" width="0.0183%" height="15" fill="rgb(214,4,43)" fg:x="259252" fg:w="99"/><text x="48.3030%" y="623.50"></text></g><g><title>memcpy_extent_buffer (226 samples, 0.04%)</title><rect x="48.0754%" y="629" width="0.0419%" height="15" fill="rgb(235,227,40)" fg:x="259373" fg:w="226"/><text x="48.3254%" y="639.50"></text></g><g><title>memmove (186 samples, 0.03%)</title><rect x="48.0828%" y="613" width="0.0345%" height="15" fill="rgb(230,88,30)" fg:x="259413" fg:w="186"/><text x="48.3328%" y="623.50"></text></g><g><title>memmove_extent_buffer (193 samples, 0.04%)</title><rect x="48.1173%" y="629" width="0.0358%" height="15" fill="rgb(216,217,1)" fg:x="259599" fg:w="193"/><text x="48.3673%" y="639.50"></text></g><g><title>memmove (156 samples, 0.03%)</title><rect x="48.1241%" y="613" width="0.0289%" height="15" fill="rgb(248,139,50)" fg:x="259636" fg:w="156"/><text x="48.3741%" y="623.50"></text></g><g><title>insert_with_overflow (4,592 samples, 0.85%)</title><rect x="47.3062%" y="677" width="0.8511%" height="15" fill="rgb(233,1,21)" fg:x="255223" fg:w="4592"/><text x="47.5562%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (4,534 samples, 0.84%)</title><rect x="47.3169%" y="661" width="0.8404%" height="15" fill="rgb(215,183,12)" fg:x="255281" fg:w="4534"/><text x="47.5669%" y="671.50"></text></g><g><title>setup_items_for_insert (2,090 samples, 0.39%)</title><rect x="47.7699%" y="645" width="0.3874%" height="15" fill="rgb(229,104,42)" fg:x="257725" fg:w="2090"/><text x="48.0199%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (5,634 samples, 1.04%)</title><rect x="47.1392%" y="693" width="1.0443%" height="15" fill="rgb(243,34,48)" fg:x="254322" fg:w="5634"/><text x="47.3892%" y="703.50"></text></g><g><title>write_extent_buffer (64 samples, 0.01%)</title><rect x="48.1716%" y="677" width="0.0119%" height="15" fill="rgb(239,11,44)" fg:x="259892" fg:w="64"/><text x="48.4216%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (76 samples, 0.01%)</title><rect x="48.1933%" y="661" width="0.0141%" height="15" fill="rgb(231,98,35)" fg:x="260009" fg:w="76"/><text x="48.4433%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (168 samples, 0.03%)</title><rect x="48.1914%" y="677" width="0.0311%" height="15" fill="rgb(233,28,25)" fg:x="259999" fg:w="168"/><text x="48.4414%" y="687.50"></text></g><g><title>btrfs_update_inode (274 samples, 0.05%)</title><rect x="48.1835%" y="693" width="0.0508%" height="15" fill="rgb(234,123,11)" fg:x="259956" fg:w="274"/><text x="48.4335%" y="703.50"></text></g><g><title>btrfs_update_root_times (63 samples, 0.01%)</title><rect x="48.2226%" y="677" width="0.0117%" height="15" fill="rgb(220,69,3)" fg:x="260167" fg:w="63"/><text x="48.4726%" y="687.50"></text></g><g><title>btrfs_add_link (5,960 samples, 1.10%)</title><rect x="47.1327%" y="709" width="1.1047%" height="15" fill="rgb(214,64,36)" fg:x="254287" fg:w="5960"/><text x="47.3827%" y="719.50"></text></g><g><title>btrfs_balance_delayed_items (84 samples, 0.02%)</title><rect x="48.2442%" y="693" width="0.0156%" height="15" fill="rgb(211,138,32)" fg:x="260284" fg:w="84"/><text x="48.4942%" y="703.50"></text></g><g><title>_raw_spin_lock (54 samples, 0.01%)</title><rect x="48.2709%" y="661" width="0.0100%" height="15" fill="rgb(213,118,47)" fg:x="260428" fg:w="54"/><text x="48.5209%" y="671.50"></text></g><g><title>select_task_rq_fair (92 samples, 0.02%)</title><rect x="48.3010%" y="645" width="0.0171%" height="15" fill="rgb(243,124,49)" fg:x="260590" fg:w="92"/><text x="48.5510%" y="655.50"></text></g><g><title>enqueue_task_fair (64 samples, 0.01%)</title><rect x="48.3219%" y="629" width="0.0119%" height="15" fill="rgb(221,30,28)" fg:x="260703" fg:w="64"/><text x="48.5719%" y="639.50"></text></g><g><title>ttwu_do_activate (106 samples, 0.02%)</title><rect x="48.3206%" y="645" width="0.0196%" height="15" fill="rgb(246,37,13)" fg:x="260696" fg:w="106"/><text x="48.5706%" y="655.50"></text></g><g><title>__queue_work (459 samples, 0.09%)</title><rect x="48.2658%" y="677" width="0.0851%" height="15" fill="rgb(249,66,14)" fg:x="260400" fg:w="459"/><text x="48.5158%" y="687.50"></text></g><g><title>try_to_wake_up (354 samples, 0.07%)</title><rect x="48.2852%" y="661" width="0.0656%" height="15" fill="rgb(213,166,5)" fg:x="260505" fg:w="354"/><text x="48.5352%" y="671.50"></text></g><g><title>btrfs_btree_balance_dirty (614 samples, 0.11%)</title><rect x="48.2374%" y="709" width="0.1138%" height="15" fill="rgb(221,66,24)" fg:x="260247" fg:w="614"/><text x="48.4874%" y="719.50"></text></g><g><title>queue_work_on (474 samples, 0.09%)</title><rect x="48.2633%" y="693" width="0.0879%" height="15" fill="rgb(210,132,17)" fg:x="260387" fg:w="474"/><text x="48.5133%" y="703.50"></text></g><g><title>btrfs_find_free_ino (77 samples, 0.01%)</title><rect x="48.3527%" y="709" width="0.0143%" height="15" fill="rgb(243,202,5)" fg:x="260869" fg:w="77"/><text x="48.6027%" y="719.50"></text></g><g><title>select_task_rq_fair (84 samples, 0.02%)</title><rect x="48.4926%" y="613" width="0.0156%" height="15" fill="rgb(233,70,48)" fg:x="261624" fg:w="84"/><text x="48.7426%" y="623.50"></text></g><g><title>enqueue_entity (98 samples, 0.02%)</title><rect x="48.5176%" y="581" width="0.0182%" height="15" fill="rgb(238,41,26)" fg:x="261759" fg:w="98"/><text x="48.7676%" y="591.50"></text></g><g><title>enqueue_task_fair (136 samples, 0.03%)</title><rect x="48.5110%" y="597" width="0.0252%" height="15" fill="rgb(241,19,31)" fg:x="261723" fg:w="136"/><text x="48.7610%" y="607.50"></text></g><g><title>ttwu_do_activate (260 samples, 0.05%)</title><rect x="48.5091%" y="613" width="0.0482%" height="15" fill="rgb(214,76,10)" fg:x="261713" fg:w="260"/><text x="48.7591%" y="623.50"></text></g><g><title>psi_task_change (114 samples, 0.02%)</title><rect x="48.5362%" y="597" width="0.0211%" height="15" fill="rgb(254,202,22)" fg:x="261859" fg:w="114"/><text x="48.7862%" y="607.50"></text></g><g><title>psi_group_change (98 samples, 0.02%)</title><rect x="48.5391%" y="581" width="0.0182%" height="15" fill="rgb(214,72,24)" fg:x="261875" fg:w="98"/><text x="48.7891%" y="591.50"></text></g><g><title>ttwu_queue_wakelist (56 samples, 0.01%)</title><rect x="48.5632%" y="613" width="0.0104%" height="15" fill="rgb(221,92,46)" fg:x="262005" fg:w="56"/><text x="48.8132%" y="623.50"></text></g><g><title>__wake_up_common (1,117 samples, 0.21%)</title><rect x="48.3716%" y="661" width="0.2070%" height="15" fill="rgb(246,13,50)" fg:x="260971" fg:w="1117"/><text x="48.6216%" y="671.50"></text></g><g><title>autoremove_wake_function (1,099 samples, 0.20%)</title><rect x="48.3749%" y="645" width="0.2037%" height="15" fill="rgb(240,165,38)" fg:x="260989" fg:w="1099"/><text x="48.6249%" y="655.50"></text></g><g><title>try_to_wake_up (1,093 samples, 0.20%)</title><rect x="48.3760%" y="629" width="0.2026%" height="15" fill="rgb(241,24,51)" fg:x="260995" fg:w="1093"/><text x="48.6260%" y="639.50"></text></g><g><title>__wake_up_common_lock (1,141 samples, 0.21%)</title><rect x="48.3697%" y="677" width="0.2115%" height="15" fill="rgb(227,51,44)" fg:x="260961" fg:w="1141"/><text x="48.6197%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (111 samples, 0.02%)</title><rect x="48.5857%" y="677" width="0.0206%" height="15" fill="rgb(231,121,3)" fg:x="262126" fg:w="111"/><text x="48.8357%" y="687.50"></text></g><g><title>btrfs_free_path (1,302 samples, 0.24%)</title><rect x="48.3670%" y="709" width="0.2413%" height="15" fill="rgb(245,3,41)" fg:x="260946" fg:w="1302"/><text x="48.6170%" y="719.50"></text></g><g><title>btrfs_release_path (1,302 samples, 0.24%)</title><rect x="48.3670%" y="693" width="0.2413%" height="15" fill="rgb(214,13,26)" fg:x="260946" fg:w="1302"/><text x="48.6170%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (141 samples, 0.03%)</title><rect x="48.6500%" y="661" width="0.0261%" height="15" fill="rgb(252,75,11)" fg:x="262473" fg:w="141"/><text x="48.9000%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (197 samples, 0.04%)</title><rect x="48.6494%" y="677" width="0.0365%" height="15" fill="rgb(218,226,17)" fg:x="262470" fg:w="197"/><text x="48.8994%" y="687.50"></text></g><g><title>finish_wait (408 samples, 0.08%)</title><rect x="48.7219%" y="661" width="0.0756%" height="15" fill="rgb(248,89,38)" fg:x="262861" fg:w="408"/><text x="48.9719%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (380 samples, 0.07%)</title><rect x="48.7271%" y="645" width="0.0704%" height="15" fill="rgb(237,73,46)" fg:x="262889" fg:w="380"/><text x="48.9771%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (349 samples, 0.06%)</title><rect x="48.7328%" y="629" width="0.0647%" height="15" fill="rgb(242,78,33)" fg:x="262920" fg:w="349"/><text x="48.9828%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (1,467 samples, 0.27%)</title><rect x="48.8346%" y="645" width="0.2719%" height="15" fill="rgb(235,60,3)" fg:x="263469" fg:w="1467"/><text x="49.0846%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,353 samples, 0.25%)</title><rect x="48.8557%" y="629" width="0.2508%" height="15" fill="rgb(216,172,19)" fg:x="263583" fg:w="1353"/><text x="49.1057%" y="639.50"></text></g><g><title>prepare_to_wait_event (1,697 samples, 0.31%)</title><rect x="48.7986%" y="661" width="0.3145%" height="15" fill="rgb(227,6,42)" fg:x="263275" fg:w="1697"/><text x="49.0486%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (1,639 samples, 0.30%)</title><rect x="49.1132%" y="661" width="0.3038%" height="15" fill="rgb(223,207,42)" fg:x="264972" fg:w="1639"/><text x="49.3632%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (960 samples, 0.18%)</title><rect x="49.2390%" y="645" width="0.1779%" height="15" fill="rgb(246,138,30)" fg:x="265651" fg:w="960"/><text x="49.4890%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (66 samples, 0.01%)</title><rect x="49.4457%" y="629" width="0.0122%" height="15" fill="rgb(251,199,47)" fg:x="266766" fg:w="66"/><text x="49.6957%" y="639.50"></text></g><g><title>update_curr (169 samples, 0.03%)</title><rect x="49.5009%" y="597" width="0.0313%" height="15" fill="rgb(228,218,44)" fg:x="267064" fg:w="169"/><text x="49.7509%" y="607.50"></text></g><g><title>__update_load_avg_se (57 samples, 0.01%)</title><rect x="49.5489%" y="581" width="0.0106%" height="15" fill="rgb(220,68,6)" fg:x="267323" fg:w="57"/><text x="49.7989%" y="591.50"></text></g><g><title>dequeue_entity (476 samples, 0.09%)</title><rect x="49.4722%" y="613" width="0.0882%" height="15" fill="rgb(240,60,26)" fg:x="266909" fg:w="476"/><text x="49.7222%" y="623.50"></text></g><g><title>update_load_avg (152 samples, 0.03%)</title><rect x="49.5323%" y="597" width="0.0282%" height="15" fill="rgb(211,200,19)" fg:x="267233" fg:w="152"/><text x="49.7823%" y="607.50"></text></g><g><title>dequeue_task_fair (554 samples, 0.10%)</title><rect x="49.4613%" y="629" width="0.1027%" height="15" fill="rgb(242,145,30)" fg:x="266850" fg:w="554"/><text x="49.7113%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (458 samples, 0.08%)</title><rect x="49.5812%" y="613" width="0.0849%" height="15" fill="rgb(225,64,13)" fg:x="267497" fg:w="458"/><text x="49.8312%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (428 samples, 0.08%)</title><rect x="49.5868%" y="597" width="0.0793%" height="15" fill="rgb(218,103,35)" fg:x="267527" fg:w="428"/><text x="49.8368%" y="607.50"></text></g><g><title>native_write_msr (420 samples, 0.08%)</title><rect x="49.5882%" y="581" width="0.0778%" height="15" fill="rgb(216,93,46)" fg:x="267535" fg:w="420"/><text x="49.8382%" y="591.50"></text></g><g><title>finish_task_switch (562 samples, 0.10%)</title><rect x="49.5640%" y="629" width="0.1042%" height="15" fill="rgb(225,159,27)" fg:x="267404" fg:w="562"/><text x="49.8140%" y="639.50"></text></g><g><title>pick_next_task_fair (72 samples, 0.01%)</title><rect x="49.6681%" y="629" width="0.0133%" height="15" fill="rgb(225,204,11)" fg:x="267966" fg:w="72"/><text x="49.9181%" y="639.50"></text></g><g><title>pick_next_task_idle (87 samples, 0.02%)</title><rect x="49.6815%" y="629" width="0.0161%" height="15" fill="rgb(205,56,4)" fg:x="268038" fg:w="87"/><text x="49.9315%" y="639.50"></text></g><g><title>__update_idle_core (71 samples, 0.01%)</title><rect x="49.6844%" y="613" width="0.0132%" height="15" fill="rgb(206,6,35)" fg:x="268054" fg:w="71"/><text x="49.9344%" y="623.50"></text></g><g><title>psi_task_change (387 samples, 0.07%)</title><rect x="49.6976%" y="629" width="0.0717%" height="15" fill="rgb(247,73,52)" fg:x="268125" fg:w="387"/><text x="49.9476%" y="639.50"></text></g><g><title>psi_group_change (335 samples, 0.06%)</title><rect x="49.7072%" y="613" width="0.0621%" height="15" fill="rgb(246,97,4)" fg:x="268177" fg:w="335"/><text x="49.9572%" y="623.50"></text></g><g><title>record_times (93 samples, 0.02%)</title><rect x="49.7521%" y="597" width="0.0172%" height="15" fill="rgb(212,37,15)" fg:x="268419" fg:w="93"/><text x="50.0021%" y="607.50"></text></g><g><title>sched_clock_cpu (70 samples, 0.01%)</title><rect x="49.7564%" y="581" width="0.0130%" height="15" fill="rgb(208,130,40)" fg:x="268442" fg:w="70"/><text x="50.0064%" y="591.50"></text></g><g><title>sched_clock (63 samples, 0.01%)</title><rect x="49.7577%" y="565" width="0.0117%" height="15" fill="rgb(236,55,29)" fg:x="268449" fg:w="63"/><text x="50.0077%" y="575.50"></text></g><g><title>native_sched_clock (54 samples, 0.01%)</title><rect x="49.7593%" y="549" width="0.0100%" height="15" fill="rgb(209,156,45)" fg:x="268458" fg:w="54"/><text x="50.0093%" y="559.50"></text></g><g><title>__btrfs_tree_lock (5,947 samples, 1.10%)</title><rect x="48.6859%" y="677" width="1.1023%" height="15" fill="rgb(249,107,4)" fg:x="262667" fg:w="5947"/><text x="48.9359%" y="687.50"></text></g><g><title>schedule (2,003 samples, 0.37%)</title><rect x="49.4170%" y="661" width="0.3713%" height="15" fill="rgb(227,7,13)" fg:x="266611" fg:w="2003"/><text x="49.6670%" y="671.50"></text></g><g><title>__schedule (1,963 samples, 0.36%)</title><rect x="49.4244%" y="645" width="0.3638%" height="15" fill="rgb(250,129,14)" fg:x="266651" fg:w="1963"/><text x="49.6744%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (74 samples, 0.01%)</title><rect x="49.7895%" y="677" width="0.0137%" height="15" fill="rgb(229,92,13)" fg:x="268621" fg:w="74"/><text x="50.0395%" y="687.50"></text></g><g><title>btrfs_set_path_blocking (120 samples, 0.02%)</title><rect x="49.8040%" y="677" width="0.0222%" height="15" fill="rgb(245,98,39)" fg:x="268699" fg:w="120"/><text x="50.0540%" y="687.50"></text></g><g><title>btrfs_try_tree_write_lock (1,930 samples, 0.36%)</title><rect x="49.8262%" y="677" width="0.3577%" height="15" fill="rgb(234,135,48)" fg:x="268819" fg:w="1930"/><text x="50.0762%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (1,870 samples, 0.35%)</title><rect x="49.8374%" y="661" width="0.3466%" height="15" fill="rgb(230,98,28)" fg:x="268879" fg:w="1870"/><text x="50.0874%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,157 samples, 0.21%)</title><rect x="49.9695%" y="645" width="0.2145%" height="15" fill="rgb(223,121,0)" fg:x="269592" fg:w="1157"/><text x="50.2195%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (256 samples, 0.05%)</title><rect x="50.1840%" y="677" width="0.0475%" height="15" fill="rgb(234,173,33)" fg:x="270749" fg:w="256"/><text x="50.4340%" y="687.50"></text></g><g><title>__radix_tree_lookup (129 samples, 0.02%)</title><rect x="50.2811%" y="645" width="0.0239%" height="15" fill="rgb(245,47,8)" fg:x="271273" fg:w="129"/><text x="50.5311%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (75 samples, 0.01%)</title><rect x="50.3050%" y="645" width="0.0139%" height="15" fill="rgb(205,17,20)" fg:x="271402" fg:w="75"/><text x="50.5550%" y="655.50"></text></g><g><title>find_extent_buffer (330 samples, 0.06%)</title><rect x="50.2581%" y="661" width="0.0612%" height="15" fill="rgb(232,151,16)" fg:x="271149" fg:w="330"/><text x="50.5081%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (525 samples, 0.10%)</title><rect x="50.2314%" y="677" width="0.0973%" height="15" fill="rgb(208,30,32)" fg:x="271005" fg:w="525"/><text x="50.4814%" y="687.50"></text></g><g><title>alloc_tree_block_no_bg_flush (75 samples, 0.01%)</title><rect x="50.3296%" y="661" width="0.0139%" height="15" fill="rgb(254,26,3)" fg:x="271535" fg:w="75"/><text x="50.5796%" y="671.50"></text></g><g><title>btrfs_alloc_tree_block (75 samples, 0.01%)</title><rect x="50.3296%" y="645" width="0.0139%" height="15" fill="rgb(240,177,30)" fg:x="271535" fg:w="75"/><text x="50.5796%" y="655.50"></text></g><g><title>__push_leaf_left (59 samples, 0.01%)</title><rect x="50.3532%" y="645" width="0.0109%" height="15" fill="rgb(248,76,44)" fg:x="271662" fg:w="59"/><text x="50.6032%" y="655.50"></text></g><g><title>push_leaf_left (73 samples, 0.01%)</title><rect x="50.3530%" y="661" width="0.0135%" height="15" fill="rgb(241,186,54)" fg:x="271661" fg:w="73"/><text x="50.6030%" y="671.50"></text></g><g><title>split_leaf (211 samples, 0.04%)</title><rect x="50.3287%" y="677" width="0.0391%" height="15" fill="rgb(249,171,29)" fg:x="271530" fg:w="211"/><text x="50.5787%" y="687.50"></text></g><g><title>_raw_spin_lock (58 samples, 0.01%)</title><rect x="50.4194%" y="597" width="0.0108%" height="15" fill="rgb(237,151,44)" fg:x="272019" fg:w="58"/><text x="50.6694%" y="607.50"></text></g><g><title>available_idle_cpu (61 samples, 0.01%)</title><rect x="50.4648%" y="581" width="0.0113%" height="15" fill="rgb(228,174,30)" fg:x="272264" fg:w="61"/><text x="50.7148%" y="591.50"></text></g><g><title>select_task_rq_fair (276 samples, 0.05%)</title><rect x="50.4414%" y="597" width="0.0512%" height="15" fill="rgb(252,14,37)" fg:x="272138" fg:w="276"/><text x="50.6914%" y="607.50"></text></g><g><title>enqueue_entity (268 samples, 0.05%)</title><rect x="50.5109%" y="565" width="0.0497%" height="15" fill="rgb(207,111,40)" fg:x="272513" fg:w="268"/><text x="50.7609%" y="575.50"></text></g><g><title>update_load_avg (94 samples, 0.02%)</title><rect x="50.5432%" y="549" width="0.0174%" height="15" fill="rgb(248,171,54)" fg:x="272687" fg:w="94"/><text x="50.7932%" y="559.50"></text></g><g><title>enqueue_task_fair (326 samples, 0.06%)</title><rect x="50.5024%" y="581" width="0.0604%" height="15" fill="rgb(211,127,2)" fg:x="272467" fg:w="326"/><text x="50.7524%" y="591.50"></text></g><g><title>ttwu_do_activate (656 samples, 0.12%)</title><rect x="50.4983%" y="597" width="0.1216%" height="15" fill="rgb(236,87,47)" fg:x="272445" fg:w="656"/><text x="50.7483%" y="607.50"></text></g><g><title>psi_task_change (308 samples, 0.06%)</title><rect x="50.5628%" y="581" width="0.0571%" height="15" fill="rgb(223,190,45)" fg:x="272793" fg:w="308"/><text x="50.8128%" y="591.50"></text></g><g><title>psi_group_change (259 samples, 0.05%)</title><rect x="50.5719%" y="565" width="0.0480%" height="15" fill="rgb(215,5,16)" fg:x="272842" fg:w="259"/><text x="50.8219%" y="575.50"></text></g><g><title>ttwu_do_wakeup (66 samples, 0.01%)</title><rect x="50.6199%" y="597" width="0.0122%" height="15" fill="rgb(252,82,33)" fg:x="273101" fg:w="66"/><text x="50.8699%" y="607.50"></text></g><g><title>check_preempt_curr (59 samples, 0.01%)</title><rect x="50.6212%" y="581" width="0.0109%" height="15" fill="rgb(247,213,44)" fg:x="273108" fg:w="59"/><text x="50.8712%" y="591.50"></text></g><g><title>__wake_up_common (1,443 samples, 0.27%)</title><rect x="50.3810%" y="645" width="0.2675%" height="15" fill="rgb(205,196,44)" fg:x="271812" fg:w="1443"/><text x="50.6310%" y="655.50"></text></g><g><title>autoremove_wake_function (1,419 samples, 0.26%)</title><rect x="50.3854%" y="629" width="0.2630%" height="15" fill="rgb(237,96,54)" fg:x="271836" fg:w="1419"/><text x="50.6354%" y="639.50"></text></g><g><title>try_to_wake_up (1,383 samples, 0.26%)</title><rect x="50.3921%" y="613" width="0.2563%" height="15" fill="rgb(230,113,34)" fg:x="271872" fg:w="1383"/><text x="50.6421%" y="623.50"></text></g><g><title>update_rq_clock (56 samples, 0.01%)</title><rect x="50.6381%" y="597" width="0.0104%" height="15" fill="rgb(221,224,12)" fg:x="273199" fg:w="56"/><text x="50.8881%" y="607.50"></text></g><g><title>__wake_up_common_lock (1,478 samples, 0.27%)</title><rect x="50.3780%" y="661" width="0.2740%" height="15" fill="rgb(219,112,44)" fg:x="271796" fg:w="1478"/><text x="50.6280%" y="671.50"></text></g><g><title>btrfs_search_slot (11,067 samples, 2.05%)</title><rect x="48.6188%" y="693" width="2.0513%" height="15" fill="rgb(210,31,13)" fg:x="262305" fg:w="11067"/><text x="48.8688%" y="703.50">b..</text></g><g><title>unlock_up (1,630 samples, 0.30%)</title><rect x="50.3680%" y="677" width="0.3021%" height="15" fill="rgb(230,25,16)" fg:x="271742" fg:w="1630"/><text x="50.6180%" y="687.50"></text></g><g><title>btrfs_get_token_32 (103 samples, 0.02%)</title><rect x="50.6885%" y="677" width="0.0191%" height="15" fill="rgb(246,108,53)" fg:x="273471" fg:w="103"/><text x="50.9385%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (61 samples, 0.01%)</title><rect x="50.7076%" y="677" width="0.0113%" height="15" fill="rgb(241,172,50)" fg:x="273574" fg:w="61"/><text x="50.9576%" y="687.50"></text></g><g><title>btrfs_set_token_32 (92 samples, 0.02%)</title><rect x="50.7280%" y="677" width="0.0171%" height="15" fill="rgb(235,141,10)" fg:x="273684" fg:w="92"/><text x="50.9780%" y="687.50"></text></g><g><title>memcpy_extent_buffer (105 samples, 0.02%)</title><rect x="50.7502%" y="677" width="0.0195%" height="15" fill="rgb(220,174,43)" fg:x="273804" fg:w="105"/><text x="51.0002%" y="687.50"></text></g><g><title>memmove (70 samples, 0.01%)</title><rect x="50.7567%" y="661" width="0.0130%" height="15" fill="rgb(215,181,40)" fg:x="273839" fg:w="70"/><text x="51.0067%" y="671.50"></text></g><g><title>memmove_extent_buffer (66 samples, 0.01%)</title><rect x="50.7697%" y="677" width="0.0122%" height="15" fill="rgb(230,97,2)" fg:x="273909" fg:w="66"/><text x="51.0197%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (11,719 samples, 2.17%)</title><rect x="48.6170%" y="709" width="2.1721%" height="15" fill="rgb(211,25,27)" fg:x="262295" fg:w="11719"/><text x="48.8670%" y="719.50">b..</text></g><g><title>setup_items_for_insert (642 samples, 0.12%)</title><rect x="50.6701%" y="693" width="0.1190%" height="15" fill="rgb(230,87,26)" fg:x="273372" fg:w="642"/><text x="50.9201%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (95 samples, 0.02%)</title><rect x="50.8334%" y="661" width="0.0176%" height="15" fill="rgb(227,160,17)" fg:x="274253" fg:w="95"/><text x="51.0834%" y="671.50"></text></g><g><title>btrfs_free_path (158 samples, 0.03%)</title><rect x="50.8249%" y="693" width="0.0293%" height="15" fill="rgb(244,85,34)" fg:x="274207" fg:w="158"/><text x="51.0749%" y="703.50"></text></g><g><title>btrfs_release_path (156 samples, 0.03%)</title><rect x="50.8253%" y="677" width="0.0289%" height="15" fill="rgb(207,70,0)" fg:x="274209" fg:w="156"/><text x="51.0753%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (126 samples, 0.02%)</title><rect x="50.8883%" y="645" width="0.0234%" height="15" fill="rgb(223,129,7)" fg:x="274549" fg:w="126"/><text x="51.1383%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (180 samples, 0.03%)</title><rect x="50.8881%" y="661" width="0.0334%" height="15" fill="rgb(246,105,7)" fg:x="274548" fg:w="180"/><text x="51.1381%" y="671.50"></text></g><g><title>finish_wait (296 samples, 0.05%)</title><rect x="50.9450%" y="645" width="0.0549%" height="15" fill="rgb(215,154,42)" fg:x="274855" fg:w="296"/><text x="51.1950%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (282 samples, 0.05%)</title><rect x="50.9476%" y="629" width="0.0523%" height="15" fill="rgb(220,215,30)" fg:x="274869" fg:w="282"/><text x="51.1976%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (257 samples, 0.05%)</title><rect x="50.9522%" y="613" width="0.0476%" height="15" fill="rgb(228,81,51)" fg:x="274894" fg:w="257"/><text x="51.2022%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (1,098 samples, 0.20%)</title><rect x="51.0281%" y="629" width="0.2035%" height="15" fill="rgb(247,71,54)" fg:x="275303" fg:w="1098"/><text x="51.2781%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (1,006 samples, 0.19%)</title><rect x="51.0451%" y="613" width="0.1865%" height="15" fill="rgb(234,176,34)" fg:x="275395" fg:w="1006"/><text x="51.2951%" y="623.50"></text></g><g><title>prepare_to_wait_event (1,278 samples, 0.24%)</title><rect x="51.0017%" y="645" width="0.2369%" height="15" fill="rgb(241,103,54)" fg:x="275161" fg:w="1278"/><text x="51.2517%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (1,065 samples, 0.20%)</title><rect x="51.2386%" y="645" width="0.1974%" height="15" fill="rgb(228,22,34)" fg:x="276439" fg:w="1065"/><text x="51.4886%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (622 samples, 0.12%)</title><rect x="51.3207%" y="629" width="0.1153%" height="15" fill="rgb(241,179,48)" fg:x="276882" fg:w="622"/><text x="51.5707%" y="639.50"></text></g><g><title>__perf_event_task_sched_out (87 samples, 0.02%)</title><rect x="51.4610%" y="613" width="0.0161%" height="15" fill="rgb(235,167,37)" fg:x="277639" fg:w="87"/><text x="51.7110%" y="623.50"></text></g><g><title>update_curr (147 samples, 0.03%)</title><rect x="51.5118%" y="581" width="0.0272%" height="15" fill="rgb(213,109,30)" fg:x="277913" fg:w="147"/><text x="51.7618%" y="591.50"></text></g><g><title>dequeue_entity (382 samples, 0.07%)</title><rect x="51.4914%" y="597" width="0.0708%" height="15" fill="rgb(222,172,16)" fg:x="277803" fg:w="382"/><text x="51.7414%" y="607.50"></text></g><g><title>update_load_avg (125 samples, 0.02%)</title><rect x="51.5391%" y="581" width="0.0232%" height="15" fill="rgb(233,192,5)" fg:x="278060" fg:w="125"/><text x="51.7891%" y="591.50"></text></g><g><title>dequeue_task_fair (463 samples, 0.09%)</title><rect x="51.4801%" y="613" width="0.0858%" height="15" fill="rgb(247,189,41)" fg:x="277742" fg:w="463"/><text x="51.7301%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (354 samples, 0.07%)</title><rect x="51.5789%" y="597" width="0.0656%" height="15" fill="rgb(218,134,47)" fg:x="278275" fg:w="354"/><text x="51.8289%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (340 samples, 0.06%)</title><rect x="51.5815%" y="581" width="0.0630%" height="15" fill="rgb(216,29,3)" fg:x="278289" fg:w="340"/><text x="51.8315%" y="591.50"></text></g><g><title>native_write_msr (337 samples, 0.06%)</title><rect x="51.5821%" y="565" width="0.0625%" height="15" fill="rgb(246,140,12)" fg:x="278292" fg:w="337"/><text x="51.8321%" y="575.50"></text></g><g><title>finish_task_switch (441 samples, 0.08%)</title><rect x="51.5659%" y="613" width="0.0817%" height="15" fill="rgb(230,136,11)" fg:x="278205" fg:w="441"/><text x="51.8159%" y="623.50"></text></g><g><title>pick_next_task_fair (75 samples, 0.01%)</title><rect x="51.6477%" y="613" width="0.0139%" height="15" fill="rgb(247,22,47)" fg:x="278646" fg:w="75"/><text x="51.8977%" y="623.50"></text></g><g><title>pick_next_task_idle (59 samples, 0.01%)</title><rect x="51.6616%" y="613" width="0.0109%" height="15" fill="rgb(218,84,22)" fg:x="278721" fg:w="59"/><text x="51.9116%" y="623.50"></text></g><g><title>psi_task_change (353 samples, 0.07%)</title><rect x="51.6725%" y="613" width="0.0654%" height="15" fill="rgb(216,87,39)" fg:x="278780" fg:w="353"/><text x="51.9225%" y="623.50"></text></g><g><title>psi_group_change (309 samples, 0.06%)</title><rect x="51.6807%" y="597" width="0.0573%" height="15" fill="rgb(221,178,8)" fg:x="278824" fg:w="309"/><text x="51.9307%" y="607.50"></text></g><g><title>record_times (63 samples, 0.01%)</title><rect x="51.7263%" y="581" width="0.0117%" height="15" fill="rgb(230,42,11)" fg:x="279070" fg:w="63"/><text x="51.9763%" y="591.50"></text></g><g><title>__schedule (1,722 samples, 0.32%)</title><rect x="51.4390%" y="629" width="0.3192%" height="15" fill="rgb(237,229,4)" fg:x="277520" fg:w="1722"/><text x="51.6890%" y="639.50"></text></g><g><title>__btrfs_tree_lock (4,516 samples, 0.84%)</title><rect x="50.9215%" y="661" width="0.8371%" height="15" fill="rgb(222,31,33)" fg:x="274728" fg:w="4516"/><text x="51.1715%" y="671.50"></text></g><g><title>schedule (1,740 samples, 0.32%)</title><rect x="51.4360%" y="645" width="0.3225%" height="15" fill="rgb(210,17,39)" fg:x="277504" fg:w="1740"/><text x="51.6860%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (66 samples, 0.01%)</title><rect x="51.7613%" y="661" width="0.0122%" height="15" fill="rgb(244,93,20)" fg:x="279259" fg:w="66"/><text x="52.0113%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (54 samples, 0.01%)</title><rect x="51.7743%" y="661" width="0.0100%" height="15" fill="rgb(210,40,47)" fg:x="279329" fg:w="54"/><text x="52.0243%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (419 samples, 0.08%)</title><rect x="52.0030%" y="629" width="0.0777%" height="15" fill="rgb(239,211,47)" fg:x="280563" fg:w="419"/><text x="52.2530%" y="639.50"></text></g><g><title>btrfs_try_tree_write_lock (1,599 samples, 0.30%)</title><rect x="51.7845%" y="661" width="0.2964%" height="15" fill="rgb(251,223,49)" fg:x="279384" fg:w="1599"/><text x="52.0345%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (1,551 samples, 0.29%)</title><rect x="51.7934%" y="645" width="0.2875%" height="15" fill="rgb(221,149,5)" fg:x="279432" fg:w="1551"/><text x="52.0434%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (228 samples, 0.04%)</title><rect x="52.0809%" y="661" width="0.0423%" height="15" fill="rgb(219,224,51)" fg:x="280983" fg:w="228"/><text x="52.3309%" y="671.50"></text></g><g><title>__radix_tree_lookup (123 samples, 0.02%)</title><rect x="52.1746%" y="629" width="0.0228%" height="15" fill="rgb(223,7,8)" fg:x="281489" fg:w="123"/><text x="52.4246%" y="639.50"></text></g><g><title>find_extent_buffer (326 samples, 0.06%)</title><rect x="52.1517%" y="645" width="0.0604%" height="15" fill="rgb(241,217,22)" fg:x="281365" fg:w="326"/><text x="52.4017%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (79 samples, 0.01%)</title><rect x="52.1974%" y="629" width="0.0146%" height="15" fill="rgb(248,209,0)" fg:x="281612" fg:w="79"/><text x="52.4474%" y="639.50"></text></g><g><title>mark_page_accessed (56 samples, 0.01%)</title><rect x="52.2017%" y="613" width="0.0104%" height="15" fill="rgb(217,205,4)" fg:x="281635" fg:w="56"/><text x="52.4517%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (523 samples, 0.10%)</title><rect x="52.1231%" y="661" width="0.0969%" height="15" fill="rgb(228,124,39)" fg:x="281211" fg:w="523"/><text x="52.3731%" y="671.50"></text></g><g><title>alloc_tree_block_no_bg_flush (64 samples, 0.01%)</title><rect x="52.2214%" y="645" width="0.0119%" height="15" fill="rgb(250,116,42)" fg:x="281741" fg:w="64"/><text x="52.4714%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (64 samples, 0.01%)</title><rect x="52.2214%" y="629" width="0.0119%" height="15" fill="rgb(223,202,9)" fg:x="281741" fg:w="64"/><text x="52.4714%" y="639.50"></text></g><g><title>__push_leaf_left (73 samples, 0.01%)</title><rect x="52.2403%" y="629" width="0.0135%" height="15" fill="rgb(242,222,40)" fg:x="281843" fg:w="73"/><text x="52.4903%" y="639.50"></text></g><g><title>push_leaf_left (99 samples, 0.02%)</title><rect x="52.2395%" y="645" width="0.0183%" height="15" fill="rgb(229,99,46)" fg:x="281839" fg:w="99"/><text x="52.4895%" y="655.50"></text></g><g><title>split_leaf (209 samples, 0.04%)</title><rect x="52.2201%" y="661" width="0.0387%" height="15" fill="rgb(225,56,46)" fg:x="281734" fg:w="209"/><text x="52.4701%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (67 samples, 0.01%)</title><rect x="52.3146%" y="581" width="0.0124%" height="15" fill="rgb(227,94,5)" fg:x="282244" fg:w="67"/><text x="52.5646%" y="591.50"></text></g><g><title>available_idle_cpu (66 samples, 0.01%)</title><rect x="52.3483%" y="565" width="0.0122%" height="15" fill="rgb(205,112,38)" fg:x="282426" fg:w="66"/><text x="52.5983%" y="575.50"></text></g><g><title>select_task_rq_fair (261 samples, 0.05%)</title><rect x="52.3287%" y="581" width="0.0484%" height="15" fill="rgb(231,133,46)" fg:x="282320" fg:w="261"/><text x="52.5787%" y="591.50"></text></g><g><title>enqueue_entity (278 samples, 0.05%)</title><rect x="52.3987%" y="549" width="0.0515%" height="15" fill="rgb(217,16,9)" fg:x="282698" fg:w="278"/><text x="52.6487%" y="559.50"></text></g><g><title>update_load_avg (92 samples, 0.02%)</title><rect x="52.4332%" y="533" width="0.0171%" height="15" fill="rgb(249,173,9)" fg:x="282884" fg:w="92"/><text x="52.6832%" y="543.50"></text></g><g><title>enqueue_task_fair (357 samples, 0.07%)</title><rect x="52.3876%" y="565" width="0.0662%" height="15" fill="rgb(205,163,53)" fg:x="282638" fg:w="357"/><text x="52.6376%" y="575.50"></text></g><g><title>ttwu_do_activate (775 samples, 0.14%)</title><rect x="52.3811%" y="581" width="0.1436%" height="15" fill="rgb(217,54,41)" fg:x="282603" fg:w="775"/><text x="52.6311%" y="591.50"></text></g><g><title>psi_task_change (383 samples, 0.07%)</title><rect x="52.4538%" y="565" width="0.0710%" height="15" fill="rgb(228,216,12)" fg:x="282995" fg:w="383"/><text x="52.7038%" y="575.50"></text></g><g><title>psi_group_change (339 samples, 0.06%)</title><rect x="52.4619%" y="549" width="0.0628%" height="15" fill="rgb(244,228,15)" fg:x="283039" fg:w="339"/><text x="52.7119%" y="559.50"></text></g><g><title>record_times (59 samples, 0.01%)</title><rect x="52.5138%" y="533" width="0.0109%" height="15" fill="rgb(221,176,53)" fg:x="283319" fg:w="59"/><text x="52.7638%" y="543.50"></text></g><g><title>ttwu_do_wakeup (65 samples, 0.01%)</title><rect x="52.5248%" y="581" width="0.0120%" height="15" fill="rgb(205,94,34)" fg:x="283378" fg:w="65"/><text x="52.7748%" y="591.50"></text></g><g><title>check_preempt_curr (59 samples, 0.01%)</title><rect x="52.5259%" y="565" width="0.0109%" height="15" fill="rgb(213,110,48)" fg:x="283384" fg:w="59"/><text x="52.7759%" y="575.50"></text></g><g><title>__wake_up_common (1,525 samples, 0.28%)</title><rect x="52.2703%" y="629" width="0.2827%" height="15" fill="rgb(236,142,28)" fg:x="282005" fg:w="1525"/><text x="52.5203%" y="639.50"></text></g><g><title>autoremove_wake_function (1,504 samples, 0.28%)</title><rect x="52.2742%" y="613" width="0.2788%" height="15" fill="rgb(225,135,29)" fg:x="282026" fg:w="1504"/><text x="52.5242%" y="623.50"></text></g><g><title>try_to_wake_up (1,467 samples, 0.27%)</title><rect x="52.2810%" y="597" width="0.2719%" height="15" fill="rgb(252,45,31)" fg:x="282063" fg:w="1467"/><text x="52.5310%" y="607.50"></text></g><g><title>__wake_up_common_lock (1,566 samples, 0.29%)</title><rect x="52.2688%" y="645" width="0.2903%" height="15" fill="rgb(211,187,50)" fg:x="281997" fg:w="1566"/><text x="52.5188%" y="655.50"></text></g><g><title>btrfs_search_slot (9,239 samples, 1.71%)</title><rect x="50.8620%" y="677" width="1.7125%" height="15" fill="rgb(229,109,7)" fg:x="274407" fg:w="9239"/><text x="51.1120%" y="687.50"></text></g><g><title>unlock_up (1,703 samples, 0.32%)</title><rect x="52.2588%" y="661" width="0.3157%" height="15" fill="rgb(251,131,51)" fg:x="281943" fg:w="1703"/><text x="52.5088%" y="671.50"></text></g><g><title>btrfs_get_token_32 (56 samples, 0.01%)</title><rect x="52.5998%" y="661" width="0.0104%" height="15" fill="rgb(251,180,35)" fg:x="283783" fg:w="56"/><text x="52.8498%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (70 samples, 0.01%)</title><rect x="52.6102%" y="661" width="0.0130%" height="15" fill="rgb(211,46,32)" fg:x="283839" fg:w="70"/><text x="52.8602%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (58 samples, 0.01%)</title><rect x="52.6232%" y="661" width="0.0108%" height="15" fill="rgb(248,123,17)" fg:x="283909" fg:w="58"/><text x="52.8732%" y="671.50"></text></g><g><title>btrfs_set_token_32 (80 samples, 0.01%)</title><rect x="52.6339%" y="661" width="0.0148%" height="15" fill="rgb(227,141,18)" fg:x="283967" fg:w="80"/><text x="52.8839%" y="671.50"></text></g><g><title>memmove_extent_buffer (76 samples, 0.01%)</title><rect x="52.6573%" y="661" width="0.0141%" height="15" fill="rgb(216,102,9)" fg:x="284093" fg:w="76"/><text x="52.9073%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (9,834 samples, 1.82%)</title><rect x="50.8601%" y="693" width="1.8228%" height="15" fill="rgb(253,47,13)" fg:x="274397" fg:w="9834"/><text x="51.1101%" y="703.50">b..</text></g><g><title>setup_items_for_insert (585 samples, 0.11%)</title><rect x="52.5745%" y="677" width="0.1084%" height="15" fill="rgb(226,93,23)" fg:x="283646" fg:w="585"/><text x="52.8245%" y="687.50"></text></g><g><title>write_extent_buffer (62 samples, 0.01%)</title><rect x="52.6714%" y="661" width="0.0115%" height="15" fill="rgb(247,104,17)" fg:x="284169" fg:w="62"/><text x="52.9214%" y="671.50"></text></g><g><title>btrfs_set_token_32 (110 samples, 0.02%)</title><rect x="52.7149%" y="677" width="0.0204%" height="15" fill="rgb(233,203,26)" fg:x="284404" fg:w="110"/><text x="52.9649%" y="687.50"></text></g><g><title>btrfs_set_token_64 (136 samples, 0.03%)</title><rect x="52.7353%" y="677" width="0.0252%" height="15" fill="rgb(244,98,49)" fg:x="284514" fg:w="136"/><text x="52.9853%" y="687.50"></text></g><g><title>fill_inode_item (330 samples, 0.06%)</title><rect x="52.7061%" y="693" width="0.0612%" height="15" fill="rgb(235,134,22)" fg:x="284356" fg:w="330"/><text x="52.9561%" y="703.50"></text></g><g><title>_raw_spin_lock (72 samples, 0.01%)</title><rect x="52.8768%" y="677" width="0.0133%" height="15" fill="rgb(221,70,32)" fg:x="285277" fg:w="72"/><text x="53.1268%" y="687.50"></text></g><g><title>inode_tree_add (667 samples, 0.12%)</title><rect x="52.7789%" y="693" width="0.1236%" height="15" fill="rgb(238,15,50)" fg:x="284749" fg:w="667"/><text x="53.0289%" y="703.50"></text></g><g><title>rb_insert_color (67 samples, 0.01%)</title><rect x="52.8901%" y="677" width="0.0124%" height="15" fill="rgb(215,221,48)" fg:x="285349" fg:w="67"/><text x="53.1401%" y="687.50"></text></g><g><title>insert_inode_locked4 (126 samples, 0.02%)</title><rect x="52.9025%" y="693" width="0.0234%" height="15" fill="rgb(236,73,3)" fg:x="285416" fg:w="126"/><text x="53.1525%" y="703.50"></text></g><g><title>inode_insert5 (125 samples, 0.02%)</title><rect x="52.9027%" y="677" width="0.0232%" height="15" fill="rgb(250,107,11)" fg:x="285417" fg:w="125"/><text x="53.1527%" y="687.50"></text></g><g><title>find_inode (86 samples, 0.02%)</title><rect x="52.9099%" y="661" width="0.0159%" height="15" fill="rgb(242,39,14)" fg:x="285456" fg:w="86"/><text x="53.1599%" y="671.50"></text></g><g><title>kernel_init_free_pages (58 samples, 0.01%)</title><rect x="52.9963%" y="533" width="0.0108%" height="15" fill="rgb(248,164,37)" fg:x="285922" fg:w="58"/><text x="53.2463%" y="543.50"></text></g><g><title>clear_page_erms (55 samples, 0.01%)</title><rect x="52.9969%" y="517" width="0.0102%" height="15" fill="rgb(217,60,12)" fg:x="285925" fg:w="55"/><text x="53.2469%" y="527.50"></text></g><g><title>get_page_from_freelist (85 samples, 0.02%)</title><rect x="52.9919%" y="565" width="0.0158%" height="15" fill="rgb(240,125,29)" fg:x="285898" fg:w="85"/><text x="53.2419%" y="575.50"></text></g><g><title>prep_new_page (64 samples, 0.01%)</title><rect x="52.9958%" y="549" width="0.0119%" height="15" fill="rgb(208,207,28)" fg:x="285919" fg:w="64"/><text x="53.2458%" y="559.50"></text></g><g><title>__alloc_pages_nodemask (90 samples, 0.02%)</title><rect x="52.9911%" y="581" width="0.0167%" height="15" fill="rgb(209,159,27)" fg:x="285894" fg:w="90"/><text x="53.2411%" y="591.50"></text></g><g><title>__slab_alloc (158 samples, 0.03%)</title><rect x="52.9882%" y="629" width="0.0293%" height="15" fill="rgb(251,176,53)" fg:x="285878" fg:w="158"/><text x="53.2382%" y="639.50"></text></g><g><title>___slab_alloc (157 samples, 0.03%)</title><rect x="52.9883%" y="613" width="0.0291%" height="15" fill="rgb(211,85,7)" fg:x="285879" fg:w="157"/><text x="53.2383%" y="623.50"></text></g><g><title>allocate_slab (150 samples, 0.03%)</title><rect x="52.9896%" y="597" width="0.0278%" height="15" fill="rgb(216,64,54)" fg:x="285886" fg:w="150"/><text x="53.2396%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (66 samples, 0.01%)</title><rect x="53.0176%" y="629" width="0.0122%" height="15" fill="rgb(217,54,24)" fg:x="286037" fg:w="66"/><text x="53.2676%" y="639.50"></text></g><g><title>btrfs_alloc_inode (489 samples, 0.09%)</title><rect x="52.9583%" y="661" width="0.0906%" height="15" fill="rgb(208,206,53)" fg:x="285717" fg:w="489"/><text x="53.2083%" y="671.50"></text></g><g><title>kmem_cache_alloc (363 samples, 0.07%)</title><rect x="52.9817%" y="645" width="0.0673%" height="15" fill="rgb(251,74,39)" fg:x="285843" fg:w="363"/><text x="53.2317%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (103 samples, 0.02%)</title><rect x="53.0299%" y="629" width="0.0191%" height="15" fill="rgb(226,47,5)" fg:x="286103" fg:w="103"/><text x="53.2799%" y="639.50"></text></g><g><title>alloc_inode (622 samples, 0.12%)</title><rect x="52.9539%" y="677" width="0.1153%" height="15" fill="rgb(234,111,33)" fg:x="285693" fg:w="622"/><text x="53.2039%" y="687.50"></text></g><g><title>inode_init_always (109 samples, 0.02%)</title><rect x="53.0490%" y="661" width="0.0202%" height="15" fill="rgb(251,14,10)" fg:x="286206" fg:w="109"/><text x="53.2990%" y="671.50"></text></g><g><title>new_inode (677 samples, 0.13%)</title><rect x="52.9507%" y="693" width="0.1255%" height="15" fill="rgb(232,43,0)" fg:x="285676" fg:w="677"/><text x="53.2007%" y="703.50"></text></g><g><title>btrfs_new_inode (12,329 samples, 2.29%)</title><rect x="50.7971%" y="709" width="2.2852%" height="15" fill="rgb(222,68,43)" fg:x="274057" fg:w="12329"/><text x="51.0471%" y="719.50">b..</text></g><g><title>__btrfs_release_delayed_node.part.0 (161 samples, 0.03%)</title><rect x="53.1172%" y="677" width="0.0298%" height="15" fill="rgb(217,24,23)" fg:x="286574" fg:w="161"/><text x="53.3672%" y="687.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="53.1492%" y="661" width="0.0128%" height="15" fill="rgb(229,209,14)" fg:x="286747" fg:w="69"/><text x="53.3992%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (82 samples, 0.02%)</title><rect x="53.1470%" y="677" width="0.0152%" height="15" fill="rgb(250,149,48)" fg:x="286735" fg:w="82"/><text x="53.3970%" y="687.50"></text></g><g><title>__radix_tree_lookup (165 samples, 0.03%)</title><rect x="53.1809%" y="645" width="0.0306%" height="15" fill="rgb(210,120,37)" fg:x="286918" fg:w="165"/><text x="53.4309%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (226 samples, 0.04%)</title><rect x="53.1765%" y="661" width="0.0419%" height="15" fill="rgb(210,21,8)" fg:x="286894" fg:w="226"/><text x="53.4265%" y="671.50"></text></g><g><title>__slab_alloc (68 samples, 0.01%)</title><rect x="53.2245%" y="645" width="0.0126%" height="15" fill="rgb(243,145,7)" fg:x="287153" fg:w="68"/><text x="53.4745%" y="655.50"></text></g><g><title>___slab_alloc (66 samples, 0.01%)</title><rect x="53.2249%" y="629" width="0.0122%" height="15" fill="rgb(238,178,32)" fg:x="287155" fg:w="66"/><text x="53.4749%" y="639.50"></text></g><g><title>allocate_slab (58 samples, 0.01%)</title><rect x="53.2263%" y="613" width="0.0108%" height="15" fill="rgb(222,4,10)" fg:x="287163" fg:w="58"/><text x="53.4763%" y="623.50"></text></g><g><title>kmem_cache_alloc (179 samples, 0.03%)</title><rect x="53.2184%" y="661" width="0.0332%" height="15" fill="rgb(239,7,37)" fg:x="287120" fg:w="179"/><text x="53.4684%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (56 samples, 0.01%)</title><rect x="53.2412%" y="645" width="0.0104%" height="15" fill="rgb(215,31,37)" fg:x="287243" fg:w="56"/><text x="53.4912%" y="655.50"></text></g><g><title>radix_tree_insert (57 samples, 0.01%)</title><rect x="53.2515%" y="661" width="0.0106%" height="15" fill="rgb(224,83,33)" fg:x="287299" fg:w="57"/><text x="53.5015%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (548 samples, 0.10%)</title><rect x="53.1622%" y="677" width="0.1016%" height="15" fill="rgb(239,55,3)" fg:x="286817" fg:w="548"/><text x="53.4122%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (937 samples, 0.17%)</title><rect x="53.1070%" y="693" width="0.1737%" height="15" fill="rgb(247,92,11)" fg:x="286519" fg:w="937"/><text x="53.3570%" y="703.50"></text></g><g><title>btrfs_update_inode (1,051 samples, 0.19%)</title><rect x="53.0997%" y="709" width="0.1948%" height="15" fill="rgb(239,200,7)" fg:x="286480" fg:w="1051"/><text x="53.3497%" y="719.50"></text></g><g><title>btrfs_update_root_times (75 samples, 0.01%)</title><rect x="53.2806%" y="693" width="0.0139%" height="15" fill="rgb(227,115,8)" fg:x="287456" fg:w="75"/><text x="53.5306%" y="703.50"></text></g><g><title>__d_instantiate (77 samples, 0.01%)</title><rect x="53.3001%" y="693" width="0.0143%" height="15" fill="rgb(215,189,27)" fg:x="287561" fg:w="77"/><text x="53.5501%" y="703.50"></text></g><g><title>d_instantiate_new (133 samples, 0.02%)</title><rect x="53.2971%" y="709" width="0.0247%" height="15" fill="rgb(251,216,39)" fg:x="287545" fg:w="133"/><text x="53.5471%" y="719.50"></text></g><g><title>kmem_cache_alloc (103 samples, 0.02%)</title><rect x="53.3249%" y="709" width="0.0191%" height="15" fill="rgb(207,29,47)" fg:x="287695" fg:w="103"/><text x="53.5749%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (63 samples, 0.01%)</title><rect x="53.3324%" y="693" width="0.0117%" height="15" fill="rgb(210,71,34)" fg:x="287735" fg:w="63"/><text x="53.5824%" y="703.50"></text></g><g><title>kmem_cache_free (58 samples, 0.01%)</title><rect x="53.3440%" y="709" width="0.0108%" height="15" fill="rgb(253,217,51)" fg:x="287798" fg:w="58"/><text x="53.5940%" y="719.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.01%)</title><rect x="53.4065%" y="645" width="0.0128%" height="15" fill="rgb(222,117,46)" fg:x="288135" fg:w="69"/><text x="53.6565%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (119 samples, 0.02%)</title><rect x="53.4195%" y="645" width="0.0221%" height="15" fill="rgb(226,132,6)" fg:x="288205" fg:w="119"/><text x="53.6695%" y="655.50"></text></g><g><title>btrfs_block_rsv_add (423 samples, 0.08%)</title><rect x="53.3828%" y="693" width="0.0784%" height="15" fill="rgb(254,145,51)" fg:x="288007" fg:w="423"/><text x="53.6328%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (369 samples, 0.07%)</title><rect x="53.3928%" y="677" width="0.0684%" height="15" fill="rgb(231,199,27)" fg:x="288061" fg:w="369"/><text x="53.6428%" y="687.50"></text></g><g><title>__reserve_bytes (341 samples, 0.06%)</title><rect x="53.3980%" y="661" width="0.0632%" height="15" fill="rgb(245,158,14)" fg:x="288089" fg:w="341"/><text x="53.6480%" y="671.50"></text></g><g><title>calc_available_free_space.isra.0 (106 samples, 0.02%)</title><rect x="53.4415%" y="645" width="0.0196%" height="15" fill="rgb(240,113,14)" fg:x="288324" fg:w="106"/><text x="53.6915%" y="655.50"></text></g><g><title>join_transaction (66 samples, 0.01%)</title><rect x="53.4619%" y="693" width="0.0122%" height="15" fill="rgb(210,20,13)" fg:x="288434" fg:w="66"/><text x="53.7119%" y="703.50"></text></g><g><title>kmem_cache_alloc (68 samples, 0.01%)</title><rect x="53.4742%" y="693" width="0.0126%" height="15" fill="rgb(241,144,13)" fg:x="288500" fg:w="68"/><text x="53.7242%" y="703.50"></text></g><g><title>start_transaction (744 samples, 0.14%)</title><rect x="53.3596%" y="709" width="0.1379%" height="15" fill="rgb(235,43,34)" fg:x="287882" fg:w="744"/><text x="53.6096%" y="719.50"></text></g><g><title>wait_current_trans (58 samples, 0.01%)</title><rect x="53.4868%" y="693" width="0.0108%" height="15" fill="rgb(208,36,20)" fg:x="288568" fg:w="58"/><text x="53.7368%" y="703.50"></text></g><g><title>strlen (175 samples, 0.03%)</title><rect x="53.4975%" y="709" width="0.0324%" height="15" fill="rgb(239,204,10)" fg:x="288626" fg:w="175"/><text x="53.7475%" y="719.50"></text></g><g><title>btrfs_symlink (35,100 samples, 6.51%)</title><rect x="47.0311%" y="725" width="6.5059%" height="15" fill="rgb(217,84,43)" fg:x="253739" fg:w="35100"/><text x="47.2811%" y="735.50">btrfs_sym..</text></g><g><title>do_symlinkat (41,527 samples, 7.70%)</title><rect x="45.8588%" y="757" width="7.6971%" height="15" fill="rgb(241,170,50)" fg:x="247414" fg:w="41527"/><text x="46.1088%" y="767.50">do_symlinkat</text></g><g><title>vfs_symlink (35,271 samples, 6.54%)</title><rect x="47.0183%" y="741" width="6.5376%" height="15" fill="rgb(226,205,29)" fg:x="253670" fg:w="35271"/><text x="47.2683%" y="751.50">vfs_symli..</text></g><g><title>do_syscall_64 (41,594 samples, 7.71%)</title><rect x="45.8504%" y="773" width="7.7095%" height="15" fill="rgb(233,113,1)" fg:x="247369" fg:w="41594"/><text x="46.1004%" y="783.50">do_syscall_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (41,712 samples, 7.73%)</title><rect x="45.8447%" y="789" width="7.7314%" height="15" fill="rgb(253,98,13)" fg:x="247338" fg:w="41712"/><text x="46.0947%" y="799.50">entry_SYSCA..</text></g><g><title>syscall_exit_to_user_mode (87 samples, 0.02%)</title><rect x="53.5600%" y="773" width="0.0161%" height="15" fill="rgb(211,115,12)" fg:x="288963" fg:w="87"/><text x="53.8100%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (81 samples, 0.02%)</title><rect x="53.5611%" y="757" width="0.0150%" height="15" fill="rgb(208,12,16)" fg:x="288969" fg:w="81"/><text x="53.8111%" y="767.50"></text></g><g><title>switch_fpu_return (62 samples, 0.01%)</title><rect x="53.5646%" y="741" width="0.0115%" height="15" fill="rgb(237,193,54)" fg:x="288988" fg:w="62"/><text x="53.8146%" y="751.50"></text></g><g><title>__symlink (41,874 samples, 7.76%)</title><rect x="45.8239%" y="805" width="7.7614%" height="15" fill="rgb(243,22,42)" fg:x="247226" fg:w="41874"/><text x="46.0739%" y="815.50">__symlink</text></g><g><title>_int_free (324 samples, 0.06%)</title><rect x="53.5854%" y="805" width="0.0601%" height="15" fill="rgb(233,151,36)" fg:x="289100" fg:w="324"/><text x="53.8354%" y="815.50"></text></g><g><title>free@plt (102 samples, 0.02%)</title><rect x="53.6502%" y="805" width="0.0189%" height="15" fill="rgb(237,57,45)" fg:x="289450" fg:w="102"/><text x="53.9002%" y="815.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (202 samples, 0.04%)</title><rect x="53.7105%" y="789" width="0.0374%" height="15" fill="rgb(221,88,17)" fg:x="289775" fg:w="202"/><text x="53.9605%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (152 samples, 0.03%)</title><rect x="53.7479%" y="789" width="0.0282%" height="15" fill="rgb(230,79,15)" fg:x="289977" fg:w="152"/><text x="53.9979%" y="799.50"></text></g><g><title>[libc-2.31.so] (93 samples, 0.02%)</title><rect x="53.7761%" y="789" width="0.0172%" height="15" fill="rgb(213,57,13)" fg:x="290129" fg:w="93"/><text x="54.0261%" y="799.50"></text></g><g><title>check_bounds (237 samples, 0.04%)</title><rect x="53.7935%" y="789" width="0.0439%" height="15" fill="rgb(222,116,39)" fg:x="290223" fg:w="237"/><text x="54.0435%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (962 samples, 0.18%)</title><rect x="53.6697%" y="805" width="0.1783%" height="15" fill="rgb(245,107,2)" fg:x="289555" fg:w="962"/><text x="53.9197%" y="815.50"></text></g><g><title>memmove@plt (57 samples, 0.01%)</title><rect x="53.8374%" y="789" width="0.0106%" height="15" fill="rgb(238,1,10)" fg:x="290460" fg:w="57"/><text x="54.0874%" y="799.50"></text></g><g><title>jni_GetObjectClass (86 samples, 0.02%)</title><rect x="53.8480%" y="805" width="0.0159%" height="15" fill="rgb(249,4,48)" fg:x="290517" fg:w="86"/><text x="54.0980%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (330 samples, 0.06%)</title><rect x="53.8914%" y="789" width="0.0612%" height="15" fill="rgb(223,151,18)" fg:x="290751" fg:w="330"/><text x="54.1414%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (288 samples, 0.05%)</title><rect x="53.8992%" y="773" width="0.0534%" height="15" fill="rgb(227,65,43)" fg:x="290793" fg:w="288"/><text x="54.1492%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (264 samples, 0.05%)</title><rect x="53.9036%" y="757" width="0.0489%" height="15" fill="rgb(218,40,45)" fg:x="290817" fg:w="264"/><text x="54.1536%" y="767.50"></text></g><g><title>HandleMark::pop_and_restore (100 samples, 0.02%)</title><rect x="53.9525%" y="789" width="0.0185%" height="15" fill="rgb(252,121,31)" fg:x="291081" fg:w="100"/><text x="54.2025%" y="799.50"></text></g><g><title>JNIHandles::make_local (215 samples, 0.04%)</title><rect x="53.9711%" y="789" width="0.0399%" height="15" fill="rgb(219,158,43)" fg:x="291181" fg:w="215"/><text x="54.2211%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (142 samples, 0.03%)</title><rect x="54.0117%" y="789" width="0.0263%" height="15" fill="rgb(231,162,42)" fg:x="291400" fg:w="142"/><text x="54.2617%" y="799.50"></text></g><g><title>jni_GetObjectField (1,106 samples, 0.20%)</title><rect x="53.8639%" y="805" width="0.2050%" height="15" fill="rgb(217,179,25)" fg:x="290603" fg:w="1106"/><text x="54.1139%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (167 samples, 0.03%)</title><rect x="54.0380%" y="789" width="0.0310%" height="15" fill="rgb(206,212,31)" fg:x="291542" fg:w="167"/><text x="54.2880%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (115 samples, 0.02%)</title><rect x="54.1160%" y="789" width="0.0213%" height="15" fill="rgb(235,144,12)" fg:x="291963" fg:w="115"/><text x="54.3660%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (262 samples, 0.05%)</title><rect x="54.1373%" y="789" width="0.0486%" height="15" fill="rgb(213,51,10)" fg:x="292078" fg:w="262"/><text x="54.3873%" y="799.50"></text></g><g><title>jni_GetStringLength (635 samples, 0.12%)</title><rect x="54.0689%" y="805" width="0.1177%" height="15" fill="rgb(231,145,14)" fg:x="291709" fg:w="635"/><text x="54.3189%" y="815.50"></text></g><g><title>jni_NewByteArray (82 samples, 0.02%)</title><rect x="54.1866%" y="805" width="0.0152%" height="15" fill="rgb(235,15,28)" fg:x="292344" fg:w="82"/><text x="54.4366%" y="815.50"></text></g><g><title>ObjArrayKlass::allocate (101 samples, 0.02%)</title><rect x="54.2124%" y="789" width="0.0187%" height="15" fill="rgb(237,206,10)" fg:x="292483" fg:w="101"/><text x="54.4624%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (64 samples, 0.01%)</title><rect x="54.2193%" y="773" width="0.0119%" height="15" fill="rgb(236,227,27)" fg:x="292520" fg:w="64"/><text x="54.4693%" y="783.50"></text></g><g><title>MemAllocator::allocate (63 samples, 0.01%)</title><rect x="54.2195%" y="757" width="0.0117%" height="15" fill="rgb(246,83,35)" fg:x="292521" fg:w="63"/><text x="54.4695%" y="767.50"></text></g><g><title>jni_NewObjectArray (192 samples, 0.04%)</title><rect x="54.2018%" y="805" width="0.0356%" height="15" fill="rgb(220,136,24)" fg:x="292426" fg:w="192"/><text x="54.4518%" y="815.50"></text></g><g><title>InstanceKlass::allocate_instance (75 samples, 0.01%)</title><rect x="54.2506%" y="789" width="0.0139%" height="15" fill="rgb(217,3,25)" fg:x="292689" fg:w="75"/><text x="54.5006%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (56 samples, 0.01%)</title><rect x="54.2541%" y="773" width="0.0104%" height="15" fill="rgb(239,24,14)" fg:x="292708" fg:w="56"/><text x="54.5041%" y="783.50"></text></g><g><title>alloc_object (77 samples, 0.01%)</title><rect x="54.2714%" y="789" width="0.0143%" height="15" fill="rgb(244,16,53)" fg:x="292801" fg:w="77"/><text x="54.5214%" y="799.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (69 samples, 0.01%)</title><rect x="54.3327%" y="757" width="0.0128%" height="15" fill="rgb(208,175,44)" fg:x="293132" fg:w="69"/><text x="54.5827%" y="767.50"></text></g><g><title>JavaCalls::call_helper (239 samples, 0.04%)</title><rect x="54.3077%" y="773" width="0.0443%" height="15" fill="rgb(252,18,48)" fg:x="292997" fg:w="239"/><text x="54.5577%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (400 samples, 0.07%)</title><rect x="54.2858%" y="789" width="0.0741%" height="15" fill="rgb(234,199,32)" fg:x="292879" fg:w="400"/><text x="54.5358%" y="799.50"></text></g><g><title>jni_NewObjectV (662 samples, 0.12%)</title><rect x="54.2374%" y="805" width="0.1227%" height="15" fill="rgb(225,77,54)" fg:x="292618" fg:w="662"/><text x="54.4874%" y="815.50"></text></g><g><title>JNIHandles::make_local (262 samples, 0.05%)</title><rect x="54.4061%" y="789" width="0.0486%" height="15" fill="rgb(225,42,25)" fg:x="293528" fg:w="262"/><text x="54.6561%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (244 samples, 0.05%)</title><rect x="54.4552%" y="789" width="0.0452%" height="15" fill="rgb(242,227,46)" fg:x="293793" fg:w="244"/><text x="54.7052%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (314 samples, 0.06%)</title><rect x="54.5004%" y="789" width="0.0582%" height="15" fill="rgb(246,197,35)" fg:x="294037" fg:w="314"/><text x="54.7504%" y="799.50"></text></g><g><title>UNICODE::is_latin1 (1,531 samples, 0.28%)</title><rect x="54.9813%" y="757" width="0.2838%" height="15" fill="rgb(215,159,26)" fg:x="296631" fg:w="1531"/><text x="55.2313%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 573558ul&gt;::oop_access_barrier (344 samples, 0.06%)</title><rect x="55.3338%" y="741" width="0.0638%" height="15" fill="rgb(212,194,50)" fg:x="298533" fg:w="344"/><text x="55.5838%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (100 samples, 0.02%)</title><rect x="55.4973%" y="693" width="0.0185%" height="15" fill="rgb(246,132,1)" fg:x="299415" fg:w="100"/><text x="55.7473%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (142 samples, 0.03%)</title><rect x="55.5158%" y="693" width="0.0263%" height="15" fill="rgb(217,71,7)" fg:x="299515" fg:w="142"/><text x="55.7658%" y="703.50"></text></g><g><title>ObjAllocator::initialize (171 samples, 0.03%)</title><rect x="55.5425%" y="693" width="0.0317%" height="15" fill="rgb(252,59,32)" fg:x="299659" fg:w="171"/><text x="55.7925%" y="703.50"></text></g><g><title>__tls_get_addr (104 samples, 0.02%)</title><rect x="55.5747%" y="693" width="0.0193%" height="15" fill="rgb(253,204,25)" fg:x="299833" fg:w="104"/><text x="55.8247%" y="703.50"></text></g><g><title>MemAllocator::allocate (771 samples, 0.14%)</title><rect x="55.4559%" y="709" width="0.1429%" height="15" fill="rgb(232,21,16)" fg:x="299192" fg:w="771"/><text x="55.7059%" y="719.50"></text></g><g><title>CollectedHeap::obj_allocate (825 samples, 0.15%)</title><rect x="55.4483%" y="725" width="0.1529%" height="15" fill="rgb(248,90,29)" fg:x="299151" fg:w="825"/><text x="55.6983%" y="735.50"></text></g><g><title>InstanceKlass::allocate_instance (1,072 samples, 0.20%)</title><rect x="55.4031%" y="741" width="0.1987%" height="15" fill="rgb(249,223,7)" fg:x="298907" fg:w="1072"/><text x="55.6531%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (91 samples, 0.02%)</title><rect x="55.6787%" y="693" width="0.0169%" height="15" fill="rgb(231,119,42)" fg:x="300394" fg:w="91"/><text x="55.9287%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (92 samples, 0.02%)</title><rect x="55.6956%" y="693" width="0.0171%" height="15" fill="rgb(215,41,35)" fg:x="300485" fg:w="92"/><text x="55.9456%" y="703.50"></text></g><g><title>[libc-2.31.so] (124 samples, 0.02%)</title><rect x="55.7492%" y="677" width="0.0230%" height="15" fill="rgb(220,44,45)" fg:x="300774" fg:w="124"/><text x="55.9992%" y="687.50"></text></g><g><title>ObjArrayAllocator::initialize (318 samples, 0.06%)</title><rect x="55.7162%" y="693" width="0.0589%" height="15" fill="rgb(253,197,36)" fg:x="300596" fg:w="318"/><text x="55.9662%" y="703.50"></text></g><g><title>MemAllocator::allocate (737 samples, 0.14%)</title><rect x="55.6454%" y="709" width="0.1366%" height="15" fill="rgb(245,225,54)" fg:x="300214" fg:w="737"/><text x="55.8954%" y="719.50"></text></g><g><title>CollectedHeap::array_allocate (788 samples, 0.15%)</title><rect x="55.6363%" y="725" width="0.1461%" height="15" fill="rgb(239,94,37)" fg:x="300165" fg:w="788"/><text x="55.8863%" y="735.50"></text></g><g><title>TypeArrayKlass::allocate_common (982 samples, 0.18%)</title><rect x="55.6018%" y="741" width="0.1820%" height="15" fill="rgb(242,217,10)" fg:x="299979" fg:w="982"/><text x="55.8518%" y="751.50"></text></g><g><title>jni_NewString (7,683 samples, 1.42%)</title><rect x="54.3601%" y="805" width="1.4241%" height="15" fill="rgb(250,193,7)" fg:x="293280" fg:w="7683"/><text x="54.6101%" y="815.50"></text></g><g><title>java_lang_String::create_oop_from_unicode (6,609 samples, 1.22%)</title><rect x="54.5592%" y="789" width="1.2250%" height="15" fill="rgb(230,104,19)" fg:x="294354" fg:w="6609"/><text x="54.8092%" y="799.50"></text></g><g><title>java_lang_String::create_from_unicode (6,530 samples, 1.21%)</title><rect x="54.5738%" y="773" width="1.2104%" height="15" fill="rgb(230,181,4)" fg:x="294433" fg:w="6530"/><text x="54.8238%" y="783.50"></text></g><g><title>java_lang_String::basic_create (2,788 samples, 0.52%)</title><rect x="55.2674%" y="757" width="0.5168%" height="15" fill="rgb(216,219,49)" fg:x="298175" fg:w="2788"/><text x="55.5174%" y="767.50"></text></g><g><title>jni_SetByteArrayRegion (63 samples, 0.01%)</title><rect x="55.7842%" y="805" width="0.0117%" height="15" fill="rgb(254,144,0)" fg:x="300963" fg:w="63"/><text x="56.0342%" y="815.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (111 samples, 0.02%)</title><rect x="55.8548%" y="789" width="0.0206%" height="15" fill="rgb(205,209,38)" fg:x="301344" fg:w="111"/><text x="56.1048%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (124 samples, 0.02%)</title><rect x="55.8754%" y="789" width="0.0230%" height="15" fill="rgb(240,21,42)" fg:x="301455" fg:w="124"/><text x="56.1254%" y="799.50"></text></g><g><title>jni_SetObjectArrayElement (554 samples, 0.10%)</title><rect x="55.7959%" y="805" width="0.1027%" height="15" fill="rgb(241,132,3)" fg:x="301026" fg:w="554"/><text x="56.0459%" y="815.50"></text></g><g><title>btrfs_getattr (114 samples, 0.02%)</title><rect x="55.9221%" y="709" width="0.0211%" height="15" fill="rgb(225,14,2)" fg:x="301707" fg:w="114"/><text x="56.1721%" y="719.50"></text></g><g><title>security_inode_getattr (54 samples, 0.01%)</title><rect x="55.9442%" y="709" width="0.0100%" height="15" fill="rgb(210,141,35)" fg:x="301826" fg:w="54"/><text x="56.1942%" y="719.50"></text></g><g><title>__do_sys_newfstat (264 samples, 0.05%)</title><rect x="55.9101%" y="741" width="0.0489%" height="15" fill="rgb(251,14,44)" fg:x="301642" fg:w="264"/><text x="56.1601%" y="751.50"></text></g><g><title>vfs_fstat (214 samples, 0.04%)</title><rect x="55.9193%" y="725" width="0.0397%" height="15" fill="rgb(247,48,18)" fg:x="301692" fg:w="214"/><text x="56.1693%" y="735.50"></text></g><g><title>do_syscall_64 (274 samples, 0.05%)</title><rect x="55.9088%" y="757" width="0.0508%" height="15" fill="rgb(225,0,40)" fg:x="301635" fg:w="274"/><text x="56.1588%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.05%)</title><rect x="55.9080%" y="773" width="0.0538%" height="15" fill="rgb(221,31,33)" fg:x="301631" fg:w="290"/><text x="56.1580%" y="783.50"></text></g><g><title>__GI___fxstat (339 samples, 0.06%)</title><rect x="55.8997%" y="789" width="0.0628%" height="15" fill="rgb(237,42,40)" fg:x="301586" fg:w="339"/><text x="56.1497%" y="799.50"></text></g><g><title>malloc_consolidate (154 samples, 0.03%)</title><rect x="55.9879%" y="741" width="0.0285%" height="15" fill="rgb(233,51,29)" fg:x="302062" fg:w="154"/><text x="56.2379%" y="751.50"></text></g><g><title>_int_malloc (235 samples, 0.04%)</title><rect x="55.9740%" y="757" width="0.0436%" height="15" fill="rgb(226,58,20)" fg:x="301987" fg:w="235"/><text x="56.2240%" y="767.50"></text></g><g><title>__GI___libc_malloc (293 samples, 0.05%)</title><rect x="55.9636%" y="773" width="0.0543%" height="15" fill="rgb(208,98,7)" fg:x="301931" fg:w="293"/><text x="56.2136%" y="783.50"></text></g><g><title>opendir_tail (679 samples, 0.13%)</title><rect x="55.8987%" y="805" width="0.1259%" height="15" fill="rgb(228,143,44)" fg:x="301581" fg:w="679"/><text x="56.1487%" y="815.50"></text></g><g><title>__alloc_dir (335 samples, 0.06%)</title><rect x="55.9625%" y="789" width="0.0621%" height="15" fill="rgb(246,55,38)" fg:x="301925" fg:w="335"/><text x="56.2125%" y="799.50"></text></g><g><title>operator delete@plt (95 samples, 0.02%)</title><rect x="56.0305%" y="805" width="0.0176%" height="15" fill="rgb(247,87,16)" fg:x="302292" fg:w="95"/><text x="56.2805%" y="815.50"></text></g><g><title>__GI___libc_malloc (363 samples, 0.07%)</title><rect x="56.0561%" y="789" width="0.0673%" height="15" fill="rgb(234,129,42)" fg:x="302430" fg:w="363"/><text x="56.3061%" y="799.50"></text></g><g><title>tcache_get (129 samples, 0.02%)</title><rect x="56.0995%" y="773" width="0.0239%" height="15" fill="rgb(220,82,16)" fg:x="302664" fg:w="129"/><text x="56.3495%" y="783.50"></text></g><g><title>operator new (440 samples, 0.08%)</title><rect x="56.0550%" y="805" width="0.0816%" height="15" fill="rgb(211,88,4)" fg:x="302424" fg:w="440"/><text x="56.3050%" y="815.50"></text></g><g><title>malloc@plt (70 samples, 0.01%)</title><rect x="56.1236%" y="789" width="0.0130%" height="15" fill="rgb(248,151,21)" fg:x="302794" fg:w="70"/><text x="56.3736%" y="799.50"></text></g><g><title>operator new@plt (112 samples, 0.02%)</title><rect x="56.1366%" y="805" width="0.0208%" height="15" fill="rgb(238,163,6)" fg:x="302864" fg:w="112"/><text x="56.3866%" y="815.50"></text></g><g><title>operator new[] (93 samples, 0.02%)</title><rect x="56.1573%" y="805" width="0.0172%" height="15" fill="rgb(209,183,11)" fg:x="302976" fg:w="93"/><text x="56.4073%" y="815.50"></text></g><g><title>btrfs_rename2 (68 samples, 0.01%)</title><rect x="56.1781%" y="709" width="0.0126%" height="15" fill="rgb(219,37,20)" fg:x="303088" fg:w="68"/><text x="56.4281%" y="719.50"></text></g><g><title>rename (94 samples, 0.02%)</title><rect x="56.1746%" y="805" width="0.0174%" height="15" fill="rgb(210,158,4)" fg:x="303069" fg:w="94"/><text x="56.4246%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.02%)</title><rect x="56.1747%" y="789" width="0.0172%" height="15" fill="rgb(221,167,53)" fg:x="303070" fg:w="93"/><text x="56.4247%" y="799.50"></text></g><g><title>do_syscall_64 (93 samples, 0.02%)</title><rect x="56.1747%" y="773" width="0.0172%" height="15" fill="rgb(237,151,45)" fg:x="303070" fg:w="93"/><text x="56.4247%" y="783.50"></text></g><g><title>__x64_sys_rename (93 samples, 0.02%)</title><rect x="56.1747%" y="757" width="0.0172%" height="15" fill="rgb(231,39,3)" fg:x="303070" fg:w="93"/><text x="56.4247%" y="767.50"></text></g><g><title>do_renameat2 (93 samples, 0.02%)</title><rect x="56.1747%" y="741" width="0.0172%" height="15" fill="rgb(212,167,28)" fg:x="303070" fg:w="93"/><text x="56.4247%" y="751.50"></text></g><g><title>vfs_rename (77 samples, 0.01%)</title><rect x="56.1777%" y="725" width="0.0143%" height="15" fill="rgb(232,178,8)" fg:x="303086" fg:w="77"/><text x="56.4277%" y="735.50"></text></g><g><title>_int_malloc (205 samples, 0.04%)</title><rect x="56.2352%" y="757" width="0.0380%" height="15" fill="rgb(225,151,20)" fg:x="303396" fg:w="205"/><text x="56.4852%" y="767.50"></text></g><g><title>__GI___libc_malloc (469 samples, 0.09%)</title><rect x="56.1985%" y="773" width="0.0869%" height="15" fill="rgb(238,3,37)" fg:x="303198" fg:w="469"/><text x="56.4485%" y="783.50"></text></g><g><title>operator new (478 samples, 0.09%)</title><rect x="56.1981%" y="789" width="0.0886%" height="15" fill="rgb(251,147,42)" fg:x="303196" fg:w="478"/><text x="56.4481%" y="799.50"></text></g><g><title>std::string::_Rep::_S_create (505 samples, 0.09%)</title><rect x="56.1949%" y="805" width="0.0936%" height="15" fill="rgb(208,173,10)" fg:x="303179" fg:w="505"/><text x="56.4449%" y="815.50"></text></g><g><title>[libunix_jni.so] (100,074 samples, 18.55%)</title><rect x="37.7398%" y="821" width="18.5490%" height="15" fill="rgb(246,225,4)" fg:x="203611" fg:w="100074"/><text x="37.9898%" y="831.50">[libunix_jni.so]</text></g><g><title>InstanceKlass::link_class_impl (91 samples, 0.02%)</title><rect x="77.3718%" y="773" width="0.0169%" height="15" fill="rgb(248,102,6)" fg:x="417431" fg:w="91"/><text x="77.6218%" y="783.50"></text></g><g><title>InterpreterRuntime::_new (154 samples, 0.03%)</title><rect x="77.3638%" y="805" width="0.0285%" height="15" fill="rgb(232,6,21)" fg:x="417388" fg:w="154"/><text x="77.6138%" y="815.50"></text></g><g><title>InstanceKlass::initialize_impl (111 samples, 0.02%)</title><rect x="77.3718%" y="789" width="0.0206%" height="15" fill="rgb(221,179,22)" fg:x="417431" fg:w="111"/><text x="77.6218%" y="799.50"></text></g><g><title>InstanceKlass::allocate_objArray (96 samples, 0.02%)</title><rect x="77.4020%" y="789" width="0.0178%" height="15" fill="rgb(252,50,20)" fg:x="417594" fg:w="96"/><text x="77.6520%" y="799.50"></text></g><g><title>InterpreterRuntime::anewarray (154 samples, 0.03%)</title><rect x="77.3924%" y="805" width="0.0285%" height="15" fill="rgb(222,56,38)" fg:x="417542" fg:w="154"/><text x="77.6424%" y="815.50"></text></g><g><title>TieredThresholdPolicy::call_event (62 samples, 0.01%)</title><rect x="77.4613%" y="741" width="0.0115%" height="15" fill="rgb(206,193,29)" fg:x="417914" fg:w="62"/><text x="77.7113%" y="751.50"></text></g><g><title>CompileBroker::compile_method_base (89 samples, 0.02%)</title><rect x="77.4738%" y="693" width="0.0165%" height="15" fill="rgb(239,192,45)" fg:x="417981" fg:w="89"/><text x="77.7238%" y="703.50"></text></g><g><title>TieredThresholdPolicy::compile (101 samples, 0.02%)</title><rect x="77.4728%" y="741" width="0.0187%" height="15" fill="rgb(254,18,36)" fg:x="417976" fg:w="101"/><text x="77.7228%" y="751.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (100 samples, 0.02%)</title><rect x="77.4730%" y="725" width="0.0185%" height="15" fill="rgb(221,127,11)" fg:x="417977" fg:w="100"/><text x="77.7230%" y="735.50"></text></g><g><title>CompileBroker::compile_method (99 samples, 0.02%)</title><rect x="77.4732%" y="709" width="0.0183%" height="15" fill="rgb(234,146,35)" fg:x="417978" fg:w="99"/><text x="77.7232%" y="719.50"></text></g><g><title>TieredThresholdPolicy::event (263 samples, 0.05%)</title><rect x="77.4430%" y="773" width="0.0487%" height="15" fill="rgb(254,201,37)" fg:x="417815" fg:w="263"/><text x="77.6930%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (213 samples, 0.04%)</title><rect x="77.4523%" y="757" width="0.0395%" height="15" fill="rgb(211,202,23)" fg:x="417865" fg:w="213"/><text x="77.7023%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (320 samples, 0.06%)</title><rect x="77.4332%" y="789" width="0.0593%" height="15" fill="rgb(237,91,2)" fg:x="417762" fg:w="320"/><text x="77.6832%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (323 samples, 0.06%)</title><rect x="77.4328%" y="805" width="0.0599%" height="15" fill="rgb(226,228,36)" fg:x="417760" fg:w="323"/><text x="77.6828%" y="815.50"></text></g><g><title>InterpreterRuntime::ldc (104 samples, 0.02%)</title><rect x="77.4929%" y="805" width="0.0193%" height="15" fill="rgb(213,63,50)" fg:x="418084" fg:w="104"/><text x="77.7429%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="77.5238%" y="501" width="0.0109%" height="15" fill="rgb(235,194,19)" fg:x="418251" fg:w="59"/><text x="77.7738%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="77.5240%" y="485" width="0.0108%" height="15" fill="rgb(207,204,18)" fg:x="418252" fg:w="58"/><text x="77.7740%" y="495.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="77.5240%" y="469" width="0.0108%" height="15" fill="rgb(248,8,7)" fg:x="418252" fg:w="58"/><text x="77.7740%" y="479.50"></text></g><g><title>__pthread_cond_wait (65 samples, 0.01%)</title><rect x="77.5229%" y="693" width="0.0120%" height="15" fill="rgb(223,145,47)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="77.5229%" y="677" width="0.0120%" height="15" fill="rgb(228,84,11)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="687.50"></text></g><g><title>futex_wait_cancelable (65 samples, 0.01%)</title><rect x="77.5229%" y="661" width="0.0120%" height="15" fill="rgb(218,76,45)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="77.5229%" y="645" width="0.0120%" height="15" fill="rgb(223,80,15)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="655.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="77.5229%" y="629" width="0.0120%" height="15" fill="rgb(219,218,33)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="639.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="77.5229%" y="613" width="0.0120%" height="15" fill="rgb(208,51,11)" fg:x="418246" fg:w="65"/><text x="77.7729%" y="623.50"></text></g><g><title>do_futex (64 samples, 0.01%)</title><rect x="77.5231%" y="597" width="0.0119%" height="15" fill="rgb(229,165,39)" fg:x="418247" fg:w="64"/><text x="77.7731%" y="607.50"></text></g><g><title>futex_wait (64 samples, 0.01%)</title><rect x="77.5231%" y="581" width="0.0119%" height="15" fill="rgb(241,100,24)" fg:x="418247" fg:w="64"/><text x="77.7731%" y="591.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.01%)</title><rect x="77.5231%" y="565" width="0.0119%" height="15" fill="rgb(228,14,23)" fg:x="418247" fg:w="64"/><text x="77.7731%" y="575.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="77.5231%" y="549" width="0.0119%" height="15" fill="rgb(247,116,52)" fg:x="418247" fg:w="64"/><text x="77.7731%" y="559.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="77.5231%" y="533" width="0.0119%" height="15" fill="rgb(216,149,33)" fg:x="418247" fg:w="64"/><text x="77.7731%" y="543.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="77.5234%" y="517" width="0.0115%" height="15" fill="rgb(238,142,29)" fg:x="418249" fg:w="62"/><text x="77.7734%" y="527.50"></text></g><g><title>Monitor::IWait (66 samples, 0.01%)</title><rect x="77.5229%" y="725" width="0.0122%" height="15" fill="rgb(224,83,40)" fg:x="418246" fg:w="66"/><text x="77.7729%" y="735.50"></text></g><g><title>os::PlatformEvent::park (66 samples, 0.01%)</title><rect x="77.5229%" y="709" width="0.0122%" height="15" fill="rgb(234,165,11)" fg:x="418246" fg:w="66"/><text x="77.7729%" y="719.50"></text></g><g><title>Monitor::wait (75 samples, 0.01%)</title><rect x="77.5227%" y="741" width="0.0139%" height="15" fill="rgb(215,96,23)" fg:x="418245" fg:w="75"/><text x="77.7727%" y="751.50"></text></g><g><title>InterpreterRuntime::monitorenter (136 samples, 0.03%)</title><rect x="77.5121%" y="805" width="0.0252%" height="15" fill="rgb(233,179,26)" fg:x="418188" fg:w="136"/><text x="77.7621%" y="815.50"></text></g><g><title>ObjectSynchronizer::fast_enter (82 samples, 0.02%)</title><rect x="77.5221%" y="789" width="0.0152%" height="15" fill="rgb(225,129,33)" fg:x="418242" fg:w="82"/><text x="77.7721%" y="799.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (82 samples, 0.02%)</title><rect x="77.5221%" y="773" width="0.0152%" height="15" fill="rgb(237,49,13)" fg:x="418242" fg:w="82"/><text x="77.7721%" y="783.50"></text></g><g><title>VMThread::execute (82 samples, 0.02%)</title><rect x="77.5221%" y="757" width="0.0152%" height="15" fill="rgb(211,3,31)" fg:x="418242" fg:w="82"/><text x="77.7721%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (58 samples, 0.01%)</title><rect x="77.5955%" y="757" width="0.0108%" height="15" fill="rgb(216,152,19)" fg:x="418638" fg:w="58"/><text x="77.8455%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (196 samples, 0.04%)</title><rect x="77.5707%" y="773" width="0.0363%" height="15" fill="rgb(251,121,35)" fg:x="418504" fg:w="196"/><text x="77.8207%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (277 samples, 0.05%)</title><rect x="77.5585%" y="789" width="0.0513%" height="15" fill="rgb(210,217,47)" fg:x="418438" fg:w="277"/><text x="77.8085%" y="799.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (62 samples, 0.01%)</title><rect x="77.6104%" y="741" width="0.0115%" height="15" fill="rgb(244,116,22)" fg:x="418718" fg:w="62"/><text x="77.8604%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (90 samples, 0.02%)</title><rect x="77.6098%" y="789" width="0.0167%" height="15" fill="rgb(228,17,21)" fg:x="418715" fg:w="90"/><text x="77.8598%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (87 samples, 0.02%)</title><rect x="77.6104%" y="773" width="0.0161%" height="15" fill="rgb(240,149,34)" fg:x="418718" fg:w="87"/><text x="77.8604%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (87 samples, 0.02%)</title><rect x="77.6104%" y="757" width="0.0161%" height="15" fill="rgb(208,125,47)" fg:x="418718" fg:w="87"/><text x="77.8604%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (424 samples, 0.08%)</title><rect x="77.5485%" y="805" width="0.0786%" height="15" fill="rgb(249,186,39)" fg:x="418384" fg:w="424"/><text x="77.7985%" y="815.50"></text></g><g><title>JVM_Clone (124 samples, 0.02%)</title><rect x="77.6328%" y="805" width="0.0230%" height="15" fill="rgb(240,220,33)" fg:x="418839" fg:w="124"/><text x="77.8828%" y="815.50"></text></g><g><title>JVM_IHashCode (54 samples, 0.01%)</title><rect x="77.6893%" y="805" width="0.0100%" height="15" fill="rgb(243,110,23)" fg:x="419144" fg:w="54"/><text x="77.9393%" y="815.50"></text></g><g><title>JVM_IsInterrupted (73 samples, 0.01%)</title><rect x="77.7171%" y="805" width="0.0135%" height="15" fill="rgb(219,163,46)" fg:x="419294" fg:w="73"/><text x="77.9671%" y="815.50"></text></g><g><title>finish_task_switch (145 samples, 0.03%)</title><rect x="77.7333%" y="565" width="0.0269%" height="15" fill="rgb(216,126,30)" fg:x="419381" fg:w="145"/><text x="77.9833%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="77.7342%" y="549" width="0.0259%" height="15" fill="rgb(208,139,11)" fg:x="419386" fg:w="140"/><text x="77.9842%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (140 samples, 0.03%)</title><rect x="77.7342%" y="533" width="0.0259%" height="15" fill="rgb(213,118,36)" fg:x="419386" fg:w="140"/><text x="77.9842%" y="543.50"></text></g><g><title>native_write_msr (139 samples, 0.03%)</title><rect x="77.7344%" y="517" width="0.0258%" height="15" fill="rgb(226,43,17)" fg:x="419387" fg:w="139"/><text x="77.9844%" y="527.50"></text></g><g><title>do_syscall_64 (150 samples, 0.03%)</title><rect x="77.7329%" y="677" width="0.0278%" height="15" fill="rgb(254,217,4)" fg:x="419379" fg:w="150"/><text x="77.9829%" y="687.50"></text></g><g><title>__x64_sys_futex (150 samples, 0.03%)</title><rect x="77.7329%" y="661" width="0.0278%" height="15" fill="rgb(210,134,47)" fg:x="419379" fg:w="150"/><text x="77.9829%" y="671.50"></text></g><g><title>do_futex (150 samples, 0.03%)</title><rect x="77.7329%" y="645" width="0.0278%" height="15" fill="rgb(237,24,49)" fg:x="419379" fg:w="150"/><text x="77.9829%" y="655.50"></text></g><g><title>futex_wait (150 samples, 0.03%)</title><rect x="77.7329%" y="629" width="0.0278%" height="15" fill="rgb(251,39,46)" fg:x="419379" fg:w="150"/><text x="77.9829%" y="639.50"></text></g><g><title>futex_wait_queue_me (150 samples, 0.03%)</title><rect x="77.7329%" y="613" width="0.0278%" height="15" fill="rgb(251,220,3)" fg:x="419379" fg:w="150"/><text x="77.9829%" y="623.50"></text></g><g><title>schedule (149 samples, 0.03%)</title><rect x="77.7331%" y="597" width="0.0276%" height="15" fill="rgb(228,105,12)" fg:x="419380" fg:w="149"/><text x="77.9831%" y="607.50"></text></g><g><title>__schedule (149 samples, 0.03%)</title><rect x="77.7331%" y="581" width="0.0276%" height="15" fill="rgb(215,196,1)" fg:x="419380" fg:w="149"/><text x="77.9831%" y="591.50"></text></g><g><title>__pthread_cond_wait (151 samples, 0.03%)</title><rect x="77.7329%" y="741" width="0.0280%" height="15" fill="rgb(214,33,39)" fg:x="419379" fg:w="151"/><text x="77.9829%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (151 samples, 0.03%)</title><rect x="77.7329%" y="725" width="0.0280%" height="15" fill="rgb(220,19,52)" fg:x="419379" fg:w="151"/><text x="77.9829%" y="735.50"></text></g><g><title>futex_wait_cancelable (151 samples, 0.03%)</title><rect x="77.7329%" y="709" width="0.0280%" height="15" fill="rgb(221,78,38)" fg:x="419379" fg:w="151"/><text x="77.9829%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (151 samples, 0.03%)</title><rect x="77.7329%" y="693" width="0.0280%" height="15" fill="rgb(253,30,16)" fg:x="419379" fg:w="151"/><text x="77.9829%" y="703.50"></text></g><g><title>ObjectMonitor::wait (165 samples, 0.03%)</title><rect x="77.7310%" y="773" width="0.0306%" height="15" fill="rgb(242,65,0)" fg:x="419369" fg:w="165"/><text x="77.9810%" y="783.50"></text></g><g><title>os::PlatformEvent::park (155 samples, 0.03%)</title><rect x="77.7329%" y="757" width="0.0287%" height="15" fill="rgb(235,201,12)" fg:x="419379" fg:w="155"/><text x="77.9829%" y="767.50"></text></g><g><title>ObjectSynchronizer::wait (183 samples, 0.03%)</title><rect x="77.7308%" y="789" width="0.0339%" height="15" fill="rgb(233,161,9)" fg:x="419368" fg:w="183"/><text x="77.9808%" y="799.50"></text></g><g><title>JVM_MonitorWait (184 samples, 0.03%)</title><rect x="77.7308%" y="805" width="0.0341%" height="15" fill="rgb(241,207,41)" fg:x="419368" fg:w="184"/><text x="77.9808%" y="815.50"></text></g><g><title>JVM_StartThread (73 samples, 0.01%)</title><rect x="77.7664%" y="805" width="0.0135%" height="15" fill="rgb(212,69,46)" fg:x="419560" fg:w="73"/><text x="78.0164%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (329 samples, 0.06%)</title><rect x="77.7920%" y="677" width="0.0610%" height="15" fill="rgb(239,69,45)" fg:x="419698" fg:w="329"/><text x="78.0420%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (306 samples, 0.06%)</title><rect x="77.7963%" y="661" width="0.0567%" height="15" fill="rgb(242,117,48)" fg:x="419721" fg:w="306"/><text x="78.0463%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (340 samples, 0.06%)</title><rect x="77.7909%" y="693" width="0.0630%" height="15" fill="rgb(228,41,36)" fg:x="419692" fg:w="340"/><text x="78.0409%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (72 samples, 0.01%)</title><rect x="77.8558%" y="693" width="0.0133%" height="15" fill="rgb(212,3,32)" fg:x="420042" fg:w="72"/><text x="78.1058%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (72 samples, 0.01%)</title><rect x="77.8558%" y="677" width="0.0133%" height="15" fill="rgb(233,41,49)" fg:x="420042" fg:w="72"/><text x="78.1058%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (431 samples, 0.08%)</title><rect x="77.7903%" y="725" width="0.0799%" height="15" fill="rgb(252,170,49)" fg:x="419689" fg:w="431"/><text x="78.0403%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (430 samples, 0.08%)</title><rect x="77.7905%" y="709" width="0.0797%" height="15" fill="rgb(229,53,26)" fg:x="419690" fg:w="430"/><text x="78.0405%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (66 samples, 0.01%)</title><rect x="77.8702%" y="709" width="0.0122%" height="15" fill="rgb(217,157,12)" fg:x="420120" fg:w="66"/><text x="78.1202%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (71 samples, 0.01%)</title><rect x="77.8702%" y="725" width="0.0132%" height="15" fill="rgb(227,17,9)" fg:x="420120" fg:w="71"/><text x="78.1202%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (535 samples, 0.10%)</title><rect x="77.7902%" y="741" width="0.0992%" height="15" fill="rgb(218,84,12)" fg:x="419688" fg:w="535"/><text x="78.0402%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (562 samples, 0.10%)</title><rect x="77.7902%" y="757" width="0.1042%" height="15" fill="rgb(212,79,24)" fg:x="419688" fg:w="562"/><text x="78.0402%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (566 samples, 0.10%)</title><rect x="77.7896%" y="789" width="0.1049%" height="15" fill="rgb(217,222,37)" fg:x="419685" fg:w="566"/><text x="78.0396%" y="799.50"></text></g><g><title>jvm_define_class_common (566 samples, 0.10%)</title><rect x="77.7896%" y="773" width="0.1049%" height="15" fill="rgb(246,208,8)" fg:x="419685" fg:w="566"/><text x="78.0396%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (585 samples, 0.11%)</title><rect x="77.7892%" y="805" width="0.1084%" height="15" fill="rgb(244,133,10)" fg:x="419683" fg:w="585"/><text x="78.0392%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.02%)</title><rect x="77.9368%" y="597" width="0.0158%" height="15" fill="rgb(209,219,41)" fg:x="420479" fg:w="85"/><text x="78.1868%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (85 samples, 0.02%)</title><rect x="77.9368%" y="581" width="0.0158%" height="15" fill="rgb(253,175,45)" fg:x="420479" fg:w="85"/><text x="78.1868%" y="591.50"></text></g><g><title>native_write_msr (85 samples, 0.02%)</title><rect x="77.9368%" y="565" width="0.0158%" height="15" fill="rgb(235,100,37)" fg:x="420479" fg:w="85"/><text x="78.1868%" y="575.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="77.9366%" y="613" width="0.0167%" height="15" fill="rgb(225,87,19)" fg:x="420478" fg:w="90"/><text x="78.1866%" y="623.50"></text></g><g><title>wait_for_completion_killable (96 samples, 0.02%)</title><rect x="77.9358%" y="693" width="0.0178%" height="15" fill="rgb(217,152,17)" fg:x="420474" fg:w="96"/><text x="78.1858%" y="703.50"></text></g><g><title>__wait_for_common (95 samples, 0.02%)</title><rect x="77.9360%" y="677" width="0.0176%" height="15" fill="rgb(235,72,13)" fg:x="420475" fg:w="95"/><text x="78.1860%" y="687.50"></text></g><g><title>schedule_timeout (95 samples, 0.02%)</title><rect x="77.9360%" y="661" width="0.0176%" height="15" fill="rgb(233,140,18)" fg:x="420475" fg:w="95"/><text x="78.1860%" y="671.50"></text></g><g><title>schedule (95 samples, 0.02%)</title><rect x="77.9360%" y="645" width="0.0176%" height="15" fill="rgb(207,212,28)" fg:x="420475" fg:w="95"/><text x="78.1860%" y="655.50"></text></g><g><title>__schedule (94 samples, 0.02%)</title><rect x="77.9362%" y="629" width="0.0174%" height="15" fill="rgb(220,130,25)" fg:x="420476" fg:w="94"/><text x="78.1862%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (140 samples, 0.03%)</title><rect x="77.9282%" y="757" width="0.0259%" height="15" fill="rgb(205,55,34)" fg:x="420433" fg:w="140"/><text x="78.1782%" y="767.50"></text></g><g><title>do_syscall_64 (140 samples, 0.03%)</title><rect x="77.9282%" y="741" width="0.0259%" height="15" fill="rgb(237,54,35)" fg:x="420433" fg:w="140"/><text x="78.1782%" y="751.50"></text></g><g><title>__x64_sys_vfork (140 samples, 0.03%)</title><rect x="77.9282%" y="725" width="0.0259%" height="15" fill="rgb(208,67,23)" fg:x="420433" fg:w="140"/><text x="78.1782%" y="735.50"></text></g><g><title>kernel_clone (140 samples, 0.03%)</title><rect x="77.9282%" y="709" width="0.0259%" height="15" fill="rgb(206,207,50)" fg:x="420433" fg:w="140"/><text x="78.1782%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (481 samples, 0.09%)</title><rect x="77.9588%" y="709" width="0.0892%" height="15" fill="rgb(213,211,42)" fg:x="420598" fg:w="481"/><text x="78.2088%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (474 samples, 0.09%)</title><rect x="77.9601%" y="693" width="0.0879%" height="15" fill="rgb(252,197,50)" fg:x="420605" fg:w="474"/><text x="78.2101%" y="703.50"></text></g><g><title>native_write_msr (473 samples, 0.09%)</title><rect x="77.9603%" y="677" width="0.0877%" height="15" fill="rgb(251,211,41)" fg:x="420606" fg:w="473"/><text x="78.2103%" y="687.50"></text></g><g><title>schedule_tail (513 samples, 0.10%)</title><rect x="77.9559%" y="741" width="0.0951%" height="15" fill="rgb(229,211,5)" fg:x="420582" fg:w="513"/><text x="78.2059%" y="751.50"></text></g><g><title>finish_task_switch (511 samples, 0.09%)</title><rect x="77.9562%" y="725" width="0.0947%" height="15" fill="rgb(239,36,31)" fg:x="420584" fg:w="511"/><text x="78.2062%" y="735.50"></text></g><g><title>ret_from_fork (531 samples, 0.10%)</title><rect x="77.9542%" y="757" width="0.0984%" height="15" fill="rgb(248,67,31)" fg:x="420573" fg:w="531"/><text x="78.2042%" y="767.50"></text></g><g><title>__libc_vfork (675 samples, 0.13%)</title><rect x="77.9277%" y="773" width="0.1251%" height="15" fill="rgb(249,55,44)" fg:x="420430" fg:w="675"/><text x="78.1777%" y="783.50"></text></g><g><title>bprm_execve (91 samples, 0.02%)</title><rect x="78.0571%" y="661" width="0.0169%" height="15" fill="rgb(216,82,12)" fg:x="421128" fg:w="91"/><text x="78.3071%" y="671.50"></text></g><g><title>do_execveat_common (146 samples, 0.03%)</title><rect x="78.0534%" y="677" width="0.0271%" height="15" fill="rgb(242,174,1)" fg:x="421108" fg:w="146"/><text x="78.3034%" y="687.50"></text></g><g><title>JDK_execvpe (149 samples, 0.03%)</title><rect x="78.0530%" y="757" width="0.0276%" height="15" fill="rgb(208,120,29)" fg:x="421106" fg:w="149"/><text x="78.3030%" y="767.50"></text></g><g><title>__GI_execve (148 samples, 0.03%)</title><rect x="78.0532%" y="741" width="0.0274%" height="15" fill="rgb(221,105,43)" fg:x="421107" fg:w="148"/><text x="78.3032%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (148 samples, 0.03%)</title><rect x="78.0532%" y="725" width="0.0274%" height="15" fill="rgb(234,124,22)" fg:x="421107" fg:w="148"/><text x="78.3032%" y="735.50"></text></g><g><title>do_syscall_64 (148 samples, 0.03%)</title><rect x="78.0532%" y="709" width="0.0274%" height="15" fill="rgb(212,23,30)" fg:x="421107" fg:w="148"/><text x="78.3032%" y="719.50"></text></g><g><title>__x64_sys_execve (148 samples, 0.03%)</title><rect x="78.0532%" y="693" width="0.0274%" height="15" fill="rgb(219,122,53)" fg:x="421107" fg:w="148"/><text x="78.3032%" y="703.50"></text></g><g><title>closeDescriptors (84 samples, 0.02%)</title><rect x="78.0834%" y="757" width="0.0156%" height="15" fill="rgb(248,84,24)" fg:x="421270" fg:w="84"/><text x="78.3334%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (999 samples, 0.19%)</title><rect x="77.9179%" y="805" width="0.1852%" height="15" fill="rgb(245,115,18)" fg:x="420377" fg:w="999"/><text x="78.1679%" y="815.50"></text></g><g><title>vforkChild (952 samples, 0.18%)</title><rect x="77.9266%" y="789" width="0.1765%" height="15" fill="rgb(227,176,51)" fg:x="420424" fg:w="952"/><text x="78.1766%" y="799.50"></text></g><g><title>childProcess (271 samples, 0.05%)</title><rect x="78.0528%" y="773" width="0.0502%" height="15" fill="rgb(229,63,42)" fg:x="421105" fg:w="271"/><text x="78.3028%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (80 samples, 0.01%)</title><rect x="78.1099%" y="789" width="0.0148%" height="15" fill="rgb(247,202,24)" fg:x="421413" fg:w="80"/><text x="78.3599%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (79 samples, 0.01%)</title><rect x="78.1101%" y="773" width="0.0146%" height="15" fill="rgb(244,173,20)" fg:x="421414" fg:w="79"/><text x="78.3601%" y="783.50"></text></g><g><title>MemAllocator::allocate (79 samples, 0.01%)</title><rect x="78.1101%" y="757" width="0.0146%" height="15" fill="rgb(242,81,47)" fg:x="421414" fg:w="79"/><text x="78.3601%" y="767.50"></text></g><g><title>ObjArrayAllocator::initialize (67 samples, 0.01%)</title><rect x="78.1123%" y="741" width="0.0124%" height="15" fill="rgb(231,185,54)" fg:x="421426" fg:w="67"/><text x="78.3623%" y="751.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="78.1140%" y="725" width="0.0108%" height="15" fill="rgb(243,55,32)" fg:x="421435" fg:w="58"/><text x="78.3640%" y="735.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="78.1140%" y="709" width="0.0108%" height="15" fill="rgb(208,167,19)" fg:x="421435" fg:w="58"/><text x="78.3640%" y="719.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="78.1140%" y="693" width="0.0108%" height="15" fill="rgb(231,72,35)" fg:x="421435" fg:w="58"/><text x="78.3640%" y="703.50"></text></g><g><title>handle_mm_fault (58 samples, 0.01%)</title><rect x="78.1140%" y="677" width="0.0108%" height="15" fill="rgb(250,173,51)" fg:x="421435" fg:w="58"/><text x="78.3640%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (58 samples, 0.01%)</title><rect x="78.1140%" y="661" width="0.0108%" height="15" fill="rgb(209,5,22)" fg:x="421435" fg:w="58"/><text x="78.3640%" y="671.50"></text></g><g><title>OptoRuntime::new_array_C (207 samples, 0.04%)</title><rect x="78.1088%" y="805" width="0.0384%" height="15" fill="rgb(250,174,19)" fg:x="421407" fg:w="207"/><text x="78.3588%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (121 samples, 0.02%)</title><rect x="78.1247%" y="789" width="0.0224%" height="15" fill="rgb(217,3,49)" fg:x="421493" fg:w="121"/><text x="78.3747%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (120 samples, 0.02%)</title><rect x="78.1249%" y="773" width="0.0222%" height="15" fill="rgb(218,225,5)" fg:x="421494" fg:w="120"/><text x="78.3749%" y="783.50"></text></g><g><title>MemAllocator::allocate (119 samples, 0.02%)</title><rect x="78.1251%" y="757" width="0.0221%" height="15" fill="rgb(236,89,11)" fg:x="421495" fg:w="119"/><text x="78.3751%" y="767.50"></text></g><g><title>ObjArrayAllocator::initialize (73 samples, 0.01%)</title><rect x="78.1336%" y="741" width="0.0135%" height="15" fill="rgb(206,33,28)" fg:x="421541" fg:w="73"/><text x="78.3836%" y="751.50"></text></g><g><title>asm_exc_page_fault (69 samples, 0.01%)</title><rect x="78.1344%" y="725" width="0.0128%" height="15" fill="rgb(241,56,42)" fg:x="421545" fg:w="69"/><text x="78.3844%" y="735.50"></text></g><g><title>exc_page_fault (69 samples, 0.01%)</title><rect x="78.1344%" y="709" width="0.0128%" height="15" fill="rgb(222,44,11)" fg:x="421545" fg:w="69"/><text x="78.3844%" y="719.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.01%)</title><rect x="78.1344%" y="693" width="0.0128%" height="15" fill="rgb(234,111,20)" fg:x="421545" fg:w="69"/><text x="78.3844%" y="703.50"></text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="78.1344%" y="677" width="0.0128%" height="15" fill="rgb(237,77,6)" fg:x="421545" fg:w="69"/><text x="78.3844%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (68 samples, 0.01%)</title><rect x="78.1345%" y="661" width="0.0126%" height="15" fill="rgb(235,111,23)" fg:x="421546" fg:w="68"/><text x="78.3845%" y="671.50"></text></g><g><title>MemAllocator::allocate_inside_tlab_slow (60 samples, 0.01%)</title><rect x="78.1590%" y="741" width="0.0111%" height="15" fill="rgb(251,135,29)" fg:x="421678" fg:w="60"/><text x="78.4090%" y="751.50"></text></g><g><title>alloc_pages_vma (64 samples, 0.01%)</title><rect x="78.1705%" y="645" width="0.0119%" height="15" fill="rgb(217,57,1)" fg:x="421740" fg:w="64"/><text x="78.4205%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (64 samples, 0.01%)</title><rect x="78.1705%" y="629" width="0.0119%" height="15" fill="rgb(249,119,31)" fg:x="421740" fg:w="64"/><text x="78.4205%" y="639.50"></text></g><g><title>get_page_from_freelist (64 samples, 0.01%)</title><rect x="78.1705%" y="613" width="0.0119%" height="15" fill="rgb(233,164,33)" fg:x="421740" fg:w="64"/><text x="78.4205%" y="623.50"></text></g><g><title>prep_new_page (58 samples, 0.01%)</title><rect x="78.1716%" y="597" width="0.0108%" height="15" fill="rgb(250,217,43)" fg:x="421746" fg:w="58"/><text x="78.4216%" y="607.50"></text></g><g><title>kernel_init_free_pages (58 samples, 0.01%)</title><rect x="78.1716%" y="581" width="0.0108%" height="15" fill="rgb(232,154,50)" fg:x="421746" fg:w="58"/><text x="78.4216%" y="591.50"></text></g><g><title>clear_page_erms (57 samples, 0.01%)</title><rect x="78.1718%" y="565" width="0.0106%" height="15" fill="rgb(227,190,8)" fg:x="421747" fg:w="57"/><text x="78.4218%" y="575.50"></text></g><g><title>handle_mm_fault (114 samples, 0.02%)</title><rect x="78.1703%" y="677" width="0.0211%" height="15" fill="rgb(209,217,32)" fg:x="421739" fg:w="114"/><text x="78.4203%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (114 samples, 0.02%)</title><rect x="78.1703%" y="661" width="0.0211%" height="15" fill="rgb(243,203,50)" fg:x="421739" fg:w="114"/><text x="78.4203%" y="671.50"></text></g><g><title>ObjAllocator::initialize (122 samples, 0.02%)</title><rect x="78.1701%" y="741" width="0.0226%" height="15" fill="rgb(232,152,27)" fg:x="421738" fg:w="122"/><text x="78.4201%" y="751.50"></text></g><g><title>asm_exc_page_fault (122 samples, 0.02%)</title><rect x="78.1701%" y="725" width="0.0226%" height="15" fill="rgb(240,34,29)" fg:x="421738" fg:w="122"/><text x="78.4201%" y="735.50"></text></g><g><title>exc_page_fault (122 samples, 0.02%)</title><rect x="78.1701%" y="709" width="0.0226%" height="15" fill="rgb(215,185,52)" fg:x="421738" fg:w="122"/><text x="78.4201%" y="719.50"></text></g><g><title>do_user_addr_fault (122 samples, 0.02%)</title><rect x="78.1701%" y="693" width="0.0226%" height="15" fill="rgb(240,89,49)" fg:x="421738" fg:w="122"/><text x="78.4201%" y="703.50"></text></g><g><title>InstanceKlass::allocate_instance (190 samples, 0.04%)</title><rect x="78.1577%" y="789" width="0.0352%" height="15" fill="rgb(225,12,52)" fg:x="421671" fg:w="190"/><text x="78.4077%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (187 samples, 0.03%)</title><rect x="78.1583%" y="773" width="0.0347%" height="15" fill="rgb(239,128,45)" fg:x="421674" fg:w="187"/><text x="78.4083%" y="783.50"></text></g><g><title>MemAllocator::allocate (187 samples, 0.03%)</title><rect x="78.1583%" y="757" width="0.0347%" height="15" fill="rgb(211,78,47)" fg:x="421674" fg:w="187"/><text x="78.4083%" y="767.50"></text></g><g><title>OptoRuntime::new_instance_C (202 samples, 0.04%)</title><rect x="78.1560%" y="805" width="0.0374%" height="15" fill="rgb(232,31,21)" fg:x="421662" fg:w="202"/><text x="78.4060%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (119 samples, 0.02%)</title><rect x="78.2013%" y="789" width="0.0221%" height="15" fill="rgb(222,168,14)" fg:x="421906" fg:w="119"/><text x="78.4513%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (84 samples, 0.02%)</title><rect x="78.2078%" y="773" width="0.0156%" height="15" fill="rgb(209,128,24)" fg:x="421941" fg:w="84"/><text x="78.4578%" y="783.50"></text></g><g><title>Runtime1::counter_overflow (199 samples, 0.04%)</title><rect x="78.1935%" y="805" width="0.0369%" height="15" fill="rgb(249,35,13)" fg:x="421864" fg:w="199"/><text x="78.4435%" y="815.50"></text></g><g><title>ObjectMonitor::enter (69 samples, 0.01%)</title><rect x="78.2354%" y="789" width="0.0128%" height="15" fill="rgb(218,7,2)" fg:x="422090" fg:w="69"/><text x="78.4854%" y="799.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="78.2519%" y="629" width="0.0100%" height="15" fill="rgb(238,107,27)" fg:x="422179" fg:w="54"/><text x="78.5019%" y="639.50"></text></g><g><title>__x64_sys_futex (54 samples, 0.01%)</title><rect x="78.2519%" y="613" width="0.0100%" height="15" fill="rgb(217,88,38)" fg:x="422179" fg:w="54"/><text x="78.5019%" y="623.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.01%)</title><rect x="78.2515%" y="693" width="0.0108%" height="15" fill="rgb(230,207,0)" fg:x="422177" fg:w="58"/><text x="78.5015%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.01%)</title><rect x="78.2515%" y="677" width="0.0108%" height="15" fill="rgb(249,64,54)" fg:x="422177" fg:w="58"/><text x="78.5015%" y="687.50"></text></g><g><title>futex_wait_cancelable (56 samples, 0.01%)</title><rect x="78.2519%" y="661" width="0.0104%" height="15" fill="rgb(231,7,11)" fg:x="422179" fg:w="56"/><text x="78.5019%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="78.2519%" y="645" width="0.0104%" height="15" fill="rgb(205,149,21)" fg:x="422179" fg:w="56"/><text x="78.5019%" y="655.50"></text></g><g><title>Monitor::IWait (62 samples, 0.01%)</title><rect x="78.2511%" y="725" width="0.0115%" height="15" fill="rgb(215,126,34)" fg:x="422175" fg:w="62"/><text x="78.5011%" y="735.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.01%)</title><rect x="78.2515%" y="709" width="0.0111%" height="15" fill="rgb(241,132,45)" fg:x="422177" fg:w="60"/><text x="78.5015%" y="719.50"></text></g><g><title>Monitor::wait (86 samples, 0.02%)</title><rect x="78.2509%" y="741" width="0.0159%" height="15" fill="rgb(252,69,32)" fg:x="422174" fg:w="86"/><text x="78.5009%" y="751.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (95 samples, 0.02%)</title><rect x="78.2498%" y="773" width="0.0176%" height="15" fill="rgb(232,204,19)" fg:x="422168" fg:w="95"/><text x="78.4998%" y="783.50"></text></g><g><title>VMThread::execute (89 samples, 0.02%)</title><rect x="78.2509%" y="757" width="0.0165%" height="15" fill="rgb(249,15,47)" fg:x="422174" fg:w="89"/><text x="78.5009%" y="767.50"></text></g><g><title>Runtime1::monitorenter (203 samples, 0.04%)</title><rect x="78.2313%" y="805" width="0.0376%" height="15" fill="rgb(209,227,23)" fg:x="422068" fg:w="203"/><text x="78.4813%" y="815.50"></text></g><g><title>ObjectSynchronizer::fast_enter (112 samples, 0.02%)</title><rect x="78.2482%" y="789" width="0.0208%" height="15" fill="rgb(248,92,24)" fg:x="422159" fg:w="112"/><text x="78.4982%" y="799.50"></text></g><g><title>alloc_pages_vma (60 samples, 0.01%)</title><rect x="78.2812%" y="645" width="0.0111%" height="15" fill="rgb(247,59,2)" fg:x="422337" fg:w="60"/><text x="78.5312%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (60 samples, 0.01%)</title><rect x="78.2812%" y="629" width="0.0111%" height="15" fill="rgb(221,30,5)" fg:x="422337" fg:w="60"/><text x="78.5312%" y="639.50"></text></g><g><title>get_page_from_freelist (60 samples, 0.01%)</title><rect x="78.2812%" y="613" width="0.0111%" height="15" fill="rgb(208,108,53)" fg:x="422337" fg:w="60"/><text x="78.5312%" y="623.50"></text></g><g><title>prep_new_page (57 samples, 0.01%)</title><rect x="78.2817%" y="597" width="0.0106%" height="15" fill="rgb(211,183,26)" fg:x="422340" fg:w="57"/><text x="78.5317%" y="607.50"></text></g><g><title>kernel_init_free_pages (57 samples, 0.01%)</title><rect x="78.2817%" y="581" width="0.0106%" height="15" fill="rgb(232,132,4)" fg:x="422340" fg:w="57"/><text x="78.5317%" y="591.50"></text></g><g><title>clear_page_erms (55 samples, 0.01%)</title><rect x="78.2821%" y="565" width="0.0102%" height="15" fill="rgb(253,128,37)" fg:x="422342" fg:w="55"/><text x="78.5321%" y="575.50"></text></g><g><title>handle_mm_fault (99 samples, 0.02%)</title><rect x="78.2806%" y="677" width="0.0183%" height="15" fill="rgb(221,58,24)" fg:x="422334" fg:w="99"/><text x="78.5306%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (99 samples, 0.02%)</title><rect x="78.2806%" y="661" width="0.0183%" height="15" fill="rgb(230,54,45)" fg:x="422334" fg:w="99"/><text x="78.5306%" y="671.50"></text></g><g><title>InstanceKlass::allocate_instance (126 samples, 0.02%)</title><rect x="78.2769%" y="789" width="0.0234%" height="15" fill="rgb(254,21,18)" fg:x="422314" fg:w="126"/><text x="78.5269%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (124 samples, 0.02%)</title><rect x="78.2773%" y="773" width="0.0230%" height="15" fill="rgb(221,108,0)" fg:x="422316" fg:w="124"/><text x="78.5273%" y="783.50"></text></g><g><title>MemAllocator::allocate (124 samples, 0.02%)</title><rect x="78.2773%" y="757" width="0.0230%" height="15" fill="rgb(206,95,1)" fg:x="422316" fg:w="124"/><text x="78.5273%" y="767.50"></text></g><g><title>ObjAllocator::initialize (106 samples, 0.02%)</title><rect x="78.2806%" y="741" width="0.0196%" height="15" fill="rgb(237,52,5)" fg:x="422334" fg:w="106"/><text x="78.5306%" y="751.50"></text></g><g><title>asm_exc_page_fault (106 samples, 0.02%)</title><rect x="78.2806%" y="725" width="0.0196%" height="15" fill="rgb(218,150,34)" fg:x="422334" fg:w="106"/><text x="78.5306%" y="735.50"></text></g><g><title>exc_page_fault (106 samples, 0.02%)</title><rect x="78.2806%" y="709" width="0.0196%" height="15" fill="rgb(235,194,28)" fg:x="422334" fg:w="106"/><text x="78.5306%" y="719.50"></text></g><g><title>do_user_addr_fault (106 samples, 0.02%)</title><rect x="78.2806%" y="693" width="0.0196%" height="15" fill="rgb(245,92,18)" fg:x="422334" fg:w="106"/><text x="78.5306%" y="703.50"></text></g><g><title>Runtime1::new_instance (134 samples, 0.02%)</title><rect x="78.2761%" y="805" width="0.0248%" height="15" fill="rgb(253,203,53)" fg:x="422310" fg:w="134"/><text x="78.5261%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="78.3204%" y="565" width="0.0130%" height="15" fill="rgb(249,185,47)" fg:x="422549" fg:w="70"/><text x="78.5704%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.01%)</title><rect x="78.3204%" y="549" width="0.0130%" height="15" fill="rgb(252,194,52)" fg:x="422549" fg:w="70"/><text x="78.5704%" y="559.50"></text></g><g><title>native_write_msr (70 samples, 0.01%)</title><rect x="78.3204%" y="533" width="0.0130%" height="15" fill="rgb(210,53,36)" fg:x="422549" fg:w="70"/><text x="78.5704%" y="543.50"></text></g><g><title>finish_task_switch (73 samples, 0.01%)</title><rect x="78.3203%" y="581" width="0.0135%" height="15" fill="rgb(237,37,25)" fg:x="422548" fg:w="73"/><text x="78.5703%" y="591.50"></text></g><g><title>futex_wait_queue_me (84 samples, 0.02%)</title><rect x="78.3193%" y="629" width="0.0156%" height="15" fill="rgb(242,116,27)" fg:x="422543" fg:w="84"/><text x="78.5693%" y="639.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="78.3195%" y="613" width="0.0154%" height="15" fill="rgb(213,185,26)" fg:x="422544" fg:w="83"/><text x="78.5695%" y="623.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="78.3195%" y="597" width="0.0154%" height="15" fill="rgb(225,204,8)" fg:x="422544" fg:w="83"/><text x="78.5695%" y="607.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="78.3192%" y="693" width="0.0159%" height="15" fill="rgb(254,111,37)" fg:x="422542" fg:w="86"/><text x="78.5692%" y="703.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="78.3192%" y="677" width="0.0159%" height="15" fill="rgb(242,35,9)" fg:x="422542" fg:w="86"/><text x="78.5692%" y="687.50"></text></g><g><title>do_futex (86 samples, 0.02%)</title><rect x="78.3192%" y="661" width="0.0159%" height="15" fill="rgb(232,138,49)" fg:x="422542" fg:w="86"/><text x="78.5692%" y="671.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="78.3192%" y="645" width="0.0159%" height="15" fill="rgb(247,56,4)" fg:x="422542" fg:w="86"/><text x="78.5692%" y="655.50"></text></g><g><title>__pthread_cond_wait (90 samples, 0.02%)</title><rect x="78.3186%" y="757" width="0.0167%" height="15" fill="rgb(226,179,17)" fg:x="422539" fg:w="90"/><text x="78.5686%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (90 samples, 0.02%)</title><rect x="78.3186%" y="741" width="0.0167%" height="15" fill="rgb(216,163,45)" fg:x="422539" fg:w="90"/><text x="78.5686%" y="751.50"></text></g><g><title>futex_wait_cancelable (89 samples, 0.02%)</title><rect x="78.3188%" y="725" width="0.0165%" height="15" fill="rgb(211,157,3)" fg:x="422540" fg:w="89"/><text x="78.5688%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="78.3192%" y="709" width="0.0161%" height="15" fill="rgb(234,44,20)" fg:x="422542" fg:w="87"/><text x="78.5692%" y="719.50"></text></g><g><title>ObjectMonitor::enter (142 samples, 0.03%)</title><rect x="78.3097%" y="789" width="0.0263%" height="15" fill="rgb(254,138,23)" fg:x="422491" fg:w="142"/><text x="78.5597%" y="799.50"></text></g><g><title>os::PlatformEvent::park (137 samples, 0.03%)</title><rect x="78.3106%" y="773" width="0.0254%" height="15" fill="rgb(206,119,39)" fg:x="422496" fg:w="137"/><text x="78.5606%" y="783.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (146 samples, 0.03%)</title><rect x="78.3097%" y="805" width="0.0271%" height="15" fill="rgb(231,105,52)" fg:x="422491" fg:w="146"/><text x="78.5597%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (55 samples, 0.01%)</title><rect x="78.3607%" y="757" width="0.0102%" height="15" fill="rgb(250,20,5)" fg:x="422766" fg:w="55"/><text x="78.6107%" y="767.50"></text></g><g><title>ClassFileParser::parse_stream (54 samples, 0.01%)</title><rect x="78.3609%" y="741" width="0.0100%" height="15" fill="rgb(215,198,30)" fg:x="422767" fg:w="54"/><text x="78.6109%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (79 samples, 0.01%)</title><rect x="78.3607%" y="773" width="0.0146%" height="15" fill="rgb(246,142,8)" fg:x="422766" fg:w="79"/><text x="78.6107%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (113 samples, 0.02%)</title><rect x="78.3557%" y="805" width="0.0209%" height="15" fill="rgb(243,26,38)" fg:x="422739" fg:w="113"/><text x="78.6057%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (108 samples, 0.02%)</title><rect x="78.3566%" y="789" width="0.0200%" height="15" fill="rgb(205,133,28)" fg:x="422744" fg:w="108"/><text x="78.6066%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (374 samples, 0.07%)</title><rect x="78.4068%" y="581" width="0.0693%" height="15" fill="rgb(212,34,0)" fg:x="423015" fg:w="374"/><text x="78.6568%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (370 samples, 0.07%)</title><rect x="78.4076%" y="565" width="0.0686%" height="15" fill="rgb(251,226,22)" fg:x="423019" fg:w="370"/><text x="78.6576%" y="575.50"></text></g><g><title>native_write_msr (366 samples, 0.07%)</title><rect x="78.4083%" y="549" width="0.0678%" height="15" fill="rgb(252,119,9)" fg:x="423023" fg:w="366"/><text x="78.6583%" y="559.50"></text></g><g><title>finish_task_switch (390 samples, 0.07%)</title><rect x="78.4063%" y="597" width="0.0723%" height="15" fill="rgb(213,150,50)" fg:x="423012" fg:w="390"/><text x="78.6563%" y="607.50"></text></g><g><title>futex_wait_queue_me (463 samples, 0.09%)</title><rect x="78.3990%" y="645" width="0.0858%" height="15" fill="rgb(212,24,39)" fg:x="422973" fg:w="463"/><text x="78.6490%" y="655.50"></text></g><g><title>schedule (457 samples, 0.08%)</title><rect x="78.4001%" y="629" width="0.0847%" height="15" fill="rgb(213,46,39)" fg:x="422979" fg:w="457"/><text x="78.6501%" y="639.50"></text></g><g><title>__schedule (455 samples, 0.08%)</title><rect x="78.4005%" y="613" width="0.0843%" height="15" fill="rgb(239,106,12)" fg:x="422981" fg:w="455"/><text x="78.6505%" y="623.50"></text></g><g><title>__x64_sys_futex (472 samples, 0.09%)</title><rect x="78.3979%" y="693" width="0.0875%" height="15" fill="rgb(249,229,21)" fg:x="422967" fg:w="472"/><text x="78.6479%" y="703.50"></text></g><g><title>do_futex (469 samples, 0.09%)</title><rect x="78.3985%" y="677" width="0.0869%" height="15" fill="rgb(212,158,3)" fg:x="422970" fg:w="469"/><text x="78.6485%" y="687.50"></text></g><g><title>futex_wait (468 samples, 0.09%)</title><rect x="78.3987%" y="661" width="0.0867%" height="15" fill="rgb(253,26,48)" fg:x="422971" fg:w="468"/><text x="78.6487%" y="671.50"></text></g><g><title>do_syscall_64 (476 samples, 0.09%)</title><rect x="78.3976%" y="709" width="0.0882%" height="15" fill="rgb(238,178,20)" fg:x="422965" fg:w="476"/><text x="78.6476%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (489 samples, 0.09%)</title><rect x="78.3976%" y="725" width="0.0906%" height="15" fill="rgb(208,86,15)" fg:x="422965" fg:w="489"/><text x="78.6476%" y="735.50"></text></g><g><title>__pthread_cond_wait (509 samples, 0.09%)</title><rect x="78.3946%" y="773" width="0.0943%" height="15" fill="rgb(239,42,53)" fg:x="422949" fg:w="509"/><text x="78.6446%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (509 samples, 0.09%)</title><rect x="78.3946%" y="757" width="0.0943%" height="15" fill="rgb(245,226,8)" fg:x="422949" fg:w="509"/><text x="78.6446%" y="767.50"></text></g><g><title>futex_wait_cancelable (503 samples, 0.09%)</title><rect x="78.3957%" y="741" width="0.0932%" height="15" fill="rgb(216,176,32)" fg:x="422955" fg:w="503"/><text x="78.6457%" y="751.50"></text></g><g><title>Unsafe_Park (582 samples, 0.11%)</title><rect x="78.3851%" y="805" width="0.1079%" height="15" fill="rgb(231,186,21)" fg:x="422898" fg:w="582"/><text x="78.6351%" y="815.50"></text></g><g><title>Parker::park (572 samples, 0.11%)</title><rect x="78.3870%" y="789" width="0.1060%" height="15" fill="rgb(205,95,49)" fg:x="422908" fg:w="572"/><text x="78.6370%" y="799.50"></text></g><g><title>enqueue_task_fair (74 samples, 0.01%)</title><rect x="78.5395%" y="629" width="0.0137%" height="15" fill="rgb(217,145,8)" fg:x="423731" fg:w="74"/><text x="78.7895%" y="639.50"></text></g><g><title>ttwu_do_activate (144 samples, 0.03%)</title><rect x="78.5384%" y="645" width="0.0267%" height="15" fill="rgb(239,144,48)" fg:x="423725" fg:w="144"/><text x="78.7884%" y="655.50"></text></g><g><title>psi_task_change (64 samples, 0.01%)</title><rect x="78.5533%" y="629" width="0.0119%" height="15" fill="rgb(214,189,23)" fg:x="423805" fg:w="64"/><text x="78.8033%" y="639.50"></text></g><g><title>__x64_sys_futex (313 samples, 0.06%)</title><rect x="78.5106%" y="725" width="0.0580%" height="15" fill="rgb(229,157,17)" fg:x="423575" fg:w="313"/><text x="78.7606%" y="735.50"></text></g><g><title>do_futex (308 samples, 0.06%)</title><rect x="78.5115%" y="709" width="0.0571%" height="15" fill="rgb(230,5,48)" fg:x="423580" fg:w="308"/><text x="78.7615%" y="719.50"></text></g><g><title>futex_wake (300 samples, 0.06%)</title><rect x="78.5130%" y="693" width="0.0556%" height="15" fill="rgb(224,156,48)" fg:x="423588" fg:w="300"/><text x="78.7630%" y="703.50"></text></g><g><title>wake_up_q (253 samples, 0.05%)</title><rect x="78.5217%" y="677" width="0.0469%" height="15" fill="rgb(223,14,29)" fg:x="423635" fg:w="253"/><text x="78.7717%" y="687.50"></text></g><g><title>try_to_wake_up (250 samples, 0.05%)</title><rect x="78.5223%" y="661" width="0.0463%" height="15" fill="rgb(229,96,36)" fg:x="423638" fg:w="250"/><text x="78.7723%" y="671.50"></text></g><g><title>do_syscall_64 (316 samples, 0.06%)</title><rect x="78.5102%" y="741" width="0.0586%" height="15" fill="rgb(231,102,53)" fg:x="423573" fg:w="316"/><text x="78.7602%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (340 samples, 0.06%)</title><rect x="78.5102%" y="757" width="0.0630%" height="15" fill="rgb(210,77,38)" fg:x="423573" fg:w="340"/><text x="78.7602%" y="767.50"></text></g><g><title>__pthread_cond_signal (358 samples, 0.07%)</title><rect x="78.5071%" y="789" width="0.0664%" height="15" fill="rgb(235,131,6)" fg:x="423556" fg:w="358"/><text x="78.7571%" y="799.50"></text></g><g><title>futex_wake (348 samples, 0.06%)</title><rect x="78.5090%" y="773" width="0.0645%" height="15" fill="rgb(252,55,38)" fg:x="423566" fg:w="348"/><text x="78.7590%" y="783.50"></text></g><g><title>Unsafe_Unpark (436 samples, 0.08%)</title><rect x="78.4938%" y="805" width="0.0808%" height="15" fill="rgb(246,38,14)" fg:x="423484" fg:w="436"/><text x="78.7438%" y="815.50"></text></g><g><title>end_bio_extent_writepage (198 samples, 0.04%)</title><rect x="78.5844%" y="613" width="0.0367%" height="15" fill="rgb(242,27,5)" fg:x="423973" fg:w="198"/><text x="78.8344%" y="623.50"></text></g><g><title>end_page_writeback (158 samples, 0.03%)</title><rect x="78.5918%" y="597" width="0.0293%" height="15" fill="rgb(228,65,35)" fg:x="424013" fg:w="158"/><text x="78.8418%" y="607.50"></text></g><g><title>test_clear_page_writeback (147 samples, 0.03%)</title><rect x="78.5938%" y="581" width="0.0272%" height="15" fill="rgb(245,93,11)" fg:x="424024" fg:w="147"/><text x="78.8438%" y="591.50"></text></g><g><title>btrfs_end_bio (206 samples, 0.04%)</title><rect x="78.5831%" y="629" width="0.0382%" height="15" fill="rgb(213,1,31)" fg:x="423966" fg:w="206"/><text x="78.8331%" y="639.50"></text></g><g><title>clone_endio (208 samples, 0.04%)</title><rect x="78.5829%" y="661" width="0.0386%" height="15" fill="rgb(237,205,14)" fg:x="423965" fg:w="208"/><text x="78.8329%" y="671.50"></text></g><g><title>dec_pending (207 samples, 0.04%)</title><rect x="78.5831%" y="645" width="0.0384%" height="15" fill="rgb(232,118,45)" fg:x="423966" fg:w="207"/><text x="78.8331%" y="655.50"></text></g><g><title>free_pcppages_bulk (63 samples, 0.01%)</title><rect x="78.6287%" y="597" width="0.0117%" height="15" fill="rgb(218,5,6)" fg:x="424212" fg:w="63"/><text x="78.8787%" y="607.50"></text></g><g><title>crypt_page_free (99 samples, 0.02%)</title><rect x="78.6229%" y="629" width="0.0183%" height="15" fill="rgb(251,87,51)" fg:x="424181" fg:w="99"/><text x="78.8729%" y="639.50"></text></g><g><title>free_unref_page (82 samples, 0.02%)</title><rect x="78.6261%" y="613" width="0.0152%" height="15" fill="rgb(207,225,20)" fg:x="424198" fg:w="82"/><text x="78.8761%" y="623.50"></text></g><g><title>blk_update_request (323 samples, 0.06%)</title><rect x="78.5824%" y="677" width="0.0599%" height="15" fill="rgb(222,78,54)" fg:x="423962" fg:w="323"/><text x="78.8324%" y="687.50"></text></g><g><title>crypt_endio (111 samples, 0.02%)</title><rect x="78.6216%" y="661" width="0.0206%" height="15" fill="rgb(232,85,16)" fg:x="424174" fg:w="111"/><text x="78.8716%" y="671.50"></text></g><g><title>crypt_free_buffer_pages (107 samples, 0.02%)</title><rect x="78.6224%" y="645" width="0.0198%" height="15" fill="rgb(244,25,33)" fg:x="424178" fg:w="107"/><text x="78.8724%" y="655.50"></text></g><g><title>blk_mq_end_request (325 samples, 0.06%)</title><rect x="78.5822%" y="693" width="0.0602%" height="15" fill="rgb(233,24,36)" fg:x="423961" fg:w="325"/><text x="78.8322%" y="703.50"></text></g><g><title>__handle_irq_event_percpu (343 samples, 0.06%)</title><rect x="78.5820%" y="741" width="0.0636%" height="15" fill="rgb(253,49,54)" fg:x="423960" fg:w="343"/><text x="78.8320%" y="751.50"></text></g><g><title>nvme_irq (343 samples, 0.06%)</title><rect x="78.5820%" y="725" width="0.0636%" height="15" fill="rgb(245,12,22)" fg:x="423960" fg:w="343"/><text x="78.8320%" y="735.50"></text></g><g><title>nvme_process_cq (343 samples, 0.06%)</title><rect x="78.5820%" y="709" width="0.0636%" height="15" fill="rgb(253,141,28)" fg:x="423960" fg:w="343"/><text x="78.8320%" y="719.50"></text></g><g><title>handle_irq_event (344 samples, 0.06%)</title><rect x="78.5820%" y="757" width="0.0638%" height="15" fill="rgb(225,207,27)" fg:x="423960" fg:w="344"/><text x="78.8320%" y="767.50"></text></g><g><title>common_interrupt (345 samples, 0.06%)</title><rect x="78.5820%" y="789" width="0.0639%" height="15" fill="rgb(220,84,2)" fg:x="423960" fg:w="345"/><text x="78.8320%" y="799.50"></text></g><g><title>handle_edge_irq (345 samples, 0.06%)</title><rect x="78.5820%" y="773" width="0.0639%" height="15" fill="rgb(224,37,37)" fg:x="423960" fg:w="345"/><text x="78.8320%" y="783.50"></text></g><g><title>asm_common_interrupt (356 samples, 0.07%)</title><rect x="78.5820%" y="805" width="0.0660%" height="15" fill="rgb(220,143,18)" fg:x="423960" fg:w="356"/><text x="78.8320%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (195 samples, 0.04%)</title><rect x="78.6543%" y="709" width="0.0361%" height="15" fill="rgb(210,88,33)" fg:x="424350" fg:w="195"/><text x="78.9043%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (194 samples, 0.04%)</title><rect x="78.6545%" y="693" width="0.0360%" height="15" fill="rgb(219,87,51)" fg:x="424351" fg:w="194"/><text x="78.9045%" y="703.50"></text></g><g><title>native_write_msr (192 samples, 0.04%)</title><rect x="78.6548%" y="677" width="0.0356%" height="15" fill="rgb(211,7,35)" fg:x="424353" fg:w="192"/><text x="78.9048%" y="687.50"></text></g><g><title>finish_task_switch (211 samples, 0.04%)</title><rect x="78.6537%" y="725" width="0.0391%" height="15" fill="rgb(232,77,2)" fg:x="424347" fg:w="211"/><text x="78.9037%" y="735.50"></text></g><g><title>schedule (222 samples, 0.04%)</title><rect x="78.6532%" y="757" width="0.0411%" height="15" fill="rgb(249,94,25)" fg:x="424344" fg:w="222"/><text x="78.9032%" y="767.50"></text></g><g><title>__schedule (221 samples, 0.04%)</title><rect x="78.6533%" y="741" width="0.0410%" height="15" fill="rgb(215,112,2)" fg:x="424345" fg:w="221"/><text x="78.9033%" y="751.50"></text></g><g><title>irqentry_exit_to_user_mode (228 samples, 0.04%)</title><rect x="78.6530%" y="789" width="0.0423%" height="15" fill="rgb(226,115,48)" fg:x="424343" fg:w="228"/><text x="78.9030%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (228 samples, 0.04%)</title><rect x="78.6530%" y="773" width="0.0423%" height="15" fill="rgb(249,196,10)" fg:x="424343" fg:w="228"/><text x="78.9030%" y="783.50"></text></g><g><title>scheduler_tick (67 samples, 0.01%)</title><rect x="78.7093%" y="677" width="0.0124%" height="15" fill="rgb(237,109,14)" fg:x="424647" fg:w="67"/><text x="78.9593%" y="687.50"></text></g><g><title>tick_sched_handle (106 samples, 0.02%)</title><rect x="78.7026%" y="709" width="0.0196%" height="15" fill="rgb(217,103,53)" fg:x="424611" fg:w="106"/><text x="78.9526%" y="719.50"></text></g><g><title>update_process_times (104 samples, 0.02%)</title><rect x="78.7030%" y="693" width="0.0193%" height="15" fill="rgb(244,137,9)" fg:x="424613" fg:w="104"/><text x="78.9530%" y="703.50"></text></g><g><title>tick_sched_timer (115 samples, 0.02%)</title><rect x="78.7015%" y="725" width="0.0213%" height="15" fill="rgb(227,201,3)" fg:x="424605" fg:w="115"/><text x="78.9515%" y="735.50"></text></g><g><title>__hrtimer_run_queues (141 samples, 0.03%)</title><rect x="78.6982%" y="741" width="0.0261%" height="15" fill="rgb(243,94,6)" fg:x="424587" fg:w="141"/><text x="78.9482%" y="751.50"></text></g><g><title>hrtimer_interrupt (169 samples, 0.03%)</title><rect x="78.6965%" y="757" width="0.0313%" height="15" fill="rgb(235,118,5)" fg:x="424578" fg:w="169"/><text x="78.9465%" y="767.50"></text></g><g><title>__sysvec_apic_timer_interrupt (180 samples, 0.03%)</title><rect x="78.6952%" y="773" width="0.0334%" height="15" fill="rgb(247,10,30)" fg:x="424571" fg:w="180"/><text x="78.9452%" y="783.50"></text></g><g><title>rcu_core (113 samples, 0.02%)</title><rect x="78.7303%" y="709" width="0.0209%" height="15" fill="rgb(205,26,28)" fg:x="424760" fg:w="113"/><text x="78.9803%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (556 samples, 0.10%)</title><rect x="78.6528%" y="805" width="0.1031%" height="15" fill="rgb(206,99,35)" fg:x="424342" fg:w="556"/><text x="78.9028%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (327 samples, 0.06%)</title><rect x="78.6952%" y="789" width="0.0606%" height="15" fill="rgb(238,130,40)" fg:x="424571" fg:w="327"/><text x="78.9452%" y="799.50"></text></g><g><title>irq_exit_rcu (147 samples, 0.03%)</title><rect x="78.7286%" y="773" width="0.0272%" height="15" fill="rgb(224,126,31)" fg:x="424751" fg:w="147"/><text x="78.9786%" y="783.50"></text></g><g><title>do_softirq_own_stack (144 samples, 0.03%)</title><rect x="78.7292%" y="757" width="0.0267%" height="15" fill="rgb(254,105,17)" fg:x="424754" fg:w="144"/><text x="78.9792%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (144 samples, 0.03%)</title><rect x="78.7292%" y="741" width="0.0267%" height="15" fill="rgb(216,87,36)" fg:x="424754" fg:w="144"/><text x="78.9792%" y="751.50"></text></g><g><title>__softirqentry_text_start (144 samples, 0.03%)</title><rect x="78.7292%" y="725" width="0.0267%" height="15" fill="rgb(240,21,12)" fg:x="424754" fg:w="144"/><text x="78.9792%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (244 samples, 0.05%)</title><rect x="78.7610%" y="709" width="0.0452%" height="15" fill="rgb(245,192,34)" fg:x="424926" fg:w="244"/><text x="79.0110%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (238 samples, 0.04%)</title><rect x="78.7621%" y="693" width="0.0441%" height="15" fill="rgb(226,100,49)" fg:x="424932" fg:w="238"/><text x="79.0121%" y="703.50"></text></g><g><title>native_write_msr (237 samples, 0.04%)</title><rect x="78.7623%" y="677" width="0.0439%" height="15" fill="rgb(245,188,27)" fg:x="424933" fg:w="237"/><text x="79.0123%" y="687.50"></text></g><g><title>finish_task_switch (273 samples, 0.05%)</title><rect x="78.7597%" y="725" width="0.0506%" height="15" fill="rgb(212,170,8)" fg:x="424919" fg:w="273"/><text x="79.0097%" y="735.50"></text></g><g><title>schedule (314 samples, 0.06%)</title><rect x="78.7579%" y="757" width="0.0582%" height="15" fill="rgb(217,113,29)" fg:x="424909" fg:w="314"/><text x="79.0079%" y="767.50"></text></g><g><title>__schedule (312 samples, 0.06%)</title><rect x="78.7583%" y="741" width="0.0578%" height="15" fill="rgb(237,30,3)" fg:x="424911" fg:w="312"/><text x="79.0083%" y="751.50"></text></g><g><title>irqentry_exit_to_user_mode (322 samples, 0.06%)</title><rect x="78.7579%" y="789" width="0.0597%" height="15" fill="rgb(227,19,28)" fg:x="424909" fg:w="322"/><text x="79.0079%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (322 samples, 0.06%)</title><rect x="78.7579%" y="773" width="0.0597%" height="15" fill="rgb(239,172,45)" fg:x="424909" fg:w="322"/><text x="79.0079%" y="783.50"></text></g><g><title>asm_sysvec_reschedule_ipi (330 samples, 0.06%)</title><rect x="78.7575%" y="805" width="0.0612%" height="15" fill="rgb(254,55,39)" fg:x="424907" fg:w="330"/><text x="79.0075%" y="815.50"></text></g><g><title>__sysvec_thermal (74 samples, 0.01%)</title><rect x="78.8190%" y="773" width="0.0137%" height="15" fill="rgb(249,208,12)" fg:x="425239" fg:w="74"/><text x="79.0690%" y="783.50"></text></g><g><title>intel_thermal_interrupt (70 samples, 0.01%)</title><rect x="78.8198%" y="757" width="0.0130%" height="15" fill="rgb(240,52,13)" fg:x="425243" fg:w="70"/><text x="79.0698%" y="767.50"></text></g><g><title>asm_sysvec_thermal (85 samples, 0.02%)</title><rect x="78.8187%" y="805" width="0.0158%" height="15" fill="rgb(252,149,13)" fg:x="425237" fg:w="85"/><text x="79.0687%" y="815.50"></text></g><g><title>sysvec_thermal (83 samples, 0.02%)</title><rect x="78.8190%" y="789" width="0.0154%" height="15" fill="rgb(232,81,48)" fg:x="425239" fg:w="83"/><text x="79.0690%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="78.8387%" y="773" width="0.0128%" height="15" fill="rgb(222,144,2)" fg:x="425345" fg:w="69"/><text x="79.0887%" y="783.50"></text></g><g><title>__close (73 samples, 0.01%)</title><rect x="78.8381%" y="789" width="0.0135%" height="15" fill="rgb(216,81,32)" fg:x="425342" fg:w="73"/><text x="79.0881%" y="799.50"></text></g><g><title>fileDescriptorClose (90 samples, 0.02%)</title><rect x="78.8378%" y="805" width="0.0167%" height="15" fill="rgb(244,78,51)" fg:x="425340" fg:w="90"/><text x="79.0878%" y="815.50"></text></g><g><title>JNU_GetStringPlatformChars (65 samples, 0.01%)</title><rect x="78.8546%" y="789" width="0.0120%" height="15" fill="rgb(217,66,21)" fg:x="425431" fg:w="65"/><text x="79.1046%" y="799.50"></text></g><g><title>__alloc_file (67 samples, 0.01%)</title><rect x="78.8867%" y="661" width="0.0124%" height="15" fill="rgb(247,101,42)" fg:x="425604" fg:w="67"/><text x="79.1367%" y="671.50"></text></g><g><title>alloc_empty_file (70 samples, 0.01%)</title><rect x="78.8863%" y="677" width="0.0130%" height="15" fill="rgb(227,81,39)" fg:x="425602" fg:w="70"/><text x="79.1363%" y="687.50"></text></g><g><title>link_path_walk.part.0 (73 samples, 0.01%)</title><rect x="78.9136%" y="677" width="0.0135%" height="15" fill="rgb(220,223,44)" fg:x="425749" fg:w="73"/><text x="79.1636%" y="687.50"></text></g><g><title>do_filp_open (252 samples, 0.05%)</title><rect x="78.8841%" y="709" width="0.0467%" height="15" fill="rgb(205,218,2)" fg:x="425590" fg:w="252"/><text x="79.1341%" y="719.50"></text></g><g><title>path_openat (249 samples, 0.05%)</title><rect x="78.8847%" y="693" width="0.0462%" height="15" fill="rgb(212,207,28)" fg:x="425593" fg:w="249"/><text x="79.1347%" y="703.50"></text></g><g><title>__x64_sys_openat (319 samples, 0.06%)</title><rect x="78.8780%" y="741" width="0.0591%" height="15" fill="rgb(224,12,41)" fg:x="425557" fg:w="319"/><text x="79.1280%" y="751.50"></text></g><g><title>do_sys_openat2 (316 samples, 0.06%)</title><rect x="78.8785%" y="725" width="0.0586%" height="15" fill="rgb(216,118,12)" fg:x="425560" fg:w="316"/><text x="79.1285%" y="735.50"></text></g><g><title>do_syscall_64 (321 samples, 0.06%)</title><rect x="78.8778%" y="757" width="0.0595%" height="15" fill="rgb(252,97,46)" fg:x="425556" fg:w="321"/><text x="79.1278%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (323 samples, 0.06%)</title><rect x="78.8778%" y="773" width="0.0599%" height="15" fill="rgb(244,206,19)" fg:x="425556" fg:w="323"/><text x="79.1278%" y="783.50"></text></g><g><title>__libc_open64 (338 samples, 0.06%)</title><rect x="78.8752%" y="789" width="0.0626%" height="15" fill="rgb(231,84,31)" fg:x="425542" fg:w="338"/><text x="79.1252%" y="799.50"></text></g><g><title>fileOpen (476 samples, 0.09%)</title><rect x="78.8544%" y="805" width="0.0882%" height="15" fill="rgb(244,133,0)" fg:x="425430" fg:w="476"/><text x="79.1044%" y="815.50"></text></g><g><title>[[vdso]] (254 samples, 0.05%)</title><rect x="79.0418%" y="757" width="0.0471%" height="15" fill="rgb(223,15,50)" fg:x="426441" fg:w="254"/><text x="79.2918%" y="767.50"></text></g><g><title>__vdso_clock_gettime (476 samples, 0.09%)</title><rect x="79.0012%" y="773" width="0.0882%" height="15" fill="rgb(250,118,49)" fg:x="426222" fg:w="476"/><text x="79.2512%" y="783.50"></text></g><g><title>os::javaTimeNanos (724 samples, 0.13%)</title><rect x="78.9555%" y="805" width="0.1342%" height="15" fill="rgb(248,25,38)" fg:x="425975" fg:w="724"/><text x="79.2055%" y="815.50"></text></g><g><title>__GI___clock_gettime (627 samples, 0.12%)</title><rect x="78.9734%" y="789" width="0.1162%" height="15" fill="rgb(215,70,14)" fg:x="426072" fg:w="627"/><text x="79.2234%" y="799.50"></text></g><g><title>[perf-34054.map] (123,018 samples, 22.80%)</title><rect x="56.2887%" y="821" width="22.8017%" height="15" fill="rgb(215,28,15)" fg:x="303685" fg:w="123018"/><text x="56.5387%" y="831.50">[perf-34054.map]</text></g><g><title>SharedRuntime::find_callee_info_helper (189 samples, 0.04%)</title><rect x="79.1460%" y="789" width="0.0350%" height="15" fill="rgb(243,6,28)" fg:x="427003" fg:w="189"/><text x="79.3960%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (307 samples, 0.06%)</title><rect x="79.1293%" y="805" width="0.0569%" height="15" fill="rgb(222,130,1)" fg:x="426913" fg:w="307"/><text x="79.3793%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (327 samples, 0.06%)</title><rect x="79.1931%" y="533" width="0.0606%" height="15" fill="rgb(236,166,44)" fg:x="427257" fg:w="327"/><text x="79.4431%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (322 samples, 0.06%)</title><rect x="79.1940%" y="517" width="0.0597%" height="15" fill="rgb(221,108,14)" fg:x="427262" fg:w="322"/><text x="79.4440%" y="527.50"></text></g><g><title>native_write_msr (320 samples, 0.06%)</title><rect x="79.1944%" y="501" width="0.0593%" height="15" fill="rgb(252,3,45)" fg:x="427264" fg:w="320"/><text x="79.4444%" y="511.50"></text></g><g><title>finish_task_switch (339 samples, 0.06%)</title><rect x="79.1922%" y="549" width="0.0628%" height="15" fill="rgb(237,68,30)" fg:x="427252" fg:w="339"/><text x="79.4422%" y="559.50"></text></g><g><title>futex_wait_queue_me (355 samples, 0.07%)</title><rect x="79.1907%" y="597" width="0.0658%" height="15" fill="rgb(211,79,22)" fg:x="427244" fg:w="355"/><text x="79.4407%" y="607.50"></text></g><g><title>schedule (354 samples, 0.07%)</title><rect x="79.1909%" y="581" width="0.0656%" height="15" fill="rgb(252,185,21)" fg:x="427245" fg:w="354"/><text x="79.4409%" y="591.50"></text></g><g><title>__schedule (352 samples, 0.07%)</title><rect x="79.1912%" y="565" width="0.0652%" height="15" fill="rgb(225,189,26)" fg:x="427247" fg:w="352"/><text x="79.4412%" y="575.50"></text></g><g><title>do_syscall_64 (363 samples, 0.07%)</title><rect x="79.1896%" y="661" width="0.0673%" height="15" fill="rgb(241,30,40)" fg:x="427238" fg:w="363"/><text x="79.4396%" y="671.50"></text></g><g><title>__x64_sys_futex (362 samples, 0.07%)</title><rect x="79.1898%" y="645" width="0.0671%" height="15" fill="rgb(235,215,44)" fg:x="427239" fg:w="362"/><text x="79.4398%" y="655.50"></text></g><g><title>do_futex (360 samples, 0.07%)</title><rect x="79.1901%" y="629" width="0.0667%" height="15" fill="rgb(205,8,29)" fg:x="427241" fg:w="360"/><text x="79.4401%" y="639.50"></text></g><g><title>futex_wait (359 samples, 0.07%)</title><rect x="79.1903%" y="613" width="0.0665%" height="15" fill="rgb(241,137,42)" fg:x="427242" fg:w="359"/><text x="79.4403%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (370 samples, 0.07%)</title><rect x="79.1896%" y="677" width="0.0686%" height="15" fill="rgb(237,155,2)" fg:x="427238" fg:w="370"/><text x="79.4396%" y="687.50"></text></g><g><title>__pthread_cond_wait (375 samples, 0.07%)</title><rect x="79.1888%" y="725" width="0.0695%" height="15" fill="rgb(245,29,42)" fg:x="427234" fg:w="375"/><text x="79.4388%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (375 samples, 0.07%)</title><rect x="79.1888%" y="709" width="0.0695%" height="15" fill="rgb(234,101,35)" fg:x="427234" fg:w="375"/><text x="79.4388%" y="719.50"></text></g><g><title>futex_wait_cancelable (374 samples, 0.07%)</title><rect x="79.1890%" y="693" width="0.0693%" height="15" fill="rgb(228,64,37)" fg:x="427235" fg:w="374"/><text x="79.4390%" y="703.50"></text></g><g><title>Monitor::lock_without_safepoint_check (388 samples, 0.07%)</title><rect x="79.1875%" y="773" width="0.0719%" height="15" fill="rgb(217,214,36)" fg:x="427227" fg:w="388"/><text x="79.4375%" y="783.50"></text></g><g><title>Monitor::ILock (388 samples, 0.07%)</title><rect x="79.1875%" y="757" width="0.0719%" height="15" fill="rgb(243,70,3)" fg:x="427227" fg:w="388"/><text x="79.4375%" y="767.50"></text></g><g><title>os::PlatformEvent::park (382 samples, 0.07%)</title><rect x="79.1886%" y="741" width="0.0708%" height="15" fill="rgb(253,158,52)" fg:x="427233" fg:w="382"/><text x="79.4386%" y="751.50"></text></g><g><title>SafepointSynchronize::block (440 samples, 0.08%)</title><rect x="79.1873%" y="789" width="0.0816%" height="15" fill="rgb(234,111,54)" fg:x="427226" fg:w="440"/><text x="79.4373%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (450 samples, 0.08%)</title><rect x="79.1864%" y="805" width="0.0834%" height="15" fill="rgb(217,70,32)" fg:x="427221" fg:w="450"/><text x="79.4364%" y="815.50"></text></g><g><title>__GI___clock_gettime (70 samples, 0.01%)</title><rect x="79.2707%" y="805" width="0.0130%" height="15" fill="rgb(234,18,33)" fg:x="427676" fg:w="70"/><text x="79.5207%" y="815.50"></text></g><g><title>copy_user_enhanced_fast_string (148 samples, 0.03%)</title><rect x="79.3466%" y="629" width="0.0274%" height="15" fill="rgb(234,12,49)" fg:x="428085" fg:w="148"/><text x="79.5966%" y="639.50"></text></g><g><title>copy_page_to_iter (158 samples, 0.03%)</title><rect x="79.3449%" y="645" width="0.0293%" height="15" fill="rgb(236,10,21)" fg:x="428076" fg:w="158"/><text x="79.5949%" y="655.50"></text></g><g><title>mark_page_accessed (68 samples, 0.01%)</title><rect x="79.3742%" y="645" width="0.0126%" height="15" fill="rgb(248,182,45)" fg:x="428234" fg:w="68"/><text x="79.6242%" y="655.50"></text></g><g><title>pagevec_lru_move_fn (57 samples, 0.01%)</title><rect x="79.3762%" y="629" width="0.0106%" height="15" fill="rgb(217,95,36)" fg:x="428245" fg:w="57"/><text x="79.6262%" y="639.50"></text></g><g><title>pagecache_get_page (57 samples, 0.01%)</title><rect x="79.3868%" y="645" width="0.0106%" height="15" fill="rgb(212,110,31)" fg:x="428302" fg:w="57"/><text x="79.6368%" y="655.50"></text></g><g><title>generic_file_buffered_read (388 samples, 0.07%)</title><rect x="79.3388%" y="661" width="0.0719%" height="15" fill="rgb(206,32,53)" fg:x="428043" fg:w="388"/><text x="79.5888%" y="671.50"></text></g><g><title>new_sync_read (402 samples, 0.07%)</title><rect x="79.3364%" y="677" width="0.0745%" height="15" fill="rgb(246,141,37)" fg:x="428030" fg:w="402"/><text x="79.5864%" y="687.50"></text></g><g><title>ksys_read (473 samples, 0.09%)</title><rect x="79.3280%" y="709" width="0.0877%" height="15" fill="rgb(219,16,7)" fg:x="427985" fg:w="473"/><text x="79.5780%" y="719.50"></text></g><g><title>vfs_read (445 samples, 0.08%)</title><rect x="79.3332%" y="693" width="0.0825%" height="15" fill="rgb(230,205,45)" fg:x="428013" fg:w="445"/><text x="79.5832%" y="703.50"></text></g><g><title>do_syscall_64 (482 samples, 0.09%)</title><rect x="79.3275%" y="725" width="0.0893%" height="15" fill="rgb(231,43,49)" fg:x="427982" fg:w="482"/><text x="79.5775%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (487 samples, 0.09%)</title><rect x="79.3273%" y="741" width="0.0903%" height="15" fill="rgb(212,106,34)" fg:x="427981" fg:w="487"/><text x="79.5773%" y="751.50"></text></g><g><title>__libc_read (516 samples, 0.10%)</title><rect x="79.3226%" y="773" width="0.0956%" height="15" fill="rgb(206,83,17)" fg:x="427956" fg:w="516"/><text x="79.5726%" y="783.50"></text></g><g><title>__libc_read (512 samples, 0.09%)</title><rect x="79.3234%" y="757" width="0.0949%" height="15" fill="rgb(244,154,49)" fg:x="427960" fg:w="512"/><text x="79.5734%" y="767.50"></text></g><g><title>handleRead (520 samples, 0.10%)</title><rect x="79.3225%" y="789" width="0.0964%" height="15" fill="rgb(244,149,49)" fg:x="427955" fg:w="520"/><text x="79.5725%" y="799.50"></text></g><g><title>[libc-2.31.so] (55 samples, 0.01%)</title><rect x="79.4333%" y="773" width="0.0102%" height="15" fill="rgb(227,134,18)" fg:x="428553" fg:w="55"/><text x="79.6833%" y="783.50"></text></g><g><title>readBytes (674 samples, 0.12%)</title><rect x="79.3201%" y="805" width="0.1249%" height="15" fill="rgb(237,116,36)" fg:x="427942" fg:w="674"/><text x="79.5701%" y="815.50"></text></g><g><title>jni_SetByteArrayRegion (77 samples, 0.01%)</title><rect x="79.4307%" y="789" width="0.0143%" height="15" fill="rgb(205,129,40)" fg:x="428539" fg:w="77"/><text x="79.6807%" y="799.50"></text></g><g><title>[unknown] (1,935 samples, 0.36%)</title><rect x="79.0904%" y="821" width="0.3587%" height="15" fill="rgb(236,178,4)" fg:x="426703" fg:w="1935"/><text x="79.3404%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (122 samples, 0.02%)</title><rect x="79.4530%" y="757" width="0.0226%" height="15" fill="rgb(251,76,53)" fg:x="428659" fg:w="122"/><text x="79.7030%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (122 samples, 0.02%)</title><rect x="79.4530%" y="741" width="0.0226%" height="15" fill="rgb(242,92,40)" fg:x="428659" fg:w="122"/><text x="79.7030%" y="751.50"></text></g><g><title>native_write_msr (122 samples, 0.02%)</title><rect x="79.4530%" y="725" width="0.0226%" height="15" fill="rgb(209,45,30)" fg:x="428659" fg:w="122"/><text x="79.7030%" y="735.50"></text></g><g><title>schedule_tail (130 samples, 0.02%)</title><rect x="79.4526%" y="789" width="0.0241%" height="15" fill="rgb(218,157,36)" fg:x="428657" fg:w="130"/><text x="79.7026%" y="799.50"></text></g><g><title>finish_task_switch (129 samples, 0.02%)</title><rect x="79.4528%" y="773" width="0.0239%" height="15" fill="rgb(222,186,16)" fg:x="428658" fg:w="129"/><text x="79.7028%" y="783.50"></text></g><g><title>ret_from_fork (134 samples, 0.02%)</title><rect x="79.4522%" y="805" width="0.0248%" height="15" fill="rgb(254,72,35)" fg:x="428655" fg:w="134"/><text x="79.7022%" y="815.50"></text></g><g><title>Thread::call_run (72 samples, 0.01%)</title><rect x="79.4850%" y="773" width="0.0133%" height="15" fill="rgb(224,25,35)" fg:x="428832" fg:w="72"/><text x="79.7350%" y="783.50"></text></g><g><title>__GI___clone (275 samples, 0.05%)</title><rect x="79.4491%" y="821" width="0.0510%" height="15" fill="rgb(206,135,52)" fg:x="428638" fg:w="275"/><text x="79.6991%" y="831.50"></text></g><g><title>start_thread (124 samples, 0.02%)</title><rect x="79.4770%" y="805" width="0.0230%" height="15" fill="rgb(229,174,47)" fg:x="428789" fg:w="124"/><text x="79.7270%" y="815.50"></text></g><g><title>thread_native_entry (116 samples, 0.02%)</title><rect x="79.4785%" y="789" width="0.0215%" height="15" fill="rgb(242,184,21)" fg:x="428797" fg:w="116"/><text x="79.7285%" y="799.50"></text></g><g><title>__vdso_clock_gettime (64 samples, 0.01%)</title><rect x="79.5006%" y="821" width="0.0119%" height="15" fill="rgb(213,22,45)" fg:x="428916" fg:w="64"/><text x="79.7506%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (119 samples, 0.02%)</title><rect x="79.5282%" y="821" width="0.0221%" height="15" fill="rgb(237,81,54)" fg:x="429065" fg:w="119"/><text x="79.7782%" y="831.50"></text></g><g><title>skyframe-evalua (227,974 samples, 42.26%)</title><rect x="37.3142%" y="837" width="42.2555%" height="15" fill="rgb(248,177,18)" fg:x="201315" fg:w="227974"/><text x="37.5642%" y="847.50">skyframe-evalua</text></g><g><title>Parker::park (57 samples, 0.01%)</title><rect x="79.5901%" y="789" width="0.0106%" height="15" fill="rgb(254,31,16)" fg:x="429399" fg:w="57"/><text x="79.8401%" y="799.50"></text></g><g><title>__pthread_cond_wait (54 samples, 0.01%)</title><rect x="79.5907%" y="773" width="0.0100%" height="15" fill="rgb(235,20,31)" fg:x="429402" fg:w="54"/><text x="79.8407%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="79.5907%" y="757" width="0.0100%" height="15" fill="rgb(240,56,43)" fg:x="429402" fg:w="54"/><text x="79.8407%" y="767.50"></text></g><g><title>futex_wait_cancelable (54 samples, 0.01%)</title><rect x="79.5907%" y="741" width="0.0100%" height="15" fill="rgb(237,197,51)" fg:x="429402" fg:w="54"/><text x="79.8407%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="79.5907%" y="725" width="0.0100%" height="15" fill="rgb(241,162,44)" fg:x="429402" fg:w="54"/><text x="79.8407%" y="735.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="79.5907%" y="709" width="0.0100%" height="15" fill="rgb(224,23,20)" fg:x="429402" fg:w="54"/><text x="79.8407%" y="719.50"></text></g><g><title>Unsafe_Park (58 samples, 0.01%)</title><rect x="79.5901%" y="805" width="0.0108%" height="15" fill="rgb(250,109,34)" fg:x="429399" fg:w="58"/><text x="79.8401%" y="815.50"></text></g><g><title>[perf-34054.map] (172 samples, 0.03%)</title><rect x="79.5706%" y="821" width="0.0319%" height="15" fill="rgb(214,175,50)" fg:x="429294" fg:w="172"/><text x="79.8206%" y="831.50"></text></g><g><title>skyframe-invali (224 samples, 0.04%)</title><rect x="79.5697%" y="837" width="0.0415%" height="15" fill="rgb(213,182,5)" fg:x="429289" fg:w="224"/><text x="79.8197%" y="847.50"></text></g><g><title>[zig] (170 samples, 0.03%)</title><rect x="79.6222%" y="805" width="0.0315%" height="15" fill="rgb(209,199,19)" fg:x="429572" fg:w="170"/><text x="79.8722%" y="815.50"></text></g><g><title>[unknown] (172 samples, 0.03%)</title><rect x="79.6222%" y="821" width="0.0319%" height="15" fill="rgb(236,224,42)" fg:x="429572" fg:w="172"/><text x="79.8722%" y="831.50"></text></g><g><title>vmacache_find (74 samples, 0.01%)</title><rect x="84.5097%" y="741" width="0.0137%" height="15" fill="rgb(246,226,29)" fg:x="455941" fg:w="74"/><text x="84.7597%" y="751.50"></text></g><g><title>find_vma (113 samples, 0.02%)</title><rect x="84.5036%" y="757" width="0.0209%" height="15" fill="rgb(227,223,11)" fg:x="455908" fg:w="113"/><text x="84.7536%" y="767.50"></text></g><g><title>__next_zones_zonelist (58 samples, 0.01%)</title><rect x="84.6473%" y="709" width="0.0108%" height="15" fill="rgb(219,7,51)" fg:x="456683" fg:w="58"/><text x="84.8973%" y="719.50"></text></g><g><title>__list_del_entry_valid (85 samples, 0.02%)</title><rect x="84.7066%" y="693" width="0.0158%" height="15" fill="rgb(245,167,10)" fg:x="457003" fg:w="85"/><text x="84.9566%" y="703.50"></text></g><g><title>kernel_init_free_pages (460 samples, 0.09%)</title><rect x="84.7385%" y="677" width="0.0853%" height="15" fill="rgb(237,224,16)" fg:x="457175" fg:w="460"/><text x="84.9885%" y="687.50"></text></g><g><title>clear_page_erms (448 samples, 0.08%)</title><rect x="84.7407%" y="661" width="0.0830%" height="15" fill="rgb(226,132,13)" fg:x="457187" fg:w="448"/><text x="84.9907%" y="671.50"></text></g><g><title>prep_new_page (492 samples, 0.09%)</title><rect x="84.7335%" y="693" width="0.0912%" height="15" fill="rgb(214,140,3)" fg:x="457148" fg:w="492"/><text x="84.9835%" y="703.50"></text></g><g><title>get_page_from_freelist (885 samples, 0.16%)</title><rect x="84.6608%" y="709" width="0.1640%" height="15" fill="rgb(221,177,4)" fg:x="456756" fg:w="885"/><text x="84.9108%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (1,022 samples, 0.19%)</title><rect x="84.6356%" y="725" width="0.1894%" height="15" fill="rgb(238,139,3)" fg:x="456620" fg:w="1022"/><text x="84.8856%" y="735.50"></text></g><g><title>alloc_pages_vma (1,081 samples, 0.20%)</title><rect x="84.6278%" y="741" width="0.2004%" height="15" fill="rgb(216,17,39)" fg:x="456578" fg:w="1081"/><text x="84.8778%" y="751.50"></text></g><g><title>cgroup_throttle_swaprate (85 samples, 0.02%)</title><rect x="84.8284%" y="741" width="0.0158%" height="15" fill="rgb(238,120,9)" fg:x="457660" fg:w="85"/><text x="85.0784%" y="751.50"></text></g><g><title>do_page_mkwrite (95 samples, 0.02%)</title><rect x="84.8537%" y="741" width="0.0176%" height="15" fill="rgb(244,92,53)" fg:x="457797" fg:w="95"/><text x="85.1037%" y="751.50"></text></g><g><title>btrfs_page_mkwrite (95 samples, 0.02%)</title><rect x="84.8537%" y="725" width="0.0176%" height="15" fill="rgb(224,148,33)" fg:x="457797" fg:w="95"/><text x="85.1037%" y="735.50"></text></g><g><title>page_add_file_rmap (252 samples, 0.05%)</title><rect x="85.0087%" y="709" width="0.0467%" height="15" fill="rgb(243,6,36)" fg:x="458633" fg:w="252"/><text x="85.2587%" y="719.50"></text></g><g><title>alloc_set_pte (441 samples, 0.08%)</title><rect x="84.9785%" y="725" width="0.0817%" height="15" fill="rgb(230,102,11)" fg:x="458470" fg:w="441"/><text x="85.2285%" y="735.50"></text></g><g><title>unlock_page (101 samples, 0.02%)</title><rect x="85.0606%" y="725" width="0.0187%" height="15" fill="rgb(234,148,36)" fg:x="458913" fg:w="101"/><text x="85.3106%" y="735.50"></text></g><g><title>filemap_map_pages (1,210 samples, 0.22%)</title><rect x="84.8758%" y="741" width="0.2243%" height="15" fill="rgb(251,153,25)" fg:x="457916" fg:w="1210"/><text x="85.1258%" y="751.50"></text></g><g><title>xas_find (112 samples, 0.02%)</title><rect x="85.0793%" y="725" width="0.0208%" height="15" fill="rgb(215,129,8)" fg:x="459014" fg:w="112"/><text x="85.3293%" y="735.50"></text></g><g><title>xas_load (87 samples, 0.02%)</title><rect x="85.0840%" y="709" width="0.0161%" height="15" fill="rgb(224,128,35)" fg:x="459039" fg:w="87"/><text x="85.3340%" y="719.50"></text></g><g><title>__pagevec_lru_add_fn (170 samples, 0.03%)</title><rect x="85.1118%" y="709" width="0.0315%" height="15" fill="rgb(237,56,52)" fg:x="459189" fg:w="170"/><text x="85.3618%" y="719.50"></text></g><g><title>lru_cache_add (268 samples, 0.05%)</title><rect x="85.1003%" y="741" width="0.0497%" height="15" fill="rgb(234,213,19)" fg:x="459127" fg:w="268"/><text x="85.3503%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (234 samples, 0.04%)</title><rect x="85.1066%" y="725" width="0.0434%" height="15" fill="rgb(252,82,23)" fg:x="459161" fg:w="234"/><text x="85.3566%" y="735.50"></text></g><g><title>get_mem_cgroup_from_mm (78 samples, 0.01%)</title><rect x="85.1609%" y="725" width="0.0145%" height="15" fill="rgb(254,201,21)" fg:x="459454" fg:w="78"/><text x="85.4109%" y="735.50"></text></g><g><title>mem_cgroup_charge (290 samples, 0.05%)</title><rect x="85.1512%" y="741" width="0.0538%" height="15" fill="rgb(250,186,11)" fg:x="459402" fg:w="290"/><text x="85.4012%" y="751.50"></text></g><g><title>try_charge (116 samples, 0.02%)</title><rect x="85.1835%" y="725" width="0.0215%" height="15" fill="rgb(211,174,5)" fg:x="459576" fg:w="116"/><text x="85.4335%" y="735.50"></text></g><g><title>page_add_new_anon_rmap (121 samples, 0.02%)</title><rect x="85.2080%" y="741" width="0.0224%" height="15" fill="rgb(214,121,10)" fg:x="459708" fg:w="121"/><text x="85.4580%" y="751.50"></text></g><g><title>handle_mm_fault (3,903 samples, 0.72%)</title><rect x="84.5246%" y="757" width="0.7234%" height="15" fill="rgb(241,66,2)" fg:x="456021" fg:w="3903"/><text x="84.7746%" y="767.50"></text></g><g><title>do_user_addr_fault (4,237 samples, 0.79%)</title><rect x="84.4736%" y="773" width="0.7853%" height="15" fill="rgb(220,167,19)" fg:x="455746" fg:w="4237"/><text x="84.7236%" y="783.50"></text></g><g><title>exc_page_fault (4,277 samples, 0.79%)</title><rect x="84.4677%" y="789" width="0.7928%" height="15" fill="rgb(231,54,50)" fg:x="455714" fg:w="4277"/><text x="84.7177%" y="799.50"></text></g><g><title>asm_exc_page_fault (4,413 samples, 0.82%)</title><rect x="84.4569%" y="805" width="0.8180%" height="15" fill="rgb(239,217,53)" fg:x="455656" fg:w="4413"/><text x="84.7069%" y="815.50"></text></g><g><title>irqentry_exit_to_user_mode (74 samples, 0.01%)</title><rect x="85.2612%" y="789" width="0.0137%" height="15" fill="rgb(248,8,0)" fg:x="459995" fg:w="74"/><text x="85.5112%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (73 samples, 0.01%)</title><rect x="85.2613%" y="773" width="0.0135%" height="15" fill="rgb(229,118,37)" fg:x="459996" fg:w="73"/><text x="85.5113%" y="783.50"></text></g><g><title>kmem_cache_free (85 samples, 0.02%)</title><rect x="85.2921%" y="693" width="0.0158%" height="15" fill="rgb(253,223,43)" fg:x="460162" fg:w="85"/><text x="85.5421%" y="703.50"></text></g><g><title>rcu_core (125 samples, 0.02%)</title><rect x="85.2888%" y="709" width="0.0232%" height="15" fill="rgb(211,77,36)" fg:x="460144" fg:w="125"/><text x="85.5388%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (210 samples, 0.04%)</title><rect x="85.2749%" y="805" width="0.0389%" height="15" fill="rgb(219,3,53)" fg:x="460069" fg:w="210"/><text x="85.5249%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (169 samples, 0.03%)</title><rect x="85.2825%" y="789" width="0.0313%" height="15" fill="rgb(244,45,42)" fg:x="460110" fg:w="169"/><text x="85.5325%" y="799.50"></text></g><g><title>irq_exit_rcu (137 samples, 0.03%)</title><rect x="85.2884%" y="773" width="0.0254%" height="15" fill="rgb(225,95,27)" fg:x="460142" fg:w="137"/><text x="85.5384%" y="783.50"></text></g><g><title>do_softirq_own_stack (135 samples, 0.03%)</title><rect x="85.2888%" y="757" width="0.0250%" height="15" fill="rgb(207,74,8)" fg:x="460144" fg:w="135"/><text x="85.5388%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (135 samples, 0.03%)</title><rect x="85.2888%" y="741" width="0.0250%" height="15" fill="rgb(243,63,36)" fg:x="460144" fg:w="135"/><text x="85.5388%" y="751.50"></text></g><g><title>__softirqentry_text_start (135 samples, 0.03%)</title><rect x="85.2888%" y="725" width="0.0250%" height="15" fill="rgb(211,180,12)" fg:x="460144" fg:w="135"/><text x="85.5388%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="85.3158%" y="709" width="0.0196%" height="15" fill="rgb(254,166,49)" fg:x="460290" fg:w="106"/><text x="85.5658%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="85.3164%" y="693" width="0.0191%" height="15" fill="rgb(205,19,0)" fg:x="460293" fg:w="103"/><text x="85.5664%" y="703.50"></text></g><g><title>native_write_msr (102 samples, 0.02%)</title><rect x="85.3166%" y="677" width="0.0189%" height="15" fill="rgb(224,172,32)" fg:x="460294" fg:w="102"/><text x="85.5666%" y="687.50"></text></g><g><title>finish_task_switch (117 samples, 0.02%)</title><rect x="85.3155%" y="725" width="0.0217%" height="15" fill="rgb(254,136,30)" fg:x="460288" fg:w="117"/><text x="85.5655%" y="735.50"></text></g><g><title>schedule (128 samples, 0.02%)</title><rect x="85.3149%" y="757" width="0.0237%" height="15" fill="rgb(246,19,35)" fg:x="460285" fg:w="128"/><text x="85.5649%" y="767.50"></text></g><g><title>__schedule (128 samples, 0.02%)</title><rect x="85.3149%" y="741" width="0.0237%" height="15" fill="rgb(219,24,36)" fg:x="460285" fg:w="128"/><text x="85.5649%" y="751.50"></text></g><g><title>asm_sysvec_reschedule_ipi (131 samples, 0.02%)</title><rect x="85.3145%" y="805" width="0.0243%" height="15" fill="rgb(251,55,1)" fg:x="460283" fg:w="131"/><text x="85.5645%" y="815.50"></text></g><g><title>irqentry_exit_to_user_mode (130 samples, 0.02%)</title><rect x="85.3147%" y="789" width="0.0241%" height="15" fill="rgb(218,117,39)" fg:x="460284" fg:w="130"/><text x="85.5647%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (130 samples, 0.02%)</title><rect x="85.3147%" y="773" width="0.0241%" height="15" fill="rgb(248,169,11)" fg:x="460284" fg:w="130"/><text x="85.5647%" y="783.50"></text></g><g><title>entry_SYSCALL_64 (695 samples, 0.13%)</title><rect x="85.3436%" y="805" width="0.1288%" height="15" fill="rgb(244,40,44)" fg:x="460440" fg:w="695"/><text x="85.5936%" y="815.50"></text></g><g><title>perf_event_init_task (86 samples, 0.02%)</title><rect x="85.5844%" y="725" width="0.0159%" height="15" fill="rgb(234,62,37)" fg:x="461739" fg:w="86"/><text x="85.8344%" y="735.50"></text></g><g><title>inherit_task_group.isra.0 (85 samples, 0.02%)</title><rect x="85.5846%" y="709" width="0.0158%" height="15" fill="rgb(207,117,42)" fg:x="461740" fg:w="85"/><text x="85.8346%" y="719.50"></text></g><g><title>inherit_event.constprop.0 (82 samples, 0.02%)</title><rect x="85.5851%" y="693" width="0.0152%" height="15" fill="rgb(213,43,2)" fg:x="461743" fg:w="82"/><text x="85.8351%" y="703.50"></text></g><g><title>perf_event_alloc (65 samples, 0.01%)</title><rect x="85.5883%" y="677" width="0.0120%" height="15" fill="rgb(244,202,51)" fg:x="461760" fg:w="65"/><text x="85.8383%" y="687.50"></text></g><g><title>copy_process (175 samples, 0.03%)</title><rect x="85.5698%" y="741" width="0.0324%" height="15" fill="rgb(253,174,46)" fg:x="461660" fg:w="175"/><text x="85.8198%" y="751.50"></text></g><g><title>__do_sys_clone (209 samples, 0.04%)</title><rect x="85.5696%" y="773" width="0.0387%" height="15" fill="rgb(251,23,1)" fg:x="461659" fg:w="209"/><text x="85.8196%" y="783.50"></text></g><g><title>kernel_clone (209 samples, 0.04%)</title><rect x="85.5696%" y="757" width="0.0387%" height="15" fill="rgb(253,26,1)" fg:x="461659" fg:w="209"/><text x="85.8196%" y="767.50"></text></g><g><title>_copy_to_user (326 samples, 0.06%)</title><rect x="85.6350%" y="741" width="0.0604%" height="15" fill="rgb(216,89,31)" fg:x="462012" fg:w="326"/><text x="85.8850%" y="751.50"></text></g><g><title>copy_user_enhanced_fast_string (286 samples, 0.05%)</title><rect x="85.6424%" y="725" width="0.0530%" height="15" fill="rgb(209,109,5)" fg:x="462052" fg:w="286"/><text x="85.8924%" y="735.50"></text></g><g><title>from_kgid_munged (73 samples, 0.01%)</title><rect x="85.6960%" y="741" width="0.0135%" height="15" fill="rgb(229,63,13)" fg:x="462341" fg:w="73"/><text x="85.9460%" y="751.50"></text></g><g><title>map_id_up (66 samples, 0.01%)</title><rect x="85.6973%" y="725" width="0.0122%" height="15" fill="rgb(238,137,54)" fg:x="462348" fg:w="66"/><text x="85.9473%" y="735.50"></text></g><g><title>cp_new_stat (583 samples, 0.11%)</title><rect x="85.6146%" y="757" width="0.1081%" height="15" fill="rgb(228,1,9)" fg:x="461902" fg:w="583"/><text x="85.8646%" y="767.50"></text></g><g><title>from_kuid_munged (71 samples, 0.01%)</title><rect x="85.7095%" y="741" width="0.0132%" height="15" fill="rgb(249,120,48)" fg:x="462414" fg:w="71"/><text x="85.9595%" y="751.50"></text></g><g><title>map_id_up (62 samples, 0.01%)</title><rect x="85.7112%" y="725" width="0.0115%" height="15" fill="rgb(209,72,36)" fg:x="462423" fg:w="62"/><text x="85.9612%" y="735.50"></text></g><g><title>__fget_light (206 samples, 0.04%)</title><rect x="85.7292%" y="741" width="0.0382%" height="15" fill="rgb(247,98,49)" fg:x="462520" fg:w="206"/><text x="85.9792%" y="751.50"></text></g><g><title>__fget_files (174 samples, 0.03%)</title><rect x="85.7351%" y="725" width="0.0323%" height="15" fill="rgb(233,75,36)" fg:x="462552" fg:w="174"/><text x="85.9851%" y="735.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="85.8967%" y="725" width="0.0306%" height="15" fill="rgb(225,14,24)" fg:x="463424" fg:w="165"/><text x="86.1467%" y="735.50"></text></g><g><title>generic_fillattr (54 samples, 0.01%)</title><rect x="85.9297%" y="725" width="0.0100%" height="15" fill="rgb(237,193,20)" fg:x="463602" fg:w="54"/><text x="86.1797%" y="735.50"></text></g><g><title>btrfs_getattr (1,070 samples, 0.20%)</title><rect x="85.7673%" y="741" width="0.1983%" height="15" fill="rgb(239,122,19)" fg:x="462726" fg:w="1070"/><text x="86.0173%" y="751.50"></text></g><g><title>inode_get_bytes (140 samples, 0.03%)</title><rect x="85.9397%" y="725" width="0.0259%" height="15" fill="rgb(231,220,10)" fg:x="463656" fg:w="140"/><text x="86.1897%" y="735.50"></text></g><g><title>_raw_spin_lock (124 samples, 0.02%)</title><rect x="85.9427%" y="709" width="0.0230%" height="15" fill="rgb(220,66,15)" fg:x="463672" fg:w="124"/><text x="86.1927%" y="719.50"></text></g><g><title>fput_many (89 samples, 0.02%)</title><rect x="85.9666%" y="741" width="0.0165%" height="15" fill="rgb(215,171,52)" fg:x="463801" fg:w="89"/><text x="86.2166%" y="751.50"></text></g><g><title>apparmor_inode_getattr (159 samples, 0.03%)</title><rect x="85.9955%" y="725" width="0.0295%" height="15" fill="rgb(241,169,50)" fg:x="463957" fg:w="159"/><text x="86.2455%" y="735.50"></text></g><g><title>security_inode_getattr (646 samples, 0.12%)</title><rect x="85.9831%" y="741" width="0.1197%" height="15" fill="rgb(236,189,0)" fg:x="463890" fg:w="646"/><text x="86.2331%" y="751.50"></text></g><g><title>tomoyo_path_perm (416 samples, 0.08%)</title><rect x="86.0257%" y="725" width="0.0771%" height="15" fill="rgb(217,147,20)" fg:x="464120" fg:w="416"/><text x="86.2757%" y="735.50"></text></g><g><title>tomoyo_init_request_info (209 samples, 0.04%)</title><rect x="86.0641%" y="709" width="0.0387%" height="15" fill="rgb(206,188,39)" fg:x="464327" fg:w="209"/><text x="86.3141%" y="719.50"></text></g><g><title>tomoyo_domain (62 samples, 0.01%)</title><rect x="86.0913%" y="693" width="0.0115%" height="15" fill="rgb(227,118,25)" fg:x="464474" fg:w="62"/><text x="86.3413%" y="703.50"></text></g><g><title>__do_sys_newfstat (2,914 samples, 0.54%)</title><rect x="85.6083%" y="773" width="0.5401%" height="15" fill="rgb(248,171,40)" fg:x="461868" fg:w="2914"/><text x="85.8583%" y="783.50"></text></g><g><title>vfs_fstat (2,297 samples, 0.43%)</title><rect x="85.7227%" y="757" width="0.4258%" height="15" fill="rgb(251,90,54)" fg:x="462485" fg:w="2297"/><text x="85.9727%" y="767.50"></text></g><g><title>vfs_getattr_nosec (246 samples, 0.05%)</title><rect x="86.1028%" y="741" width="0.0456%" height="15" fill="rgb(234,11,46)" fg:x="464536" fg:w="246"/><text x="86.3528%" y="751.50"></text></g><g><title>__do_sys_newstat (63 samples, 0.01%)</title><rect x="86.1484%" y="773" width="0.0117%" height="15" fill="rgb(229,134,13)" fg:x="464782" fg:w="63"/><text x="86.3984%" y="783.50"></text></g><g><title>vfs_statx (60 samples, 0.01%)</title><rect x="86.1490%" y="757" width="0.0111%" height="15" fill="rgb(223,129,3)" fg:x="464785" fg:w="60"/><text x="86.3990%" y="767.50"></text></g><g><title>__close_fd (189 samples, 0.04%)</title><rect x="86.1625%" y="757" width="0.0350%" height="15" fill="rgb(221,124,13)" fg:x="464858" fg:w="189"/><text x="86.4125%" y="767.50"></text></g><g><title>pick_file (177 samples, 0.03%)</title><rect x="86.1647%" y="741" width="0.0328%" height="15" fill="rgb(234,3,18)" fg:x="464870" fg:w="177"/><text x="86.4147%" y="751.50"></text></g><g><title>_raw_spin_lock (127 samples, 0.02%)</title><rect x="86.1740%" y="725" width="0.0235%" height="15" fill="rgb(249,199,20)" fg:x="464920" fg:w="127"/><text x="86.4240%" y="735.50"></text></g><g><title>fput_many (378 samples, 0.07%)</title><rect x="86.2124%" y="741" width="0.0701%" height="15" fill="rgb(224,134,6)" fg:x="465127" fg:w="378"/><text x="86.4624%" y="751.50"></text></g><g><title>task_work_add (254 samples, 0.05%)</title><rect x="86.2354%" y="725" width="0.0471%" height="15" fill="rgb(254,83,26)" fg:x="465251" fg:w="254"/><text x="86.4854%" y="735.50"></text></g><g><title>__x64_sys_close (734 samples, 0.14%)</title><rect x="86.1605%" y="773" width="0.1360%" height="15" fill="rgb(217,88,9)" fg:x="464847" fg:w="734"/><text x="86.4105%" y="783.50"></text></g><g><title>filp_close (534 samples, 0.10%)</title><rect x="86.1976%" y="757" width="0.0990%" height="15" fill="rgb(225,73,2)" fg:x="465047" fg:w="534"/><text x="86.4476%" y="767.50"></text></g><g><title>locks_remove_posix (76 samples, 0.01%)</title><rect x="86.2824%" y="741" width="0.0141%" height="15" fill="rgb(226,44,39)" fg:x="465505" fg:w="76"/><text x="86.5324%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (157 samples, 0.03%)</title><rect x="86.3025%" y="645" width="0.0291%" height="15" fill="rgb(228,53,17)" fg:x="465613" fg:w="157"/><text x="86.5525%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (156 samples, 0.03%)</title><rect x="86.3026%" y="629" width="0.0289%" height="15" fill="rgb(212,27,27)" fg:x="465614" fg:w="156"/><text x="86.5526%" y="639.50"></text></g><g><title>native_write_msr (155 samples, 0.03%)</title><rect x="86.3028%" y="613" width="0.0287%" height="15" fill="rgb(241,50,6)" fg:x="465615" fg:w="155"/><text x="86.5528%" y="623.50"></text></g><g><title>finish_task_switch (167 samples, 0.03%)</title><rect x="86.3023%" y="661" width="0.0310%" height="15" fill="rgb(225,28,51)" fg:x="465612" fg:w="167"/><text x="86.5523%" y="671.50"></text></g><g><title>schedule (170 samples, 0.03%)</title><rect x="86.3021%" y="693" width="0.0315%" height="15" fill="rgb(215,33,16)" fg:x="465611" fg:w="170"/><text x="86.5521%" y="703.50"></text></g><g><title>__schedule (170 samples, 0.03%)</title><rect x="86.3021%" y="677" width="0.0315%" height="15" fill="rgb(243,40,39)" fg:x="465611" fg:w="170"/><text x="86.5521%" y="687.50"></text></g><g><title>begin_new_exec (196 samples, 0.04%)</title><rect x="86.2995%" y="709" width="0.0363%" height="15" fill="rgb(225,11,42)" fg:x="465597" fg:w="196"/><text x="86.5495%" y="719.50"></text></g><g><title>load_elf_binary (198 samples, 0.04%)</title><rect x="86.2995%" y="725" width="0.0367%" height="15" fill="rgb(241,220,38)" fg:x="465597" fg:w="198"/><text x="86.5495%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.01%)</title><rect x="86.3373%" y="645" width="0.0132%" height="15" fill="rgb(244,52,35)" fg:x="465801" fg:w="71"/><text x="86.5873%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.01%)</title><rect x="86.3373%" y="629" width="0.0132%" height="15" fill="rgb(246,42,46)" fg:x="465801" fg:w="71"/><text x="86.5873%" y="639.50"></text></g><g><title>native_write_msr (70 samples, 0.01%)</title><rect x="86.3375%" y="613" width="0.0130%" height="15" fill="rgb(205,184,13)" fg:x="465802" fg:w="70"/><text x="86.5875%" y="623.50"></text></g><g><title>sched_exec (78 samples, 0.01%)</title><rect x="86.3368%" y="725" width="0.0145%" height="15" fill="rgb(209,48,36)" fg:x="465798" fg:w="78"/><text x="86.5868%" y="735.50"></text></g><g><title>stop_one_cpu (77 samples, 0.01%)</title><rect x="86.3369%" y="709" width="0.0143%" height="15" fill="rgb(244,34,51)" fg:x="465799" fg:w="77"/><text x="86.5869%" y="719.50"></text></g><g><title>_cond_resched (75 samples, 0.01%)</title><rect x="86.3373%" y="693" width="0.0139%" height="15" fill="rgb(221,107,33)" fg:x="465801" fg:w="75"/><text x="86.5873%" y="703.50"></text></g><g><title>__schedule (75 samples, 0.01%)</title><rect x="86.3373%" y="677" width="0.0139%" height="15" fill="rgb(224,203,12)" fg:x="465801" fg:w="75"/><text x="86.5873%" y="687.50"></text></g><g><title>finish_task_switch (75 samples, 0.01%)</title><rect x="86.3373%" y="661" width="0.0139%" height="15" fill="rgb(230,215,18)" fg:x="465801" fg:w="75"/><text x="86.5873%" y="671.50"></text></g><g><title>bprm_execve (314 samples, 0.06%)</title><rect x="86.2976%" y="741" width="0.0582%" height="15" fill="rgb(206,185,35)" fg:x="465587" fg:w="314"/><text x="86.5476%" y="751.50"></text></g><g><title>do_execveat_common (376 samples, 0.07%)</title><rect x="86.2967%" y="757" width="0.0697%" height="15" fill="rgb(228,140,34)" fg:x="465582" fg:w="376"/><text x="86.5467%" y="767.50"></text></g><g><title>__x64_sys_execve (378 samples, 0.07%)</title><rect x="86.2965%" y="773" width="0.0701%" height="15" fill="rgb(208,93,13)" fg:x="465581" fg:w="378"/><text x="86.5465%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="86.3753%" y="693" width="0.0196%" height="15" fill="rgb(221,193,39)" fg:x="466006" fg:w="106"/><text x="86.6253%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="86.3759%" y="677" width="0.0191%" height="15" fill="rgb(241,132,34)" fg:x="466009" fg:w="103"/><text x="86.6259%" y="687.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="86.3762%" y="661" width="0.0187%" height="15" fill="rgb(221,141,10)" fg:x="466011" fg:w="101"/><text x="86.6262%" y="671.50"></text></g><g><title>finish_task_switch (112 samples, 0.02%)</title><rect x="86.3747%" y="709" width="0.0208%" height="15" fill="rgb(226,90,31)" fg:x="466003" fg:w="112"/><text x="86.6247%" y="719.50"></text></g><g><title>__x64_sys_flock (122 samples, 0.02%)</title><rect x="86.3731%" y="773" width="0.0226%" height="15" fill="rgb(243,75,5)" fg:x="465994" fg:w="122"/><text x="86.6231%" y="783.50"></text></g><g><title>locks_lock_inode_wait (121 samples, 0.02%)</title><rect x="86.3733%" y="757" width="0.0224%" height="15" fill="rgb(227,156,21)" fg:x="465995" fg:w="121"/><text x="86.6233%" y="767.50"></text></g><g><title>schedule (113 samples, 0.02%)</title><rect x="86.3747%" y="741" width="0.0209%" height="15" fill="rgb(250,195,8)" fg:x="466003" fg:w="113"/><text x="86.6247%" y="751.50"></text></g><g><title>__schedule (113 samples, 0.02%)</title><rect x="86.3747%" y="725" width="0.0209%" height="15" fill="rgb(220,134,5)" fg:x="466003" fg:w="113"/><text x="86.6247%" y="735.50"></text></g><g><title>dequeue_entity (77 samples, 0.01%)</title><rect x="86.4367%" y="661" width="0.0143%" height="15" fill="rgb(246,106,34)" fg:x="466337" fg:w="77"/><text x="86.6867%" y="671.50"></text></g><g><title>dequeue_task_fair (105 samples, 0.02%)</title><rect x="86.4350%" y="677" width="0.0195%" height="15" fill="rgb(205,1,4)" fg:x="466328" fg:w="105"/><text x="86.6850%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (3,863 samples, 0.72%)</title><rect x="86.4678%" y="661" width="0.7160%" height="15" fill="rgb(224,151,29)" fg:x="466505" fg:w="3863"/><text x="86.7178%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,803 samples, 0.70%)</title><rect x="86.4789%" y="645" width="0.7049%" height="15" fill="rgb(251,196,0)" fg:x="466565" fg:w="3803"/><text x="86.7289%" y="655.50"></text></g><g><title>native_write_msr (3,769 samples, 0.70%)</title><rect x="86.4852%" y="629" width="0.6986%" height="15" fill="rgb(212,127,0)" fg:x="466599" fg:w="3769"/><text x="86.7352%" y="639.50"></text></g><g><title>asm_sysvec_irq_work (59 samples, 0.01%)</title><rect x="87.1868%" y="661" width="0.0109%" height="15" fill="rgb(236,71,53)" fg:x="470384" fg:w="59"/><text x="87.4368%" y="671.50"></text></g><g><title>put_task_stack (102 samples, 0.02%)</title><rect x="87.2035%" y="661" width="0.0189%" height="15" fill="rgb(227,99,0)" fg:x="470474" fg:w="102"/><text x="87.4535%" y="671.50"></text></g><g><title>finish_task_switch (4,152 samples, 0.77%)</title><rect x="86.4545%" y="677" width="0.7696%" height="15" fill="rgb(239,89,21)" fg:x="466433" fg:w="4152"/><text x="86.7045%" y="687.50"></text></g><g><title>pick_next_task_fair (73 samples, 0.01%)</title><rect x="87.2240%" y="677" width="0.0135%" height="15" fill="rgb(243,122,19)" fg:x="470585" fg:w="73"/><text x="87.4740%" y="687.50"></text></g><g><title>psi_task_change (70 samples, 0.01%)</title><rect x="87.2396%" y="677" width="0.0130%" height="15" fill="rgb(229,192,45)" fg:x="470669" fg:w="70"/><text x="87.4896%" y="687.50"></text></g><g><title>psi_group_change (59 samples, 0.01%)</title><rect x="87.2416%" y="661" width="0.0109%" height="15" fill="rgb(235,165,35)" fg:x="470680" fg:w="59"/><text x="87.4916%" y="671.50"></text></g><g><title>futex_wait_queue_me (4,579 samples, 0.85%)</title><rect x="86.4131%" y="725" width="0.8487%" height="15" fill="rgb(253,202,0)" fg:x="466210" fg:w="4579"/><text x="86.6631%" y="735.50"></text></g><g><title>schedule (4,548 samples, 0.84%)</title><rect x="86.4189%" y="709" width="0.8430%" height="15" fill="rgb(235,51,20)" fg:x="466241" fg:w="4548"/><text x="86.6689%" y="719.50"></text></g><g><title>__schedule (4,541 samples, 0.84%)</title><rect x="86.4202%" y="693" width="0.8417%" height="15" fill="rgb(218,95,46)" fg:x="466248" fg:w="4541"/><text x="86.6702%" y="703.50"></text></g><g><title>futex_wait (4,654 samples, 0.86%)</title><rect x="86.4064%" y="741" width="0.8626%" height="15" fill="rgb(212,81,10)" fg:x="466174" fg:w="4654"/><text x="86.6564%" y="751.50"></text></g><g><title>select_task_rq_fair (55 samples, 0.01%)</title><rect x="87.2902%" y="693" width="0.0102%" height="15" fill="rgb(240,59,0)" fg:x="470942" fg:w="55"/><text x="87.5402%" y="703.50"></text></g><g><title>ttwu_do_activate (82 samples, 0.02%)</title><rect x="87.3008%" y="693" width="0.0152%" height="15" fill="rgb(212,191,42)" fg:x="470999" fg:w="82"/><text x="87.5508%" y="703.50"></text></g><g><title>__x64_sys_futex (4,963 samples, 0.92%)</title><rect x="86.4009%" y="773" width="0.9199%" height="15" fill="rgb(233,140,3)" fg:x="466144" fg:w="4963"/><text x="86.6509%" y="783.50"></text></g><g><title>do_futex (4,950 samples, 0.92%)</title><rect x="86.4033%" y="757" width="0.9175%" height="15" fill="rgb(215,69,23)" fg:x="466157" fg:w="4950"/><text x="86.6533%" y="767.50"></text></g><g><title>futex_wake (279 samples, 0.05%)</title><rect x="87.2691%" y="741" width="0.0517%" height="15" fill="rgb(240,202,20)" fg:x="470828" fg:w="279"/><text x="87.5191%" y="751.50"></text></g><g><title>wake_up_q (239 samples, 0.04%)</title><rect x="87.2765%" y="725" width="0.0443%" height="15" fill="rgb(209,146,50)" fg:x="470868" fg:w="239"/><text x="87.5265%" y="735.50"></text></g><g><title>try_to_wake_up (237 samples, 0.04%)</title><rect x="87.2769%" y="709" width="0.0439%" height="15" fill="rgb(253,102,54)" fg:x="470870" fg:w="237"/><text x="87.5269%" y="719.50"></text></g><g><title>__vma_adjust (72 samples, 0.01%)</title><rect x="87.3341%" y="709" width="0.0133%" height="15" fill="rgb(250,173,47)" fg:x="471179" fg:w="72"/><text x="87.5841%" y="719.50"></text></g><g><title>__split_vma (190 samples, 0.04%)</title><rect x="87.3339%" y="725" width="0.0352%" height="15" fill="rgb(232,142,7)" fg:x="471178" fg:w="190"/><text x="87.5839%" y="735.50"></text></g><g><title>vm_area_dup (69 samples, 0.01%)</title><rect x="87.3564%" y="709" width="0.0128%" height="15" fill="rgb(230,157,47)" fg:x="471299" fg:w="69"/><text x="87.6064%" y="719.50"></text></g><g><title>lru_add_drain_cpu (82 samples, 0.02%)</title><rect x="87.3946%" y="693" width="0.0152%" height="15" fill="rgb(214,177,35)" fg:x="471505" fg:w="82"/><text x="87.6446%" y="703.50"></text></g><g><title>pagevec_lru_move_fn (78 samples, 0.01%)</title><rect x="87.3953%" y="677" width="0.0145%" height="15" fill="rgb(234,119,46)" fg:x="471509" fg:w="78"/><text x="87.6453%" y="687.50"></text></g><g><title>lru_add_drain (84 samples, 0.02%)</title><rect x="87.3946%" y="709" width="0.0156%" height="15" fill="rgb(241,180,50)" fg:x="471505" fg:w="84"/><text x="87.6446%" y="719.50"></text></g><g><title>flush_tlb_mm_range (67 samples, 0.01%)</title><rect x="87.4116%" y="693" width="0.0124%" height="15" fill="rgb(221,54,25)" fg:x="471597" fg:w="67"/><text x="87.6616%" y="703.50"></text></g><g><title>free_pcppages_bulk (71 samples, 0.01%)</title><rect x="87.4744%" y="661" width="0.0132%" height="15" fill="rgb(209,157,44)" fg:x="471936" fg:w="71"/><text x="87.7244%" y="671.50"></text></g><g><title>free_unref_page_list (158 samples, 0.03%)</title><rect x="87.4631%" y="677" width="0.0293%" height="15" fill="rgb(246,115,41)" fg:x="471875" fg:w="158"/><text x="87.7131%" y="687.50"></text></g><g><title>tlb_finish_mmu (494 samples, 0.09%)</title><rect x="87.4101%" y="709" width="0.0916%" height="15" fill="rgb(229,86,1)" fg:x="471589" fg:w="494"/><text x="87.6601%" y="719.50"></text></g><g><title>release_pages (399 samples, 0.07%)</title><rect x="87.4277%" y="693" width="0.0740%" height="15" fill="rgb(240,108,53)" fg:x="471684" fg:w="399"/><text x="87.6777%" y="703.50"></text></g><g><title>page_remove_rmap (85 samples, 0.02%)</title><rect x="87.5321%" y="677" width="0.0158%" height="15" fill="rgb(227,134,2)" fg:x="472247" fg:w="85"/><text x="87.7821%" y="687.50"></text></g><g><title>unmap_page_range (274 samples, 0.05%)</title><rect x="87.5028%" y="693" width="0.0508%" height="15" fill="rgb(213,129,25)" fg:x="472089" fg:w="274"/><text x="87.7528%" y="703.50"></text></g><g><title>unmap_region (933 samples, 0.17%)</title><rect x="87.3812%" y="725" width="0.1729%" height="15" fill="rgb(226,35,21)" fg:x="471433" fg:w="933"/><text x="87.6312%" y="735.50"></text></g><g><title>unmap_vmas (281 samples, 0.05%)</title><rect x="87.5021%" y="709" width="0.0521%" height="15" fill="rgb(208,129,26)" fg:x="472085" fg:w="281"/><text x="87.7521%" y="719.50"></text></g><g><title>__do_munmap (1,210 samples, 0.22%)</title><rect x="87.3308%" y="741" width="0.2243%" height="15" fill="rgb(224,83,6)" fg:x="471161" fg:w="1210"/><text x="87.5808%" y="751.50"></text></g><g><title>__vm_munmap (1,214 samples, 0.23%)</title><rect x="87.3308%" y="757" width="0.2250%" height="15" fill="rgb(227,52,39)" fg:x="471161" fg:w="1214"/><text x="87.5808%" y="767.50"></text></g><g><title>__x64_sys_munmap (1,222 samples, 0.23%)</title><rect x="87.3306%" y="773" width="0.2265%" height="15" fill="rgb(241,30,17)" fg:x="471160" fg:w="1222"/><text x="87.5806%" y="783.50"></text></g><g><title>link_path_walk.part.0 (66 samples, 0.01%)</title><rect x="87.5725%" y="709" width="0.0122%" height="15" fill="rgb(246,186,42)" fg:x="472465" fg:w="66"/><text x="87.8225%" y="719.50"></text></g><g><title>do_filp_open (173 samples, 0.03%)</title><rect x="87.5601%" y="741" width="0.0321%" height="15" fill="rgb(221,169,15)" fg:x="472398" fg:w="173"/><text x="87.8101%" y="751.50"></text></g><g><title>path_openat (169 samples, 0.03%)</title><rect x="87.5608%" y="725" width="0.0313%" height="15" fill="rgb(235,108,21)" fg:x="472402" fg:w="169"/><text x="87.8108%" y="735.50"></text></g><g><title>__x64_sys_open (203 samples, 0.04%)</title><rect x="87.5588%" y="773" width="0.0376%" height="15" fill="rgb(219,148,30)" fg:x="472391" fg:w="203"/><text x="87.8088%" y="783.50"></text></g><g><title>do_sys_openat2 (201 samples, 0.04%)</title><rect x="87.5592%" y="757" width="0.0373%" height="15" fill="rgb(220,109,5)" fg:x="472393" fg:w="201"/><text x="87.8092%" y="767.50"></text></g><g><title>_raw_spin_lock (122 samples, 0.02%)</title><rect x="87.6772%" y="725" width="0.0226%" height="15" fill="rgb(213,203,48)" fg:x="473030" fg:w="122"/><text x="87.9272%" y="735.50"></text></g><g><title>expand_files (62 samples, 0.01%)</title><rect x="87.7004%" y="725" width="0.0115%" height="15" fill="rgb(244,71,33)" fg:x="473155" fg:w="62"/><text x="87.9504%" y="735.50"></text></g><g><title>__alloc_fd (442 samples, 0.08%)</title><rect x="87.6324%" y="741" width="0.0819%" height="15" fill="rgb(209,23,2)" fg:x="472788" fg:w="442"/><text x="87.8824%" y="751.50"></text></g><g><title>__fd_install (128 samples, 0.02%)</title><rect x="87.7143%" y="741" width="0.0237%" height="15" fill="rgb(219,97,7)" fg:x="473230" fg:w="128"/><text x="87.9643%" y="751.50"></text></g><g><title>__fsnotify_parent (54 samples, 0.01%)</title><rect x="87.7380%" y="741" width="0.0100%" height="15" fill="rgb(216,161,23)" fg:x="473358" fg:w="54"/><text x="87.9880%" y="751.50"></text></g><g><title>build_open_flags (110 samples, 0.02%)</title><rect x="87.7484%" y="741" width="0.0204%" height="15" fill="rgb(207,45,42)" fg:x="473414" fg:w="110"/><text x="87.9984%" y="751.50"></text></g><g><title>kernel_init_free_pages (98 samples, 0.02%)</title><rect x="88.0238%" y="565" width="0.0182%" height="15" fill="rgb(241,61,4)" fg:x="474900" fg:w="98"/><text x="88.2738%" y="575.50"></text></g><g><title>clear_page_erms (96 samples, 0.02%)</title><rect x="88.0242%" y="549" width="0.0178%" height="15" fill="rgb(236,170,1)" fg:x="474902" fg:w="96"/><text x="88.2742%" y="559.50"></text></g><g><title>get_page_from_freelist (162 samples, 0.03%)</title><rect x="88.0122%" y="597" width="0.0300%" height="15" fill="rgb(239,72,5)" fg:x="474837" fg:w="162"/><text x="88.2622%" y="607.50"></text></g><g><title>prep_new_page (102 samples, 0.02%)</title><rect x="88.0233%" y="581" width="0.0189%" height="15" fill="rgb(214,13,50)" fg:x="474897" fg:w="102"/><text x="88.2733%" y="591.50"></text></g><g><title>__alloc_pages_nodemask (183 samples, 0.03%)</title><rect x="88.0084%" y="613" width="0.0339%" height="15" fill="rgb(224,88,9)" fg:x="474817" fg:w="183"/><text x="88.2584%" y="623.50"></text></g><g><title>allocate_slab (317 samples, 0.06%)</title><rect x="87.9970%" y="629" width="0.0588%" height="15" fill="rgb(238,192,34)" fg:x="474755" fg:w="317"/><text x="88.2470%" y="639.50"></text></g><g><title>__slab_alloc (418 samples, 0.08%)</title><rect x="87.9819%" y="661" width="0.0775%" height="15" fill="rgb(217,203,50)" fg:x="474674" fg:w="418"/><text x="88.2319%" y="671.50"></text></g><g><title>___slab_alloc (402 samples, 0.07%)</title><rect x="87.9849%" y="645" width="0.0745%" height="15" fill="rgb(241,123,32)" fg:x="474690" fg:w="402"/><text x="88.2349%" y="655.50"></text></g><g><title>__mod_memcg_lruvec_state (161 samples, 0.03%)</title><rect x="88.1601%" y="645" width="0.0298%" height="15" fill="rgb(248,151,39)" fg:x="475635" fg:w="161"/><text x="88.4101%" y="655.50"></text></g><g><title>__mod_memcg_state.part.0 (100 samples, 0.02%)</title><rect x="88.1714%" y="629" width="0.0185%" height="15" fill="rgb(208,89,6)" fg:x="475696" fg:w="100"/><text x="88.4214%" y="639.50"></text></g><g><title>memcg_alloc_page_obj_cgroups (55 samples, 0.01%)</title><rect x="88.1901%" y="645" width="0.0102%" height="15" fill="rgb(254,43,26)" fg:x="475797" fg:w="55"/><text x="88.4401%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (783 samples, 0.15%)</title><rect x="88.0600%" y="661" width="0.1451%" height="15" fill="rgb(216,158,13)" fg:x="475095" fg:w="783"/><text x="88.3100%" y="671.50"></text></g><g><title>memset_erms (130 samples, 0.02%)</title><rect x="88.2055%" y="661" width="0.0241%" height="15" fill="rgb(212,47,37)" fg:x="475880" fg:w="130"/><text x="88.4555%" y="671.50"></text></g><g><title>_cond_resched (70 samples, 0.01%)</title><rect x="88.2492%" y="645" width="0.0130%" height="15" fill="rgb(254,16,10)" fg:x="476116" fg:w="70"/><text x="88.4992%" y="655.50"></text></g><g><title>get_obj_cgroup_from_current (523 samples, 0.10%)</title><rect x="88.2622%" y="645" width="0.0969%" height="15" fill="rgb(223,228,16)" fg:x="476186" fg:w="523"/><text x="88.5122%" y="655.50"></text></g><g><title>obj_cgroup_charge (195 samples, 0.04%)</title><rect x="88.3591%" y="645" width="0.0361%" height="15" fill="rgb(249,108,50)" fg:x="476709" fg:w="195"/><text x="88.6091%" y="655.50"></text></g><g><title>kmem_cache_alloc (2,565 samples, 0.48%)</title><rect x="87.9221%" y="677" width="0.4754%" height="15" fill="rgb(208,220,5)" fg:x="474351" fg:w="2565"/><text x="88.1721%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (902 samples, 0.17%)</title><rect x="88.2303%" y="661" width="0.1672%" height="15" fill="rgb(217,89,48)" fg:x="476014" fg:w="902"/><text x="88.4803%" y="671.50"></text></g><g><title>apparmor_file_alloc_security (544 samples, 0.10%)</title><rect x="88.4140%" y="661" width="0.1008%" height="15" fill="rgb(212,113,41)" fg:x="477005" fg:w="544"/><text x="88.6640%" y="671.50"></text></g><g><title>memset_erms (103 samples, 0.02%)</title><rect x="88.5580%" y="645" width="0.0191%" height="15" fill="rgb(231,127,5)" fg:x="477782" fg:w="103"/><text x="88.8080%" y="655.50"></text></g><g><title>__alloc_file (3,818 samples, 0.71%)</title><rect x="87.8793%" y="693" width="0.7077%" height="15" fill="rgb(217,141,17)" fg:x="474120" fg:w="3818"/><text x="88.1293%" y="703.50"></text></g><g><title>security_file_alloc (1,022 samples, 0.19%)</title><rect x="88.3975%" y="677" width="0.1894%" height="15" fill="rgb(245,125,54)" fg:x="476916" fg:w="1022"/><text x="88.6475%" y="687.50"></text></g><g><title>kmem_cache_alloc (389 samples, 0.07%)</title><rect x="88.5148%" y="661" width="0.0721%" height="15" fill="rgb(248,125,3)" fg:x="477549" fg:w="389"/><text x="88.7648%" y="671.50"></text></g><g><title>alloc_empty_file (3,892 samples, 0.72%)</title><rect x="87.8726%" y="709" width="0.7214%" height="15" fill="rgb(236,119,51)" fg:x="474084" fg:w="3892"/><text x="88.1226%" y="719.50"></text></g><g><title>__fsnotify_parent (78 samples, 0.01%)</title><rect x="88.6737%" y="693" width="0.0145%" height="15" fill="rgb(239,99,8)" fg:x="478406" fg:w="78"/><text x="88.9237%" y="703.50"></text></g><g><title>errseq_sample (298 samples, 0.06%)</title><rect x="88.6907%" y="693" width="0.0552%" height="15" fill="rgb(224,228,4)" fg:x="478498" fg:w="298"/><text x="88.9407%" y="703.50"></text></g><g><title>file_ra_state_init (112 samples, 0.02%)</title><rect x="88.7460%" y="693" width="0.0208%" height="15" fill="rgb(220,131,45)" fg:x="478796" fg:w="112"/><text x="88.9960%" y="703.50"></text></g><g><title>lockref_get (116 samples, 0.02%)</title><rect x="88.7673%" y="693" width="0.0215%" height="15" fill="rgb(215,62,5)" fg:x="478911" fg:w="116"/><text x="89.0173%" y="703.50"></text></g><g><title>path_get (63 samples, 0.01%)</title><rect x="88.7888%" y="693" width="0.0117%" height="15" fill="rgb(253,12,24)" fg:x="479027" fg:w="63"/><text x="89.0388%" y="703.50"></text></g><g><title>apparmor_file_open (479 samples, 0.09%)</title><rect x="88.8108%" y="677" width="0.0888%" height="15" fill="rgb(248,120,50)" fg:x="479146" fg:w="479"/><text x="89.0608%" y="687.50"></text></g><g><title>__srcu_read_lock (148 samples, 0.03%)</title><rect x="88.9322%" y="661" width="0.0274%" height="15" fill="rgb(245,194,10)" fg:x="479801" fg:w="148"/><text x="89.1822%" y="671.50"></text></g><g><title>__srcu_read_unlock (112 samples, 0.02%)</title><rect x="88.9597%" y="661" width="0.0208%" height="15" fill="rgb(241,149,38)" fg:x="479949" fg:w="112"/><text x="89.2097%" y="671.50"></text></g><g><title>tomoyo_check_open_permission (584 samples, 0.11%)</title><rect x="88.8996%" y="677" width="0.1082%" height="15" fill="rgb(219,215,7)" fg:x="479625" fg:w="584"/><text x="89.1496%" y="687.50"></text></g><g><title>tomoyo_init_request_info (115 samples, 0.02%)</title><rect x="88.9865%" y="661" width="0.0213%" height="15" fill="rgb(208,120,31)" fg:x="480094" fg:w="115"/><text x="89.2365%" y="671.50"></text></g><g><title>security_file_open (1,152 samples, 0.21%)</title><rect x="88.8005%" y="693" width="0.2135%" height="15" fill="rgb(244,30,8)" fg:x="479090" fg:w="1152"/><text x="89.0505%" y="703.50"></text></g><g><title>do_dentry_open (2,256 samples, 0.42%)</title><rect x="88.5975%" y="709" width="0.4182%" height="15" fill="rgb(238,35,44)" fg:x="477995" fg:w="2256"/><text x="88.8475%" y="719.50"></text></g><g><title>btrfs_dentry_delete (600 samples, 0.11%)</title><rect x="89.0284%" y="693" width="0.1112%" height="15" fill="rgb(243,218,37)" fg:x="480320" fg:w="600"/><text x="89.2784%" y="703.50"></text></g><g><title>lockref_put_or_lock (105 samples, 0.02%)</title><rect x="89.1397%" y="693" width="0.0195%" height="15" fill="rgb(218,169,10)" fg:x="480920" fg:w="105"/><text x="89.3897%" y="703.50"></text></g><g><title>_raw_spin_lock (85 samples, 0.02%)</title><rect x="89.1434%" y="677" width="0.0158%" height="15" fill="rgb(221,144,10)" fg:x="480940" fg:w="85"/><text x="89.3934%" y="687.50"></text></g><g><title>dput (770 samples, 0.14%)</title><rect x="89.0168%" y="709" width="0.1427%" height="15" fill="rgb(226,41,38)" fg:x="480257" fg:w="770"/><text x="89.2668%" y="719.50"></text></g><g><title>btrfs_permission (200 samples, 0.04%)</title><rect x="90.6829%" y="677" width="0.0371%" height="15" fill="rgb(228,3,1)" fg:x="489246" fg:w="200"/><text x="90.9329%" y="687.50"></text></g><g><title>get_acl (123 samples, 0.02%)</title><rect x="90.9537%" y="661" width="0.0228%" height="15" fill="rgb(209,129,12)" fg:x="490707" fg:w="123"/><text x="91.2037%" y="671.50"></text></g><g><title>get_cached_acl (77 samples, 0.01%)</title><rect x="90.9622%" y="645" width="0.0143%" height="15" fill="rgb(213,136,33)" fg:x="490753" fg:w="77"/><text x="91.2122%" y="655.50"></text></g><g><title>inode_permission.part.0 (4,542 samples, 0.84%)</title><rect x="90.1374%" y="693" width="0.8419%" height="15" fill="rgb(209,181,29)" fg:x="486303" fg:w="4542"/><text x="90.3874%" y="703.50"></text></g><g><title>generic_permission (1,399 samples, 0.26%)</title><rect x="90.7200%" y="677" width="0.2593%" height="15" fill="rgb(234,173,18)" fg:x="489446" fg:w="1399"/><text x="90.9700%" y="687.50"></text></g><g><title>security_inode_permission (523 samples, 0.10%)</title><rect x="90.9793%" y="693" width="0.0969%" height="15" fill="rgb(227,73,47)" fg:x="490845" fg:w="523"/><text x="91.2293%" y="703.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="91.4258%" y="645" width="0.0195%" height="15" fill="rgb(234,9,34)" fg:x="493254" fg:w="105"/><text x="91.6758%" y="655.50"></text></g><g><title>dput (460 samples, 0.09%)</title><rect x="91.3604%" y="677" width="0.0853%" height="15" fill="rgb(235,172,15)" fg:x="492901" fg:w="460"/><text x="91.6104%" y="687.50"></text></g><g><title>lockref_put_or_lock (340 samples, 0.06%)</title><rect x="91.3826%" y="661" width="0.0630%" height="15" fill="rgb(245,61,2)" fg:x="493021" fg:w="340"/><text x="91.6326%" y="671.50"></text></g><g><title>_raw_spin_lock (3,828 samples, 0.71%)</title><rect x="92.1170%" y="645" width="0.7095%" height="15" fill="rgb(238,39,47)" fg:x="496983" fg:w="3828"/><text x="92.3670%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (405 samples, 0.08%)</title><rect x="92.7514%" y="629" width="0.0751%" height="15" fill="rgb(234,37,24)" fg:x="500406" fg:w="405"/><text x="93.0014%" y="639.50"></text></g><g><title>__d_lookup (6,212 samples, 1.15%)</title><rect x="91.6862%" y="661" width="1.1514%" height="15" fill="rgb(248,223,24)" fg:x="494659" fg:w="6212"/><text x="91.9362%" y="671.50"></text></g><g><title>__d_lookup_rcu (3,275 samples, 0.61%)</title><rect x="92.8376%" y="661" width="0.6070%" height="15" fill="rgb(223,12,15)" fg:x="500871" fg:w="3275"/><text x="93.0876%" y="671.50"></text></g><g><title>lookup_fast (10,794 samples, 2.00%)</title><rect x="91.4456%" y="677" width="2.0007%" height="15" fill="rgb(249,6,3)" fg:x="493361" fg:w="10794"/><text x="91.6956%" y="687.50">l..</text></g><g><title>mntput_no_expire (56 samples, 0.01%)</title><rect x="93.4484%" y="677" width="0.0104%" height="15" fill="rgb(237,105,33)" fg:x="504166" fg:w="56"/><text x="93.6984%" y="687.50"></text></g><g><title>page_put_link (286 samples, 0.05%)</title><rect x="93.4587%" y="677" width="0.0530%" height="15" fill="rgb(252,208,35)" fg:x="504222" fg:w="286"/><text x="93.7087%" y="687.50"></text></g><g><title>__lookup_mnt (112 samples, 0.02%)</title><rect x="93.9284%" y="661" width="0.0208%" height="15" fill="rgb(215,181,35)" fg:x="506756" fg:w="112"/><text x="94.1784%" y="671.50"></text></g><g><title>__traverse_mounts (270 samples, 0.05%)</title><rect x="93.9492%" y="661" width="0.0500%" height="15" fill="rgb(246,212,3)" fg:x="506868" fg:w="270"/><text x="94.1992%" y="671.50"></text></g><g><title>lookup_mnt (126 samples, 0.02%)</title><rect x="93.9759%" y="645" width="0.0234%" height="15" fill="rgb(247,156,24)" fg:x="507012" fg:w="126"/><text x="94.2259%" y="655.50"></text></g><g><title>atime_needs_update (153 samples, 0.03%)</title><rect x="94.0029%" y="661" width="0.0284%" height="15" fill="rgb(248,9,31)" fg:x="507158" fg:w="153"/><text x="94.2529%" y="671.50"></text></g><g><title>current_time (64 samples, 0.01%)</title><rect x="94.0194%" y="645" width="0.0119%" height="15" fill="rgb(234,26,45)" fg:x="507247" fg:w="64"/><text x="94.2694%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="94.1449%" y="597" width="0.0102%" height="15" fill="rgb(249,11,32)" fg:x="507924" fg:w="55"/><text x="94.3949%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="94.1451%" y="581" width="0.0100%" height="15" fill="rgb(249,162,33)" fg:x="507925" fg:w="54"/><text x="94.3951%" y="591.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="94.1451%" y="565" width="0.0100%" height="15" fill="rgb(232,4,32)" fg:x="507925" fg:w="54"/><text x="94.3951%" y="575.50"></text></g><g><title>finish_task_switch (60 samples, 0.01%)</title><rect x="94.1443%" y="613" width="0.0111%" height="15" fill="rgb(212,5,45)" fg:x="507921" fg:w="60"/><text x="94.3943%" y="623.50"></text></g><g><title>__schedule (63 samples, 0.01%)</title><rect x="94.1442%" y="629" width="0.0117%" height="15" fill="rgb(227,95,13)" fg:x="507920" fg:w="63"/><text x="94.3942%" y="639.50"></text></g><g><title>_cond_resched (339 samples, 0.06%)</title><rect x="94.1127%" y="645" width="0.0628%" height="15" fill="rgb(223,205,10)" fg:x="507750" fg:w="339"/><text x="94.3627%" y="655.50"></text></g><g><title>rcu_all_qs (105 samples, 0.02%)</title><rect x="94.1560%" y="629" width="0.0195%" height="15" fill="rgb(222,178,8)" fg:x="507984" fg:w="105"/><text x="94.4060%" y="639.50"></text></g><g><title>_raw_spin_lock (154 samples, 0.03%)</title><rect x="94.5773%" y="629" width="0.0285%" height="15" fill="rgb(216,13,22)" fg:x="510257" fg:w="154"/><text x="94.8273%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (87 samples, 0.02%)</title><rect x="94.5898%" y="613" width="0.0161%" height="15" fill="rgb(240,167,12)" fg:x="510324" fg:w="87"/><text x="94.8398%" y="623.50"></text></g><g><title>dput (3,113 samples, 0.58%)</title><rect x="94.0313%" y="661" width="0.5770%" height="15" fill="rgb(235,68,35)" fg:x="507311" fg:w="3113"/><text x="94.2813%" y="671.50"></text></g><g><title>lockref_put_or_lock (2,325 samples, 0.43%)</title><rect x="94.1773%" y="645" width="0.4309%" height="15" fill="rgb(253,40,27)" fg:x="508099" fg:w="2325"/><text x="94.4273%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="94.6229%" y="581" width="0.0150%" height="15" fill="rgb(214,19,28)" fg:x="510503" fg:w="81"/><text x="94.8729%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="94.6229%" y="565" width="0.0150%" height="15" fill="rgb(210,167,45)" fg:x="510503" fg:w="81"/><text x="94.8729%" y="575.50"></text></g><g><title>native_write_msr (81 samples, 0.02%)</title><rect x="94.6229%" y="549" width="0.0150%" height="15" fill="rgb(232,97,40)" fg:x="510503" fg:w="81"/><text x="94.8729%" y="559.50"></text></g><g><title>finish_task_switch (93 samples, 0.02%)</title><rect x="94.6222%" y="597" width="0.0172%" height="15" fill="rgb(250,35,23)" fg:x="510499" fg:w="93"/><text x="94.8722%" y="607.50"></text></g><g><title>__schedule (99 samples, 0.02%)</title><rect x="94.6216%" y="613" width="0.0183%" height="15" fill="rgb(248,47,53)" fg:x="510496" fg:w="99"/><text x="94.8716%" y="623.50"></text></g><g><title>_cond_resched (131 samples, 0.02%)</title><rect x="94.6192%" y="629" width="0.0243%" height="15" fill="rgb(226,58,50)" fg:x="510483" fg:w="131"/><text x="94.8692%" y="639.50"></text></g><g><title>dput (681 samples, 0.13%)</title><rect x="94.6153%" y="645" width="0.1262%" height="15" fill="rgb(217,105,26)" fg:x="510462" fg:w="681"/><text x="94.8653%" y="655.50"></text></g><g><title>lockref_put_or_lock (529 samples, 0.10%)</title><rect x="94.6435%" y="629" width="0.0981%" height="15" fill="rgb(208,64,1)" fg:x="510614" fg:w="529"/><text x="94.8935%" y="639.50"></text></g><g><title>lockref_get (304 samples, 0.06%)</title><rect x="94.7416%" y="645" width="0.0563%" height="15" fill="rgb(214,80,1)" fg:x="511143" fg:w="304"/><text x="94.9916%" y="655.50"></text></g><g><title>nd_jump_root (1,097 samples, 0.20%)</title><rect x="94.6083%" y="661" width="0.2033%" height="15" fill="rgb(206,175,26)" fg:x="510424" fg:w="1097"/><text x="94.8583%" y="671.50"></text></g><g><title>do_read_cache_page (830 samples, 0.15%)</title><rect x="94.8277%" y="645" width="0.1538%" height="15" fill="rgb(235,156,37)" fg:x="511608" fg:w="830"/><text x="95.0777%" y="655.50"></text></g><g><title>pagecache_get_page (732 samples, 0.14%)</title><rect x="94.8459%" y="629" width="0.1357%" height="15" fill="rgb(213,100,9)" fg:x="511706" fg:w="732"/><text x="95.0959%" y="639.50"></text></g><g><title>find_get_entry (663 samples, 0.12%)</title><rect x="94.8587%" y="613" width="0.1229%" height="15" fill="rgb(241,15,13)" fg:x="511775" fg:w="663"/><text x="95.1087%" y="623.50"></text></g><g><title>page_get_link (925 samples, 0.17%)</title><rect x="94.8116%" y="661" width="0.1715%" height="15" fill="rgb(205,97,43)" fg:x="511521" fg:w="925"/><text x="95.0616%" y="671.50"></text></g><g><title>__mnt_want_write (99 samples, 0.02%)</title><rect x="95.0242%" y="645" width="0.0183%" height="15" fill="rgb(216,106,32)" fg:x="512668" fg:w="99"/><text x="95.2742%" y="655.50"></text></g><g><title>touch_atime (441 samples, 0.08%)</title><rect x="94.9866%" y="661" width="0.0817%" height="15" fill="rgb(226,200,8)" fg:x="512465" fg:w="441"/><text x="95.2366%" y="671.50"></text></g><g><title>atime_needs_update (137 samples, 0.03%)</title><rect x="95.0429%" y="645" width="0.0254%" height="15" fill="rgb(244,54,29)" fg:x="512769" fg:w="137"/><text x="95.2929%" y="655.50"></text></g><g><title>current_time (73 samples, 0.01%)</title><rect x="95.0548%" y="629" width="0.0135%" height="15" fill="rgb(252,169,12)" fg:x="512833" fg:w="73"/><text x="95.3048%" y="639.50"></text></g><g><title>__legitimize_mnt (354 samples, 0.07%)</title><rect x="95.0848%" y="629" width="0.0656%" height="15" fill="rgb(231,199,11)" fg:x="512995" fg:w="354"/><text x="95.3348%" y="639.50"></text></g><g><title>__legitimize_path (1,076 samples, 0.20%)</title><rect x="95.0774%" y="645" width="0.1994%" height="15" fill="rgb(233,191,18)" fg:x="512955" fg:w="1076"/><text x="95.3274%" y="655.50"></text></g><g><title>lockref_get_not_dead (681 samples, 0.13%)</title><rect x="95.1506%" y="629" width="0.1262%" height="15" fill="rgb(215,83,47)" fg:x="513350" fg:w="681"/><text x="95.4006%" y="639.50"></text></g><g><title>__legitimize_mnt (492 samples, 0.09%)</title><rect x="95.2972%" y="613" width="0.0912%" height="15" fill="rgb(251,67,19)" fg:x="514141" fg:w="492"/><text x="95.5472%" y="623.50"></text></g><g><title>legitimize_links (1,021 samples, 0.19%)</title><rect x="95.2769%" y="645" width="0.1892%" height="15" fill="rgb(240,7,20)" fg:x="514031" fg:w="1021"/><text x="95.5269%" y="655.50"></text></g><g><title>__legitimize_path (955 samples, 0.18%)</title><rect x="95.2891%" y="629" width="0.1770%" height="15" fill="rgb(210,150,26)" fg:x="514097" fg:w="955"/><text x="95.5391%" y="639.50"></text></g><g><title>lockref_get_not_dead (419 samples, 0.08%)</title><rect x="95.3884%" y="613" width="0.0777%" height="15" fill="rgb(228,75,42)" fg:x="514633" fg:w="419"/><text x="95.6384%" y="623.50"></text></g><g><title>link_path_walk.part.0 (34,043 samples, 6.31%)</title><rect x="89.1597%" y="709" width="6.3099%" height="15" fill="rgb(237,134,48)" fg:x="481028" fg:w="34043"/><text x="89.4097%" y="719.50">link_pat..</text></g><g><title>walk_component (23,703 samples, 4.39%)</title><rect x="91.0762%" y="693" width="4.3934%" height="15" fill="rgb(205,80,50)" fg:x="491368" fg:w="23703"/><text x="91.3262%" y="703.50">walk_..</text></g><g><title>step_into (10,563 samples, 1.96%)</title><rect x="93.5117%" y="677" width="1.9579%" height="15" fill="rgb(217,74,48)" fg:x="504508" fg:w="10563"/><text x="93.7617%" y="687.50">s..</text></g><g><title>try_to_unlazy (2,165 samples, 0.40%)</title><rect x="95.0683%" y="661" width="0.4013%" height="15" fill="rgb(205,82,50)" fg:x="512906" fg:w="2165"/><text x="95.3183%" y="671.50"></text></g><g><title>_raw_spin_lock (165 samples, 0.03%)</title><rect x="95.6613%" y="677" width="0.0306%" height="15" fill="rgb(228,1,33)" fg:x="516105" fg:w="165"/><text x="95.9113%" y="687.50"></text></g><g><title>__d_lookup (1,117 samples, 0.21%)</title><rect x="95.4859%" y="693" width="0.2070%" height="15" fill="rgb(214,50,23)" fg:x="515159" fg:w="1117"/><text x="95.7359%" y="703.50"></text></g><g><title>lookup_fast (2,789 samples, 0.52%)</title><rect x="95.4696%" y="709" width="0.5169%" height="15" fill="rgb(210,62,9)" fg:x="515071" fg:w="2789"/><text x="95.7196%" y="719.50"></text></g><g><title>__d_lookup_rcu (1,584 samples, 0.29%)</title><rect x="95.6930%" y="693" width="0.2936%" height="15" fill="rgb(210,104,37)" fg:x="516276" fg:w="1584"/><text x="95.9430%" y="703.50"></text></g><g><title>inode_permission.part.0 (219 samples, 0.04%)</title><rect x="96.0624%" y="693" width="0.0406%" height="15" fill="rgb(232,104,43)" fg:x="518269" fg:w="219"/><text x="96.3124%" y="703.50"></text></g><g><title>may_open (641 samples, 0.12%)</title><rect x="95.9866%" y="709" width="0.1188%" height="15" fill="rgb(244,52,6)" fg:x="517860" fg:w="641"/><text x="96.2366%" y="719.50"></text></g><g><title>page_put_link (101 samples, 0.02%)</title><rect x="96.1143%" y="709" width="0.0187%" height="15" fill="rgb(211,174,52)" fg:x="518549" fg:w="101"/><text x="96.3643%" y="719.50"></text></g><g><title>__fget_light (285 samples, 0.05%)</title><rect x="96.1628%" y="693" width="0.0528%" height="15" fill="rgb(229,48,4)" fg:x="518811" fg:w="285"/><text x="96.4128%" y="703.50"></text></g><g><title>__fget_files (251 samples, 0.05%)</title><rect x="96.1691%" y="677" width="0.0465%" height="15" fill="rgb(205,155,16)" fg:x="518845" fg:w="251"/><text x="96.4191%" y="687.50"></text></g><g><title>path_init (554 samples, 0.10%)</title><rect x="96.1330%" y="709" width="0.1027%" height="15" fill="rgb(211,141,53)" fg:x="518650" fg:w="554"/><text x="96.3830%" y="719.50"></text></g><g><title>fput_many (93 samples, 0.02%)</title><rect x="96.2184%" y="693" width="0.0172%" height="15" fill="rgb(240,148,11)" fg:x="519111" fg:w="93"/><text x="96.4684%" y="703.50"></text></g><g><title>atime_needs_update (280 samples, 0.05%)</title><rect x="96.5752%" y="693" width="0.0519%" height="15" fill="rgb(214,45,23)" fg:x="521036" fg:w="280"/><text x="96.8252%" y="703.50"></text></g><g><title>dput (191 samples, 0.04%)</title><rect x="96.6271%" y="693" width="0.0354%" height="15" fill="rgb(248,74,26)" fg:x="521316" fg:w="191"/><text x="96.8771%" y="703.50"></text></g><g><title>lockref_put_or_lock (135 samples, 0.03%)</title><rect x="96.6375%" y="677" width="0.0250%" height="15" fill="rgb(218,121,16)" fg:x="521372" fg:w="135"/><text x="96.8875%" y="687.50"></text></g><g><title>nd_jump_root (109 samples, 0.02%)</title><rect x="96.6625%" y="693" width="0.0202%" height="15" fill="rgb(218,10,47)" fg:x="521507" fg:w="109"/><text x="96.9125%" y="703.50"></text></g><g><title>set_root (71 samples, 0.01%)</title><rect x="96.6696%" y="677" width="0.0132%" height="15" fill="rgb(227,99,14)" fg:x="521545" fg:w="71"/><text x="96.9196%" y="687.50"></text></g><g><title>page_get_link (742 samples, 0.14%)</title><rect x="96.6827%" y="693" width="0.1375%" height="15" fill="rgb(229,83,46)" fg:x="521616" fg:w="742"/><text x="96.9327%" y="703.50"></text></g><g><title>pagecache_get_page (684 samples, 0.13%)</title><rect x="96.6935%" y="677" width="0.1268%" height="15" fill="rgb(228,25,1)" fg:x="521674" fg:w="684"/><text x="96.9435%" y="687.50"></text></g><g><title>find_get_entry (641 samples, 0.12%)</title><rect x="96.7015%" y="661" width="0.1188%" height="15" fill="rgb(252,190,15)" fg:x="521717" fg:w="641"/><text x="96.9515%" y="671.50"></text></g><g><title>xas_load (120 samples, 0.02%)</title><rect x="96.7980%" y="645" width="0.0222%" height="15" fill="rgb(213,103,51)" fg:x="522238" fg:w="120"/><text x="97.0480%" y="655.50"></text></g><g><title>xas_start (112 samples, 0.02%)</title><rect x="96.7995%" y="629" width="0.0208%" height="15" fill="rgb(220,38,44)" fg:x="522246" fg:w="112"/><text x="97.0495%" y="639.50"></text></g><g><title>step_into (3,163 samples, 0.59%)</title><rect x="96.2364%" y="709" width="0.5863%" height="15" fill="rgb(210,45,26)" fg:x="519208" fg:w="3163"/><text x="96.4864%" y="719.50"></text></g><g><title>_cond_resched (74 samples, 0.01%)</title><rect x="96.8499%" y="677" width="0.0137%" height="15" fill="rgb(205,95,48)" fg:x="522518" fg:w="74"/><text x="97.0999%" y="687.50"></text></g><g><title>dput (902 samples, 0.17%)</title><rect x="96.8327%" y="693" width="0.1672%" height="15" fill="rgb(225,179,37)" fg:x="522425" fg:w="902"/><text x="97.0827%" y="703.50"></text></g><g><title>lockref_put_or_lock (733 samples, 0.14%)</title><rect x="96.8640%" y="677" width="0.1359%" height="15" fill="rgb(230,209,3)" fg:x="522594" fg:w="733"/><text x="97.1140%" y="687.50"></text></g><g><title>terminate_walk (1,094 samples, 0.20%)</title><rect x="96.8227%" y="709" width="0.2028%" height="15" fill="rgb(248,12,46)" fg:x="522371" fg:w="1094"/><text x="97.0727%" y="719.50"></text></g><g><title>mntput_no_expire (116 samples, 0.02%)</title><rect x="97.0040%" y="693" width="0.0215%" height="15" fill="rgb(234,18,0)" fg:x="523349" fg:w="116"/><text x="97.2540%" y="703.50"></text></g><g><title>do_filp_open (49,970 samples, 9.26%)</title><rect x="87.7688%" y="741" width="9.2621%" height="15" fill="rgb(238,197,14)" fg:x="473524" fg:w="49970"/><text x="88.0188%" y="751.50">do_filp_open</text></g><g><title>path_openat (49,808 samples, 9.23%)</title><rect x="87.7988%" y="725" width="9.2320%" height="15" fill="rgb(251,162,48)" fg:x="473686" fg:w="49808"/><text x="88.0488%" y="735.50">path_openat</text></g><g><title>fd_install (55 samples, 0.01%)</title><rect x="97.0308%" y="741" width="0.0102%" height="15" fill="rgb(237,73,42)" fg:x="523494" fg:w="55"/><text x="97.2808%" y="751.50"></text></g><g><title>get_unused_fd_flags (130 samples, 0.02%)</title><rect x="97.0410%" y="741" width="0.0241%" height="15" fill="rgb(211,108,8)" fg:x="523549" fg:w="130"/><text x="97.2910%" y="751.50"></text></g><g><title>getname (72 samples, 0.01%)</title><rect x="97.0651%" y="741" width="0.0133%" height="15" fill="rgb(213,45,22)" fg:x="523679" fg:w="72"/><text x="97.3151%" y="751.50"></text></g><g><title>memcg_slab_post_alloc_hook (74 samples, 0.01%)</title><rect x="97.1458%" y="709" width="0.0137%" height="15" fill="rgb(252,154,5)" fg:x="524114" fg:w="74"/><text x="97.3958%" y="719.50"></text></g><g><title>memset_erms (1,139 samples, 0.21%)</title><rect x="97.1606%" y="709" width="0.2111%" height="15" fill="rgb(221,79,52)" fg:x="524194" fg:w="1139"/><text x="97.4106%" y="719.50"></text></g><g><title>_cond_resched (66 samples, 0.01%)</title><rect x="97.4040%" y="693" width="0.0122%" height="15" fill="rgb(229,220,36)" fg:x="525507" fg:w="66"/><text x="97.6540%" y="703.50"></text></g><g><title>kmem_cache_alloc (1,744 samples, 0.32%)</title><rect x="97.0942%" y="725" width="0.3233%" height="15" fill="rgb(211,17,16)" fg:x="523836" fg:w="1744"/><text x="97.3442%" y="735.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (247 samples, 0.05%)</title><rect x="97.3717%" y="709" width="0.0458%" height="15" fill="rgb(222,55,31)" fg:x="525333" fg:w="247"/><text x="97.6217%" y="719.50"></text></g><g><title>__check_heap_object (130 samples, 0.02%)</title><rect x="97.5187%" y="693" width="0.0241%" height="15" fill="rgb(221,221,31)" fg:x="526126" fg:w="130"/><text x="97.7687%" y="703.50"></text></g><g><title>__virt_addr_valid (211 samples, 0.04%)</title><rect x="97.5428%" y="693" width="0.0391%" height="15" fill="rgb(227,168,26)" fg:x="526256" fg:w="211"/><text x="97.7928%" y="703.50"></text></g><g><title>__check_object_size (488 samples, 0.09%)</title><rect x="97.4964%" y="709" width="0.0905%" height="15" fill="rgb(224,139,9)" fg:x="526006" fg:w="488"/><text x="97.7464%" y="719.50"></text></g><g><title>getname_flags.part.0 (2,745 samples, 0.51%)</title><rect x="97.0785%" y="741" width="0.5088%" height="15" fill="rgb(254,172,0)" fg:x="523751" fg:w="2745"/><text x="97.3285%" y="751.50"></text></g><g><title>strncpy_from_user (916 samples, 0.17%)</title><rect x="97.4175%" y="725" width="0.1698%" height="15" fill="rgb(235,203,1)" fg:x="525580" fg:w="916"/><text x="97.6675%" y="735.50"></text></g><g><title>kmem_cache_free (454 samples, 0.08%)</title><rect x="97.5873%" y="741" width="0.0841%" height="15" fill="rgb(216,205,24)" fg:x="526496" fg:w="454"/><text x="97.8373%" y="751.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (94 samples, 0.02%)</title><rect x="97.6540%" y="725" width="0.0174%" height="15" fill="rgb(233,24,6)" fg:x="526856" fg:w="94"/><text x="97.9040%" y="735.50"></text></g><g><title>__x64_sys_openat (54,384 samples, 10.08%)</title><rect x="87.5964%" y="773" width="10.0802%" height="15" fill="rgb(244,110,9)" fg:x="472594" fg:w="54384"/><text x="87.8464%" y="783.50">__x64_sys_openat</text></g><g><title>do_sys_openat2 (54,314 samples, 10.07%)</title><rect x="87.6094%" y="757" width="10.0672%" height="15" fill="rgb(239,222,42)" fg:x="472664" fg:w="54314"/><text x="87.8594%" y="767.50">do_sys_openat2</text></g><g><title>__x64_sys_readlink (55 samples, 0.01%)</title><rect x="97.6822%" y="773" width="0.0102%" height="15" fill="rgb(218,145,13)" fg:x="527008" fg:w="55"/><text x="97.9322%" y="783.50"></text></g><g><title>do_readlinkat (55 samples, 0.01%)</title><rect x="97.6822%" y="757" width="0.0102%" height="15" fill="rgb(207,69,11)" fg:x="527008" fg:w="55"/><text x="97.9322%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (137 samples, 0.03%)</title><rect x="97.7183%" y="693" width="0.0254%" height="15" fill="rgb(220,223,22)" fg:x="527203" fg:w="137"/><text x="97.9683%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (134 samples, 0.02%)</title><rect x="97.7189%" y="677" width="0.0248%" height="15" fill="rgb(245,102,5)" fg:x="527206" fg:w="134"/><text x="97.9689%" y="687.50"></text></g><g><title>native_write_msr (133 samples, 0.02%)</title><rect x="97.7191%" y="661" width="0.0247%" height="15" fill="rgb(211,148,2)" fg:x="527207" fg:w="133"/><text x="97.9691%" y="671.50"></text></g><g><title>finish_task_switch (146 samples, 0.03%)</title><rect x="97.7174%" y="709" width="0.0271%" height="15" fill="rgb(241,13,44)" fg:x="527198" fg:w="146"/><text x="97.9674%" y="719.50"></text></g><g><title>schedule (151 samples, 0.03%)</title><rect x="97.7168%" y="741" width="0.0280%" height="15" fill="rgb(219,137,21)" fg:x="527195" fg:w="151"/><text x="97.9668%" y="751.50"></text></g><g><title>__schedule (151 samples, 0.03%)</title><rect x="97.7168%" y="725" width="0.0280%" height="15" fill="rgb(242,206,5)" fg:x="527195" fg:w="151"/><text x="97.9668%" y="735.50"></text></g><g><title>kernel_wait4 (163 samples, 0.03%)</title><rect x="97.7159%" y="773" width="0.0302%" height="15" fill="rgb(217,114,22)" fg:x="527190" fg:w="163"/><text x="97.9659%" y="783.50"></text></g><g><title>do_wait (162 samples, 0.03%)</title><rect x="97.7161%" y="757" width="0.0300%" height="15" fill="rgb(253,206,42)" fg:x="527191" fg:w="162"/><text x="97.9661%" y="767.50"></text></g><g><title>__alloc_pages_nodemask (81 samples, 0.02%)</title><rect x="97.8056%" y="597" width="0.0150%" height="15" fill="rgb(236,102,18)" fg:x="527674" fg:w="81"/><text x="98.0556%" y="607.50"></text></g><g><title>get_page_from_freelist (75 samples, 0.01%)</title><rect x="97.8067%" y="581" width="0.0139%" height="15" fill="rgb(208,59,49)" fg:x="527680" fg:w="75"/><text x="98.0567%" y="591.50"></text></g><g><title>alloc_pages_vma (88 samples, 0.02%)</title><rect x="97.8049%" y="613" width="0.0163%" height="15" fill="rgb(215,194,28)" fg:x="527670" fg:w="88"/><text x="98.0549%" y="623.50"></text></g><g><title>do_user_addr_fault (183 samples, 0.03%)</title><rect x="97.7999%" y="645" width="0.0339%" height="15" fill="rgb(243,207,11)" fg:x="527643" fg:w="183"/><text x="98.0499%" y="655.50"></text></g><g><title>handle_mm_fault (177 samples, 0.03%)</title><rect x="97.8010%" y="629" width="0.0328%" height="15" fill="rgb(254,179,35)" fg:x="527649" fg:w="177"/><text x="98.0510%" y="639.50"></text></g><g><title>asm_exc_page_fault (381 samples, 0.07%)</title><rect x="97.7634%" y="677" width="0.0706%" height="15" fill="rgb(235,97,3)" fg:x="527446" fg:w="381"/><text x="98.0134%" y="687.50"></text></g><g><title>exc_page_fault (187 samples, 0.03%)</title><rect x="97.7993%" y="661" width="0.0347%" height="15" fill="rgb(215,155,33)" fg:x="527640" fg:w="187"/><text x="98.0493%" y="671.50"></text></g><g><title>copy_page_to_iter (443 samples, 0.08%)</title><rect x="97.7520%" y="709" width="0.0821%" height="15" fill="rgb(223,128,12)" fg:x="527385" fg:w="443"/><text x="98.0020%" y="719.50"></text></g><g><title>copy_user_enhanced_fast_string (436 samples, 0.08%)</title><rect x="97.7533%" y="693" width="0.0808%" height="15" fill="rgb(208,157,18)" fg:x="527392" fg:w="436"/><text x="98.0033%" y="703.50"></text></g><g><title>new_sync_read (474 samples, 0.09%)</title><rect x="97.7498%" y="741" width="0.0879%" height="15" fill="rgb(249,70,54)" fg:x="527373" fg:w="474"/><text x="97.9998%" y="751.50"></text></g><g><title>generic_file_buffered_read (474 samples, 0.09%)</title><rect x="97.7498%" y="725" width="0.0879%" height="15" fill="rgb(244,118,24)" fg:x="527373" fg:w="474"/><text x="97.9998%" y="735.50"></text></g><g><title>ksys_read (487 samples, 0.09%)</title><rect x="97.7482%" y="773" width="0.0903%" height="15" fill="rgb(211,54,0)" fg:x="527364" fg:w="487"/><text x="97.9982%" y="783.50"></text></g><g><title>vfs_read (483 samples, 0.09%)</title><rect x="97.7489%" y="757" width="0.0895%" height="15" fill="rgb(245,137,45)" fg:x="527368" fg:w="483"/><text x="97.9989%" y="767.50"></text></g><g><title>syscall_enter_from_user_mode (126 samples, 0.02%)</title><rect x="97.8403%" y="773" width="0.0234%" height="15" fill="rgb(232,154,31)" fg:x="527861" fg:w="126"/><text x="98.0903%" y="783.50"></text></g><g><title>arch_get_unmapped_area_topdown (68 samples, 0.01%)</title><rect x="97.8681%" y="725" width="0.0126%" height="15" fill="rgb(253,6,39)" fg:x="528011" fg:w="68"/><text x="98.1181%" y="735.50"></text></g><g><title>vm_unmapped_area (58 samples, 0.01%)</title><rect x="97.8699%" y="709" width="0.0108%" height="15" fill="rgb(234,183,24)" fg:x="528021" fg:w="58"/><text x="98.1199%" y="719.50"></text></g><g><title>get_unmapped_area (73 samples, 0.01%)</title><rect x="97.8679%" y="741" width="0.0135%" height="15" fill="rgb(252,84,40)" fg:x="528010" fg:w="73"/><text x="98.1179%" y="751.50"></text></g><g><title>perf_iterate_sb (139 samples, 0.03%)</title><rect x="97.8901%" y="709" width="0.0258%" height="15" fill="rgb(224,65,2)" fg:x="528130" fg:w="139"/><text x="98.1401%" y="719.50"></text></g><g><title>perf_iterate_ctx (119 samples, 0.02%)</title><rect x="97.8938%" y="693" width="0.0221%" height="15" fill="rgb(229,38,24)" fg:x="528150" fg:w="119"/><text x="98.1438%" y="703.50"></text></g><g><title>perf_event_mmap_output (88 samples, 0.02%)</title><rect x="97.8996%" y="677" width="0.0163%" height="15" fill="rgb(218,131,50)" fg:x="528181" fg:w="88"/><text x="98.1496%" y="687.50"></text></g><g><title>perf_event_mmap (166 samples, 0.03%)</title><rect x="97.8864%" y="725" width="0.0308%" height="15" fill="rgb(233,106,18)" fg:x="528110" fg:w="166"/><text x="98.1364%" y="735.50"></text></g><g><title>__vma_adjust (75 samples, 0.01%)</title><rect x="97.9218%" y="709" width="0.0139%" height="15" fill="rgb(220,216,11)" fg:x="528301" fg:w="75"/><text x="98.1718%" y="719.50"></text></g><g><title>vma_merge (87 samples, 0.02%)</title><rect x="97.9213%" y="725" width="0.0161%" height="15" fill="rgb(251,100,45)" fg:x="528298" fg:w="87"/><text x="98.1713%" y="735.50"></text></g><g><title>do_mmap (397 samples, 0.07%)</title><rect x="97.8649%" y="757" width="0.0736%" height="15" fill="rgb(235,143,32)" fg:x="527994" fg:w="397"/><text x="98.1149%" y="767.50"></text></g><g><title>mmap_region (308 samples, 0.06%)</title><rect x="97.8814%" y="741" width="0.0571%" height="15" fill="rgb(248,124,34)" fg:x="528083" fg:w="308"/><text x="98.1314%" y="751.50"></text></g><g><title>do_syscall_64 (67,061 samples, 12.43%)</title><rect x="85.5175%" y="789" width="12.4299%" height="15" fill="rgb(225,221,4)" fg:x="461378" fg:w="67061"/><text x="85.7675%" y="799.50">do_syscall_64</text></g><g><title>vm_mmap_pgoff (452 samples, 0.08%)</title><rect x="97.8636%" y="773" width="0.0838%" height="15" fill="rgb(242,27,43)" fg:x="527987" fg:w="452"/><text x="98.1136%" y="783.50"></text></g><g><title>arch_do_signal (89 samples, 0.02%)</title><rect x="98.0204%" y="757" width="0.0165%" height="15" fill="rgb(227,54,8)" fg:x="528833" fg:w="89"/><text x="98.2704%" y="767.50"></text></g><g><title>get_signal (89 samples, 0.02%)</title><rect x="98.0204%" y="741" width="0.0165%" height="15" fill="rgb(253,139,49)" fg:x="528833" fg:w="89"/><text x="98.2704%" y="751.50"></text></g><g><title>do_group_exit (65 samples, 0.01%)</title><rect x="98.0249%" y="725" width="0.0120%" height="15" fill="rgb(231,26,43)" fg:x="528857" fg:w="65"/><text x="98.2749%" y="735.50"></text></g><g><title>do_exit (64 samples, 0.01%)</title><rect x="98.0251%" y="709" width="0.0119%" height="15" fill="rgb(207,121,39)" fg:x="528858" fg:w="64"/><text x="98.2751%" y="719.50"></text></g><g><title>fpregs_assert_state_consistent (104 samples, 0.02%)</title><rect x="98.0418%" y="757" width="0.0193%" height="15" fill="rgb(223,101,35)" fg:x="528948" fg:w="104"/><text x="98.2918%" y="767.50"></text></g><g><title>mem_cgroup_handle_over_high (59 samples, 0.01%)</title><rect x="98.0610%" y="757" width="0.0109%" height="15" fill="rgb(232,87,23)" fg:x="529052" fg:w="59"/><text x="98.3110%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (140 samples, 0.03%)</title><rect x="98.0731%" y="709" width="0.0259%" height="15" fill="rgb(225,180,29)" fg:x="529117" fg:w="140"/><text x="98.3231%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (136 samples, 0.03%)</title><rect x="98.0738%" y="693" width="0.0252%" height="15" fill="rgb(225,25,17)" fg:x="529121" fg:w="136"/><text x="98.3238%" y="703.50"></text></g><g><title>native_write_msr (135 samples, 0.03%)</title><rect x="98.0740%" y="677" width="0.0250%" height="15" fill="rgb(223,8,52)" fg:x="529122" fg:w="135"/><text x="98.3240%" y="687.50"></text></g><g><title>finish_task_switch (152 samples, 0.03%)</title><rect x="98.0727%" y="725" width="0.0282%" height="15" fill="rgb(246,42,21)" fg:x="529115" fg:w="152"/><text x="98.3227%" y="735.50"></text></g><g><title>schedule (166 samples, 0.03%)</title><rect x="98.0720%" y="757" width="0.0308%" height="15" fill="rgb(205,64,43)" fg:x="529111" fg:w="166"/><text x="98.3220%" y="767.50"></text></g><g><title>__schedule (166 samples, 0.03%)</title><rect x="98.0720%" y="741" width="0.0308%" height="15" fill="rgb(221,160,13)" fg:x="529111" fg:w="166"/><text x="98.3220%" y="751.50"></text></g><g><title>__fsnotify_parent (74 samples, 0.01%)</title><rect x="98.1772%" y="725" width="0.0137%" height="15" fill="rgb(239,58,35)" fg:x="529679" fg:w="74"/><text x="98.4272%" y="735.50"></text></g><g><title>btrfs_release_file (420 samples, 0.08%)</title><rect x="98.1941%" y="725" width="0.0778%" height="15" fill="rgb(251,26,40)" fg:x="529770" fg:w="420"/><text x="98.4441%" y="735.50"></text></g><g><title>kfree (79 samples, 0.01%)</title><rect x="98.2573%" y="709" width="0.0146%" height="15" fill="rgb(247,0,4)" fg:x="530111" fg:w="79"/><text x="98.5073%" y="719.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="98.2996%" y="693" width="0.0208%" height="15" fill="rgb(218,130,10)" fg:x="530339" fg:w="112"/><text x="98.5496%" y="703.50"></text></g><g><title>lockref_put_or_lock (151 samples, 0.03%)</title><rect x="98.2929%" y="709" width="0.0280%" height="15" fill="rgb(239,32,7)" fg:x="530303" fg:w="151"/><text x="98.5429%" y="719.50"></text></g><g><title>dput (267 samples, 0.05%)</title><rect x="98.2720%" y="725" width="0.0495%" height="15" fill="rgb(210,192,24)" fg:x="530190" fg:w="267"/><text x="98.5220%" y="735.50"></text></g><g><title>kmem_cache_free (279 samples, 0.05%)</title><rect x="98.3216%" y="725" width="0.0517%" height="15" fill="rgb(226,212,17)" fg:x="530458" fg:w="279"/><text x="98.5716%" y="735.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (74 samples, 0.01%)</title><rect x="98.3596%" y="709" width="0.0137%" height="15" fill="rgb(219,201,28)" fg:x="530663" fg:w="74"/><text x="98.6096%" y="719.50"></text></g><g><title>locks_remove_file (104 samples, 0.02%)</title><rect x="98.3733%" y="725" width="0.0193%" height="15" fill="rgb(235,207,41)" fg:x="530737" fg:w="104"/><text x="98.6233%" y="735.50"></text></g><g><title>mntput_no_expire (94 samples, 0.02%)</title><rect x="98.3982%" y="725" width="0.0174%" height="15" fill="rgb(241,95,54)" fg:x="530871" fg:w="94"/><text x="98.6482%" y="735.50"></text></g><g><title>percpu_counter_add_batch (63 samples, 0.01%)</title><rect x="98.4158%" y="725" width="0.0117%" height="15" fill="rgb(248,12,23)" fg:x="530966" fg:w="63"/><text x="98.6658%" y="735.50"></text></g><g><title>__fput (2,055 samples, 0.38%)</title><rect x="98.1348%" y="741" width="0.3809%" height="15" fill="rgb(228,173,4)" fg:x="529450" fg:w="2055"/><text x="98.3848%" y="751.50"></text></g><g><title>security_file_free (467 samples, 0.09%)</title><rect x="98.4291%" y="725" width="0.0866%" height="15" fill="rgb(254,99,5)" fg:x="531038" fg:w="467"/><text x="98.6791%" y="735.50"></text></g><g><title>apparmor_file_free_security (385 samples, 0.07%)</title><rect x="98.4443%" y="709" width="0.0714%" height="15" fill="rgb(212,184,17)" fg:x="531120" fg:w="385"/><text x="98.6943%" y="719.50"></text></g><g><title>_raw_spin_lock_irq (92 samples, 0.02%)</title><rect x="98.5235%" y="741" width="0.0171%" height="15" fill="rgb(252,174,1)" fg:x="531547" fg:w="92"/><text x="98.7735%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (71,080 samples, 13.17%)</title><rect x="85.4725%" y="805" width="13.1748%" height="15" fill="rgb(241,118,51)" fg:x="461135" fg:w="71080"/><text x="85.7225%" y="815.50">entry_SYSCALL_64_aft..</text></g><g><title>syscall_exit_to_user_mode (3,776 samples, 0.70%)</title><rect x="97.9474%" y="789" width="0.6999%" height="15" fill="rgb(227,94,47)" fg:x="528439" fg:w="3776"/><text x="98.1974%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (3,665 samples, 0.68%)</title><rect x="97.9680%" y="773" width="0.6793%" height="15" fill="rgb(229,104,2)" fg:x="528550" fg:w="3665"/><text x="98.2180%" y="783.50"></text></g><g><title>task_work_run (2,897 samples, 0.54%)</title><rect x="98.1103%" y="757" width="0.5370%" height="15" fill="rgb(219,28,31)" fg:x="529318" fg:w="2897"/><text x="98.3603%" y="767.50"></text></g><g><title>call_rcu (573 samples, 0.11%)</title><rect x="98.5411%" y="741" width="0.1062%" height="15" fill="rgb(233,109,36)" fg:x="531642" fg:w="573"/><text x="98.7911%" y="751.50"></text></g><g><title>rcu_segcblist_enqueue (274 samples, 0.05%)</title><rect x="98.5965%" y="725" width="0.0508%" height="15" fill="rgb(246,88,11)" fg:x="531941" fg:w="274"/><text x="98.8465%" y="735.50"></text></g><g><title>error_entry (430 samples, 0.08%)</title><rect x="98.6473%" y="805" width="0.0797%" height="15" fill="rgb(209,212,17)" fg:x="532215" fg:w="430"/><text x="98.8973%" y="815.50"></text></g><g><title>sync_regs (384 samples, 0.07%)</title><rect x="98.6558%" y="789" width="0.0712%" height="15" fill="rgb(243,59,29)" fg:x="532261" fg:w="384"/><text x="98.9058%" y="799.50"></text></g><g><title>calculate_sigpending (55 samples, 0.01%)</title><rect x="98.7378%" y="789" width="0.0102%" height="15" fill="rgb(244,205,48)" fg:x="532703" fg:w="55"/><text x="98.9878%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (3,179 samples, 0.59%)</title><rect x="98.7706%" y="757" width="0.5892%" height="15" fill="rgb(227,30,6)" fg:x="532880" fg:w="3179"/><text x="99.0206%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (3,112 samples, 0.58%)</title><rect x="98.7830%" y="741" width="0.5768%" height="15" fill="rgb(220,205,48)" fg:x="532947" fg:w="3112"/><text x="99.0330%" y="751.50"></text></g><g><title>native_write_msr (3,094 samples, 0.57%)</title><rect x="98.7863%" y="725" width="0.5735%" height="15" fill="rgb(250,94,14)" fg:x="532965" fg:w="3094"/><text x="99.0363%" y="735.50"></text></g><g><title>asm_sysvec_irq_work (88 samples, 0.02%)</title><rect x="99.3628%" y="757" width="0.0163%" height="15" fill="rgb(216,119,42)" fg:x="536075" fg:w="88"/><text x="99.6128%" y="767.50"></text></g><g><title>sysvec_irq_work (55 samples, 0.01%)</title><rect x="99.3689%" y="741" width="0.0102%" height="15" fill="rgb(232,155,0)" fg:x="536108" fg:w="55"/><text x="99.6189%" y="751.50"></text></g><g><title>schedule_tail (3,479 samples, 0.64%)</title><rect x="98.7479%" y="789" width="0.6448%" height="15" fill="rgb(212,24,32)" fg:x="532758" fg:w="3479"/><text x="98.9979%" y="799.50"></text></g><g><title>finish_task_switch (3,459 samples, 0.64%)</title><rect x="98.7517%" y="773" width="0.6411%" height="15" fill="rgb(216,69,20)" fg:x="532778" fg:w="3459"/><text x="99.0017%" y="783.50"></text></g><g><title>ret_from_fork (3,640 samples, 0.67%)</title><rect x="98.7374%" y="805" width="0.6747%" height="15" fill="rgb(229,73,31)" fg:x="532701" fg:w="3640"/><text x="98.9874%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (104 samples, 0.02%)</title><rect x="99.3928%" y="789" width="0.0193%" height="15" fill="rgb(224,219,20)" fg:x="536237" fg:w="104"/><text x="99.6428%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (103 samples, 0.02%)</title><rect x="99.3930%" y="773" width="0.0191%" height="15" fill="rgb(215,146,41)" fg:x="536238" fg:w="103"/><text x="99.6430%" y="783.50"></text></g><g><title>syscall_return_via_sysret (270 samples, 0.05%)</title><rect x="99.4121%" y="805" width="0.0500%" height="15" fill="rgb(244,71,31)" fg:x="536341" fg:w="270"/><text x="99.6621%" y="815.50"></text></g><g><title>[zig] (106,869 samples, 19.81%)</title><rect x="79.6541%" y="821" width="19.8084%" height="15" fill="rgb(224,24,11)" fg:x="429744" fg:w="106869"/><text x="79.9041%" y="831.50">[zig]</text></g><g><title>asm_exc_page_fault (929 samples, 0.17%)</title><rect x="99.4640%" y="821" width="0.1722%" height="15" fill="rgb(229,76,15)" fg:x="536621" fg:w="929"/><text x="99.7140%" y="831.50"></text></g><g><title>tlb_finish_mmu (65 samples, 0.01%)</title><rect x="99.6590%" y="677" width="0.0120%" height="15" fill="rgb(209,93,2)" fg:x="537673" fg:w="65"/><text x="99.9090%" y="687.50"></text></g><g><title>page_remove_rmap (89 samples, 0.02%)</title><rect x="99.7036%" y="645" width="0.0165%" height="15" fill="rgb(216,200,50)" fg:x="537914" fg:w="89"/><text x="99.9536%" y="655.50"></text></g><g><title>mmput (369 samples, 0.07%)</title><rect x="99.6547%" y="709" width="0.0684%" height="15" fill="rgb(211,67,34)" fg:x="537650" fg:w="369"/><text x="99.9047%" y="719.50"></text></g><g><title>exit_mmap (367 samples, 0.07%)</title><rect x="99.6551%" y="693" width="0.0680%" height="15" fill="rgb(225,87,47)" fg:x="537652" fg:w="367"/><text x="99.9051%" y="703.50"></text></g><g><title>unmap_vmas (281 samples, 0.05%)</title><rect x="99.6710%" y="677" width="0.0521%" height="15" fill="rgb(217,185,16)" fg:x="537738" fg:w="281"/><text x="99.9210%" y="687.50"></text></g><g><title>unmap_page_range (280 samples, 0.05%)</title><rect x="99.6712%" y="661" width="0.0519%" height="15" fill="rgb(205,0,0)" fg:x="537739" fg:w="280"/><text x="99.9212%" y="671.50"></text></g><g><title>begin_new_exec (374 samples, 0.07%)</title><rect x="99.6541%" y="725" width="0.0693%" height="15" fill="rgb(207,116,45)" fg:x="537647" fg:w="374"/><text x="99.9041%" y="735.50"></text></g><g><title>load_elf_binary (452 samples, 0.08%)</title><rect x="99.6510%" y="741" width="0.0838%" height="15" fill="rgb(221,156,26)" fg:x="537630" fg:w="452"/><text x="99.9010%" y="751.50"></text></g><g><title>__x64_sys_execve (453 samples, 0.08%)</title><rect x="99.6510%" y="789" width="0.0840%" height="15" fill="rgb(213,140,4)" fg:x="537630" fg:w="453"/><text x="99.9010%" y="799.50"></text></g><g><title>do_execveat_common (453 samples, 0.08%)</title><rect x="99.6510%" y="773" width="0.0840%" height="15" fill="rgb(231,224,15)" fg:x="537630" fg:w="453"/><text x="99.9010%" y="783.50"></text></g><g><title>bprm_execve (453 samples, 0.08%)</title><rect x="99.6510%" y="757" width="0.0840%" height="15" fill="rgb(244,76,20)" fg:x="537630" fg:w="453"/><text x="99.9010%" y="767.50"></text></g><g><title>mmput (106 samples, 0.02%)</title><rect x="99.7425%" y="757" width="0.0196%" height="15" fill="rgb(238,117,7)" fg:x="538124" fg:w="106"/><text x="99.9925%" y="767.50"></text></g><g><title>exit_mmap (106 samples, 0.02%)</title><rect x="99.7425%" y="741" width="0.0196%" height="15" fill="rgb(235,1,10)" fg:x="538124" fg:w="106"/><text x="99.9925%" y="751.50"></text></g><g><title>unmap_vmas (76 samples, 0.01%)</title><rect x="99.7481%" y="725" width="0.0141%" height="15" fill="rgb(216,165,6)" fg:x="538154" fg:w="76"/><text x="99.9981%" y="735.50"></text></g><g><title>unmap_page_range (76 samples, 0.01%)</title><rect x="99.7481%" y="709" width="0.0141%" height="15" fill="rgb(246,91,35)" fg:x="538154" fg:w="76"/><text x="99.9981%" y="719.50"></text></g><g><title>__x64_sys_exit (152 samples, 0.03%)</title><rect x="99.7349%" y="789" width="0.0282%" height="15" fill="rgb(228,96,24)" fg:x="538083" fg:w="152"/><text x="99.9849%" y="799.50"></text></g><g><title>do_exit (152 samples, 0.03%)</title><rect x="99.7349%" y="773" width="0.0282%" height="15" fill="rgb(254,217,53)" fg:x="538083" fg:w="152"/><text x="99.9849%" y="783.50"></text></g><g><title>tlb_finish_mmu (120 samples, 0.02%)</title><rect x="99.7678%" y="709" width="0.0222%" height="15" fill="rgb(209,60,0)" fg:x="538260" fg:w="120"/><text x="100.0178%" y="719.50"></text></g><g><title>release_pages (95 samples, 0.02%)</title><rect x="99.7724%" y="693" width="0.0176%" height="15" fill="rgb(250,93,26)" fg:x="538285" fg:w="95"/><text x="100.0224%" y="703.50"></text></g><g><title>page_remove_rmap (139 samples, 0.03%)</title><rect x="99.8319%" y="677" width="0.0258%" height="15" fill="rgb(211,9,40)" fg:x="538606" fg:w="139"/><text x="100.0819%" y="687.50"></text></g><g><title>mmput (567 samples, 0.11%)</title><rect x="99.7665%" y="741" width="0.1051%" height="15" fill="rgb(242,57,20)" fg:x="538253" fg:w="567"/><text x="100.0165%" y="751.50"></text></g><g><title>exit_mmap (567 samples, 0.11%)</title><rect x="99.7665%" y="725" width="0.1051%" height="15" fill="rgb(248,85,48)" fg:x="538253" fg:w="567"/><text x="100.0165%" y="735.50"></text></g><g><title>unmap_vmas (440 samples, 0.08%)</title><rect x="99.7900%" y="709" width="0.0816%" height="15" fill="rgb(212,117,2)" fg:x="538380" fg:w="440"/><text x="100.0400%" y="719.50"></text></g><g><title>unmap_page_range (439 samples, 0.08%)</title><rect x="99.7902%" y="693" width="0.0814%" height="15" fill="rgb(243,19,3)" fg:x="538381" fg:w="439"/><text x="100.0402%" y="703.50"></text></g><g><title>__x64_sys_exit_group (589 samples, 0.11%)</title><rect x="99.7631%" y="789" width="0.1092%" height="15" fill="rgb(232,217,24)" fg:x="538235" fg:w="589"/><text x="100.0131%" y="799.50"></text></g><g><title>do_group_exit (589 samples, 0.11%)</title><rect x="99.7631%" y="773" width="0.1092%" height="15" fill="rgb(224,175,40)" fg:x="538235" fg:w="589"/><text x="100.0131%" y="783.50"></text></g><g><title>do_exit (589 samples, 0.11%)</title><rect x="99.7631%" y="757" width="0.1092%" height="15" fill="rgb(212,162,32)" fg:x="538235" fg:w="589"/><text x="100.0131%" y="767.50"></text></g><g><title>do_syscall_64 (1,197 samples, 0.22%)</title><rect x="99.6510%" y="805" width="0.2219%" height="15" fill="rgb(215,9,4)" fg:x="537630" fg:w="1197"/><text x="99.9010%" y="815.50"></text></g><g><title>tlb_finish_mmu (75 samples, 0.01%)</title><rect x="99.8866%" y="677" width="0.0139%" height="15" fill="rgb(242,42,7)" fg:x="538901" fg:w="75"/><text x="100.1366%" y="687.50"></text></g><g><title>page_remove_rmap (80 samples, 0.01%)</title><rect x="99.9392%" y="645" width="0.0148%" height="15" fill="rgb(242,184,45)" fg:x="539185" fg:w="80"/><text x="100.1892%" y="655.50"></text></g><g><title>mmput (406 samples, 0.08%)</title><rect x="99.8834%" y="709" width="0.0753%" height="15" fill="rgb(228,111,51)" fg:x="538884" fg:w="406"/><text x="100.1334%" y="719.50"></text></g><g><title>exit_mmap (400 samples, 0.07%)</title><rect x="99.8845%" y="693" width="0.0741%" height="15" fill="rgb(236,147,17)" fg:x="538890" fg:w="400"/><text x="100.1345%" y="703.50"></text></g><g><title>unmap_vmas (314 samples, 0.06%)</title><rect x="99.9005%" y="677" width="0.0582%" height="15" fill="rgb(210,75,22)" fg:x="538976" fg:w="314"/><text x="100.1505%" y="687.50"></text></g><g><title>unmap_page_range (314 samples, 0.06%)</title><rect x="99.9005%" y="661" width="0.0582%" height="15" fill="rgb(217,159,45)" fg:x="538976" fg:w="314"/><text x="100.1505%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,744 samples, 0.32%)</title><rect x="99.6367%" y="821" width="0.3233%" height="15" fill="rgb(245,165,53)" fg:x="537553" fg:w="1744"/><text x="99.8867%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (470 samples, 0.09%)</title><rect x="99.8728%" y="805" width="0.0871%" height="15" fill="rgb(251,190,50)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (470 samples, 0.09%)</title><rect x="99.8728%" y="789" width="0.0871%" height="15" fill="rgb(208,203,29)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="799.50"></text></g><g><title>arch_do_signal (470 samples, 0.09%)</title><rect x="99.8728%" y="773" width="0.0871%" height="15" fill="rgb(207,209,35)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="783.50"></text></g><g><title>get_signal (470 samples, 0.09%)</title><rect x="99.8728%" y="757" width="0.0871%" height="15" fill="rgb(230,144,49)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="767.50"></text></g><g><title>do_group_exit (470 samples, 0.09%)</title><rect x="99.8728%" y="741" width="0.0871%" height="15" fill="rgb(229,31,6)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="751.50"></text></g><g><title>do_exit (470 samples, 0.09%)</title><rect x="99.8728%" y="725" width="0.0871%" height="15" fill="rgb(251,129,24)" fg:x="538827" fg:w="470"/><text x="100.1228%" y="735.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (146 samples, 0.03%)</title><rect x="99.9600%" y="821" width="0.0271%" height="15" fill="rgb(235,105,15)" fg:x="539297" fg:w="146"/><text x="100.2100%" y="831.50"></text></g><g><title>all (539,513 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(216,52,43)" fg:x="0" fg:w="539513"/><text x="0.2500%" y="863.50"></text></g><g><title>zig (109,999 samples, 20.39%)</title><rect x="79.6114%" y="837" width="20.3886%" height="15" fill="rgb(238,144,41)" fg:x="429514" fg:w="109999"/><text x="79.8614%" y="847.50">zig</text></g></svg></svg>