test-zig-cc/results/llvm-reuse-sandbox-dirs.svg

491 lines
1.0 MiB

<?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="451857"><g><title>ActionLookupVal (49 samples, 0.01%)</title><rect x="0.0000%" y="837" width="0.0108%" height="15" fill="rgb(227,0,7)" fg:x="0" fg:w="49"/><text x="0.2500%" y="847.50"></text></g><g><title>_dl_update_slotinfo (173 samples, 0.04%)</title><rect x="0.2543%" y="805" width="0.0383%" height="15" fill="rgb(217,0,24)" fg:x="1149" fg:w="173"/><text x="0.5043%" y="815.50"></text></g><g><title>[anon] (1,473 samples, 0.33%)</title><rect x="0.0230%" y="821" width="0.3260%" height="15" fill="rgb(221,193,54)" fg:x="104" fg:w="1473"/><text x="0.2730%" y="831.50"></text></g><g><title>[perf-42779.map] (160 samples, 0.04%)</title><rect x="0.3494%" y="821" width="0.0354%" height="15" fill="rgb(248,212,6)" fg:x="1579" fg:w="160"/><text x="0.5994%" y="831.50"></text></g><g><title>[unknown] (133 samples, 0.03%)</title><rect x="0.3849%" y="821" width="0.0294%" height="15" fill="rgb(208,68,35)" fg:x="1739" fg:w="133"/><text x="0.6349%" y="831.50"></text></g><g><title>jio_vsnprintf (53 samples, 0.01%)</title><rect x="0.4304%" y="677" width="0.0117%" height="15" fill="rgb(232,128,0)" fg:x="1945" fg:w="53"/><text x="0.6804%" y="687.50"></text></g><g><title>os::vsnprintf (52 samples, 0.01%)</title><rect x="0.4307%" y="661" width="0.0115%" height="15" fill="rgb(207,160,47)" fg:x="1946" fg:w="52"/><text x="0.6807%" y="671.50"></text></g><g><title>__vsnprintf_internal (51 samples, 0.01%)</title><rect x="0.4309%" y="645" width="0.0113%" height="15" fill="rgb(228,23,34)" fg:x="1947" fg:w="51"/><text x="0.6809%" y="655.50"></text></g><g><title>__vfprintf_internal (50 samples, 0.01%)</title><rect x="0.4311%" y="629" width="0.0111%" height="15" fill="rgb(218,30,26)" fg:x="1948" fg:w="50"/><text x="0.6811%" y="639.50"></text></g><g><title>CompileBroker::post_compile (60 samples, 0.01%)</title><rect x="0.4296%" y="709" width="0.0133%" height="15" fill="rgb(220,122,19)" fg:x="1941" fg:w="60"/><text x="0.6796%" y="719.50"></text></g><g><title>StringEventLog::log (58 samples, 0.01%)</title><rect x="0.4300%" y="693" width="0.0128%" height="15" fill="rgb(250,228,42)" fg:x="1943" fg:w="58"/><text x="0.6800%" y="703.50"></text></g><g><title>Method::print_short_name (65 samples, 0.01%)</title><rect x="0.4486%" y="693" width="0.0144%" height="15" fill="rgb(240,193,28)" fg:x="2027" fg:w="65"/><text x="0.6986%" y="703.50"></text></g><g><title>CompileTask::print (133 samples, 0.03%)</title><rect x="0.4486%" y="709" width="0.0294%" height="15" fill="rgb(216,20,37)" fg:x="2027" fg:w="133"/><text x="0.6986%" y="719.50"></text></g><g><title>outputStream::print (68 samples, 0.02%)</title><rect x="0.4630%" y="693" width="0.0150%" height="15" fill="rgb(206,188,39)" fg:x="2092" fg:w="68"/><text x="0.7130%" y="703.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (66 samples, 0.01%)</title><rect x="0.4634%" y="677" width="0.0146%" height="15" fill="rgb(217,207,13)" fg:x="2094" fg:w="66"/><text x="0.7134%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (58 samples, 0.01%)</title><rect x="0.5035%" y="549" width="0.0128%" height="15" fill="rgb(231,73,38)" fg:x="2275" fg:w="58"/><text x="0.7535%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (95 samples, 0.02%)</title><rect x="0.5019%" y="565" width="0.0210%" height="15" fill="rgb(225,20,46)" fg:x="2268" fg:w="95"/><text x="0.7519%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (143 samples, 0.03%)</title><rect x="0.5015%" y="581" width="0.0316%" height="15" fill="rgb(210,31,41)" fg:x="2266" fg:w="143"/><text x="0.7515%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (46 samples, 0.01%)</title><rect x="0.5230%" y="565" width="0.0102%" height="15" fill="rgb(221,200,47)" fg:x="2363" fg:w="46"/><text x="0.7730%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (72 samples, 0.02%)</title><rect x="0.5331%" y="581" width="0.0159%" height="15" fill="rgb(226,26,5)" fg:x="2409" fg:w="72"/><text x="0.7831%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (225 samples, 0.05%)</title><rect x="0.4995%" y="613" width="0.0498%" height="15" fill="rgb(249,33,26)" fg:x="2257" fg:w="225"/><text x="0.7495%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (223 samples, 0.05%)</title><rect x="0.4999%" y="597" width="0.0494%" height="15" fill="rgb(235,183,28)" fg:x="2259" fg:w="223"/><text x="0.7499%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (395 samples, 0.09%)</title><rect x="0.4867%" y="629" width="0.0874%" height="15" fill="rgb(221,5,38)" fg:x="2199" fg:w="395"/><text x="0.7367%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (47 samples, 0.01%)</title><rect x="0.5809%" y="533" width="0.0104%" height="15" fill="rgb(247,18,42)" fg:x="2625" fg:w="47"/><text x="0.8309%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (67 samples, 0.01%)</title><rect x="0.5796%" y="549" width="0.0148%" height="15" fill="rgb(241,131,45)" fg:x="2619" fg:w="67"/><text x="0.8296%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (89 samples, 0.02%)</title><rect x="0.5787%" y="565" width="0.0197%" height="15" fill="rgb(249,31,29)" fg:x="2615" fg:w="89"/><text x="0.8287%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (115 samples, 0.03%)</title><rect x="0.5767%" y="597" width="0.0255%" height="15" fill="rgb(225,111,53)" fg:x="2606" fg:w="115"/><text x="0.8267%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (111 samples, 0.02%)</title><rect x="0.5776%" y="581" width="0.0246%" height="15" fill="rgb(238,160,17)" fg:x="2610" fg:w="111"/><text x="0.8276%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (78 samples, 0.02%)</title><rect x="0.6250%" y="533" width="0.0173%" height="15" fill="rgb(214,148,48)" fg:x="2824" fg:w="78"/><text x="0.8750%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (151 samples, 0.03%)</title><rect x="0.6090%" y="581" width="0.0334%" height="15" fill="rgb(232,36,49)" fg:x="2752" fg:w="151"/><text x="0.8590%" y="591.50"></text></g><g><title>ciMethod::bci_block_start (113 samples, 0.03%)</title><rect x="0.6175%" y="565" width="0.0250%" height="15" fill="rgb(209,103,24)" fg:x="2790" fg:w="113"/><text x="0.8675%" y="575.50"></text></g><g><title>MethodLiveness::compute_liveness (110 samples, 0.02%)</title><rect x="0.6181%" y="549" width="0.0243%" height="15" fill="rgb(229,88,8)" fg:x="2793" fg:w="110"/><text x="0.8681%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (170 samples, 0.04%)</title><rect x="0.6055%" y="597" width="0.0376%" height="15" fill="rgb(213,181,19)" fg:x="2736" fg:w="170"/><text x="0.8555%" y="607.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.6697%" y="565" width="0.0113%" height="15" fill="rgb(254,191,54)" fg:x="3026" fg:w="51"/><text x="0.9197%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (58 samples, 0.01%)</title><rect x="0.7066%" y="485" width="0.0128%" height="15" fill="rgb(241,83,37)" fg:x="3193" fg:w="58"/><text x="0.9566%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (73 samples, 0.02%)</title><rect x="0.7042%" y="501" width="0.0162%" height="15" fill="rgb(233,36,39)" fg:x="3182" fg:w="73"/><text x="0.9542%" y="511.50"></text></g><g><title>ciField::ciField (121 samples, 0.03%)</title><rect x="0.7000%" y="517" width="0.0268%" height="15" fill="rgb(226,3,54)" fg:x="3163" fg:w="121"/><text x="0.9500%" y="527.50"></text></g><g><title>ciEnv::get_field_by_index (143 samples, 0.03%)</title><rect x="0.6960%" y="533" width="0.0316%" height="15" fill="rgb(245,192,40)" fg:x="3145" fg:w="143"/><text x="0.9460%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (161 samples, 0.04%)</title><rect x="0.6956%" y="549" width="0.0356%" height="15" fill="rgb(238,167,29)" fg:x="3143" fg:w="161"/><text x="0.9456%" y="559.50"></text></g><g><title>GraphBuilder::access_field (229 samples, 0.05%)</title><rect x="0.6838%" y="565" width="0.0507%" height="15" fill="rgb(232,182,51)" fg:x="3090" fg:w="229"/><text x="0.9338%" y="575.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.8018%" y="485" width="0.0113%" height="15" fill="rgb(231,60,39)" fg:x="3623" fg:w="51"/><text x="1.0518%" y="495.50"></text></g><g><title>ciField::ciField (73 samples, 0.02%)</title><rect x="0.8228%" y="437" width="0.0162%" height="15" fill="rgb(208,69,12)" fg:x="3718" fg:w="73"/><text x="1.0728%" y="447.50"></text></g><g><title>ciEnv::get_field_by_index (84 samples, 0.02%)</title><rect x="0.8215%" y="453" width="0.0186%" height="15" fill="rgb(235,93,37)" fg:x="3712" fg:w="84"/><text x="1.0715%" y="463.50"></text></g><g><title>ciBytecodeStream::get_field (93 samples, 0.02%)</title><rect x="0.8215%" y="469" width="0.0206%" height="15" fill="rgb(213,116,39)" fg:x="3712" fg:w="93"/><text x="1.0715%" y="479.50"></text></g><g><title>GraphBuilder::access_field (130 samples, 0.03%)</title><rect x="0.8146%" y="485" width="0.0288%" height="15" fill="rgb(222,207,29)" fg:x="3681" fg:w="130"/><text x="1.0646%" y="495.50"></text></g><g><title>ciBytecodeStream::get_field (58 samples, 0.01%)</title><rect x="0.8874%" y="389" width="0.0128%" height="15" fill="rgb(206,96,30)" fg:x="4010" fg:w="58"/><text x="1.1374%" y="399.50"></text></g><g><title>GraphBuilder::access_field (82 samples, 0.02%)</title><rect x="0.8828%" y="405" width="0.0181%" height="15" fill="rgb(218,138,4)" fg:x="3989" fg:w="82"/><text x="1.1328%" y="415.50"></text></g><g><title>GraphBuilder::try_inline (48 samples, 0.01%)</title><rect x="0.9437%" y="229" width="0.0106%" height="15" fill="rgb(250,191,14)" fg:x="4264" fg:w="48"/><text x="1.1937%" y="239.50"></text></g><g><title>GraphBuilder::try_inline_full (48 samples, 0.01%)</title><rect x="0.9437%" y="213" width="0.0106%" height="15" fill="rgb(239,60,40)" fg:x="4264" fg:w="48"/><text x="1.1937%" y="223.50"></text></g><g><title>GraphBuilder::invoke (72 samples, 0.02%)</title><rect x="0.9430%" y="245" width="0.0159%" height="15" fill="rgb(206,27,48)" fg:x="4261" fg:w="72"/><text x="1.1930%" y="255.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (111 samples, 0.02%)</title><rect x="0.9370%" y="277" width="0.0246%" height="15" fill="rgb(225,35,8)" fg:x="4234" fg:w="111"/><text x="1.1870%" y="287.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (111 samples, 0.02%)</title><rect x="0.9370%" y="261" width="0.0246%" height="15" fill="rgb(250,213,24)" fg:x="4234" fg:w="111"/><text x="1.1870%" y="271.50"></text></g><g><title>GraphBuilder::try_inline_full (141 samples, 0.03%)</title><rect x="0.9361%" y="293" width="0.0312%" height="15" fill="rgb(247,123,22)" fg:x="4230" fg:w="141"/><text x="1.1861%" y="303.50"></text></g><g><title>GraphBuilder::try_inline (155 samples, 0.03%)</title><rect x="0.9355%" y="309" width="0.0343%" height="15" fill="rgb(231,138,38)" fg:x="4227" fg:w="155"/><text x="1.1855%" y="319.50"></text></g><g><title>GraphBuilder::invoke (218 samples, 0.05%)</title><rect x="0.9339%" y="325" width="0.0482%" height="15" fill="rgb(231,145,46)" fg:x="4220" fg:w="218"/><text x="1.1839%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (322 samples, 0.07%)</title><rect x="0.9140%" y="357" width="0.0713%" height="15" fill="rgb(251,118,11)" fg:x="4130" fg:w="322"/><text x="1.1640%" y="367.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (318 samples, 0.07%)</title><rect x="0.9149%" y="341" width="0.0704%" height="15" fill="rgb(217,147,25)" fg:x="4134" fg:w="318"/><text x="1.1649%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (418 samples, 0.09%)</title><rect x="0.9105%" y="373" width="0.0925%" height="15" fill="rgb(247,81,37)" fg:x="4114" fg:w="418"/><text x="1.1605%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (47 samples, 0.01%)</title><rect x="1.0039%" y="357" width="0.0104%" height="15" fill="rgb(209,12,38)" fg:x="4536" fg:w="47"/><text x="1.2539%" y="367.50"></text></g><g><title>GraphBuilder::try_inline_full (47 samples, 0.01%)</title><rect x="1.0039%" y="341" width="0.0104%" height="15" fill="rgb(227,1,9)" fg:x="4536" fg:w="47"/><text x="1.2539%" y="351.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (48 samples, 0.01%)</title><rect x="1.0039%" y="373" width="0.0106%" height="15" fill="rgb(248,47,43)" fg:x="4536" fg:w="48"/><text x="1.2539%" y="383.50"></text></g><g><title>GraphBuilder::try_inline (475 samples, 0.11%)</title><rect x="0.9098%" y="389" width="0.1051%" height="15" fill="rgb(221,10,30)" fg:x="4111" fg:w="475"/><text x="1.1598%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (59 samples, 0.01%)</title><rect x="1.0278%" y="357" width="0.0131%" height="15" fill="rgb(210,229,1)" fg:x="4644" fg:w="59"/><text x="1.2778%" y="367.50"></text></g><g><title>ciObjectFactory::create_new_metadata (53 samples, 0.01%)</title><rect x="1.0291%" y="341" width="0.0117%" height="15" fill="rgb(222,148,37)" fg:x="4650" fg:w="53"/><text x="1.2791%" y="351.50"></text></g><g><title>ciBytecodeStream::get_method (102 samples, 0.02%)</title><rect x="1.0191%" y="389" width="0.0226%" height="15" fill="rgb(234,67,33)" fg:x="4605" fg:w="102"/><text x="1.2691%" y="399.50"></text></g><g><title>ciEnv::get_method_by_index_impl (95 samples, 0.02%)</title><rect x="1.0207%" y="373" width="0.0210%" height="15" fill="rgb(247,98,35)" fg:x="4612" fg:w="95"/><text x="1.2707%" y="383.50"></text></g><g><title>GraphBuilder::invoke (633 samples, 0.14%)</title><rect x="0.9058%" y="405" width="0.1401%" height="15" fill="rgb(247,138,52)" fg:x="4093" fg:w="633"/><text x="1.1558%" y="415.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (853 samples, 0.19%)</title><rect x="0.8704%" y="437" width="0.1888%" height="15" fill="rgb(213,79,30)" fg:x="3933" fg:w="853"/><text x="1.1204%" y="447.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (843 samples, 0.19%)</title><rect x="0.8726%" y="421" width="0.1866%" height="15" fill="rgb(246,177,23)" fg:x="3943" fg:w="843"/><text x="1.1226%" y="431.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (52 samples, 0.01%)</title><rect x="1.0614%" y="421" width="0.0115%" height="15" fill="rgb(230,62,27)" fg:x="4796" fg:w="52"/><text x="1.3114%" y="431.50"></text></g><g><title>GraphBuilder::push_scope (86 samples, 0.02%)</title><rect x="1.0607%" y="437" width="0.0190%" height="15" fill="rgb(216,154,8)" fg:x="4793" fg:w="86"/><text x="1.3107%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (74 samples, 0.02%)</title><rect x="1.0818%" y="437" width="0.0164%" height="15" fill="rgb(244,35,45)" fg:x="4888" fg:w="74"/><text x="1.3318%" y="447.50"></text></g><g><title>ciMethod::ensure_method_data (69 samples, 0.02%)</title><rect x="1.0829%" y="421" width="0.0153%" height="15" fill="rgb(251,115,12)" fg:x="4893" fg:w="69"/><text x="1.3329%" y="431.50"></text></g><g><title>GraphBuilder::try_inline_full (1,064 samples, 0.24%)</title><rect x="0.8640%" y="453" width="0.2355%" height="15" fill="rgb(240,54,50)" fg:x="3904" fg:w="1064"/><text x="1.1140%" y="463.50"></text></g><g><title>GraphBuilder::try_inline (1,110 samples, 0.25%)</title><rect x="0.8620%" y="469" width="0.2457%" height="15" fill="rgb(233,84,52)" fg:x="3895" fg:w="1110"/><text x="1.1120%" y="479.50"></text></g><g><title>ciEnv::lookup_method (55 samples, 0.01%)</title><rect x="1.1231%" y="437" width="0.0122%" height="15" fill="rgb(207,117,47)" fg:x="5075" fg:w="55"/><text x="1.3731%" y="447.50"></text></g><g><title>ciMethod::ciMethod (69 samples, 0.02%)</title><rect x="1.1384%" y="405" width="0.0153%" height="15" fill="rgb(249,43,39)" fg:x="5144" fg:w="69"/><text x="1.3884%" y="415.50"></text></g><g><title>ciSignature::ciSignature (53 samples, 0.01%)</title><rect x="1.1420%" y="389" width="0.0117%" height="15" fill="rgb(209,38,44)" fg:x="5160" fg:w="53"/><text x="1.3920%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (86 samples, 0.02%)</title><rect x="1.1353%" y="437" width="0.0190%" height="15" fill="rgb(236,212,23)" fg:x="5130" fg:w="86"/><text x="1.3853%" y="447.50"></text></g><g><title>ciObjectFactory::create_new_metadata (79 samples, 0.02%)</title><rect x="1.1369%" y="421" width="0.0175%" height="15" fill="rgb(242,79,21)" fg:x="5137" fg:w="79"/><text x="1.3869%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (167 samples, 0.04%)</title><rect x="1.1181%" y="453" width="0.0370%" height="15" fill="rgb(211,96,35)" fg:x="5052" fg:w="167"/><text x="1.3681%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (183 samples, 0.04%)</title><rect x="1.1147%" y="469" width="0.0405%" height="15" fill="rgb(253,215,40)" fg:x="5037" fg:w="183"/><text x="1.3647%" y="479.50"></text></g><g><title>GraphBuilder::invoke (1,408 samples, 0.31%)</title><rect x="0.8523%" y="485" width="0.3116%" height="15" fill="rgb(211,81,21)" fg:x="3851" fg:w="1408"/><text x="1.1023%" y="495.50"></text></g><g><title>GraphBuilder::method_return (51 samples, 0.01%)</title><rect x="1.1647%" y="485" width="0.0113%" height="15" fill="rgb(208,190,38)" fg:x="5263" fg:w="51"/><text x="1.4147%" y="495.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,760 samples, 0.39%)</title><rect x="0.7927%" y="517" width="0.3895%" height="15" fill="rgb(235,213,38)" fg:x="3582" fg:w="1760"/><text x="1.0427%" y="527.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,749 samples, 0.39%)</title><rect x="0.7952%" y="501" width="0.3871%" height="15" fill="rgb(237,122,38)" fg:x="3593" fg:w="1749"/><text x="1.0452%" y="511.50"></text></g><g><title>BlockListBuilder::set_leaders (78 samples, 0.02%)</title><rect x="1.1937%" y="485" width="0.0173%" height="15" fill="rgb(244,218,35)" fg:x="5394" fg:w="78"/><text x="1.4437%" y="495.50"></text></g><g><title>ciMethod::bci_block_start (59 samples, 0.01%)</title><rect x="1.1979%" y="469" width="0.0131%" height="15" fill="rgb(240,68,47)" fg:x="5413" fg:w="59"/><text x="1.4479%" y="479.50"></text></g><g><title>MethodLiveness::compute_liveness (59 samples, 0.01%)</title><rect x="1.1979%" y="453" width="0.0131%" height="15" fill="rgb(210,16,53)" fg:x="5413" fg:w="59"/><text x="1.4479%" y="463.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (109 samples, 0.02%)</title><rect x="1.1873%" y="501" width="0.0241%" height="15" fill="rgb(235,124,12)" fg:x="5365" fg:w="109"/><text x="1.4373%" y="511.50"></text></g><g><title>GraphBuilder::push_scope (167 samples, 0.04%)</title><rect x="1.1860%" y="517" width="0.0370%" height="15" fill="rgb(224,169,11)" fg:x="5359" fg:w="167"/><text x="1.4360%" y="527.50"></text></g><g><title>Method::build_interpreter_method_data (55 samples, 0.01%)</title><rect x="1.2316%" y="485" width="0.0122%" height="15" fill="rgb(250,166,2)" fg:x="5565" fg:w="55"/><text x="1.4816%" y="495.50"></text></g><g><title>MethodData::allocate (55 samples, 0.01%)</title><rect x="1.2316%" y="469" width="0.0122%" height="15" fill="rgb(242,216,29)" fg:x="5565" fg:w="55"/><text x="1.4816%" y="479.50"></text></g><g><title>ciMethodData::load_data (60 samples, 0.01%)</title><rect x="1.2438%" y="485" width="0.0133%" height="15" fill="rgb(230,116,27)" fg:x="5620" fg:w="60"/><text x="1.4938%" y="495.50"></text></g><g><title>ciMethod::ensure_method_data (138 samples, 0.03%)</title><rect x="1.2316%" y="501" width="0.0305%" height="15" fill="rgb(228,99,48)" fg:x="5565" fg:w="138"/><text x="1.4816%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.03%)</title><rect x="1.2278%" y="517" width="0.0345%" height="15" fill="rgb(253,11,6)" fg:x="5548" fg:w="156"/><text x="1.4778%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,199 samples, 0.49%)</title><rect x="0.7770%" y="533" width="0.4867%" height="15" fill="rgb(247,143,39)" fg:x="3511" fg:w="2199"/><text x="1.0270%" y="543.50"></text></g><g><title>GraphBuilder::try_inline (2,225 samples, 0.49%)</title><rect x="0.7744%" y="549" width="0.4924%" height="15" fill="rgb(236,97,10)" fg:x="3499" fg:w="2225"/><text x="1.0244%" y="559.50"></text></g><g><title>ciEnv::lookup_method (110 samples, 0.02%)</title><rect x="1.2951%" y="517" width="0.0243%" height="15" fill="rgb(233,208,19)" fg:x="5852" fg:w="110"/><text x="1.5451%" y="527.50"></text></g><g><title>SignatureStream::as_symbol (51 samples, 0.01%)</title><rect x="1.3396%" y="453" width="0.0113%" height="15" fill="rgb(216,164,2)" fg:x="6053" fg:w="51"/><text x="1.5896%" y="463.50"></text></g><g><title>SymbolTable::lookup (49 samples, 0.01%)</title><rect x="1.3400%" y="437" width="0.0108%" height="15" fill="rgb(220,129,5)" fg:x="6055" fg:w="49"/><text x="1.5900%" y="447.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (48 samples, 0.01%)</title><rect x="1.3526%" y="453" width="0.0106%" height="15" fill="rgb(242,17,10)" fg:x="6112" fg:w="48"/><text x="1.6026%" y="463.50"></text></g><g><title>ciSignature::ciSignature (142 samples, 0.03%)</title><rect x="1.3356%" y="469" width="0.0314%" height="15" fill="rgb(242,107,0)" fg:x="6035" fg:w="142"/><text x="1.5856%" y="479.50"></text></g><g><title>ciMethod::ciMethod (179 samples, 0.04%)</title><rect x="1.3276%" y="485" width="0.0396%" height="15" fill="rgb(251,28,31)" fg:x="5999" fg:w="179"/><text x="1.5776%" y="495.50"></text></g><g><title>ciObjectFactory::get_metadata (220 samples, 0.05%)</title><rect x="1.3194%" y="517" width="0.0487%" height="15" fill="rgb(233,223,10)" fg:x="5962" fg:w="220"/><text x="1.5694%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (196 samples, 0.04%)</title><rect x="1.3248%" y="501" width="0.0434%" height="15" fill="rgb(215,21,27)" fg:x="5986" fg:w="196"/><text x="1.5748%" y="511.50"></text></g><g><title>ciBytecodeStream::get_method (400 samples, 0.09%)</title><rect x="1.2809%" y="549" width="0.0885%" height="15" fill="rgb(232,23,21)" fg:x="5788" fg:w="400"/><text x="1.5309%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (376 samples, 0.08%)</title><rect x="1.2862%" y="533" width="0.0832%" height="15" fill="rgb(244,5,23)" fg:x="5812" fg:w="376"/><text x="1.5362%" y="543.50"></text></g><g><title>Dependencies::find_unique_concrete_method (46 samples, 0.01%)</title><rect x="1.3750%" y="533" width="0.0102%" height="15" fill="rgb(226,81,46)" fg:x="6213" fg:w="46"/><text x="1.6250%" y="543.50"></text></g><g><title>ciMethod::find_monomorphic_target (65 samples, 0.01%)</title><rect x="1.3743%" y="549" width="0.0144%" height="15" fill="rgb(247,70,30)" fg:x="6210" fg:w="65"/><text x="1.6243%" y="559.50"></text></g><g><title>GraphBuilder::invoke (2,897 samples, 0.64%)</title><rect x="0.7509%" y="565" width="0.6411%" height="15" fill="rgb(212,68,19)" fg:x="3393" fg:w="2897"/><text x="1.0009%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,401 samples, 0.75%)</title><rect x="0.6580%" y="581" width="0.7527%" height="15" fill="rgb(240,187,13)" fg:x="2973" fg:w="3401"/><text x="0.9080%" y="591.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,462 samples, 0.77%)</title><rect x="0.6475%" y="597" width="0.7662%" height="15" fill="rgb(223,113,26)" fg:x="2926" fg:w="3462"/><text x="0.8975%" y="607.50"></text></g><g><title>GraphBuilder::setup_start_block (46 samples, 0.01%)</title><rect x="1.4142%" y="597" width="0.0102%" height="15" fill="rgb(206,192,2)" fg:x="6390" fg:w="46"/><text x="1.6642%" y="607.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,854 samples, 0.85%)</title><rect x="0.5750%" y="613" width="0.8529%" height="15" fill="rgb(241,108,4)" fg:x="2598" fg:w="3854"/><text x="0.8250%" y="623.50"></text></g><g><title>IR::IR (3,871 samples, 0.86%)</title><rect x="0.5741%" y="629" width="0.8567%" height="15" fill="rgb(247,173,49)" fg:x="2594" fg:w="3871"/><text x="0.8241%" y="639.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (49 samples, 0.01%)</title><rect x="1.4339%" y="597" width="0.0108%" height="15" fill="rgb(224,114,35)" fg:x="6479" fg:w="49"/><text x="1.6839%" y="607.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (95 samples, 0.02%)</title><rect x="1.4308%" y="613" width="0.0210%" height="15" fill="rgb(245,159,27)" fg:x="6465" fg:w="95"/><text x="1.6808%" y="623.50"></text></g><g><title>IR::compute_code (98 samples, 0.02%)</title><rect x="1.4308%" y="629" width="0.0217%" height="15" fill="rgb(245,172,44)" fg:x="6465" fg:w="98"/><text x="1.6808%" y="639.50"></text></g><g><title>UseCountComputer::block_do (83 samples, 0.02%)</title><rect x="1.4542%" y="597" width="0.0184%" height="15" fill="rgb(236,23,11)" fg:x="6571" fg:w="83"/><text x="1.7042%" y="607.50"></text></g><g><title>BlockList::iterate_backward (87 samples, 0.02%)</title><rect x="1.4538%" y="613" width="0.0193%" height="15" fill="rgb(205,117,38)" fg:x="6569" fg:w="87"/><text x="1.7038%" y="623.50"></text></g><g><title>IR::compute_use_counts (129 samples, 0.03%)</title><rect x="1.4525%" y="629" width="0.0285%" height="15" fill="rgb(237,72,25)" fg:x="6563" fg:w="129"/><text x="1.7025%" y="639.50"></text></g><g><title>NullCheckEliminator::iterate_one (162 samples, 0.04%)</title><rect x="1.4861%" y="597" width="0.0359%" height="15" fill="rgb(244,70,9)" fg:x="6715" fg:w="162"/><text x="1.7361%" y="607.50"></text></g><g><title>IR::eliminate_null_checks (192 samples, 0.04%)</title><rect x="1.4810%" y="629" width="0.0425%" height="15" fill="rgb(217,125,39)" fg:x="6692" fg:w="192"/><text x="1.7310%" y="639.50"></text></g><g><title>Optimizer::eliminate_null_checks (192 samples, 0.04%)</title><rect x="1.4810%" y="613" width="0.0425%" height="15" fill="rgb(235,36,10)" fg:x="6692" fg:w="192"/><text x="1.7310%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (50 samples, 0.01%)</title><rect x="1.5261%" y="581" width="0.0111%" height="15" fill="rgb(251,123,47)" fg:x="6896" fg:w="50"/><text x="1.7761%" y="591.50"></text></g><g><title>IR::optimize_blocks (65 samples, 0.01%)</title><rect x="1.5235%" y="629" width="0.0144%" height="15" fill="rgb(221,13,13)" fg:x="6884" fg:w="65"/><text x="1.7735%" y="639.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (55 samples, 0.01%)</title><rect x="1.5257%" y="613" width="0.0122%" height="15" fill="rgb(238,131,9)" fg:x="6894" fg:w="55"/><text x="1.7757%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (54 samples, 0.01%)</title><rect x="1.5259%" y="597" width="0.0120%" height="15" fill="rgb(211,50,8)" fg:x="6895" fg:w="54"/><text x="1.7759%" y="607.50"></text></g><g><title>IR::split_critical_edges (52 samples, 0.01%)</title><rect x="1.5379%" y="629" width="0.0115%" height="15" fill="rgb(245,182,24)" fg:x="6949" fg:w="52"/><text x="1.7879%" y="639.50"></text></g><g><title>Compilation::build_hir (4,852 samples, 1.07%)</title><rect x="0.4856%" y="645" width="1.0738%" height="15" fill="rgb(242,14,37)" fg:x="2194" fg:w="4852"/><text x="0.7356%" y="655.50"></text></g><g><title>LIR_Assembler::add_call_info (99 samples, 0.02%)</title><rect x="1.5987%" y="581" width="0.0219%" height="15" fill="rgb(246,228,12)" fg:x="7224" fg:w="99"/><text x="1.8487%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (99 samples, 0.02%)</title><rect x="1.5987%" y="565" width="0.0219%" height="15" fill="rgb(213,55,15)" fg:x="7224" fg:w="99"/><text x="1.8487%" y="575.50"></text></g><g><title>LIR_Assembler::call (110 samples, 0.02%)</title><rect x="1.5972%" y="597" width="0.0243%" height="15" fill="rgb(209,9,3)" fg:x="7217" fg:w="110"/><text x="1.8472%" y="607.50"></text></g><g><title>LIR_Assembler::emit_call (194 samples, 0.04%)</title><rect x="1.5844%" y="613" width="0.0429%" height="15" fill="rgb(230,59,30)" fg:x="7159" fg:w="194"/><text x="1.8344%" y="623.50"></text></g><g><title>LIR_Assembler::mem2reg (55 samples, 0.01%)</title><rect x="1.6468%" y="597" width="0.0122%" height="15" fill="rgb(209,121,21)" fg:x="7441" fg:w="55"/><text x="1.8968%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op1 (183 samples, 0.04%)</title><rect x="1.6357%" y="613" width="0.0405%" height="15" fill="rgb(220,109,13)" fg:x="7391" fg:w="183"/><text x="1.8857%" y="623.50"></text></g><g><title>LIR_Assembler::emit_profile_call (75 samples, 0.02%)</title><rect x="1.6813%" y="613" width="0.0166%" height="15" fill="rgb(232,18,1)" fg:x="7597" fg:w="75"/><text x="1.9313%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (744 samples, 0.16%)</title><rect x="1.5622%" y="629" width="0.1647%" height="15" fill="rgb(215,41,42)" fg:x="7059" fg:w="744"/><text x="1.8122%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (125 samples, 0.03%)</title><rect x="1.7437%" y="597" width="0.0277%" height="15" fill="rgb(224,123,36)" fg:x="7879" fg:w="125"/><text x="1.9937%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (124 samples, 0.03%)</title><rect x="1.7439%" y="581" width="0.0274%" height="15" fill="rgb(240,125,3)" fg:x="7880" fg:w="124"/><text x="1.9939%" y="591.50"></text></g><g><title>CounterOverflowStub::emit_code (164 samples, 0.04%)</title><rect x="1.7419%" y="613" width="0.0363%" height="15" fill="rgb(205,98,50)" fg:x="7871" fg:w="164"/><text x="1.9919%" y="623.50"></text></g><g><title>LIR_Assembler::add_call_info (63 samples, 0.01%)</title><rect x="1.7826%" y="597" width="0.0139%" height="15" fill="rgb(205,185,37)" fg:x="8055" fg:w="63"/><text x="2.0326%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (61 samples, 0.01%)</title><rect x="1.7831%" y="581" width="0.0135%" height="15" fill="rgb(238,207,15)" fg:x="8057" fg:w="61"/><text x="2.0331%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (79 samples, 0.02%)</title><rect x="1.7813%" y="613" width="0.0175%" height="15" fill="rgb(213,199,42)" fg:x="8049" fg:w="79"/><text x="2.0313%" y="623.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (378 samples, 0.08%)</title><rect x="1.7402%" y="629" width="0.0837%" height="15" fill="rgb(235,201,11)" fg:x="7863" fg:w="378"/><text x="1.9902%" y="639.50"></text></g><g><title>Compilation::emit_code_body (1,223 samples, 0.27%)</title><rect x="1.5593%" y="645" width="0.2707%" height="15" fill="rgb(207,46,11)" fg:x="7046" fg:w="1223"/><text x="1.8093%" y="655.50"></text></g><g><title>LIRGenerator::do_Base (88 samples, 0.02%)</title><rect x="1.8442%" y="597" width="0.0195%" height="15" fill="rgb(241,35,35)" fg:x="8333" fg:w="88"/><text x="2.0942%" y="607.50"></text></g><g><title>LIRGenerator::move_to_phi (62 samples, 0.01%)</title><rect x="1.8718%" y="565" width="0.0137%" height="15" fill="rgb(243,32,47)" fg:x="8458" fg:w="62"/><text x="2.1218%" y="575.50"></text></g><g><title>PhiResolver::create_node (55 samples, 0.01%)</title><rect x="1.8734%" y="549" width="0.0122%" height="15" fill="rgb(247,202,23)" fg:x="8465" fg:w="55"/><text x="2.1234%" y="559.50"></text></g><g><title>LIRGenerator::move_to_phi (256 samples, 0.06%)</title><rect x="1.8690%" y="581" width="0.0567%" height="15" fill="rgb(219,102,11)" fg:x="8445" fg:w="256"/><text x="2.1190%" y="591.50"></text></g><g><title>PhiResolverState::reset (176 samples, 0.04%)</title><rect x="1.8867%" y="565" width="0.0390%" height="15" fill="rgb(243,110,44)" fg:x="8525" fg:w="176"/><text x="2.1367%" y="575.50"></text></g><g><title>LIRGenerator::do_Goto (284 samples, 0.06%)</title><rect x="1.8650%" y="597" width="0.0629%" height="15" fill="rgb(222,74,54)" fg:x="8427" fg:w="284"/><text x="2.1150%" y="607.50"></text></g><g><title>LIRGenerator::do_If (68 samples, 0.02%)</title><rect x="1.9278%" y="597" width="0.0150%" height="15" fill="rgb(216,99,12)" fg:x="8711" fg:w="68"/><text x="2.1778%" y="607.50"></text></g><g><title>LIRGenerator::state_for (65 samples, 0.01%)</title><rect x="1.9601%" y="581" width="0.0144%" height="15" fill="rgb(226,22,26)" fg:x="8857" fg:w="65"/><text x="2.2101%" y="591.50"></text></g><g><title>LIRGenerator::do_Invoke (147 samples, 0.03%)</title><rect x="1.9435%" y="597" width="0.0325%" height="15" fill="rgb(217,163,10)" fg:x="8782" fg:w="147"/><text x="2.1935%" y="607.50"></text></g><g><title>LIRGenerator::state_for (57 samples, 0.01%)</title><rect x="2.0144%" y="581" width="0.0126%" height="15" fill="rgb(213,25,53)" fg:x="9102" fg:w="57"/><text x="2.2644%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (118 samples, 0.03%)</title><rect x="2.0053%" y="597" width="0.0261%" height="15" fill="rgb(252,105,26)" fg:x="9061" fg:w="118"/><text x="2.2553%" y="607.50"></text></g><g><title>LIRGenerator::block_do (971 samples, 0.21%)</title><rect x="1.8327%" y="613" width="0.2149%" height="15" fill="rgb(220,39,43)" fg:x="8281" fg:w="971"/><text x="2.0827%" y="623.50"></text></g><g><title>BlockList::iterate_forward (978 samples, 0.22%)</title><rect x="1.8316%" y="629" width="0.2164%" height="15" fill="rgb(229,68,48)" fg:x="8276" fg:w="978"/><text x="2.0816%" y="639.50"></text></g><g><title>IntervalWalker::walk_to (149 samples, 0.03%)</title><rect x="2.0796%" y="581" width="0.0330%" height="15" fill="rgb(252,8,32)" fg:x="9397" fg:w="149"/><text x="2.3296%" y="591.50"></text></g><g><title>LinearScanWalker::find_free_reg (128 samples, 0.03%)</title><rect x="2.1440%" y="549" width="0.0283%" height="15" fill="rgb(223,20,43)" fg:x="9688" fg:w="128"/><text x="2.3940%" y="559.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (132 samples, 0.03%)</title><rect x="2.1779%" y="549" width="0.0292%" height="15" fill="rgb(229,81,49)" fg:x="9841" fg:w="132"/><text x="2.4279%" y="559.50"></text></g><g><title>Interval::split (51 samples, 0.01%)</title><rect x="2.2107%" y="533" width="0.0113%" height="15" fill="rgb(236,28,36)" fg:x="9989" fg:w="51"/><text x="2.4607%" y="543.50"></text></g><g><title>LinearScanWalker::split_before_usage (80 samples, 0.02%)</title><rect x="2.2071%" y="549" width="0.0177%" height="15" fill="rgb(249,185,26)" fg:x="9973" fg:w="80"/><text x="2.4571%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (476 samples, 0.11%)</title><rect x="2.1215%" y="565" width="0.1053%" height="15" fill="rgb(249,174,33)" fg:x="9586" fg:w="476"/><text x="2.3715%" y="575.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (87 samples, 0.02%)</title><rect x="2.2370%" y="549" width="0.0193%" height="15" fill="rgb(233,201,37)" fg:x="10108" fg:w="87"/><text x="2.4870%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (162 samples, 0.04%)</title><rect x="2.2268%" y="565" width="0.0359%" height="15" fill="rgb(221,78,26)" fg:x="10062" fg:w="162"/><text x="2.4768%" y="575.50"></text></g><g><title>LinearScanWalker::insert_move (50 samples, 0.01%)</title><rect x="2.2720%" y="565" width="0.0111%" height="15" fill="rgb(250,127,30)" fg:x="10266" fg:w="50"/><text x="2.5220%" y="575.50"></text></g><g><title>LinearScanWalker::activate_current (781 samples, 0.17%)</title><rect x="2.1126%" y="581" width="0.1728%" height="15" fill="rgb(230,49,44)" fg:x="9546" fg:w="781"/><text x="2.3626%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (986 samples, 0.22%)</title><rect x="2.0677%" y="597" width="0.2182%" height="15" fill="rgb(229,67,23)" fg:x="9343" fg:w="986"/><text x="2.3177%" y="607.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (70 samples, 0.02%)</title><rect x="2.2866%" y="597" width="0.0155%" height="15" fill="rgb(249,83,47)" fg:x="10332" fg:w="70"/><text x="2.5366%" y="607.50"></text></g><g><title>resource_allocate_bytes (46 samples, 0.01%)</title><rect x="2.2919%" y="581" width="0.0102%" height="15" fill="rgb(215,43,3)" fg:x="10356" fg:w="46"/><text x="2.5419%" y="591.50"></text></g><g><title>LinearScan::allocate_registers (1,084 samples, 0.24%)</title><rect x="2.0630%" y="613" width="0.2399%" height="15" fill="rgb(238,154,13)" fg:x="9322" fg:w="1084"/><text x="2.3130%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (103 samples, 0.02%)</title><rect x="2.3439%" y="581" width="0.0228%" height="15" fill="rgb(219,56,2)" fg:x="10591" fg:w="103"/><text x="2.5939%" y="591.50"></text></g><g><title>LinearScan::color_lir_opr (73 samples, 0.02%)</title><rect x="2.3671%" y="581" width="0.0162%" height="15" fill="rgb(233,0,4)" fg:x="10696" fg:w="73"/><text x="2.6171%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (49 samples, 0.01%)</title><rect x="2.4081%" y="549" width="0.0108%" height="15" fill="rgb(235,30,7)" fg:x="10881" fg:w="49"/><text x="2.6581%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (100 samples, 0.02%)</title><rect x="2.3985%" y="565" width="0.0221%" height="15" fill="rgb(250,79,13)" fg:x="10838" fg:w="100"/><text x="2.6485%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (182 samples, 0.04%)</title><rect x="2.3833%" y="581" width="0.0403%" height="15" fill="rgb(211,146,34)" fg:x="10769" fg:w="182"/><text x="2.6333%" y="591.50"></text></g><g><title>IntervalWalker::walk_to (90 samples, 0.02%)</title><rect x="2.4344%" y="549" width="0.0199%" height="15" fill="rgb(228,22,38)" fg:x="11000" fg:w="90"/><text x="2.6844%" y="559.50"></text></g><g><title>LinearScan::compute_oop_map (180 samples, 0.04%)</title><rect x="2.4280%" y="565" width="0.0398%" height="15" fill="rgb(235,168,5)" fg:x="10971" fg:w="180"/><text x="2.6780%" y="575.50"></text></g><g><title>LinearScan::assign_reg_num (734 samples, 0.16%)</title><rect x="2.3056%" y="597" width="0.1624%" height="15" fill="rgb(221,155,16)" fg:x="10418" fg:w="734"/><text x="2.5556%" y="607.50"></text></g><g><title>LinearScan::compute_oop_map (201 samples, 0.04%)</title><rect x="2.4236%" y="581" width="0.0445%" height="15" fill="rgb(215,215,53)" fg:x="10951" fg:w="201"/><text x="2.6736%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (778 samples, 0.17%)</title><rect x="2.3029%" y="613" width="0.1722%" height="15" fill="rgb(223,4,10)" fg:x="10406" fg:w="778"/><text x="2.5529%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (88 samples, 0.02%)</title><rect x="2.5488%" y="597" width="0.0195%" height="15" fill="rgb(234,103,6)" fg:x="11517" fg:w="88"/><text x="2.7988%" y="607.50"></text></g><g><title>LinearScan::add_def (62 samples, 0.01%)</title><rect x="2.5683%" y="597" width="0.0137%" height="15" fill="rgb(227,97,0)" fg:x="11605" fg:w="62"/><text x="2.8183%" y="607.50"></text></g><g><title>Interval::Interval (56 samples, 0.01%)</title><rect x="2.5999%" y="565" width="0.0124%" height="15" fill="rgb(234,150,53)" fg:x="11748" fg:w="56"/><text x="2.8499%" y="575.50"></text></g><g><title>LinearScan::add_temp (117 samples, 0.03%)</title><rect x="2.5873%" y="597" width="0.0259%" height="15" fill="rgb(228,201,54)" fg:x="11691" fg:w="117"/><text x="2.8373%" y="607.50"></text></g><g><title>LinearScan::create_interval (67 samples, 0.01%)</title><rect x="2.5984%" y="581" width="0.0148%" height="15" fill="rgb(222,22,37)" fg:x="11741" fg:w="67"/><text x="2.8484%" y="591.50"></text></g><g><title>Interval::Interval (57 samples, 0.01%)</title><rect x="2.6391%" y="565" width="0.0126%" height="15" fill="rgb(237,53,32)" fg:x="11925" fg:w="57"/><text x="2.8891%" y="575.50"></text></g><g><title>LinearScan::create_interval (94 samples, 0.02%)</title><rect x="2.6340%" y="581" width="0.0208%" height="15" fill="rgb(233,25,53)" fg:x="11902" fg:w="94"/><text x="2.8840%" y="591.50"></text></g><g><title>LinearScan::add_use (189 samples, 0.04%)</title><rect x="2.6132%" y="597" width="0.0418%" height="15" fill="rgb(210,40,34)" fg:x="11808" fg:w="189"/><text x="2.8632%" y="607.50"></text></g><g><title>LinearScan::build_intervals (892 samples, 0.20%)</title><rect x="2.4751%" y="613" width="0.1974%" height="15" fill="rgb(241,220,44)" fg:x="11184" fg:w="892"/><text x="2.7251%" y="623.50"></text></g><g><title>LinearScan::compute_global_live_sets (81 samples, 0.02%)</title><rect x="2.6725%" y="613" width="0.0179%" height="15" fill="rgb(235,28,35)" fg:x="12076" fg:w="81"/><text x="2.9225%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (90 samples, 0.02%)</title><rect x="2.7272%" y="597" width="0.0199%" height="15" fill="rgb(210,56,17)" fg:x="12323" fg:w="90"/><text x="2.9772%" y="607.50"></text></g><g><title>LinearScan::compute_local_live_sets (317 samples, 0.07%)</title><rect x="2.6905%" y="613" width="0.0702%" height="15" fill="rgb(224,130,29)" fg:x="12157" fg:w="317"/><text x="2.9405%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (74 samples, 0.02%)</title><rect x="2.7606%" y="613" width="0.0164%" height="15" fill="rgb(235,212,8)" fg:x="12474" fg:w="74"/><text x="3.0106%" y="623.50"></text></g><g><title>LinearScan::resolve_collect_mappings (81 samples, 0.02%)</title><rect x="2.7927%" y="597" width="0.0179%" height="15" fill="rgb(223,33,50)" fg:x="12619" fg:w="81"/><text x="3.0427%" y="607.50"></text></g><g><title>LinearScan::resolve_data_flow (143 samples, 0.03%)</title><rect x="2.7861%" y="613" width="0.0316%" height="15" fill="rgb(219,149,13)" fg:x="12589" fg:w="143"/><text x="3.0361%" y="623.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (51 samples, 0.01%)</title><rect x="2.8257%" y="613" width="0.0113%" height="15" fill="rgb(250,156,29)" fg:x="12768" fg:w="51"/><text x="3.0757%" y="623.50"></text></g><g><title>LinearScan::do_linear_scan (3,585 samples, 0.79%)</title><rect x="2.0575%" y="629" width="0.7934%" height="15" fill="rgb(216,193,19)" fg:x="9297" fg:w="3585"/><text x="2.3075%" y="639.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (63 samples, 0.01%)</title><rect x="2.8370%" y="613" width="0.0139%" height="15" fill="rgb(216,135,14)" fg:x="12819" fg:w="63"/><text x="3.0870%" y="623.50"></text></g><g><title>Compilation::emit_lir (4,619 samples, 1.02%)</title><rect x="1.8300%" y="645" width="1.0222%" height="15" fill="rgb(241,47,5)" fg:x="8269" fg:w="4619"/><text x="2.0800%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (75 samples, 0.02%)</title><rect x="2.8615%" y="613" width="0.0166%" height="15" fill="rgb(233,42,35)" fg:x="12930" fg:w="75"/><text x="3.1115%" y="623.50"></text></g><g><title>MethodData::allocate (75 samples, 0.02%)</title><rect x="2.8615%" y="597" width="0.0166%" height="15" fill="rgb(231,13,6)" fg:x="12930" fg:w="75"/><text x="3.1115%" y="607.50"></text></g><g><title>Compilation::compile_java_method (10,864 samples, 2.40%)</title><rect x="0.4842%" y="661" width="2.4043%" height="15" fill="rgb(207,181,40)" fg:x="2188" fg:w="10864"/><text x="0.7342%" y="671.50">Co..</text></g><g><title>ciMethod::ensure_method_data (129 samples, 0.03%)</title><rect x="2.8600%" y="645" width="0.0285%" height="15" fill="rgb(254,173,49)" fg:x="12923" fg:w="129"/><text x="3.1100%" y="655.50"></text></g><g><title>ciMethod::ensure_method_data (125 samples, 0.03%)</title><rect x="2.8609%" y="629" width="0.0277%" height="15" fill="rgb(221,1,38)" fg:x="12927" fg:w="125"/><text x="3.1109%" y="639.50"></text></g><g><title>CodeBuffer::finalize_oop_references (94 samples, 0.02%)</title><rect x="2.9246%" y="629" width="0.0208%" height="15" fill="rgb(206,124,46)" fg:x="13215" fg:w="94"/><text x="3.1746%" y="639.50"></text></g><g><title>CodeCache::allocate (49 samples, 0.01%)</title><rect x="2.9454%" y="629" width="0.0108%" height="15" fill="rgb(249,21,11)" fg:x="13309" fg:w="49"/><text x="3.1954%" y="639.50"></text></g><g><title>CodeBuffer::relocate_code_to (155 samples, 0.03%)</title><rect x="2.9709%" y="597" width="0.0343%" height="15" fill="rgb(222,201,40)" fg:x="13424" fg:w="155"/><text x="3.2209%" y="607.50"></text></g><g><title>CodeBuffer::copy_code_to (169 samples, 0.04%)</title><rect x="2.9702%" y="613" width="0.0374%" height="15" fill="rgb(235,61,29)" fg:x="13421" fg:w="169"/><text x="3.2202%" y="623.50"></text></g><g><title>nmethod::oops_do (57 samples, 0.01%)</title><rect x="3.0206%" y="597" width="0.0126%" height="15" fill="rgb(219,207,3)" fg:x="13649" fg:w="57"/><text x="3.2706%" y="607.50"></text></g><g><title>G1CollectedHeap::register_nmethod (58 samples, 0.01%)</title><rect x="3.0206%" y="613" width="0.0128%" height="15" fill="rgb(222,56,46)" fg:x="13649" fg:w="58"/><text x="3.2706%" y="623.50"></text></g><g><title>nmethod::nmethod (339 samples, 0.08%)</title><rect x="2.9695%" y="629" width="0.0750%" height="15" fill="rgb(239,76,54)" fg:x="13418" fg:w="339"/><text x="3.2195%" y="639.50"></text></g><g><title>nmethod::new_nmethod (553 samples, 0.12%)</title><rect x="2.9224%" y="645" width="0.1224%" height="15" fill="rgb(231,124,27)" fg:x="13205" fg:w="553"/><text x="3.1724%" y="655.50"></text></g><g><title>ciEnv::register_method (660 samples, 0.15%)</title><rect x="2.8991%" y="661" width="0.1461%" height="15" fill="rgb(249,195,6)" fg:x="13100" fg:w="660"/><text x="3.1491%" y="671.50"></text></g><g><title>Compilation::compile_method (11,577 samples, 2.56%)</title><rect x="0.4833%" y="677" width="2.5621%" height="15" fill="rgb(237,174,47)" fg:x="2184" fg:w="11577"/><text x="0.7333%" y="687.50">Co..</text></g><g><title>Compilation::Compilation (11,586 samples, 2.56%)</title><rect x="0.4827%" y="693" width="2.5641%" height="15" fill="rgb(206,201,31)" fg:x="2181" fg:w="11586"/><text x="0.7327%" y="703.50">Co..</text></g><g><title>Compiler::compile_method (11,609 samples, 2.57%)</title><rect x="0.4782%" y="709" width="2.5692%" height="15" fill="rgb(231,57,52)" fg:x="2161" fg:w="11609"/><text x="0.7282%" y="719.50">Co..</text></g><g><title>ciEnv::ciEnv (110 samples, 0.02%)</title><rect x="3.0563%" y="709" width="0.0243%" height="15" fill="rgb(248,177,22)" fg:x="13810" fg:w="110"/><text x="3.3063%" y="719.50"></text></g><g><title>ciObjectFactory::get (60 samples, 0.01%)</title><rect x="3.0673%" y="693" width="0.0133%" height="15" fill="rgb(215,211,37)" fg:x="13860" fg:w="60"/><text x="3.3173%" y="703.50"></text></g><g><title>ciMethod::ciMethod (113 samples, 0.03%)</title><rect x="3.0833%" y="661" width="0.0250%" height="15" fill="rgb(241,128,51)" fg:x="13932" fg:w="113"/><text x="3.3333%" y="671.50"></text></g><g><title>ciSignature::ciSignature (102 samples, 0.02%)</title><rect x="3.0857%" y="645" width="0.0226%" height="15" fill="rgb(227,165,31)" fg:x="13943" fg:w="102"/><text x="3.3357%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (140 samples, 0.03%)</title><rect x="3.0806%" y="709" width="0.0310%" height="15" fill="rgb(228,167,24)" fg:x="13920" fg:w="140"/><text x="3.3306%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (136 samples, 0.03%)</title><rect x="3.0815%" y="693" width="0.0301%" height="15" fill="rgb(228,143,12)" fg:x="13924" fg:w="136"/><text x="3.3315%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (131 samples, 0.03%)</title><rect x="3.0826%" y="677" width="0.0290%" height="15" fill="rgb(249,149,8)" fg:x="13929" fg:w="131"/><text x="3.3326%" y="687.50"></text></g><g><title>ciEnv::~ciEnv (47 samples, 0.01%)</title><rect x="3.1116%" y="709" width="0.0104%" height="15" fill="rgb(243,35,44)" fg:x="14060" fg:w="47"/><text x="3.3616%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,218 samples, 2.70%)</title><rect x="0.4194%" y="725" width="2.7040%" height="15" fill="rgb(246,89,9)" fg:x="1895" fg:w="12218"/><text x="0.6694%" y="735.50">Co..</text></g><g><title>__perf_event_task_sched_in (380 samples, 0.08%)</title><rect x="3.1521%" y="469" width="0.0841%" height="15" fill="rgb(233,213,13)" fg:x="14243" fg:w="380"/><text x="3.4021%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (372 samples, 0.08%)</title><rect x="3.1539%" y="453" width="0.0823%" height="15" fill="rgb(233,141,41)" fg:x="14251" fg:w="372"/><text x="3.4039%" y="463.50"></text></g><g><title>native_write_msr (371 samples, 0.08%)</title><rect x="3.1541%" y="437" width="0.0821%" height="15" fill="rgb(239,167,4)" fg:x="14252" fg:w="371"/><text x="3.4041%" y="447.50"></text></g><g><title>finish_task_switch (396 samples, 0.09%)</title><rect x="3.1508%" y="485" width="0.0876%" height="15" fill="rgb(209,217,16)" fg:x="14237" fg:w="396"/><text x="3.4008%" y="495.50"></text></g><g><title>futex_wait_queue_me (429 samples, 0.09%)</title><rect x="3.1475%" y="533" width="0.0949%" height="15" fill="rgb(219,88,35)" fg:x="14222" fg:w="429"/><text x="3.3975%" y="543.50"></text></g><g><title>schedule (424 samples, 0.09%)</title><rect x="3.1486%" y="517" width="0.0938%" height="15" fill="rgb(220,193,23)" fg:x="14227" fg:w="424"/><text x="3.3986%" y="527.50"></text></g><g><title>__schedule (423 samples, 0.09%)</title><rect x="3.1488%" y="501" width="0.0936%" height="15" fill="rgb(230,90,52)" fg:x="14228" fg:w="423"/><text x="3.3988%" y="511.50"></text></g><g><title>do_syscall_64 (451 samples, 0.10%)</title><rect x="3.1459%" y="597" width="0.0998%" height="15" fill="rgb(252,106,19)" fg:x="14215" fg:w="451"/><text x="3.3959%" y="607.50"></text></g><g><title>__x64_sys_futex (448 samples, 0.10%)</title><rect x="3.1466%" y="581" width="0.0991%" height="15" fill="rgb(206,74,20)" fg:x="14218" fg:w="448"/><text x="3.3966%" y="591.50"></text></g><g><title>do_futex (447 samples, 0.10%)</title><rect x="3.1468%" y="565" width="0.0989%" height="15" fill="rgb(230,138,44)" fg:x="14219" fg:w="447"/><text x="3.3968%" y="575.50"></text></g><g><title>futex_wait (447 samples, 0.10%)</title><rect x="3.1468%" y="549" width="0.0989%" height="15" fill="rgb(235,182,43)" fg:x="14219" fg:w="447"/><text x="3.3968%" y="559.50"></text></g><g><title>__pthread_cond_timedwait (464 samples, 0.10%)</title><rect x="3.1437%" y="661" width="0.1027%" height="15" fill="rgb(242,16,51)" fg:x="14205" fg:w="464"/><text x="3.3937%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (463 samples, 0.10%)</title><rect x="3.1439%" y="645" width="0.1025%" height="15" fill="rgb(248,9,4)" fg:x="14206" fg:w="463"/><text x="3.3939%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (460 samples, 0.10%)</title><rect x="3.1446%" y="629" width="0.1018%" height="15" fill="rgb(210,31,22)" fg:x="14209" fg:w="460"/><text x="3.3946%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (455 samples, 0.10%)</title><rect x="3.1457%" y="613" width="0.1007%" height="15" fill="rgb(239,54,39)" fg:x="14214" fg:w="455"/><text x="3.3957%" y="623.50"></text></g><g><title>Monitor::IWait (478 samples, 0.11%)</title><rect x="3.1417%" y="693" width="0.1058%" height="15" fill="rgb(230,99,41)" fg:x="14196" fg:w="478"/><text x="3.3917%" y="703.50"></text></g><g><title>os::PlatformEvent::park (470 samples, 0.10%)</title><rect x="3.1435%" y="677" width="0.1040%" height="15" fill="rgb(253,106,12)" fg:x="14204" fg:w="470"/><text x="3.3935%" y="687.50"></text></g><g><title>Monitor::wait (507 samples, 0.11%)</title><rect x="3.1408%" y="709" width="0.1122%" height="15" fill="rgb(213,46,41)" fg:x="14192" fg:w="507"/><text x="3.3908%" y="719.50"></text></g><g><title>TieredThresholdPolicy::select_task (48 samples, 0.01%)</title><rect x="3.2530%" y="709" width="0.0106%" height="15" fill="rgb(215,133,35)" fg:x="14699" fg:w="48"/><text x="3.5030%" y="719.50"></text></g><g><title>CompileQueue::get (597 samples, 0.13%)</title><rect x="3.1333%" y="725" width="0.1321%" height="15" fill="rgb(213,28,5)" fg:x="14158" fg:w="597"/><text x="3.3833%" y="735.50"></text></g><g><title>Thread::call_run (12,890 samples, 2.85%)</title><rect x="0.4181%" y="773" width="2.8527%" height="15" fill="rgb(215,77,49)" fg:x="1889" fg:w="12890"/><text x="0.6681%" y="783.50">Th..</text></g><g><title>JavaThread::thread_main_inner (12,889 samples, 2.85%)</title><rect x="0.4183%" y="757" width="2.8525%" height="15" fill="rgb(248,100,22)" fg:x="1890" fg:w="12889"/><text x="0.6683%" y="767.50">Ja..</text></g><g><title>CompileBroker::compiler_thread_loop (12,889 samples, 2.85%)</title><rect x="0.4183%" y="741" width="2.8525%" height="15" fill="rgb(208,67,9)" fg:x="1890" fg:w="12889"/><text x="0.6683%" y="751.50">Co..</text></g><g><title>__GI___clone (12,906 samples, 2.86%)</title><rect x="0.4147%" y="821" width="2.8562%" height="15" fill="rgb(219,133,21)" fg:x="1874" fg:w="12906"/><text x="0.6647%" y="831.50">__..</text></g><g><title>start_thread (12,900 samples, 2.85%)</title><rect x="0.4161%" y="805" width="2.8549%" height="15" fill="rgb(246,46,29)" fg:x="1880" fg:w="12900"/><text x="0.6661%" y="815.50">st..</text></g><g><title>thread_native_entry (12,900 samples, 2.85%)</title><rect x="0.4161%" y="789" width="2.8549%" height="15" fill="rgb(246,185,52)" fg:x="1880" fg:w="12900"/><text x="0.6661%" y="799.50">th..</text></g><g><title>C1_CompilerThre (14,781 samples, 3.27%)</title><rect x="0.0108%" y="837" width="3.2712%" height="15" fill="rgb(252,136,11)" fg:x="49" fg:w="14781"/><text x="0.2608%" y="847.50">C1_..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (55 samples, 0.01%)</title><rect x="3.3083%" y="821" width="0.0122%" height="15" fill="rgb(219,138,53)" fg:x="14949" fg:w="55"/><text x="3.5583%" y="831.50"></text></g><g><title>RegMask::is_UP (54 samples, 0.01%)</title><rect x="3.3086%" y="805" width="0.0120%" height="15" fill="rgb(211,51,23)" fg:x="14950" fg:w="54"/><text x="3.5586%" y="815.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (47 samples, 0.01%)</title><rect x="3.3212%" y="821" width="0.0104%" height="15" fill="rgb(247,221,28)" fg:x="15007" fg:w="47"/><text x="3.5712%" y="831.50"></text></g><g><title>ProjNode::pinned (98 samples, 0.02%)</title><rect x="3.3517%" y="805" width="0.0217%" height="15" fill="rgb(251,222,45)" fg:x="15145" fg:w="98"/><text x="3.6017%" y="815.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (103 samples, 0.02%)</title><rect x="3.3508%" y="821" width="0.0228%" height="15" fill="rgb(217,162,53)" fg:x="15141" fg:w="103"/><text x="3.6008%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (69 samples, 0.02%)</title><rect x="3.6060%" y="805" width="0.0153%" height="15" fill="rgb(229,93,14)" fg:x="16294" fg:w="69"/><text x="3.8560%" y="815.50"></text></g><g><title>MultiNode::is_CFG (104 samples, 0.02%)</title><rect x="3.7408%" y="805" width="0.0230%" height="15" fill="rgb(209,67,49)" fg:x="16903" fg:w="104"/><text x="3.9908%" y="815.50"></text></g><g><title>Node::is_CFG (100 samples, 0.02%)</title><rect x="3.7873%" y="805" width="0.0221%" height="15" fill="rgb(213,87,29)" fg:x="17113" fg:w="100"/><text x="4.0373%" y="815.50"></text></g><g><title>PhiNode::Opcode (52 samples, 0.01%)</title><rect x="3.9338%" y="805" width="0.0115%" height="15" fill="rgb(205,151,52)" fg:x="17775" fg:w="52"/><text x="4.1838%" y="815.50"></text></g><g><title>RegionNode::is_CFG (61 samples, 0.01%)</title><rect x="4.0159%" y="805" width="0.0135%" height="15" fill="rgb(253,215,39)" fg:x="18146" fg:w="61"/><text x="4.2659%" y="815.50"></text></g><g><title>_dl_update_slotinfo (259 samples, 0.06%)</title><rect x="4.1518%" y="805" width="0.0573%" height="15" fill="rgb(221,220,41)" fg:x="18760" fg:w="259"/><text x="4.4018%" y="815.50"></text></g><g><title>find_lowest_bit (72 samples, 0.02%)</title><rect x="4.2702%" y="805" width="0.0159%" height="15" fill="rgb(218,133,21)" fg:x="19295" fg:w="72"/><text x="4.5202%" y="815.50"></text></g><g><title>update_get_addr (64 samples, 0.01%)</title><rect x="4.3753%" y="805" width="0.0142%" height="15" fill="rgb(221,193,43)" fg:x="19770" fg:w="64"/><text x="4.6253%" y="815.50"></text></g><g><title>[anon] (4,546 samples, 1.01%)</title><rect x="3.3849%" y="821" width="1.0061%" height="15" fill="rgb(240,128,52)" fg:x="15295" fg:w="4546"/><text x="3.6349%" y="831.50"></text></g><g><title>ciEnv::get_method_by_index_impl (80 samples, 0.02%)</title><rect x="4.4355%" y="517" width="0.0177%" height="15" fill="rgb(253,114,12)" fg:x="20042" fg:w="80"/><text x="4.6855%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (53 samples, 0.01%)</title><rect x="4.4414%" y="501" width="0.0117%" height="15" fill="rgb(215,223,47)" fg:x="20069" fg:w="53"/><text x="4.6914%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (49 samples, 0.01%)</title><rect x="4.4423%" y="485" width="0.0108%" height="15" fill="rgb(248,225,23)" fg:x="20073" fg:w="49"/><text x="4.6923%" y="495.50"></text></g><g><title>ciMethod::ciMethod (48 samples, 0.01%)</title><rect x="4.4426%" y="469" width="0.0106%" height="15" fill="rgb(250,108,0)" fg:x="20074" fg:w="48"/><text x="4.6926%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (89 samples, 0.02%)</title><rect x="4.4339%" y="533" width="0.0197%" height="15" fill="rgb(228,208,7)" fg:x="20035" fg:w="89"/><text x="4.6839%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (91 samples, 0.02%)</title><rect x="4.4337%" y="549" width="0.0201%" height="15" fill="rgb(244,45,10)" fg:x="20034" fg:w="91"/><text x="4.6837%" y="559.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (147 samples, 0.03%)</title><rect x="4.4244%" y="565" width="0.0325%" height="15" fill="rgb(207,125,25)" fg:x="19992" fg:w="147"/><text x="4.6744%" y="575.50"></text></g><g><title>ciTypeFlow::flow_block (170 samples, 0.04%)</title><rect x="4.4195%" y="581" width="0.0376%" height="15" fill="rgb(210,195,18)" fg:x="19970" fg:w="170"/><text x="4.6695%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (171 samples, 0.04%)</title><rect x="4.4195%" y="597" width="0.0378%" height="15" fill="rgb(249,80,12)" fg:x="19970" fg:w="171"/><text x="4.6695%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (184 samples, 0.04%)</title><rect x="4.4175%" y="661" width="0.0407%" height="15" fill="rgb(221,65,9)" fg:x="19961" fg:w="184"/><text x="4.6675%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (180 samples, 0.04%)</title><rect x="4.4184%" y="645" width="0.0398%" height="15" fill="rgb(235,49,36)" fg:x="19965" fg:w="180"/><text x="4.6684%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (179 samples, 0.04%)</title><rect x="4.4187%" y="629" width="0.0396%" height="15" fill="rgb(225,32,20)" fg:x="19966" fg:w="179"/><text x="4.6687%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (179 samples, 0.04%)</title><rect x="4.4187%" y="613" width="0.0396%" height="15" fill="rgb(215,141,46)" fg:x="19966" fg:w="179"/><text x="4.6687%" y="623.50"></text></g><g><title>Compile::call_generator (233 samples, 0.05%)</title><rect x="4.4080%" y="677" width="0.0516%" height="15" fill="rgb(250,160,47)" fg:x="19918" fg:w="233"/><text x="4.6580%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (76 samples, 0.02%)</title><rect x="4.5014%" y="469" width="0.0168%" height="15" fill="rgb(216,222,40)" fg:x="20340" fg:w="76"/><text x="4.7514%" y="479.50"></text></g><g><title>ciTypeFlow::df_flow_types (107 samples, 0.02%)</title><rect x="4.4950%" y="501" width="0.0237%" height="15" fill="rgb(234,217,39)" fg:x="20311" fg:w="107"/><text x="4.7450%" y="511.50"></text></g><g><title>ciTypeFlow::flow_block (99 samples, 0.02%)</title><rect x="4.4968%" y="485" width="0.0219%" height="15" fill="rgb(207,178,40)" fg:x="20319" fg:w="99"/><text x="4.7468%" y="495.50"></text></g><g><title>ciTypeFlow::do_flow (114 samples, 0.03%)</title><rect x="4.4943%" y="533" width="0.0252%" height="15" fill="rgb(221,136,13)" fg:x="20308" fg:w="114"/><text x="4.7443%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (114 samples, 0.03%)</title><rect x="4.4943%" y="517" width="0.0252%" height="15" fill="rgb(249,199,10)" fg:x="20308" fg:w="114"/><text x="4.7443%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (165 samples, 0.04%)</title><rect x="4.4833%" y="565" width="0.0365%" height="15" fill="rgb(249,222,13)" fg:x="20258" fg:w="165"/><text x="4.7333%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (125 samples, 0.03%)</title><rect x="4.4921%" y="549" width="0.0277%" height="15" fill="rgb(244,185,38)" fg:x="20298" fg:w="125"/><text x="4.7421%" y="559.50"></text></g><g><title>Compile::call_generator (206 samples, 0.05%)</title><rect x="4.4762%" y="581" width="0.0456%" height="15" fill="rgb(236,202,9)" fg:x="20226" fg:w="206"/><text x="4.7262%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (48 samples, 0.01%)</title><rect x="4.5740%" y="405" width="0.0106%" height="15" fill="rgb(250,229,37)" fg:x="20668" fg:w="48"/><text x="4.8240%" y="415.50"></text></g><g><title>InlineTree::ok_to_inline (70 samples, 0.02%)</title><rect x="4.5696%" y="469" width="0.0155%" height="15" fill="rgb(206,174,23)" fg:x="20648" fg:w="70"/><text x="4.8196%" y="479.50"></text></g><g><title>ciMethod::get_flow_analysis (56 samples, 0.01%)</title><rect x="4.5727%" y="453" width="0.0124%" height="15" fill="rgb(211,33,43)" fg:x="20662" fg:w="56"/><text x="4.8227%" y="463.50"></text></g><g><title>ciTypeFlow::do_flow (52 samples, 0.01%)</title><rect x="4.5736%" y="437" width="0.0115%" height="15" fill="rgb(245,58,50)" fg:x="20666" fg:w="52"/><text x="4.8236%" y="447.50"></text></g><g><title>ciTypeFlow::flow_types (52 samples, 0.01%)</title><rect x="4.5736%" y="421" width="0.0115%" height="15" fill="rgb(244,68,36)" fg:x="20666" fg:w="52"/><text x="4.8236%" y="431.50"></text></g><g><title>Compile::call_generator (93 samples, 0.02%)</title><rect x="4.5669%" y="485" width="0.0206%" height="15" fill="rgb(232,229,15)" fg:x="20636" fg:w="93"/><text x="4.8169%" y="495.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.01%)</title><rect x="4.6506%" y="341" width="0.0144%" height="15" fill="rgb(254,30,23)" fg:x="21014" fg:w="65"/><text x="4.9006%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.01%)</title><rect x="4.6515%" y="325" width="0.0135%" height="15" fill="rgb(235,160,14)" fg:x="21018" fg:w="61"/><text x="4.9015%" y="335.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="4.6504%" y="357" width="0.0155%" height="15" fill="rgb(212,155,44)" fg:x="21013" fg:w="70"/><text x="4.9004%" y="367.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.03%)</title><rect x="4.6426%" y="389" width="0.0266%" height="15" fill="rgb(226,2,50)" fg:x="20978" fg:w="120"/><text x="4.8926%" y="399.50"></text></g><g><title>Parse::Parse (120 samples, 0.03%)</title><rect x="4.6426%" y="373" width="0.0266%" height="15" fill="rgb(234,177,6)" fg:x="20978" fg:w="120"/><text x="4.8926%" y="383.50"></text></g><g><title>Parse::do_call (250 samples, 0.06%)</title><rect x="4.6205%" y="405" width="0.0553%" height="15" fill="rgb(217,24,9)" fg:x="20878" fg:w="250"/><text x="4.8705%" y="415.50"></text></g><g><title>Parse::do_get_xxx (47 samples, 0.01%)</title><rect x="4.6776%" y="389" width="0.0104%" height="15" fill="rgb(220,13,46)" fg:x="21136" fg:w="47"/><text x="4.9276%" y="399.50"></text></g><g><title>Parse::do_field_access (93 samples, 0.02%)</title><rect x="4.6769%" y="405" width="0.0206%" height="15" fill="rgb(239,221,27)" fg:x="21133" fg:w="93"/><text x="4.9269%" y="415.50"></text></g><g><title>Parse::do_one_block (477 samples, 0.11%)</title><rect x="4.6103%" y="437" width="0.1056%" height="15" fill="rgb(222,198,25)" fg:x="20832" fg:w="477"/><text x="4.8603%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (466 samples, 0.10%)</title><rect x="4.6127%" y="421" width="0.1031%" height="15" fill="rgb(211,99,13)" fg:x="20843" fg:w="466"/><text x="4.8627%" y="431.50"></text></g><g><title>Parse::do_all_blocks (488 samples, 0.11%)</title><rect x="4.6103%" y="453" width="0.1080%" height="15" fill="rgb(232,111,31)" fg:x="20832" fg:w="488"/><text x="4.8603%" y="463.50"></text></g><g><title>ParseGenerator::generate (559 samples, 0.12%)</title><rect x="4.6015%" y="485" width="0.1237%" height="15" fill="rgb(245,82,37)" fg:x="20792" fg:w="559"/><text x="4.8515%" y="495.50"></text></g><g><title>Parse::Parse (559 samples, 0.12%)</title><rect x="4.6015%" y="469" width="0.1237%" height="15" fill="rgb(227,149,46)" fg:x="20792" fg:w="559"/><text x="4.8515%" y="479.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.01%)</title><rect x="4.7285%" y="421" width="0.0102%" height="15" fill="rgb(218,36,50)" fg:x="21366" fg:w="46"/><text x="4.9785%" y="431.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.01%)</title><rect x="4.7285%" y="437" width="0.0104%" height="15" fill="rgb(226,80,48)" fg:x="21366" fg:w="47"/><text x="4.9785%" y="447.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="4.7280%" y="469" width="0.0115%" height="15" fill="rgb(238,224,15)" fg:x="21364" fg:w="52"/><text x="4.9780%" y="479.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="4.7280%" y="453" width="0.0115%" height="15" fill="rgb(241,136,10)" fg:x="21364" fg:w="52"/><text x="4.9780%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (88 samples, 0.02%)</title><rect x="4.7254%" y="485" width="0.0195%" height="15" fill="rgb(208,32,45)" fg:x="21352" fg:w="88"/><text x="4.9754%" y="495.50"></text></g><g><title>Parse::do_call (847 samples, 0.19%)</title><rect x="4.5654%" y="501" width="0.1874%" height="15" fill="rgb(207,135,9)" fg:x="20629" fg:w="847"/><text x="4.8154%" y="511.50"></text></g><g><title>Parse::do_get_xxx (73 samples, 0.02%)</title><rect x="4.7568%" y="485" width="0.0162%" height="15" fill="rgb(206,86,44)" fg:x="21494" fg:w="73"/><text x="5.0068%" y="495.50"></text></g><g><title>GraphKit::access_store_at (54 samples, 0.01%)</title><rect x="4.7732%" y="469" width="0.0120%" height="15" fill="rgb(245,177,15)" fg:x="21568" fg:w="54"/><text x="5.0232%" y="479.50"></text></g><g><title>BarrierSetC2::store_at (54 samples, 0.01%)</title><rect x="4.7732%" y="453" width="0.0120%" height="15" fill="rgb(206,64,50)" fg:x="21568" fg:w="54"/><text x="5.0232%" y="463.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (50 samples, 0.01%)</title><rect x="4.7741%" y="437" width="0.0111%" height="15" fill="rgb(234,36,40)" fg:x="21572" fg:w="50"/><text x="5.0241%" y="447.50"></text></g><g><title>Parse::do_put_xxx (56 samples, 0.01%)</title><rect x="4.7730%" y="485" width="0.0124%" height="15" fill="rgb(213,64,8)" fg:x="21567" fg:w="56"/><text x="5.0230%" y="495.50"></text></g><g><title>Parse::do_field_access (150 samples, 0.03%)</title><rect x="4.7548%" y="501" width="0.0332%" height="15" fill="rgb(210,75,36)" fg:x="21485" fg:w="150"/><text x="5.0048%" y="511.50"></text></g><g><title>Parse::do_one_block (1,192 samples, 0.26%)</title><rect x="4.5514%" y="533" width="0.2638%" height="15" fill="rgb(229,88,21)" fg:x="20566" fg:w="1192"/><text x="4.8014%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,177 samples, 0.26%)</title><rect x="4.5548%" y="517" width="0.2605%" height="15" fill="rgb(252,204,47)" fg:x="20581" fg:w="1177"/><text x="4.8048%" y="527.50"></text></g><g><title>Parse::do_all_blocks (1,207 samples, 0.27%)</title><rect x="4.5503%" y="549" width="0.2671%" height="15" fill="rgb(208,77,27)" fg:x="20561" fg:w="1207"/><text x="4.8003%" y="559.50"></text></g><g><title>Parse::Parse (1,302 samples, 0.29%)</title><rect x="4.5388%" y="565" width="0.2881%" height="15" fill="rgb(221,76,26)" fg:x="20509" fg:w="1302"/><text x="4.7888%" y="575.50"></text></g><g><title>ParseGenerator::generate (1,303 samples, 0.29%)</title><rect x="4.5388%" y="581" width="0.2884%" height="15" fill="rgb(225,139,18)" fg:x="20509" fg:w="1303"/><text x="4.7888%" y="591.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.01%)</title><rect x="4.8385%" y="469" width="0.0108%" height="15" fill="rgb(230,137,11)" fg:x="21863" fg:w="49"/><text x="5.0885%" y="479.50"></text></g><g><title>Parse::Parse (49 samples, 0.01%)</title><rect x="4.8385%" y="453" width="0.0108%" height="15" fill="rgb(212,28,1)" fg:x="21863" fg:w="49"/><text x="5.0885%" y="463.50"></text></g><g><title>Parse::do_call (86 samples, 0.02%)</title><rect x="4.8341%" y="485" width="0.0190%" height="15" fill="rgb(248,164,17)" fg:x="21843" fg:w="86"/><text x="5.0841%" y="495.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.03%)</title><rect x="4.8334%" y="517" width="0.0259%" height="15" fill="rgb(222,171,42)" fg:x="21840" fg:w="117"/><text x="5.0834%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (116 samples, 0.03%)</title><rect x="4.8336%" y="501" width="0.0257%" height="15" fill="rgb(243,84,45)" fg:x="21841" fg:w="116"/><text x="5.0836%" y="511.50"></text></g><g><title>Parse::do_all_blocks (118 samples, 0.03%)</title><rect x="4.8334%" y="533" width="0.0261%" height="15" fill="rgb(252,49,23)" fg:x="21840" fg:w="118"/><text x="5.0834%" y="543.50"></text></g><g><title>ParseGenerator::generate (135 samples, 0.03%)</title><rect x="4.8318%" y="565" width="0.0299%" height="15" fill="rgb(215,19,7)" fg:x="21833" fg:w="135"/><text x="5.0818%" y="575.50"></text></g><g><title>Parse::Parse (135 samples, 0.03%)</title><rect x="4.8318%" y="549" width="0.0299%" height="15" fill="rgb(238,81,41)" fg:x="21833" fg:w="135"/><text x="5.0818%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (190 samples, 0.04%)</title><rect x="4.8272%" y="581" width="0.0420%" height="15" fill="rgb(210,199,37)" fg:x="21812" fg:w="190"/><text x="5.0772%" y="591.50"></text></g><g><title>Parse::do_call (1,813 samples, 0.40%)</title><rect x="4.4762%" y="597" width="0.4012%" height="15" fill="rgb(244,192,49)" fg:x="20226" fg:w="1813"/><text x="4.7262%" y="607.50"></text></g><g><title>Parse::do_get_xxx (66 samples, 0.01%)</title><rect x="4.8830%" y="581" width="0.0146%" height="15" fill="rgb(226,211,11)" fg:x="22064" fg:w="66"/><text x="5.1330%" y="591.50"></text></g><g><title>Parse::do_put_xxx (60 samples, 0.01%)</title><rect x="4.8976%" y="581" width="0.0133%" height="15" fill="rgb(236,162,54)" fg:x="22130" fg:w="60"/><text x="5.1476%" y="591.50"></text></g><g><title>GraphKit::access_store_at (58 samples, 0.01%)</title><rect x="4.8980%" y="565" width="0.0128%" height="15" fill="rgb(220,229,9)" fg:x="22132" fg:w="58"/><text x="5.1480%" y="575.50"></text></g><g><title>BarrierSetC2::store_at (58 samples, 0.01%)</title><rect x="4.8980%" y="549" width="0.0128%" height="15" fill="rgb(250,87,22)" fg:x="22132" fg:w="58"/><text x="5.1480%" y="559.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (56 samples, 0.01%)</title><rect x="4.8985%" y="533" width="0.0124%" height="15" fill="rgb(239,43,17)" fg:x="22134" fg:w="56"/><text x="5.1485%" y="543.50"></text></g><g><title>Parse::do_field_access (134 samples, 0.03%)</title><rect x="4.8819%" y="597" width="0.0297%" height="15" fill="rgb(231,177,25)" fg:x="22059" fg:w="134"/><text x="5.1319%" y="607.50"></text></g><g><title>Parse::do_all_blocks (2,084 samples, 0.46%)</title><rect x="4.4658%" y="645" width="0.4612%" height="15" fill="rgb(219,179,1)" fg:x="20179" fg:w="2084"/><text x="4.7158%" y="655.50"></text></g><g><title>Parse::do_one_block (2,084 samples, 0.46%)</title><rect x="4.4658%" y="629" width="0.4612%" height="15" fill="rgb(238,219,53)" fg:x="20179" fg:w="2084"/><text x="4.7158%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (2,076 samples, 0.46%)</title><rect x="4.4676%" y="613" width="0.4594%" height="15" fill="rgb(232,167,36)" fg:x="20187" fg:w="2076"/><text x="4.7176%" y="623.50"></text></g><g><title>ParseGenerator::generate (2,109 samples, 0.47%)</title><rect x="4.4605%" y="677" width="0.4667%" height="15" fill="rgb(244,19,51)" fg:x="20155" fg:w="2109"/><text x="4.7105%" y="687.50"></text></g><g><title>Parse::Parse (2,109 samples, 0.47%)</title><rect x="4.4605%" y="661" width="0.4667%" height="15" fill="rgb(224,6,22)" fg:x="20155" fg:w="2109"/><text x="4.7105%" y="671.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.02%)</title><rect x="4.9600%" y="421" width="0.0157%" height="15" fill="rgb(224,145,5)" fg:x="22412" fg:w="71"/><text x="5.2100%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="4.9606%" y="405" width="0.0150%" height="15" fill="rgb(234,130,49)" fg:x="22415" fg:w="68"/><text x="5.2106%" y="415.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.02%)</title><rect x="4.9600%" y="437" width="0.0164%" height="15" fill="rgb(254,6,2)" fg:x="22412" fg:w="74"/><text x="5.2100%" y="447.50"></text></g><g><title>ParseGenerator::generate (88 samples, 0.02%)</title><rect x="4.9580%" y="469" width="0.0195%" height="15" fill="rgb(208,96,46)" fg:x="22403" fg:w="88"/><text x="5.2080%" y="479.50"></text></g><g><title>Parse::Parse (88 samples, 0.02%)</title><rect x="4.9580%" y="453" width="0.0195%" height="15" fill="rgb(239,3,39)" fg:x="22403" fg:w="88"/><text x="5.2080%" y="463.50"></text></g><g><title>Parse::do_call (135 samples, 0.03%)</title><rect x="4.9511%" y="485" width="0.0299%" height="15" fill="rgb(233,210,1)" fg:x="22372" fg:w="135"/><text x="5.2011%" y="495.50"></text></g><g><title>Parse::do_one_block (209 samples, 0.05%)</title><rect x="4.9463%" y="517" width="0.0463%" height="15" fill="rgb(244,137,37)" fg:x="22350" fg:w="209"/><text x="5.1963%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (208 samples, 0.05%)</title><rect x="4.9465%" y="501" width="0.0460%" height="15" fill="rgb(240,136,2)" fg:x="22351" fg:w="208"/><text x="5.1965%" y="511.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.05%)</title><rect x="4.9463%" y="533" width="0.0474%" height="15" fill="rgb(239,18,37)" fg:x="22350" fg:w="214"/><text x="5.1963%" y="543.50"></text></g><g><title>Parse::Parse (236 samples, 0.05%)</title><rect x="4.9440%" y="549" width="0.0522%" height="15" fill="rgb(218,185,22)" fg:x="22340" fg:w="236"/><text x="5.1940%" y="559.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.05%)</title><rect x="4.9440%" y="565" width="0.0525%" height="15" fill="rgb(225,218,4)" fg:x="22340" fg:w="237"/><text x="5.1940%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (49 samples, 0.01%)</title><rect x="4.9965%" y="565" width="0.0108%" height="15" fill="rgb(230,182,32)" fg:x="22577" fg:w="49"/><text x="5.2465%" y="575.50"></text></g><g><title>Parse::do_call (358 samples, 0.08%)</title><rect x="4.9303%" y="581" width="0.0792%" height="15" fill="rgb(242,56,43)" fg:x="22278" fg:w="358"/><text x="5.1803%" y="591.50"></text></g><g><title>Parse::do_one_block (444 samples, 0.10%)</title><rect x="4.9290%" y="613" width="0.0983%" height="15" fill="rgb(233,99,24)" fg:x="22272" fg:w="444"/><text x="5.1790%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (442 samples, 0.10%)</title><rect x="4.9294%" y="597" width="0.0978%" height="15" fill="rgb(234,209,42)" fg:x="22274" fg:w="442"/><text x="5.1794%" y="607.50"></text></g><g><title>Parse::do_all_blocks (447 samples, 0.10%)</title><rect x="4.9290%" y="629" width="0.0989%" height="15" fill="rgb(227,7,12)" fg:x="22272" fg:w="447"/><text x="5.1790%" y="639.50"></text></g><g><title>ParseGenerator::generate (456 samples, 0.10%)</title><rect x="4.9277%" y="661" width="0.1009%" height="15" fill="rgb(245,203,43)" fg:x="22266" fg:w="456"/><text x="5.1777%" y="671.50"></text></g><g><title>Parse::Parse (456 samples, 0.10%)</title><rect x="4.9277%" y="645" width="0.1009%" height="15" fill="rgb(238,205,33)" fg:x="22266" fg:w="456"/><text x="5.1777%" y="655.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="5.0299%" y="565" width="0.0115%" height="15" fill="rgb(231,56,7)" fg:x="22728" fg:w="52"/><text x="5.2799%" y="575.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.02%)</title><rect x="5.0292%" y="597" width="0.0153%" height="15" fill="rgb(244,186,29)" fg:x="22725" fg:w="69"/><text x="5.2792%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="5.0295%" y="581" width="0.0150%" height="15" fill="rgb(234,111,31)" fg:x="22726" fg:w="68"/><text x="5.2795%" y="591.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.02%)</title><rect x="5.0286%" y="645" width="0.0162%" height="15" fill="rgb(241,149,10)" fg:x="22722" fg:w="73"/><text x="5.2786%" y="655.50"></text></g><g><title>Parse::Parse (73 samples, 0.02%)</title><rect x="5.0286%" y="629" width="0.0162%" height="15" fill="rgb(249,206,44)" fg:x="22722" fg:w="73"/><text x="5.2786%" y="639.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="5.0292%" y="613" width="0.0155%" height="15" fill="rgb(251,153,30)" fg:x="22725" fg:w="70"/><text x="5.2792%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (75 samples, 0.02%)</title><rect x="5.0286%" y="661" width="0.0166%" height="15" fill="rgb(239,152,38)" fg:x="22722" fg:w="75"/><text x="5.2786%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (534 samples, 0.12%)</title><rect x="4.9272%" y="677" width="0.1182%" height="15" fill="rgb(249,139,47)" fg:x="22264" fg:w="534"/><text x="5.1772%" y="687.50"></text></g><g><title>Parse::do_call (2,889 samples, 0.64%)</title><rect x="4.4080%" y="693" width="0.6394%" height="15" fill="rgb(244,64,35)" fg:x="19918" fg:w="2889"/><text x="4.6580%" y="703.50"></text></g><g><title>Parse::do_all_blocks (2,912 samples, 0.64%)</title><rect x="4.4076%" y="741" width="0.6445%" height="15" fill="rgb(216,46,15)" fg:x="19916" fg:w="2912"/><text x="4.6576%" y="751.50"></text></g><g><title>Parse::do_one_block (2,912 samples, 0.64%)</title><rect x="4.4076%" y="725" width="0.6445%" height="15" fill="rgb(250,74,19)" fg:x="19916" fg:w="2912"/><text x="4.6576%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (2,912 samples, 0.64%)</title><rect x="4.4076%" y="709" width="0.6445%" height="15" fill="rgb(249,42,33)" fg:x="19916" fg:w="2912"/><text x="4.6576%" y="719.50"></text></g><g><title>C2Compiler::compile_method (2,960 samples, 0.66%)</title><rect x="4.3974%" y="805" width="0.6551%" height="15" fill="rgb(242,149,17)" fg:x="19870" fg:w="2960"/><text x="4.6474%" y="815.50"></text></g><g><title>Compile::Compile (2,960 samples, 0.66%)</title><rect x="4.3974%" y="789" width="0.6551%" height="15" fill="rgb(244,29,21)" fg:x="19870" fg:w="2960"/><text x="4.6474%" y="799.50"></text></g><g><title>ParseGenerator::generate (2,914 samples, 0.64%)</title><rect x="4.4076%" y="773" width="0.6449%" height="15" fill="rgb(220,130,37)" fg:x="19916" fg:w="2914"/><text x="4.6576%" y="783.50"></text></g><g><title>Parse::Parse (2,914 samples, 0.64%)</title><rect x="4.4076%" y="757" width="0.6449%" height="15" fill="rgb(211,67,2)" fg:x="19916" fg:w="2914"/><text x="4.6576%" y="767.50"></text></g><g><title>MachSpillCopyNode::implementation (69 samples, 0.02%)</title><rect x="5.0565%" y="725" width="0.0153%" height="15" fill="rgb(235,68,52)" fg:x="22848" fg:w="69"/><text x="5.3065%" y="735.50"></text></g><g><title>Compile::Output (94 samples, 0.02%)</title><rect x="5.0525%" y="789" width="0.0208%" height="15" fill="rgb(246,142,3)" fg:x="22830" fg:w="94"/><text x="5.3025%" y="799.50"></text></g><g><title>Compile::init_buffer (94 samples, 0.02%)</title><rect x="5.0525%" y="773" width="0.0208%" height="15" fill="rgb(241,25,7)" fg:x="22830" fg:w="94"/><text x="5.3025%" y="783.50"></text></g><g><title>Compile::shorten_branches (77 samples, 0.02%)</title><rect x="5.0562%" y="757" width="0.0170%" height="15" fill="rgb(242,119,39)" fg:x="22847" fg:w="77"/><text x="5.3062%" y="767.50"></text></g><g><title>Compile::scratch_emit_size (77 samples, 0.02%)</title><rect x="5.0562%" y="741" width="0.0170%" height="15" fill="rgb(241,98,45)" fg:x="22847" fg:w="77"/><text x="5.3062%" y="751.50"></text></g><g><title>PhaseCFG::schedule_late (89 samples, 0.02%)</title><rect x="5.0804%" y="757" width="0.0197%" height="15" fill="rgb(254,28,30)" fg:x="22956" fg:w="89"/><text x="5.3304%" y="767.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (89 samples, 0.02%)</title><rect x="5.0804%" y="741" width="0.0197%" height="15" fill="rgb(241,142,54)" fg:x="22956" fg:w="89"/><text x="5.3304%" y="751.50"></text></g><g><title>MachNode::adr_type (65 samples, 0.01%)</title><rect x="5.0857%" y="725" width="0.0144%" height="15" fill="rgb(222,85,15)" fg:x="22980" fg:w="65"/><text x="5.3357%" y="735.50"></text></g><g><title>TypeInstPtr::add_offset (49 samples, 0.01%)</title><rect x="5.0892%" y="709" width="0.0108%" height="15" fill="rgb(210,85,47)" fg:x="22996" fg:w="49"/><text x="5.3392%" y="719.50"></text></g><g><title>PhaseCFG::sched_call (266 samples, 0.06%)</title><rect x="5.1001%" y="741" width="0.0589%" height="15" fill="rgb(224,206,25)" fg:x="23045" fg:w="266"/><text x="5.3501%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (270 samples, 0.06%)</title><rect x="5.1001%" y="757" width="0.0598%" height="15" fill="rgb(243,201,19)" fg:x="23045" fg:w="270"/><text x="5.3501%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (366 samples, 0.08%)</title><rect x="5.0797%" y="789" width="0.0810%" height="15" fill="rgb(236,59,4)" fg:x="22953" fg:w="366"/><text x="5.3297%" y="799.50"></text></g><g><title>PhaseCFG::global_code_motion (366 samples, 0.08%)</title><rect x="5.0797%" y="773" width="0.0810%" height="15" fill="rgb(254,179,45)" fg:x="22953" fg:w="366"/><text x="5.3297%" y="783.50"></text></g><g><title>PhaseChaitin::Split (55 samples, 0.01%)</title><rect x="5.1607%" y="773" width="0.0122%" height="15" fill="rgb(226,14,10)" fg:x="23319" fg:w="55"/><text x="5.4107%" y="783.50"></text></g><g><title>Compile::Code_Gen (551 samples, 0.12%)</title><rect x="5.0525%" y="805" width="0.1219%" height="15" fill="rgb(244,27,41)" fg:x="22830" fg:w="551"/><text x="5.3025%" y="815.50"></text></g><g><title>PhaseChaitin::Register_Allocate (62 samples, 0.01%)</title><rect x="5.1607%" y="789" width="0.0137%" height="15" fill="rgb(235,35,32)" fg:x="23319" fg:w="62"/><text x="5.4107%" y="799.50"></text></g><g><title>OopFlow::compute_reach (280 samples, 0.06%)</title><rect x="5.3231%" y="741" width="0.0620%" height="15" fill="rgb(218,68,31)" fg:x="24053" fg:w="280"/><text x="5.5731%" y="751.50"></text></g><g><title>OopFlow::build_oop_map (160 samples, 0.04%)</title><rect x="5.3497%" y="725" width="0.0354%" height="15" fill="rgb(207,120,37)" fg:x="24173" fg:w="160"/><text x="5.5997%" y="735.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (124 samples, 0.03%)</title><rect x="5.3880%" y="741" width="0.0274%" height="15" fill="rgb(227,98,0)" fg:x="24346" fg:w="124"/><text x="5.6380%" y="751.50"></text></g><g><title>Compile::BuildOopMaps (1,068 samples, 0.24%)</title><rect x="5.1795%" y="757" width="0.2364%" height="15" fill="rgb(207,7,3)" fg:x="23404" fg:w="1068"/><text x="5.4295%" y="767.50"></text></g><g><title>Compile::init_scratch_buffer_blob (50 samples, 0.01%)</title><rect x="5.4221%" y="741" width="0.0111%" height="15" fill="rgb(206,98,19)" fg:x="24500" fg:w="50"/><text x="5.6721%" y="751.50"></text></g><g><title>BufferBlob::create (49 samples, 0.01%)</title><rect x="5.4223%" y="725" width="0.0108%" height="15" fill="rgb(217,5,26)" fg:x="24501" fg:w="49"/><text x="5.6723%" y="735.50"></text></g><g><title>Compile::scratch_emit_size (220 samples, 0.05%)</title><rect x="5.4785%" y="725" width="0.0487%" height="15" fill="rgb(235,190,38)" fg:x="24755" fg:w="220"/><text x="5.7285%" y="735.50"></text></g><g><title>Compile::shorten_branches (465 samples, 0.10%)</title><rect x="5.4331%" y="741" width="0.1029%" height="15" fill="rgb(247,86,24)" fg:x="24550" fg:w="465"/><text x="5.6831%" y="751.50"></text></g><g><title>Compile::init_buffer (544 samples, 0.12%)</title><rect x="5.4159%" y="757" width="0.1204%" height="15" fill="rgb(205,101,16)" fg:x="24472" fg:w="544"/><text x="5.6659%" y="767.50"></text></g><g><title>Compile::Output (1,629 samples, 0.36%)</title><rect x="5.1762%" y="773" width="0.3605%" height="15" fill="rgb(246,168,33)" fg:x="23389" fg:w="1629"/><text x="5.4262%" y="783.50"></text></g><g><title>Compile::FillLocArray (64 samples, 0.01%)</title><rect x="5.5936%" y="741" width="0.0142%" height="15" fill="rgb(231,114,1)" fg:x="25275" fg:w="64"/><text x="5.8436%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (61 samples, 0.01%)</title><rect x="5.6120%" y="725" width="0.0135%" height="15" fill="rgb(207,184,53)" fg:x="25358" fg:w="61"/><text x="5.8620%" y="735.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (96 samples, 0.02%)</title><rect x="5.6086%" y="741" width="0.0212%" height="15" fill="rgb(224,95,51)" fg:x="25343" fg:w="96"/><text x="5.8586%" y="751.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (54 samples, 0.01%)</title><rect x="5.6334%" y="725" width="0.0120%" height="15" fill="rgb(212,188,45)" fg:x="25455" fg:w="54"/><text x="5.8834%" y="735.50"></text></g><g><title>DebugInformationRecorder::describe_scope (78 samples, 0.02%)</title><rect x="5.6299%" y="741" width="0.0173%" height="15" fill="rgb(223,154,38)" fg:x="25439" fg:w="78"/><text x="5.8799%" y="751.50"></text></g><g><title>Compile::Process_OopMap_Node (328 samples, 0.07%)</title><rect x="5.5852%" y="757" width="0.0726%" height="15" fill="rgb(251,22,52)" fg:x="25237" fg:w="328"/><text x="5.8352%" y="767.50"></text></g><g><title>Compile::valid_bundle_info (68 samples, 0.02%)</title><rect x="5.6595%" y="757" width="0.0150%" height="15" fill="rgb(229,209,22)" fg:x="25573" fg:w="68"/><text x="5.9095%" y="767.50"></text></g><g><title>MachSpillCopyNode::implementation (47 samples, 0.01%)</title><rect x="5.6808%" y="757" width="0.0104%" height="15" fill="rgb(234,138,34)" fg:x="25669" fg:w="47"/><text x="5.9308%" y="767.50"></text></g><g><title>Compile::fill_buffer (804 samples, 0.18%)</title><rect x="5.5374%" y="773" width="0.1779%" height="15" fill="rgb(212,95,11)" fg:x="25021" fg:w="804"/><text x="5.7874%" y="783.50"></text></g><g><title>Matcher::init_first_stack_mask (54 samples, 0.01%)</title><rect x="5.7297%" y="741" width="0.0120%" height="15" fill="rgb(240,179,47)" fg:x="25890" fg:w="54"/><text x="5.9797%" y="751.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (66 samples, 0.01%)</title><rect x="5.7275%" y="757" width="0.0146%" height="15" fill="rgb(240,163,11)" fg:x="25880" fg:w="66"/><text x="5.9775%" y="767.50"></text></g><g><title>Matcher::find_shared (507 samples, 0.11%)</title><rect x="5.7421%" y="757" width="0.1122%" height="15" fill="rgb(236,37,12)" fg:x="25946" fg:w="507"/><text x="5.9921%" y="767.50"></text></g><g><title>Arena::contains (642 samples, 0.14%)</title><rect x="5.9689%" y="741" width="0.1421%" height="15" fill="rgb(232,164,16)" fg:x="26971" fg:w="642"/><text x="6.2189%" y="751.50"></text></g><g><title>Node::add_req (48 samples, 0.01%)</title><rect x="6.1526%" y="709" width="0.0106%" height="15" fill="rgb(244,205,15)" fg:x="27801" fg:w="48"/><text x="6.4026%" y="719.50"></text></g><g><title>Matcher::match_tree (155 samples, 0.03%)</title><rect x="6.1292%" y="725" width="0.0343%" height="15" fill="rgb(223,117,47)" fg:x="27695" fg:w="155"/><text x="6.3792%" y="735.50"></text></g><g><title>Matcher::match_sfpt (207 samples, 0.05%)</title><rect x="6.1216%" y="741" width="0.0458%" height="15" fill="rgb(244,107,35)" fg:x="27661" fg:w="207"/><text x="6.3716%" y="751.50"></text></g><g><title>Matcher::Label_Root (68 samples, 0.02%)</title><rect x="6.2931%" y="677" width="0.0150%" height="15" fill="rgb(205,140,8)" fg:x="28436" fg:w="68"/><text x="6.5431%" y="687.50"></text></g><g><title>State::DFA (69 samples, 0.02%)</title><rect x="6.3089%" y="677" width="0.0153%" height="15" fill="rgb(228,84,46)" fg:x="28507" fg:w="69"/><text x="6.5589%" y="687.50"></text></g><g><title>Matcher::Label_Root (177 samples, 0.04%)</title><rect x="6.2869%" y="693" width="0.0392%" height="15" fill="rgb(254,188,9)" fg:x="28408" fg:w="177"/><text x="6.5369%" y="703.50"></text></g><g><title>State::_sub_Op_AddP (49 samples, 0.01%)</title><rect x="6.3354%" y="677" width="0.0108%" height="15" fill="rgb(206,112,54)" fg:x="28627" fg:w="49"/><text x="6.5854%" y="687.50"></text></g><g><title>State::DFA (102 samples, 0.02%)</title><rect x="6.3283%" y="693" width="0.0226%" height="15" fill="rgb(216,84,49)" fg:x="28595" fg:w="102"/><text x="6.5783%" y="703.50"></text></g><g><title>Matcher::Label_Root (419 samples, 0.09%)</title><rect x="6.2617%" y="709" width="0.0927%" height="15" fill="rgb(214,194,35)" fg:x="28294" fg:w="419"/><text x="6.5117%" y="719.50"></text></g><g><title>State::DFA (73 samples, 0.02%)</title><rect x="6.3551%" y="709" width="0.0162%" height="15" fill="rgb(249,28,3)" fg:x="28716" fg:w="73"/><text x="6.6051%" y="719.50"></text></g><g><title>Matcher::Label_Root (671 samples, 0.15%)</title><rect x="6.2347%" y="725" width="0.1485%" height="15" fill="rgb(222,56,52)" fg:x="28172" fg:w="671"/><text x="6.4847%" y="735.50"></text></g><g><title>Matcher::ReduceInst_Interior (103 samples, 0.02%)</title><rect x="6.4016%" y="677" width="0.0228%" height="15" fill="rgb(245,217,50)" fg:x="28926" fg:w="103"/><text x="6.6516%" y="687.50"></text></g><g><title>Matcher::ReduceInst (157 samples, 0.03%)</title><rect x="6.3976%" y="693" width="0.0347%" height="15" fill="rgb(213,201,24)" fg:x="28908" fg:w="157"/><text x="6.6476%" y="703.50"></text></g><g><title>Matcher::ReduceInst_Interior (282 samples, 0.06%)</title><rect x="6.3918%" y="709" width="0.0624%" height="15" fill="rgb(248,116,28)" fg:x="28882" fg:w="282"/><text x="6.6418%" y="719.50"></text></g><g><title>State::MachNodeGenerator (79 samples, 0.02%)</title><rect x="6.4638%" y="709" width="0.0175%" height="15" fill="rgb(219,72,43)" fg:x="29207" fg:w="79"/><text x="6.7138%" y="719.50"></text></g><g><title>Matcher::ReduceInst (476 samples, 0.11%)</title><rect x="6.3832%" y="725" width="0.1053%" height="15" fill="rgb(209,138,14)" fg:x="28843" fg:w="476"/><text x="6.6332%" y="735.50"></text></g><g><title>Matcher::match_tree (1,476 samples, 0.33%)</title><rect x="6.1674%" y="741" width="0.3267%" height="15" fill="rgb(222,18,33)" fg:x="27868" fg:w="1476"/><text x="6.4174%" y="751.50"></text></g><g><title>Node::clone (101 samples, 0.02%)</title><rect x="6.4963%" y="741" width="0.0224%" height="15" fill="rgb(213,199,7)" fg:x="29354" fg:w="101"/><text x="6.7463%" y="751.50"></text></g><g><title>Node::out_grow (57 samples, 0.01%)</title><rect x="6.5187%" y="741" width="0.0126%" height="15" fill="rgb(250,110,10)" fg:x="29455" fg:w="57"/><text x="6.7687%" y="751.50"></text></g><g><title>Matcher::xform (3,052 samples, 0.68%)</title><rect x="5.8576%" y="757" width="0.6754%" height="15" fill="rgb(248,123,6)" fg:x="26468" fg:w="3052"/><text x="6.1076%" y="767.50"></text></g><g><title>Matcher::match (3,691 samples, 0.82%)</title><rect x="5.7184%" y="773" width="0.8169%" height="15" fill="rgb(206,91,31)" fg:x="25839" fg:w="3691"/><text x="5.9684%" y="783.50"></text></g><g><title>PhaseBlockLayout::find_edges (76 samples, 0.02%)</title><rect x="6.5366%" y="757" width="0.0168%" height="15" fill="rgb(211,154,13)" fg:x="29536" fg:w="76"/><text x="6.7866%" y="767.50"></text></g><g><title>__GI___qsort_r (53 samples, 0.01%)</title><rect x="6.5596%" y="741" width="0.0117%" height="15" fill="rgb(225,148,7)" fg:x="29640" fg:w="53"/><text x="6.8096%" y="751.50"></text></g><g><title>msort_with_tmp (51 samples, 0.01%)</title><rect x="6.5600%" y="725" width="0.0113%" height="15" fill="rgb(220,160,43)" fg:x="29642" fg:w="51"/><text x="6.8100%" y="735.50"></text></g><g><title>msort_with_tmp (51 samples, 0.01%)</title><rect x="6.5600%" y="709" width="0.0113%" height="15" fill="rgb(213,52,39)" fg:x="29642" fg:w="51"/><text x="6.8100%" y="719.50"></text></g><g><title>msort_with_tmp (47 samples, 0.01%)</title><rect x="6.5609%" y="693" width="0.0104%" height="15" fill="rgb(243,137,7)" fg:x="29646" fg:w="47"/><text x="6.8109%" y="703.50"></text></g><g><title>msort_with_tmp (47 samples, 0.01%)</title><rect x="6.5609%" y="677" width="0.0104%" height="15" fill="rgb(230,79,13)" fg:x="29646" fg:w="47"/><text x="6.8109%" y="687.50"></text></g><g><title>PhaseBlockLayout::grow_traces (82 samples, 0.02%)</title><rect x="6.5534%" y="757" width="0.0181%" height="15" fill="rgb(247,105,23)" fg:x="29612" fg:w="82"/><text x="6.8034%" y="767.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (211 samples, 0.05%)</title><rect x="6.5355%" y="773" width="0.0467%" height="15" fill="rgb(223,179,41)" fg:x="29531" fg:w="211"/><text x="6.7855%" y="783.50"></text></g><g><title>PhaseCFG::PhaseCFG (185 samples, 0.04%)</title><rect x="6.5822%" y="773" width="0.0409%" height="15" fill="rgb(218,9,34)" fg:x="29742" fg:w="185"/><text x="6.8322%" y="783.50"></text></g><g><title>PhaseCFG::build_cfg (177 samples, 0.04%)</title><rect x="6.5839%" y="757" width="0.0392%" height="15" fill="rgb(222,106,8)" fg:x="29750" fg:w="177"/><text x="6.8339%" y="767.50"></text></g><g><title>PhaseCFG::do_DFS (46 samples, 0.01%)</title><rect x="6.6406%" y="741" width="0.0102%" height="15" fill="rgb(211,220,0)" fg:x="30006" fg:w="46"/><text x="6.8906%" y="751.50"></text></g><g><title>PhaseCFG::build_dominator_tree (127 samples, 0.03%)</title><rect x="6.6233%" y="757" width="0.0281%" height="15" fill="rgb(229,52,16)" fg:x="29928" fg:w="127"/><text x="6.8733%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (87 samples, 0.02%)</title><rect x="6.6514%" y="757" width="0.0193%" height="15" fill="rgb(212,155,18)" fg:x="30055" fg:w="87"/><text x="6.9014%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (83 samples, 0.02%)</title><rect x="6.7791%" y="741" width="0.0184%" height="15" fill="rgb(242,21,14)" fg:x="30632" fg:w="83"/><text x="7.0291%" y="751.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (60 samples, 0.01%)</title><rect x="6.7975%" y="741" width="0.0133%" height="15" fill="rgb(222,19,48)" fg:x="30715" fg:w="60"/><text x="7.0475%" y="751.50"></text></g><g><title>Node_Backward_Iterator::next (353 samples, 0.08%)</title><rect x="6.8491%" y="725" width="0.0781%" height="15" fill="rgb(232,45,27)" fg:x="30948" fg:w="353"/><text x="7.0991%" y="735.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (170 samples, 0.04%)</title><rect x="6.9272%" y="725" width="0.0376%" height="15" fill="rgb(249,103,42)" fg:x="31301" fg:w="170"/><text x="7.1772%" y="735.50"></text></g><g><title>MachNode::adr_type (63 samples, 0.01%)</title><rect x="7.0093%" y="709" width="0.0139%" height="15" fill="rgb(246,81,33)" fg:x="31672" fg:w="63"/><text x="7.2593%" y="719.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (304 samples, 0.07%)</title><rect x="6.9648%" y="725" width="0.0673%" height="15" fill="rgb(252,33,42)" fg:x="31471" fg:w="304"/><text x="7.2148%" y="735.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (99 samples, 0.02%)</title><rect x="7.0321%" y="725" width="0.0219%" height="15" fill="rgb(209,212,41)" fg:x="31775" fg:w="99"/><text x="7.2821%" y="735.50"></text></g><g><title>Node_Array::insert (46 samples, 0.01%)</title><rect x="7.0438%" y="709" width="0.0102%" height="15" fill="rgb(207,154,6)" fg:x="31828" fg:w="46"/><text x="7.2938%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (1,104 samples, 0.24%)</title><rect x="6.8108%" y="741" width="0.2443%" height="15" fill="rgb(223,64,47)" fg:x="30775" fg:w="1104"/><text x="7.0608%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (85 samples, 0.02%)</title><rect x="7.1385%" y="725" width="0.0188%" height="15" fill="rgb(211,161,38)" fg:x="32256" fg:w="85"/><text x="7.3885%" y="735.50"></text></g><g><title>PhaseCFG::needed_for_next_call (50 samples, 0.01%)</title><rect x="7.1574%" y="725" width="0.0111%" height="15" fill="rgb(219,138,40)" fg:x="32341" fg:w="50"/><text x="7.4074%" y="735.50"></text></g><g><title>PhaseCFG::select (155 samples, 0.03%)</title><rect x="7.1686%" y="725" width="0.0343%" height="15" fill="rgb(241,228,46)" fg:x="32392" fg:w="155"/><text x="7.4186%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (73 samples, 0.02%)</title><rect x="7.2029%" y="725" width="0.0162%" height="15" fill="rgb(223,209,38)" fg:x="32547" fg:w="73"/><text x="7.4529%" y="735.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (65 samples, 0.01%)</title><rect x="7.2191%" y="725" width="0.0144%" height="15" fill="rgb(236,164,45)" fg:x="32620" fg:w="65"/><text x="7.4691%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (810 samples, 0.18%)</title><rect x="7.0551%" y="741" width="0.1793%" height="15" fill="rgb(231,15,5)" fg:x="31879" fg:w="810"/><text x="7.3051%" y="751.50"></text></g><g><title>RegMask::Size (153 samples, 0.03%)</title><rect x="7.3289%" y="725" width="0.0339%" height="15" fill="rgb(252,35,15)" fg:x="33116" fg:w="153"/><text x="7.5789%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (623 samples, 0.14%)</title><rect x="7.2474%" y="741" width="0.1379%" height="15" fill="rgb(248,181,18)" fg:x="32748" fg:w="623"/><text x="7.4974%" y="751.50"></text></g><g><title>PhaseChaitin::mark_ssa (125 samples, 0.03%)</title><rect x="7.3853%" y="741" width="0.0277%" height="15" fill="rgb(233,39,42)" fg:x="33371" fg:w="125"/><text x="7.6353%" y="751.50"></text></g><g><title>IndexSet::initialize (115 samples, 0.03%)</title><rect x="7.4291%" y="725" width="0.0255%" height="15" fill="rgb(238,110,33)" fg:x="33569" fg:w="115"/><text x="7.6791%" y="735.50"></text></g><g><title>[libc-2.31.so] (63 samples, 0.01%)</title><rect x="7.4546%" y="725" width="0.0139%" height="15" fill="rgb(233,195,10)" fg:x="33684" fg:w="63"/><text x="7.7046%" y="735.50"></text></g><g><title>PhaseIFG::init (252 samples, 0.06%)</title><rect x="7.4130%" y="741" width="0.0558%" height="15" fill="rgb(254,105,3)" fg:x="33496" fg:w="252"/><text x="7.6630%" y="751.50"></text></g><g><title>IndexSet::initialize (73 samples, 0.02%)</title><rect x="7.5398%" y="725" width="0.0162%" height="15" fill="rgb(221,225,9)" fg:x="34069" fg:w="73"/><text x="7.7898%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (103 samples, 0.02%)</title><rect x="7.5900%" y="709" width="0.0228%" height="15" fill="rgb(224,227,45)" fg:x="34296" fg:w="103"/><text x="7.8400%" y="719.50"></text></g><g><title>PhaseLive::add_livein (257 samples, 0.06%)</title><rect x="7.5562%" y="725" width="0.0569%" height="15" fill="rgb(229,198,43)" fg:x="34143" fg:w="257"/><text x="7.8062%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (74 samples, 0.02%)</title><rect x="7.6624%" y="709" width="0.0164%" height="15" fill="rgb(206,209,35)" fg:x="34623" fg:w="74"/><text x="7.9124%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (120 samples, 0.03%)</title><rect x="7.6836%" y="709" width="0.0266%" height="15" fill="rgb(245,195,53)" fg:x="34719" fg:w="120"/><text x="7.9336%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (443 samples, 0.10%)</title><rect x="7.6130%" y="725" width="0.0980%" height="15" fill="rgb(240,92,26)" fg:x="34400" fg:w="443"/><text x="7.8630%" y="735.50"></text></g><g><title>PhaseLive::compute (1,107 samples, 0.24%)</title><rect x="7.4687%" y="741" width="0.2450%" height="15" fill="rgb(207,40,23)" fg:x="33748" fg:w="1107"/><text x="7.7187%" y="751.50"></text></g><g><title>PhaseCFG::global_code_motion (4,744 samples, 1.05%)</title><rect x="6.6707%" y="757" width="1.0499%" height="15" fill="rgb(223,111,35)" fg:x="30142" fg:w="4744"/><text x="6.9207%" y="767.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,960 samples, 1.10%)</title><rect x="6.6231%" y="773" width="1.0977%" height="15" fill="rgb(229,147,28)" fg:x="29927" fg:w="4960"/><text x="6.8731%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (93 samples, 0.02%)</title><rect x="7.7292%" y="773" width="0.0206%" height="15" fill="rgb(211,29,28)" fg:x="34925" fg:w="93"/><text x="7.9792%" y="783.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,416 samples, 0.31%)</title><rect x="7.7936%" y="757" width="0.3134%" height="15" fill="rgb(228,72,33)" fg:x="35216" fg:w="1416"/><text x="8.0436%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (419 samples, 0.09%)</title><rect x="8.2867%" y="741" width="0.0927%" height="15" fill="rgb(205,214,31)" fg:x="37444" fg:w="419"/><text x="8.5367%" y="751.50"></text></g><g><title>RegMask::find_first_set (54 samples, 0.01%)</title><rect x="8.4113%" y="725" width="0.0120%" height="15" fill="rgb(224,111,15)" fg:x="38007" fg:w="54"/><text x="8.6613%" y="735.50"></text></g><g><title>PhaseChaitin::bias_color (222 samples, 0.05%)</title><rect x="8.3794%" y="741" width="0.0491%" height="15" fill="rgb(253,21,26)" fg:x="37863" fg:w="222"/><text x="8.6294%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (76 samples, 0.02%)</title><rect x="8.5237%" y="725" width="0.0168%" height="15" fill="rgb(245,139,43)" fg:x="38515" fg:w="76"/><text x="8.7737%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (86 samples, 0.02%)</title><rect x="8.5405%" y="725" width="0.0190%" height="15" fill="rgb(252,170,7)" fg:x="38591" fg:w="86"/><text x="8.7905%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (516 samples, 0.11%)</title><rect x="8.5596%" y="725" width="0.1142%" height="15" fill="rgb(231,118,14)" fg:x="38677" fg:w="516"/><text x="8.8096%" y="735.50"></text></g><g><title>PhaseIFG::re_insert (1,121 samples, 0.25%)</title><rect x="8.4312%" y="741" width="0.2481%" height="15" fill="rgb(238,83,0)" fg:x="38097" fg:w="1121"/><text x="8.6812%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (200 samples, 0.04%)</title><rect x="8.6793%" y="741" width="0.0443%" height="15" fill="rgb(221,39,39)" fg:x="39218" fg:w="200"/><text x="8.9293%" y="751.50"></text></g><g><title>PhaseChaitin::Select (2,793 samples, 0.62%)</title><rect x="8.1070%" y="757" width="0.6181%" height="15" fill="rgb(222,119,46)" fg:x="36632" fg:w="2793"/><text x="8.3570%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (423 samples, 0.09%)</title><rect x="8.8059%" y="741" width="0.0936%" height="15" fill="rgb(222,165,49)" fg:x="39790" fg:w="423"/><text x="9.0559%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (63 samples, 0.01%)</title><rect x="9.0292%" y="725" width="0.0139%" height="15" fill="rgb(219,113,52)" fg:x="40799" fg:w="63"/><text x="9.2792%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (538 samples, 0.12%)</title><rect x="9.0431%" y="725" width="0.1191%" height="15" fill="rgb(214,7,15)" fg:x="40862" fg:w="538"/><text x="9.2931%" y="735.50"></text></g><g><title>PhaseIFG::remove_node (1,190 samples, 0.26%)</title><rect x="8.8995%" y="741" width="0.2634%" height="15" fill="rgb(235,32,4)" fg:x="40213" fg:w="1190"/><text x="9.1495%" y="751.50"></text></g><g><title>PhaseChaitin::Simplify (1,980 samples, 0.44%)</title><rect x="8.7251%" y="757" width="0.4382%" height="15" fill="rgb(238,90,54)" fg:x="39425" fg:w="1980"/><text x="8.9751%" y="767.50"></text></g><g><title>MachNode::rematerialize (220 samples, 0.05%)</title><rect x="9.8952%" y="741" width="0.0487%" height="15" fill="rgb(213,208,19)" fg:x="44712" fg:w="220"/><text x="10.1452%" y="751.50"></text></g><g><title>Node::rematerialize (174 samples, 0.04%)</title><rect x="9.9585%" y="741" width="0.0385%" height="15" fill="rgb(233,156,4)" fg:x="44998" fg:w="174"/><text x="10.2085%" y="751.50"></text></g><g><title>PhaseChaitin::split_DEF (49 samples, 0.01%)</title><rect x="10.0167%" y="741" width="0.0108%" height="15" fill="rgb(207,194,5)" fg:x="45261" fg:w="49"/><text x="10.2667%" y="751.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (53 samples, 0.01%)</title><rect x="10.0275%" y="741" width="0.0117%" height="15" fill="rgb(206,111,30)" fg:x="45310" fg:w="53"/><text x="10.2775%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (59 samples, 0.01%)</title><rect x="10.0647%" y="709" width="0.0131%" height="15" fill="rgb(243,70,54)" fg:x="45478" fg:w="59"/><text x="10.3147%" y="719.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (117 samples, 0.03%)</title><rect x="10.0547%" y="725" width="0.0259%" height="15" fill="rgb(242,28,8)" fg:x="45433" fg:w="117"/><text x="10.3047%" y="735.50"></text></g><g><title>PhaseChaitin::split_USE (236 samples, 0.05%)</title><rect x="10.0392%" y="741" width="0.0522%" height="15" fill="rgb(219,106,18)" fg:x="45363" fg:w="236"/><text x="10.2892%" y="751.50"></text></g><g><title>PhaseChaitin::Split (4,303 samples, 0.95%)</title><rect x="9.1633%" y="757" width="0.9523%" height="15" fill="rgb(244,222,10)" fg:x="41405" fg:w="4303"/><text x="9.4133%" y="767.50"></text></g><g><title>IndexSet::IndexSet (341 samples, 0.08%)</title><rect x="10.3672%" y="741" width="0.0755%" height="15" fill="rgb(236,179,52)" fg:x="46845" fg:w="341"/><text x="10.6172%" y="751.50"></text></g><g><title>MachNode::rematerialize (88 samples, 0.02%)</title><rect x="10.4464%" y="741" width="0.0195%" height="15" fill="rgb(213,23,39)" fg:x="47203" fg:w="88"/><text x="10.6964%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (50 samples, 0.01%)</title><rect x="10.5925%" y="725" width="0.0111%" height="15" fill="rgb(238,48,10)" fg:x="47863" fg:w="50"/><text x="10.8425%" y="735.50"></text></g><g><title>JVMState::debug_start (53 samples, 0.01%)</title><rect x="10.6036%" y="725" width="0.0117%" height="15" fill="rgb(251,196,23)" fg:x="47913" fg:w="53"/><text x="10.8536%" y="735.50"></text></g><g><title>MachNode::rematerialize (127 samples, 0.03%)</title><rect x="10.6164%" y="725" width="0.0281%" height="15" fill="rgb(250,152,24)" fg:x="47971" fg:w="127"/><text x="10.8664%" y="735.50"></text></g><g><title>PhaseChaitin::raise_pressure (219 samples, 0.05%)</title><rect x="10.6472%" y="725" width="0.0485%" height="15" fill="rgb(209,150,17)" fg:x="48110" fg:w="219"/><text x="10.8972%" y="735.50"></text></g><g><title>RegMask::is_UP (95 samples, 0.02%)</title><rect x="10.6746%" y="709" width="0.0210%" height="15" fill="rgb(234,202,34)" fg:x="48234" fg:w="95"/><text x="10.9246%" y="719.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,023 samples, 0.23%)</title><rect x="10.4703%" y="741" width="0.2264%" height="15" fill="rgb(253,148,53)" fg:x="47311" fg:w="1023"/><text x="10.7203%" y="751.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (77 samples, 0.02%)</title><rect x="10.7058%" y="741" width="0.0170%" height="15" fill="rgb(218,129,16)" fg:x="48375" fg:w="77"/><text x="10.9558%" y="751.50"></text></g><g><title>RegMask::Size (58 samples, 0.01%)</title><rect x="10.7100%" y="725" width="0.0128%" height="15" fill="rgb(216,85,19)" fg:x="48394" fg:w="58"/><text x="10.9600%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (227 samples, 0.05%)</title><rect x="10.8129%" y="725" width="0.0502%" height="15" fill="rgb(235,228,7)" fg:x="48859" fg:w="227"/><text x="11.0629%" y="735.50"></text></g><g><title>RegMask::is_UP (96 samples, 0.02%)</title><rect x="10.8632%" y="725" width="0.0212%" height="15" fill="rgb(245,175,0)" fg:x="49086" fg:w="96"/><text x="11.1132%" y="735.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (731 samples, 0.16%)</title><rect x="10.7229%" y="741" width="0.1618%" height="15" fill="rgb(208,168,36)" fg:x="48452" fg:w="731"/><text x="10.9729%" y="751.50"></text></g><g><title>__tls_get_addr (60 samples, 0.01%)</title><rect x="11.4895%" y="709" width="0.0133%" height="15" fill="rgb(246,171,24)" fg:x="51916" fg:w="60"/><text x="11.7395%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (184 samples, 0.04%)</title><rect x="11.4629%" y="725" width="0.0407%" height="15" fill="rgb(215,142,24)" fg:x="51796" fg:w="184"/><text x="11.7129%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,113 samples, 0.25%)</title><rect x="11.5067%" y="725" width="0.2463%" height="15" fill="rgb(250,187,7)" fg:x="51994" fg:w="1113"/><text x="11.7567%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,947 samples, 0.87%)</title><rect x="10.8846%" y="741" width="0.8735%" height="15" fill="rgb(228,66,33)" fg:x="49183" fg:w="3947"/><text x="11.1346%" y="751.50"></text></g><g><title>RegMask::is_UP (54 samples, 0.01%)</title><rect x="11.7778%" y="725" width="0.0120%" height="15" fill="rgb(234,215,21)" fg:x="53219" fg:w="54"/><text x="12.0278%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (144 samples, 0.03%)</title><rect x="11.7581%" y="741" width="0.0319%" height="15" fill="rgb(222,191,20)" fg:x="53130" fg:w="144"/><text x="12.0081%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (258 samples, 0.06%)</title><rect x="11.9516%" y="725" width="0.0571%" height="15" fill="rgb(245,79,54)" fg:x="54004" fg:w="258"/><text x="12.2016%" y="735.50"></text></g><g><title>RegMask::Size (454 samples, 0.10%)</title><rect x="12.0087%" y="725" width="0.1005%" height="15" fill="rgb(240,10,37)" fg:x="54262" fg:w="454"/><text x="12.2587%" y="735.50"></text></g><g><title>RegMask::smear_to_sets (983 samples, 0.22%)</title><rect x="12.1091%" y="725" width="0.2175%" height="15" fill="rgb(214,192,32)" fg:x="54716" fg:w="983"/><text x="12.3591%" y="735.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,450 samples, 0.54%)</title><rect x="11.7905%" y="741" width="0.5422%" height="15" fill="rgb(209,36,54)" fg:x="53276" fg:w="2450"/><text x="12.0405%" y="751.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (48 samples, 0.01%)</title><rect x="12.3327%" y="741" width="0.0106%" height="15" fill="rgb(220,10,11)" fg:x="55726" fg:w="48"/><text x="12.5827%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (53 samples, 0.01%)</title><rect x="12.3501%" y="741" width="0.0117%" height="15" fill="rgb(221,106,17)" fg:x="55805" fg:w="53"/><text x="12.6001%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (10,162 samples, 2.25%)</title><rect x="10.1169%" y="757" width="2.2489%" height="15" fill="rgb(251,142,44)" fg:x="45714" fg:w="10162"/><text x="10.3669%" y="767.50">P..</text></g><g><title>IndexSetIterator::advance_and_next (89 samples, 0.02%)</title><rect x="12.4920%" y="725" width="0.0197%" height="15" fill="rgb(238,13,15)" fg:x="56446" fg:w="89"/><text x="12.7420%" y="735.50"></text></g><g><title>PhaseChaitin::interfere_with_live (474 samples, 0.10%)</title><rect x="12.4072%" y="741" width="0.1049%" height="15" fill="rgb(208,107,27)" fg:x="56063" fg:w="474"/><text x="12.6572%" y="751.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (665 samples, 0.15%)</title><rect x="12.3659%" y="757" width="0.1472%" height="15" fill="rgb(205,136,37)" fg:x="55876" fg:w="665"/><text x="12.6159%" y="767.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (171 samples, 0.04%)</title><rect x="12.5130%" y="757" width="0.0378%" height="15" fill="rgb(250,205,27)" fg:x="56541" fg:w="171"/><text x="12.7630%" y="767.50"></text></g><g><title>find_hihghest_bit (51 samples, 0.01%)</title><rect x="12.5396%" y="741" width="0.0113%" height="15" fill="rgb(210,80,43)" fg:x="56661" fg:w="51"/><text x="12.7896%" y="751.50"></text></g><g><title>PhaseChaitin::compact (63 samples, 0.01%)</title><rect x="12.5509%" y="757" width="0.0139%" height="15" fill="rgb(247,160,36)" fg:x="56712" fg:w="63"/><text x="12.8009%" y="767.50"></text></g><g><title>PhaseChaitin::de_ssa (132 samples, 0.03%)</title><rect x="12.5650%" y="757" width="0.0292%" height="15" fill="rgb(234,13,49)" fg:x="56776" fg:w="132"/><text x="12.8150%" y="767.50"></text></g><g><title>PhaseChaitin::fixup_spills (86 samples, 0.02%)</title><rect x="12.5942%" y="757" width="0.0190%" height="15" fill="rgb(234,122,0)" fg:x="56908" fg:w="86"/><text x="12.8442%" y="767.50"></text></g><g><title>MachCallJavaNode::in_RegMask (96 samples, 0.02%)</title><rect x="13.1354%" y="741" width="0.0212%" height="15" fill="rgb(207,146,38)" fg:x="59353" fg:w="96"/><text x="13.3854%" y="751.50"></text></g><g><title>MachNode::ideal_reg (113 samples, 0.03%)</title><rect x="13.1577%" y="741" width="0.0250%" height="15" fill="rgb(207,177,25)" fg:x="59454" fg:w="113"/><text x="13.4077%" y="751.50"></text></g><g><title>MachNode::in_RegMask (98 samples, 0.02%)</title><rect x="13.1827%" y="741" width="0.0217%" height="15" fill="rgb(211,178,42)" fg:x="59567" fg:w="98"/><text x="13.4327%" y="751.50"></text></g><g><title>MachProjNode::bottom_type (46 samples, 0.01%)</title><rect x="13.2062%" y="741" width="0.0102%" height="15" fill="rgb(230,69,54)" fg:x="59673" fg:w="46"/><text x="13.4562%" y="751.50"></text></g><g><title>RegMask::Size (1,774 samples, 0.39%)</title><rect x="13.2334%" y="741" width="0.3926%" height="15" fill="rgb(214,135,41)" fg:x="59796" fg:w="1774"/><text x="13.4834%" y="751.50"></text></g><g><title>RegMask::clear_to_sets (259 samples, 0.06%)</title><rect x="13.6260%" y="741" width="0.0573%" height="15" fill="rgb(237,67,25)" fg:x="61570" fg:w="259"/><text x="13.8760%" y="751.50"></text></g><g><title>RegMask::is_aligned_pairs (146 samples, 0.03%)</title><rect x="13.6833%" y="741" width="0.0323%" height="15" fill="rgb(222,189,50)" fg:x="61829" fg:w="146"/><text x="13.9333%" y="751.50"></text></g><g><title>RegMask::is_bound1 (211 samples, 0.05%)</title><rect x="13.7156%" y="741" width="0.0467%" height="15" fill="rgb(245,148,34)" fg:x="61975" fg:w="211"/><text x="13.9656%" y="751.50"></text></g><g><title>RegMask::is_bound_pair (127 samples, 0.03%)</title><rect x="13.7623%" y="741" width="0.0281%" height="15" fill="rgb(222,29,6)" fg:x="62186" fg:w="127"/><text x="14.0123%" y="751.50"></text></g><g><title>Type::hashcons (55 samples, 0.01%)</title><rect x="13.7988%" y="741" width="0.0122%" height="15" fill="rgb(221,189,43)" fg:x="62351" fg:w="55"/><text x="14.0488%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,529 samples, 1.22%)</title><rect x="12.6133%" y="757" width="1.2236%" height="15" fill="rgb(207,36,27)" fg:x="56994" fg:w="5529"/><text x="12.8633%" y="767.50"></text></g><g><title>PhaseChaitin::merge_multidefs (732 samples, 0.16%)</title><rect x="13.8369%" y="757" width="0.1620%" height="15" fill="rgb(217,90,24)" fg:x="62523" fg:w="732"/><text x="14.0869%" y="767.50"></text></g><g><title>RegMask::Size (64 samples, 0.01%)</title><rect x="15.1827%" y="709" width="0.0142%" height="15" fill="rgb(224,66,35)" fg:x="68604" fg:w="64"/><text x="15.4327%" y="719.50"></text></g><g><title>PhaseChaitin::use_prior_register (145 samples, 0.03%)</title><rect x="15.1683%" y="725" width="0.0321%" height="15" fill="rgb(221,13,50)" fg:x="68539" fg:w="145"/><text x="15.4183%" y="735.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (47 samples, 0.01%)</title><rect x="15.2004%" y="725" width="0.0104%" height="15" fill="rgb(236,68,49)" fg:x="68684" fg:w="47"/><text x="15.4504%" y="735.50"></text></g><g><title>PhaseChaitin::elide_copy (2,959 samples, 0.65%)</title><rect x="14.5601%" y="741" width="0.6549%" height="15" fill="rgb(229,146,28)" fg:x="65791" fg:w="2959"/><text x="14.8101%" y="751.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (55 samples, 0.01%)</title><rect x="15.2176%" y="741" width="0.0122%" height="15" fill="rgb(225,31,38)" fg:x="68762" fg:w="55"/><text x="15.4676%" y="751.50"></text></g><g><title>[libc-2.31.so] (106 samples, 0.02%)</title><rect x="15.2320%" y="741" width="0.0235%" height="15" fill="rgb(250,208,3)" fg:x="68827" fg:w="106"/><text x="15.4820%" y="751.50"></text></g><g><title>find_lowest_bit (457 samples, 0.10%)</title><rect x="15.2581%" y="741" width="0.1011%" height="15" fill="rgb(246,54,23)" fg:x="68945" fg:w="457"/><text x="15.5081%" y="751.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (6,155 samples, 1.36%)</title><rect x="13.9989%" y="757" width="1.3622%" height="15" fill="rgb(243,76,11)" fg:x="63255" fg:w="6155"/><text x="14.2489%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (246 samples, 0.05%)</title><rect x="15.3617%" y="757" width="0.0544%" height="15" fill="rgb(245,21,50)" fg:x="69413" fg:w="246"/><text x="15.6117%" y="767.50"></text></g><g><title>PhaseIFG::Union (59 samples, 0.01%)</title><rect x="15.4547%" y="709" width="0.0131%" height="15" fill="rgb(228,9,43)" fg:x="69833" fg:w="59"/><text x="15.7047%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (229 samples, 0.05%)</title><rect x="15.4186%" y="741" width="0.0507%" height="15" fill="rgb(208,100,47)" fg:x="69670" fg:w="229"/><text x="15.6686%" y="751.50"></text></g><g><title>PhaseCoalesce::combine_these_two (94 samples, 0.02%)</title><rect x="15.4485%" y="725" width="0.0208%" height="15" fill="rgb(232,26,8)" fg:x="69805" fg:w="94"/><text x="15.6985%" y="735.50"></text></g><g><title>PhaseCFG::is_uncommon (188 samples, 0.04%)</title><rect x="15.4876%" y="725" width="0.0416%" height="15" fill="rgb(216,166,38)" fg:x="69982" fg:w="188"/><text x="15.7376%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (77 samples, 0.02%)</title><rect x="15.6583%" y="693" width="0.0170%" height="15" fill="rgb(251,202,51)" fg:x="70753" fg:w="77"/><text x="15.9083%" y="703.50"></text></g><g><title>IndexSet::lrg_union (612 samples, 0.14%)</title><rect x="15.5441%" y="709" width="0.1354%" height="15" fill="rgb(254,216,34)" fg:x="70237" fg:w="612"/><text x="15.7941%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (56 samples, 0.01%)</title><rect x="15.8170%" y="693" width="0.0124%" height="15" fill="rgb(251,32,27)" fg:x="71470" fg:w="56"/><text x="16.0670%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (656 samples, 0.15%)</title><rect x="15.6857%" y="709" width="0.1452%" height="15" fill="rgb(208,127,28)" fg:x="70877" fg:w="656"/><text x="15.9357%" y="719.50"></text></g><g><title>PhaseIFG::effective_degree (173 samples, 0.04%)</title><rect x="15.8309%" y="709" width="0.0383%" height="15" fill="rgb(224,137,22)" fg:x="71533" fg:w="173"/><text x="16.0809%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,570 samples, 0.35%)</title><rect x="15.5292%" y="725" width="0.3475%" height="15" fill="rgb(254,70,32)" fg:x="70170" fg:w="1570"/><text x="15.7792%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,843 samples, 0.41%)</title><rect x="15.4693%" y="741" width="0.4079%" height="15" fill="rgb(229,75,37)" fg:x="69899" fg:w="1843"/><text x="15.7193%" y="751.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,083 samples, 0.46%)</title><rect x="15.4164%" y="757" width="0.4610%" height="15" fill="rgb(252,64,23)" fg:x="69660" fg:w="2083"/><text x="15.6664%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (54 samples, 0.01%)</title><rect x="15.9909%" y="741" width="0.0120%" height="15" fill="rgb(232,162,48)" fg:x="72256" fg:w="54"/><text x="16.2409%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (651 samples, 0.14%)</title><rect x="16.0029%" y="741" width="0.1441%" height="15" fill="rgb(246,160,12)" fg:x="72310" fg:w="651"/><text x="16.2529%" y="751.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,220 samples, 0.27%)</title><rect x="15.8774%" y="757" width="0.2700%" height="15" fill="rgb(247,166,0)" fg:x="71743" fg:w="1220"/><text x="16.1274%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (94 samples, 0.02%)</title><rect x="16.2536%" y="741" width="0.0208%" height="15" fill="rgb(249,219,21)" fg:x="73443" fg:w="94"/><text x="16.5036%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (97 samples, 0.02%)</title><rect x="16.2744%" y="741" width="0.0215%" height="15" fill="rgb(205,209,3)" fg:x="73537" fg:w="97"/><text x="16.5244%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (467 samples, 0.10%)</title><rect x="16.2959%" y="741" width="0.1034%" height="15" fill="rgb(243,44,1)" fg:x="73634" fg:w="467"/><text x="16.5459%" y="751.50"></text></g><g><title>PhaseIFG::SquareUp (1,139 samples, 0.25%)</title><rect x="16.1476%" y="757" width="0.2521%" height="15" fill="rgb(206,159,16)" fg:x="72964" fg:w="1139"/><text x="16.3976%" y="767.50"></text></g><g><title>IndexSet::initialize (250 samples, 0.06%)</title><rect x="16.4355%" y="741" width="0.0553%" height="15" fill="rgb(244,77,30)" fg:x="74265" fg:w="250"/><text x="16.6855%" y="751.50"></text></g><g><title>PhaseIFG::init (474 samples, 0.10%)</title><rect x="16.3997%" y="757" width="0.1049%" height="15" fill="rgb(218,69,12)" fg:x="74103" fg:w="474"/><text x="16.6497%" y="767.50"></text></g><g><title>[libc-2.31.so] (61 samples, 0.01%)</title><rect x="16.4911%" y="741" width="0.0135%" height="15" fill="rgb(212,87,7)" fg:x="74516" fg:w="61"/><text x="16.7411%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (82 samples, 0.02%)</title><rect x="16.8480%" y="741" width="0.0181%" height="15" fill="rgb(245,114,25)" fg:x="76129" fg:w="82"/><text x="17.0980%" y="751.50"></text></g><g><title>IndexSet::free_block (54 samples, 0.01%)</title><rect x="16.8662%" y="741" width="0.0120%" height="15" fill="rgb(210,61,42)" fg:x="76211" fg:w="54"/><text x="17.1162%" y="751.50"></text></g><g><title>IndexSet::initialize (145 samples, 0.03%)</title><rect x="16.8781%" y="741" width="0.0321%" height="15" fill="rgb(211,52,33)" fg:x="76265" fg:w="145"/><text x="17.1281%" y="751.50"></text></g><g><title>__tls_get_addr (87 samples, 0.02%)</title><rect x="17.1585%" y="709" width="0.0193%" height="15" fill="rgb(234,58,33)" fg:x="77532" fg:w="87"/><text x="17.4085%" y="719.50"></text></g><g><title>update_get_addr (54 samples, 0.01%)</title><rect x="17.1658%" y="693" width="0.0120%" height="15" fill="rgb(220,115,36)" fg:x="77565" fg:w="54"/><text x="17.4158%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (277 samples, 0.06%)</title><rect x="17.1185%" y="725" width="0.0613%" height="15" fill="rgb(243,153,54)" fg:x="77351" fg:w="277"/><text x="17.3685%" y="735.50"></text></g><g><title>IndexSet::initialize (52 samples, 0.01%)</title><rect x="17.1798%" y="725" width="0.0115%" height="15" fill="rgb(251,47,18)" fg:x="77628" fg:w="52"/><text x="17.4298%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (395 samples, 0.09%)</title><rect x="17.1928%" y="725" width="0.0874%" height="15" fill="rgb(242,102,42)" fg:x="77687" fg:w="395"/><text x="17.4428%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (1,700 samples, 0.38%)</title><rect x="16.9109%" y="741" width="0.3762%" height="15" fill="rgb(234,31,38)" fg:x="76413" fg:w="1700"/><text x="17.1609%" y="751.50"></text></g><g><title>PhaseLive::compute (3,540 samples, 0.78%)</title><rect x="16.5065%" y="757" width="0.7834%" height="15" fill="rgb(221,117,51)" fg:x="74586" fg:w="3540"/><text x="16.7565%" y="767.50"></text></g><g><title>RegMask::Size (71 samples, 0.02%)</title><rect x="17.2924%" y="757" width="0.0157%" height="15" fill="rgb(212,20,18)" fg:x="78137" fg:w="71"/><text x="17.5424%" y="767.50"></text></g><g><title>find_lowest_bit (57 samples, 0.01%)</title><rect x="17.3188%" y="757" width="0.0126%" height="15" fill="rgb(245,133,36)" fg:x="78256" fg:w="57"/><text x="17.5688%" y="767.50"></text></g><g><title>PhaseChaitin::Register_Allocate (43,277 samples, 9.58%)</title><rect x="7.7556%" y="773" width="9.5776%" height="15" fill="rgb(212,6,19)" fg:x="35044" fg:w="43277"/><text x="8.0056%" y="783.50">PhaseChaitin::..</text></g><g><title>Compile::Code_Gen (55,016 samples, 12.18%)</title><rect x="5.1744%" y="789" width="12.1755%" height="15" fill="rgb(218,1,36)" fg:x="23381" fg:w="55016"/><text x="5.4244%" y="799.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (70 samples, 0.02%)</title><rect x="17.3345%" y="773" width="0.0155%" height="15" fill="rgb(246,84,54)" fg:x="78327" fg:w="70"/><text x="17.5845%" y="783.50"></text></g><g><title>InlineTree::ok_to_inline (46 samples, 0.01%)</title><rect x="17.3752%" y="293" width="0.0102%" height="15" fill="rgb(242,110,6)" fg:x="78511" fg:w="46"/><text x="17.6252%" y="303.50"></text></g><g><title>Compile::call_generator (59 samples, 0.01%)</title><rect x="17.3732%" y="309" width="0.0131%" height="15" fill="rgb(214,47,5)" fg:x="78502" fg:w="59"/><text x="17.6232%" y="319.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.01%)</title><rect x="17.4354%" y="69" width="0.0104%" height="15" fill="rgb(218,159,25)" fg:x="78783" fg:w="47"/><text x="17.6854%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.01%)</title><rect x="17.4356%" y="53" width="0.0102%" height="15" fill="rgb(215,211,28)" fg:x="78784" fg:w="46"/><text x="17.6856%" y="63.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="17.4347%" y="85" width="0.0113%" height="15" fill="rgb(238,59,32)" fg:x="78780" fg:w="51"/><text x="17.6847%" y="95.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="17.4327%" y="117" width="0.0144%" height="15" fill="rgb(226,82,3)" fg:x="78771" fg:w="65"/><text x="17.6827%" y="127.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="17.4327%" y="101" width="0.0144%" height="15" fill="rgb(240,164,32)" fg:x="78771" fg:w="65"/><text x="17.6827%" y="111.50"></text></g><g><title>Parse::do_call (112 samples, 0.02%)</title><rect x="17.4243%" y="133" width="0.0248%" height="15" fill="rgb(232,46,7)" fg:x="78733" fg:w="112"/><text x="17.6743%" y="143.50"></text></g><g><title>Parse::do_one_block (184 samples, 0.04%)</title><rect x="17.4219%" y="165" width="0.0407%" height="15" fill="rgb(229,129,53)" fg:x="78722" fg:w="184"/><text x="17.6719%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (183 samples, 0.04%)</title><rect x="17.4221%" y="149" width="0.0405%" height="15" fill="rgb(234,188,29)" fg:x="78723" fg:w="183"/><text x="17.6721%" y="159.50"></text></g><g><title>Parse::do_all_blocks (188 samples, 0.04%)</title><rect x="17.4219%" y="181" width="0.0416%" height="15" fill="rgb(246,141,4)" fg:x="78722" fg:w="188"/><text x="17.6719%" y="191.50"></text></g><g><title>ParseGenerator::generate (218 samples, 0.05%)</title><rect x="17.4170%" y="213" width="0.0482%" height="15" fill="rgb(229,23,39)" fg:x="78700" fg:w="218"/><text x="17.6670%" y="223.50"></text></g><g><title>Parse::Parse (218 samples, 0.05%)</title><rect x="17.4170%" y="197" width="0.0482%" height="15" fill="rgb(206,12,3)" fg:x="78700" fg:w="218"/><text x="17.6670%" y="207.50"></text></g><g><title>Parse::do_call (321 samples, 0.07%)</title><rect x="17.4040%" y="229" width="0.0710%" height="15" fill="rgb(252,226,20)" fg:x="78641" fg:w="321"/><text x="17.6540%" y="239.50"></text></g><g><title>Parse::do_one_block (444 samples, 0.10%)</title><rect x="17.3980%" y="261" width="0.0983%" height="15" fill="rgb(216,123,35)" fg:x="78614" fg:w="444"/><text x="17.6480%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (440 samples, 0.10%)</title><rect x="17.3989%" y="245" width="0.0974%" height="15" fill="rgb(212,68,40)" fg:x="78618" fg:w="440"/><text x="17.6489%" y="255.50"></text></g><g><title>Parse::do_all_blocks (447 samples, 0.10%)</title><rect x="17.3980%" y="277" width="0.0989%" height="15" fill="rgb(254,125,32)" fg:x="78614" fg:w="447"/><text x="17.6480%" y="287.50"></text></g><g><title>ParseGenerator::generate (476 samples, 0.11%)</title><rect x="17.3938%" y="309" width="0.1053%" height="15" fill="rgb(253,97,22)" fg:x="78595" fg:w="476"/><text x="17.6438%" y="319.50"></text></g><g><title>Parse::Parse (476 samples, 0.11%)</title><rect x="17.3938%" y="293" width="0.1053%" height="15" fill="rgb(241,101,14)" fg:x="78595" fg:w="476"/><text x="17.6438%" y="303.50"></text></g><g><title>ParseGenerator::generate (46 samples, 0.01%)</title><rect x="17.4996%" y="293" width="0.0102%" height="15" fill="rgb(238,103,29)" fg:x="79073" fg:w="46"/><text x="17.7496%" y="303.50"></text></g><g><title>Parse::Parse (46 samples, 0.01%)</title><rect x="17.4996%" y="277" width="0.0102%" height="15" fill="rgb(233,195,47)" fg:x="79073" fg:w="46"/><text x="17.7496%" y="287.50"></text></g><g><title>PredictedCallGenerator::generate (58 samples, 0.01%)</title><rect x="17.4991%" y="309" width="0.0128%" height="15" fill="rgb(246,218,30)" fg:x="79071" fg:w="58"/><text x="17.7491%" y="319.50"></text></g><g><title>Parse::do_call (641 samples, 0.14%)</title><rect x="17.3732%" y="325" width="0.1419%" height="15" fill="rgb(219,145,47)" fg:x="78502" fg:w="641"/><text x="17.6232%" y="335.50"></text></g><g><title>Parse::do_field_access (58 samples, 0.01%)</title><rect x="17.5162%" y="325" width="0.0128%" height="15" fill="rgb(243,12,26)" fg:x="79148" fg:w="58"/><text x="17.7662%" y="335.50"></text></g><g><title>ParseGenerator::generate (736 samples, 0.16%)</title><rect x="17.3701%" y="405" width="0.1629%" height="15" fill="rgb(214,87,16)" fg:x="78488" fg:w="736"/><text x="17.6201%" y="415.50"></text></g><g><title>Parse::Parse (736 samples, 0.16%)</title><rect x="17.3701%" y="389" width="0.1629%" height="15" fill="rgb(208,99,42)" fg:x="78488" fg:w="736"/><text x="17.6201%" y="399.50"></text></g><g><title>Parse::do_all_blocks (732 samples, 0.16%)</title><rect x="17.3710%" y="373" width="0.1620%" height="15" fill="rgb(253,99,2)" fg:x="78492" fg:w="732"/><text x="17.6210%" y="383.50"></text></g><g><title>Parse::do_one_block (732 samples, 0.16%)</title><rect x="17.3710%" y="357" width="0.1620%" height="15" fill="rgb(220,168,23)" fg:x="78492" fg:w="732"/><text x="17.6210%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (732 samples, 0.16%)</title><rect x="17.3710%" y="341" width="0.1620%" height="15" fill="rgb(242,38,24)" fg:x="78492" fg:w="732"/><text x="17.6210%" y="351.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="17.5332%" y="309" width="0.0122%" height="15" fill="rgb(225,182,9)" fg:x="79225" fg:w="55"/><text x="17.7832%" y="319.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.01%)</title><rect x="17.5332%" y="389" width="0.0139%" height="15" fill="rgb(243,178,37)" fg:x="79225" fg:w="63"/><text x="17.7832%" y="399.50"></text></g><g><title>Parse::Parse (63 samples, 0.01%)</title><rect x="17.5332%" y="373" width="0.0139%" height="15" fill="rgb(232,139,19)" fg:x="79225" fg:w="63"/><text x="17.7832%" y="383.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.01%)</title><rect x="17.5332%" y="357" width="0.0139%" height="15" fill="rgb(225,201,24)" fg:x="79225" fg:w="63"/><text x="17.7832%" y="367.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="17.5332%" y="341" width="0.0139%" height="15" fill="rgb(221,47,46)" fg:x="79225" fg:w="63"/><text x="17.7832%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.01%)</title><rect x="17.5332%" y="325" width="0.0139%" height="15" fill="rgb(249,23,13)" fg:x="79225" fg:w="63"/><text x="17.7832%" y="335.50"></text></g><g><title>PredictedCallGenerator::generate (74 samples, 0.02%)</title><rect x="17.5330%" y="405" width="0.0164%" height="15" fill="rgb(219,9,5)" fg:x="79224" fg:w="74"/><text x="17.7830%" y="415.50"></text></g><g><title>Parse::do_call (849 samples, 0.19%)</title><rect x="17.3621%" y="421" width="0.1879%" height="15" fill="rgb(254,171,16)" fg:x="78452" fg:w="849"/><text x="17.6121%" y="431.50"></text></g><g><title>Parse::do_all_blocks (856 samples, 0.19%)</title><rect x="17.3619%" y="469" width="0.1894%" height="15" fill="rgb(230,171,20)" fg:x="78451" fg:w="856"/><text x="17.6119%" y="479.50"></text></g><g><title>Parse::do_one_block (856 samples, 0.19%)</title><rect x="17.3619%" y="453" width="0.1894%" height="15" fill="rgb(210,71,41)" fg:x="78451" fg:w="856"/><text x="17.6119%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (856 samples, 0.19%)</title><rect x="17.3619%" y="437" width="0.1894%" height="15" fill="rgb(206,173,20)" fg:x="78451" fg:w="856"/><text x="17.6119%" y="447.50"></text></g><g><title>ParseGenerator::generate (858 samples, 0.19%)</title><rect x="17.3617%" y="501" width="0.1899%" height="15" fill="rgb(233,88,34)" fg:x="78450" fg:w="858"/><text x="17.6117%" y="511.50"></text></g><g><title>Parse::Parse (858 samples, 0.19%)</title><rect x="17.3617%" y="485" width="0.1899%" height="15" fill="rgb(223,209,46)" fg:x="78450" fg:w="858"/><text x="17.6117%" y="495.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="17.5595%" y="245" width="0.0122%" height="15" fill="rgb(250,43,18)" fg:x="79344" fg:w="55"/><text x="17.8095%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="17.5595%" y="229" width="0.0122%" height="15" fill="rgb(208,13,10)" fg:x="79344" fg:w="55"/><text x="17.8095%" y="239.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="17.5595%" y="261" width="0.0124%" height="15" fill="rgb(212,200,36)" fg:x="79344" fg:w="56"/><text x="17.8095%" y="271.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="17.5591%" y="293" width="0.0131%" height="15" fill="rgb(225,90,30)" fg:x="79342" fg:w="59"/><text x="17.8091%" y="303.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="17.5591%" y="277" width="0.0131%" height="15" fill="rgb(236,182,39)" fg:x="79342" fg:w="59"/><text x="17.8091%" y="287.50"></text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="17.5558%" y="309" width="0.0184%" height="15" fill="rgb(212,144,35)" fg:x="79327" fg:w="83"/><text x="17.8058%" y="319.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="17.5551%" y="389" width="0.0228%" height="15" fill="rgb(228,63,44)" fg:x="79324" fg:w="103"/><text x="17.8051%" y="399.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="17.5551%" y="373" width="0.0228%" height="15" fill="rgb(228,109,6)" fg:x="79324" fg:w="103"/><text x="17.8051%" y="383.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.02%)</title><rect x="17.5556%" y="357" width="0.0224%" height="15" fill="rgb(238,117,24)" fg:x="79326" fg:w="101"/><text x="17.8056%" y="367.50"></text></g><g><title>Parse::do_one_block (101 samples, 0.02%)</title><rect x="17.5556%" y="341" width="0.0224%" height="15" fill="rgb(242,26,26)" fg:x="79326" fg:w="101"/><text x="17.8056%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (100 samples, 0.02%)</title><rect x="17.5558%" y="325" width="0.0221%" height="15" fill="rgb(221,92,48)" fg:x="79327" fg:w="100"/><text x="17.8058%" y="335.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.03%)</title><rect x="17.5522%" y="485" width="0.0268%" height="15" fill="rgb(209,209,32)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="495.50"></text></g><g><title>Parse::Parse (121 samples, 0.03%)</title><rect x="17.5522%" y="469" width="0.0268%" height="15" fill="rgb(221,70,22)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="479.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.03%)</title><rect x="17.5522%" y="453" width="0.0268%" height="15" fill="rgb(248,145,5)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="463.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.03%)</title><rect x="17.5522%" y="437" width="0.0268%" height="15" fill="rgb(226,116,26)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.03%)</title><rect x="17.5522%" y="421" width="0.0268%" height="15" fill="rgb(244,5,17)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="431.50"></text></g><g><title>Parse::do_call (121 samples, 0.03%)</title><rect x="17.5522%" y="405" width="0.0268%" height="15" fill="rgb(252,159,33)" fg:x="79311" fg:w="121"/><text x="17.8022%" y="415.50"></text></g><g><title>Parse::do_call (1,053 samples, 0.23%)</title><rect x="17.3537%" y="517" width="0.2330%" height="15" fill="rgb(206,71,0)" fg:x="78414" fg:w="1053"/><text x="17.6037%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (159 samples, 0.04%)</title><rect x="17.5516%" y="501" width="0.0352%" height="15" fill="rgb(233,118,54)" fg:x="79308" fg:w="159"/><text x="17.8016%" y="511.50"></text></g><g><title>ParseGenerator::generate (1,055 samples, 0.23%)</title><rect x="17.3535%" y="597" width="0.2335%" height="15" fill="rgb(234,83,48)" fg:x="78413" fg:w="1055"/><text x="17.6035%" y="607.50"></text></g><g><title>Parse::Parse (1,055 samples, 0.23%)</title><rect x="17.3535%" y="581" width="0.2335%" height="15" fill="rgb(228,3,54)" fg:x="78413" fg:w="1055"/><text x="17.6035%" y="591.50"></text></g><g><title>Parse::do_all_blocks (1,054 samples, 0.23%)</title><rect x="17.3537%" y="565" width="0.2333%" height="15" fill="rgb(226,155,13)" fg:x="78414" fg:w="1054"/><text x="17.6037%" y="575.50"></text></g><g><title>Parse::do_one_block (1,054 samples, 0.23%)</title><rect x="17.3537%" y="549" width="0.2333%" height="15" fill="rgb(241,28,37)" fg:x="78414" fg:w="1054"/><text x="17.6037%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,054 samples, 0.23%)</title><rect x="17.3537%" y="533" width="0.2333%" height="15" fill="rgb(233,93,10)" fg:x="78414" fg:w="1054"/><text x="17.6037%" y="543.50"></text></g><g><title>Parse::do_call (72 samples, 0.02%)</title><rect x="17.5958%" y="309" width="0.0159%" height="15" fill="rgb(225,113,19)" fg:x="79508" fg:w="72"/><text x="17.8458%" y="319.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.02%)</title><rect x="17.5954%" y="341" width="0.0219%" height="15" fill="rgb(241,2,18)" fg:x="79506" fg:w="99"/><text x="17.8454%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.02%)</title><rect x="17.5956%" y="325" width="0.0217%" height="15" fill="rgb(228,207,21)" fg:x="79507" fg:w="98"/><text x="17.8456%" y="335.50"></text></g><g><title>Parse::do_all_blocks (100 samples, 0.02%)</title><rect x="17.5954%" y="357" width="0.0221%" height="15" fill="rgb(213,211,35)" fg:x="79506" fg:w="100"/><text x="17.8454%" y="367.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.02%)</title><rect x="17.5947%" y="389" width="0.0232%" height="15" fill="rgb(209,83,10)" fg:x="79503" fg:w="105"/><text x="17.8447%" y="399.50"></text></g><g><title>Parse::Parse (105 samples, 0.02%)</title><rect x="17.5947%" y="373" width="0.0232%" height="15" fill="rgb(209,164,1)" fg:x="79503" fg:w="105"/><text x="17.8447%" y="383.50"></text></g><g><title>Parse::do_call (139 samples, 0.03%)</title><rect x="17.5901%" y="405" width="0.0308%" height="15" fill="rgb(213,184,43)" fg:x="79482" fg:w="139"/><text x="17.8401%" y="415.50"></text></g><g><title>ParseGenerator::generate (143 samples, 0.03%)</title><rect x="17.5901%" y="485" width="0.0316%" height="15" fill="rgb(231,61,34)" fg:x="79482" fg:w="143"/><text x="17.8401%" y="495.50"></text></g><g><title>Parse::Parse (143 samples, 0.03%)</title><rect x="17.5901%" y="469" width="0.0316%" height="15" fill="rgb(235,75,3)" fg:x="79482" fg:w="143"/><text x="17.8401%" y="479.50"></text></g><g><title>Parse::do_all_blocks (143 samples, 0.03%)</title><rect x="17.5901%" y="453" width="0.0316%" height="15" fill="rgb(220,106,47)" fg:x="79482" fg:w="143"/><text x="17.8401%" y="463.50"></text></g><g><title>Parse::do_one_block (143 samples, 0.03%)</title><rect x="17.5901%" y="437" width="0.0316%" height="15" fill="rgb(210,196,33)" fg:x="79482" fg:w="143"/><text x="17.8401%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (143 samples, 0.03%)</title><rect x="17.5901%" y="421" width="0.0316%" height="15" fill="rgb(229,154,42)" fg:x="79482" fg:w="143"/><text x="17.8401%" y="431.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.04%)</title><rect x="17.5870%" y="581" width="0.0390%" height="15" fill="rgb(228,114,26)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="591.50"></text></g><g><title>Parse::Parse (176 samples, 0.04%)</title><rect x="17.5870%" y="565" width="0.0390%" height="15" fill="rgb(208,144,1)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="575.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.04%)</title><rect x="17.5870%" y="549" width="0.0390%" height="15" fill="rgb(239,112,37)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="559.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.04%)</title><rect x="17.5870%" y="533" width="0.0390%" height="15" fill="rgb(210,96,50)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.04%)</title><rect x="17.5870%" y="517" width="0.0390%" height="15" fill="rgb(222,178,2)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="527.50"></text></g><g><title>Parse::do_call (176 samples, 0.04%)</title><rect x="17.5870%" y="501" width="0.0390%" height="15" fill="rgb(226,74,18)" fg:x="79468" fg:w="176"/><text x="17.8370%" y="511.50"></text></g><g><title>ParseGenerator::generate (1,258 samples, 0.28%)</title><rect x="17.3528%" y="693" width="0.2784%" height="15" fill="rgb(225,67,54)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="703.50"></text></g><g><title>Parse::Parse (1,258 samples, 0.28%)</title><rect x="17.3528%" y="677" width="0.2784%" height="15" fill="rgb(251,92,32)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="687.50"></text></g><g><title>Parse::do_all_blocks (1,258 samples, 0.28%)</title><rect x="17.3528%" y="661" width="0.2784%" height="15" fill="rgb(228,149,22)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="671.50"></text></g><g><title>Parse::do_one_block (1,258 samples, 0.28%)</title><rect x="17.3528%" y="645" width="0.2784%" height="15" fill="rgb(243,54,13)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (1,258 samples, 0.28%)</title><rect x="17.3528%" y="629" width="0.2784%" height="15" fill="rgb(243,180,28)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="639.50"></text></g><g><title>Parse::do_call (1,258 samples, 0.28%)</title><rect x="17.3528%" y="613" width="0.2784%" height="15" fill="rgb(208,167,24)" fg:x="78410" fg:w="1258"/><text x="17.6028%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (200 samples, 0.04%)</title><rect x="17.5870%" y="597" width="0.0443%" height="15" fill="rgb(245,73,45)" fg:x="79468" fg:w="200"/><text x="17.8370%" y="607.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="17.6463%" y="213" width="0.0113%" height="15" fill="rgb(237,203,48)" fg:x="79736" fg:w="51"/><text x="17.8963%" y="223.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.02%)</title><rect x="17.6452%" y="245" width="0.0175%" height="15" fill="rgb(211,197,16)" fg:x="79731" fg:w="79"/><text x="17.8952%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (78 samples, 0.02%)</title><rect x="17.6454%" y="229" width="0.0173%" height="15" fill="rgb(243,99,51)" fg:x="79732" fg:w="78"/><text x="17.8954%" y="239.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="17.6452%" y="261" width="0.0181%" height="15" fill="rgb(215,123,29)" fg:x="79731" fg:w="82"/><text x="17.8952%" y="271.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="17.6432%" y="293" width="0.0212%" height="15" fill="rgb(239,186,37)" fg:x="79722" fg:w="96"/><text x="17.8932%" y="303.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="17.6432%" y="277" width="0.0212%" height="15" fill="rgb(252,136,39)" fg:x="79722" fg:w="96"/><text x="17.8932%" y="287.50"></text></g><g><title>Parse::do_call (119 samples, 0.03%)</title><rect x="17.6392%" y="309" width="0.0263%" height="15" fill="rgb(223,213,32)" fg:x="79704" fg:w="119"/><text x="17.8892%" y="319.50"></text></g><g><title>ParseGenerator::generate (162 samples, 0.04%)</title><rect x="17.6372%" y="389" width="0.0359%" height="15" fill="rgb(233,115,5)" fg:x="79695" fg:w="162"/><text x="17.8872%" y="399.50"></text></g><g><title>Parse::Parse (162 samples, 0.04%)</title><rect x="17.6372%" y="373" width="0.0359%" height="15" fill="rgb(207,226,44)" fg:x="79695" fg:w="162"/><text x="17.8872%" y="383.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.04%)</title><rect x="17.6377%" y="357" width="0.0354%" height="15" fill="rgb(208,126,0)" fg:x="79697" fg:w="160"/><text x="17.8877%" y="367.50"></text></g><g><title>Parse::do_one_block (160 samples, 0.04%)</title><rect x="17.6377%" y="341" width="0.0354%" height="15" fill="rgb(244,66,21)" fg:x="79697" fg:w="160"/><text x="17.8877%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (159 samples, 0.04%)</title><rect x="17.6379%" y="325" width="0.0352%" height="15" fill="rgb(222,97,12)" fg:x="79698" fg:w="159"/><text x="17.8879%" y="335.50"></text></g><g><title>Parse::do_call (180 samples, 0.04%)</title><rect x="17.6343%" y="405" width="0.0398%" height="15" fill="rgb(219,213,19)" fg:x="79682" fg:w="180"/><text x="17.8843%" y="415.50"></text></g><g><title>ParseGenerator::generate (188 samples, 0.04%)</title><rect x="17.6341%" y="485" width="0.0416%" height="15" fill="rgb(252,169,30)" fg:x="79681" fg:w="188"/><text x="17.8841%" y="495.50"></text></g><g><title>Parse::Parse (188 samples, 0.04%)</title><rect x="17.6341%" y="469" width="0.0416%" height="15" fill="rgb(206,32,51)" fg:x="79681" fg:w="188"/><text x="17.8841%" y="479.50"></text></g><g><title>Parse::do_all_blocks (188 samples, 0.04%)</title><rect x="17.6341%" y="453" width="0.0416%" height="15" fill="rgb(250,172,42)" fg:x="79681" fg:w="188"/><text x="17.8841%" y="463.50"></text></g><g><title>Parse::do_one_block (188 samples, 0.04%)</title><rect x="17.6341%" y="437" width="0.0416%" height="15" fill="rgb(209,34,43)" fg:x="79681" fg:w="188"/><text x="17.8841%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (188 samples, 0.04%)</title><rect x="17.6341%" y="421" width="0.0416%" height="15" fill="rgb(223,11,35)" fg:x="79681" fg:w="188"/><text x="17.8841%" y="431.50"></text></g><g><title>Parse::do_call (205 samples, 0.05%)</title><rect x="17.6323%" y="501" width="0.0454%" height="15" fill="rgb(251,219,26)" fg:x="79673" fg:w="205"/><text x="17.8823%" y="511.50"></text></g><g><title>ParseGenerator::generate (207 samples, 0.05%)</title><rect x="17.6323%" y="581" width="0.0458%" height="15" fill="rgb(231,119,3)" fg:x="79673" fg:w="207"/><text x="17.8823%" y="591.50"></text></g><g><title>Parse::Parse (207 samples, 0.05%)</title><rect x="17.6323%" y="565" width="0.0458%" height="15" fill="rgb(216,97,11)" fg:x="79673" fg:w="207"/><text x="17.8823%" y="575.50"></text></g><g><title>Parse::do_all_blocks (207 samples, 0.05%)</title><rect x="17.6323%" y="549" width="0.0458%" height="15" fill="rgb(223,59,9)" fg:x="79673" fg:w="207"/><text x="17.8823%" y="559.50"></text></g><g><title>Parse::do_one_block (207 samples, 0.05%)</title><rect x="17.6323%" y="533" width="0.0458%" height="15" fill="rgb(233,93,31)" fg:x="79673" fg:w="207"/><text x="17.8823%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (207 samples, 0.05%)</title><rect x="17.6323%" y="517" width="0.0458%" height="15" fill="rgb(239,81,33)" fg:x="79673" fg:w="207"/><text x="17.8823%" y="527.50"></text></g><g><title>ParseGenerator::generate (61 samples, 0.01%)</title><rect x="17.6782%" y="565" width="0.0135%" height="15" fill="rgb(213,120,34)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="575.50"></text></g><g><title>Parse::Parse (61 samples, 0.01%)</title><rect x="17.6782%" y="549" width="0.0135%" height="15" fill="rgb(243,49,53)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="559.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.01%)</title><rect x="17.6782%" y="533" width="0.0135%" height="15" fill="rgb(247,216,33)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="543.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.01%)</title><rect x="17.6782%" y="517" width="0.0135%" height="15" fill="rgb(226,26,14)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.01%)</title><rect x="17.6782%" y="501" width="0.0135%" height="15" fill="rgb(215,49,53)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="511.50"></text></g><g><title>Parse::do_call (61 samples, 0.01%)</title><rect x="17.6782%" y="485" width="0.0135%" height="15" fill="rgb(245,162,40)" fg:x="79880" fg:w="61"/><text x="17.9282%" y="495.50"></text></g><g><title>ParseGenerator::generate (288 samples, 0.06%)</title><rect x="17.6312%" y="677" width="0.0637%" height="15" fill="rgb(229,68,17)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="687.50"></text></g><g><title>Parse::Parse (288 samples, 0.06%)</title><rect x="17.6312%" y="661" width="0.0637%" height="15" fill="rgb(213,182,10)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="671.50"></text></g><g><title>Parse::do_all_blocks (288 samples, 0.06%)</title><rect x="17.6312%" y="645" width="0.0637%" height="15" fill="rgb(245,125,30)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="655.50"></text></g><g><title>Parse::do_one_block (288 samples, 0.06%)</title><rect x="17.6312%" y="629" width="0.0637%" height="15" fill="rgb(232,202,2)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (288 samples, 0.06%)</title><rect x="17.6312%" y="613" width="0.0637%" height="15" fill="rgb(237,140,51)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="623.50"></text></g><g><title>Parse::do_call (288 samples, 0.06%)</title><rect x="17.6312%" y="597" width="0.0637%" height="15" fill="rgb(236,157,25)" fg:x="79668" fg:w="288"/><text x="17.8812%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (76 samples, 0.02%)</title><rect x="17.6782%" y="581" width="0.0168%" height="15" fill="rgb(219,209,0)" fg:x="79880" fg:w="76"/><text x="17.9282%" y="591.50"></text></g><g><title>Compile::Compile (56,633 samples, 12.53%)</title><rect x="5.1744%" y="805" width="12.5334%" height="15" fill="rgb(240,116,54)" fg:x="23381" fg:w="56633"/><text x="5.4244%" y="815.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (1,604 samples, 0.35%)</title><rect x="17.3528%" y="789" width="0.3550%" height="15" fill="rgb(216,10,36)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="799.50"></text></g><g><title>Parse::Parse (1,604 samples, 0.35%)</title><rect x="17.3528%" y="773" width="0.3550%" height="15" fill="rgb(222,72,44)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="783.50"></text></g><g><title>Parse::do_all_blocks (1,604 samples, 0.35%)</title><rect x="17.3528%" y="757" width="0.3550%" height="15" fill="rgb(232,159,9)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="767.50"></text></g><g><title>Parse::do_one_block (1,604 samples, 0.35%)</title><rect x="17.3528%" y="741" width="0.3550%" height="15" fill="rgb(210,39,32)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (1,604 samples, 0.35%)</title><rect x="17.3528%" y="725" width="0.3550%" height="15" fill="rgb(216,194,45)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="735.50"></text></g><g><title>Parse::do_call (1,604 samples, 0.35%)</title><rect x="17.3528%" y="709" width="0.3550%" height="15" fill="rgb(218,18,35)" fg:x="78410" fg:w="1604"/><text x="17.6028%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (346 samples, 0.08%)</title><rect x="17.6312%" y="693" width="0.0766%" height="15" fill="rgb(207,83,51)" fg:x="79668" fg:w="346"/><text x="17.8812%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (58 samples, 0.01%)</title><rect x="17.6950%" y="677" width="0.0128%" height="15" fill="rgb(225,63,43)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="687.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="17.6950%" y="661" width="0.0128%" height="15" fill="rgb(207,57,36)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="671.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="17.6950%" y="645" width="0.0128%" height="15" fill="rgb(216,99,33)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="655.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="17.6950%" y="629" width="0.0128%" height="15" fill="rgb(225,42,16)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="639.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="17.6950%" y="613" width="0.0128%" height="15" fill="rgb(220,201,45)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="17.6950%" y="597" width="0.0128%" height="15" fill="rgb(225,33,4)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="607.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="17.6950%" y="581" width="0.0128%" height="15" fill="rgb(224,33,50)" fg:x="79956" fg:w="58"/><text x="17.9450%" y="591.50"></text></g><g><title>Compile::final_graph_reshaping_impl (173 samples, 0.04%)</title><rect x="17.7561%" y="757" width="0.0383%" height="15" fill="rgb(246,198,51)" fg:x="80232" fg:w="173"/><text x="18.0061%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping_walk (400 samples, 0.09%)</title><rect x="17.7111%" y="773" width="0.0885%" height="15" fill="rgb(205,22,4)" fg:x="80029" fg:w="400"/><text x="17.9611%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping (411 samples, 0.09%)</title><rect x="17.7089%" y="789" width="0.0910%" height="15" fill="rgb(206,3,8)" fg:x="80019" fg:w="411"/><text x="17.9589%" y="799.50"></text></g><g><title>PhaseIterGVN::transform_old (59 samples, 0.01%)</title><rect x="17.8561%" y="757" width="0.0131%" height="15" fill="rgb(251,23,15)" fg:x="80684" fg:w="59"/><text x="18.1061%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (64 samples, 0.01%)</title><rect x="17.8552%" y="773" width="0.0142%" height="15" fill="rgb(252,88,28)" fg:x="80680" fg:w="64"/><text x="18.1052%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (63 samples, 0.01%)</title><rect x="17.8694%" y="773" width="0.0139%" height="15" fill="rgb(212,127,14)" fg:x="80744" fg:w="63"/><text x="18.1194%" y="783.50"></text></g><g><title>Compile::remove_speculative_types (326 samples, 0.07%)</title><rect x="17.8143%" y="789" width="0.0721%" height="15" fill="rgb(247,145,37)" fg:x="80495" fg:w="326"/><text x="18.0643%" y="799.50"></text></g><g><title>ConnectionGraph::add_final_edges (51 samples, 0.01%)</title><rect x="17.9218%" y="757" width="0.0113%" height="15" fill="rgb(209,117,53)" fg:x="80981" fg:w="51"/><text x="18.1718%" y="767.50"></text></g><g><title>ConnectionGraph::add_field (48 samples, 0.01%)</title><rect x="17.9497%" y="741" width="0.0106%" height="15" fill="rgb(212,90,42)" fg:x="81107" fg:w="48"/><text x="18.1997%" y="751.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (123 samples, 0.03%)</title><rect x="17.9351%" y="757" width="0.0272%" height="15" fill="rgb(218,164,37)" fg:x="81041" fg:w="123"/><text x="18.1851%" y="767.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (55 samples, 0.01%)</title><rect x="17.9729%" y="741" width="0.0122%" height="15" fill="rgb(246,65,34)" fg:x="81212" fg:w="55"/><text x="18.2229%" y="751.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (155 samples, 0.03%)</title><rect x="17.9641%" y="757" width="0.0343%" height="15" fill="rgb(231,100,33)" fg:x="81172" fg:w="155"/><text x="18.2141%" y="767.50"></text></g><g><title>ConnectionGraph::find_inst_mem (68 samples, 0.02%)</title><rect x="18.0216%" y="677" width="0.0150%" height="15" fill="rgb(228,126,14)" fg:x="81432" fg:w="68"/><text x="18.2716%" y="687.50"></text></g><g><title>ConnectionGraph::split_memory_phi (73 samples, 0.02%)</title><rect x="18.0207%" y="693" width="0.0162%" height="15" fill="rgb(215,173,21)" fg:x="81428" fg:w="73"/><text x="18.2707%" y="703.50"></text></g><g><title>ConnectionGraph::find_inst_mem (80 samples, 0.02%)</title><rect x="18.0194%" y="709" width="0.0177%" height="15" fill="rgb(210,6,40)" fg:x="81422" fg:w="80"/><text x="18.2694%" y="719.50"></text></g><g><title>ConnectionGraph::split_memory_phi (117 samples, 0.03%)</title><rect x="18.0115%" y="725" width="0.0259%" height="15" fill="rgb(212,48,18)" fg:x="81386" fg:w="117"/><text x="18.2615%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (153 samples, 0.03%)</title><rect x="18.0046%" y="741" width="0.0339%" height="15" fill="rgb(230,214,11)" fg:x="81355" fg:w="153"/><text x="18.2546%" y="751.50"></text></g><g><title>ConnectionGraph::split_unique_types (209 samples, 0.05%)</title><rect x="18.0015%" y="757" width="0.0463%" height="15" fill="rgb(254,105,39)" fg:x="81341" fg:w="209"/><text x="18.2515%" y="767.50"></text></g><g><title>ConnectionGraph::do_analysis (735 samples, 0.16%)</title><rect x="17.8869%" y="789" width="0.1627%" height="15" fill="rgb(245,158,5)" fg:x="80823" fg:w="735"/><text x="18.1369%" y="799.50"></text></g><g><title>ConnectionGraph::compute_escape (733 samples, 0.16%)</title><rect x="17.8873%" y="773" width="0.1622%" height="15" fill="rgb(249,208,11)" fg:x="80825" fg:w="733"/><text x="18.1373%" y="783.50"></text></g><g><title>PhiNode::Value (68 samples, 0.02%)</title><rect x="18.2111%" y="773" width="0.0150%" height="15" fill="rgb(210,39,28)" fg:x="82288" fg:w="68"/><text x="18.4611%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (72 samples, 0.02%)</title><rect x="18.2509%" y="773" width="0.0159%" height="15" fill="rgb(211,56,53)" fg:x="82468" fg:w="72"/><text x="18.5009%" y="783.50"></text></g><g><title>PhaseCCP::analyze (1,014 samples, 0.22%)</title><rect x="18.0506%" y="789" width="0.2244%" height="15" fill="rgb(226,201,30)" fg:x="81563" fg:w="1014"/><text x="18.3006%" y="799.50"></text></g><g><title>PhaseCCP::transform_once (141 samples, 0.03%)</title><rect x="18.3104%" y="757" width="0.0312%" height="15" fill="rgb(239,101,34)" fg:x="82737" fg:w="141"/><text x="18.5604%" y="767.50"></text></g><g><title>PhaseCCP::do_transform (314 samples, 0.07%)</title><rect x="18.2750%" y="789" width="0.0695%" height="15" fill="rgb(226,209,5)" fg:x="82577" fg:w="314"/><text x="18.5250%" y="799.50"></text></g><g><title>PhaseCCP::transform (314 samples, 0.07%)</title><rect x="18.2750%" y="773" width="0.0695%" height="15" fill="rgb(250,105,47)" fg:x="82577" fg:w="314"/><text x="18.5250%" y="783.50"></text></g><g><title>IdealLoopTree::counted_loop (61 samples, 0.01%)</title><rect x="18.3686%" y="773" width="0.0135%" height="15" fill="rgb(230,72,3)" fg:x="83000" fg:w="61"/><text x="18.6186%" y="783.50"></text></g><g><title>IdealLoopTree::counted_loop (59 samples, 0.01%)</title><rect x="18.3691%" y="757" width="0.0131%" height="15" fill="rgb(232,218,39)" fg:x="83002" fg:w="59"/><text x="18.6191%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (53 samples, 0.01%)</title><rect x="18.3883%" y="629" width="0.0117%" height="15" fill="rgb(248,166,6)" fg:x="83089" fg:w="53"/><text x="18.6383%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (59 samples, 0.01%)</title><rect x="18.3883%" y="645" width="0.0131%" height="15" fill="rgb(247,89,20)" fg:x="83089" fg:w="59"/><text x="18.6383%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (73 samples, 0.02%)</title><rect x="18.3881%" y="661" width="0.0162%" height="15" fill="rgb(248,130,54)" fg:x="83088" fg:w="73"/><text x="18.6381%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (96 samples, 0.02%)</title><rect x="18.3872%" y="677" width="0.0212%" height="15" fill="rgb(234,196,4)" fg:x="83084" fg:w="96"/><text x="18.6372%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (117 samples, 0.03%)</title><rect x="18.3866%" y="693" width="0.0259%" height="15" fill="rgb(250,143,31)" fg:x="83081" fg:w="117"/><text x="18.6366%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (136 samples, 0.03%)</title><rect x="18.3861%" y="709" width="0.0301%" height="15" fill="rgb(211,110,34)" fg:x="83079" fg:w="136"/><text x="18.6361%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (164 samples, 0.04%)</title><rect x="18.3857%" y="725" width="0.0363%" height="15" fill="rgb(215,124,48)" fg:x="83077" fg:w="164"/><text x="18.6357%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (65 samples, 0.01%)</title><rect x="18.4220%" y="725" width="0.0144%" height="15" fill="rgb(216,46,13)" fg:x="83241" fg:w="65"/><text x="18.6720%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (241 samples, 0.05%)</title><rect x="18.3837%" y="741" width="0.0533%" height="15" fill="rgb(205,184,25)" fg:x="83068" fg:w="241"/><text x="18.6337%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (289 samples, 0.06%)</title><rect x="18.3832%" y="757" width="0.0640%" height="15" fill="rgb(228,1,10)" fg:x="83066" fg:w="289"/><text x="18.6332%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (317 samples, 0.07%)</title><rect x="18.3821%" y="773" width="0.0702%" height="15" fill="rgb(213,116,27)" fg:x="83061" fg:w="317"/><text x="18.6321%" y="783.50"></text></g><g><title>IdealLoopTree::loop_predication (69 samples, 0.02%)</title><rect x="18.4523%" y="741" width="0.0153%" height="15" fill="rgb(241,95,50)" fg:x="83378" fg:w="69"/><text x="18.7023%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (138 samples, 0.03%)</title><rect x="18.4523%" y="757" width="0.0305%" height="15" fill="rgb(238,48,32)" fg:x="83378" fg:w="138"/><text x="18.7023%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (69 samples, 0.02%)</title><rect x="18.4676%" y="741" width="0.0153%" height="15" fill="rgb(235,113,49)" fg:x="83447" fg:w="69"/><text x="18.7176%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (112 samples, 0.02%)</title><rect x="18.4935%" y="741" width="0.0248%" height="15" fill="rgb(205,127,43)" fg:x="83564" fg:w="112"/><text x="18.7435%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (59 samples, 0.01%)</title><rect x="18.5182%" y="741" width="0.0131%" height="15" fill="rgb(250,162,2)" fg:x="83676" fg:w="59"/><text x="18.7682%" y="751.50"></text></g><g><title>IdealLoopTree::loop_predication (382 samples, 0.08%)</title><rect x="18.4523%" y="773" width="0.0845%" height="15" fill="rgb(220,13,41)" fg:x="83378" fg:w="382"/><text x="18.7023%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (244 samples, 0.05%)</title><rect x="18.4828%" y="757" width="0.0540%" height="15" fill="rgb(249,221,25)" fg:x="83516" fg:w="244"/><text x="18.7328%" y="767.50"></text></g><g><title>NTarjan::DFS (434 samples, 0.10%)</title><rect x="18.7617%" y="757" width="0.0960%" height="15" fill="rgb(215,208,19)" fg:x="84776" fg:w="434"/><text x="19.0117%" y="767.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,473 samples, 0.33%)</title><rect x="18.5537%" y="773" width="0.3260%" height="15" fill="rgb(236,175,2)" fg:x="83836" fg:w="1473"/><text x="18.8037%" y="783.50"></text></g><g><title>PhaseIdealLoop::dom_depth (96 samples, 0.02%)</title><rect x="19.2751%" y="725" width="0.0212%" height="15" fill="rgb(241,52,2)" fg:x="87096" fg:w="96"/><text x="19.5251%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (241 samples, 0.05%)</title><rect x="19.2964%" y="725" width="0.0533%" height="15" fill="rgb(248,140,14)" fg:x="87192" fg:w="241"/><text x="19.5464%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (602 samples, 0.13%)</title><rect x="19.2167%" y="757" width="0.1332%" height="15" fill="rgb(253,22,42)" fg:x="86832" fg:w="602"/><text x="19.4667%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (543 samples, 0.12%)</title><rect x="19.2298%" y="741" width="0.1202%" height="15" fill="rgb(234,61,47)" fg:x="86891" fg:w="543"/><text x="19.4798%" y="751.50"></text></g><g><title>PhiNode::pinned (56 samples, 0.01%)</title><rect x="19.3506%" y="757" width="0.0124%" height="15" fill="rgb(208,226,15)" fg:x="87437" fg:w="56"/><text x="19.6006%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,261 samples, 0.50%)</title><rect x="18.8796%" y="773" width="0.5004%" height="15" fill="rgb(217,221,4)" fg:x="85309" fg:w="2261"/><text x="19.1296%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (106 samples, 0.02%)</title><rect x="19.9441%" y="741" width="0.0235%" height="15" fill="rgb(212,174,34)" fg:x="90119" fg:w="106"/><text x="20.1941%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (134 samples, 0.03%)</title><rect x="19.9683%" y="741" width="0.0297%" height="15" fill="rgb(253,83,4)" fg:x="90228" fg:w="134"/><text x="20.2183%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (94 samples, 0.02%)</title><rect x="20.2712%" y="693" width="0.0208%" height="15" fill="rgb(250,195,49)" fg:x="91597" fg:w="94"/><text x="20.5212%" y="703.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (178 samples, 0.04%)</title><rect x="20.2920%" y="693" width="0.0394%" height="15" fill="rgb(241,192,25)" fg:x="91691" fg:w="178"/><text x="20.5420%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (383 samples, 0.08%)</title><rect x="20.2469%" y="709" width="0.0848%" height="15" fill="rgb(208,124,10)" fg:x="91487" fg:w="383"/><text x="20.4969%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (59 samples, 0.01%)</title><rect x="20.3317%" y="709" width="0.0131%" height="15" fill="rgb(222,33,0)" fg:x="91870" fg:w="59"/><text x="20.5817%" y="719.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (600 samples, 0.13%)</title><rect x="20.2121%" y="725" width="0.1328%" height="15" fill="rgb(234,209,28)" fg:x="91330" fg:w="600"/><text x="20.4621%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (85 samples, 0.02%)</title><rect x="20.3817%" y="709" width="0.0188%" height="15" fill="rgb(224,11,23)" fg:x="92096" fg:w="85"/><text x="20.6317%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (269 samples, 0.06%)</title><rect x="20.3452%" y="725" width="0.0595%" height="15" fill="rgb(232,99,1)" fg:x="91931" fg:w="269"/><text x="20.5952%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,231 samples, 0.27%)</title><rect x="21.4448%" y="709" width="0.2724%" height="15" fill="rgb(237,95,45)" fg:x="96900" fg:w="1231"/><text x="21.6948%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (5,923 samples, 1.31%)</title><rect x="20.4115%" y="725" width="1.3108%" height="15" fill="rgb(208,109,11)" fg:x="92231" fg:w="5923"/><text x="20.6615%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (7,847 samples, 1.74%)</title><rect x="19.9979%" y="741" width="1.7366%" height="15" fill="rgb(216,190,48)" fg:x="90362" fg:w="7847"/><text x="20.2479%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_loop (54 samples, 0.01%)</title><rect x="21.7345%" y="741" width="0.0120%" height="15" fill="rgb(251,171,36)" fg:x="98209" fg:w="54"/><text x="21.9845%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (9,063 samples, 2.01%)</title><rect x="19.7543%" y="757" width="2.0057%" height="15" fill="rgb(230,62,22)" fg:x="89261" fg:w="9063"/><text x="20.0043%" y="767.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (10,781 samples, 2.39%)</title><rect x="19.3800%" y="773" width="2.3859%" height="15" fill="rgb(225,114,35)" fg:x="87570" fg:w="10781"/><text x="19.6300%" y="783.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (290 samples, 0.06%)</title><rect x="21.9541%" y="757" width="0.0642%" height="15" fill="rgb(215,118,42)" fg:x="99201" fg:w="290"/><text x="22.2041%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,173 samples, 0.26%)</title><rect x="21.7664%" y="773" width="0.2596%" height="15" fill="rgb(243,119,21)" fg:x="98353" fg:w="1173"/><text x="22.0164%" y="783.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (46 samples, 0.01%)</title><rect x="22.0291%" y="757" width="0.0102%" height="15" fill="rgb(252,177,53)" fg:x="99540" fg:w="46"/><text x="22.2791%" y="767.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (57 samples, 0.01%)</title><rect x="22.0280%" y="773" width="0.0126%" height="15" fill="rgb(237,209,29)" fg:x="99535" fg:w="57"/><text x="22.2780%" y="783.50"></text></g><g><title>PhaseIdealLoop::do_split_if (114 samples, 0.03%)</title><rect x="22.1960%" y="757" width="0.0252%" height="15" fill="rgb(212,65,23)" fg:x="100294" fg:w="114"/><text x="22.4460%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (50 samples, 0.01%)</title><rect x="22.2643%" y="741" width="0.0111%" height="15" fill="rgb(230,222,46)" fg:x="100603" fg:w="50"/><text x="22.5143%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (47 samples, 0.01%)</title><rect x="22.2860%" y="741" width="0.0104%" height="15" fill="rgb(215,135,32)" fg:x="100701" fg:w="47"/><text x="22.5360%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (369 samples, 0.08%)</title><rect x="22.2247%" y="757" width="0.0817%" height="15" fill="rgb(246,101,22)" fg:x="100424" fg:w="369"/><text x="22.4747%" y="767.50"></text></g><g><title>ConstraintCastNode::dominating_cast (88 samples, 0.02%)</title><rect x="22.3420%" y="741" width="0.0195%" height="15" fill="rgb(206,107,13)" fg:x="100954" fg:w="88"/><text x="22.5920%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (60 samples, 0.01%)</title><rect x="22.3706%" y="741" width="0.0133%" height="15" fill="rgb(250,100,44)" fg:x="101083" fg:w="60"/><text x="22.6206%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (46 samples, 0.01%)</title><rect x="22.4020%" y="725" width="0.0102%" height="15" fill="rgb(231,147,38)" fg:x="101225" fg:w="46"/><text x="22.6520%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (129 samples, 0.03%)</title><rect x="22.3839%" y="741" width="0.0285%" height="15" fill="rgb(229,8,40)" fg:x="101143" fg:w="129"/><text x="22.6339%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (246 samples, 0.05%)</title><rect x="22.4126%" y="741" width="0.0544%" height="15" fill="rgb(221,135,30)" fg:x="101273" fg:w="246"/><text x="22.6626%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (84 samples, 0.02%)</title><rect x="22.4485%" y="725" width="0.0186%" height="15" fill="rgb(249,193,18)" fg:x="101435" fg:w="84"/><text x="22.6985%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (100 samples, 0.02%)</title><rect x="22.5011%" y="725" width="0.0221%" height="15" fill="rgb(209,133,39)" fg:x="101673" fg:w="100"/><text x="22.7511%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (280 samples, 0.06%)</title><rect x="22.4671%" y="741" width="0.0620%" height="15" fill="rgb(232,100,14)" fg:x="101519" fg:w="280"/><text x="22.7171%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,089 samples, 0.24%)</title><rect x="22.3064%" y="757" width="0.2410%" height="15" fill="rgb(224,185,1)" fg:x="100793" fg:w="1089"/><text x="22.5564%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,266 samples, 0.50%)</title><rect x="22.0483%" y="773" width="0.5015%" height="15" fill="rgb(223,139,8)" fg:x="99627" fg:w="2266"/><text x="22.2983%" y="783.50"></text></g><g><title>CallNode::Ideal (69 samples, 0.02%)</title><rect x="22.6330%" y="741" width="0.0153%" height="15" fill="rgb(232,213,38)" fg:x="102269" fg:w="69"/><text x="22.8830%" y="751.50"></text></g><g><title>Node::remove_dead_region (68 samples, 0.02%)</title><rect x="22.6333%" y="725" width="0.0150%" height="15" fill="rgb(207,94,22)" fg:x="102270" fg:w="68"/><text x="22.8833%" y="735.50"></text></g><g><title>CastIINode::Value (48 samples, 0.01%)</title><rect x="22.6499%" y="741" width="0.0106%" height="15" fill="rgb(219,183,54)" fg:x="102345" fg:w="48"/><text x="22.8999%" y="751.50"></text></g><g><title>MemNode::Ideal_common (58 samples, 0.01%)</title><rect x="22.7152%" y="725" width="0.0128%" height="15" fill="rgb(216,185,54)" fg:x="102640" fg:w="58"/><text x="22.9652%" y="735.50"></text></g><g><title>LoadNode::Ideal (154 samples, 0.03%)</title><rect x="22.7054%" y="741" width="0.0341%" height="15" fill="rgb(254,217,39)" fg:x="102596" fg:w="154"/><text x="22.9554%" y="751.50"></text></g><g><title>NodeHash::grow (54 samples, 0.01%)</title><rect x="22.7869%" y="725" width="0.0120%" height="15" fill="rgb(240,178,23)" fg:x="102964" fg:w="54"/><text x="23.0369%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (199 samples, 0.04%)</title><rect x="22.7576%" y="741" width="0.0440%" height="15" fill="rgb(218,11,47)" fg:x="102832" fg:w="199"/><text x="23.0076%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (95 samples, 0.02%)</title><rect x="22.8019%" y="741" width="0.0210%" height="15" fill="rgb(218,51,51)" fg:x="103032" fg:w="95"/><text x="23.0519%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (72 samples, 0.02%)</title><rect x="22.8369%" y="725" width="0.0159%" height="15" fill="rgb(238,126,27)" fg:x="103190" fg:w="72"/><text x="23.0869%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (153 samples, 0.03%)</title><rect x="22.8229%" y="741" width="0.0339%" height="15" fill="rgb(249,202,22)" fg:x="103127" fg:w="153"/><text x="23.0729%" y="751.50"></text></g><g><title>PhiNode::Ideal (57 samples, 0.01%)</title><rect x="22.8581%" y="741" width="0.0126%" height="15" fill="rgb(254,195,49)" fg:x="103286" fg:w="57"/><text x="23.1081%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (179 samples, 0.04%)</title><rect x="22.9243%" y="725" width="0.0396%" height="15" fill="rgb(208,123,14)" fg:x="103585" fg:w="179"/><text x="23.1743%" y="735.50"></text></g><g><title>RegionNode::Ideal (331 samples, 0.07%)</title><rect x="22.8913%" y="741" width="0.0733%" height="15" fill="rgb(224,200,8)" fg:x="103436" fg:w="331"/><text x="23.1413%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (47 samples, 0.01%)</title><rect x="22.9690%" y="565" width="0.0104%" height="15" fill="rgb(217,61,36)" fg:x="103787" fg:w="47"/><text x="23.2190%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (55 samples, 0.01%)</title><rect x="22.9688%" y="581" width="0.0122%" height="15" fill="rgb(206,35,45)" fg:x="103786" fg:w="55"/><text x="23.2188%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (60 samples, 0.01%)</title><rect x="22.9688%" y="597" width="0.0133%" height="15" fill="rgb(217,65,33)" fg:x="103786" fg:w="60"/><text x="23.2188%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (66 samples, 0.01%)</title><rect x="22.9688%" y="613" width="0.0146%" height="15" fill="rgb(222,158,48)" fg:x="103786" fg:w="66"/><text x="23.2188%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (72 samples, 0.02%)</title><rect x="22.9683%" y="629" width="0.0159%" height="15" fill="rgb(254,2,54)" fg:x="103784" fg:w="72"/><text x="23.2183%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (76 samples, 0.02%)</title><rect x="22.9683%" y="645" width="0.0168%" height="15" fill="rgb(250,143,38)" fg:x="103784" fg:w="76"/><text x="23.2183%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (79 samples, 0.02%)</title><rect x="22.9683%" y="661" width="0.0175%" height="15" fill="rgb(248,25,0)" fg:x="103784" fg:w="79"/><text x="23.2183%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (83 samples, 0.02%)</title><rect x="22.9683%" y="677" width="0.0184%" height="15" fill="rgb(206,152,27)" fg:x="103784" fg:w="83"/><text x="23.2183%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (89 samples, 0.02%)</title><rect x="22.9681%" y="725" width="0.0197%" height="15" fill="rgb(240,77,30)" fg:x="103783" fg:w="89"/><text x="23.2181%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (88 samples, 0.02%)</title><rect x="22.9683%" y="709" width="0.0195%" height="15" fill="rgb(231,5,3)" fg:x="103784" fg:w="88"/><text x="23.2183%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (88 samples, 0.02%)</title><rect x="22.9683%" y="693" width="0.0195%" height="15" fill="rgb(207,226,32)" fg:x="103784" fg:w="88"/><text x="23.2183%" y="703.50"></text></g><g><title>StoreNode::Ideal (106 samples, 0.02%)</title><rect x="22.9681%" y="741" width="0.0235%" height="15" fill="rgb(222,207,47)" fg:x="103783" fg:w="106"/><text x="23.2181%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (1,999 samples, 0.44%)</title><rect x="22.5675%" y="757" width="0.4424%" height="15" fill="rgb(229,115,45)" fg:x="101973" fg:w="1999"/><text x="22.8175%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (2,095 samples, 0.46%)</title><rect x="22.5507%" y="773" width="0.4636%" height="15" fill="rgb(224,191,6)" fg:x="101897" fg:w="2095"/><text x="22.8007%" y="783.50"></text></g><g><title>SuperWord::transform_loop (74 samples, 0.02%)</title><rect x="23.0250%" y="773" width="0.0164%" height="15" fill="rgb(230,227,24)" fg:x="104040" fg:w="74"/><text x="23.2750%" y="783.50"></text></g><g><title>SuperWord::SLP_extract (73 samples, 0.02%)</title><rect x="23.0252%" y="757" width="0.0162%" height="15" fill="rgb(228,80,19)" fg:x="104041" fg:w="73"/><text x="23.2752%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (21,225 samples, 4.70%)</title><rect x="18.3540%" y="789" width="4.6973%" height="15" fill="rgb(247,229,0)" fg:x="82934" fg:w="21225"/><text x="18.6040%" y="799.50">Phase..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (164 samples, 0.04%)</title><rect x="23.0515%" y="789" width="0.0363%" height="15" fill="rgb(237,194,15)" fg:x="104160" fg:w="164"/><text x="23.3015%" y="799.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (89 samples, 0.02%)</title><rect x="23.0681%" y="773" width="0.0197%" height="15" fill="rgb(219,203,20)" fg:x="104235" fg:w="89"/><text x="23.3181%" y="783.50"></text></g><g><title>IfNode::search_identical (46 samples, 0.01%)</title><rect x="23.2164%" y="741" width="0.0102%" height="15" fill="rgb(234,128,8)" fg:x="104905" fg:w="46"/><text x="23.4664%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (91 samples, 0.02%)</title><rect x="23.2416%" y="725" width="0.0201%" height="15" fill="rgb(248,202,8)" fg:x="105019" fg:w="91"/><text x="23.4916%" y="735.50"></text></g><g><title>Unique_Node_List::remove (82 samples, 0.02%)</title><rect x="23.2436%" y="709" width="0.0181%" height="15" fill="rgb(206,104,37)" fg:x="105028" fg:w="82"/><text x="23.4936%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (103 samples, 0.02%)</title><rect x="23.2403%" y="741" width="0.0228%" height="15" fill="rgb(223,8,27)" fg:x="105013" fg:w="103"/><text x="23.4903%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (47 samples, 0.01%)</title><rect x="23.2731%" y="725" width="0.0104%" height="15" fill="rgb(216,217,28)" fg:x="105161" fg:w="47"/><text x="23.5231%" y="735.50"></text></g><g><title>IfNode::Ideal (379 samples, 0.08%)</title><rect x="23.2034%" y="757" width="0.0839%" height="15" fill="rgb(249,199,1)" fg:x="104846" fg:w="379"/><text x="23.4534%" y="767.50"></text></g><g><title>split_if (97 samples, 0.02%)</title><rect x="23.2658%" y="741" width="0.0215%" height="15" fill="rgb(240,85,17)" fg:x="105128" fg:w="97"/><text x="23.5158%" y="751.50"></text></g><g><title>MemNode::Ideal_common (94 samples, 0.02%)</title><rect x="23.3169%" y="741" width="0.0208%" height="15" fill="rgb(206,108,45)" fg:x="105359" fg:w="94"/><text x="23.5669%" y="751.50"></text></g><g><title>Node::dominates (52 samples, 0.01%)</title><rect x="23.3401%" y="709" width="0.0115%" height="15" fill="rgb(245,210,41)" fg:x="105464" fg:w="52"/><text x="23.5901%" y="719.50"></text></g><g><title>MemNode::all_controls_dominate (56 samples, 0.01%)</title><rect x="23.3399%" y="725" width="0.0124%" height="15" fill="rgb(206,13,37)" fg:x="105463" fg:w="56"/><text x="23.5899%" y="735.50"></text></g><g><title>MemNode::find_previous_store (99 samples, 0.02%)</title><rect x="23.3384%" y="741" width="0.0219%" height="15" fill="rgb(250,61,18)" fg:x="105456" fg:w="99"/><text x="23.5884%" y="751.50"></text></g><g><title>LoadNode::Ideal (260 samples, 0.06%)</title><rect x="23.3038%" y="757" width="0.0575%" height="15" fill="rgb(235,172,48)" fg:x="105300" fg:w="260"/><text x="23.5538%" y="767.50"></text></g><g><title>MergeMemNode::Ideal (73 samples, 0.02%)</title><rect x="23.3817%" y="757" width="0.0162%" height="15" fill="rgb(249,201,17)" fg:x="105652" fg:w="73"/><text x="23.6317%" y="767.50"></text></g><g><title>NodeHash::grow (83 samples, 0.02%)</title><rect x="23.4408%" y="741" width="0.0184%" height="15" fill="rgb(219,208,6)" fg:x="105919" fg:w="83"/><text x="23.6908%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (248 samples, 0.05%)</title><rect x="23.4067%" y="757" width="0.0549%" height="15" fill="rgb(248,31,23)" fg:x="105765" fg:w="248"/><text x="23.6567%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (90 samples, 0.02%)</title><rect x="23.4618%" y="757" width="0.0199%" height="15" fill="rgb(245,15,42)" fg:x="106014" fg:w="90"/><text x="23.7118%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (151 samples, 0.03%)</title><rect x="23.5265%" y="741" width="0.0334%" height="15" fill="rgb(222,217,39)" fg:x="106306" fg:w="151"/><text x="23.7765%" y="751.50"></text></g><g><title>Unique_Node_List::remove (60 samples, 0.01%)</title><rect x="23.5466%" y="725" width="0.0133%" height="15" fill="rgb(210,219,27)" fg:x="106397" fg:w="60"/><text x="23.7966%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (377 samples, 0.08%)</title><rect x="23.4820%" y="757" width="0.0834%" height="15" fill="rgb(252,166,36)" fg:x="106105" fg:w="377"/><text x="23.7320%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (73 samples, 0.02%)</title><rect x="23.5891%" y="741" width="0.0162%" height="15" fill="rgb(245,132,34)" fg:x="106589" fg:w="73"/><text x="23.8391%" y="751.50"></text></g><g><title>PhiNode::Ideal (205 samples, 0.05%)</title><rect x="23.5665%" y="757" width="0.0454%" height="15" fill="rgb(236,54,3)" fg:x="106487" fg:w="205"/><text x="23.8165%" y="767.50"></text></g><g><title>PhiNode::Value (58 samples, 0.01%)</title><rect x="23.6157%" y="757" width="0.0128%" height="15" fill="rgb(241,173,43)" fg:x="106709" fg:w="58"/><text x="23.8657%" y="767.50"></text></g><g><title>Unique_Node_List::remove (111 samples, 0.02%)</title><rect x="23.6772%" y="709" width="0.0246%" height="15" fill="rgb(215,190,9)" fg:x="106987" fg:w="111"/><text x="23.9272%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (132 samples, 0.03%)</title><rect x="23.6730%" y="725" width="0.0292%" height="15" fill="rgb(242,101,16)" fg:x="106968" fg:w="132"/><text x="23.9230%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (149 samples, 0.03%)</title><rect x="23.6708%" y="741" width="0.0330%" height="15" fill="rgb(223,190,21)" fg:x="106958" fg:w="149"/><text x="23.9208%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (96 samples, 0.02%)</title><rect x="23.7110%" y="741" width="0.0212%" height="15" fill="rgb(215,228,25)" fg:x="107140" fg:w="96"/><text x="23.9610%" y="751.50"></text></g><g><title>RegionNode::Ideal (424 samples, 0.09%)</title><rect x="23.6402%" y="757" width="0.0938%" height="15" fill="rgb(225,36,22)" fg:x="106820" fg:w="424"/><text x="23.8902%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.01%)</title><rect x="23.7394%" y="453" width="0.0102%" height="15" fill="rgb(251,106,46)" fg:x="107268" fg:w="46"/><text x="23.9894%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (69 samples, 0.02%)</title><rect x="23.7391%" y="469" width="0.0153%" height="15" fill="rgb(208,90,1)" fg:x="107267" fg:w="69"/><text x="23.9891%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (81 samples, 0.02%)</title><rect x="23.7391%" y="485" width="0.0179%" height="15" fill="rgb(243,10,4)" fg:x="107267" fg:w="81"/><text x="23.9891%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (98 samples, 0.02%)</title><rect x="23.7391%" y="501" width="0.0217%" height="15" fill="rgb(212,137,27)" fg:x="107267" fg:w="98"/><text x="23.9891%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (117 samples, 0.03%)</title><rect x="23.7391%" y="517" width="0.0259%" height="15" fill="rgb(231,220,49)" fg:x="107267" fg:w="117"/><text x="23.9891%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (135 samples, 0.03%)</title><rect x="23.7391%" y="533" width="0.0299%" height="15" fill="rgb(237,96,20)" fg:x="107267" fg:w="135"/><text x="23.9891%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (162 samples, 0.04%)</title><rect x="23.7391%" y="549" width="0.0359%" height="15" fill="rgb(239,229,30)" fg:x="107267" fg:w="162"/><text x="23.9891%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (182 samples, 0.04%)</title><rect x="23.7389%" y="565" width="0.0403%" height="15" fill="rgb(219,65,33)" fg:x="107266" fg:w="182"/><text x="23.9889%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (200 samples, 0.04%)</title><rect x="23.7389%" y="581" width="0.0443%" height="15" fill="rgb(243,134,7)" fg:x="107266" fg:w="200"/><text x="23.9889%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (213 samples, 0.05%)</title><rect x="23.7389%" y="597" width="0.0471%" height="15" fill="rgb(216,177,54)" fg:x="107266" fg:w="213"/><text x="23.9889%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (232 samples, 0.05%)</title><rect x="23.7389%" y="613" width="0.0513%" height="15" fill="rgb(211,160,20)" fg:x="107266" fg:w="232"/><text x="23.9889%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (253 samples, 0.06%)</title><rect x="23.7389%" y="629" width="0.0560%" height="15" fill="rgb(239,85,39)" fg:x="107266" fg:w="253"/><text x="23.9889%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (270 samples, 0.06%)</title><rect x="23.7387%" y="645" width="0.0598%" height="15" fill="rgb(232,125,22)" fg:x="107265" fg:w="270"/><text x="23.9887%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (289 samples, 0.06%)</title><rect x="23.7387%" y="661" width="0.0640%" height="15" fill="rgb(244,57,34)" fg:x="107265" fg:w="289"/><text x="23.9887%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (311 samples, 0.07%)</title><rect x="23.7387%" y="677" width="0.0688%" height="15" fill="rgb(214,203,32)" fg:x="107265" fg:w="311"/><text x="23.9887%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (345 samples, 0.08%)</title><rect x="23.7387%" y="693" width="0.0764%" height="15" fill="rgb(207,58,43)" fg:x="107265" fg:w="345"/><text x="23.9887%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (377 samples, 0.08%)</title><rect x="23.7387%" y="709" width="0.0834%" height="15" fill="rgb(215,193,15)" fg:x="107265" fg:w="377"/><text x="23.9887%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (380 samples, 0.08%)</title><rect x="23.7385%" y="741" width="0.0841%" height="15" fill="rgb(232,15,44)" fg:x="107264" fg:w="380"/><text x="23.9885%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (380 samples, 0.08%)</title><rect x="23.7385%" y="725" width="0.0841%" height="15" fill="rgb(212,3,48)" fg:x="107264" fg:w="380"/><text x="23.9885%" y="735.50"></text></g><g><title>StoreNode::Ideal (422 samples, 0.09%)</title><rect x="23.7374%" y="757" width="0.0934%" height="15" fill="rgb(218,128,7)" fg:x="107259" fg:w="422"/><text x="23.9874%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (3,341 samples, 0.74%)</title><rect x="23.1106%" y="773" width="0.7394%" height="15" fill="rgb(226,216,39)" fg:x="104427" fg:w="3341"/><text x="23.3606%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (3,475 samples, 0.77%)</title><rect x="23.0878%" y="789" width="0.7690%" height="15" fill="rgb(243,47,51)" fg:x="104324" fg:w="3475"/><text x="23.3378%" y="799.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (76 samples, 0.02%)</title><rect x="23.8569%" y="789" width="0.0168%" height="15" fill="rgb(241,183,40)" fg:x="107799" fg:w="76"/><text x="24.1069%" y="799.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (76 samples, 0.02%)</title><rect x="23.8569%" y="773" width="0.0168%" height="15" fill="rgb(231,217,32)" fg:x="107799" fg:w="76"/><text x="24.1069%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (324 samples, 0.07%)</title><rect x="23.8764%" y="757" width="0.0717%" height="15" fill="rgb(229,61,38)" fg:x="107887" fg:w="324"/><text x="24.1264%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (338 samples, 0.07%)</title><rect x="23.8741%" y="773" width="0.0748%" height="15" fill="rgb(225,210,5)" fg:x="107877" fg:w="338"/><text x="24.1241%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (94 samples, 0.02%)</title><rect x="23.9516%" y="773" width="0.0208%" height="15" fill="rgb(231,79,45)" fg:x="108227" fg:w="94"/><text x="24.2016%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (500 samples, 0.11%)</title><rect x="23.8737%" y="789" width="0.1107%" height="15" fill="rgb(224,100,7)" fg:x="107875" fg:w="500"/><text x="24.1237%" y="799.50"></text></g><g><title>Compile::identify_useful_nodes (97 samples, 0.02%)</title><rect x="23.9928%" y="757" width="0.0215%" height="15" fill="rgb(241,198,18)" fg:x="108413" fg:w="97"/><text x="24.2428%" y="767.50"></text></g><g><title>Compile::remove_useless_nodes (59 samples, 0.01%)</title><rect x="24.0142%" y="757" width="0.0131%" height="15" fill="rgb(252,97,53)" fg:x="108510" fg:w="59"/><text x="24.2642%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (197 samples, 0.04%)</title><rect x="23.9879%" y="773" width="0.0436%" height="15" fill="rgb(220,88,7)" fg:x="108391" fg:w="197"/><text x="24.2379%" y="783.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (214 samples, 0.05%)</title><rect x="23.9844%" y="789" width="0.0474%" height="15" fill="rgb(213,176,14)" fg:x="108375" fg:w="214"/><text x="24.2344%" y="799.50"></text></g><g><title>Compile::Optimize (28,586 samples, 6.33%)</title><rect x="17.7078%" y="805" width="6.3263%" height="15" fill="rgb(246,73,7)" fg:x="80014" fg:w="28586"/><text x="17.9578%" y="815.50">Compile:..</text></g><g><title>Parse::do_one_block (180 samples, 0.04%)</title><rect x="24.0401%" y="693" width="0.0398%" height="15" fill="rgb(245,64,36)" fg:x="108627" fg:w="180"/><text x="24.2901%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (167 samples, 0.04%)</title><rect x="24.0430%" y="677" width="0.0370%" height="15" fill="rgb(245,80,10)" fg:x="108640" fg:w="167"/><text x="24.2930%" y="687.50"></text></g><g><title>Parse::do_all_blocks (187 samples, 0.04%)</title><rect x="24.0397%" y="709" width="0.0414%" height="15" fill="rgb(232,107,50)" fg:x="108625" fg:w="187"/><text x="24.2897%" y="719.50"></text></g><g><title>ParseGenerator::generate (197 samples, 0.04%)</title><rect x="24.0397%" y="741" width="0.0436%" height="15" fill="rgb(253,3,0)" fg:x="108625" fg:w="197"/><text x="24.2897%" y="751.50"></text></g><g><title>Parse::Parse (197 samples, 0.04%)</title><rect x="24.0397%" y="725" width="0.0436%" height="15" fill="rgb(212,99,53)" fg:x="108625" fg:w="197"/><text x="24.2897%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (242 samples, 0.05%)</title><rect x="24.0344%" y="805" width="0.0536%" height="15" fill="rgb(249,111,54)" fg:x="108601" fg:w="242"/><text x="24.2844%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (242 samples, 0.05%)</title><rect x="24.0344%" y="789" width="0.0536%" height="15" fill="rgb(249,55,30)" fg:x="108601" fg:w="242"/><text x="24.2844%" y="799.50"></text></g><g><title>C2Compiler::compile_method (242 samples, 0.05%)</title><rect x="24.0344%" y="773" width="0.0536%" height="15" fill="rgb(237,47,42)" fg:x="108601" fg:w="242"/><text x="24.2844%" y="783.50"></text></g><g><title>Compile::Compile (242 samples, 0.05%)</title><rect x="24.0344%" y="757" width="0.0536%" height="15" fill="rgb(211,20,18)" fg:x="108601" fg:w="242"/><text x="24.2844%" y="767.50"></text></g><g><title>ciTypeFlow::df_flow_types (86 samples, 0.02%)</title><rect x="24.0879%" y="677" width="0.0190%" height="15" fill="rgb(231,203,46)" fg:x="108843" fg:w="86"/><text x="24.3379%" y="687.50"></text></g><g><title>ciTypeFlow::flow_block (86 samples, 0.02%)</title><rect x="24.0879%" y="661" width="0.0190%" height="15" fill="rgb(237,142,3)" fg:x="108843" fg:w="86"/><text x="24.3379%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (86 samples, 0.02%)</title><rect x="24.0879%" y="645" width="0.0190%" height="15" fill="rgb(241,107,1)" fg:x="108843" fg:w="86"/><text x="24.3379%" y="655.50"></text></g><g><title>CallGenerator::for_inline (88 samples, 0.02%)</title><rect x="24.0879%" y="757" width="0.0195%" height="15" fill="rgb(229,83,13)" fg:x="108843" fg:w="88"/><text x="24.3379%" y="767.50"></text></g><g><title>InlineTree::check_can_parse (88 samples, 0.02%)</title><rect x="24.0879%" y="741" width="0.0195%" height="15" fill="rgb(241,91,40)" fg:x="108843" fg:w="88"/><text x="24.3379%" y="751.50"></text></g><g><title>ciMethod::get_flow_analysis (88 samples, 0.02%)</title><rect x="24.0879%" y="725" width="0.0195%" height="15" fill="rgb(225,3,45)" fg:x="108843" fg:w="88"/><text x="24.3379%" y="735.50"></text></g><g><title>ciTypeFlow::do_flow (88 samples, 0.02%)</title><rect x="24.0879%" y="709" width="0.0195%" height="15" fill="rgb(244,223,14)" fg:x="108843" fg:w="88"/><text x="24.3379%" y="719.50"></text></g><g><title>ciTypeFlow::flow_types (88 samples, 0.02%)</title><rect x="24.0879%" y="693" width="0.0195%" height="15" fill="rgb(224,124,37)" fg:x="108843" fg:w="88"/><text x="24.3379%" y="703.50"></text></g><g><title>InlineTree::ok_to_inline (66 samples, 0.01%)</title><rect x="24.1233%" y="645" width="0.0146%" height="15" fill="rgb(251,171,30)" fg:x="109003" fg:w="66"/><text x="24.3733%" y="655.50"></text></g><g><title>Compile::call_generator (89 samples, 0.02%)</title><rect x="24.1207%" y="661" width="0.0197%" height="15" fill="rgb(236,46,54)" fg:x="108991" fg:w="89"/><text x="24.3707%" y="671.50"></text></g><g><title>Parse::do_one_block (145 samples, 0.03%)</title><rect x="24.1731%" y="613" width="0.0321%" height="15" fill="rgb(245,213,5)" fg:x="109228" fg:w="145"/><text x="24.4231%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (133 samples, 0.03%)</title><rect x="24.1758%" y="597" width="0.0294%" height="15" fill="rgb(230,144,27)" fg:x="109240" fg:w="133"/><text x="24.4258%" y="607.50"></text></g><g><title>Parse::do_all_blocks (169 samples, 0.04%)</title><rect x="24.1716%" y="629" width="0.0374%" height="15" fill="rgb(220,86,6)" fg:x="109221" fg:w="169"/><text x="24.4216%" y="639.50"></text></g><g><title>ParseGenerator::generate (280 samples, 0.06%)</title><rect x="24.1603%" y="661" width="0.0620%" height="15" fill="rgb(240,20,13)" fg:x="109170" fg:w="280"/><text x="24.4103%" y="671.50"></text></g><g><title>Parse::Parse (280 samples, 0.06%)</title><rect x="24.1603%" y="645" width="0.0620%" height="15" fill="rgb(217,89,34)" fg:x="109170" fg:w="280"/><text x="24.4103%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (117 samples, 0.03%)</title><rect x="24.2223%" y="661" width="0.0259%" height="15" fill="rgb(229,13,5)" fg:x="109450" fg:w="117"/><text x="24.4723%" y="671.50"></text></g><g><title>Parse::do_call (600 samples, 0.13%)</title><rect x="24.1207%" y="677" width="0.1328%" height="15" fill="rgb(244,67,35)" fg:x="108991" fg:w="600"/><text x="24.3707%" y="687.50"></text></g><g><title>Parse::do_field_access (90 samples, 0.02%)</title><rect x="24.2594%" y="677" width="0.0199%" height="15" fill="rgb(221,40,2)" fg:x="109618" fg:w="90"/><text x="24.5094%" y="687.50"></text></g><g><title>Parse::do_all_blocks (831 samples, 0.18%)</title><rect x="24.1105%" y="725" width="0.1839%" height="15" fill="rgb(237,157,21)" fg:x="108945" fg:w="831"/><text x="24.3605%" y="735.50"></text></g><g><title>Parse::do_one_block (831 samples, 0.18%)</title><rect x="24.1105%" y="709" width="0.1839%" height="15" fill="rgb(222,94,11)" fg:x="108945" fg:w="831"/><text x="24.3605%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (822 samples, 0.18%)</title><rect x="24.1125%" y="693" width="0.1819%" height="15" fill="rgb(249,113,6)" fg:x="108954" fg:w="822"/><text x="24.3625%" y="703.50"></text></g><g><title>ParseGenerator::generate (849 samples, 0.19%)</title><rect x="24.1105%" y="757" width="0.1879%" height="15" fill="rgb(238,137,36)" fg:x="108945" fg:w="849"/><text x="24.3605%" y="767.50"></text></g><g><title>Parse::Parse (849 samples, 0.19%)</title><rect x="24.1105%" y="741" width="0.1879%" height="15" fill="rgb(210,102,26)" fg:x="108945" fg:w="849"/><text x="24.3605%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (989 samples, 0.22%)</title><rect x="24.0879%" y="805" width="0.2189%" height="15" fill="rgb(218,30,30)" fg:x="108843" fg:w="989"/><text x="24.3379%" y="815.50"></text></g><g><title>C2Compiler::compile_method (989 samples, 0.22%)</title><rect x="24.0879%" y="789" width="0.2189%" height="15" fill="rgb(214,67,26)" fg:x="108843" fg:w="989"/><text x="24.3379%" y="799.50"></text></g><g><title>Compile::Compile (989 samples, 0.22%)</title><rect x="24.0879%" y="773" width="0.2189%" height="15" fill="rgb(251,9,53)" fg:x="108843" fg:w="989"/><text x="24.3379%" y="783.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.01%)</title><rect x="24.3261%" y="677" width="0.0102%" height="15" fill="rgb(228,204,25)" fg:x="109919" fg:w="46"/><text x="24.5761%" y="687.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="24.3258%" y="693" width="0.0115%" height="15" fill="rgb(207,153,8)" fg:x="109918" fg:w="52"/><text x="24.5758%" y="703.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.02%)</title><rect x="24.3254%" y="725" width="0.0153%" height="15" fill="rgb(242,9,16)" fg:x="109916" fg:w="69"/><text x="24.5754%" y="735.50"></text></g><g><title>Parse::Parse (69 samples, 0.02%)</title><rect x="24.3254%" y="709" width="0.0153%" height="15" fill="rgb(217,211,10)" fg:x="109916" fg:w="69"/><text x="24.5754%" y="719.50"></text></g><g><title>JavaThread::thread_main_inner (94 samples, 0.02%)</title><rect x="24.3219%" y="805" width="0.0208%" height="15" fill="rgb(219,228,52)" fg:x="109900" fg:w="94"/><text x="24.5719%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (94 samples, 0.02%)</title><rect x="24.3219%" y="789" width="0.0208%" height="15" fill="rgb(231,92,29)" fg:x="109900" fg:w="94"/><text x="24.5719%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (94 samples, 0.02%)</title><rect x="24.3219%" y="773" width="0.0208%" height="15" fill="rgb(232,8,23)" fg:x="109900" fg:w="94"/><text x="24.5719%" y="783.50"></text></g><g><title>C2Compiler::compile_method (94 samples, 0.02%)</title><rect x="24.3219%" y="757" width="0.0208%" height="15" fill="rgb(216,211,34)" fg:x="109900" fg:w="94"/><text x="24.5719%" y="767.50"></text></g><g><title>Compile::Compile (94 samples, 0.02%)</title><rect x="24.3219%" y="741" width="0.0208%" height="15" fill="rgb(236,151,0)" fg:x="109900" fg:w="94"/><text x="24.5719%" y="751.50"></text></g><g><title>Parse::Parse (49 samples, 0.01%)</title><rect x="24.3460%" y="805" width="0.0108%" height="15" fill="rgb(209,168,3)" fg:x="110009" fg:w="49"/><text x="24.5960%" y="815.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.01%)</title><rect x="24.3460%" y="789" width="0.0108%" height="15" fill="rgb(208,129,28)" fg:x="110009" fg:w="49"/><text x="24.5960%" y="799.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.01%)</title><rect x="24.3460%" y="773" width="0.0108%" height="15" fill="rgb(229,78,22)" fg:x="110009" fg:w="49"/><text x="24.5960%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.01%)</title><rect x="24.3460%" y="757" width="0.0108%" height="15" fill="rgb(228,187,13)" fg:x="110009" fg:w="49"/><text x="24.5960%" y="767.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="24.3460%" y="741" width="0.0108%" height="15" fill="rgb(240,119,24)" fg:x="110009" fg:w="49"/><text x="24.5960%" y="751.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.01%)</title><rect x="24.3568%" y="741" width="0.0122%" height="15" fill="rgb(209,194,42)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="751.50"></text></g><g><title>Parse::Parse (55 samples, 0.01%)</title><rect x="24.3568%" y="725" width="0.0122%" height="15" fill="rgb(247,200,46)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="735.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="24.3568%" y="709" width="0.0122%" height="15" fill="rgb(218,76,16)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="719.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="24.3568%" y="693" width="0.0122%" height="15" fill="rgb(225,21,48)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="24.3568%" y="677" width="0.0122%" height="15" fill="rgb(239,223,50)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="687.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="24.3568%" y="661" width="0.0122%" height="15" fill="rgb(244,45,21)" fg:x="110058" fg:w="55"/><text x="24.6068%" y="671.50"></text></g><g><title>Parse::do_all_blocks (71 samples, 0.02%)</title><rect x="24.3568%" y="805" width="0.0157%" height="15" fill="rgb(232,33,43)" fg:x="110058" fg:w="71"/><text x="24.6068%" y="815.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.02%)</title><rect x="24.3568%" y="789" width="0.0157%" height="15" fill="rgb(209,8,3)" fg:x="110058" fg:w="71"/><text x="24.6068%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (71 samples, 0.02%)</title><rect x="24.3568%" y="773" width="0.0157%" height="15" fill="rgb(214,25,53)" fg:x="110058" fg:w="71"/><text x="24.6068%" y="783.50"></text></g><g><title>Parse::do_call (71 samples, 0.02%)</title><rect x="24.3568%" y="757" width="0.0157%" height="15" fill="rgb(254,186,54)" fg:x="110058" fg:w="71"/><text x="24.6068%" y="767.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="24.3725%" y="501" width="0.0115%" height="15" fill="rgb(208,174,49)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="511.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="24.3725%" y="485" width="0.0115%" height="15" fill="rgb(233,191,51)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="495.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="24.3725%" y="469" width="0.0115%" height="15" fill="rgb(222,134,10)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="479.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="24.3725%" y="453" width="0.0115%" height="15" fill="rgb(230,226,20)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="24.3725%" y="437" width="0.0115%" height="15" fill="rgb(251,111,25)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="447.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="24.3725%" y="421" width="0.0115%" height="15" fill="rgb(224,40,46)" fg:x="110129" fg:w="52"/><text x="24.6225%" y="431.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.02%)</title><rect x="24.3725%" y="597" width="0.0162%" height="15" fill="rgb(236,108,47)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="607.50"></text></g><g><title>Parse::Parse (73 samples, 0.02%)</title><rect x="24.3725%" y="581" width="0.0162%" height="15" fill="rgb(234,93,0)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="591.50"></text></g><g><title>Parse::do_all_blocks (73 samples, 0.02%)</title><rect x="24.3725%" y="565" width="0.0162%" height="15" fill="rgb(224,213,32)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="575.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.02%)</title><rect x="24.3725%" y="549" width="0.0162%" height="15" fill="rgb(251,11,48)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (73 samples, 0.02%)</title><rect x="24.3725%" y="533" width="0.0162%" height="15" fill="rgb(236,173,5)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="543.50"></text></g><g><title>Parse::do_call (73 samples, 0.02%)</title><rect x="24.3725%" y="517" width="0.0162%" height="15" fill="rgb(230,95,12)" fg:x="110129" fg:w="73"/><text x="24.6225%" y="527.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="24.3725%" y="693" width="0.0190%" height="15" fill="rgb(232,209,1)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="703.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="24.3725%" y="677" width="0.0190%" height="15" fill="rgb(232,6,1)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="687.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.02%)</title><rect x="24.3725%" y="661" width="0.0190%" height="15" fill="rgb(210,224,50)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="671.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.02%)</title><rect x="24.3725%" y="645" width="0.0190%" height="15" fill="rgb(228,127,35)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.02%)</title><rect x="24.3725%" y="629" width="0.0190%" height="15" fill="rgb(245,102,45)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="639.50"></text></g><g><title>Parse::do_call (86 samples, 0.02%)</title><rect x="24.3725%" y="613" width="0.0190%" height="15" fill="rgb(214,1,49)" fg:x="110129" fg:w="86"/><text x="24.6225%" y="623.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.02%)</title><rect x="24.3725%" y="789" width="0.0237%" height="15" fill="rgb(226,163,40)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="799.50"></text></g><g><title>Parse::Parse (107 samples, 0.02%)</title><rect x="24.3725%" y="773" width="0.0237%" height="15" fill="rgb(239,212,28)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="783.50"></text></g><g><title>Parse::do_all_blocks (107 samples, 0.02%)</title><rect x="24.3725%" y="757" width="0.0237%" height="15" fill="rgb(220,20,13)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="767.50"></text></g><g><title>Parse::do_one_block (107 samples, 0.02%)</title><rect x="24.3725%" y="741" width="0.0237%" height="15" fill="rgb(210,164,35)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (107 samples, 0.02%)</title><rect x="24.3725%" y="725" width="0.0237%" height="15" fill="rgb(248,109,41)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="735.50"></text></g><g><title>Parse::do_call (107 samples, 0.02%)</title><rect x="24.3725%" y="709" width="0.0237%" height="15" fill="rgb(238,23,50)" fg:x="110129" fg:w="107"/><text x="24.6225%" y="719.50"></text></g><g><title>Parse::do_call (135 samples, 0.03%)</title><rect x="24.3725%" y="805" width="0.0299%" height="15" fill="rgb(211,48,49)" fg:x="110129" fg:w="135"/><text x="24.6225%" y="815.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.01%)</title><rect x="24.4024%" y="757" width="0.0108%" height="15" fill="rgb(223,36,21)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="767.50"></text></g><g><title>Parse::Parse (49 samples, 0.01%)</title><rect x="24.4024%" y="741" width="0.0108%" height="15" fill="rgb(207,123,46)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="751.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.01%)</title><rect x="24.4024%" y="725" width="0.0108%" height="15" fill="rgb(240,218,32)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="735.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.01%)</title><rect x="24.4024%" y="709" width="0.0108%" height="15" fill="rgb(252,5,43)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.01%)</title><rect x="24.4024%" y="693" width="0.0108%" height="15" fill="rgb(252,84,19)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="703.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="24.4024%" y="677" width="0.0108%" height="15" fill="rgb(243,152,39)" fg:x="110264" fg:w="49"/><text x="24.6524%" y="687.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="24.4024%" y="805" width="0.0120%" height="15" fill="rgb(234,160,15)" fg:x="110264" fg:w="54"/><text x="24.6524%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="24.4024%" y="789" width="0.0120%" height="15" fill="rgb(237,34,20)" fg:x="110264" fg:w="54"/><text x="24.6524%" y="799.50"></text></g><g><title>Parse::do_call (54 samples, 0.01%)</title><rect x="24.4024%" y="773" width="0.0120%" height="15" fill="rgb(229,97,13)" fg:x="110264" fg:w="54"/><text x="24.6524%" y="783.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="24.4144%" y="677" width="0.0115%" height="15" fill="rgb(234,71,50)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="687.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="24.4144%" y="661" width="0.0115%" height="15" fill="rgb(253,155,4)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="671.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="24.4144%" y="645" width="0.0115%" height="15" fill="rgb(222,185,37)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="655.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="24.4144%" y="629" width="0.0115%" height="15" fill="rgb(251,177,13)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="24.4144%" y="613" width="0.0115%" height="15" fill="rgb(250,179,40)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="623.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="24.4144%" y="597" width="0.0115%" height="15" fill="rgb(242,44,2)" fg:x="110318" fg:w="52"/><text x="24.6644%" y="607.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="24.4144%" y="773" width="0.0131%" height="15" fill="rgb(216,177,13)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="783.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="24.4144%" y="757" width="0.0131%" height="15" fill="rgb(216,106,43)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="767.50"></text></g><g><title>Parse::do_all_blocks (59 samples, 0.01%)</title><rect x="24.4144%" y="741" width="0.0131%" height="15" fill="rgb(216,183,2)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="751.50"></text></g><g><title>Parse::do_one_block (59 samples, 0.01%)</title><rect x="24.4144%" y="725" width="0.0131%" height="15" fill="rgb(249,75,3)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.01%)</title><rect x="24.4144%" y="709" width="0.0131%" height="15" fill="rgb(219,67,39)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="719.50"></text></g><g><title>Parse::do_call (59 samples, 0.01%)</title><rect x="24.4144%" y="693" width="0.0131%" height="15" fill="rgb(253,228,2)" fg:x="110318" fg:w="59"/><text x="24.6644%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.02%)</title><rect x="24.4144%" y="805" width="0.0166%" height="15" fill="rgb(235,138,27)" fg:x="110318" fg:w="75"/><text x="24.6644%" y="815.50"></text></g><g><title>Parse::do_call (75 samples, 0.02%)</title><rect x="24.4144%" y="789" width="0.0166%" height="15" fill="rgb(236,97,51)" fg:x="110318" fg:w="75"/><text x="24.6644%" y="799.50"></text></g><g><title>ParseGenerator::generate (59 samples, 0.01%)</title><rect x="24.4338%" y="133" width="0.0131%" height="15" fill="rgb(240,80,30)" fg:x="110406" fg:w="59"/><text x="24.6838%" y="143.50"></text></g><g><title>Parse::Parse (59 samples, 0.01%)</title><rect x="24.4338%" y="117" width="0.0131%" height="15" fill="rgb(230,178,19)" fg:x="110406" fg:w="59"/><text x="24.6838%" y="127.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="24.4341%" y="101" width="0.0128%" height="15" fill="rgb(210,190,27)" fg:x="110407" fg:w="58"/><text x="24.6841%" y="111.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="24.4341%" y="85" width="0.0128%" height="15" fill="rgb(222,107,31)" fg:x="110407" fg:w="58"/><text x="24.6841%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="24.4343%" y="69" width="0.0126%" height="15" fill="rgb(216,127,34)" fg:x="110408" fg:w="57"/><text x="24.6843%" y="79.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="24.4325%" y="149" width="0.0148%" height="15" fill="rgb(234,116,52)" fg:x="110400" fg:w="67"/><text x="24.6825%" y="159.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.02%)</title><rect x="24.4325%" y="229" width="0.0155%" height="15" fill="rgb(222,124,15)" fg:x="110400" fg:w="70"/><text x="24.6825%" y="239.50"></text></g><g><title>Parse::Parse (70 samples, 0.02%)</title><rect x="24.4325%" y="213" width="0.0155%" height="15" fill="rgb(231,179,28)" fg:x="110400" fg:w="70"/><text x="24.6825%" y="223.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="24.4325%" y="197" width="0.0155%" height="15" fill="rgb(226,93,45)" fg:x="110400" fg:w="70"/><text x="24.6825%" y="207.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.02%)</title><rect x="24.4325%" y="181" width="0.0155%" height="15" fill="rgb(215,8,51)" fg:x="110400" fg:w="70"/><text x="24.6825%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.02%)</title><rect x="24.4325%" y="165" width="0.0155%" height="15" fill="rgb(223,106,5)" fg:x="110400" fg:w="70"/><text x="24.6825%" y="175.50"></text></g><g><title>ParseGenerator::generate (88 samples, 0.02%)</title><rect x="24.4312%" y="325" width="0.0195%" height="15" fill="rgb(250,191,5)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="335.50"></text></g><g><title>Parse::Parse (88 samples, 0.02%)</title><rect x="24.4312%" y="309" width="0.0195%" height="15" fill="rgb(242,132,44)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="319.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.02%)</title><rect x="24.4312%" y="293" width="0.0195%" height="15" fill="rgb(251,152,29)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="303.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.02%)</title><rect x="24.4312%" y="277" width="0.0195%" height="15" fill="rgb(218,179,5)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (88 samples, 0.02%)</title><rect x="24.4312%" y="261" width="0.0195%" height="15" fill="rgb(227,67,19)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="271.50"></text></g><g><title>Parse::do_call (88 samples, 0.02%)</title><rect x="24.4312%" y="245" width="0.0195%" height="15" fill="rgb(233,119,31)" fg:x="110394" fg:w="88"/><text x="24.6812%" y="255.50"></text></g><g><title>ParseGenerator::generate (111 samples, 0.02%)</title><rect x="24.4312%" y="421" width="0.0246%" height="15" fill="rgb(241,120,22)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="431.50"></text></g><g><title>Parse::Parse (111 samples, 0.02%)</title><rect x="24.4312%" y="405" width="0.0246%" height="15" fill="rgb(224,102,30)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="415.50"></text></g><g><title>Parse::do_all_blocks (111 samples, 0.02%)</title><rect x="24.4312%" y="389" width="0.0246%" height="15" fill="rgb(210,164,37)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="399.50"></text></g><g><title>Parse::do_one_block (111 samples, 0.02%)</title><rect x="24.4312%" y="373" width="0.0246%" height="15" fill="rgb(226,191,16)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.02%)</title><rect x="24.4312%" y="357" width="0.0246%" height="15" fill="rgb(214,40,45)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="367.50"></text></g><g><title>Parse::do_call (111 samples, 0.02%)</title><rect x="24.4312%" y="341" width="0.0246%" height="15" fill="rgb(244,29,26)" fg:x="110394" fg:w="111"/><text x="24.6812%" y="351.50"></text></g><g><title>ParseGenerator::generate (140 samples, 0.03%)</title><rect x="24.4312%" y="517" width="0.0310%" height="15" fill="rgb(216,16,5)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="527.50"></text></g><g><title>Parse::Parse (140 samples, 0.03%)</title><rect x="24.4312%" y="501" width="0.0310%" height="15" fill="rgb(249,76,35)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="511.50"></text></g><g><title>Parse::do_all_blocks (140 samples, 0.03%)</title><rect x="24.4312%" y="485" width="0.0310%" height="15" fill="rgb(207,11,44)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="495.50"></text></g><g><title>Parse::do_one_block (140 samples, 0.03%)</title><rect x="24.4312%" y="469" width="0.0310%" height="15" fill="rgb(228,190,49)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (140 samples, 0.03%)</title><rect x="24.4312%" y="453" width="0.0310%" height="15" fill="rgb(214,173,12)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="463.50"></text></g><g><title>Parse::do_call (140 samples, 0.03%)</title><rect x="24.4312%" y="437" width="0.0310%" height="15" fill="rgb(218,26,35)" fg:x="110394" fg:w="140"/><text x="24.6812%" y="447.50"></text></g><g><title>Parse::do_call (179 samples, 0.04%)</title><rect x="24.4312%" y="533" width="0.0396%" height="15" fill="rgb(220,200,19)" fg:x="110394" fg:w="179"/><text x="24.6812%" y="543.50"></text></g><g><title>ParseGenerator::generate (180 samples, 0.04%)</title><rect x="24.4312%" y="613" width="0.0398%" height="15" fill="rgb(239,95,49)" fg:x="110394" fg:w="180"/><text x="24.6812%" y="623.50"></text></g><g><title>Parse::Parse (180 samples, 0.04%)</title><rect x="24.4312%" y="597" width="0.0398%" height="15" fill="rgb(235,85,53)" fg:x="110394" fg:w="180"/><text x="24.6812%" y="607.50"></text></g><g><title>Parse::do_all_blocks (180 samples, 0.04%)</title><rect x="24.4312%" y="581" width="0.0398%" height="15" fill="rgb(233,133,31)" fg:x="110394" fg:w="180"/><text x="24.6812%" y="591.50"></text></g><g><title>Parse::do_one_block (180 samples, 0.04%)</title><rect x="24.4312%" y="565" width="0.0398%" height="15" fill="rgb(218,25,20)" fg:x="110394" fg:w="180"/><text x="24.6812%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (180 samples, 0.04%)</title><rect x="24.4312%" y="549" width="0.0398%" height="15" fill="rgb(252,210,38)" fg:x="110394" fg:w="180"/><text x="24.6812%" y="559.50"></text></g><g><title>ParseGenerator::generate (227 samples, 0.05%)</title><rect x="24.4312%" y="709" width="0.0502%" height="15" fill="rgb(242,134,21)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="719.50"></text></g><g><title>Parse::Parse (227 samples, 0.05%)</title><rect x="24.4312%" y="693" width="0.0502%" height="15" fill="rgb(213,28,48)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="703.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.05%)</title><rect x="24.4312%" y="677" width="0.0502%" height="15" fill="rgb(250,196,2)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="687.50"></text></g><g><title>Parse::do_one_block (227 samples, 0.05%)</title><rect x="24.4312%" y="661" width="0.0502%" height="15" fill="rgb(227,5,17)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (227 samples, 0.05%)</title><rect x="24.4312%" y="645" width="0.0502%" height="15" fill="rgb(221,226,24)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="655.50"></text></g><g><title>Parse::do_call (227 samples, 0.05%)</title><rect x="24.4312%" y="629" width="0.0502%" height="15" fill="rgb(211,5,48)" fg:x="110394" fg:w="227"/><text x="24.6812%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (47 samples, 0.01%)</title><rect x="24.4710%" y="613" width="0.0104%" height="15" fill="rgb(219,150,6)" fg:x="110574" fg:w="47"/><text x="24.7210%" y="623.50"></text></g><g><title>ParseGenerator::generate (276 samples, 0.06%)</title><rect x="24.4310%" y="805" width="0.0611%" height="15" fill="rgb(251,46,16)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="815.50"></text></g><g><title>Parse::Parse (276 samples, 0.06%)</title><rect x="24.4310%" y="789" width="0.0611%" height="15" fill="rgb(220,204,40)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="799.50"></text></g><g><title>Parse::do_all_blocks (276 samples, 0.06%)</title><rect x="24.4310%" y="773" width="0.0611%" height="15" fill="rgb(211,85,2)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="783.50"></text></g><g><title>Parse::do_one_block (276 samples, 0.06%)</title><rect x="24.4310%" y="757" width="0.0611%" height="15" fill="rgb(229,17,7)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (276 samples, 0.06%)</title><rect x="24.4310%" y="741" width="0.0611%" height="15" fill="rgb(239,72,28)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="751.50"></text></g><g><title>Parse::do_call (276 samples, 0.06%)</title><rect x="24.4310%" y="725" width="0.0611%" height="15" fill="rgb(230,47,54)" fg:x="110393" fg:w="276"/><text x="24.6810%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (48 samples, 0.01%)</title><rect x="24.4814%" y="709" width="0.0106%" height="15" fill="rgb(214,50,8)" fg:x="110621" fg:w="48"/><text x="24.7314%" y="719.50"></text></g><g><title>ParseGenerator::generate (47 samples, 0.01%)</title><rect x="24.5086%" y="709" width="0.0104%" height="15" fill="rgb(216,198,43)" fg:x="110744" fg:w="47"/><text x="24.7586%" y="719.50"></text></g><g><title>Parse::Parse (47 samples, 0.01%)</title><rect x="24.5086%" y="693" width="0.0104%" height="15" fill="rgb(234,20,35)" fg:x="110744" fg:w="47"/><text x="24.7586%" y="703.50"></text></g><g><title>Thread::call_run (88 samples, 0.02%)</title><rect x="24.5058%" y="805" width="0.0195%" height="15" fill="rgb(254,45,19)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="815.50"></text></g><g><title>JavaThread::thread_main_inner (88 samples, 0.02%)</title><rect x="24.5058%" y="789" width="0.0195%" height="15" fill="rgb(219,14,44)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (88 samples, 0.02%)</title><rect x="24.5058%" y="773" width="0.0195%" height="15" fill="rgb(217,220,26)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (88 samples, 0.02%)</title><rect x="24.5058%" y="757" width="0.0195%" height="15" fill="rgb(213,158,28)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="767.50"></text></g><g><title>C2Compiler::compile_method (88 samples, 0.02%)</title><rect x="24.5058%" y="741" width="0.0195%" height="15" fill="rgb(252,51,52)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="751.50"></text></g><g><title>Compile::Compile (88 samples, 0.02%)</title><rect x="24.5058%" y="725" width="0.0195%" height="15" fill="rgb(246,89,16)" fg:x="110731" fg:w="88"/><text x="24.7558%" y="735.50"></text></g><g><title>_dl_update_slotinfo (81 samples, 0.02%)</title><rect x="24.5312%" y="805" width="0.0179%" height="15" fill="rgb(216,158,49)" fg:x="110846" fg:w="81"/><text x="24.7812%" y="815.50"></text></g><g><title>start_thread (98 samples, 0.02%)</title><rect x="24.5531%" y="805" width="0.0217%" height="15" fill="rgb(236,107,19)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="815.50"></text></g><g><title>thread_native_entry (98 samples, 0.02%)</title><rect x="24.5531%" y="789" width="0.0217%" height="15" fill="rgb(228,185,30)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="799.50"></text></g><g><title>Thread::call_run (98 samples, 0.02%)</title><rect x="24.5531%" y="773" width="0.0217%" height="15" fill="rgb(246,134,8)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (98 samples, 0.02%)</title><rect x="24.5531%" y="757" width="0.0217%" height="15" fill="rgb(214,143,50)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="767.50"></text></g><g><title>CompileBroker::compiler_thread_loop (98 samples, 0.02%)</title><rect x="24.5531%" y="741" width="0.0217%" height="15" fill="rgb(228,75,8)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="751.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (98 samples, 0.02%)</title><rect x="24.5531%" y="725" width="0.0217%" height="15" fill="rgb(207,175,4)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="735.50"></text></g><g><title>C2Compiler::compile_method (98 samples, 0.02%)</title><rect x="24.5531%" y="709" width="0.0217%" height="15" fill="rgb(205,108,24)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="719.50"></text></g><g><title>Compile::Compile (98 samples, 0.02%)</title><rect x="24.5531%" y="693" width="0.0217%" height="15" fill="rgb(244,120,49)" fg:x="110945" fg:w="98"/><text x="24.8031%" y="703.50"></text></g><g><title>[unknown] (91,201 samples, 20.18%)</title><rect x="4.3972%" y="821" width="20.1836%" height="15" fill="rgb(223,47,38)" fg:x="19869" fg:w="91201"/><text x="4.6472%" y="831.50">[unknown]</text></g><g><title>Dict::Insert (72 samples, 0.02%)</title><rect x="24.6155%" y="645" width="0.0159%" height="15" fill="rgb(229,179,11)" fg:x="111227" fg:w="72"/><text x="24.8655%" y="655.50"></text></g><g><title>Type::Initialize (90 samples, 0.02%)</title><rect x="24.6144%" y="661" width="0.0199%" height="15" fill="rgb(231,122,1)" fg:x="111222" fg:w="90"/><text x="24.8644%" y="671.50"></text></g><g><title>CompileWrapper::CompileWrapper (94 samples, 0.02%)</title><rect x="24.6140%" y="677" width="0.0208%" height="15" fill="rgb(245,119,9)" fg:x="111220" fg:w="94"/><text x="24.8640%" y="687.50"></text></g><g><title>Compile::identify_useful_nodes (223 samples, 0.05%)</title><rect x="24.6476%" y="661" width="0.0494%" height="15" fill="rgb(241,163,25)" fg:x="111372" fg:w="223"/><text x="24.8976%" y="671.50"></text></g><g><title>Compile::remove_useless_nodes (256 samples, 0.06%)</title><rect x="24.6970%" y="661" width="0.0567%" height="15" fill="rgb(217,214,3)" fg:x="111595" fg:w="256"/><text x="24.9470%" y="671.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (588 samples, 0.13%)</title><rect x="24.6385%" y="677" width="0.1301%" height="15" fill="rgb(240,86,28)" fg:x="111331" fg:w="588"/><text x="24.8885%" y="687.50"></text></g><g><title>C2Compiler::compile_method (876 samples, 0.19%)</title><rect x="24.5874%" y="709" width="0.1939%" height="15" fill="rgb(215,47,9)" fg:x="111100" fg:w="876"/><text x="24.8374%" y="719.50"></text></g><g><title>Compile::Compile (859 samples, 0.19%)</title><rect x="24.5912%" y="693" width="0.1901%" height="15" fill="rgb(252,25,45)" fg:x="111117" fg:w="859"/><text x="24.8412%" y="703.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,076 samples, 0.24%)</title><rect x="24.5857%" y="725" width="0.2381%" height="15" fill="rgb(251,164,9)" fg:x="111092" fg:w="1076"/><text x="24.8357%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (208 samples, 0.05%)</title><rect x="24.8481%" y="469" width="0.0460%" height="15" fill="rgb(233,194,0)" fg:x="112278" fg:w="208"/><text x="25.0981%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (202 samples, 0.04%)</title><rect x="24.8495%" y="453" width="0.0447%" height="15" fill="rgb(249,111,24)" fg:x="112284" fg:w="202"/><text x="25.0995%" y="463.50"></text></g><g><title>native_write_msr (202 samples, 0.04%)</title><rect x="24.8495%" y="437" width="0.0447%" height="15" fill="rgb(250,223,3)" fg:x="112284" fg:w="202"/><text x="25.0995%" y="447.50"></text></g><g><title>finish_task_switch (219 samples, 0.05%)</title><rect x="24.8466%" y="485" width="0.0485%" height="15" fill="rgb(236,178,37)" fg:x="112271" fg:w="219"/><text x="25.0966%" y="495.50"></text></g><g><title>futex_wait_queue_me (261 samples, 0.06%)</title><rect x="24.8406%" y="533" width="0.0578%" height="15" fill="rgb(241,158,50)" fg:x="112244" fg:w="261"/><text x="25.0906%" y="543.50"></text></g><g><title>schedule (250 samples, 0.06%)</title><rect x="24.8430%" y="517" width="0.0553%" height="15" fill="rgb(213,121,41)" fg:x="112255" fg:w="250"/><text x="25.0930%" y="527.50"></text></g><g><title>__schedule (248 samples, 0.05%)</title><rect x="24.8435%" y="501" width="0.0549%" height="15" fill="rgb(240,92,3)" fg:x="112257" fg:w="248"/><text x="25.0935%" y="511.50"></text></g><g><title>do_futex (274 samples, 0.06%)</title><rect x="24.8393%" y="565" width="0.0606%" height="15" fill="rgb(205,123,3)" fg:x="112238" fg:w="274"/><text x="25.0893%" y="575.50"></text></g><g><title>futex_wait (269 samples, 0.06%)</title><rect x="24.8404%" y="549" width="0.0595%" height="15" fill="rgb(205,97,47)" fg:x="112243" fg:w="269"/><text x="25.0904%" y="559.50"></text></g><g><title>do_syscall_64 (275 samples, 0.06%)</title><rect x="24.8393%" y="597" width="0.0609%" height="15" fill="rgb(247,152,14)" fg:x="112238" fg:w="275"/><text x="25.0893%" y="607.50"></text></g><g><title>__x64_sys_futex (275 samples, 0.06%)</title><rect x="24.8393%" y="581" width="0.0609%" height="15" fill="rgb(248,195,53)" fg:x="112238" fg:w="275"/><text x="25.0893%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (284 samples, 0.06%)</title><rect x="24.8393%" y="613" width="0.0629%" height="15" fill="rgb(226,201,16)" fg:x="112238" fg:w="284"/><text x="25.0893%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (290 samples, 0.06%)</title><rect x="24.8382%" y="661" width="0.0642%" height="15" fill="rgb(205,98,0)" fg:x="112233" fg:w="290"/><text x="25.0882%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (290 samples, 0.06%)</title><rect x="24.8382%" y="645" width="0.0642%" height="15" fill="rgb(214,191,48)" fg:x="112233" fg:w="290"/><text x="25.0882%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (288 samples, 0.06%)</title><rect x="24.8386%" y="629" width="0.0637%" height="15" fill="rgb(237,112,39)" fg:x="112235" fg:w="288"/><text x="25.0886%" y="639.50"></text></g><g><title>Monitor::IWait (333 samples, 0.07%)</title><rect x="24.8302%" y="693" width="0.0737%" height="15" fill="rgb(247,203,27)" fg:x="112197" fg:w="333"/><text x="25.0802%" y="703.50"></text></g><g><title>os::PlatformEvent::park (299 samples, 0.07%)</title><rect x="24.8377%" y="677" width="0.0662%" height="15" fill="rgb(235,124,28)" fg:x="112231" fg:w="299"/><text x="25.0877%" y="687.50"></text></g><g><title>Monitor::wait (350 samples, 0.08%)</title><rect x="24.8291%" y="709" width="0.0775%" height="15" fill="rgb(208,207,46)" fg:x="112192" fg:w="350"/><text x="25.0791%" y="719.50"></text></g><g><title>CompileQueue::get (411 samples, 0.09%)</title><rect x="24.8262%" y="725" width="0.0910%" height="15" fill="rgb(234,176,4)" fg:x="112179" fg:w="411"/><text x="25.0762%" y="735.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,503 samples, 0.33%)</title><rect x="24.5850%" y="741" width="0.3326%" height="15" fill="rgb(230,133,28)" fg:x="111089" fg:w="1503"/><text x="24.8350%" y="751.50"></text></g><g><title>Thread::call_run (1,506 samples, 0.33%)</title><rect x="24.5850%" y="773" width="0.3333%" height="15" fill="rgb(211,137,40)" fg:x="111089" fg:w="1506"/><text x="24.8350%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (1,506 samples, 0.33%)</title><rect x="24.5850%" y="757" width="0.3333%" height="15" fill="rgb(254,35,13)" fg:x="111089" fg:w="1506"/><text x="24.8350%" y="767.50"></text></g><g><title>__GI___clone (1,520 samples, 0.34%)</title><rect x="24.5823%" y="821" width="0.3364%" height="15" fill="rgb(225,49,51)" fg:x="111077" fg:w="1520"/><text x="24.8323%" y="831.50"></text></g><g><title>start_thread (1,508 samples, 0.33%)</title><rect x="24.5850%" y="805" width="0.3337%" height="15" fill="rgb(251,10,15)" fg:x="111089" fg:w="1508"/><text x="24.8350%" y="815.50"></text></g><g><title>thread_native_entry (1,508 samples, 0.33%)</title><rect x="24.5850%" y="789" width="0.3337%" height="15" fill="rgb(228,207,15)" fg:x="111089" fg:w="1508"/><text x="24.8350%" y="799.50"></text></g><g><title>asm_exc_page_fault (68 samples, 0.02%)</title><rect x="24.9227%" y="821" width="0.0150%" height="15" fill="rgb(241,99,19)" fg:x="112615" fg:w="68"/><text x="25.1727%" y="831.50"></text></g><g><title>C2_CompilerThre (97,923 samples, 21.67%)</title><rect x="3.2820%" y="837" width="21.6712%" height="15" fill="rgb(207,104,49)" fg:x="14830" fg:w="97923"/><text x="3.5320%" y="847.50">C2_CompilerThre</text></g><g><title>Unsafe_Park (46 samples, 0.01%)</title><rect x="24.9687%" y="805" width="0.0102%" height="15" fill="rgb(234,99,18)" fg:x="112823" fg:w="46"/><text x="25.2187%" y="815.50"></text></g><g><title>[perf-42779.map] (121 samples, 0.03%)</title><rect x="24.9539%" y="821" width="0.0268%" height="15" fill="rgb(213,191,49)" fg:x="112756" fg:w="121"/><text x="25.2039%" y="831.50"></text></g><g><title>new_sync_read (71 samples, 0.02%)</title><rect x="24.9814%" y="677" width="0.0157%" height="15" fill="rgb(210,226,19)" fg:x="112880" fg:w="71"/><text x="25.2314%" y="687.50"></text></g><g><title>pipe_read (71 samples, 0.02%)</title><rect x="24.9814%" y="661" width="0.0157%" height="15" fill="rgb(229,97,18)" fg:x="112880" fg:w="71"/><text x="25.2314%" y="671.50"></text></g><g><title>schedule (67 samples, 0.01%)</title><rect x="24.9822%" y="645" width="0.0148%" height="15" fill="rgb(211,167,15)" fg:x="112884" fg:w="67"/><text x="25.2322%" y="655.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="24.9825%" y="629" width="0.0146%" height="15" fill="rgb(210,169,34)" fg:x="112885" fg:w="66"/><text x="25.2325%" y="639.50"></text></g><g><title>finish_task_switch (65 samples, 0.01%)</title><rect x="24.9827%" y="613" width="0.0144%" height="15" fill="rgb(241,121,31)" fg:x="112886" fg:w="65"/><text x="25.2327%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (64 samples, 0.01%)</title><rect x="24.9829%" y="597" width="0.0142%" height="15" fill="rgb(232,40,11)" fg:x="112887" fg:w="64"/><text x="25.2329%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (62 samples, 0.01%)</title><rect x="24.9833%" y="581" width="0.0137%" height="15" fill="rgb(205,86,26)" fg:x="112889" fg:w="62"/><text x="25.2333%" y="591.50"></text></g><g><title>native_write_msr (62 samples, 0.01%)</title><rect x="24.9833%" y="565" width="0.0137%" height="15" fill="rgb(231,126,28)" fg:x="112889" fg:w="62"/><text x="25.2333%" y="575.50"></text></g><g><title>do_syscall_64 (73 samples, 0.02%)</title><rect x="24.9811%" y="725" width="0.0162%" height="15" fill="rgb(219,221,18)" fg:x="112879" fg:w="73"/><text x="25.2311%" y="735.50"></text></g><g><title>ksys_read (73 samples, 0.02%)</title><rect x="24.9811%" y="709" width="0.0162%" height="15" fill="rgb(211,40,0)" fg:x="112879" fg:w="73"/><text x="25.2311%" y="719.50"></text></g><g><title>vfs_read (73 samples, 0.02%)</title><rect x="24.9811%" y="693" width="0.0162%" height="15" fill="rgb(239,85,43)" fg:x="112879" fg:w="73"/><text x="25.2311%" y="703.50"></text></g><g><title>handleRead (74 samples, 0.02%)</title><rect x="24.9811%" y="789" width="0.0164%" height="15" fill="rgb(231,55,21)" fg:x="112879" fg:w="74"/><text x="25.2311%" y="799.50"></text></g><g><title>__libc_read (74 samples, 0.02%)</title><rect x="24.9811%" y="773" width="0.0164%" height="15" fill="rgb(225,184,43)" fg:x="112879" fg:w="74"/><text x="25.2311%" y="783.50"></text></g><g><title>__libc_read (74 samples, 0.02%)</title><rect x="24.9811%" y="757" width="0.0164%" height="15" fill="rgb(251,158,41)" fg:x="112879" fg:w="74"/><text x="25.2311%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.02%)</title><rect x="24.9811%" y="741" width="0.0164%" height="15" fill="rgb(234,159,37)" fg:x="112879" fg:w="74"/><text x="25.2311%" y="751.50"></text></g><g><title>[unknown] (77 samples, 0.02%)</title><rect x="24.9807%" y="821" width="0.0170%" height="15" fill="rgb(216,204,22)" fg:x="112877" fg:w="77"/><text x="25.2307%" y="831.50"></text></g><g><title>readBytes (76 samples, 0.02%)</title><rect x="24.9809%" y="805" width="0.0168%" height="15" fill="rgb(214,17,3)" fg:x="112878" fg:w="76"/><text x="25.2309%" y="815.50"></text></g><g><title>Command-Accumul (202 samples, 0.04%)</title><rect x="24.9532%" y="837" width="0.0447%" height="15" fill="rgb(212,111,17)" fg:x="112753" fg:w="202"/><text x="25.2032%" y="847.50"></text></g><g><title>[perf-42779.map] (52 samples, 0.01%)</title><rect x="25.0011%" y="821" width="0.0115%" height="15" fill="rgb(221,157,24)" fg:x="112969" fg:w="52"/><text x="25.2511%" y="831.50"></text></g><g><title>Finalizer (54 samples, 0.01%)</title><rect x="25.0008%" y="837" width="0.0120%" height="15" fill="rgb(252,16,13)" fg:x="112968" fg:w="54"/><text x="25.2508%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (220 samples, 0.05%)</title><rect x="25.1978%" y="581" width="0.0487%" height="15" fill="rgb(221,62,2)" fg:x="113858" fg:w="220"/><text x="25.4478%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (216 samples, 0.05%)</title><rect x="25.1987%" y="565" width="0.0478%" height="15" fill="rgb(247,87,22)" fg:x="113862" fg:w="216"/><text x="25.4487%" y="575.50"></text></g><g><title>native_write_msr (213 samples, 0.05%)</title><rect x="25.1993%" y="549" width="0.0471%" height="15" fill="rgb(215,73,9)" fg:x="113865" fg:w="213"/><text x="25.4493%" y="559.50"></text></g><g><title>finish_task_switch (231 samples, 0.05%)</title><rect x="25.1969%" y="597" width="0.0511%" height="15" fill="rgb(207,175,33)" fg:x="113854" fg:w="231"/><text x="25.4469%" y="607.50"></text></g><g><title>futex_wait_queue_me (344 samples, 0.08%)</title><rect x="25.1827%" y="645" width="0.0761%" height="15" fill="rgb(243,129,54)" fg:x="113790" fg:w="344"/><text x="25.4327%" y="655.50"></text></g><g><title>schedule (332 samples, 0.07%)</title><rect x="25.1854%" y="629" width="0.0735%" height="15" fill="rgb(227,119,45)" fg:x="113802" fg:w="332"/><text x="25.4354%" y="639.50"></text></g><g><title>__schedule (331 samples, 0.07%)</title><rect x="25.1856%" y="613" width="0.0733%" height="15" fill="rgb(205,109,36)" fg:x="113803" fg:w="331"/><text x="25.4356%" y="623.50"></text></g><g><title>do_futex (388 samples, 0.09%)</title><rect x="25.1799%" y="677" width="0.0859%" height="15" fill="rgb(205,6,39)" fg:x="113777" fg:w="388"/><text x="25.4299%" y="687.50"></text></g><g><title>futex_wait (384 samples, 0.08%)</title><rect x="25.1808%" y="661" width="0.0850%" height="15" fill="rgb(221,32,16)" fg:x="113781" fg:w="384"/><text x="25.4308%" y="671.50"></text></g><g><title>__x64_sys_futex (396 samples, 0.09%)</title><rect x="25.1794%" y="693" width="0.0876%" height="15" fill="rgb(228,144,50)" fg:x="113775" fg:w="396"/><text x="25.4294%" y="703.50"></text></g><g><title>do_syscall_64 (399 samples, 0.09%)</title><rect x="25.1790%" y="709" width="0.0883%" height="15" fill="rgb(229,201,53)" fg:x="113773" fg:w="399"/><text x="25.4290%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (419 samples, 0.09%)</title><rect x="25.1783%" y="725" width="0.0927%" height="15" fill="rgb(249,153,27)" fg:x="113770" fg:w="419"/><text x="25.4283%" y="735.50"></text></g><g><title>__pthread_cond_timedwait (442 samples, 0.10%)</title><rect x="25.1739%" y="773" width="0.0978%" height="15" fill="rgb(227,106,25)" fg:x="113750" fg:w="442"/><text x="25.4239%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (441 samples, 0.10%)</title><rect x="25.1741%" y="757" width="0.0976%" height="15" fill="rgb(230,65,29)" fg:x="113751" fg:w="441"/><text x="25.4241%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (432 samples, 0.10%)</title><rect x="25.1761%" y="741" width="0.0956%" height="15" fill="rgb(221,57,46)" fg:x="113760" fg:w="432"/><text x="25.4261%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="25.2786%" y="581" width="0.0148%" height="15" fill="rgb(229,161,17)" fg:x="114223" fg:w="67"/><text x="25.5286%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="25.2792%" y="565" width="0.0142%" height="15" fill="rgb(222,213,11)" fg:x="114226" fg:w="64"/><text x="25.5292%" y="575.50"></text></g><g><title>native_write_msr (64 samples, 0.01%)</title><rect x="25.2792%" y="549" width="0.0142%" height="15" fill="rgb(235,35,13)" fg:x="114226" fg:w="64"/><text x="25.5292%" y="559.50"></text></g><g><title>finish_task_switch (68 samples, 0.02%)</title><rect x="25.2786%" y="597" width="0.0150%" height="15" fill="rgb(233,158,34)" fg:x="114223" fg:w="68"/><text x="25.5286%" y="607.50"></text></g><g><title>futex_wait_queue_me (114 samples, 0.03%)</title><rect x="25.2741%" y="645" width="0.0252%" height="15" fill="rgb(215,151,48)" fg:x="114203" fg:w="114"/><text x="25.5241%" y="655.50"></text></g><g><title>schedule (114 samples, 0.03%)</title><rect x="25.2741%" y="629" width="0.0252%" height="15" fill="rgb(229,84,14)" fg:x="114203" fg:w="114"/><text x="25.5241%" y="639.50"></text></g><g><title>__schedule (112 samples, 0.02%)</title><rect x="25.2746%" y="613" width="0.0248%" height="15" fill="rgb(229,68,14)" fg:x="114205" fg:w="112"/><text x="25.5246%" y="623.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.03%)</title><rect x="25.2737%" y="693" width="0.0263%" height="15" fill="rgb(243,106,26)" fg:x="114201" fg:w="119"/><text x="25.5237%" y="703.50"></text></g><g><title>do_futex (117 samples, 0.03%)</title><rect x="25.2741%" y="677" width="0.0259%" height="15" fill="rgb(206,45,38)" fg:x="114203" fg:w="117"/><text x="25.5241%" y="687.50"></text></g><g><title>futex_wait (117 samples, 0.03%)</title><rect x="25.2741%" y="661" width="0.0259%" height="15" fill="rgb(226,6,15)" fg:x="114203" fg:w="117"/><text x="25.5241%" y="671.50"></text></g><g><title>do_syscall_64 (120 samples, 0.03%)</title><rect x="25.2737%" y="709" width="0.0266%" height="15" fill="rgb(232,22,54)" fg:x="114201" fg:w="120"/><text x="25.5237%" y="719.50"></text></g><g><title>__pthread_cond_wait (131 samples, 0.03%)</title><rect x="25.2717%" y="773" width="0.0290%" height="15" fill="rgb(229,222,32)" fg:x="114192" fg:w="131"/><text x="25.5217%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (131 samples, 0.03%)</title><rect x="25.2717%" y="757" width="0.0290%" height="15" fill="rgb(228,62,29)" fg:x="114192" fg:w="131"/><text x="25.5217%" y="767.50"></text></g><g><title>futex_wait_cancelable (128 samples, 0.03%)</title><rect x="25.2724%" y="741" width="0.0283%" height="15" fill="rgb(251,103,34)" fg:x="114195" fg:w="128"/><text x="25.5224%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (123 samples, 0.03%)</title><rect x="25.2735%" y="725" width="0.0272%" height="15" fill="rgb(233,12,30)" fg:x="114200" fg:w="123"/><text x="25.5235%" y="735.50"></text></g><g><title>Parker::park (653 samples, 0.14%)</title><rect x="25.1650%" y="789" width="0.1445%" height="15" fill="rgb(238,52,0)" fg:x="113710" fg:w="653"/><text x="25.4150%" y="799.50"></text></g><g><title>Unsafe_Park (672 samples, 0.15%)</title><rect x="25.1615%" y="805" width="0.1487%" height="15" fill="rgb(223,98,5)" fg:x="113694" fg:w="672"/><text x="25.4115%" y="815.50"></text></g><g><title>[perf-42779.map] (1,347 samples, 0.30%)</title><rect x="25.0150%" y="821" width="0.2981%" height="15" fill="rgb(228,75,37)" fg:x="113032" fg:w="1347"/><text x="25.2650%" y="831.50"></text></g><g><title>ForkJoinPool.co (1,403 samples, 0.31%)</title><rect x="25.0128%" y="837" width="0.3105%" height="15" fill="rgb(205,115,49)" fg:x="113022" fg:w="1403"/><text x="25.2628%" y="847.50"></text></g><g><title>__GI___clone (58 samples, 0.01%)</title><rect x="25.3235%" y="821" width="0.0128%" height="15" fill="rgb(250,154,43)" fg:x="114426" fg:w="58"/><text x="25.5735%" y="831.50"></text></g><g><title>start_thread (58 samples, 0.01%)</title><rect x="25.3235%" y="805" width="0.0128%" height="15" fill="rgb(226,43,29)" fg:x="114426" fg:w="58"/><text x="25.5735%" y="815.50"></text></g><g><title>thread_native_entry (58 samples, 0.01%)</title><rect x="25.3235%" y="789" width="0.0128%" height="15" fill="rgb(249,228,39)" fg:x="114426" fg:w="58"/><text x="25.5735%" y="799.50"></text></g><g><title>Thread::call_run (58 samples, 0.01%)</title><rect x="25.3235%" y="773" width="0.0128%" height="15" fill="rgb(216,79,43)" fg:x="114426" fg:w="58"/><text x="25.5735%" y="783.50"></text></g><g><title>GangWorker::loop (58 samples, 0.01%)</title><rect x="25.3235%" y="757" width="0.0128%" height="15" fill="rgb(228,95,12)" fg:x="114426" fg:w="58"/><text x="25.5735%" y="767.50"></text></g><g><title>G1_Conc#0 (61 samples, 0.01%)</title><rect x="25.3233%" y="837" width="0.0135%" height="15" fill="rgb(249,221,15)" fg:x="114425" fg:w="61"/><text x="25.5733%" y="847.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (55 samples, 0.01%)</title><rect x="25.3556%" y="693" width="0.0122%" height="15" fill="rgb(233,34,13)" fg:x="114571" fg:w="55"/><text x="25.6056%" y="703.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (151 samples, 0.03%)</title><rect x="25.3525%" y="725" width="0.0334%" height="15" fill="rgb(214,103,39)" fg:x="114557" fg:w="151"/><text x="25.6025%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (151 samples, 0.03%)</title><rect x="25.3525%" y="709" width="0.0334%" height="15" fill="rgb(251,126,39)" fg:x="114557" fg:w="151"/><text x="25.6025%" y="719.50"></text></g><g><title>G1_Refine#0 (180 samples, 0.04%)</title><rect x="25.3476%" y="837" width="0.0398%" height="15" fill="rgb(214,216,36)" fg:x="114535" fg:w="180"/><text x="25.5976%" y="847.50"></text></g><g><title>__GI___clone (161 samples, 0.04%)</title><rect x="25.3518%" y="821" width="0.0356%" height="15" fill="rgb(220,221,8)" fg:x="114554" fg:w="161"/><text x="25.6018%" y="831.50"></text></g><g><title>start_thread (160 samples, 0.04%)</title><rect x="25.3520%" y="805" width="0.0354%" height="15" fill="rgb(240,216,3)" fg:x="114555" fg:w="160"/><text x="25.6020%" y="815.50"></text></g><g><title>thread_native_entry (159 samples, 0.04%)</title><rect x="25.3523%" y="789" width="0.0352%" height="15" fill="rgb(232,218,17)" fg:x="114556" fg:w="159"/><text x="25.6023%" y="799.50"></text></g><g><title>Thread::call_run (159 samples, 0.04%)</title><rect x="25.3523%" y="773" width="0.0352%" height="15" fill="rgb(229,163,45)" fg:x="114556" fg:w="159"/><text x="25.6023%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (159 samples, 0.04%)</title><rect x="25.3523%" y="757" width="0.0352%" height="15" fill="rgb(231,110,42)" fg:x="114556" fg:w="159"/><text x="25.6023%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (159 samples, 0.04%)</title><rect x="25.3523%" y="741" width="0.0352%" height="15" fill="rgb(208,170,48)" fg:x="114556" fg:w="159"/><text x="25.6023%" y="751.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (61 samples, 0.01%)</title><rect x="25.3892%" y="725" width="0.0135%" height="15" fill="rgb(239,116,25)" fg:x="114723" fg:w="61"/><text x="25.6392%" y="735.50"></text></g><g><title>G1RemSet::refine_card_concurrently (61 samples, 0.01%)</title><rect x="25.3892%" y="709" width="0.0135%" height="15" fill="rgb(219,200,50)" fg:x="114723" fg:w="61"/><text x="25.6392%" y="719.50"></text></g><g><title>Thread::call_run (70 samples, 0.02%)</title><rect x="25.3892%" y="773" width="0.0155%" height="15" fill="rgb(245,200,0)" fg:x="114723" fg:w="70"/><text x="25.6392%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (70 samples, 0.02%)</title><rect x="25.3892%" y="757" width="0.0155%" height="15" fill="rgb(245,119,33)" fg:x="114723" fg:w="70"/><text x="25.6392%" y="767.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (70 samples, 0.02%)</title><rect x="25.3892%" y="741" width="0.0155%" height="15" fill="rgb(231,125,12)" fg:x="114723" fg:w="70"/><text x="25.6392%" y="751.50"></text></g><g><title>__GI___clone (77 samples, 0.02%)</title><rect x="25.3879%" y="821" width="0.0170%" height="15" fill="rgb(216,96,41)" fg:x="114717" fg:w="77"/><text x="25.6379%" y="831.50"></text></g><g><title>start_thread (71 samples, 0.02%)</title><rect x="25.3892%" y="805" width="0.0157%" height="15" fill="rgb(248,43,45)" fg:x="114723" fg:w="71"/><text x="25.6392%" y="815.50"></text></g><g><title>thread_native_entry (71 samples, 0.02%)</title><rect x="25.3892%" y="789" width="0.0157%" height="15" fill="rgb(217,222,7)" fg:x="114723" fg:w="71"/><text x="25.6392%" y="799.50"></text></g><g><title>G1_Refine#1 (80 samples, 0.02%)</title><rect x="25.3875%" y="837" width="0.0177%" height="15" fill="rgb(233,28,6)" fg:x="114715" fg:w="80"/><text x="25.6375%" y="847.50"></text></g><g><title>Monitor::wait (48 samples, 0.01%)</title><rect x="25.4224%" y="725" width="0.0106%" height="15" fill="rgb(231,218,15)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="735.50"></text></g><g><title>Monitor::IWait (48 samples, 0.01%)</title><rect x="25.4224%" y="709" width="0.0106%" height="15" fill="rgb(226,171,48)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="719.50"></text></g><g><title>os::PlatformEvent::park (48 samples, 0.01%)</title><rect x="25.4224%" y="693" width="0.0106%" height="15" fill="rgb(235,201,9)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="703.50"></text></g><g><title>__pthread_cond_timedwait (48 samples, 0.01%)</title><rect x="25.4224%" y="677" width="0.0106%" height="15" fill="rgb(217,80,15)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (48 samples, 0.01%)</title><rect x="25.4224%" y="661" width="0.0106%" height="15" fill="rgb(219,152,8)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (48 samples, 0.01%)</title><rect x="25.4224%" y="645" width="0.0106%" height="15" fill="rgb(243,107,38)" fg:x="114873" fg:w="48"/><text x="25.6724%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.01%)</title><rect x="25.4229%" y="629" width="0.0102%" height="15" fill="rgb(231,17,5)" fg:x="114875" fg:w="46"/><text x="25.6729%" y="639.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (82 samples, 0.02%)</title><rect x="25.4167%" y="741" width="0.0181%" height="15" fill="rgb(209,25,54)" fg:x="114847" fg:w="82"/><text x="25.6667%" y="751.50"></text></g><g><title>G1_Young_RemSet (85 samples, 0.02%)</title><rect x="25.4162%" y="837" width="0.0188%" height="15" fill="rgb(219,0,2)" fg:x="114845" fg:w="85"/><text x="25.6662%" y="847.50"></text></g><g><title>__GI___clone (84 samples, 0.02%)</title><rect x="25.4164%" y="821" width="0.0186%" height="15" fill="rgb(246,9,5)" fg:x="114846" fg:w="84"/><text x="25.6664%" y="831.50"></text></g><g><title>start_thread (84 samples, 0.02%)</title><rect x="25.4164%" y="805" width="0.0186%" height="15" fill="rgb(226,159,4)" fg:x="114846" fg:w="84"/><text x="25.6664%" y="815.50"></text></g><g><title>thread_native_entry (83 samples, 0.02%)</title><rect x="25.4167%" y="789" width="0.0184%" height="15" fill="rgb(219,175,34)" fg:x="114847" fg:w="83"/><text x="25.6667%" y="799.50"></text></g><g><title>Thread::call_run (83 samples, 0.02%)</title><rect x="25.4167%" y="773" width="0.0184%" height="15" fill="rgb(236,10,46)" fg:x="114847" fg:w="83"/><text x="25.6667%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (83 samples, 0.02%)</title><rect x="25.4167%" y="757" width="0.0184%" height="15" fill="rgb(240,211,16)" fg:x="114847" fg:w="83"/><text x="25.6667%" y="767.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (46 samples, 0.01%)</title><rect x="25.4882%" y="677" width="0.0102%" height="15" fill="rgb(205,3,43)" fg:x="115170" fg:w="46"/><text x="25.7382%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (158 samples, 0.03%)</title><rect x="25.4662%" y="693" width="0.0350%" height="15" fill="rgb(245,7,22)" fg:x="115071" fg:w="158"/><text x="25.7162%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (279 samples, 0.06%)</title><rect x="25.4419%" y="709" width="0.0617%" height="15" fill="rgb(239,132,32)" fg:x="114961" fg:w="279"/><text x="25.6919%" y="719.50"></text></g><g><title>SpinPause (134 samples, 0.03%)</title><rect x="25.5036%" y="709" width="0.0297%" height="15" fill="rgb(228,202,34)" fg:x="115240" fg:w="134"/><text x="25.7536%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (421 samples, 0.09%)</title><rect x="25.4410%" y="725" width="0.0932%" height="15" fill="rgb(254,200,22)" fg:x="114957" fg:w="421"/><text x="25.6910%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (157 samples, 0.03%)</title><rect x="25.5517%" y="613" width="0.0347%" height="15" fill="rgb(219,10,39)" fg:x="115457" fg:w="157"/><text x="25.8017%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (199 samples, 0.04%)</title><rect x="25.5426%" y="629" width="0.0440%" height="15" fill="rgb(226,210,39)" fg:x="115416" fg:w="199"/><text x="25.7926%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (251 samples, 0.06%)</title><rect x="25.5342%" y="645" width="0.0555%" height="15" fill="rgb(208,219,16)" fg:x="115378" fg:w="251"/><text x="25.7842%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (276 samples, 0.06%)</title><rect x="25.5342%" y="693" width="0.0611%" height="15" fill="rgb(216,158,51)" fg:x="115378" fg:w="276"/><text x="25.7842%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (276 samples, 0.06%)</title><rect x="25.5342%" y="677" width="0.0611%" height="15" fill="rgb(233,14,44)" fg:x="115378" fg:w="276"/><text x="25.7842%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (276 samples, 0.06%)</title><rect x="25.5342%" y="661" width="0.0611%" height="15" fill="rgb(237,97,39)" fg:x="115378" fg:w="276"/><text x="25.7842%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (278 samples, 0.06%)</title><rect x="25.5342%" y="725" width="0.0615%" height="15" fill="rgb(218,198,43)" fg:x="115378" fg:w="278"/><text x="25.7842%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (278 samples, 0.06%)</title><rect x="25.5342%" y="709" width="0.0615%" height="15" fill="rgb(231,104,20)" fg:x="115378" fg:w="278"/><text x="25.7842%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (67 samples, 0.01%)</title><rect x="25.5977%" y="629" width="0.0148%" height="15" fill="rgb(254,36,13)" fg:x="115665" fg:w="67"/><text x="25.8477%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.01%)</title><rect x="25.6010%" y="613" width="0.0115%" height="15" fill="rgb(248,14,50)" fg:x="115680" fg:w="52"/><text x="25.8510%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="25.5959%" y="645" width="0.0175%" height="15" fill="rgb(217,107,29)" fg:x="115657" fg:w="79"/><text x="25.8459%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (93 samples, 0.02%)</title><rect x="25.5959%" y="677" width="0.0206%" height="15" fill="rgb(251,169,33)" fg:x="115657" fg:w="93"/><text x="25.8459%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (93 samples, 0.02%)</title><rect x="25.5959%" y="661" width="0.0206%" height="15" fill="rgb(217,108,32)" fg:x="115657" fg:w="93"/><text x="25.8459%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (108 samples, 0.02%)</title><rect x="25.5957%" y="725" width="0.0239%" height="15" fill="rgb(219,66,42)" fg:x="115656" fg:w="108"/><text x="25.8457%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (108 samples, 0.02%)</title><rect x="25.5957%" y="709" width="0.0239%" height="15" fill="rgb(206,180,7)" fg:x="115656" fg:w="108"/><text x="25.8457%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (108 samples, 0.02%)</title><rect x="25.5957%" y="693" width="0.0239%" height="15" fill="rgb(208,226,31)" fg:x="115656" fg:w="108"/><text x="25.8457%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (51 samples, 0.01%)</title><rect x="25.6340%" y="613" width="0.0113%" height="15" fill="rgb(218,26,49)" fg:x="115829" fg:w="51"/><text x="25.8840%" y="623.50"></text></g><g><title>frame::oops_do_internal (55 samples, 0.01%)</title><rect x="25.6333%" y="645" width="0.0122%" height="15" fill="rgb(233,197,48)" fg:x="115826" fg:w="55"/><text x="25.8833%" y="655.50"></text></g><g><title>OopMapSet::oops_do (54 samples, 0.01%)</title><rect x="25.6336%" y="629" width="0.0120%" height="15" fill="rgb(252,181,51)" fg:x="115827" fg:w="54"/><text x="25.8836%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (114 samples, 0.03%)</title><rect x="25.6539%" y="597" width="0.0252%" height="15" fill="rgb(253,90,19)" fg:x="115919" fg:w="114"/><text x="25.9039%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.02%)</title><rect x="25.6594%" y="581" width="0.0197%" height="15" fill="rgb(215,171,30)" fg:x="115944" fg:w="89"/><text x="25.9094%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (173 samples, 0.04%)</title><rect x="25.6457%" y="629" width="0.0383%" height="15" fill="rgb(214,222,9)" fg:x="115882" fg:w="173"/><text x="25.8957%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (172 samples, 0.04%)</title><rect x="25.6459%" y="613" width="0.0381%" height="15" fill="rgb(223,3,22)" fg:x="115883" fg:w="172"/><text x="25.8959%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (180 samples, 0.04%)</title><rect x="25.6455%" y="645" width="0.0398%" height="15" fill="rgb(225,196,46)" fg:x="115881" fg:w="180"/><text x="25.8955%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (298 samples, 0.07%)</title><rect x="25.6198%" y="709" width="0.0660%" height="15" fill="rgb(209,110,37)" fg:x="115765" fg:w="298"/><text x="25.8698%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (273 samples, 0.06%)</title><rect x="25.6254%" y="693" width="0.0604%" height="15" fill="rgb(249,89,12)" fg:x="115790" fg:w="273"/><text x="25.8754%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (273 samples, 0.06%)</title><rect x="25.6254%" y="677" width="0.0604%" height="15" fill="rgb(226,27,33)" fg:x="115790" fg:w="273"/><text x="25.8754%" y="687.50"></text></g><g><title>JavaThread::oops_do (272 samples, 0.06%)</title><rect x="25.6256%" y="661" width="0.0602%" height="15" fill="rgb(213,82,22)" fg:x="115791" fg:w="272"/><text x="25.8756%" y="671.50"></text></g><g><title>G1ParTask::work (1,121 samples, 0.25%)</title><rect x="25.4408%" y="741" width="0.2481%" height="15" fill="rgb(248,140,0)" fg:x="114956" fg:w="1121"/><text x="25.6908%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (313 samples, 0.07%)</title><rect x="25.6196%" y="725" width="0.0693%" height="15" fill="rgb(228,106,3)" fg:x="115764" fg:w="313"/><text x="25.8696%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (47 samples, 0.01%)</title><rect x="25.6920%" y="709" width="0.0104%" height="15" fill="rgb(209,23,37)" fg:x="116091" fg:w="47"/><text x="25.9420%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (55 samples, 0.01%)</title><rect x="25.6920%" y="725" width="0.0122%" height="15" fill="rgb(241,93,50)" fg:x="116091" fg:w="55"/><text x="25.9420%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (134 samples, 0.03%)</title><rect x="25.6920%" y="741" width="0.0297%" height="15" fill="rgb(253,46,43)" fg:x="116091" fg:w="134"/><text x="25.9420%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (79 samples, 0.02%)</title><rect x="25.7041%" y="725" width="0.0175%" height="15" fill="rgb(226,206,43)" fg:x="116146" fg:w="79"/><text x="25.9541%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (79 samples, 0.02%)</title><rect x="25.7041%" y="709" width="0.0175%" height="15" fill="rgb(217,54,7)" fg:x="116146" fg:w="79"/><text x="25.9541%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (79 samples, 0.02%)</title><rect x="25.7041%" y="693" width="0.0175%" height="15" fill="rgb(223,5,52)" fg:x="116146" fg:w="79"/><text x="25.9541%" y="703.50"></text></g><g><title>SpinPause (78 samples, 0.02%)</title><rect x="25.7044%" y="677" width="0.0173%" height="15" fill="rgb(206,52,46)" fg:x="116147" fg:w="78"/><text x="25.9544%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (126 samples, 0.03%)</title><rect x="25.7334%" y="517" width="0.0279%" height="15" fill="rgb(253,136,11)" fg:x="116278" fg:w="126"/><text x="25.9834%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (123 samples, 0.03%)</title><rect x="25.7340%" y="501" width="0.0272%" height="15" fill="rgb(208,106,33)" fg:x="116281" fg:w="123"/><text x="25.9840%" y="511.50"></text></g><g><title>native_write_msr (123 samples, 0.03%)</title><rect x="25.7340%" y="485" width="0.0272%" height="15" fill="rgb(206,54,4)" fg:x="116281" fg:w="123"/><text x="25.9840%" y="495.50"></text></g><g><title>finish_task_switch (132 samples, 0.03%)</title><rect x="25.7331%" y="533" width="0.0292%" height="15" fill="rgb(213,3,15)" fg:x="116277" fg:w="132"/><text x="25.9831%" y="543.50"></text></g><g><title>do_syscall_64 (149 samples, 0.03%)</title><rect x="25.7307%" y="645" width="0.0330%" height="15" fill="rgb(252,211,39)" fg:x="116266" fg:w="149"/><text x="25.9807%" y="655.50"></text></g><g><title>__x64_sys_futex (148 samples, 0.03%)</title><rect x="25.7309%" y="629" width="0.0328%" height="15" fill="rgb(223,6,36)" fg:x="116267" fg:w="148"/><text x="25.9809%" y="639.50"></text></g><g><title>do_futex (148 samples, 0.03%)</title><rect x="25.7309%" y="613" width="0.0328%" height="15" fill="rgb(252,169,45)" fg:x="116267" fg:w="148"/><text x="25.9809%" y="623.50"></text></g><g><title>futex_wait (146 samples, 0.03%)</title><rect x="25.7314%" y="597" width="0.0323%" height="15" fill="rgb(212,48,26)" fg:x="116269" fg:w="146"/><text x="25.9814%" y="607.50"></text></g><g><title>futex_wait_queue_me (146 samples, 0.03%)</title><rect x="25.7314%" y="581" width="0.0323%" height="15" fill="rgb(251,102,48)" fg:x="116269" fg:w="146"/><text x="25.9814%" y="591.50"></text></g><g><title>schedule (145 samples, 0.03%)</title><rect x="25.7316%" y="565" width="0.0321%" height="15" fill="rgb(243,208,16)" fg:x="116270" fg:w="145"/><text x="25.9816%" y="575.50"></text></g><g><title>__schedule (145 samples, 0.03%)</title><rect x="25.7316%" y="549" width="0.0321%" height="15" fill="rgb(219,96,24)" fg:x="116270" fg:w="145"/><text x="25.9816%" y="559.50"></text></g><g><title>__GI___clone (1,464 samples, 0.32%)</title><rect x="25.4401%" y="821" width="0.3240%" height="15" fill="rgb(219,33,29)" fg:x="114953" fg:w="1464"/><text x="25.6901%" y="831.50"></text></g><g><title>start_thread (1,464 samples, 0.32%)</title><rect x="25.4401%" y="805" width="0.3240%" height="15" fill="rgb(223,176,5)" fg:x="114953" fg:w="1464"/><text x="25.6901%" y="815.50"></text></g><g><title>thread_native_entry (1,464 samples, 0.32%)</title><rect x="25.4401%" y="789" width="0.3240%" height="15" fill="rgb(228,140,14)" fg:x="114953" fg:w="1464"/><text x="25.6901%" y="799.50"></text></g><g><title>Thread::call_run (1,464 samples, 0.32%)</title><rect x="25.4401%" y="773" width="0.3240%" height="15" fill="rgb(217,179,31)" fg:x="114953" fg:w="1464"/><text x="25.6901%" y="783.50"></text></g><g><title>GangWorker::loop (1,464 samples, 0.32%)</title><rect x="25.4401%" y="757" width="0.3240%" height="15" fill="rgb(230,9,30)" fg:x="114953" fg:w="1464"/><text x="25.6901%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (153 samples, 0.03%)</title><rect x="25.7303%" y="741" width="0.0339%" height="15" fill="rgb(230,136,20)" fg:x="116264" fg:w="153"/><text x="25.9803%" y="751.50"></text></g><g><title>PosixSemaphore::wait (152 samples, 0.03%)</title><rect x="25.7305%" y="725" width="0.0336%" height="15" fill="rgb(215,210,22)" fg:x="116265" fg:w="152"/><text x="25.9805%" y="735.50"></text></g><g><title>__new_sem_wait_slow (152 samples, 0.03%)</title><rect x="25.7305%" y="709" width="0.0336%" height="15" fill="rgb(218,43,5)" fg:x="116265" fg:w="152"/><text x="25.9805%" y="719.50"></text></g><g><title>do_futex_wait (152 samples, 0.03%)</title><rect x="25.7305%" y="693" width="0.0336%" height="15" fill="rgb(216,11,5)" fg:x="116265" fg:w="152"/><text x="25.9805%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (152 samples, 0.03%)</title><rect x="25.7305%" y="677" width="0.0336%" height="15" fill="rgb(209,82,29)" fg:x="116265" fg:w="152"/><text x="25.9805%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (151 samples, 0.03%)</title><rect x="25.7307%" y="661" width="0.0334%" height="15" fill="rgb(244,115,12)" fg:x="116266" fg:w="151"/><text x="25.9807%" y="671.50"></text></g><g><title>GC_Thread#0 (1,494 samples, 0.33%)</title><rect x="25.4350%" y="837" width="0.3306%" height="15" fill="rgb(222,82,18)" fg:x="114930" fg:w="1494"/><text x="25.6850%" y="847.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (156 samples, 0.03%)</title><rect x="25.8037%" y="693" width="0.0345%" height="15" fill="rgb(249,227,8)" fg:x="116596" fg:w="156"/><text x="26.0537%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (292 samples, 0.06%)</title><rect x="25.7752%" y="709" width="0.0646%" height="15" fill="rgb(253,141,45)" fg:x="116467" fg:w="292"/><text x="26.0252%" y="719.50"></text></g><g><title>SpinPause (115 samples, 0.03%)</title><rect x="25.8407%" y="709" width="0.0255%" height="15" fill="rgb(234,184,4)" fg:x="116763" fg:w="115"/><text x="26.0907%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (420 samples, 0.09%)</title><rect x="25.7743%" y="725" width="0.0929%" height="15" fill="rgb(218,194,23)" fg:x="116463" fg:w="420"/><text x="26.0243%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (149 samples, 0.03%)</title><rect x="25.8737%" y="629" width="0.0330%" height="15" fill="rgb(235,66,41)" fg:x="116912" fg:w="149"/><text x="26.1237%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (110 samples, 0.02%)</title><rect x="25.8823%" y="613" width="0.0243%" height="15" fill="rgb(245,217,1)" fg:x="116951" fg:w="110"/><text x="26.1323%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (185 samples, 0.04%)</title><rect x="25.8673%" y="645" width="0.0409%" height="15" fill="rgb(229,91,1)" fg:x="116883" fg:w="185"/><text x="26.1173%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (222 samples, 0.05%)</title><rect x="25.8673%" y="725" width="0.0491%" height="15" fill="rgb(207,101,30)" fg:x="116883" fg:w="222"/><text x="26.1173%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (222 samples, 0.05%)</title><rect x="25.8673%" y="709" width="0.0491%" height="15" fill="rgb(223,82,49)" fg:x="116883" fg:w="222"/><text x="26.1173%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (222 samples, 0.05%)</title><rect x="25.8673%" y="693" width="0.0491%" height="15" fill="rgb(218,167,17)" fg:x="116883" fg:w="222"/><text x="26.1173%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (222 samples, 0.05%)</title><rect x="25.8673%" y="677" width="0.0491%" height="15" fill="rgb(208,103,14)" fg:x="116883" fg:w="222"/><text x="26.1173%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (222 samples, 0.05%)</title><rect x="25.8673%" y="661" width="0.0491%" height="15" fill="rgb(238,20,8)" fg:x="116883" fg:w="222"/><text x="26.1173%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (53 samples, 0.01%)</title><rect x="25.9186%" y="629" width="0.0117%" height="15" fill="rgb(218,80,54)" fg:x="117115" fg:w="53"/><text x="26.1686%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (66 samples, 0.01%)</title><rect x="25.9164%" y="645" width="0.0146%" height="15" fill="rgb(240,144,17)" fg:x="117105" fg:w="66"/><text x="26.1664%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (94 samples, 0.02%)</title><rect x="25.9164%" y="661" width="0.0208%" height="15" fill="rgb(245,27,50)" fg:x="117105" fg:w="94"/><text x="26.1664%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (100 samples, 0.02%)</title><rect x="25.9164%" y="677" width="0.0221%" height="15" fill="rgb(251,51,7)" fg:x="117105" fg:w="100"/><text x="26.1664%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (102 samples, 0.02%)</title><rect x="25.9164%" y="725" width="0.0226%" height="15" fill="rgb(245,217,29)" fg:x="117105" fg:w="102"/><text x="26.1664%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (102 samples, 0.02%)</title><rect x="25.9164%" y="709" width="0.0226%" height="15" fill="rgb(221,176,29)" fg:x="117105" fg:w="102"/><text x="26.1664%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (102 samples, 0.02%)</title><rect x="25.9164%" y="693" width="0.0226%" height="15" fill="rgb(212,180,24)" fg:x="117105" fg:w="102"/><text x="26.1664%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (60 samples, 0.01%)</title><rect x="25.9518%" y="629" width="0.0133%" height="15" fill="rgb(254,24,2)" fg:x="117265" fg:w="60"/><text x="26.2018%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (48 samples, 0.01%)</title><rect x="25.9545%" y="613" width="0.0106%" height="15" fill="rgb(230,100,2)" fg:x="117277" fg:w="48"/><text x="26.2045%" y="623.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (104 samples, 0.02%)</title><rect x="25.9425%" y="693" width="0.0230%" height="15" fill="rgb(219,142,25)" fg:x="117223" fg:w="104"/><text x="26.1925%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (100 samples, 0.02%)</title><rect x="25.9434%" y="677" width="0.0221%" height="15" fill="rgb(240,73,43)" fg:x="117227" fg:w="100"/><text x="26.1934%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (100 samples, 0.02%)</title><rect x="25.9434%" y="661" width="0.0221%" height="15" fill="rgb(214,114,15)" fg:x="117227" fg:w="100"/><text x="26.1934%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (82 samples, 0.02%)</title><rect x="25.9474%" y="645" width="0.0181%" height="15" fill="rgb(207,130,4)" fg:x="117245" fg:w="82"/><text x="26.1974%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (58 samples, 0.01%)</title><rect x="25.9733%" y="597" width="0.0128%" height="15" fill="rgb(221,25,40)" fg:x="117362" fg:w="58"/><text x="26.2233%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (80 samples, 0.02%)</title><rect x="25.9691%" y="629" width="0.0177%" height="15" fill="rgb(241,184,7)" fg:x="117343" fg:w="80"/><text x="26.2191%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (79 samples, 0.02%)</title><rect x="25.9693%" y="613" width="0.0175%" height="15" fill="rgb(235,159,4)" fg:x="117344" fg:w="79"/><text x="26.2193%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (82 samples, 0.02%)</title><rect x="25.9691%" y="645" width="0.0181%" height="15" fill="rgb(214,87,48)" fg:x="117343" fg:w="82"/><text x="26.2191%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (204 samples, 0.05%)</title><rect x="25.9425%" y="709" width="0.0451%" height="15" fill="rgb(246,198,24)" fg:x="117223" fg:w="204"/><text x="26.1925%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (100 samples, 0.02%)</title><rect x="25.9655%" y="693" width="0.0221%" height="15" fill="rgb(209,66,40)" fg:x="117327" fg:w="100"/><text x="26.2155%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (100 samples, 0.02%)</title><rect x="25.9655%" y="677" width="0.0221%" height="15" fill="rgb(233,147,39)" fg:x="117327" fg:w="100"/><text x="26.2155%" y="687.50"></text></g><g><title>JavaThread::oops_do (100 samples, 0.02%)</title><rect x="25.9655%" y="661" width="0.0221%" height="15" fill="rgb(231,145,52)" fg:x="117327" fg:w="100"/><text x="26.2155%" y="671.50"></text></g><g><title>G1ParTask::work (984 samples, 0.22%)</title><rect x="25.7743%" y="741" width="0.2178%" height="15" fill="rgb(206,20,26)" fg:x="116463" fg:w="984"/><text x="26.0243%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (240 samples, 0.05%)</title><rect x="25.9390%" y="725" width="0.0531%" height="15" fill="rgb(238,220,4)" fg:x="117207" fg:w="240"/><text x="26.1890%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (63 samples, 0.01%)</title><rect x="25.9949%" y="709" width="0.0139%" height="15" fill="rgb(252,195,42)" fg:x="117460" fg:w="63"/><text x="26.2449%" y="719.50"></text></g><g><title>SpinPause (57 samples, 0.01%)</title><rect x="25.9963%" y="693" width="0.0126%" height="15" fill="rgb(209,10,6)" fg:x="117466" fg:w="57"/><text x="26.2463%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (70 samples, 0.02%)</title><rect x="25.9949%" y="725" width="0.0155%" height="15" fill="rgb(229,3,52)" fg:x="117460" fg:w="70"/><text x="26.2449%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (135 samples, 0.03%)</title><rect x="25.9949%" y="741" width="0.0299%" height="15" fill="rgb(253,49,37)" fg:x="117460" fg:w="135"/><text x="26.2449%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (65 samples, 0.01%)</title><rect x="26.0104%" y="725" width="0.0144%" height="15" fill="rgb(240,103,49)" fg:x="117530" fg:w="65"/><text x="26.2604%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (64 samples, 0.01%)</title><rect x="26.0107%" y="709" width="0.0142%" height="15" fill="rgb(250,182,30)" fg:x="117531" fg:w="64"/><text x="26.2607%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.01%)</title><rect x="26.0107%" y="693" width="0.0142%" height="15" fill="rgb(248,8,30)" fg:x="117531" fg:w="64"/><text x="26.2607%" y="703.50"></text></g><g><title>SpinPause (61 samples, 0.01%)</title><rect x="26.0113%" y="677" width="0.0135%" height="15" fill="rgb(237,120,30)" fg:x="117534" fg:w="61"/><text x="26.2613%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.03%)</title><rect x="26.0370%" y="517" width="0.0259%" height="15" fill="rgb(221,146,34)" fg:x="117650" fg:w="117"/><text x="26.2870%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (117 samples, 0.03%)</title><rect x="26.0370%" y="501" width="0.0259%" height="15" fill="rgb(242,55,13)" fg:x="117650" fg:w="117"/><text x="26.2870%" y="511.50"></text></g><g><title>native_write_msr (117 samples, 0.03%)</title><rect x="26.0370%" y="485" width="0.0259%" height="15" fill="rgb(242,112,31)" fg:x="117650" fg:w="117"/><text x="26.2870%" y="495.50"></text></g><g><title>finish_task_switch (123 samples, 0.03%)</title><rect x="26.0366%" y="533" width="0.0272%" height="15" fill="rgb(249,192,27)" fg:x="117648" fg:w="123"/><text x="26.2866%" y="543.50"></text></g><g><title>futex_wait_queue_me (137 samples, 0.03%)</title><rect x="26.0346%" y="581" width="0.0303%" height="15" fill="rgb(208,204,44)" fg:x="117639" fg:w="137"/><text x="26.2846%" y="591.50"></text></g><g><title>schedule (135 samples, 0.03%)</title><rect x="26.0350%" y="565" width="0.0299%" height="15" fill="rgb(208,93,54)" fg:x="117641" fg:w="135"/><text x="26.2850%" y="575.50"></text></g><g><title>__schedule (135 samples, 0.03%)</title><rect x="26.0350%" y="549" width="0.0299%" height="15" fill="rgb(242,1,31)" fg:x="117641" fg:w="135"/><text x="26.2850%" y="559.50"></text></g><g><title>do_syscall_64 (139 samples, 0.03%)</title><rect x="26.0343%" y="645" width="0.0308%" height="15" fill="rgb(241,83,25)" fg:x="117638" fg:w="139"/><text x="26.2843%" y="655.50"></text></g><g><title>__x64_sys_futex (139 samples, 0.03%)</title><rect x="26.0343%" y="629" width="0.0308%" height="15" fill="rgb(205,169,50)" fg:x="117638" fg:w="139"/><text x="26.2843%" y="639.50"></text></g><g><title>do_futex (139 samples, 0.03%)</title><rect x="26.0343%" y="613" width="0.0308%" height="15" fill="rgb(239,186,37)" fg:x="117638" fg:w="139"/><text x="26.2843%" y="623.50"></text></g><g><title>futex_wait (138 samples, 0.03%)</title><rect x="26.0346%" y="597" width="0.0305%" height="15" fill="rgb(205,221,10)" fg:x="117639" fg:w="138"/><text x="26.2846%" y="607.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (145 samples, 0.03%)</title><rect x="26.0343%" y="741" width="0.0321%" height="15" fill="rgb(218,196,15)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="751.50"></text></g><g><title>PosixSemaphore::wait (145 samples, 0.03%)</title><rect x="26.0343%" y="725" width="0.0321%" height="15" fill="rgb(218,196,35)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="735.50"></text></g><g><title>__new_sem_wait_slow (145 samples, 0.03%)</title><rect x="26.0343%" y="709" width="0.0321%" height="15" fill="rgb(233,63,24)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="719.50"></text></g><g><title>do_futex_wait (145 samples, 0.03%)</title><rect x="26.0343%" y="693" width="0.0321%" height="15" fill="rgb(225,8,4)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (145 samples, 0.03%)</title><rect x="26.0343%" y="677" width="0.0321%" height="15" fill="rgb(234,105,35)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (145 samples, 0.03%)</title><rect x="26.0343%" y="661" width="0.0321%" height="15" fill="rgb(236,21,32)" fg:x="117638" fg:w="145"/><text x="26.2843%" y="671.50"></text></g><g><title>__GI___clone (1,341 samples, 0.30%)</title><rect x="25.7699%" y="821" width="0.2968%" height="15" fill="rgb(228,109,6)" fg:x="116443" fg:w="1341"/><text x="26.0199%" y="831.50"></text></g><g><title>start_thread (1,341 samples, 0.30%)</title><rect x="25.7699%" y="805" width="0.2968%" height="15" fill="rgb(229,215,31)" fg:x="116443" fg:w="1341"/><text x="26.0199%" y="815.50"></text></g><g><title>thread_native_entry (1,341 samples, 0.30%)</title><rect x="25.7699%" y="789" width="0.2968%" height="15" fill="rgb(221,52,54)" fg:x="116443" fg:w="1341"/><text x="26.0199%" y="799.50"></text></g><g><title>Thread::call_run (1,341 samples, 0.30%)</title><rect x="25.7699%" y="773" width="0.2968%" height="15" fill="rgb(252,129,43)" fg:x="116443" fg:w="1341"/><text x="26.0199%" y="783.50"></text></g><g><title>GangWorker::loop (1,341 samples, 0.30%)</title><rect x="25.7699%" y="757" width="0.2968%" height="15" fill="rgb(248,183,27)" fg:x="116443" fg:w="1341"/><text x="26.0199%" y="767.50"></text></g><g><title>GC_Thread#1 (1,364 samples, 0.30%)</title><rect x="25.7657%" y="837" width="0.3019%" height="15" fill="rgb(250,0,22)" fg:x="116424" fg:w="1364"/><text x="26.0157%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (75 samples, 0.02%)</title><rect x="26.1370%" y="677" width="0.0166%" height="15" fill="rgb(213,166,10)" fg:x="118102" fg:w="75"/><text x="26.3870%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (228 samples, 0.05%)</title><rect x="26.1111%" y="693" width="0.0505%" height="15" fill="rgb(207,163,36)" fg:x="117985" fg:w="228"/><text x="26.3611%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (378 samples, 0.08%)</title><rect x="26.0793%" y="709" width="0.0837%" height="15" fill="rgb(208,122,22)" fg:x="117841" fg:w="378"/><text x="26.3293%" y="719.50"></text></g><g><title>SpinPause (94 samples, 0.02%)</title><rect x="26.1636%" y="709" width="0.0208%" height="15" fill="rgb(207,104,49)" fg:x="118222" fg:w="94"/><text x="26.4136%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (490 samples, 0.11%)</title><rect x="26.0768%" y="725" width="0.1084%" height="15" fill="rgb(248,211,50)" fg:x="117830" fg:w="490"/><text x="26.3268%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (101 samples, 0.02%)</title><rect x="26.1886%" y="629" width="0.0224%" height="15" fill="rgb(217,13,45)" fg:x="118335" fg:w="101"/><text x="26.4386%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (73 samples, 0.02%)</title><rect x="26.1948%" y="613" width="0.0162%" height="15" fill="rgb(211,216,49)" fg:x="118363" fg:w="73"/><text x="26.4448%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (128 samples, 0.03%)</title><rect x="26.1855%" y="645" width="0.0283%" height="15" fill="rgb(221,58,53)" fg:x="118321" fg:w="128"/><text x="26.4355%" y="655.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (147 samples, 0.03%)</title><rect x="26.1855%" y="693" width="0.0325%" height="15" fill="rgb(220,112,41)" fg:x="118321" fg:w="147"/><text x="26.4355%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (147 samples, 0.03%)</title><rect x="26.1855%" y="677" width="0.0325%" height="15" fill="rgb(236,38,28)" fg:x="118321" fg:w="147"/><text x="26.4355%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (147 samples, 0.03%)</title><rect x="26.1855%" y="661" width="0.0325%" height="15" fill="rgb(227,195,22)" fg:x="118321" fg:w="147"/><text x="26.4355%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (148 samples, 0.03%)</title><rect x="26.1855%" y="725" width="0.0328%" height="15" fill="rgb(214,55,33)" fg:x="118321" fg:w="148"/><text x="26.4355%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (148 samples, 0.03%)</title><rect x="26.1855%" y="709" width="0.0328%" height="15" fill="rgb(248,80,13)" fg:x="118321" fg:w="148"/><text x="26.4355%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (58 samples, 0.01%)</title><rect x="26.2233%" y="629" width="0.0128%" height="15" fill="rgb(238,52,6)" fg:x="118492" fg:w="58"/><text x="26.4733%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (83 samples, 0.02%)</title><rect x="26.2194%" y="645" width="0.0184%" height="15" fill="rgb(224,198,47)" fg:x="118474" fg:w="83"/><text x="26.4694%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (116 samples, 0.03%)</title><rect x="26.2191%" y="661" width="0.0257%" height="15" fill="rgb(233,171,20)" fg:x="118473" fg:w="116"/><text x="26.4691%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (121 samples, 0.03%)</title><rect x="26.2189%" y="677" width="0.0268%" height="15" fill="rgb(241,30,25)" fg:x="118472" fg:w="121"/><text x="26.4689%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (140 samples, 0.03%)</title><rect x="26.2183%" y="725" width="0.0310%" height="15" fill="rgb(207,171,38)" fg:x="118469" fg:w="140"/><text x="26.4683%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (140 samples, 0.03%)</title><rect x="26.2183%" y="709" width="0.0310%" height="15" fill="rgb(234,70,1)" fg:x="118469" fg:w="140"/><text x="26.4683%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (139 samples, 0.03%)</title><rect x="26.2185%" y="693" width="0.0308%" height="15" fill="rgb(232,178,18)" fg:x="118470" fg:w="139"/><text x="26.4685%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (80 samples, 0.02%)</title><rect x="26.2802%" y="581" width="0.0177%" height="15" fill="rgb(241,78,40)" fg:x="118749" fg:w="80"/><text x="26.5302%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (116 samples, 0.03%)</title><rect x="26.2725%" y="597" width="0.0257%" height="15" fill="rgb(222,35,25)" fg:x="118714" fg:w="116"/><text x="26.5225%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (155 samples, 0.03%)</title><rect x="26.2656%" y="629" width="0.0343%" height="15" fill="rgb(207,92,16)" fg:x="118683" fg:w="155"/><text x="26.5156%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (153 samples, 0.03%)</title><rect x="26.2661%" y="613" width="0.0339%" height="15" fill="rgb(216,59,51)" fg:x="118685" fg:w="153"/><text x="26.5161%" y="623.50"></text></g><g><title>frame::oops_interpreted_do (170 samples, 0.04%)</title><rect x="26.2630%" y="645" width="0.0376%" height="15" fill="rgb(213,80,28)" fg:x="118671" fg:w="170"/><text x="26.5130%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (232 samples, 0.05%)</title><rect x="26.2495%" y="709" width="0.0513%" height="15" fill="rgb(220,93,7)" fg:x="118610" fg:w="232"/><text x="26.4995%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (207 samples, 0.05%)</title><rect x="26.2550%" y="693" width="0.0458%" height="15" fill="rgb(225,24,44)" fg:x="118635" fg:w="207"/><text x="26.5050%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (207 samples, 0.05%)</title><rect x="26.2550%" y="677" width="0.0458%" height="15" fill="rgb(243,74,40)" fg:x="118635" fg:w="207"/><text x="26.5050%" y="687.50"></text></g><g><title>JavaThread::oops_do (207 samples, 0.05%)</title><rect x="26.2550%" y="661" width="0.0458%" height="15" fill="rgb(228,39,7)" fg:x="118635" fg:w="207"/><text x="26.5050%" y="671.50"></text></g><g><title>G1ParTask::work (1,040 samples, 0.23%)</title><rect x="26.0768%" y="741" width="0.2302%" height="15" fill="rgb(227,79,8)" fg:x="117830" fg:w="1040"/><text x="26.3268%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (261 samples, 0.06%)</title><rect x="26.2492%" y="725" width="0.0578%" height="15" fill="rgb(236,58,11)" fg:x="118609" fg:w="261"/><text x="26.4992%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (66 samples, 0.01%)</title><rect x="26.3088%" y="709" width="0.0146%" height="15" fill="rgb(249,63,35)" fg:x="118878" fg:w="66"/><text x="26.5588%" y="719.50"></text></g><g><title>SpinPause (53 samples, 0.01%)</title><rect x="26.3116%" y="693" width="0.0117%" height="15" fill="rgb(252,114,16)" fg:x="118891" fg:w="53"/><text x="26.5616%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (73 samples, 0.02%)</title><rect x="26.3088%" y="725" width="0.0162%" height="15" fill="rgb(254,151,24)" fg:x="118878" fg:w="73"/><text x="26.5588%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (141 samples, 0.03%)</title><rect x="26.3088%" y="741" width="0.0312%" height="15" fill="rgb(253,54,39)" fg:x="118878" fg:w="141"/><text x="26.5588%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (68 samples, 0.02%)</title><rect x="26.3249%" y="725" width="0.0150%" height="15" fill="rgb(243,25,45)" fg:x="118951" fg:w="68"/><text x="26.5749%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (68 samples, 0.02%)</title><rect x="26.3249%" y="709" width="0.0150%" height="15" fill="rgb(234,134,9)" fg:x="118951" fg:w="68"/><text x="26.5749%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (68 samples, 0.02%)</title><rect x="26.3249%" y="693" width="0.0150%" height="15" fill="rgb(227,166,31)" fg:x="118951" fg:w="68"/><text x="26.5749%" y="703.50"></text></g><g><title>SpinPause (64 samples, 0.01%)</title><rect x="26.3258%" y="677" width="0.0142%" height="15" fill="rgb(245,143,41)" fg:x="118955" fg:w="64"/><text x="26.5758%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.03%)</title><rect x="26.3515%" y="517" width="0.0308%" height="15" fill="rgb(238,181,32)" fg:x="119071" fg:w="139"/><text x="26.6015%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (138 samples, 0.03%)</title><rect x="26.3517%" y="501" width="0.0305%" height="15" fill="rgb(224,113,18)" fg:x="119072" fg:w="138"/><text x="26.6017%" y="511.50"></text></g><g><title>native_write_msr (135 samples, 0.03%)</title><rect x="26.3524%" y="485" width="0.0299%" height="15" fill="rgb(240,229,28)" fg:x="119075" fg:w="135"/><text x="26.6024%" y="495.50"></text></g><g><title>finish_task_switch (148 samples, 0.03%)</title><rect x="26.3510%" y="533" width="0.0328%" height="15" fill="rgb(250,185,3)" fg:x="119069" fg:w="148"/><text x="26.6010%" y="543.50"></text></g><g><title>futex_wait_queue_me (162 samples, 0.04%)</title><rect x="26.3493%" y="581" width="0.0359%" height="15" fill="rgb(212,59,25)" fg:x="119061" fg:w="162"/><text x="26.5993%" y="591.50"></text></g><g><title>schedule (160 samples, 0.04%)</title><rect x="26.3497%" y="565" width="0.0354%" height="15" fill="rgb(221,87,20)" fg:x="119063" fg:w="160"/><text x="26.5997%" y="575.50"></text></g><g><title>__schedule (160 samples, 0.04%)</title><rect x="26.3497%" y="549" width="0.0354%" height="15" fill="rgb(213,74,28)" fg:x="119063" fg:w="160"/><text x="26.5997%" y="559.50"></text></g><g><title>do_syscall_64 (167 samples, 0.04%)</title><rect x="26.3484%" y="645" width="0.0370%" height="15" fill="rgb(224,132,34)" fg:x="119057" fg:w="167"/><text x="26.5984%" y="655.50"></text></g><g><title>__x64_sys_futex (166 samples, 0.04%)</title><rect x="26.3486%" y="629" width="0.0367%" height="15" fill="rgb(222,101,24)" fg:x="119058" fg:w="166"/><text x="26.5986%" y="639.50"></text></g><g><title>do_futex (165 samples, 0.04%)</title><rect x="26.3488%" y="613" width="0.0365%" height="15" fill="rgb(254,142,4)" fg:x="119059" fg:w="165"/><text x="26.5988%" y="623.50"></text></g><g><title>futex_wait (164 samples, 0.04%)</title><rect x="26.3490%" y="597" width="0.0363%" height="15" fill="rgb(230,229,49)" fg:x="119060" fg:w="164"/><text x="26.5990%" y="607.50"></text></g><g><title>__GI___clone (1,409 samples, 0.31%)</title><rect x="26.0740%" y="821" width="0.3118%" height="15" fill="rgb(238,70,47)" fg:x="117817" fg:w="1409"/><text x="26.3240%" y="831.50"></text></g><g><title>start_thread (1,409 samples, 0.31%)</title><rect x="26.0740%" y="805" width="0.3118%" height="15" fill="rgb(231,160,17)" fg:x="117817" fg:w="1409"/><text x="26.3240%" y="815.50"></text></g><g><title>thread_native_entry (1,409 samples, 0.31%)</title><rect x="26.0740%" y="789" width="0.3118%" height="15" fill="rgb(218,68,53)" fg:x="117817" fg:w="1409"/><text x="26.3240%" y="799.50"></text></g><g><title>Thread::call_run (1,409 samples, 0.31%)</title><rect x="26.0740%" y="773" width="0.3118%" height="15" fill="rgb(236,111,10)" fg:x="117817" fg:w="1409"/><text x="26.3240%" y="783.50"></text></g><g><title>GangWorker::loop (1,409 samples, 0.31%)</title><rect x="26.0740%" y="757" width="0.3118%" height="15" fill="rgb(224,34,41)" fg:x="117817" fg:w="1409"/><text x="26.3240%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (172 samples, 0.04%)</title><rect x="26.3477%" y="741" width="0.0381%" height="15" fill="rgb(241,118,19)" fg:x="119054" fg:w="172"/><text x="26.5977%" y="751.50"></text></g><g><title>PosixSemaphore::wait (172 samples, 0.04%)</title><rect x="26.3477%" y="725" width="0.0381%" height="15" fill="rgb(238,129,25)" fg:x="119054" fg:w="172"/><text x="26.5977%" y="735.50"></text></g><g><title>__new_sem_wait_slow (171 samples, 0.04%)</title><rect x="26.3479%" y="709" width="0.0378%" height="15" fill="rgb(238,22,31)" fg:x="119055" fg:w="171"/><text x="26.5979%" y="719.50"></text></g><g><title>do_futex_wait (170 samples, 0.04%)</title><rect x="26.3482%" y="693" width="0.0376%" height="15" fill="rgb(222,174,48)" fg:x="119056" fg:w="170"/><text x="26.5982%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (170 samples, 0.04%)</title><rect x="26.3482%" y="677" width="0.0376%" height="15" fill="rgb(206,152,40)" fg:x="119056" fg:w="170"/><text x="26.5982%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (169 samples, 0.04%)</title><rect x="26.3484%" y="661" width="0.0374%" height="15" fill="rgb(218,99,54)" fg:x="119057" fg:w="169"/><text x="26.5984%" y="671.50"></text></g><g><title>GC_Thread#2 (1,447 samples, 0.32%)</title><rect x="26.0675%" y="837" width="0.3202%" height="15" fill="rgb(220,174,26)" fg:x="117788" fg:w="1447"/><text x="26.3175%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (74 samples, 0.02%)</title><rect x="26.4502%" y="677" width="0.0164%" height="15" fill="rgb(245,116,9)" fg:x="119517" fg:w="74"/><text x="26.7002%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (218 samples, 0.05%)</title><rect x="26.4234%" y="693" width="0.0482%" height="15" fill="rgb(209,72,35)" fg:x="119396" fg:w="218"/><text x="26.6734%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (353 samples, 0.08%)</title><rect x="26.3962%" y="709" width="0.0781%" height="15" fill="rgb(226,126,21)" fg:x="119273" fg:w="353"/><text x="26.6462%" y="719.50"></text></g><g><title>SpinPause (103 samples, 0.02%)</title><rect x="26.4754%" y="709" width="0.0228%" height="15" fill="rgb(227,192,1)" fg:x="119631" fg:w="103"/><text x="26.7254%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (476 samples, 0.11%)</title><rect x="26.3937%" y="725" width="0.1053%" height="15" fill="rgb(237,180,29)" fg:x="119262" fg:w="476"/><text x="26.6437%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (114 samples, 0.03%)</title><rect x="26.5042%" y="629" width="0.0252%" height="15" fill="rgb(230,197,35)" fg:x="119761" fg:w="114"/><text x="26.7542%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (85 samples, 0.02%)</title><rect x="26.5106%" y="613" width="0.0188%" height="15" fill="rgb(246,193,31)" fg:x="119790" fg:w="85"/><text x="26.7606%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (139 samples, 0.03%)</title><rect x="26.4995%" y="645" width="0.0308%" height="15" fill="rgb(241,36,4)" fg:x="119740" fg:w="139"/><text x="26.7495%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (161 samples, 0.04%)</title><rect x="26.4995%" y="725" width="0.0356%" height="15" fill="rgb(241,130,17)" fg:x="119740" fg:w="161"/><text x="26.7495%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (161 samples, 0.04%)</title><rect x="26.4995%" y="709" width="0.0356%" height="15" fill="rgb(206,137,32)" fg:x="119740" fg:w="161"/><text x="26.7495%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (161 samples, 0.04%)</title><rect x="26.4995%" y="693" width="0.0356%" height="15" fill="rgb(237,228,51)" fg:x="119740" fg:w="161"/><text x="26.7495%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (161 samples, 0.04%)</title><rect x="26.4995%" y="677" width="0.0356%" height="15" fill="rgb(243,6,42)" fg:x="119740" fg:w="161"/><text x="26.7495%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (161 samples, 0.04%)</title><rect x="26.4995%" y="661" width="0.0356%" height="15" fill="rgb(251,74,28)" fg:x="119740" fg:w="161"/><text x="26.7495%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (56 samples, 0.01%)</title><rect x="26.5352%" y="645" width="0.0124%" height="15" fill="rgb(218,20,49)" fg:x="119901" fg:w="56"/><text x="26.7852%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (69 samples, 0.02%)</title><rect x="26.5352%" y="661" width="0.0153%" height="15" fill="rgb(238,28,14)" fg:x="119901" fg:w="69"/><text x="26.7852%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (76 samples, 0.02%)</title><rect x="26.5352%" y="677" width="0.0168%" height="15" fill="rgb(229,40,46)" fg:x="119901" fg:w="76"/><text x="26.7852%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (82 samples, 0.02%)</title><rect x="26.5352%" y="725" width="0.0181%" height="15" fill="rgb(244,195,20)" fg:x="119901" fg:w="82"/><text x="26.7852%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (82 samples, 0.02%)</title><rect x="26.5352%" y="709" width="0.0181%" height="15" fill="rgb(253,56,35)" fg:x="119901" fg:w="82"/><text x="26.7852%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (82 samples, 0.02%)</title><rect x="26.5352%" y="693" width="0.0181%" height="15" fill="rgb(210,149,44)" fg:x="119901" fg:w="82"/><text x="26.7852%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (142 samples, 0.03%)</title><rect x="26.5783%" y="597" width="0.0314%" height="15" fill="rgb(240,135,12)" fg:x="120096" fg:w="142"/><text x="26.8283%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (109 samples, 0.02%)</title><rect x="26.5856%" y="581" width="0.0241%" height="15" fill="rgb(251,24,50)" fg:x="120129" fg:w="109"/><text x="26.8356%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (192 samples, 0.04%)</title><rect x="26.5708%" y="629" width="0.0425%" height="15" fill="rgb(243,200,47)" fg:x="120062" fg:w="192"/><text x="26.8208%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (192 samples, 0.04%)</title><rect x="26.5708%" y="613" width="0.0425%" height="15" fill="rgb(224,166,26)" fg:x="120062" fg:w="192"/><text x="26.8208%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (276 samples, 0.06%)</title><rect x="26.5535%" y="709" width="0.0611%" height="15" fill="rgb(233,0,47)" fg:x="119984" fg:w="276"/><text x="26.8035%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (240 samples, 0.05%)</title><rect x="26.5615%" y="693" width="0.0531%" height="15" fill="rgb(253,80,5)" fg:x="120020" fg:w="240"/><text x="26.8115%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (240 samples, 0.05%)</title><rect x="26.5615%" y="677" width="0.0531%" height="15" fill="rgb(214,133,25)" fg:x="120020" fg:w="240"/><text x="26.8115%" y="687.50"></text></g><g><title>JavaThread::oops_do (234 samples, 0.05%)</title><rect x="26.5628%" y="661" width="0.0518%" height="15" fill="rgb(209,27,14)" fg:x="120026" fg:w="234"/><text x="26.8128%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (200 samples, 0.04%)</title><rect x="26.5704%" y="645" width="0.0443%" height="15" fill="rgb(219,102,51)" fg:x="120060" fg:w="200"/><text x="26.8204%" y="655.50"></text></g><g><title>G1ParTask::work (1,003 samples, 0.22%)</title><rect x="26.3937%" y="741" width="0.2220%" height="15" fill="rgb(237,18,16)" fg:x="119262" fg:w="1003"/><text x="26.6437%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (282 samples, 0.06%)</title><rect x="26.5533%" y="725" width="0.0624%" height="15" fill="rgb(241,85,17)" fg:x="119983" fg:w="282"/><text x="26.8033%" y="735.50"></text></g><g><title>SpinPause (48 samples, 0.01%)</title><rect x="26.6195%" y="693" width="0.0106%" height="15" fill="rgb(236,90,42)" fg:x="120282" fg:w="48"/><text x="26.8695%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (60 samples, 0.01%)</title><rect x="26.6170%" y="709" width="0.0133%" height="15" fill="rgb(249,57,21)" fg:x="120271" fg:w="60"/><text x="26.8670%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (66 samples, 0.01%)</title><rect x="26.6170%" y="725" width="0.0146%" height="15" fill="rgb(243,12,36)" fg:x="120271" fg:w="66"/><text x="26.8670%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (164 samples, 0.04%)</title><rect x="26.6170%" y="741" width="0.0363%" height="15" fill="rgb(253,128,47)" fg:x="120271" fg:w="164"/><text x="26.8670%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (98 samples, 0.02%)</title><rect x="26.6317%" y="725" width="0.0217%" height="15" fill="rgb(207,33,20)" fg:x="120337" fg:w="98"/><text x="26.8817%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (98 samples, 0.02%)</title><rect x="26.6317%" y="709" width="0.0217%" height="15" fill="rgb(233,215,35)" fg:x="120337" fg:w="98"/><text x="26.8817%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (98 samples, 0.02%)</title><rect x="26.6317%" y="693" width="0.0217%" height="15" fill="rgb(249,188,52)" fg:x="120337" fg:w="98"/><text x="26.8817%" y="703.50"></text></g><g><title>SpinPause (98 samples, 0.02%)</title><rect x="26.6317%" y="677" width="0.0217%" height="15" fill="rgb(225,12,32)" fg:x="120337" fg:w="98"/><text x="26.8817%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.02%)</title><rect x="26.6657%" y="517" width="0.0243%" height="15" fill="rgb(247,98,14)" fg:x="120491" fg:w="110"/><text x="26.9157%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="26.6662%" y="501" width="0.0239%" height="15" fill="rgb(247,219,48)" fg:x="120493" fg:w="108"/><text x="26.9162%" y="511.50"></text></g><g><title>native_write_msr (108 samples, 0.02%)</title><rect x="26.6662%" y="485" width="0.0239%" height="15" fill="rgb(253,60,48)" fg:x="120493" fg:w="108"/><text x="26.9162%" y="495.50"></text></g><g><title>finish_task_switch (115 samples, 0.03%)</title><rect x="26.6655%" y="533" width="0.0255%" height="15" fill="rgb(245,15,52)" fg:x="120490" fg:w="115"/><text x="26.9155%" y="543.50"></text></g><g><title>do_syscall_64 (125 samples, 0.03%)</title><rect x="26.6637%" y="645" width="0.0277%" height="15" fill="rgb(220,133,28)" fg:x="120482" fg:w="125"/><text x="26.9137%" y="655.50"></text></g><g><title>__x64_sys_futex (125 samples, 0.03%)</title><rect x="26.6637%" y="629" width="0.0277%" height="15" fill="rgb(217,180,4)" fg:x="120482" fg:w="125"/><text x="26.9137%" y="639.50"></text></g><g><title>do_futex (125 samples, 0.03%)</title><rect x="26.6637%" y="613" width="0.0277%" height="15" fill="rgb(251,24,1)" fg:x="120482" fg:w="125"/><text x="26.9137%" y="623.50"></text></g><g><title>futex_wait (125 samples, 0.03%)</title><rect x="26.6637%" y="597" width="0.0277%" height="15" fill="rgb(212,185,49)" fg:x="120482" fg:w="125"/><text x="26.9137%" y="607.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.03%)</title><rect x="26.6637%" y="581" width="0.0277%" height="15" fill="rgb(215,175,22)" fg:x="120482" fg:w="125"/><text x="26.9137%" y="591.50"></text></g><g><title>schedule (124 samples, 0.03%)</title><rect x="26.6640%" y="565" width="0.0274%" height="15" fill="rgb(250,205,14)" fg:x="120483" fg:w="124"/><text x="26.9140%" y="575.50"></text></g><g><title>__schedule (124 samples, 0.03%)</title><rect x="26.6640%" y="549" width="0.0274%" height="15" fill="rgb(225,211,22)" fg:x="120483" fg:w="124"/><text x="26.9140%" y="559.50"></text></g><g><title>__GI___clone (1,357 samples, 0.30%)</title><rect x="26.3924%" y="821" width="0.3003%" height="15" fill="rgb(251,179,42)" fg:x="119256" fg:w="1357"/><text x="26.6424%" y="831.50"></text></g><g><title>start_thread (1,357 samples, 0.30%)</title><rect x="26.3924%" y="805" width="0.3003%" height="15" fill="rgb(208,216,51)" fg:x="119256" fg:w="1357"/><text x="26.6424%" y="815.50"></text></g><g><title>thread_native_entry (1,357 samples, 0.30%)</title><rect x="26.3924%" y="789" width="0.3003%" height="15" fill="rgb(235,36,11)" fg:x="119256" fg:w="1357"/><text x="26.6424%" y="799.50"></text></g><g><title>Thread::call_run (1,357 samples, 0.30%)</title><rect x="26.3924%" y="773" width="0.3003%" height="15" fill="rgb(213,189,28)" fg:x="119256" fg:w="1357"/><text x="26.6424%" y="783.50"></text></g><g><title>GangWorker::loop (1,357 samples, 0.30%)</title><rect x="26.3924%" y="757" width="0.3003%" height="15" fill="rgb(227,203,42)" fg:x="119256" fg:w="1357"/><text x="26.6424%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (134 samples, 0.03%)</title><rect x="26.6631%" y="741" width="0.0297%" height="15" fill="rgb(244,72,36)" fg:x="120479" fg:w="134"/><text x="26.9131%" y="751.50"></text></g><g><title>PosixSemaphore::wait (134 samples, 0.03%)</title><rect x="26.6631%" y="725" width="0.0297%" height="15" fill="rgb(213,53,17)" fg:x="120479" fg:w="134"/><text x="26.9131%" y="735.50"></text></g><g><title>__new_sem_wait_slow (134 samples, 0.03%)</title><rect x="26.6631%" y="709" width="0.0297%" height="15" fill="rgb(207,167,3)" fg:x="120479" fg:w="134"/><text x="26.9131%" y="719.50"></text></g><g><title>do_futex_wait (133 samples, 0.03%)</title><rect x="26.6633%" y="693" width="0.0294%" height="15" fill="rgb(216,98,30)" fg:x="120480" fg:w="133"/><text x="26.9133%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (133 samples, 0.03%)</title><rect x="26.6633%" y="677" width="0.0294%" height="15" fill="rgb(236,123,15)" fg:x="120480" fg:w="133"/><text x="26.9133%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (131 samples, 0.03%)</title><rect x="26.6637%" y="661" width="0.0290%" height="15" fill="rgb(248,81,50)" fg:x="120482" fg:w="131"/><text x="26.9137%" y="671.50"></text></g><g><title>GC_Thread#3 (1,381 samples, 0.31%)</title><rect x="26.3878%" y="837" width="0.3056%" height="15" fill="rgb(214,120,4)" fg:x="119235" fg:w="1381"/><text x="26.6378%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (52 samples, 0.01%)</title><rect x="26.7560%" y="677" width="0.0115%" height="15" fill="rgb(208,179,34)" fg:x="120899" fg:w="52"/><text x="27.0060%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (174 samples, 0.04%)</title><rect x="26.7337%" y="693" width="0.0385%" height="15" fill="rgb(227,140,7)" fg:x="120798" fg:w="174"/><text x="26.9837%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (310 samples, 0.07%)</title><rect x="26.7049%" y="709" width="0.0686%" height="15" fill="rgb(214,22,6)" fg:x="120668" fg:w="310"/><text x="26.9549%" y="719.50"></text></g><g><title>SpinPause (101 samples, 0.02%)</title><rect x="26.7740%" y="709" width="0.0224%" height="15" fill="rgb(207,137,27)" fg:x="120980" fg:w="101"/><text x="27.0240%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (427 samples, 0.09%)</title><rect x="26.7029%" y="725" width="0.0945%" height="15" fill="rgb(210,8,46)" fg:x="120659" fg:w="427"/><text x="26.9529%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (212 samples, 0.05%)</title><rect x="26.8060%" y="629" width="0.0469%" height="15" fill="rgb(240,16,54)" fg:x="121125" fg:w="212"/><text x="27.0560%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (148 samples, 0.03%)</title><rect x="26.8202%" y="613" width="0.0328%" height="15" fill="rgb(211,209,29)" fg:x="121189" fg:w="148"/><text x="27.0702%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (261 samples, 0.06%)</title><rect x="26.7979%" y="645" width="0.0578%" height="15" fill="rgb(226,228,24)" fg:x="121088" fg:w="261"/><text x="27.0479%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (289 samples, 0.06%)</title><rect x="26.7976%" y="725" width="0.0640%" height="15" fill="rgb(222,84,9)" fg:x="121087" fg:w="289"/><text x="27.0476%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (289 samples, 0.06%)</title><rect x="26.7976%" y="709" width="0.0640%" height="15" fill="rgb(234,203,30)" fg:x="121087" fg:w="289"/><text x="27.0476%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (289 samples, 0.06%)</title><rect x="26.7976%" y="693" width="0.0640%" height="15" fill="rgb(238,109,14)" fg:x="121087" fg:w="289"/><text x="27.0476%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (289 samples, 0.06%)</title><rect x="26.7976%" y="677" width="0.0640%" height="15" fill="rgb(233,206,34)" fg:x="121087" fg:w="289"/><text x="27.0476%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (289 samples, 0.06%)</title><rect x="26.7976%" y="661" width="0.0640%" height="15" fill="rgb(220,167,47)" fg:x="121087" fg:w="289"/><text x="27.0476%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (49 samples, 0.01%)</title><rect x="26.8640%" y="629" width="0.0108%" height="15" fill="rgb(238,105,10)" fg:x="121387" fg:w="49"/><text x="27.1140%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (64 samples, 0.01%)</title><rect x="26.8616%" y="645" width="0.0142%" height="15" fill="rgb(213,227,17)" fg:x="121376" fg:w="64"/><text x="27.1116%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (82 samples, 0.02%)</title><rect x="26.8616%" y="661" width="0.0181%" height="15" fill="rgb(217,132,38)" fg:x="121376" fg:w="82"/><text x="27.1116%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (88 samples, 0.02%)</title><rect x="26.8616%" y="677" width="0.0195%" height="15" fill="rgb(242,146,4)" fg:x="121376" fg:w="88"/><text x="27.1116%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (104 samples, 0.02%)</title><rect x="26.8616%" y="725" width="0.0230%" height="15" fill="rgb(212,61,9)" fg:x="121376" fg:w="104"/><text x="27.1116%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (104 samples, 0.02%)</title><rect x="26.8616%" y="709" width="0.0230%" height="15" fill="rgb(247,126,22)" fg:x="121376" fg:w="104"/><text x="27.1116%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (104 samples, 0.02%)</title><rect x="26.8616%" y="693" width="0.0230%" height="15" fill="rgb(220,196,2)" fg:x="121376" fg:w="104"/><text x="27.1116%" y="703.50"></text></g><g><title>G1RootProcessor::process_java_roots (88 samples, 0.02%)</title><rect x="26.8851%" y="709" width="0.0195%" height="15" fill="rgb(208,46,4)" fg:x="121482" fg:w="88"/><text x="27.1351%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (88 samples, 0.02%)</title><rect x="26.8851%" y="693" width="0.0195%" height="15" fill="rgb(252,104,46)" fg:x="121482" fg:w="88"/><text x="27.1351%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (88 samples, 0.02%)</title><rect x="26.8851%" y="677" width="0.0195%" height="15" fill="rgb(237,152,48)" fg:x="121482" fg:w="88"/><text x="27.1351%" y="687.50"></text></g><g><title>JavaThread::oops_do (88 samples, 0.02%)</title><rect x="26.8851%" y="661" width="0.0195%" height="15" fill="rgb(221,59,37)" fg:x="121482" fg:w="88"/><text x="27.1351%" y="671.50"></text></g><g><title>G1ParTask::work (927 samples, 0.21%)</title><rect x="26.7029%" y="741" width="0.2052%" height="15" fill="rgb(209,202,51)" fg:x="120659" fg:w="927"/><text x="26.9529%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (106 samples, 0.02%)</title><rect x="26.8846%" y="725" width="0.0235%" height="15" fill="rgb(228,81,30)" fg:x="121480" fg:w="106"/><text x="27.1346%" y="735.50"></text></g><g><title>RefProcPhase3Task::work (74 samples, 0.02%)</title><rect x="26.9207%" y="725" width="0.0164%" height="15" fill="rgb(227,42,39)" fg:x="121643" fg:w="74"/><text x="27.1707%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (74 samples, 0.02%)</title><rect x="26.9207%" y="709" width="0.0164%" height="15" fill="rgb(221,26,2)" fg:x="121643" fg:w="74"/><text x="27.1707%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (74 samples, 0.02%)</title><rect x="26.9207%" y="693" width="0.0164%" height="15" fill="rgb(254,61,31)" fg:x="121643" fg:w="74"/><text x="27.1707%" y="703.50"></text></g><g><title>SpinPause (73 samples, 0.02%)</title><rect x="26.9209%" y="677" width="0.0162%" height="15" fill="rgb(222,173,38)" fg:x="121644" fg:w="73"/><text x="27.1709%" y="687.50"></text></g><g><title>G1STWRefProcTaskProxy::work (118 samples, 0.03%)</title><rect x="26.9112%" y="741" width="0.0261%" height="15" fill="rgb(218,50,12)" fg:x="121600" fg:w="118"/><text x="27.1612%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (139 samples, 0.03%)</title><rect x="26.9495%" y="517" width="0.0308%" height="15" fill="rgb(223,88,40)" fg:x="121773" fg:w="139"/><text x="27.1995%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (134 samples, 0.03%)</title><rect x="26.9506%" y="501" width="0.0297%" height="15" fill="rgb(237,54,19)" fg:x="121778" fg:w="134"/><text x="27.2006%" y="511.50"></text></g><g><title>native_write_msr (133 samples, 0.03%)</title><rect x="26.9508%" y="485" width="0.0294%" height="15" fill="rgb(251,129,25)" fg:x="121779" fg:w="133"/><text x="27.2008%" y="495.50"></text></g><g><title>finish_task_switch (148 samples, 0.03%)</title><rect x="26.9492%" y="533" width="0.0328%" height="15" fill="rgb(238,97,19)" fg:x="121772" fg:w="148"/><text x="27.1992%" y="543.50"></text></g><g><title>futex_wait_queue_me (162 samples, 0.04%)</title><rect x="26.9475%" y="581" width="0.0359%" height="15" fill="rgb(240,169,18)" fg:x="121764" fg:w="162"/><text x="27.1975%" y="591.50"></text></g><g><title>schedule (161 samples, 0.04%)</title><rect x="26.9477%" y="565" width="0.0356%" height="15" fill="rgb(230,187,49)" fg:x="121765" fg:w="161"/><text x="27.1977%" y="575.50"></text></g><g><title>__schedule (160 samples, 0.04%)</title><rect x="26.9479%" y="549" width="0.0354%" height="15" fill="rgb(209,44,26)" fg:x="121766" fg:w="160"/><text x="27.1979%" y="559.50"></text></g><g><title>do_syscall_64 (164 samples, 0.04%)</title><rect x="26.9472%" y="645" width="0.0363%" height="15" fill="rgb(244,0,6)" fg:x="121763" fg:w="164"/><text x="27.1972%" y="655.50"></text></g><g><title>__x64_sys_futex (164 samples, 0.04%)</title><rect x="26.9472%" y="629" width="0.0363%" height="15" fill="rgb(248,18,21)" fg:x="121763" fg:w="164"/><text x="27.1972%" y="639.50"></text></g><g><title>do_futex (163 samples, 0.04%)</title><rect x="26.9475%" y="613" width="0.0361%" height="15" fill="rgb(245,180,19)" fg:x="121764" fg:w="163"/><text x="27.1975%" y="623.50"></text></g><g><title>futex_wait (163 samples, 0.04%)</title><rect x="26.9475%" y="597" width="0.0361%" height="15" fill="rgb(252,118,36)" fg:x="121764" fg:w="163"/><text x="27.1975%" y="607.50"></text></g><g><title>__GI___clone (1,295 samples, 0.29%)</title><rect x="26.6972%" y="821" width="0.2866%" height="15" fill="rgb(210,224,19)" fg:x="120633" fg:w="1295"/><text x="26.9472%" y="831.50"></text></g><g><title>start_thread (1,295 samples, 0.29%)</title><rect x="26.6972%" y="805" width="0.2866%" height="15" fill="rgb(218,30,24)" fg:x="120633" fg:w="1295"/><text x="26.9472%" y="815.50"></text></g><g><title>thread_native_entry (1,295 samples, 0.29%)</title><rect x="26.6972%" y="789" width="0.2866%" height="15" fill="rgb(219,75,50)" fg:x="120633" fg:w="1295"/><text x="26.9472%" y="799.50"></text></g><g><title>Thread::call_run (1,295 samples, 0.29%)</title><rect x="26.6972%" y="773" width="0.2866%" height="15" fill="rgb(234,72,50)" fg:x="120633" fg:w="1295"/><text x="26.9472%" y="783.50"></text></g><g><title>GangWorker::loop (1,295 samples, 0.29%)</title><rect x="26.6972%" y="757" width="0.2866%" height="15" fill="rgb(219,100,48)" fg:x="120633" fg:w="1295"/><text x="26.9472%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (172 samples, 0.04%)</title><rect x="26.9457%" y="741" width="0.0381%" height="15" fill="rgb(253,5,41)" fg:x="121756" fg:w="172"/><text x="27.1957%" y="751.50"></text></g><g><title>PosixSemaphore::wait (170 samples, 0.04%)</title><rect x="26.9461%" y="725" width="0.0376%" height="15" fill="rgb(247,181,11)" fg:x="121758" fg:w="170"/><text x="27.1961%" y="735.50"></text></g><g><title>__new_sem_wait_slow (170 samples, 0.04%)</title><rect x="26.9461%" y="709" width="0.0376%" height="15" fill="rgb(222,223,25)" fg:x="121758" fg:w="170"/><text x="27.1961%" y="719.50"></text></g><g><title>do_futex_wait (168 samples, 0.04%)</title><rect x="26.9466%" y="693" width="0.0372%" height="15" fill="rgb(214,198,28)" fg:x="121760" fg:w="168"/><text x="27.1966%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (168 samples, 0.04%)</title><rect x="26.9466%" y="677" width="0.0372%" height="15" fill="rgb(230,46,43)" fg:x="121760" fg:w="168"/><text x="27.1966%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (166 samples, 0.04%)</title><rect x="26.9470%" y="661" width="0.0367%" height="15" fill="rgb(233,65,53)" fg:x="121762" fg:w="166"/><text x="27.1970%" y="671.50"></text></g><g><title>GC_Thread#4 (1,318 samples, 0.29%)</title><rect x="26.6934%" y="837" width="0.2917%" height="15" fill="rgb(221,121,27)" fg:x="120616" fg:w="1318"/><text x="26.9434%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (69 samples, 0.02%)</title><rect x="27.0493%" y="677" width="0.0153%" height="15" fill="rgb(247,70,47)" fg:x="122224" fg:w="69"/><text x="27.2993%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (205 samples, 0.05%)</title><rect x="27.0247%" y="693" width="0.0454%" height="15" fill="rgb(228,85,35)" fg:x="122113" fg:w="205"/><text x="27.2747%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (346 samples, 0.08%)</title><rect x="26.9957%" y="709" width="0.0766%" height="15" fill="rgb(209,50,18)" fg:x="121982" fg:w="346"/><text x="27.2457%" y="719.50"></text></g><g><title>SpinPause (125 samples, 0.03%)</title><rect x="27.0736%" y="709" width="0.0277%" height="15" fill="rgb(250,19,35)" fg:x="122334" fg:w="125"/><text x="27.3236%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (491 samples, 0.11%)</title><rect x="26.9942%" y="725" width="0.1087%" height="15" fill="rgb(253,107,29)" fg:x="121975" fg:w="491"/><text x="27.2442%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (91 samples, 0.02%)</title><rect x="27.1057%" y="629" width="0.0201%" height="15" fill="rgb(252,179,29)" fg:x="122479" fg:w="91"/><text x="27.3557%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.02%)</title><rect x="27.1108%" y="613" width="0.0150%" height="15" fill="rgb(238,194,6)" fg:x="122502" fg:w="68"/><text x="27.3608%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.02%)</title><rect x="27.1030%" y="645" width="0.0243%" height="15" fill="rgb(238,164,29)" fg:x="122467" fg:w="110"/><text x="27.3530%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (128 samples, 0.03%)</title><rect x="27.1030%" y="725" width="0.0283%" height="15" fill="rgb(224,25,9)" fg:x="122467" fg:w="128"/><text x="27.3530%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (128 samples, 0.03%)</title><rect x="27.1030%" y="709" width="0.0283%" height="15" fill="rgb(244,153,23)" fg:x="122467" fg:w="128"/><text x="27.3530%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (128 samples, 0.03%)</title><rect x="27.1030%" y="693" width="0.0283%" height="15" fill="rgb(212,203,14)" fg:x="122467" fg:w="128"/><text x="27.3530%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (128 samples, 0.03%)</title><rect x="27.1030%" y="677" width="0.0283%" height="15" fill="rgb(220,164,20)" fg:x="122467" fg:w="128"/><text x="27.3530%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (128 samples, 0.03%)</title><rect x="27.1030%" y="661" width="0.0283%" height="15" fill="rgb(222,203,48)" fg:x="122467" fg:w="128"/><text x="27.3530%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (74 samples, 0.02%)</title><rect x="27.1342%" y="629" width="0.0164%" height="15" fill="rgb(215,159,22)" fg:x="122608" fg:w="74"/><text x="27.3842%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (59 samples, 0.01%)</title><rect x="27.1376%" y="613" width="0.0131%" height="15" fill="rgb(216,183,47)" fg:x="122623" fg:w="59"/><text x="27.3876%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (93 samples, 0.02%)</title><rect x="27.1314%" y="645" width="0.0206%" height="15" fill="rgb(229,195,25)" fg:x="122595" fg:w="93"/><text x="27.3814%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (116 samples, 0.03%)</title><rect x="27.1314%" y="661" width="0.0257%" height="15" fill="rgb(224,132,51)" fg:x="122595" fg:w="116"/><text x="27.3814%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (121 samples, 0.03%)</title><rect x="27.1314%" y="677" width="0.0268%" height="15" fill="rgb(240,63,7)" fg:x="122595" fg:w="121"/><text x="27.3814%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (139 samples, 0.03%)</title><rect x="27.1314%" y="725" width="0.0308%" height="15" fill="rgb(249,182,41)" fg:x="122595" fg:w="139"/><text x="27.3814%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (139 samples, 0.03%)</title><rect x="27.1314%" y="709" width="0.0308%" height="15" fill="rgb(243,47,26)" fg:x="122595" fg:w="139"/><text x="27.3814%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (139 samples, 0.03%)</title><rect x="27.1314%" y="693" width="0.0308%" height="15" fill="rgb(233,48,2)" fg:x="122595" fg:w="139"/><text x="27.3814%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.02%)</title><rect x="27.1754%" y="613" width="0.0150%" height="15" fill="rgb(244,165,34)" fg:x="122794" fg:w="68"/><text x="27.4254%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (97 samples, 0.02%)</title><rect x="27.1692%" y="629" width="0.0215%" height="15" fill="rgb(207,89,7)" fg:x="122766" fg:w="97"/><text x="27.4192%" y="639.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (135 samples, 0.03%)</title><rect x="27.1621%" y="693" width="0.0299%" height="15" fill="rgb(244,117,36)" fg:x="122734" fg:w="135"/><text x="27.4121%" y="703.50"></text></g><g><title>G1CLDScanClosure::do_cld (131 samples, 0.03%)</title><rect x="27.1630%" y="677" width="0.0290%" height="15" fill="rgb(226,144,34)" fg:x="122738" fg:w="131"/><text x="27.4130%" y="687.50"></text></g><g><title>ClassLoaderData::oops_do (131 samples, 0.03%)</title><rect x="27.1630%" y="661" width="0.0290%" height="15" fill="rgb(213,23,19)" fg:x="122738" fg:w="131"/><text x="27.4130%" y="671.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.03%)</title><rect x="27.1650%" y="645" width="0.0270%" height="15" fill="rgb(217,75,12)" fg:x="122747" fg:w="122"/><text x="27.4150%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (46 samples, 0.01%)</title><rect x="27.2009%" y="645" width="0.0102%" height="15" fill="rgb(224,159,17)" fg:x="122909" fg:w="46"/><text x="27.4509%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (222 samples, 0.05%)</title><rect x="27.1621%" y="709" width="0.0491%" height="15" fill="rgb(217,118,1)" fg:x="122734" fg:w="222"/><text x="27.4121%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (87 samples, 0.02%)</title><rect x="27.1920%" y="693" width="0.0193%" height="15" fill="rgb(232,180,48)" fg:x="122869" fg:w="87"/><text x="27.4420%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (87 samples, 0.02%)</title><rect x="27.1920%" y="677" width="0.0193%" height="15" fill="rgb(230,27,33)" fg:x="122869" fg:w="87"/><text x="27.4420%" y="687.50"></text></g><g><title>JavaThread::oops_do (87 samples, 0.02%)</title><rect x="27.1920%" y="661" width="0.0193%" height="15" fill="rgb(205,31,21)" fg:x="122869" fg:w="87"/><text x="27.4420%" y="671.50"></text></g><g><title>G1ParTask::work (989 samples, 0.22%)</title><rect x="26.9942%" y="741" width="0.2189%" height="15" fill="rgb(253,59,4)" fg:x="121975" fg:w="989"/><text x="27.2442%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (230 samples, 0.05%)</title><rect x="27.1621%" y="725" width="0.0509%" height="15" fill="rgb(224,201,9)" fg:x="122734" fg:w="230"/><text x="27.4121%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (56 samples, 0.01%)</title><rect x="27.2137%" y="709" width="0.0124%" height="15" fill="rgb(229,206,30)" fg:x="122967" fg:w="56"/><text x="27.4637%" y="719.50"></text></g><g><title>SpinPause (48 samples, 0.01%)</title><rect x="27.2155%" y="693" width="0.0106%" height="15" fill="rgb(212,67,47)" fg:x="122975" fg:w="48"/><text x="27.4655%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (65 samples, 0.01%)</title><rect x="27.2137%" y="725" width="0.0144%" height="15" fill="rgb(211,96,50)" fg:x="122967" fg:w="65"/><text x="27.4637%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (129 samples, 0.03%)</title><rect x="27.2137%" y="741" width="0.0285%" height="15" fill="rgb(252,114,18)" fg:x="122967" fg:w="129"/><text x="27.4637%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (64 samples, 0.01%)</title><rect x="27.2281%" y="725" width="0.0142%" height="15" fill="rgb(223,58,37)" fg:x="123032" fg:w="64"/><text x="27.4781%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (64 samples, 0.01%)</title><rect x="27.2281%" y="709" width="0.0142%" height="15" fill="rgb(237,70,4)" fg:x="123032" fg:w="64"/><text x="27.4781%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (64 samples, 0.01%)</title><rect x="27.2281%" y="693" width="0.0142%" height="15" fill="rgb(244,85,46)" fg:x="123032" fg:w="64"/><text x="27.4781%" y="703.50"></text></g><g><title>SpinPause (63 samples, 0.01%)</title><rect x="27.2283%" y="677" width="0.0139%" height="15" fill="rgb(223,39,52)" fg:x="123033" fg:w="63"/><text x="27.4783%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (98 samples, 0.02%)</title><rect x="27.2551%" y="517" width="0.0217%" height="15" fill="rgb(218,200,14)" fg:x="123154" fg:w="98"/><text x="27.5051%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (95 samples, 0.02%)</title><rect x="27.2557%" y="501" width="0.0210%" height="15" fill="rgb(208,171,16)" fg:x="123157" fg:w="95"/><text x="27.5057%" y="511.50"></text></g><g><title>native_write_msr (95 samples, 0.02%)</title><rect x="27.2557%" y="485" width="0.0210%" height="15" fill="rgb(234,200,18)" fg:x="123157" fg:w="95"/><text x="27.5057%" y="495.50"></text></g><g><title>finish_task_switch (105 samples, 0.02%)</title><rect x="27.2546%" y="533" width="0.0232%" height="15" fill="rgb(228,45,11)" fg:x="123152" fg:w="105"/><text x="27.5046%" y="543.50"></text></g><g><title>do_syscall_64 (121 samples, 0.03%)</title><rect x="27.2529%" y="645" width="0.0268%" height="15" fill="rgb(237,182,11)" fg:x="123144" fg:w="121"/><text x="27.5029%" y="655.50"></text></g><g><title>__x64_sys_futex (121 samples, 0.03%)</title><rect x="27.2529%" y="629" width="0.0268%" height="15" fill="rgb(241,175,49)" fg:x="123144" fg:w="121"/><text x="27.5029%" y="639.50"></text></g><g><title>do_futex (121 samples, 0.03%)</title><rect x="27.2529%" y="613" width="0.0268%" height="15" fill="rgb(247,38,35)" fg:x="123144" fg:w="121"/><text x="27.5029%" y="623.50"></text></g><g><title>futex_wait (121 samples, 0.03%)</title><rect x="27.2529%" y="597" width="0.0268%" height="15" fill="rgb(228,39,49)" fg:x="123144" fg:w="121"/><text x="27.5029%" y="607.50"></text></g><g><title>futex_wait_queue_me (119 samples, 0.03%)</title><rect x="27.2533%" y="581" width="0.0263%" height="15" fill="rgb(226,101,26)" fg:x="123146" fg:w="119"/><text x="27.5033%" y="591.50"></text></g><g><title>schedule (119 samples, 0.03%)</title><rect x="27.2533%" y="565" width="0.0263%" height="15" fill="rgb(206,141,19)" fg:x="123146" fg:w="119"/><text x="27.5033%" y="575.50"></text></g><g><title>__schedule (118 samples, 0.03%)</title><rect x="27.2535%" y="549" width="0.0261%" height="15" fill="rgb(211,200,13)" fg:x="123147" fg:w="118"/><text x="27.5035%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (126 samples, 0.03%)</title><rect x="27.2529%" y="661" width="0.0279%" height="15" fill="rgb(241,121,6)" fg:x="123144" fg:w="126"/><text x="27.5029%" y="671.50"></text></g><g><title>__GI___clone (1,307 samples, 0.29%)</title><rect x="26.9917%" y="821" width="0.2893%" height="15" fill="rgb(234,221,29)" fg:x="121964" fg:w="1307"/><text x="27.2417%" y="831.50"></text></g><g><title>start_thread (1,307 samples, 0.29%)</title><rect x="26.9917%" y="805" width="0.2893%" height="15" fill="rgb(229,136,5)" fg:x="121964" fg:w="1307"/><text x="27.2417%" y="815.50"></text></g><g><title>thread_native_entry (1,307 samples, 0.29%)</title><rect x="26.9917%" y="789" width="0.2893%" height="15" fill="rgb(238,36,11)" fg:x="121964" fg:w="1307"/><text x="27.2417%" y="799.50"></text></g><g><title>Thread::call_run (1,307 samples, 0.29%)</title><rect x="26.9917%" y="773" width="0.2893%" height="15" fill="rgb(251,55,41)" fg:x="121964" fg:w="1307"/><text x="27.2417%" y="783.50"></text></g><g><title>GangWorker::loop (1,307 samples, 0.29%)</title><rect x="26.9917%" y="757" width="0.2893%" height="15" fill="rgb(242,34,40)" fg:x="121964" fg:w="1307"/><text x="27.2417%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (130 samples, 0.03%)</title><rect x="27.2522%" y="741" width="0.0288%" height="15" fill="rgb(215,42,17)" fg:x="123141" fg:w="130"/><text x="27.5022%" y="751.50"></text></g><g><title>PosixSemaphore::wait (130 samples, 0.03%)</title><rect x="27.2522%" y="725" width="0.0288%" height="15" fill="rgb(207,44,46)" fg:x="123141" fg:w="130"/><text x="27.5022%" y="735.50"></text></g><g><title>__new_sem_wait_slow (129 samples, 0.03%)</title><rect x="27.2524%" y="709" width="0.0285%" height="15" fill="rgb(211,206,28)" fg:x="123142" fg:w="129"/><text x="27.5024%" y="719.50"></text></g><g><title>do_futex_wait (129 samples, 0.03%)</title><rect x="27.2524%" y="693" width="0.0285%" height="15" fill="rgb(237,167,16)" fg:x="123142" fg:w="129"/><text x="27.5024%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.03%)</title><rect x="27.2524%" y="677" width="0.0285%" height="15" fill="rgb(233,66,6)" fg:x="123142" fg:w="129"/><text x="27.5024%" y="687.50"></text></g><g><title>GC_Thread#5 (1,343 samples, 0.30%)</title><rect x="26.9851%" y="837" width="0.2972%" height="15" fill="rgb(246,123,29)" fg:x="121934" fg:w="1343"/><text x="27.2351%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (62 samples, 0.01%)</title><rect x="27.3339%" y="677" width="0.0137%" height="15" fill="rgb(209,62,40)" fg:x="123510" fg:w="62"/><text x="27.5839%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (164 samples, 0.04%)</title><rect x="27.3159%" y="693" width="0.0363%" height="15" fill="rgb(218,4,25)" fg:x="123429" fg:w="164"/><text x="27.5659%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (290 samples, 0.06%)</title><rect x="27.2909%" y="709" width="0.0642%" height="15" fill="rgb(253,91,49)" fg:x="123316" fg:w="290"/><text x="27.5409%" y="719.50"></text></g><g><title>SpinPause (120 samples, 0.03%)</title><rect x="27.3560%" y="709" width="0.0266%" height="15" fill="rgb(228,155,29)" fg:x="123610" fg:w="120"/><text x="27.6060%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (432 samples, 0.10%)</title><rect x="27.2889%" y="725" width="0.0956%" height="15" fill="rgb(243,57,37)" fg:x="123307" fg:w="432"/><text x="27.5389%" y="735.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (83 samples, 0.02%)</title><rect x="27.3954%" y="613" width="0.0184%" height="15" fill="rgb(244,167,17)" fg:x="123788" fg:w="83"/><text x="27.6454%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (105 samples, 0.02%)</title><rect x="27.3907%" y="629" width="0.0232%" height="15" fill="rgb(207,181,38)" fg:x="123767" fg:w="105"/><text x="27.6407%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (153 samples, 0.03%)</title><rect x="27.3848%" y="645" width="0.0339%" height="15" fill="rgb(211,8,23)" fg:x="123740" fg:w="153"/><text x="27.6348%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (172 samples, 0.04%)</title><rect x="27.3848%" y="725" width="0.0381%" height="15" fill="rgb(235,11,44)" fg:x="123740" fg:w="172"/><text x="27.6348%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (172 samples, 0.04%)</title><rect x="27.3848%" y="709" width="0.0381%" height="15" fill="rgb(248,18,52)" fg:x="123740" fg:w="172"/><text x="27.6348%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (172 samples, 0.04%)</title><rect x="27.3848%" y="693" width="0.0381%" height="15" fill="rgb(208,4,7)" fg:x="123740" fg:w="172"/><text x="27.6348%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (172 samples, 0.04%)</title><rect x="27.3848%" y="677" width="0.0381%" height="15" fill="rgb(240,17,39)" fg:x="123740" fg:w="172"/><text x="27.6348%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (172 samples, 0.04%)</title><rect x="27.3848%" y="661" width="0.0381%" height="15" fill="rgb(207,170,3)" fg:x="123740" fg:w="172"/><text x="27.6348%" y="671.50"></text></g><g><title>frame::oops_do_internal (57 samples, 0.01%)</title><rect x="27.4436%" y="645" width="0.0126%" height="15" fill="rgb(236,100,52)" fg:x="124006" fg:w="57"/><text x="27.6936%" y="655.50"></text></g><g><title>OopMapSet::oops_do (57 samples, 0.01%)</title><rect x="27.4436%" y="629" width="0.0126%" height="15" fill="rgb(246,78,51)" fg:x="124006" fg:w="57"/><text x="27.6936%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (56 samples, 0.01%)</title><rect x="27.4439%" y="613" width="0.0124%" height="15" fill="rgb(211,17,15)" fg:x="124007" fg:w="56"/><text x="27.6939%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.02%)</title><rect x="27.4669%" y="581" width="0.0155%" height="15" fill="rgb(209,59,46)" fg:x="124111" fg:w="70"/><text x="27.7169%" y="591.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (96 samples, 0.02%)</title><rect x="27.4613%" y="597" width="0.0212%" height="15" fill="rgb(210,92,25)" fg:x="124086" fg:w="96"/><text x="27.7113%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (131 samples, 0.03%)</title><rect x="27.4567%" y="629" width="0.0290%" height="15" fill="rgb(238,174,52)" fg:x="124065" fg:w="131"/><text x="27.7067%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (129 samples, 0.03%)</title><rect x="27.4571%" y="613" width="0.0285%" height="15" fill="rgb(230,73,7)" fg:x="124067" fg:w="129"/><text x="27.7071%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (249 samples, 0.06%)</title><rect x="27.4326%" y="709" width="0.0551%" height="15" fill="rgb(243,124,40)" fg:x="123956" fg:w="249"/><text x="27.6826%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (249 samples, 0.06%)</title><rect x="27.4326%" y="693" width="0.0551%" height="15" fill="rgb(244,170,11)" fg:x="123956" fg:w="249"/><text x="27.6826%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (249 samples, 0.06%)</title><rect x="27.4326%" y="677" width="0.0551%" height="15" fill="rgb(207,114,54)" fg:x="123956" fg:w="249"/><text x="27.6826%" y="687.50"></text></g><g><title>JavaThread::oops_do (249 samples, 0.06%)</title><rect x="27.4326%" y="661" width="0.0551%" height="15" fill="rgb(205,42,20)" fg:x="123956" fg:w="249"/><text x="27.6826%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (142 samples, 0.03%)</title><rect x="27.4563%" y="645" width="0.0314%" height="15" fill="rgb(230,30,28)" fg:x="124063" fg:w="142"/><text x="27.7063%" y="655.50"></text></g><g><title>G1ParTask::work (908 samples, 0.20%)</title><rect x="27.2887%" y="741" width="0.2009%" height="15" fill="rgb(205,73,54)" fg:x="123306" fg:w="908"/><text x="27.5387%" y="751.50"></text></g><g><title>G1RootProcessor::evacuate_roots (259 samples, 0.06%)</title><rect x="27.4324%" y="725" width="0.0573%" height="15" fill="rgb(254,227,23)" fg:x="123955" fg:w="259"/><text x="27.6824%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (101 samples, 0.02%)</title><rect x="27.4932%" y="741" width="0.0224%" height="15" fill="rgb(228,202,34)" fg:x="124230" fg:w="101"/><text x="27.7432%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (63 samples, 0.01%)</title><rect x="27.5016%" y="725" width="0.0139%" height="15" fill="rgb(222,225,37)" fg:x="124268" fg:w="63"/><text x="27.7516%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (63 samples, 0.01%)</title><rect x="27.5016%" y="709" width="0.0139%" height="15" fill="rgb(221,14,54)" fg:x="124268" fg:w="63"/><text x="27.7516%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (63 samples, 0.01%)</title><rect x="27.5016%" y="693" width="0.0139%" height="15" fill="rgb(254,102,2)" fg:x="124268" fg:w="63"/><text x="27.7516%" y="703.50"></text></g><g><title>SpinPause (63 samples, 0.01%)</title><rect x="27.5016%" y="677" width="0.0139%" height="15" fill="rgb(232,104,17)" fg:x="124268" fg:w="63"/><text x="27.7516%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.04%)</title><rect x="27.5280%" y="517" width="0.0356%" height="15" fill="rgb(250,220,14)" fg:x="124387" fg:w="161"/><text x="27.7780%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (157 samples, 0.03%)</title><rect x="27.5288%" y="501" width="0.0347%" height="15" fill="rgb(241,158,9)" fg:x="124391" fg:w="157"/><text x="27.7788%" y="511.50"></text></g><g><title>native_write_msr (157 samples, 0.03%)</title><rect x="27.5288%" y="485" width="0.0347%" height="15" fill="rgb(246,9,43)" fg:x="124391" fg:w="157"/><text x="27.7788%" y="495.50"></text></g><g><title>finish_task_switch (169 samples, 0.04%)</title><rect x="27.5277%" y="533" width="0.0374%" height="15" fill="rgb(206,73,33)" fg:x="124386" fg:w="169"/><text x="27.7777%" y="543.50"></text></g><g><title>futex_wait_queue_me (181 samples, 0.04%)</title><rect x="27.5269%" y="581" width="0.0401%" height="15" fill="rgb(222,79,8)" fg:x="124382" fg:w="181"/><text x="27.7769%" y="591.50"></text></g><g><title>schedule (181 samples, 0.04%)</title><rect x="27.5269%" y="565" width="0.0401%" height="15" fill="rgb(234,8,54)" fg:x="124382" fg:w="181"/><text x="27.7769%" y="575.50"></text></g><g><title>__schedule (181 samples, 0.04%)</title><rect x="27.5269%" y="549" width="0.0401%" height="15" fill="rgb(209,134,38)" fg:x="124382" fg:w="181"/><text x="27.7769%" y="559.50"></text></g><g><title>do_syscall_64 (184 samples, 0.04%)</title><rect x="27.5264%" y="645" width="0.0407%" height="15" fill="rgb(230,127,29)" fg:x="124380" fg:w="184"/><text x="27.7764%" y="655.50"></text></g><g><title>__x64_sys_futex (184 samples, 0.04%)</title><rect x="27.5264%" y="629" width="0.0407%" height="15" fill="rgb(242,44,41)" fg:x="124380" fg:w="184"/><text x="27.7764%" y="639.50"></text></g><g><title>do_futex (184 samples, 0.04%)</title><rect x="27.5264%" y="613" width="0.0407%" height="15" fill="rgb(222,56,43)" fg:x="124380" fg:w="184"/><text x="27.7764%" y="623.50"></text></g><g><title>futex_wait (182 samples, 0.04%)</title><rect x="27.5269%" y="597" width="0.0403%" height="15" fill="rgb(238,39,47)" fg:x="124382" fg:w="182"/><text x="27.7769%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (190 samples, 0.04%)</title><rect x="27.5264%" y="661" width="0.0420%" height="15" fill="rgb(226,79,43)" fg:x="124380" fg:w="190"/><text x="27.7764%" y="671.50"></text></g><g><title>__GI___clone (1,272 samples, 0.28%)</title><rect x="27.2872%" y="821" width="0.2815%" height="15" fill="rgb(242,105,53)" fg:x="123299" fg:w="1272"/><text x="27.5372%" y="831.50"></text></g><g><title>start_thread (1,272 samples, 0.28%)</title><rect x="27.2872%" y="805" width="0.2815%" height="15" fill="rgb(251,132,46)" fg:x="123299" fg:w="1272"/><text x="27.5372%" y="815.50"></text></g><g><title>thread_native_entry (1,272 samples, 0.28%)</title><rect x="27.2872%" y="789" width="0.2815%" height="15" fill="rgb(231,77,14)" fg:x="123299" fg:w="1272"/><text x="27.5372%" y="799.50"></text></g><g><title>Thread::call_run (1,272 samples, 0.28%)</title><rect x="27.2872%" y="773" width="0.2815%" height="15" fill="rgb(240,135,9)" fg:x="123299" fg:w="1272"/><text x="27.5372%" y="783.50"></text></g><g><title>GangWorker::loop (1,272 samples, 0.28%)</title><rect x="27.2872%" y="757" width="0.2815%" height="15" fill="rgb(248,109,14)" fg:x="123299" fg:w="1272"/><text x="27.5372%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (195 samples, 0.04%)</title><rect x="27.5255%" y="741" width="0.0432%" height="15" fill="rgb(227,146,52)" fg:x="124376" fg:w="195"/><text x="27.7755%" y="751.50"></text></g><g><title>PosixSemaphore::wait (195 samples, 0.04%)</title><rect x="27.5255%" y="725" width="0.0432%" height="15" fill="rgb(232,54,3)" fg:x="124376" fg:w="195"/><text x="27.7755%" y="735.50"></text></g><g><title>__new_sem_wait_slow (195 samples, 0.04%)</title><rect x="27.5255%" y="709" width="0.0432%" height="15" fill="rgb(229,201,43)" fg:x="124376" fg:w="195"/><text x="27.7755%" y="719.50"></text></g><g><title>do_futex_wait (194 samples, 0.04%)</title><rect x="27.5257%" y="693" width="0.0429%" height="15" fill="rgb(252,161,33)" fg:x="124377" fg:w="194"/><text x="27.7757%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (194 samples, 0.04%)</title><rect x="27.5257%" y="677" width="0.0429%" height="15" fill="rgb(226,146,40)" fg:x="124377" fg:w="194"/><text x="27.7757%" y="687.50"></text></g><g><title>page_remove_rmap (53 samples, 0.01%)</title><rect x="27.5800%" y="645" width="0.0117%" height="15" fill="rgb(219,47,25)" fg:x="124622" fg:w="53"/><text x="27.8300%" y="655.50"></text></g><g><title>__free_one_page (57 samples, 0.01%)</title><rect x="27.6198%" y="581" width="0.0126%" height="15" fill="rgb(250,135,13)" fg:x="124802" fg:w="57"/><text x="27.8698%" y="591.50"></text></g><g><title>free_pcppages_bulk (84 samples, 0.02%)</title><rect x="27.6160%" y="597" width="0.0186%" height="15" fill="rgb(219,229,18)" fg:x="124785" fg:w="84"/><text x="27.8660%" y="607.50"></text></g><g><title>free_unref_page_list (116 samples, 0.03%)</title><rect x="27.6109%" y="613" width="0.0257%" height="15" fill="rgb(217,152,27)" fg:x="124762" fg:w="116"/><text x="27.8609%" y="623.50"></text></g><g><title>tlb_flush_mmu (214 samples, 0.05%)</title><rect x="27.5919%" y="645" width="0.0474%" height="15" fill="rgb(225,71,47)" fg:x="124676" fg:w="214"/><text x="27.8419%" y="655.50"></text></g><g><title>release_pages (204 samples, 0.05%)</title><rect x="27.5941%" y="629" width="0.0451%" height="15" fill="rgb(220,139,14)" fg:x="124686" fg:w="204"/><text x="27.8441%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (321 samples, 0.07%)</title><rect x="27.5696%" y="821" width="0.0710%" height="15" fill="rgb(247,54,32)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (321 samples, 0.07%)</title><rect x="27.5696%" y="805" width="0.0710%" height="15" fill="rgb(252,131,39)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (321 samples, 0.07%)</title><rect x="27.5696%" y="789" width="0.0710%" height="15" fill="rgb(210,108,39)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="799.50"></text></g><g><title>arch_do_signal (321 samples, 0.07%)</title><rect x="27.5696%" y="773" width="0.0710%" height="15" fill="rgb(205,23,29)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="783.50"></text></g><g><title>get_signal (321 samples, 0.07%)</title><rect x="27.5696%" y="757" width="0.0710%" height="15" fill="rgb(246,139,46)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="767.50"></text></g><g><title>do_group_exit (321 samples, 0.07%)</title><rect x="27.5696%" y="741" width="0.0710%" height="15" fill="rgb(250,81,26)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="751.50"></text></g><g><title>do_exit (321 samples, 0.07%)</title><rect x="27.5696%" y="725" width="0.0710%" height="15" fill="rgb(214,104,7)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="735.50"></text></g><g><title>mmput (321 samples, 0.07%)</title><rect x="27.5696%" y="709" width="0.0710%" height="15" fill="rgb(233,189,8)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="719.50"></text></g><g><title>exit_mmap (321 samples, 0.07%)</title><rect x="27.5696%" y="693" width="0.0710%" height="15" fill="rgb(228,141,17)" fg:x="124575" fg:w="321"/><text x="27.8196%" y="703.50"></text></g><g><title>unmap_vmas (319 samples, 0.07%)</title><rect x="27.5700%" y="677" width="0.0706%" height="15" fill="rgb(247,157,1)" fg:x="124577" fg:w="319"/><text x="27.8200%" y="687.50"></text></g><g><title>unmap_page_range (319 samples, 0.07%)</title><rect x="27.5700%" y="661" width="0.0706%" height="15" fill="rgb(249,225,5)" fg:x="124577" fg:w="319"/><text x="27.8200%" y="671.50"></text></g><g><title>GC_Thread#6 (1,621 samples, 0.36%)</title><rect x="27.2823%" y="837" width="0.3587%" height="15" fill="rgb(242,55,13)" fg:x="123277" fg:w="1621"/><text x="27.5323%" y="847.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (60 samples, 0.01%)</title><rect x="27.7063%" y="677" width="0.0133%" height="15" fill="rgb(230,49,50)" fg:x="125193" fg:w="60"/><text x="27.9563%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (207 samples, 0.05%)</title><rect x="27.6822%" y="693" width="0.0458%" height="15" fill="rgb(241,111,38)" fg:x="125084" fg:w="207"/><text x="27.9322%" y="703.50"></text></g><g><title>G1ParScanThreadState::trim_queue (355 samples, 0.08%)</title><rect x="27.6512%" y="709" width="0.0786%" height="15" fill="rgb(252,155,4)" fg:x="124944" fg:w="355"/><text x="27.9012%" y="719.50"></text></g><g><title>SpinPause (103 samples, 0.02%)</title><rect x="27.7307%" y="709" width="0.0228%" height="15" fill="rgb(212,69,32)" fg:x="125303" fg:w="103"/><text x="27.9807%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (479 samples, 0.11%)</title><rect x="27.6490%" y="725" width="0.1060%" height="15" fill="rgb(243,107,47)" fg:x="124934" fg:w="479"/><text x="27.8990%" y="735.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (84 samples, 0.02%)</title><rect x="27.7575%" y="629" width="0.0186%" height="15" fill="rgb(247,130,12)" fg:x="125424" fg:w="84"/><text x="28.0075%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.02%)</title><rect x="27.7610%" y="613" width="0.0150%" height="15" fill="rgb(233,74,16)" fg:x="125440" fg:w="68"/><text x="28.0110%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (105 samples, 0.02%)</title><rect x="27.7555%" y="645" width="0.0232%" height="15" fill="rgb(208,58,18)" fg:x="125415" fg:w="105"/><text x="28.0055%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (132 samples, 0.03%)</title><rect x="27.7550%" y="725" width="0.0292%" height="15" fill="rgb(242,225,1)" fg:x="125413" fg:w="132"/><text x="28.0050%" y="735.50"></text></g><g><title>G1RemSet::update_rem_set (132 samples, 0.03%)</title><rect x="27.7550%" y="709" width="0.0292%" height="15" fill="rgb(249,39,40)" fg:x="125413" fg:w="132"/><text x="28.0050%" y="719.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (132 samples, 0.03%)</title><rect x="27.7550%" y="693" width="0.0292%" height="15" fill="rgb(207,72,44)" fg:x="125413" fg:w="132"/><text x="28.0050%" y="703.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (132 samples, 0.03%)</title><rect x="27.7550%" y="677" width="0.0292%" height="15" fill="rgb(215,193,12)" fg:x="125413" fg:w="132"/><text x="28.0050%" y="687.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (131 samples, 0.03%)</title><rect x="27.7552%" y="661" width="0.0290%" height="15" fill="rgb(248,41,39)" fg:x="125414" fg:w="131"/><text x="28.0052%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (53 samples, 0.01%)</title><rect x="27.7873%" y="629" width="0.0117%" height="15" fill="rgb(253,85,4)" fg:x="125559" fg:w="53"/><text x="28.0373%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (47 samples, 0.01%)</title><rect x="27.7887%" y="613" width="0.0104%" height="15" fill="rgb(243,70,31)" fg:x="125565" fg:w="47"/><text x="28.0387%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.01%)</title><rect x="27.7849%" y="645" width="0.0148%" height="15" fill="rgb(253,195,26)" fg:x="125548" fg:w="67"/><text x="28.0349%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (97 samples, 0.02%)</title><rect x="27.7849%" y="661" width="0.0215%" height="15" fill="rgb(243,42,11)" fg:x="125548" fg:w="97"/><text x="28.0349%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (105 samples, 0.02%)</title><rect x="27.7842%" y="677" width="0.0232%" height="15" fill="rgb(239,66,17)" fg:x="125545" fg:w="105"/><text x="28.0342%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (116 samples, 0.03%)</title><rect x="27.7842%" y="725" width="0.0257%" height="15" fill="rgb(217,132,21)" fg:x="125545" fg:w="116"/><text x="28.0342%" y="735.50"></text></g><g><title>G1CollectionSet::iterate_from (116 samples, 0.03%)</title><rect x="27.7842%" y="709" width="0.0257%" height="15" fill="rgb(252,202,21)" fg:x="125545" fg:w="116"/><text x="28.0342%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (116 samples, 0.03%)</title><rect x="27.7842%" y="693" width="0.0257%" height="15" fill="rgb(233,98,36)" fg:x="125545" fg:w="116"/><text x="28.0342%" y="703.50"></text></g><g><title>HandleArea::oops_do (49 samples, 0.01%)</title><rect x="27.8112%" y="645" width="0.0108%" height="15" fill="rgb(216,153,54)" fg:x="125667" fg:w="49"/><text x="28.0612%" y="655.50"></text></g><g><title>frame::oops_do_internal (53 samples, 0.01%)</title><rect x="27.8221%" y="645" width="0.0117%" height="15" fill="rgb(250,99,7)" fg:x="125716" fg:w="53"/><text x="28.0721%" y="655.50"></text></g><g><title>OopMapSet::oops_do (53 samples, 0.01%)</title><rect x="27.8221%" y="629" width="0.0117%" height="15" fill="rgb(207,56,50)" fg:x="125716" fg:w="53"/><text x="28.0721%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.01%)</title><rect x="27.8234%" y="613" width="0.0104%" height="15" fill="rgb(244,61,34)" fg:x="125722" fg:w="47"/><text x="28.0734%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (75 samples, 0.02%)</title><rect x="27.8382%" y="597" width="0.0166%" height="15" fill="rgb(241,50,38)" fg:x="125789" fg:w="75"/><text x="28.0882%" y="607.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (47 samples, 0.01%)</title><rect x="27.8444%" y="581" width="0.0104%" height="15" fill="rgb(212,166,30)" fg:x="125817" fg:w="47"/><text x="28.0944%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (108 samples, 0.02%)</title><rect x="27.8340%" y="629" width="0.0239%" height="15" fill="rgb(249,127,32)" fg:x="125770" fg:w="108"/><text x="28.0840%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (107 samples, 0.02%)</title><rect x="27.8342%" y="613" width="0.0237%" height="15" fill="rgb(209,103,0)" fg:x="125771" fg:w="107"/><text x="28.0842%" y="623.50"></text></g><g><title>G1RootProcessor::process_java_roots (216 samples, 0.05%)</title><rect x="27.8108%" y="709" width="0.0478%" height="15" fill="rgb(238,209,51)" fg:x="125665" fg:w="216"/><text x="28.0608%" y="719.50"></text></g><g><title>Threads::possibly_parallel_oops_do (216 samples, 0.05%)</title><rect x="27.8108%" y="693" width="0.0478%" height="15" fill="rgb(237,56,23)" fg:x="125665" fg:w="216"/><text x="28.0608%" y="703.50"></text></g><g><title>Threads::possibly_parallel_threads_do (216 samples, 0.05%)</title><rect x="27.8108%" y="677" width="0.0478%" height="15" fill="rgb(215,153,46)" fg:x="125665" fg:w="216"/><text x="28.0608%" y="687.50"></text></g><g><title>JavaThread::oops_do (215 samples, 0.05%)</title><rect x="27.8110%" y="661" width="0.0476%" height="15" fill="rgb(224,49,31)" fg:x="125666" fg:w="215"/><text x="28.0610%" y="671.50"></text></g><g><title>frame::oops_interpreted_do (112 samples, 0.02%)</title><rect x="27.8338%" y="645" width="0.0248%" height="15" fill="rgb(250,18,42)" fg:x="125769" fg:w="112"/><text x="28.0838%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (239 samples, 0.05%)</title><rect x="27.8099%" y="725" width="0.0529%" height="15" fill="rgb(215,176,39)" fg:x="125661" fg:w="239"/><text x="28.0599%" y="735.50"></text></g><g><title>G1ParTask::work (967 samples, 0.21%)</title><rect x="27.6490%" y="741" width="0.2140%" height="15" fill="rgb(223,77,29)" fg:x="124934" fg:w="967"/><text x="27.8990%" y="751.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (55 samples, 0.01%)</title><rect x="27.8655%" y="709" width="0.0122%" height="15" fill="rgb(234,94,52)" fg:x="125912" fg:w="55"/><text x="28.1155%" y="719.50"></text></g><g><title>SpinPause (51 samples, 0.01%)</title><rect x="27.8663%" y="693" width="0.0113%" height="15" fill="rgb(220,154,50)" fg:x="125916" fg:w="51"/><text x="28.1163%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (66 samples, 0.01%)</title><rect x="27.8655%" y="725" width="0.0146%" height="15" fill="rgb(212,11,10)" fg:x="125912" fg:w="66"/><text x="28.1155%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (70 samples, 0.02%)</title><rect x="27.8801%" y="693" width="0.0155%" height="15" fill="rgb(205,166,19)" fg:x="125978" fg:w="70"/><text x="28.1301%" y="703.50"></text></g><g><title>SpinPause (70 samples, 0.02%)</title><rect x="27.8801%" y="677" width="0.0155%" height="15" fill="rgb(244,198,16)" fg:x="125978" fg:w="70"/><text x="28.1301%" y="687.50"></text></g><g><title>G1STWRefProcTaskProxy::work (137 samples, 0.03%)</title><rect x="27.8655%" y="741" width="0.0303%" height="15" fill="rgb(219,69,12)" fg:x="125912" fg:w="137"/><text x="28.1155%" y="751.50"></text></g><g><title>RefProcPhase3Task::work (71 samples, 0.02%)</title><rect x="27.8801%" y="725" width="0.0157%" height="15" fill="rgb(245,30,7)" fg:x="125978" fg:w="71"/><text x="28.1301%" y="735.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (71 samples, 0.02%)</title><rect x="27.8801%" y="709" width="0.0157%" height="15" fill="rgb(218,221,48)" fg:x="125978" fg:w="71"/><text x="28.1301%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (103 samples, 0.02%)</title><rect x="27.9071%" y="517" width="0.0228%" height="15" fill="rgb(216,66,15)" fg:x="126100" fg:w="103"/><text x="28.1571%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (98 samples, 0.02%)</title><rect x="27.9082%" y="501" width="0.0217%" height="15" fill="rgb(226,122,50)" fg:x="126105" fg:w="98"/><text x="28.1582%" y="511.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="27.9084%" y="485" width="0.0215%" height="15" fill="rgb(239,156,16)" fg:x="126106" fg:w="97"/><text x="28.1584%" y="495.50"></text></g><g><title>finish_task_switch (108 samples, 0.02%)</title><rect x="27.9068%" y="533" width="0.0239%" height="15" fill="rgb(224,27,38)" fg:x="126099" fg:w="108"/><text x="28.1568%" y="543.50"></text></g><g><title>futex_wait_queue_me (119 samples, 0.03%)</title><rect x="27.9057%" y="581" width="0.0263%" height="15" fill="rgb(224,39,27)" fg:x="126094" fg:w="119"/><text x="28.1557%" y="591.50"></text></g><g><title>schedule (119 samples, 0.03%)</title><rect x="27.9057%" y="565" width="0.0263%" height="15" fill="rgb(215,92,29)" fg:x="126094" fg:w="119"/><text x="28.1557%" y="575.50"></text></g><g><title>__schedule (119 samples, 0.03%)</title><rect x="27.9057%" y="549" width="0.0263%" height="15" fill="rgb(207,159,16)" fg:x="126094" fg:w="119"/><text x="28.1557%" y="559.50"></text></g><g><title>do_syscall_64 (123 samples, 0.03%)</title><rect x="27.9051%" y="645" width="0.0272%" height="15" fill="rgb(238,163,47)" fg:x="126091" fg:w="123"/><text x="28.1551%" y="655.50"></text></g><g><title>__x64_sys_futex (123 samples, 0.03%)</title><rect x="27.9051%" y="629" width="0.0272%" height="15" fill="rgb(219,91,49)" fg:x="126091" fg:w="123"/><text x="28.1551%" y="639.50"></text></g><g><title>do_futex (123 samples, 0.03%)</title><rect x="27.9051%" y="613" width="0.0272%" height="15" fill="rgb(227,167,31)" fg:x="126091" fg:w="123"/><text x="28.1551%" y="623.50"></text></g><g><title>futex_wait (122 samples, 0.03%)</title><rect x="27.9053%" y="597" width="0.0270%" height="15" fill="rgb(234,80,54)" fg:x="126092" fg:w="122"/><text x="28.1553%" y="607.50"></text></g><g><title>__GI___clone (1,291 samples, 0.29%)</title><rect x="27.6472%" y="821" width="0.2857%" height="15" fill="rgb(212,114,2)" fg:x="124926" fg:w="1291"/><text x="27.8972%" y="831.50"></text></g><g><title>start_thread (1,291 samples, 0.29%)</title><rect x="27.6472%" y="805" width="0.2857%" height="15" fill="rgb(234,50,24)" fg:x="124926" fg:w="1291"/><text x="27.8972%" y="815.50"></text></g><g><title>thread_native_entry (1,291 samples, 0.29%)</title><rect x="27.6472%" y="789" width="0.2857%" height="15" fill="rgb(221,68,8)" fg:x="124926" fg:w="1291"/><text x="27.8972%" y="799.50"></text></g><g><title>Thread::call_run (1,291 samples, 0.29%)</title><rect x="27.6472%" y="773" width="0.2857%" height="15" fill="rgb(254,180,31)" fg:x="124926" fg:w="1291"/><text x="27.8972%" y="783.50"></text></g><g><title>GangWorker::loop (1,291 samples, 0.29%)</title><rect x="27.6472%" y="757" width="0.2857%" height="15" fill="rgb(247,130,50)" fg:x="124926" fg:w="1291"/><text x="27.8972%" y="767.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (131 samples, 0.03%)</title><rect x="27.9040%" y="741" width="0.0290%" height="15" fill="rgb(211,109,4)" fg:x="126086" fg:w="131"/><text x="28.1540%" y="751.50"></text></g><g><title>PosixSemaphore::wait (130 samples, 0.03%)</title><rect x="27.9042%" y="725" width="0.0288%" height="15" fill="rgb(238,50,21)" fg:x="126087" fg:w="130"/><text x="28.1542%" y="735.50"></text></g><g><title>__new_sem_wait_slow (130 samples, 0.03%)</title><rect x="27.9042%" y="709" width="0.0288%" height="15" fill="rgb(225,57,45)" fg:x="126087" fg:w="130"/><text x="28.1542%" y="719.50"></text></g><g><title>do_futex_wait (129 samples, 0.03%)</title><rect x="27.9044%" y="693" width="0.0285%" height="15" fill="rgb(209,196,50)" fg:x="126088" fg:w="129"/><text x="28.1544%" y="703.50"></text></g><g><title>futex_abstimed_wait_cancelable (129 samples, 0.03%)</title><rect x="27.9044%" y="677" width="0.0285%" height="15" fill="rgb(242,140,13)" fg:x="126088" fg:w="129"/><text x="28.1544%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (127 samples, 0.03%)</title><rect x="27.9048%" y="661" width="0.0281%" height="15" fill="rgb(217,111,7)" fg:x="126090" fg:w="127"/><text x="28.1548%" y="671.50"></text></g><g><title>GC_Thread#7 (1,321 samples, 0.29%)</title><rect x="27.6410%" y="837" width="0.2923%" height="15" fill="rgb(253,193,51)" fg:x="124898" fg:w="1321"/><text x="27.8910%" y="847.50"></text></g><g><title>Reference_Handl (54 samples, 0.01%)</title><rect x="27.9338%" y="837" width="0.0120%" height="15" fill="rgb(252,70,29)" fg:x="126221" fg:w="54"/><text x="28.1838%" y="847.50"></text></g><g><title>[perf-42779.map] (54 samples, 0.01%)</title><rect x="27.9338%" y="821" width="0.0120%" height="15" fill="rgb(232,127,12)" fg:x="126221" fg:w="54"/><text x="28.1838%" y="831.50"></text></g><g><title>[perf-42779.map] (151 samples, 0.03%)</title><rect x="27.9473%" y="821" width="0.0334%" height="15" fill="rgb(211,180,21)" fg:x="126282" fg:w="151"/><text x="28.1973%" y="831.50"></text></g><g><title>Service_Thread (177 samples, 0.04%)</title><rect x="27.9460%" y="837" width="0.0392%" height="15" fill="rgb(229,72,13)" fg:x="126276" fg:w="177"/><text x="28.1960%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (388 samples, 0.09%)</title><rect x="28.0100%" y="485" width="0.0859%" height="15" fill="rgb(240,211,49)" fg:x="126565" fg:w="388"/><text x="28.2600%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (385 samples, 0.09%)</title><rect x="28.0106%" y="469" width="0.0852%" height="15" fill="rgb(219,149,40)" fg:x="126568" fg:w="385"/><text x="28.2606%" y="479.50"></text></g><g><title>native_write_msr (384 samples, 0.08%)</title><rect x="28.0109%" y="453" width="0.0850%" height="15" fill="rgb(210,127,46)" fg:x="126569" fg:w="384"/><text x="28.2609%" y="463.50"></text></g><g><title>finish_task_switch (410 samples, 0.09%)</title><rect x="28.0089%" y="501" width="0.0907%" height="15" fill="rgb(220,106,7)" fg:x="126560" fg:w="410"/><text x="28.2589%" y="511.50"></text></g><g><title>futex_wait_queue_me (465 samples, 0.10%)</title><rect x="28.0005%" y="549" width="0.1029%" height="15" fill="rgb(249,31,22)" fg:x="126522" fg:w="465"/><text x="28.2505%" y="559.50"></text></g><g><title>schedule (447 samples, 0.10%)</title><rect x="28.0044%" y="533" width="0.0989%" height="15" fill="rgb(253,1,49)" fg:x="126540" fg:w="447"/><text x="28.2544%" y="543.50"></text></g><g><title>__schedule (442 samples, 0.10%)</title><rect x="28.0055%" y="517" width="0.0978%" height="15" fill="rgb(227,144,33)" fg:x="126545" fg:w="442"/><text x="28.2555%" y="527.50"></text></g><g><title>do_futex (495 samples, 0.11%)</title><rect x="27.9991%" y="581" width="0.1095%" height="15" fill="rgb(249,163,44)" fg:x="126516" fg:w="495"/><text x="28.2491%" y="591.50"></text></g><g><title>futex_wait (494 samples, 0.11%)</title><rect x="27.9993%" y="565" width="0.1093%" height="15" fill="rgb(234,15,39)" fg:x="126517" fg:w="494"/><text x="28.2493%" y="575.50"></text></g><g><title>do_syscall_64 (499 samples, 0.11%)</title><rect x="27.9987%" y="613" width="0.1104%" height="15" fill="rgb(207,66,16)" fg:x="126514" fg:w="499"/><text x="28.2487%" y="623.50"></text></g><g><title>__x64_sys_futex (499 samples, 0.11%)</title><rect x="27.9987%" y="597" width="0.1104%" height="15" fill="rgb(233,112,24)" fg:x="126514" fg:w="499"/><text x="28.2487%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (517 samples, 0.11%)</title><rect x="27.9956%" y="677" width="0.1144%" height="15" fill="rgb(230,90,22)" fg:x="126500" fg:w="517"/><text x="28.2456%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (515 samples, 0.11%)</title><rect x="27.9960%" y="661" width="0.1140%" height="15" fill="rgb(229,61,13)" fg:x="126502" fg:w="515"/><text x="28.2460%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (507 samples, 0.11%)</title><rect x="27.9978%" y="645" width="0.1122%" height="15" fill="rgb(225,57,24)" fg:x="126510" fg:w="507"/><text x="28.2478%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (503 samples, 0.11%)</title><rect x="27.9987%" y="629" width="0.1113%" height="15" fill="rgb(208,169,48)" fg:x="126514" fg:w="503"/><text x="28.2487%" y="639.50"></text></g><g><title>Monitor::IWait (561 samples, 0.12%)</title><rect x="27.9934%" y="709" width="0.1242%" height="15" fill="rgb(244,218,51)" fg:x="126490" fg:w="561"/><text x="28.2434%" y="719.50"></text></g><g><title>os::PlatformEvent::park (555 samples, 0.12%)</title><rect x="27.9947%" y="693" width="0.1228%" height="15" fill="rgb(214,148,10)" fg:x="126496" fg:w="555"/><text x="28.2447%" y="703.50"></text></g><g><title>Monitor::wait (564 samples, 0.12%)</title><rect x="27.9929%" y="725" width="0.1248%" height="15" fill="rgb(225,174,27)" fg:x="126488" fg:w="564"/><text x="28.2429%" y="735.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (73 samples, 0.02%)</title><rect x="28.1239%" y="677" width="0.0162%" height="15" fill="rgb(230,96,26)" fg:x="127080" fg:w="73"/><text x="28.3739%" y="687.50"></text></g><g><title>NMethodSweeper::process_compiled_method (93 samples, 0.02%)</title><rect x="28.1235%" y="693" width="0.0206%" height="15" fill="rgb(232,10,30)" fg:x="127078" fg:w="93"/><text x="28.3735%" y="703.50"></text></g><g><title>NMethodSweeper::possibly_sweep (123 samples, 0.03%)</title><rect x="28.1177%" y="725" width="0.0272%" height="15" fill="rgb(222,8,50)" fg:x="127052" fg:w="123"/><text x="28.3677%" y="735.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (115 samples, 0.03%)</title><rect x="28.1195%" y="709" width="0.0255%" height="15" fill="rgb(213,81,27)" fg:x="127060" fg:w="115"/><text x="28.3695%" y="719.50"></text></g><g><title>__GI___clone (705 samples, 0.16%)</title><rect x="27.9903%" y="821" width="0.1560%" height="15" fill="rgb(245,50,10)" fg:x="126476" fg:w="705"/><text x="28.2403%" y="831.50"></text></g><g><title>start_thread (705 samples, 0.16%)</title><rect x="27.9903%" y="805" width="0.1560%" height="15" fill="rgb(216,100,18)" fg:x="126476" fg:w="705"/><text x="28.2403%" y="815.50"></text></g><g><title>thread_native_entry (705 samples, 0.16%)</title><rect x="27.9903%" y="789" width="0.1560%" height="15" fill="rgb(236,147,54)" fg:x="126476" fg:w="705"/><text x="28.2403%" y="799.50"></text></g><g><title>Thread::call_run (705 samples, 0.16%)</title><rect x="27.9903%" y="773" width="0.1560%" height="15" fill="rgb(205,143,26)" fg:x="126476" fg:w="705"/><text x="28.2403%" y="783.50"></text></g><g><title>JavaThread::thread_main_inner (705 samples, 0.16%)</title><rect x="27.9903%" y="757" width="0.1560%" height="15" fill="rgb(236,26,9)" fg:x="126476" fg:w="705"/><text x="28.2403%" y="767.50"></text></g><g><title>NMethodSweeper::sweeper_loop (704 samples, 0.16%)</title><rect x="27.9905%" y="741" width="0.1558%" height="15" fill="rgb(221,165,53)" fg:x="126477" fg:w="704"/><text x="28.2405%" y="751.50"></text></g><g><title>Sweeper_thread (722 samples, 0.16%)</title><rect x="27.9872%" y="837" width="0.1598%" height="15" fill="rgb(214,110,17)" fg:x="126462" fg:w="722"/><text x="28.2372%" y="847.50"></text></g><g><title>JVM_Sleep (55 samples, 0.01%)</title><rect x="28.1773%" y="805" width="0.0122%" height="15" fill="rgb(237,197,12)" fg:x="127321" fg:w="55"/><text x="28.4273%" y="815.50"></text></g><g><title>os::sleep (54 samples, 0.01%)</title><rect x="28.1775%" y="789" width="0.0120%" height="15" fill="rgb(205,84,17)" fg:x="127322" fg:w="54"/><text x="28.4275%" y="799.50"></text></g><g><title>[perf-42779.map] (237 samples, 0.05%)</title><rect x="28.1492%" y="821" width="0.0525%" height="15" fill="rgb(237,18,45)" fg:x="127194" fg:w="237"/><text x="28.3992%" y="831.50"></text></g><g><title>Thread-0 (258 samples, 0.06%)</title><rect x="28.1470%" y="837" width="0.0571%" height="15" fill="rgb(221,87,14)" fg:x="127184" fg:w="258"/><text x="28.3970%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.02%)</title><rect x="28.2120%" y="485" width="0.0181%" height="15" fill="rgb(238,186,15)" fg:x="127478" fg:w="82"/><text x="28.4620%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (79 samples, 0.02%)</title><rect x="28.2127%" y="469" width="0.0175%" height="15" fill="rgb(208,115,11)" fg:x="127481" fg:w="79"/><text x="28.4627%" y="479.50"></text></g><g><title>native_write_msr (79 samples, 0.02%)</title><rect x="28.2127%" y="453" width="0.0175%" height="15" fill="rgb(254,175,0)" fg:x="127481" fg:w="79"/><text x="28.4627%" y="463.50"></text></g><g><title>finish_task_switch (89 samples, 0.02%)</title><rect x="28.2114%" y="501" width="0.0197%" height="15" fill="rgb(227,24,42)" fg:x="127475" fg:w="89"/><text x="28.4614%" y="511.50"></text></g><g><title>futex_wait_queue_me (99 samples, 0.02%)</title><rect x="28.2100%" y="549" width="0.0219%" height="15" fill="rgb(223,211,37)" fg:x="127469" fg:w="99"/><text x="28.4600%" y="559.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="28.2105%" y="533" width="0.0215%" height="15" fill="rgb(235,49,27)" fg:x="127471" fg:w="97"/><text x="28.4605%" y="543.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="28.2105%" y="517" width="0.0215%" height="15" fill="rgb(254,97,51)" fg:x="127471" fg:w="97"/><text x="28.4605%" y="527.50"></text></g><g><title>do_futex (103 samples, 0.02%)</title><rect x="28.2096%" y="581" width="0.0228%" height="15" fill="rgb(249,51,40)" fg:x="127467" fg:w="103"/><text x="28.4596%" y="591.50"></text></g><g><title>futex_wait (103 samples, 0.02%)</title><rect x="28.2096%" y="565" width="0.0228%" height="15" fill="rgb(210,128,45)" fg:x="127467" fg:w="103"/><text x="28.4596%" y="575.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.02%)</title><rect x="28.2096%" y="597" width="0.0230%" height="15" fill="rgb(224,137,50)" fg:x="127467" fg:w="104"/><text x="28.4596%" y="607.50"></text></g><g><title>do_syscall_64 (105 samples, 0.02%)</title><rect x="28.2096%" y="613" width="0.0232%" height="15" fill="rgb(242,15,9)" fg:x="127467" fg:w="105"/><text x="28.4596%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (109 samples, 0.02%)</title><rect x="28.2091%" y="677" width="0.0241%" height="15" fill="rgb(233,187,41)" fg:x="127465" fg:w="109"/><text x="28.4591%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (109 samples, 0.02%)</title><rect x="28.2091%" y="661" width="0.0241%" height="15" fill="rgb(227,2,29)" fg:x="127465" fg:w="109"/><text x="28.4591%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (108 samples, 0.02%)</title><rect x="28.2094%" y="645" width="0.0239%" height="15" fill="rgb(222,70,3)" fg:x="127466" fg:w="108"/><text x="28.4594%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.02%)</title><rect x="28.2096%" y="629" width="0.0237%" height="15" fill="rgb(213,11,42)" fg:x="127467" fg:w="107"/><text x="28.4596%" y="639.50"></text></g><g><title>Monitor::wait (116 samples, 0.03%)</title><rect x="28.2083%" y="725" width="0.0257%" height="15" fill="rgb(225,150,9)" fg:x="127461" fg:w="116"/><text x="28.4583%" y="735.50"></text></g><g><title>Monitor::IWait (116 samples, 0.03%)</title><rect x="28.2083%" y="709" width="0.0257%" height="15" fill="rgb(230,162,45)" fg:x="127461" fg:w="116"/><text x="28.4583%" y="719.50"></text></g><g><title>os::PlatformEvent::park (115 samples, 0.03%)</title><rect x="28.2085%" y="693" width="0.0255%" height="15" fill="rgb(222,14,52)" fg:x="127462" fg:w="115"/><text x="28.4585%" y="703.50"></text></g><g><title>VM_Periodic_Tas (136 samples, 0.03%)</title><rect x="28.2041%" y="837" width="0.0301%" height="15" fill="rgb(254,198,14)" fg:x="127442" fg:w="136"/><text x="28.4541%" y="847.50"></text></g><g><title>__GI___clone (130 samples, 0.03%)</title><rect x="28.2054%" y="821" width="0.0288%" height="15" fill="rgb(220,217,30)" fg:x="127448" fg:w="130"/><text x="28.4554%" y="831.50"></text></g><g><title>start_thread (130 samples, 0.03%)</title><rect x="28.2054%" y="805" width="0.0288%" height="15" fill="rgb(215,146,41)" fg:x="127448" fg:w="130"/><text x="28.4554%" y="815.50"></text></g><g><title>thread_native_entry (130 samples, 0.03%)</title><rect x="28.2054%" y="789" width="0.0288%" height="15" fill="rgb(217,27,36)" fg:x="127448" fg:w="130"/><text x="28.4554%" y="799.50"></text></g><g><title>Thread::call_run (130 samples, 0.03%)</title><rect x="28.2054%" y="773" width="0.0288%" height="15" fill="rgb(219,218,39)" fg:x="127448" fg:w="130"/><text x="28.4554%" y="783.50"></text></g><g><title>WatcherThread::run (130 samples, 0.03%)</title><rect x="28.2054%" y="757" width="0.0288%" height="15" fill="rgb(219,4,42)" fg:x="127448" fg:w="130"/><text x="28.4554%" y="767.50"></text></g><g><title>WatcherThread::sleep (120 samples, 0.03%)</title><rect x="28.2076%" y="741" width="0.0266%" height="15" fill="rgb(249,119,36)" fg:x="127458" fg:w="120"/><text x="28.4576%" y="751.50"></text></g><g><title>[unknown] (93 samples, 0.02%)</title><rect x="28.2386%" y="821" width="0.0206%" height="15" fill="rgb(209,23,33)" fg:x="127598" fg:w="93"/><text x="28.4886%" y="831.50"></text></g><g><title>vframe::sender (85 samples, 0.02%)</title><rect x="28.2404%" y="805" width="0.0188%" height="15" fill="rgb(211,10,0)" fg:x="127606" fg:w="85"/><text x="28.4904%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="28.2727%" y="485" width="0.0146%" height="15" fill="rgb(208,99,37)" fg:x="127752" fg:w="66"/><text x="28.5227%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (64 samples, 0.01%)</title><rect x="28.2731%" y="469" width="0.0142%" height="15" fill="rgb(213,132,31)" fg:x="127754" fg:w="64"/><text x="28.5231%" y="479.50"></text></g><g><title>native_write_msr (64 samples, 0.01%)</title><rect x="28.2731%" y="453" width="0.0142%" height="15" fill="rgb(243,129,40)" fg:x="127754" fg:w="64"/><text x="28.5231%" y="463.50"></text></g><g><title>finish_task_switch (70 samples, 0.02%)</title><rect x="28.2724%" y="501" width="0.0155%" height="15" fill="rgb(210,66,33)" fg:x="127751" fg:w="70"/><text x="28.5224%" y="511.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.02%)</title><rect x="28.2709%" y="549" width="0.0173%" height="15" fill="rgb(209,189,4)" fg:x="127744" fg:w="78"/><text x="28.5209%" y="559.50"></text></g><g><title>schedule (77 samples, 0.02%)</title><rect x="28.2711%" y="533" width="0.0170%" height="15" fill="rgb(214,107,37)" fg:x="127745" fg:w="77"/><text x="28.5211%" y="543.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="28.2713%" y="517" width="0.0168%" height="15" fill="rgb(245,88,54)" fg:x="127746" fg:w="76"/><text x="28.5213%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="28.2709%" y="629" width="0.0175%" height="15" fill="rgb(205,146,20)" fg:x="127744" fg:w="79"/><text x="28.5209%" y="639.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="28.2709%" y="613" width="0.0175%" height="15" fill="rgb(220,161,25)" fg:x="127744" fg:w="79"/><text x="28.5209%" y="623.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="28.2709%" y="597" width="0.0175%" height="15" fill="rgb(215,152,15)" fg:x="127744" fg:w="79"/><text x="28.5209%" y="607.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="28.2709%" y="581" width="0.0175%" height="15" fill="rgb(233,192,44)" fg:x="127744" fg:w="79"/><text x="28.5209%" y="591.50"></text></g><g><title>futex_wait (79 samples, 0.02%)</title><rect x="28.2709%" y="565" width="0.0175%" height="15" fill="rgb(240,170,46)" fg:x="127744" fg:w="79"/><text x="28.5209%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (82 samples, 0.02%)</title><rect x="28.2704%" y="677" width="0.0181%" height="15" fill="rgb(207,104,33)" fg:x="127742" fg:w="82"/><text x="28.5204%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.02%)</title><rect x="28.2704%" y="661" width="0.0181%" height="15" fill="rgb(219,21,39)" fg:x="127742" fg:w="82"/><text x="28.5204%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (80 samples, 0.02%)</title><rect x="28.2709%" y="645" width="0.0177%" height="15" fill="rgb(214,133,29)" fg:x="127744" fg:w="80"/><text x="28.5209%" y="655.50"></text></g><g><title>Monitor::wait (87 samples, 0.02%)</title><rect x="28.2698%" y="725" width="0.0193%" height="15" fill="rgb(226,93,6)" fg:x="127739" fg:w="87"/><text x="28.5198%" y="735.50"></text></g><g><title>Monitor::IWait (87 samples, 0.02%)</title><rect x="28.2698%" y="709" width="0.0193%" height="15" fill="rgb(252,222,34)" fg:x="127739" fg:w="87"/><text x="28.5198%" y="719.50"></text></g><g><title>os::PlatformEvent::park (86 samples, 0.02%)</title><rect x="28.2700%" y="693" width="0.0190%" height="15" fill="rgb(252,92,48)" fg:x="127740" fg:w="86"/><text x="28.5200%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.02%)</title><rect x="28.3543%" y="469" width="0.0173%" height="15" fill="rgb(245,223,24)" fg:x="128121" fg:w="78"/><text x="28.6043%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.02%)</title><rect x="28.3550%" y="453" width="0.0166%" height="15" fill="rgb(205,176,3)" fg:x="128124" fg:w="75"/><text x="28.6050%" y="463.50"></text></g><g><title>native_write_msr (75 samples, 0.02%)</title><rect x="28.3550%" y="437" width="0.0166%" height="15" fill="rgb(235,151,15)" fg:x="128124" fg:w="75"/><text x="28.6050%" y="447.50"></text></g><g><title>finish_task_switch (83 samples, 0.02%)</title><rect x="28.3537%" y="485" width="0.0184%" height="15" fill="rgb(237,209,11)" fg:x="128118" fg:w="83"/><text x="28.6037%" y="495.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="28.3534%" y="597" width="0.0190%" height="15" fill="rgb(243,227,24)" fg:x="128117" fg:w="86"/><text x="28.6034%" y="607.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="28.3534%" y="581" width="0.0190%" height="15" fill="rgb(239,193,16)" fg:x="128117" fg:w="86"/><text x="28.6034%" y="591.50"></text></g><g><title>do_futex (86 samples, 0.02%)</title><rect x="28.3534%" y="565" width="0.0190%" height="15" fill="rgb(231,27,9)" fg:x="128117" fg:w="86"/><text x="28.6034%" y="575.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="28.3534%" y="549" width="0.0190%" height="15" fill="rgb(219,169,10)" fg:x="128117" fg:w="86"/><text x="28.6034%" y="559.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.02%)</title><rect x="28.3537%" y="533" width="0.0188%" height="15" fill="rgb(244,229,43)" fg:x="128118" fg:w="85"/><text x="28.6037%" y="543.50"></text></g><g><title>schedule (85 samples, 0.02%)</title><rect x="28.3537%" y="517" width="0.0188%" height="15" fill="rgb(254,38,20)" fg:x="128118" fg:w="85"/><text x="28.6037%" y="527.50"></text></g><g><title>__schedule (85 samples, 0.02%)</title><rect x="28.3537%" y="501" width="0.0188%" height="15" fill="rgb(250,47,30)" fg:x="128118" fg:w="85"/><text x="28.6037%" y="511.50"></text></g><g><title>Monitor::wait (94 samples, 0.02%)</title><rect x="28.3519%" y="709" width="0.0208%" height="15" fill="rgb(224,124,36)" fg:x="128110" fg:w="94"/><text x="28.6019%" y="719.50"></text></g><g><title>Monitor::IWait (94 samples, 0.02%)</title><rect x="28.3519%" y="693" width="0.0208%" height="15" fill="rgb(246,68,51)" fg:x="128110" fg:w="94"/><text x="28.6019%" y="703.50"></text></g><g><title>os::PlatformEvent::park (87 samples, 0.02%)</title><rect x="28.3534%" y="677" width="0.0193%" height="15" fill="rgb(253,43,49)" fg:x="128117" fg:w="87"/><text x="28.6034%" y="687.50"></text></g><g><title>__pthread_cond_wait (87 samples, 0.02%)</title><rect x="28.3534%" y="661" width="0.0193%" height="15" fill="rgb(219,54,36)" fg:x="128117" fg:w="87"/><text x="28.6034%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (87 samples, 0.02%)</title><rect x="28.3534%" y="645" width="0.0193%" height="15" fill="rgb(227,133,34)" fg:x="128117" fg:w="87"/><text x="28.6034%" y="655.50"></text></g><g><title>futex_wait_cancelable (87 samples, 0.02%)</title><rect x="28.3534%" y="629" width="0.0193%" height="15" fill="rgb(247,227,15)" fg:x="128117" fg:w="87"/><text x="28.6034%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="28.3534%" y="613" width="0.0193%" height="15" fill="rgb(229,96,14)" fg:x="128117" fg:w="87"/><text x="28.6034%" y="623.50"></text></g><g><title>PosixSemaphore::signal (48 samples, 0.01%)</title><rect x="28.3751%" y="661" width="0.0106%" height="15" fill="rgb(220,79,17)" fg:x="128215" fg:w="48"/><text x="28.6251%" y="671.50"></text></g><g><title>__new_sem_post (48 samples, 0.01%)</title><rect x="28.3751%" y="645" width="0.0106%" height="15" fill="rgb(205,131,53)" fg:x="128215" fg:w="48"/><text x="28.6251%" y="655.50"></text></g><g><title>futex_wake (46 samples, 0.01%)</title><rect x="28.3756%" y="629" width="0.0102%" height="15" fill="rgb(209,50,29)" fg:x="128217" fg:w="46"/><text x="28.6256%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.01%)</title><rect x="28.3756%" y="613" width="0.0102%" height="15" fill="rgb(245,86,46)" fg:x="128217" fg:w="46"/><text x="28.6256%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.02%)</title><rect x="28.3886%" y="453" width="0.0184%" height="15" fill="rgb(235,66,46)" fg:x="128276" fg:w="83"/><text x="28.6386%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="28.3891%" y="437" width="0.0179%" height="15" fill="rgb(232,148,31)" fg:x="128278" fg:w="81"/><text x="28.6391%" y="447.50"></text></g><g><title>native_write_msr (81 samples, 0.02%)</title><rect x="28.3891%" y="421" width="0.0179%" height="15" fill="rgb(217,149,8)" fg:x="128278" fg:w="81"/><text x="28.6391%" y="431.50"></text></g><g><title>finish_task_switch (92 samples, 0.02%)</title><rect x="28.3875%" y="469" width="0.0204%" height="15" fill="rgb(209,183,11)" fg:x="128271" fg:w="92"/><text x="28.6375%" y="479.50"></text></g><g><title>futex_wait_queue_me (103 samples, 0.02%)</title><rect x="28.3862%" y="517" width="0.0228%" height="15" fill="rgb(208,55,20)" fg:x="128265" fg:w="103"/><text x="28.6362%" y="527.50"></text></g><g><title>schedule (103 samples, 0.02%)</title><rect x="28.3862%" y="501" width="0.0228%" height="15" fill="rgb(218,39,14)" fg:x="128265" fg:w="103"/><text x="28.6362%" y="511.50"></text></g><g><title>__schedule (102 samples, 0.02%)</title><rect x="28.3864%" y="485" width="0.0226%" height="15" fill="rgb(216,169,33)" fg:x="128266" fg:w="102"/><text x="28.6364%" y="495.50"></text></g><g><title>WorkGang::run_task (154 samples, 0.03%)</title><rect x="28.3751%" y="693" width="0.0341%" height="15" fill="rgb(233,80,24)" fg:x="128215" fg:w="154"/><text x="28.6251%" y="703.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (154 samples, 0.03%)</title><rect x="28.3751%" y="677" width="0.0341%" height="15" fill="rgb(213,179,31)" fg:x="128215" fg:w="154"/><text x="28.6251%" y="687.50"></text></g><g><title>PosixSemaphore::wait (106 samples, 0.02%)</title><rect x="28.3858%" y="661" width="0.0235%" height="15" fill="rgb(209,19,5)" fg:x="128263" fg:w="106"/><text x="28.6358%" y="671.50"></text></g><g><title>__new_sem_wait_slow (106 samples, 0.02%)</title><rect x="28.3858%" y="645" width="0.0235%" height="15" fill="rgb(219,18,35)" fg:x="128263" fg:w="106"/><text x="28.6358%" y="655.50"></text></g><g><title>do_futex_wait (106 samples, 0.02%)</title><rect x="28.3858%" y="629" width="0.0235%" height="15" fill="rgb(209,169,16)" fg:x="128263" fg:w="106"/><text x="28.6358%" y="639.50"></text></g><g><title>futex_abstimed_wait_cancelable (106 samples, 0.02%)</title><rect x="28.3858%" y="613" width="0.0235%" height="15" fill="rgb(245,90,51)" fg:x="128263" fg:w="106"/><text x="28.6358%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="28.3862%" y="597" width="0.0230%" height="15" fill="rgb(220,99,45)" fg:x="128265" fg:w="104"/><text x="28.6362%" y="607.50"></text></g><g><title>do_syscall_64 (104 samples, 0.02%)</title><rect x="28.3862%" y="581" width="0.0230%" height="15" fill="rgb(249,89,25)" fg:x="128265" fg:w="104"/><text x="28.6362%" y="591.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.02%)</title><rect x="28.3862%" y="565" width="0.0230%" height="15" fill="rgb(239,193,0)" fg:x="128265" fg:w="104"/><text x="28.6362%" y="575.50"></text></g><g><title>do_futex (104 samples, 0.02%)</title><rect x="28.3862%" y="549" width="0.0230%" height="15" fill="rgb(231,126,1)" fg:x="128265" fg:w="104"/><text x="28.6362%" y="559.50"></text></g><g><title>futex_wait (104 samples, 0.02%)</title><rect x="28.3862%" y="533" width="0.0230%" height="15" fill="rgb(243,166,3)" fg:x="128265" fg:w="104"/><text x="28.6362%" y="543.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (167 samples, 0.04%)</title><rect x="28.3734%" y="709" width="0.0370%" height="15" fill="rgb(223,22,34)" fg:x="128207" fg:w="167"/><text x="28.6234%" y="719.50"></text></g><g><title>SafepointSynchronize::begin (627 samples, 0.14%)</title><rect x="28.2890%" y="725" width="0.1388%" height="15" fill="rgb(251,52,51)" fg:x="127826" fg:w="627"/><text x="28.5390%" y="735.50"></text></g><g><title>VM_Deoptimize::doit (48 samples, 0.01%)</title><rect x="28.4428%" y="693" width="0.0106%" height="15" fill="rgb(221,165,28)" fg:x="128521" fg:w="48"/><text x="28.6928%" y="703.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (72 samples, 0.02%)</title><rect x="28.4541%" y="677" width="0.0159%" height="15" fill="rgb(218,121,47)" fg:x="128572" fg:w="72"/><text x="28.7041%" y="687.50"></text></g><g><title>VM_G1CollectForAllocation::doit (73 samples, 0.02%)</title><rect x="28.4541%" y="693" width="0.0162%" height="15" fill="rgb(209,120,9)" fg:x="128572" fg:w="73"/><text x="28.7041%" y="703.50"></text></g><g><title>VM_Operation::evaluate (168 samples, 0.04%)</title><rect x="28.4375%" y="709" width="0.0372%" height="15" fill="rgb(236,68,12)" fg:x="128497" fg:w="168"/><text x="28.6875%" y="719.50"></text></g><g><title>VMThread::evaluate_operation (170 samples, 0.04%)</title><rect x="28.4373%" y="725" width="0.0376%" height="15" fill="rgb(225,194,26)" fg:x="128496" fg:w="170"/><text x="28.6873%" y="735.50"></text></g><g><title>Thread::call_run (944 samples, 0.21%)</title><rect x="28.2669%" y="773" width="0.2089%" height="15" fill="rgb(231,84,39)" fg:x="127726" fg:w="944"/><text x="28.5169%" y="783.50"></text></g><g><title>VMThread::run (944 samples, 0.21%)</title><rect x="28.2669%" y="757" width="0.2089%" height="15" fill="rgb(210,11,45)" fg:x="127726" fg:w="944"/><text x="28.5169%" y="767.50"></text></g><g><title>VMThread::loop (944 samples, 0.21%)</title><rect x="28.2669%" y="741" width="0.2089%" height="15" fill="rgb(224,54,52)" fg:x="127726" fg:w="944"/><text x="28.5169%" y="751.50"></text></g><g><title>__GI___clone (982 samples, 0.22%)</title><rect x="28.2592%" y="821" width="0.2173%" height="15" fill="rgb(238,102,14)" fg:x="127691" fg:w="982"/><text x="28.5092%" y="831.50"></text></g><g><title>start_thread (950 samples, 0.21%)</title><rect x="28.2662%" y="805" width="0.2102%" height="15" fill="rgb(243,160,52)" fg:x="127723" fg:w="950"/><text x="28.5162%" y="815.50"></text></g><g><title>thread_native_entry (949 samples, 0.21%)</title><rect x="28.2665%" y="789" width="0.2100%" height="15" fill="rgb(216,114,19)" fg:x="127724" fg:w="949"/><text x="28.5165%" y="799.50"></text></g><g><title>VM_Thread (1,101 samples, 0.24%)</title><rect x="28.2342%" y="837" width="0.2437%" height="15" fill="rgb(244,166,37)" fg:x="127578" fg:w="1101"/><text x="28.4842%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="28.5312%" y="661" width="0.0162%" height="15" fill="rgb(246,29,44)" fg:x="128920" fg:w="73"/><text x="28.7812%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (71 samples, 0.02%)</title><rect x="28.5316%" y="645" width="0.0157%" height="15" fill="rgb(215,56,53)" fg:x="128922" fg:w="71"/><text x="28.7816%" y="655.50"></text></g><g><title>native_write_msr (71 samples, 0.02%)</title><rect x="28.5316%" y="629" width="0.0157%" height="15" fill="rgb(217,60,2)" fg:x="128922" fg:w="71"/><text x="28.7816%" y="639.50"></text></g><g><title>finish_task_switch (80 samples, 0.02%)</title><rect x="28.5303%" y="677" width="0.0177%" height="15" fill="rgb(207,26,24)" fg:x="128916" fg:w="80"/><text x="28.7803%" y="687.50"></text></g><g><title>futex_wait (95 samples, 0.02%)</title><rect x="28.5281%" y="741" width="0.0210%" height="15" fill="rgb(252,210,15)" fg:x="128906" fg:w="95"/><text x="28.7781%" y="751.50"></text></g><g><title>futex_wait_queue_me (95 samples, 0.02%)</title><rect x="28.5281%" y="725" width="0.0210%" height="15" fill="rgb(253,209,26)" fg:x="128906" fg:w="95"/><text x="28.7781%" y="735.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="28.5283%" y="709" width="0.0208%" height="15" fill="rgb(238,170,14)" fg:x="128907" fg:w="94"/><text x="28.7783%" y="719.50"></text></g><g><title>__schedule (93 samples, 0.02%)</title><rect x="28.5285%" y="693" width="0.0206%" height="15" fill="rgb(216,178,15)" fg:x="128908" fg:w="93"/><text x="28.7785%" y="703.50"></text></g><g><title>__x64_sys_futex (107 samples, 0.02%)</title><rect x="28.5276%" y="773" width="0.0237%" height="15" fill="rgb(250,197,2)" fg:x="128904" fg:w="107"/><text x="28.7776%" y="783.50"></text></g><g><title>do_futex (106 samples, 0.02%)</title><rect x="28.5278%" y="757" width="0.0235%" height="15" fill="rgb(212,70,42)" fg:x="128905" fg:w="106"/><text x="28.7778%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (55 samples, 0.01%)</title><rect x="28.5551%" y="677" width="0.0122%" height="15" fill="rgb(227,213,9)" fg:x="129028" fg:w="55"/><text x="28.8051%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (53 samples, 0.01%)</title><rect x="28.5555%" y="661" width="0.0117%" height="15" fill="rgb(245,99,25)" fg:x="129030" fg:w="53"/><text x="28.8055%" y="671.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="28.5557%" y="645" width="0.0115%" height="15" fill="rgb(250,82,29)" fg:x="129031" fg:w="52"/><text x="28.8057%" y="655.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="28.5548%" y="693" width="0.0131%" height="15" fill="rgb(241,226,54)" fg:x="129027" fg:w="59"/><text x="28.8048%" y="703.50"></text></g><g><title>do_nanosleep (68 samples, 0.02%)</title><rect x="28.5537%" y="741" width="0.0150%" height="15" fill="rgb(221,99,41)" fg:x="129022" fg:w="68"/><text x="28.8037%" y="751.50"></text></g><g><title>schedule (66 samples, 0.01%)</title><rect x="28.5542%" y="725" width="0.0146%" height="15" fill="rgb(213,90,21)" fg:x="129024" fg:w="66"/><text x="28.8042%" y="735.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="28.5542%" y="709" width="0.0146%" height="15" fill="rgb(205,208,24)" fg:x="129024" fg:w="66"/><text x="28.8042%" y="719.50"></text></g><g><title>__x64_sys_nanosleep (69 samples, 0.02%)</title><rect x="28.5537%" y="773" width="0.0153%" height="15" fill="rgb(246,31,12)" fg:x="129022" fg:w="69"/><text x="28.8037%" y="783.50"></text></g><g><title>hrtimer_nanosleep (69 samples, 0.02%)</title><rect x="28.5537%" y="757" width="0.0153%" height="15" fill="rgb(213,154,6)" fg:x="129022" fg:w="69"/><text x="28.8037%" y="767.50"></text></g><g><title>do_syscall_64 (239 samples, 0.05%)</title><rect x="28.5188%" y="789" width="0.0529%" height="15" fill="rgb(222,163,29)" fg:x="128864" fg:w="239"/><text x="28.7688%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (245 samples, 0.05%)</title><rect x="28.5188%" y="805" width="0.0542%" height="15" fill="rgb(227,201,8)" fg:x="128864" fg:w="245"/><text x="28.7688%" y="815.50"></text></g><g><title>ret_from_fork (47 samples, 0.01%)</title><rect x="28.5732%" y="805" width="0.0104%" height="15" fill="rgb(233,9,32)" fg:x="129110" fg:w="47"/><text x="28.8232%" y="815.50"></text></g><g><title>schedule_tail (46 samples, 0.01%)</title><rect x="28.5734%" y="789" width="0.0102%" height="15" fill="rgb(217,54,24)" fg:x="129111" fg:w="46"/><text x="28.8234%" y="799.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="28.5734%" y="773" width="0.0102%" height="15" fill="rgb(235,192,0)" fg:x="129111" fg:w="46"/><text x="28.8234%" y="783.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (472 samples, 0.10%)</title><rect x="28.4796%" y="821" width="0.1045%" height="15" fill="rgb(235,45,9)" fg:x="128687" fg:w="472"/><text x="28.7296%" y="831.50"></text></g><g><title>bazel (499 samples, 0.11%)</title><rect x="28.4791%" y="837" width="0.1104%" height="15" fill="rgb(246,42,40)" fg:x="128685" fg:w="499"/><text x="28.7291%" y="847.50"></text></g><g><title>[unknown] (47 samples, 0.01%)</title><rect x="28.5918%" y="821" width="0.0104%" height="15" fill="rgb(248,111,24)" fg:x="129194" fg:w="47"/><text x="28.8418%" y="831.50"></text></g><g><title>__libc_start_main (51 samples, 0.01%)</title><rect x="28.6082%" y="805" width="0.0113%" height="15" fill="rgb(249,65,22)" fg:x="129268" fg:w="51"/><text x="28.8582%" y="815.50"></text></g><g><title>main (46 samples, 0.01%)</title><rect x="28.6093%" y="789" width="0.0102%" height="15" fill="rgb(238,111,51)" fg:x="129273" fg:w="46"/><text x="28.8593%" y="799.50"></text></g><g><title>_dl_catch_exception (54 samples, 0.01%)</title><rect x="28.6210%" y="725" width="0.0120%" height="15" fill="rgb(250,118,22)" fg:x="129326" fg:w="54"/><text x="28.8710%" y="735.50"></text></g><g><title>openaux (54 samples, 0.01%)</title><rect x="28.6210%" y="709" width="0.0120%" height="15" fill="rgb(234,84,26)" fg:x="129326" fg:w="54"/><text x="28.8710%" y="719.50"></text></g><g><title>_dl_map_object (54 samples, 0.01%)</title><rect x="28.6210%" y="693" width="0.0120%" height="15" fill="rgb(243,172,12)" fg:x="129326" fg:w="54"/><text x="28.8710%" y="703.50"></text></g><g><title>_dl_map_object_deps (56 samples, 0.01%)</title><rect x="28.6208%" y="741" width="0.0124%" height="15" fill="rgb(236,150,49)" fg:x="129325" fg:w="56"/><text x="28.8708%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (125 samples, 0.03%)</title><rect x="28.6469%" y="693" width="0.0277%" height="15" fill="rgb(225,197,26)" fg:x="129443" fg:w="125"/><text x="28.8969%" y="703.50"></text></g><g><title>do_lookup_x (72 samples, 0.02%)</title><rect x="28.6586%" y="677" width="0.0159%" height="15" fill="rgb(214,17,42)" fg:x="129496" fg:w="72"/><text x="28.9086%" y="687.50"></text></g><g><title>elf_machine_rela (161 samples, 0.04%)</title><rect x="28.6396%" y="709" width="0.0356%" height="15" fill="rgb(224,165,40)" fg:x="129410" fg:w="161"/><text x="28.8896%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (183 samples, 0.04%)</title><rect x="28.6358%" y="725" width="0.0405%" height="15" fill="rgb(246,100,4)" fg:x="129393" fg:w="183"/><text x="28.8858%" y="735.50"></text></g><g><title>_dl_relocate_object (194 samples, 0.04%)</title><rect x="28.6338%" y="741" width="0.0429%" height="15" fill="rgb(222,103,0)" fg:x="129384" fg:w="194"/><text x="28.8838%" y="751.50"></text></g><g><title>[ld-2.31.so] (264 samples, 0.06%)</title><rect x="28.6197%" y="757" width="0.0584%" height="15" fill="rgb(227,189,26)" fg:x="129320" fg:w="264"/><text x="28.8697%" y="767.50"></text></g><g><title>_dl_start_final (268 samples, 0.06%)</title><rect x="28.6195%" y="789" width="0.0593%" height="15" fill="rgb(214,202,17)" fg:x="129319" fg:w="268"/><text x="28.8695%" y="799.50"></text></g><g><title>_dl_sysdep_start (267 samples, 0.06%)</title><rect x="28.6197%" y="773" width="0.0591%" height="15" fill="rgb(229,111,3)" fg:x="129320" fg:w="267"/><text x="28.8697%" y="783.50"></text></g><g><title>_dl_start (270 samples, 0.06%)</title><rect x="28.6195%" y="805" width="0.0598%" height="15" fill="rgb(229,172,15)" fg:x="129319" fg:w="270"/><text x="28.8695%" y="815.50"></text></g><g><title>_start (324 samples, 0.07%)</title><rect x="28.6082%" y="821" width="0.0717%" height="15" fill="rgb(230,224,35)" fg:x="129268" fg:w="324"/><text x="28.8582%" y="831.50"></text></g><g><title>build-runfiles (470 samples, 0.10%)</title><rect x="28.5896%" y="837" width="0.1040%" height="15" fill="rgb(251,141,6)" fg:x="129184" fg:w="470"/><text x="28.8396%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="28.6819%" y="821" width="0.0117%" height="15" fill="rgb(225,208,6)" fg:x="129601" fg:w="53"/><text x="28.9319%" y="831.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="28.6819%" y="805" width="0.0117%" height="15" fill="rgb(246,181,16)" fg:x="129601" fg:w="53"/><text x="28.9319%" y="815.50"></text></g><g><title>__GI__dl_catch_exception (46 samples, 0.01%)</title><rect x="28.7140%" y="549" width="0.0102%" height="15" fill="rgb(227,129,36)" fg:x="129746" fg:w="46"/><text x="28.9640%" y="559.50"></text></g><g><title>dl_open_worker (46 samples, 0.01%)</title><rect x="28.7140%" y="533" width="0.0102%" height="15" fill="rgb(248,117,24)" fg:x="129746" fg:w="46"/><text x="28.9640%" y="543.50"></text></g><g><title>__GI___nss_lookup (48 samples, 0.01%)</title><rect x="28.7140%" y="693" width="0.0106%" height="15" fill="rgb(214,185,35)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="703.50"></text></g><g><title>__GI___nss_lookup_function (48 samples, 0.01%)</title><rect x="28.7140%" y="677" width="0.0106%" height="15" fill="rgb(236,150,34)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="687.50"></text></g><g><title>nss_load_library (48 samples, 0.01%)</title><rect x="28.7140%" y="661" width="0.0106%" height="15" fill="rgb(243,228,27)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="671.50"></text></g><g><title>__GI___libc_dlopen_mode (48 samples, 0.01%)</title><rect x="28.7140%" y="645" width="0.0106%" height="15" fill="rgb(245,77,44)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="655.50"></text></g><g><title>dlerror_run (48 samples, 0.01%)</title><rect x="28.7140%" y="629" width="0.0106%" height="15" fill="rgb(235,214,42)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="639.50"></text></g><g><title>__GI__dl_catch_error (48 samples, 0.01%)</title><rect x="28.7140%" y="613" width="0.0106%" height="15" fill="rgb(221,74,3)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="623.50"></text></g><g><title>__GI__dl_catch_exception (48 samples, 0.01%)</title><rect x="28.7140%" y="597" width="0.0106%" height="15" fill="rgb(206,121,29)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="607.50"></text></g><g><title>do_dlopen (48 samples, 0.01%)</title><rect x="28.7140%" y="581" width="0.0106%" height="15" fill="rgb(249,131,53)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="591.50"></text></g><g><title>_dl_open (48 samples, 0.01%)</title><rect x="28.7140%" y="565" width="0.0106%" height="15" fill="rgb(236,170,29)" fg:x="129746" fg:w="48"/><text x="28.9640%" y="575.50"></text></g><g><title>getpwuid (98 samples, 0.02%)</title><rect x="28.7137%" y="725" width="0.0217%" height="15" fill="rgb(247,96,15)" fg:x="129745" fg:w="98"/><text x="28.9637%" y="735.50"></text></g><g><title>__getpwuid_r (98 samples, 0.02%)</title><rect x="28.7137%" y="709" width="0.0217%" height="15" fill="rgb(211,210,7)" fg:x="129745" fg:w="98"/><text x="28.9637%" y="719.50"></text></g><g><title>[bash] (114 samples, 0.03%)</title><rect x="28.7113%" y="741" width="0.0252%" height="15" fill="rgb(240,88,50)" fg:x="129734" fg:w="114"/><text x="28.9613%" y="751.50"></text></g><g><title>initialize_shell_variables (140 samples, 0.03%)</title><rect x="28.7111%" y="757" width="0.0310%" height="15" fill="rgb(209,229,26)" fg:x="129733" fg:w="140"/><text x="28.9611%" y="767.50"></text></g><g><title>[bash] (173 samples, 0.04%)</title><rect x="28.7071%" y="773" width="0.0383%" height="15" fill="rgb(210,68,23)" fg:x="129715" fg:w="173"/><text x="28.9571%" y="783.50"></text></g><g><title>exec_builtin (47 samples, 0.01%)</title><rect x="28.7569%" y="677" width="0.0104%" height="15" fill="rgb(229,180,13)" fg:x="129940" fg:w="47"/><text x="29.0069%" y="687.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="28.7551%" y="693" width="0.0126%" height="15" fill="rgb(236,53,44)" fg:x="129932" fg:w="57"/><text x="29.0051%" y="703.50"></text></g><g><title>execute_command (69 samples, 0.02%)</title><rect x="28.7549%" y="725" width="0.0153%" height="15" fill="rgb(244,214,29)" fg:x="129931" fg:w="69"/><text x="29.0049%" y="735.50"></text></g><g><title>execute_command_internal (69 samples, 0.02%)</title><rect x="28.7549%" y="709" width="0.0153%" height="15" fill="rgb(220,75,29)" fg:x="129931" fg:w="69"/><text x="29.0049%" y="719.50"></text></g><g><title>execute_command (79 samples, 0.02%)</title><rect x="28.7536%" y="757" width="0.0175%" height="15" fill="rgb(214,183,37)" fg:x="129925" fg:w="79"/><text x="29.0036%" y="767.50"></text></g><g><title>execute_command_internal (78 samples, 0.02%)</title><rect x="28.7538%" y="741" width="0.0173%" height="15" fill="rgb(239,117,29)" fg:x="129926" fg:w="78"/><text x="29.0038%" y="751.50"></text></g><g><title>reader_loop (129 samples, 0.03%)</title><rect x="28.7531%" y="773" width="0.0285%" height="15" fill="rgb(237,171,35)" fg:x="129923" fg:w="129"/><text x="29.0031%" y="783.50"></text></g><g><title>read_command (48 samples, 0.01%)</title><rect x="28.7710%" y="757" width="0.0106%" height="15" fill="rgb(229,178,53)" fg:x="130004" fg:w="48"/><text x="29.0210%" y="767.50"></text></g><g><title>parse_command (48 samples, 0.01%)</title><rect x="28.7710%" y="741" width="0.0106%" height="15" fill="rgb(210,102,19)" fg:x="130004" fg:w="48"/><text x="29.0210%" y="751.50"></text></g><g><title>yyparse (48 samples, 0.01%)</title><rect x="28.7710%" y="725" width="0.0106%" height="15" fill="rgb(235,127,22)" fg:x="130004" fg:w="48"/><text x="29.0210%" y="735.50"></text></g><g><title>__libc_start_main (407 samples, 0.09%)</title><rect x="28.7064%" y="805" width="0.0901%" height="15" fill="rgb(244,31,31)" fg:x="129712" fg:w="407"/><text x="28.9564%" y="815.50"></text></g><g><title>main (407 samples, 0.09%)</title><rect x="28.7064%" y="789" width="0.0901%" height="15" fill="rgb(231,43,21)" fg:x="129712" fg:w="407"/><text x="28.9564%" y="799.50"></text></g><g><title>ksys_mmap_pgoff (48 samples, 0.01%)</title><rect x="28.8034%" y="581" width="0.0106%" height="15" fill="rgb(217,131,35)" fg:x="130150" fg:w="48"/><text x="29.0534%" y="591.50"></text></g><g><title>vm_mmap_pgoff (47 samples, 0.01%)</title><rect x="28.8036%" y="565" width="0.0104%" height="15" fill="rgb(221,149,4)" fg:x="130151" fg:w="47"/><text x="29.0536%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="28.8034%" y="613" width="0.0111%" height="15" fill="rgb(232,170,28)" fg:x="130150" fg:w="50"/><text x="29.0534%" y="623.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="28.8034%" y="597" width="0.0111%" height="15" fill="rgb(238,56,10)" fg:x="130150" fg:w="50"/><text x="29.0534%" y="607.50"></text></g><g><title>__mmap64 (52 samples, 0.01%)</title><rect x="28.8031%" y="645" width="0.0115%" height="15" fill="rgb(235,196,14)" fg:x="130149" fg:w="52"/><text x="29.0531%" y="655.50"></text></g><g><title>__mmap64 (52 samples, 0.01%)</title><rect x="28.8031%" y="629" width="0.0115%" height="15" fill="rgb(216,45,48)" fg:x="130149" fg:w="52"/><text x="29.0531%" y="639.50"></text></g><g><title>_dl_map_segments (68 samples, 0.02%)</title><rect x="28.7998%" y="661" width="0.0150%" height="15" fill="rgb(238,213,17)" fg:x="130134" fg:w="68"/><text x="29.0498%" y="671.50"></text></g><g><title>_dl_map_object_from_fd (85 samples, 0.02%)</title><rect x="28.7996%" y="677" width="0.0188%" height="15" fill="rgb(212,13,2)" fg:x="130133" fg:w="85"/><text x="29.0496%" y="687.50"></text></g><g><title>_dl_catch_exception (125 samples, 0.03%)</title><rect x="28.7983%" y="725" width="0.0277%" height="15" fill="rgb(240,114,20)" fg:x="130127" fg:w="125"/><text x="29.0483%" y="735.50"></text></g><g><title>openaux (125 samples, 0.03%)</title><rect x="28.7983%" y="709" width="0.0277%" height="15" fill="rgb(228,41,40)" fg:x="130127" fg:w="125"/><text x="29.0483%" y="719.50"></text></g><g><title>_dl_map_object (125 samples, 0.03%)</title><rect x="28.7983%" y="693" width="0.0277%" height="15" fill="rgb(244,132,35)" fg:x="130127" fg:w="125"/><text x="29.0483%" y="703.50"></text></g><g><title>_dl_map_object_deps (129 samples, 0.03%)</title><rect x="28.7980%" y="741" width="0.0285%" height="15" fill="rgb(253,189,4)" fg:x="130126" fg:w="129"/><text x="29.0480%" y="751.50"></text></g><g><title>elf_machine_rela (54 samples, 0.01%)</title><rect x="28.8326%" y="709" width="0.0120%" height="15" fill="rgb(224,37,19)" fg:x="130282" fg:w="54"/><text x="29.0826%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (97 samples, 0.02%)</title><rect x="28.8288%" y="725" width="0.0215%" height="15" fill="rgb(235,223,18)" fg:x="130265" fg:w="97"/><text x="29.0788%" y="735.50"></text></g><g><title>_dl_relocate_object (107 samples, 0.02%)</title><rect x="28.8270%" y="741" width="0.0237%" height="15" fill="rgb(235,163,25)" fg:x="130257" fg:w="107"/><text x="29.0770%" y="751.50"></text></g><g><title>[ld-2.31.so] (257 samples, 0.06%)</title><rect x="28.7965%" y="757" width="0.0569%" height="15" fill="rgb(217,145,28)" fg:x="130119" fg:w="257"/><text x="29.0465%" y="767.50"></text></g><g><title>_dl_start_final (260 samples, 0.06%)</title><rect x="28.7965%" y="789" width="0.0575%" height="15" fill="rgb(223,223,32)" fg:x="130119" fg:w="260"/><text x="29.0465%" y="799.50"></text></g><g><title>_dl_sysdep_start (260 samples, 0.06%)</title><rect x="28.7965%" y="773" width="0.0575%" height="15" fill="rgb(227,189,39)" fg:x="130119" fg:w="260"/><text x="29.0465%" y="783.50"></text></g><g><title>_dl_start (275 samples, 0.06%)</title><rect x="28.7965%" y="805" width="0.0609%" height="15" fill="rgb(248,10,22)" fg:x="130119" fg:w="275"/><text x="29.0465%" y="815.50"></text></g><g><title>_start (689 samples, 0.15%)</title><rect x="28.7062%" y="821" width="0.1525%" height="15" fill="rgb(248,46,39)" fg:x="129711" fg:w="689"/><text x="28.9562%" y="831.50"></text></g><g><title>begin_new_exec (69 samples, 0.02%)</title><rect x="28.8653%" y="725" width="0.0153%" height="15" fill="rgb(248,113,48)" fg:x="130430" fg:w="69"/><text x="29.1153%" y="735.50"></text></g><g><title>mmput (68 samples, 0.02%)</title><rect x="28.8655%" y="709" width="0.0150%" height="15" fill="rgb(245,16,25)" fg:x="130431" fg:w="68"/><text x="29.1155%" y="719.50"></text></g><g><title>exit_mmap (68 samples, 0.02%)</title><rect x="28.8655%" y="693" width="0.0150%" height="15" fill="rgb(249,152,16)" fg:x="130431" fg:w="68"/><text x="29.1155%" y="703.50"></text></g><g><title>__x64_sys_execve (101 samples, 0.02%)</title><rect x="28.8638%" y="789" width="0.0224%" height="15" fill="rgb(250,16,1)" fg:x="130423" fg:w="101"/><text x="29.1138%" y="799.50"></text></g><g><title>do_execveat_common (101 samples, 0.02%)</title><rect x="28.8638%" y="773" width="0.0224%" height="15" fill="rgb(249,138,3)" fg:x="130423" fg:w="101"/><text x="29.1138%" y="783.50"></text></g><g><title>bprm_execve (101 samples, 0.02%)</title><rect x="28.8638%" y="757" width="0.0224%" height="15" fill="rgb(227,71,41)" fg:x="130423" fg:w="101"/><text x="29.1138%" y="767.50"></text></g><g><title>load_elf_binary (101 samples, 0.02%)</title><rect x="28.8638%" y="741" width="0.0224%" height="15" fill="rgb(209,184,23)" fg:x="130423" fg:w="101"/><text x="29.1138%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="28.8638%" y="821" width="0.0226%" height="15" fill="rgb(223,215,31)" fg:x="130423" fg:w="102"/><text x="29.1138%" y="831.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="28.8638%" y="805" width="0.0226%" height="15" fill="rgb(210,146,28)" fg:x="130423" fg:w="102"/><text x="29.1138%" y="815.50"></text></g><g><title>cc_wrapper.sh (872 samples, 0.19%)</title><rect x="28.6936%" y="837" width="0.1930%" height="15" fill="rgb(209,183,41)" fg:x="129654" fg:w="872"/><text x="28.9436%" y="847.50"></text></g><g><title>[[heap]] (341 samples, 0.08%)</title><rect x="28.8875%" y="821" width="0.0755%" height="15" fill="rgb(209,224,45)" fg:x="130530" fg:w="341"/><text x="29.1375%" y="831.50"></text></g><g><title>[[stack]] (201 samples, 0.04%)</title><rect x="28.9629%" y="821" width="0.0445%" height="15" fill="rgb(224,209,51)" fg:x="130871" fg:w="201"/><text x="29.2129%" y="831.50"></text></g><g><title>[anon] (47 samples, 0.01%)</title><rect x="29.0103%" y="821" width="0.0104%" height="15" fill="rgb(223,17,39)" fg:x="131085" fg:w="47"/><text x="29.2603%" y="831.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (46 samples, 0.01%)</title><rect x="29.0391%" y="709" width="0.0102%" height="15" fill="rgb(234,204,37)" fg:x="131215" fg:w="46"/><text x="29.2891%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (46 samples, 0.01%)</title><rect x="29.0391%" y="693" width="0.0102%" height="15" fill="rgb(236,120,5)" fg:x="131215" fg:w="46"/><text x="29.2891%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (46 samples, 0.01%)</title><rect x="29.0391%" y="677" width="0.0102%" height="15" fill="rgb(248,97,27)" fg:x="131215" fg:w="46"/><text x="29.2891%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (46 samples, 0.01%)</title><rect x="29.0391%" y="661" width="0.0102%" height="15" fill="rgb(240,66,17)" fg:x="131215" fg:w="46"/><text x="29.2891%" y="671.50"></text></g><g><title>clang::Parser::ParseLinkage (46 samples, 0.01%)</title><rect x="29.0391%" y="645" width="0.0102%" height="15" fill="rgb(210,79,3)" fg:x="131215" fg:w="46"/><text x="29.2891%" y="655.50"></text></g><g><title>ExecuteCC1Tool (57 samples, 0.01%)</title><rect x="29.0371%" y="805" width="0.0126%" height="15" fill="rgb(214,176,27)" fg:x="131206" fg:w="57"/><text x="29.2871%" y="815.50"></text></g><g><title>cc1_main (57 samples, 0.01%)</title><rect x="29.0371%" y="789" width="0.0126%" height="15" fill="rgb(235,185,3)" fg:x="131206" fg:w="57"/><text x="29.2871%" y="799.50"></text></g><g><title>clang::ExecuteCompilerInvocation (54 samples, 0.01%)</title><rect x="29.0377%" y="773" width="0.0120%" height="15" fill="rgb(227,24,12)" fg:x="131209" fg:w="54"/><text x="29.2877%" y="783.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (54 samples, 0.01%)</title><rect x="29.0377%" y="757" width="0.0120%" height="15" fill="rgb(252,169,48)" fg:x="131209" fg:w="54"/><text x="29.2877%" y="767.50"></text></g><g><title>clang::FrontendAction::Execute (54 samples, 0.01%)</title><rect x="29.0377%" y="741" width="0.0120%" height="15" fill="rgb(212,65,1)" fg:x="131209" fg:w="54"/><text x="29.2877%" y="751.50"></text></g><g><title>clang::ParseAST (54 samples, 0.01%)</title><rect x="29.0377%" y="725" width="0.0120%" height="15" fill="rgb(242,39,24)" fg:x="131209" fg:w="54"/><text x="29.2877%" y="735.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (54 samples, 0.01%)</title><rect x="29.0665%" y="789" width="0.0120%" height="15" fill="rgb(249,32,23)" fg:x="131339" fg:w="54"/><text x="29.3165%" y="799.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (54 samples, 0.01%)</title><rect x="29.0665%" y="773" width="0.0120%" height="15" fill="rgb(251,195,23)" fg:x="131339" fg:w="54"/><text x="29.3165%" y="783.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (46 samples, 0.01%)</title><rect x="29.0880%" y="677" width="0.0102%" height="15" fill="rgb(236,174,8)" fg:x="131436" fg:w="46"/><text x="29.3380%" y="687.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (107 samples, 0.02%)</title><rect x="29.0813%" y="693" width="0.0237%" height="15" fill="rgb(220,197,8)" fg:x="131406" fg:w="107"/><text x="29.3313%" y="703.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (87 samples, 0.02%)</title><rect x="29.1112%" y="693" width="0.0193%" height="15" fill="rgb(240,108,37)" fg:x="131541" fg:w="87"/><text x="29.3612%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (226 samples, 0.05%)</title><rect x="29.0809%" y="725" width="0.0500%" height="15" fill="rgb(232,176,24)" fg:x="131404" fg:w="226"/><text x="29.3309%" y="735.50"></text></g><g><title>clang::EmitBackendOutput (226 samples, 0.05%)</title><rect x="29.0809%" y="709" width="0.0500%" height="15" fill="rgb(243,35,29)" fg:x="131404" fg:w="226"/><text x="29.3309%" y="719.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (62 samples, 0.01%)</title><rect x="29.1355%" y="485" width="0.0137%" height="15" fill="rgb(210,37,18)" fg:x="131651" fg:w="62"/><text x="29.3855%" y="495.50"></text></g><g><title>clang::Preprocessor::HandleDirective (182 samples, 0.04%)</title><rect x="29.1355%" y="501" width="0.0403%" height="15" fill="rgb(224,184,40)" fg:x="131651" fg:w="182"/><text x="29.3855%" y="511.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (185 samples, 0.04%)</title><rect x="29.1353%" y="581" width="0.0409%" height="15" fill="rgb(236,39,29)" fg:x="131650" fg:w="185"/><text x="29.3853%" y="591.50"></text></g><g><title>clang::Preprocessor::Lex (185 samples, 0.04%)</title><rect x="29.1353%" y="565" width="0.0409%" height="15" fill="rgb(232,48,39)" fg:x="131650" fg:w="185"/><text x="29.3853%" y="575.50"></text></g><g><title>clang::Preprocessor::CachingLex (184 samples, 0.04%)</title><rect x="29.1355%" y="549" width="0.0407%" height="15" fill="rgb(236,34,42)" fg:x="131651" fg:w="184"/><text x="29.3855%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (184 samples, 0.04%)</title><rect x="29.1355%" y="533" width="0.0407%" height="15" fill="rgb(243,106,37)" fg:x="131651" fg:w="184"/><text x="29.3855%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (184 samples, 0.04%)</title><rect x="29.1355%" y="517" width="0.0407%" height="15" fill="rgb(218,96,6)" fg:x="131651" fg:w="184"/><text x="29.3855%" y="527.50"></text></g><g><title>clang::Parser::ParseDeclGroup (222 samples, 0.05%)</title><rect x="29.1353%" y="597" width="0.0491%" height="15" fill="rgb(235,130,12)" fg:x="131650" fg:w="222"/><text x="29.3853%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclaration (238 samples, 0.05%)</title><rect x="29.1353%" y="629" width="0.0527%" height="15" fill="rgb(231,95,0)" fg:x="131650" fg:w="238"/><text x="29.3853%" y="639.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (238 samples, 0.05%)</title><rect x="29.1353%" y="613" width="0.0527%" height="15" fill="rgb(228,12,23)" fg:x="131650" fg:w="238"/><text x="29.3853%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclGroup (160 samples, 0.04%)</title><rect x="29.1880%" y="597" width="0.0354%" height="15" fill="rgb(216,12,1)" fg:x="131888" fg:w="160"/><text x="29.4380%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (66 samples, 0.01%)</title><rect x="29.2088%" y="581" width="0.0146%" height="15" fill="rgb(219,59,3)" fg:x="131982" fg:w="66"/><text x="29.4588%" y="591.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (51 samples, 0.01%)</title><rect x="29.2121%" y="565" width="0.0113%" height="15" fill="rgb(215,208,46)" fg:x="131997" fg:w="51"/><text x="29.4621%" y="575.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (449 samples, 0.10%)</title><rect x="29.1353%" y="645" width="0.0994%" height="15" fill="rgb(254,224,29)" fg:x="131650" fg:w="449"/><text x="29.3853%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (211 samples, 0.05%)</title><rect x="29.1880%" y="629" width="0.0467%" height="15" fill="rgb(232,14,29)" fg:x="131888" fg:w="211"/><text x="29.4380%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (211 samples, 0.05%)</title><rect x="29.1880%" y="613" width="0.0467%" height="15" fill="rgb(208,45,52)" fg:x="131888" fg:w="211"/><text x="29.4380%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (464 samples, 0.10%)</title><rect x="29.1329%" y="725" width="0.1027%" height="15" fill="rgb(234,191,28)" fg:x="131639" fg:w="464"/><text x="29.3829%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (464 samples, 0.10%)</title><rect x="29.1329%" y="709" width="0.1027%" height="15" fill="rgb(244,67,43)" fg:x="131639" fg:w="464"/><text x="29.3829%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (464 samples, 0.10%)</title><rect x="29.1329%" y="693" width="0.1027%" height="15" fill="rgb(236,189,24)" fg:x="131639" fg:w="464"/><text x="29.3829%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (464 samples, 0.10%)</title><rect x="29.1329%" y="677" width="0.1027%" height="15" fill="rgb(239,214,33)" fg:x="131639" fg:w="464"/><text x="29.3829%" y="687.50"></text></g><g><title>clang::Parser::ParseLinkage (453 samples, 0.10%)</title><rect x="29.1353%" y="661" width="0.1003%" height="15" fill="rgb(226,176,41)" fg:x="131650" fg:w="453"/><text x="29.3853%" y="671.50"></text></g><g><title>cc1_main (769 samples, 0.17%)</title><rect x="29.0665%" y="805" width="0.1702%" height="15" fill="rgb(248,47,8)" fg:x="131339" fg:w="769"/><text x="29.3165%" y="815.50"></text></g><g><title>clang::ExecuteCompilerInvocation (715 samples, 0.16%)</title><rect x="29.0784%" y="789" width="0.1582%" height="15" fill="rgb(218,81,44)" fg:x="131393" fg:w="715"/><text x="29.3284%" y="799.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (715 samples, 0.16%)</title><rect x="29.0784%" y="773" width="0.1582%" height="15" fill="rgb(213,98,6)" fg:x="131393" fg:w="715"/><text x="29.3284%" y="783.50"></text></g><g><title>clang::FrontendAction::Execute (708 samples, 0.16%)</title><rect x="29.0800%" y="757" width="0.1567%" height="15" fill="rgb(222,85,22)" fg:x="131400" fg:w="708"/><text x="29.3300%" y="767.50"></text></g><g><title>clang::ParseAST (708 samples, 0.16%)</title><rect x="29.0800%" y="741" width="0.1567%" height="15" fill="rgb(239,46,39)" fg:x="131400" fg:w="708"/><text x="29.3300%" y="751.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (47 samples, 0.01%)</title><rect x="29.2493%" y="693" width="0.0104%" height="15" fill="rgb(237,12,29)" fg:x="132165" fg:w="47"/><text x="29.4993%" y="703.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (100 samples, 0.02%)</title><rect x="29.2387%" y="805" width="0.0221%" height="15" fill="rgb(214,77,8)" fg:x="132117" fg:w="100"/><text x="29.4887%" y="815.50"></text></g><g><title>clang::EmitBackendOutput (95 samples, 0.02%)</title><rect x="29.2398%" y="789" width="0.0210%" height="15" fill="rgb(217,168,37)" fg:x="132122" fg:w="95"/><text x="29.4898%" y="799.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (95 samples, 0.02%)</title><rect x="29.2398%" y="773" width="0.0210%" height="15" fill="rgb(221,217,23)" fg:x="132122" fg:w="95"/><text x="29.4898%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnModule (75 samples, 0.02%)</title><rect x="29.2442%" y="757" width="0.0166%" height="15" fill="rgb(243,229,36)" fg:x="132142" fg:w="75"/><text x="29.4942%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (75 samples, 0.02%)</title><rect x="29.2442%" y="741" width="0.0166%" height="15" fill="rgb(251,163,40)" fg:x="132142" fg:w="75"/><text x="29.4942%" y="751.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (52 samples, 0.01%)</title><rect x="29.2493%" y="725" width="0.0115%" height="15" fill="rgb(237,222,12)" fg:x="132165" fg:w="52"/><text x="29.4993%" y="735.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (52 samples, 0.01%)</title><rect x="29.2493%" y="709" width="0.0115%" height="15" fill="rgb(248,132,6)" fg:x="132165" fg:w="52"/><text x="29.4993%" y="719.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (48 samples, 0.01%)</title><rect x="29.2754%" y="645" width="0.0106%" height="15" fill="rgb(227,167,50)" fg:x="132283" fg:w="48"/><text x="29.5254%" y="655.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (53 samples, 0.01%)</title><rect x="29.2745%" y="661" width="0.0117%" height="15" fill="rgb(242,84,37)" fg:x="132279" fg:w="53"/><text x="29.5245%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (63 samples, 0.01%)</title><rect x="29.2730%" y="757" width="0.0139%" height="15" fill="rgb(212,4,50)" fg:x="132272" fg:w="63"/><text x="29.5230%" y="767.50"></text></g><g><title>clang::EmitBackendOutput (63 samples, 0.01%)</title><rect x="29.2730%" y="741" width="0.0139%" height="15" fill="rgb(230,228,32)" fg:x="132272" fg:w="63"/><text x="29.5230%" y="751.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (63 samples, 0.01%)</title><rect x="29.2730%" y="725" width="0.0139%" height="15" fill="rgb(248,217,23)" fg:x="132272" fg:w="63"/><text x="29.5230%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnModule (63 samples, 0.01%)</title><rect x="29.2730%" y="709" width="0.0139%" height="15" fill="rgb(238,197,32)" fg:x="132272" fg:w="63"/><text x="29.5230%" y="719.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (63 samples, 0.01%)</title><rect x="29.2730%" y="693" width="0.0139%" height="15" fill="rgb(236,106,1)" fg:x="132272" fg:w="63"/><text x="29.5230%" y="703.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (56 samples, 0.01%)</title><rect x="29.2745%" y="677" width="0.0124%" height="15" fill="rgb(219,228,13)" fg:x="132279" fg:w="56"/><text x="29.5245%" y="687.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (75 samples, 0.02%)</title><rect x="29.2730%" y="805" width="0.0166%" height="15" fill="rgb(238,30,35)" fg:x="132272" fg:w="75"/><text x="29.5230%" y="815.50"></text></g><g><title>clang::FrontendAction::Execute (75 samples, 0.02%)</title><rect x="29.2730%" y="789" width="0.0166%" height="15" fill="rgb(236,70,23)" fg:x="132272" fg:w="75"/><text x="29.5230%" y="799.50"></text></g><g><title>clang::ParseAST (75 samples, 0.02%)</title><rect x="29.2730%" y="773" width="0.0166%" height="15" fill="rgb(249,104,48)" fg:x="132272" fg:w="75"/><text x="29.5230%" y="783.50"></text></g><g><title>btrfs_lookup (47 samples, 0.01%)</title><rect x="29.3137%" y="565" width="0.0104%" height="15" fill="rgb(254,117,50)" fg:x="132456" fg:w="47"/><text x="29.5637%" y="575.50"></text></g><g><title>btrfs_lookup_dentry (47 samples, 0.01%)</title><rect x="29.3137%" y="549" width="0.0104%" height="15" fill="rgb(223,152,4)" fg:x="132456" fg:w="47"/><text x="29.5637%" y="559.50"></text></g><g><title>link_path_walk.part.0 (57 samples, 0.01%)</title><rect x="29.3252%" y="565" width="0.0126%" height="15" fill="rgb(245,6,2)" fg:x="132508" fg:w="57"/><text x="29.5752%" y="575.50"></text></g><g><title>do_filp_open (150 samples, 0.03%)</title><rect x="29.3119%" y="597" width="0.0332%" height="15" fill="rgb(249,150,24)" fg:x="132448" fg:w="150"/><text x="29.5619%" y="607.50"></text></g><g><title>path_openat (150 samples, 0.03%)</title><rect x="29.3119%" y="581" width="0.0332%" height="15" fill="rgb(228,185,42)" fg:x="132448" fg:w="150"/><text x="29.5619%" y="591.50"></text></g><g><title>do_syscall_64 (168 samples, 0.04%)</title><rect x="29.3102%" y="645" width="0.0372%" height="15" fill="rgb(226,39,33)" fg:x="132440" fg:w="168"/><text x="29.5602%" y="655.50"></text></g><g><title>__x64_sys_openat (166 samples, 0.04%)</title><rect x="29.3106%" y="629" width="0.0367%" height="15" fill="rgb(221,166,19)" fg:x="132442" fg:w="166"/><text x="29.5606%" y="639.50"></text></g><g><title>do_sys_openat2 (165 samples, 0.04%)</title><rect x="29.3108%" y="613" width="0.0365%" height="15" fill="rgb(209,109,2)" fg:x="132443" fg:w="165"/><text x="29.5608%" y="623.50"></text></g><g><title>__libc_open64 (169 samples, 0.04%)</title><rect x="29.3102%" y="677" width="0.0374%" height="15" fill="rgb(252,216,26)" fg:x="132440" fg:w="169"/><text x="29.5602%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (169 samples, 0.04%)</title><rect x="29.3102%" y="661" width="0.0374%" height="15" fill="rgb(227,173,36)" fg:x="132440" fg:w="169"/><text x="29.5602%" y="671.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (217 samples, 0.05%)</title><rect x="29.3004%" y="805" width="0.0480%" height="15" fill="rgb(209,90,7)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="815.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (217 samples, 0.05%)</title><rect x="29.3004%" y="789" width="0.0480%" height="15" fill="rgb(250,194,11)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="799.50"></text></g><g><title>clang::FileManager::getFileRef (217 samples, 0.05%)</title><rect x="29.3004%" y="773" width="0.0480%" height="15" fill="rgb(220,72,50)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="783.50"></text></g><g><title>clang::FileManager::getStatValue (217 samples, 0.05%)</title><rect x="29.3004%" y="757" width="0.0480%" height="15" fill="rgb(222,106,48)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="767.50"></text></g><g><title>clang::FileSystemStatCache::get (217 samples, 0.05%)</title><rect x="29.3004%" y="741" width="0.0480%" height="15" fill="rgb(216,220,45)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="751.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (217 samples, 0.05%)</title><rect x="29.3004%" y="725" width="0.0480%" height="15" fill="rgb(234,112,18)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="735.50"></text></g><g><title>llvm::sys::fs::openFileForRead (217 samples, 0.05%)</title><rect x="29.3004%" y="709" width="0.0480%" height="15" fill="rgb(206,179,9)" fg:x="132396" fg:w="217"/><text x="29.5504%" y="719.50"></text></g><g><title>llvm::sys::fs::openFile (175 samples, 0.04%)</title><rect x="29.3097%" y="693" width="0.0387%" height="15" fill="rgb(215,115,40)" fg:x="132438" fg:w="175"/><text x="29.5597%" y="703.50"></text></g><g><title>clang::FrontendAction::Execute (51 samples, 0.01%)</title><rect x="29.3586%" y="805" width="0.0113%" height="15" fill="rgb(222,69,34)" fg:x="132659" fg:w="51"/><text x="29.6086%" y="815.50"></text></g><g><title>clang::ParseAST (51 samples, 0.01%)</title><rect x="29.3586%" y="789" width="0.0113%" height="15" fill="rgb(209,161,10)" fg:x="132659" fg:w="51"/><text x="29.6086%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (107 samples, 0.02%)</title><rect x="29.4011%" y="789" width="0.0237%" height="15" fill="rgb(217,6,38)" fg:x="132851" fg:w="107"/><text x="29.6511%" y="799.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (87 samples, 0.02%)</title><rect x="29.4055%" y="773" width="0.0193%" height="15" fill="rgb(229,229,48)" fg:x="132871" fg:w="87"/><text x="29.6555%" y="783.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (87 samples, 0.02%)</title><rect x="29.4055%" y="757" width="0.0193%" height="15" fill="rgb(225,21,28)" fg:x="132871" fg:w="87"/><text x="29.6555%" y="767.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (87 samples, 0.02%)</title><rect x="29.4055%" y="741" width="0.0193%" height="15" fill="rgb(206,33,13)" fg:x="132871" fg:w="87"/><text x="29.6555%" y="751.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (55 samples, 0.01%)</title><rect x="29.4126%" y="725" width="0.0122%" height="15" fill="rgb(242,178,17)" fg:x="132903" fg:w="55"/><text x="29.6626%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (119 samples, 0.03%)</title><rect x="29.3991%" y="805" width="0.0263%" height="15" fill="rgb(220,162,5)" fg:x="132842" fg:w="119"/><text x="29.6491%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclGroup (59 samples, 0.01%)</title><rect x="29.4308%" y="773" width="0.0131%" height="15" fill="rgb(210,33,43)" fg:x="132985" fg:w="59"/><text x="29.6808%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (77 samples, 0.02%)</title><rect x="29.4467%" y="693" width="0.0170%" height="15" fill="rgb(216,116,54)" fg:x="133057" fg:w="77"/><text x="29.6967%" y="703.50"></text></g><g><title>clang::Sema::ActOnDeclarator (77 samples, 0.02%)</title><rect x="29.4467%" y="677" width="0.0170%" height="15" fill="rgb(249,92,24)" fg:x="133057" fg:w="77"/><text x="29.6967%" y="687.50"></text></g><g><title>clang::Sema::HandleDeclarator (77 samples, 0.02%)</title><rect x="29.4467%" y="661" width="0.0170%" height="15" fill="rgb(231,189,14)" fg:x="133057" fg:w="77"/><text x="29.6967%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclGroup (78 samples, 0.02%)</title><rect x="29.4467%" y="709" width="0.0173%" height="15" fill="rgb(230,8,41)" fg:x="133057" fg:w="78"/><text x="29.6967%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (92 samples, 0.02%)</title><rect x="29.4447%" y="757" width="0.0204%" height="15" fill="rgb(249,7,27)" fg:x="133048" fg:w="92"/><text x="29.6947%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (83 samples, 0.02%)</title><rect x="29.4467%" y="741" width="0.0184%" height="15" fill="rgb(232,86,5)" fg:x="133057" fg:w="83"/><text x="29.6967%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (83 samples, 0.02%)</title><rect x="29.4467%" y="725" width="0.0184%" height="15" fill="rgb(224,175,18)" fg:x="133057" fg:w="83"/><text x="29.6967%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (156 samples, 0.03%)</title><rect x="29.4308%" y="805" width="0.0345%" height="15" fill="rgb(220,129,12)" fg:x="132985" fg:w="156"/><text x="29.6808%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (156 samples, 0.03%)</title><rect x="29.4308%" y="789" width="0.0345%" height="15" fill="rgb(210,19,36)" fg:x="132985" fg:w="156"/><text x="29.6808%" y="799.50"></text></g><g><title>clang::Parser::ParseLinkage (93 samples, 0.02%)</title><rect x="29.4447%" y="773" width="0.0206%" height="15" fill="rgb(219,96,14)" fg:x="133048" fg:w="93"/><text x="29.6947%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (47 samples, 0.01%)</title><rect x="29.4653%" y="805" width="0.0104%" height="15" fill="rgb(249,106,1)" fg:x="133141" fg:w="47"/><text x="29.7153%" y="815.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (50 samples, 0.01%)</title><rect x="29.4812%" y="805" width="0.0111%" height="15" fill="rgb(249,155,20)" fg:x="133213" fg:w="50"/><text x="29.7312%" y="815.50"></text></g><g><title>clang::FileManager::getFileRef (70 samples, 0.02%)</title><rect x="29.5186%" y="709" width="0.0155%" height="15" fill="rgb(244,168,9)" fg:x="133382" fg:w="70"/><text x="29.7686%" y="719.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (73 samples, 0.02%)</title><rect x="29.5184%" y="725" width="0.0162%" height="15" fill="rgb(216,23,50)" fg:x="133381" fg:w="73"/><text x="29.7684%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (80 samples, 0.02%)</title><rect x="29.5175%" y="805" width="0.0177%" height="15" fill="rgb(224,219,20)" fg:x="133377" fg:w="80"/><text x="29.7675%" y="815.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (79 samples, 0.02%)</title><rect x="29.5177%" y="789" width="0.0175%" height="15" fill="rgb(222,156,15)" fg:x="133378" fg:w="79"/><text x="29.7677%" y="799.50"></text></g><g><title>clang::Preprocessor::LookupFile (79 samples, 0.02%)</title><rect x="29.5177%" y="773" width="0.0175%" height="15" fill="rgb(231,97,17)" fg:x="133378" fg:w="79"/><text x="29.7677%" y="783.50"></text></g><g><title>clang::HeaderSearch::LookupFile (79 samples, 0.02%)</title><rect x="29.5177%" y="757" width="0.0175%" height="15" fill="rgb(218,70,48)" fg:x="133378" fg:w="79"/><text x="29.7677%" y="767.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (79 samples, 0.02%)</title><rect x="29.5177%" y="741" width="0.0175%" height="15" fill="rgb(212,196,52)" fg:x="133378" fg:w="79"/><text x="29.7677%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (49 samples, 0.01%)</title><rect x="29.5567%" y="581" width="0.0108%" height="15" fill="rgb(243,203,18)" fg:x="133554" fg:w="49"/><text x="29.8067%" y="591.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (55 samples, 0.01%)</title><rect x="29.5558%" y="661" width="0.0122%" height="15" fill="rgb(252,125,41)" fg:x="133550" fg:w="55"/><text x="29.8058%" y="671.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (55 samples, 0.01%)</title><rect x="29.5558%" y="645" width="0.0122%" height="15" fill="rgb(223,180,33)" fg:x="133550" fg:w="55"/><text x="29.8058%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (55 samples, 0.01%)</title><rect x="29.5558%" y="629" width="0.0122%" height="15" fill="rgb(254,159,46)" fg:x="133550" fg:w="55"/><text x="29.8058%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (55 samples, 0.01%)</title><rect x="29.5558%" y="613" width="0.0122%" height="15" fill="rgb(254,38,10)" fg:x="133550" fg:w="55"/><text x="29.8058%" y="623.50"></text></g><g><title>clang::Parser::ParseLinkage (51 samples, 0.01%)</title><rect x="29.5567%" y="597" width="0.0113%" height="15" fill="rgb(208,217,32)" fg:x="133554" fg:w="51"/><text x="29.8067%" y="607.50"></text></g><g><title>clang::driver::CC1Command::Execute (100 samples, 0.02%)</title><rect x="29.5509%" y="805" width="0.0221%" height="15" fill="rgb(221,120,13)" fg:x="133528" fg:w="100"/><text x="29.8009%" y="815.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (100 samples, 0.02%)</title><rect x="29.5509%" y="789" width="0.0221%" height="15" fill="rgb(246,54,52)" fg:x="133528" fg:w="100"/><text x="29.8009%" y="799.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (100 samples, 0.02%)</title><rect x="29.5509%" y="773" width="0.0221%" height="15" fill="rgb(242,34,25)" fg:x="133528" fg:w="100"/><text x="29.8009%" y="783.50"></text></g><g><title>ExecuteCC1Tool (100 samples, 0.02%)</title><rect x="29.5509%" y="757" width="0.0221%" height="15" fill="rgb(247,209,9)" fg:x="133528" fg:w="100"/><text x="29.8009%" y="767.50"></text></g><g><title>cc1_main (100 samples, 0.02%)</title><rect x="29.5509%" y="741" width="0.0221%" height="15" fill="rgb(228,71,26)" fg:x="133528" fg:w="100"/><text x="29.8009%" y="751.50"></text></g><g><title>clang::ExecuteCompilerInvocation (97 samples, 0.02%)</title><rect x="29.5516%" y="725" width="0.0215%" height="15" fill="rgb(222,145,49)" fg:x="133531" fg:w="97"/><text x="29.8016%" y="735.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (97 samples, 0.02%)</title><rect x="29.5516%" y="709" width="0.0215%" height="15" fill="rgb(218,121,17)" fg:x="133531" fg:w="97"/><text x="29.8016%" y="719.50"></text></g><g><title>clang::FrontendAction::Execute (90 samples, 0.02%)</title><rect x="29.5532%" y="693" width="0.0199%" height="15" fill="rgb(244,50,7)" fg:x="133538" fg:w="90"/><text x="29.8032%" y="703.50"></text></g><g><title>clang::ParseAST (90 samples, 0.02%)</title><rect x="29.5532%" y="677" width="0.0199%" height="15" fill="rgb(246,229,37)" fg:x="133538" fg:w="90"/><text x="29.8032%" y="687.50"></text></g><g><title>llvm::sys::fs::access (50 samples, 0.01%)</title><rect x="29.6366%" y="661" width="0.0111%" height="15" fill="rgb(225,18,5)" fg:x="133915" fg:w="50"/><text x="29.8866%" y="671.50"></text></g><g><title>__GI___access (50 samples, 0.01%)</title><rect x="29.6366%" y="645" width="0.0111%" height="15" fill="rgb(213,204,8)" fg:x="133915" fg:w="50"/><text x="29.8866%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="29.6366%" y="629" width="0.0111%" height="15" fill="rgb(238,103,6)" fg:x="133915" fg:w="50"/><text x="29.8866%" y="639.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="29.6366%" y="613" width="0.0111%" height="15" fill="rgb(222,25,35)" fg:x="133915" fg:w="50"/><text x="29.8866%" y="623.50"></text></g><g><title>do_faccessat (50 samples, 0.01%)</title><rect x="29.6366%" y="597" width="0.0111%" height="15" fill="rgb(213,203,35)" fg:x="133915" fg:w="50"/><text x="29.8866%" y="607.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (51 samples, 0.01%)</title><rect x="29.6366%" y="677" width="0.0113%" height="15" fill="rgb(221,79,53)" fg:x="133915" fg:w="51"/><text x="29.8866%" y="687.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (63 samples, 0.01%)</title><rect x="29.6366%" y="709" width="0.0139%" height="15" fill="rgb(243,200,35)" fg:x="133915" fg:w="63"/><text x="29.8866%" y="719.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (63 samples, 0.01%)</title><rect x="29.6366%" y="693" width="0.0139%" height="15" fill="rgb(248,60,25)" fg:x="133915" fg:w="63"/><text x="29.8866%" y="703.50"></text></g><g><title>clang::driver::Driver::BuildJobs (161 samples, 0.04%)</title><rect x="29.6246%" y="773" width="0.0356%" height="15" fill="rgb(227,53,46)" fg:x="133861" fg:w="161"/><text x="29.8746%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (161 samples, 0.04%)</title><rect x="29.6246%" y="757" width="0.0356%" height="15" fill="rgb(216,120,32)" fg:x="133861" fg:w="161"/><text x="29.8746%" y="767.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (161 samples, 0.04%)</title><rect x="29.6246%" y="741" width="0.0356%" height="15" fill="rgb(220,134,1)" fg:x="133861" fg:w="161"/><text x="29.8746%" y="751.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (108 samples, 0.02%)</title><rect x="29.6364%" y="725" width="0.0239%" height="15" fill="rgb(237,168,5)" fg:x="133914" fg:w="108"/><text x="29.8864%" y="735.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (54 samples, 0.01%)</title><rect x="29.6720%" y="693" width="0.0120%" height="15" fill="rgb(231,100,33)" fg:x="134075" fg:w="54"/><text x="29.9220%" y="703.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (55 samples, 0.01%)</title><rect x="29.6720%" y="709" width="0.0122%" height="15" fill="rgb(236,177,47)" fg:x="134075" fg:w="55"/><text x="29.9220%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (110 samples, 0.02%)</title><rect x="29.6625%" y="725" width="0.0243%" height="15" fill="rgb(235,7,49)" fg:x="134032" fg:w="110"/><text x="29.9125%" y="735.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (145 samples, 0.03%)</title><rect x="29.6614%" y="741" width="0.0321%" height="15" fill="rgb(232,119,22)" fg:x="134027" fg:w="145"/><text x="29.9114%" y="751.50"></text></g><g><title>clang::driver::Driver::getToolChain (226 samples, 0.05%)</title><rect x="29.6603%" y="773" width="0.0500%" height="15" fill="rgb(254,73,53)" fg:x="134022" fg:w="226"/><text x="29.9103%" y="783.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (226 samples, 0.05%)</title><rect x="29.6603%" y="757" width="0.0500%" height="15" fill="rgb(251,35,20)" fg:x="134022" fg:w="226"/><text x="29.9103%" y="767.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (76 samples, 0.02%)</title><rect x="29.6935%" y="741" width="0.0168%" height="15" fill="rgb(241,119,20)" fg:x="134172" fg:w="76"/><text x="29.9435%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (388 samples, 0.09%)</title><rect x="29.6246%" y="789" width="0.0859%" height="15" fill="rgb(207,102,14)" fg:x="133861" fg:w="388"/><text x="29.8746%" y="799.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (53 samples, 0.01%)</title><rect x="29.7386%" y="565" width="0.0117%" height="15" fill="rgb(248,201,50)" fg:x="134376" fg:w="53"/><text x="29.9886%" y="575.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (83 samples, 0.02%)</title><rect x="29.7322%" y="581" width="0.0184%" height="15" fill="rgb(222,185,44)" fg:x="134347" fg:w="83"/><text x="29.9822%" y="591.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (149 samples, 0.03%)</title><rect x="29.7185%" y="613" width="0.0330%" height="15" fill="rgb(218,107,18)" fg:x="134285" fg:w="149"/><text x="29.9685%" y="623.50"></text></g><g><title>clang::IdentifierTable::get (96 samples, 0.02%)</title><rect x="29.7302%" y="597" width="0.0212%" height="15" fill="rgb(237,177,39)" fg:x="134338" fg:w="96"/><text x="29.9802%" y="607.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (99 samples, 0.02%)</title><rect x="29.7561%" y="613" width="0.0219%" height="15" fill="rgb(246,69,6)" fg:x="134455" fg:w="99"/><text x="30.0061%" y="623.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (310 samples, 0.07%)</title><rect x="29.7169%" y="629" width="0.0686%" height="15" fill="rgb(234,208,37)" fg:x="134278" fg:w="310"/><text x="29.9669%" y="639.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (63 samples, 0.01%)</title><rect x="29.7855%" y="629" width="0.0139%" height="15" fill="rgb(225,4,6)" fg:x="134588" fg:w="63"/><text x="30.0355%" y="639.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (90 samples, 0.02%)</title><rect x="29.8081%" y="501" width="0.0199%" height="15" fill="rgb(233,45,0)" fg:x="134690" fg:w="90"/><text x="30.0581%" y="511.50"></text></g><g><title>clang::Parser::ConsumeBrace (90 samples, 0.02%)</title><rect x="29.8081%" y="485" width="0.0199%" height="15" fill="rgb(226,136,5)" fg:x="134690" fg:w="90"/><text x="30.0581%" y="495.50"></text></g><g><title>clang::Preprocessor::Lex (90 samples, 0.02%)</title><rect x="29.8081%" y="469" width="0.0199%" height="15" fill="rgb(211,91,47)" fg:x="134690" fg:w="90"/><text x="30.0581%" y="479.50"></text></g><g><title>clang::Lexer::LexTokenInternal (90 samples, 0.02%)</title><rect x="29.8081%" y="453" width="0.0199%" height="15" fill="rgb(242,88,51)" fg:x="134690" fg:w="90"/><text x="30.0581%" y="463.50"></text></g><g><title>clang::Preprocessor::HandleDirective (84 samples, 0.02%)</title><rect x="29.8094%" y="437" width="0.0186%" height="15" fill="rgb(230,91,28)" fg:x="134696" fg:w="84"/><text x="30.0594%" y="447.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (92 samples, 0.02%)</title><rect x="29.8081%" y="517" width="0.0204%" height="15" fill="rgb(254,186,29)" fg:x="134690" fg:w="92"/><text x="30.0581%" y="527.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (101 samples, 0.02%)</title><rect x="29.8070%" y="565" width="0.0224%" height="15" fill="rgb(238,6,4)" fg:x="134685" fg:w="101"/><text x="30.0570%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclaration (101 samples, 0.02%)</title><rect x="29.8070%" y="549" width="0.0224%" height="15" fill="rgb(221,151,16)" fg:x="134685" fg:w="101"/><text x="30.0570%" y="559.50"></text></g><g><title>clang::Parser::ParseNamespace (101 samples, 0.02%)</title><rect x="29.8070%" y="533" width="0.0224%" height="15" fill="rgb(251,143,52)" fg:x="134685" fg:w="101"/><text x="30.0570%" y="543.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (103 samples, 0.02%)</title><rect x="29.8068%" y="597" width="0.0228%" height="15" fill="rgb(206,90,15)" fg:x="134684" fg:w="103"/><text x="30.0568%" y="607.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (103 samples, 0.02%)</title><rect x="29.8068%" y="581" width="0.0228%" height="15" fill="rgb(218,35,8)" fg:x="134684" fg:w="103"/><text x="30.0568%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (60 samples, 0.01%)</title><rect x="29.8302%" y="517" width="0.0133%" height="15" fill="rgb(239,215,6)" fg:x="134790" fg:w="60"/><text x="30.0802%" y="527.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (76 samples, 0.02%)</title><rect x="29.8296%" y="565" width="0.0168%" height="15" fill="rgb(245,116,39)" fg:x="134787" fg:w="76"/><text x="30.0796%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (76 samples, 0.02%)</title><rect x="29.8296%" y="549" width="0.0168%" height="15" fill="rgb(242,65,28)" fg:x="134787" fg:w="76"/><text x="30.0796%" y="559.50"></text></g><g><title>clang::Parser::ParseLinkage (76 samples, 0.02%)</title><rect x="29.8296%" y="533" width="0.0168%" height="15" fill="rgb(252,132,53)" fg:x="134787" fg:w="76"/><text x="30.0796%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (77 samples, 0.02%)</title><rect x="29.8296%" y="581" width="0.0170%" height="15" fill="rgb(224,159,50)" fg:x="134787" fg:w="77"/><text x="30.0796%" y="591.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (83 samples, 0.02%)</title><rect x="29.8296%" y="597" width="0.0184%" height="15" fill="rgb(224,93,4)" fg:x="134787" fg:w="83"/><text x="30.0796%" y="607.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (53 samples, 0.01%)</title><rect x="29.8612%" y="533" width="0.0117%" height="15" fill="rgb(208,81,34)" fg:x="134930" fg:w="53"/><text x="30.1112%" y="543.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (87 samples, 0.02%)</title><rect x="29.8729%" y="533" width="0.0193%" height="15" fill="rgb(233,92,54)" fg:x="134983" fg:w="87"/><text x="30.1229%" y="543.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (179 samples, 0.04%)</title><rect x="29.8594%" y="549" width="0.0396%" height="15" fill="rgb(237,21,14)" fg:x="134922" fg:w="179"/><text x="30.1094%" y="559.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (54 samples, 0.01%)</title><rect x="29.9033%" y="533" width="0.0120%" height="15" fill="rgb(249,128,51)" fg:x="135120" fg:w="54"/><text x="30.1533%" y="543.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (88 samples, 0.02%)</title><rect x="29.9033%" y="549" width="0.0195%" height="15" fill="rgb(223,129,24)" fg:x="135120" fg:w="88"/><text x="30.1533%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (400 samples, 0.09%)</title><rect x="29.8513%" y="597" width="0.0885%" height="15" fill="rgb(231,168,25)" fg:x="134885" fg:w="400"/><text x="30.1013%" y="607.50"></text></g><g><title>clang::Lexer::LexTokenInternal (397 samples, 0.09%)</title><rect x="29.8519%" y="581" width="0.0879%" height="15" fill="rgb(224,39,20)" fg:x="134888" fg:w="397"/><text x="30.1019%" y="591.50"></text></g><g><title>clang::Preprocessor::HandleDirective (372 samples, 0.08%)</title><rect x="29.8575%" y="565" width="0.0823%" height="15" fill="rgb(225,152,53)" fg:x="134913" fg:w="372"/><text x="30.1075%" y="575.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,024 samples, 0.23%)</title><rect x="29.7136%" y="645" width="0.2266%" height="15" fill="rgb(252,17,24)" fg:x="134263" fg:w="1024"/><text x="29.9636%" y="655.50"></text></g><g><title>clang::FrontendAction::Execute (636 samples, 0.14%)</title><rect x="29.7995%" y="629" width="0.1408%" height="15" fill="rgb(250,114,30)" fg:x="134651" fg:w="636"/><text x="30.0495%" y="639.50"></text></g><g><title>clang::ParseAST (628 samples, 0.14%)</title><rect x="29.8012%" y="613" width="0.1390%" height="15" fill="rgb(229,5,4)" fg:x="134659" fg:w="628"/><text x="30.0512%" y="623.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,054 samples, 0.23%)</title><rect x="29.7134%" y="661" width="0.2333%" height="15" fill="rgb(225,176,49)" fg:x="134262" fg:w="1054"/><text x="29.9634%" y="671.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,093 samples, 0.24%)</title><rect x="29.7105%" y="741" width="0.2419%" height="15" fill="rgb(224,221,49)" fg:x="134249" fg:w="1093"/><text x="29.9605%" y="751.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,093 samples, 0.24%)</title><rect x="29.7105%" y="725" width="0.2419%" height="15" fill="rgb(253,169,27)" fg:x="134249" fg:w="1093"/><text x="29.9605%" y="735.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (1,093 samples, 0.24%)</title><rect x="29.7105%" y="709" width="0.2419%" height="15" fill="rgb(211,206,16)" fg:x="134249" fg:w="1093"/><text x="29.9605%" y="719.50"></text></g><g><title>ExecuteCC1Tool (1,093 samples, 0.24%)</title><rect x="29.7105%" y="693" width="0.2419%" height="15" fill="rgb(244,87,35)" fg:x="134249" fg:w="1093"/><text x="29.9605%" y="703.50"></text></g><g><title>cc1_main (1,093 samples, 0.24%)</title><rect x="29.7105%" y="677" width="0.2419%" height="15" fill="rgb(246,28,10)" fg:x="134249" fg:w="1093"/><text x="29.9605%" y="687.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,103 samples, 0.24%)</title><rect x="29.7105%" y="789" width="0.2441%" height="15" fill="rgb(229,12,44)" fg:x="134249" fg:w="1103"/><text x="29.9605%" y="799.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,103 samples, 0.24%)</title><rect x="29.7105%" y="773" width="0.2441%" height="15" fill="rgb(210,145,37)" fg:x="134249" fg:w="1103"/><text x="29.9605%" y="783.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,103 samples, 0.24%)</title><rect x="29.7105%" y="757" width="0.2441%" height="15" fill="rgb(227,112,52)" fg:x="134249" fg:w="1103"/><text x="29.9605%" y="767.50"></text></g><g><title>main (1,512 samples, 0.33%)</title><rect x="29.6242%" y="805" width="0.3346%" height="15" fill="rgb(238,155,34)" fg:x="133859" fg:w="1512"/><text x="29.8742%" y="815.50"></text></g><g><title>[unknown] (4,187 samples, 0.93%)</title><rect x="29.0362%" y="821" width="0.9266%" height="15" fill="rgb(239,226,36)" fg:x="131202" fg:w="4187"/><text x="29.2862%" y="831.50"></text></g><g><title>__spawni_child (59 samples, 0.01%)</title><rect x="29.9632%" y="805" width="0.0131%" height="15" fill="rgb(230,16,23)" fg:x="135391" fg:w="59"/><text x="30.2132%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.01%)</title><rect x="29.9763%" y="805" width="0.0106%" height="15" fill="rgb(236,171,36)" fg:x="135450" fg:w="48"/><text x="30.2263%" y="815.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="29.9763%" y="789" width="0.0106%" height="15" fill="rgb(221,22,14)" fg:x="135450" fg:w="48"/><text x="30.2263%" y="799.50"></text></g><g><title>__do_sys_clone (48 samples, 0.01%)</title><rect x="29.9763%" y="773" width="0.0106%" height="15" fill="rgb(242,43,11)" fg:x="135450" fg:w="48"/><text x="30.2263%" y="783.50"></text></g><g><title>kernel_clone (48 samples, 0.01%)</title><rect x="29.9763%" y="757" width="0.0106%" height="15" fill="rgb(232,69,23)" fg:x="135450" fg:w="48"/><text x="30.2263%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (127 samples, 0.03%)</title><rect x="29.9880%" y="757" width="0.0281%" height="15" fill="rgb(216,180,54)" fg:x="135503" fg:w="127"/><text x="30.2380%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (122 samples, 0.03%)</title><rect x="29.9891%" y="741" width="0.0270%" height="15" fill="rgb(216,5,24)" fg:x="135508" fg:w="122"/><text x="30.2391%" y="751.50"></text></g><g><title>native_write_msr (120 samples, 0.03%)</title><rect x="29.9896%" y="725" width="0.0266%" height="15" fill="rgb(225,89,9)" fg:x="135510" fg:w="120"/><text x="30.2396%" y="735.50"></text></g><g><title>schedule_tail (134 samples, 0.03%)</title><rect x="29.9869%" y="789" width="0.0297%" height="15" fill="rgb(243,75,33)" fg:x="135498" fg:w="134"/><text x="30.2369%" y="799.50"></text></g><g><title>finish_task_switch (134 samples, 0.03%)</title><rect x="29.9869%" y="773" width="0.0297%" height="15" fill="rgb(247,141,45)" fg:x="135498" fg:w="134"/><text x="30.2369%" y="783.50"></text></g><g><title>__GI___clone (242 samples, 0.05%)</title><rect x="29.9632%" y="821" width="0.0536%" height="15" fill="rgb(232,177,36)" fg:x="135391" fg:w="242"/><text x="30.2132%" y="831.50"></text></g><g><title>ret_from_fork (135 samples, 0.03%)</title><rect x="29.9869%" y="805" width="0.0299%" height="15" fill="rgb(219,125,36)" fg:x="135498" fg:w="135"/><text x="30.2369%" y="815.50"></text></g><g><title>_dl_start_user (51 samples, 0.01%)</title><rect x="30.0195%" y="821" width="0.0113%" height="15" fill="rgb(227,94,9)" fg:x="135645" fg:w="51"/><text x="30.2695%" y="831.50"></text></g><g><title>_dl_init (51 samples, 0.01%)</title><rect x="30.0195%" y="805" width="0.0113%" height="15" fill="rgb(240,34,52)" fg:x="135645" fg:w="51"/><text x="30.2695%" y="815.50"></text></g><g><title>call_init (51 samples, 0.01%)</title><rect x="30.0195%" y="789" width="0.0113%" height="15" fill="rgb(216,45,12)" fg:x="135645" fg:w="51"/><text x="30.2695%" y="799.50"></text></g><g><title>call_init (51 samples, 0.01%)</title><rect x="30.0195%" y="773" width="0.0113%" height="15" fill="rgb(246,21,19)" fg:x="135645" fg:w="51"/><text x="30.2695%" y="783.50"></text></g><g><title>__GI_exit (117 samples, 0.03%)</title><rect x="30.0336%" y="789" width="0.0259%" height="15" fill="rgb(213,98,42)" fg:x="135709" fg:w="117"/><text x="30.2836%" y="799.50"></text></g><g><title>__run_exit_handlers (117 samples, 0.03%)</title><rect x="30.0336%" y="773" width="0.0259%" height="15" fill="rgb(250,136,47)" fg:x="135709" fg:w="117"/><text x="30.2836%" y="783.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (70 samples, 0.02%)</title><rect x="30.2711%" y="773" width="0.0155%" height="15" fill="rgb(251,124,27)" fg:x="136782" fg:w="70"/><text x="30.5211%" y="783.50"></text></g><g><title>polly::initializePollyPasses (60 samples, 0.01%)</title><rect x="30.2733%" y="757" width="0.0133%" height="15" fill="rgb(229,180,14)" fg:x="136792" fg:w="60"/><text x="30.5233%" y="767.50"></text></g><g><title>__libc_csu_init (1,274 samples, 0.28%)</title><rect x="30.0595%" y="789" width="0.2819%" height="15" fill="rgb(245,216,25)" fg:x="135826" fg:w="1274"/><text x="30.3095%" y="799.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (83 samples, 0.02%)</title><rect x="30.3550%" y="773" width="0.0184%" height="15" fill="rgb(251,43,5)" fg:x="137161" fg:w="83"/><text x="30.6050%" y="783.50"></text></g><g><title>clang::driver::CC1Command::Execute (56 samples, 0.01%)</title><rect x="30.3738%" y="725" width="0.0124%" height="15" fill="rgb(250,128,24)" fg:x="137246" fg:w="56"/><text x="30.6238%" y="735.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (56 samples, 0.01%)</title><rect x="30.3738%" y="709" width="0.0124%" height="15" fill="rgb(217,117,27)" fg:x="137246" fg:w="56"/><text x="30.6238%" y="719.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (55 samples, 0.01%)</title><rect x="30.3740%" y="693" width="0.0122%" height="15" fill="rgb(245,147,4)" fg:x="137247" fg:w="55"/><text x="30.6240%" y="703.50"></text></g><g><title>ExecuteCC1Tool (55 samples, 0.01%)</title><rect x="30.3740%" y="677" width="0.0122%" height="15" fill="rgb(242,201,35)" fg:x="137247" fg:w="55"/><text x="30.6240%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (130 samples, 0.03%)</title><rect x="30.3890%" y="533" width="0.0288%" height="15" fill="rgb(218,181,1)" fg:x="137315" fg:w="130"/><text x="30.6390%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (130 samples, 0.03%)</title><rect x="30.3890%" y="517" width="0.0288%" height="15" fill="rgb(222,6,29)" fg:x="137315" fg:w="130"/><text x="30.6390%" y="527.50"></text></g><g><title>native_write_msr (130 samples, 0.03%)</title><rect x="30.3890%" y="501" width="0.0288%" height="15" fill="rgb(208,186,3)" fg:x="137315" fg:w="130"/><text x="30.6390%" y="511.50"></text></g><g><title>finish_task_switch (141 samples, 0.03%)</title><rect x="30.3886%" y="549" width="0.0312%" height="15" fill="rgb(216,36,26)" fg:x="137313" fg:w="141"/><text x="30.6386%" y="559.50"></text></g><g><title>schedule (147 samples, 0.03%)</title><rect x="30.3877%" y="581" width="0.0325%" height="15" fill="rgb(248,201,23)" fg:x="137309" fg:w="147"/><text x="30.6377%" y="591.50"></text></g><g><title>__schedule (147 samples, 0.03%)</title><rect x="30.3877%" y="565" width="0.0325%" height="15" fill="rgb(251,170,31)" fg:x="137309" fg:w="147"/><text x="30.6377%" y="575.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (222 samples, 0.05%)</title><rect x="30.3738%" y="757" width="0.0491%" height="15" fill="rgb(207,110,25)" fg:x="137246" fg:w="222"/><text x="30.6238%" y="767.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (222 samples, 0.05%)</title><rect x="30.3738%" y="741" width="0.0491%" height="15" fill="rgb(250,54,15)" fg:x="137246" fg:w="222"/><text x="30.6238%" y="751.50"></text></g><g><title>clang::driver::Command::Execute (166 samples, 0.04%)</title><rect x="30.3862%" y="725" width="0.0367%" height="15" fill="rgb(227,68,33)" fg:x="137302" fg:w="166"/><text x="30.6362%" y="735.50"></text></g><g><title>llvm::sys::ExecuteAndWait (166 samples, 0.04%)</title><rect x="30.3862%" y="709" width="0.0367%" height="15" fill="rgb(238,34,41)" fg:x="137302" fg:w="166"/><text x="30.6362%" y="719.50"></text></g><g><title>llvm::sys::Wait (163 samples, 0.04%)</title><rect x="30.3868%" y="693" width="0.0361%" height="15" fill="rgb(220,11,15)" fg:x="137305" fg:w="163"/><text x="30.6368%" y="703.50"></text></g><g><title>__GI___wait4 (163 samples, 0.04%)</title><rect x="30.3868%" y="677" width="0.0361%" height="15" fill="rgb(246,111,35)" fg:x="137305" fg:w="163"/><text x="30.6368%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (161 samples, 0.04%)</title><rect x="30.3873%" y="661" width="0.0356%" height="15" fill="rgb(209,88,53)" fg:x="137307" fg:w="161"/><text x="30.6373%" y="671.50"></text></g><g><title>do_syscall_64 (161 samples, 0.04%)</title><rect x="30.3873%" y="645" width="0.0356%" height="15" fill="rgb(231,185,47)" fg:x="137307" fg:w="161"/><text x="30.6373%" y="655.50"></text></g><g><title>__do_sys_wait4 (161 samples, 0.04%)</title><rect x="30.3873%" y="629" width="0.0356%" height="15" fill="rgb(233,154,1)" fg:x="137307" fg:w="161"/><text x="30.6373%" y="639.50"></text></g><g><title>kernel_wait4 (161 samples, 0.04%)</title><rect x="30.3873%" y="613" width="0.0356%" height="15" fill="rgb(225,15,46)" fg:x="137307" fg:w="161"/><text x="30.6373%" y="623.50"></text></g><g><title>do_wait (160 samples, 0.04%)</title><rect x="30.3875%" y="597" width="0.0354%" height="15" fill="rgb(211,135,41)" fg:x="137308" fg:w="160"/><text x="30.6375%" y="607.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (224 samples, 0.05%)</title><rect x="30.3738%" y="773" width="0.0496%" height="15" fill="rgb(208,54,0)" fg:x="137246" fg:w="224"/><text x="30.6238%" y="783.50"></text></g><g><title>[libc-2.31.so] (51 samples, 0.01%)</title><rect x="30.4295%" y="709" width="0.0113%" height="15" fill="rgb(244,136,14)" fg:x="137498" fg:w="51"/><text x="30.6795%" y="719.50"></text></g><g><title>llvm::opt::OptTable::OptTable (93 samples, 0.02%)</title><rect x="30.4260%" y="725" width="0.0206%" height="15" fill="rgb(241,56,14)" fg:x="137482" fg:w="93"/><text x="30.6760%" y="735.50"></text></g><g><title>clang::driver::getDriverOptTable (147 samples, 0.03%)</title><rect x="30.4258%" y="757" width="0.0325%" height="15" fill="rgb(205,80,24)" fg:x="137481" fg:w="147"/><text x="30.6758%" y="767.50"></text></g><g><title>clang::driver::getDriverOptTable (146 samples, 0.03%)</title><rect x="30.4260%" y="741" width="0.0323%" height="15" fill="rgb(220,57,4)" fg:x="137482" fg:w="146"/><text x="30.6760%" y="751.50"></text></g><g><title>llvm::opt::OptTable::addValues (53 samples, 0.01%)</title><rect x="30.4466%" y="725" width="0.0117%" height="15" fill="rgb(226,193,50)" fg:x="137575" fg:w="53"/><text x="30.6966%" y="735.50"></text></g><g><title>optionMatches (48 samples, 0.01%)</title><rect x="30.4477%" y="709" width="0.0106%" height="15" fill="rgb(231,168,22)" fg:x="137580" fg:w="48"/><text x="30.6977%" y="719.50"></text></g><g><title>clang::driver::getDriverMode (156 samples, 0.03%)</title><rect x="30.4242%" y="773" width="0.0345%" height="15" fill="rgb(254,215,14)" fg:x="137474" fg:w="156"/><text x="30.6742%" y="783.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (63 samples, 0.01%)</title><rect x="30.4656%" y="741" width="0.0139%" height="15" fill="rgb(211,115,16)" fg:x="137661" fg:w="63"/><text x="30.7156%" y="751.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (93 samples, 0.02%)</title><rect x="30.4592%" y="773" width="0.0206%" height="15" fill="rgb(236,210,16)" fg:x="137632" fg:w="93"/><text x="30.7092%" y="783.50"></text></g><g><title>llvm::llvm_shutdown (93 samples, 0.02%)</title><rect x="30.4592%" y="757" width="0.0206%" height="15" fill="rgb(221,94,12)" fg:x="137632" fg:w="93"/><text x="30.7092%" y="767.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (56 samples, 0.01%)</title><rect x="30.4866%" y="757" width="0.0124%" height="15" fill="rgb(235,218,49)" fg:x="137756" fg:w="56"/><text x="30.7366%" y="767.50"></text></g><g><title>llvm::InitializeAllTargets (180 samples, 0.04%)</title><rect x="30.4798%" y="773" width="0.0398%" height="15" fill="rgb(217,114,14)" fg:x="137725" fg:w="180"/><text x="30.7298%" y="783.50"></text></g><g><title>__libc_start_main (2,230 samples, 0.49%)</title><rect x="30.0334%" y="805" width="0.4935%" height="15" fill="rgb(216,145,22)" fg:x="135708" fg:w="2230"/><text x="30.2834%" y="815.50"></text></g><g><title>main (838 samples, 0.19%)</title><rect x="30.3415%" y="789" width="0.1855%" height="15" fill="rgb(217,112,39)" fg:x="137100" fg:w="838"/><text x="30.5915%" y="799.50"></text></g><g><title>__do_munmap (46 samples, 0.01%)</title><rect x="30.5406%" y="517" width="0.0102%" height="15" fill="rgb(225,85,32)" fg:x="138000" fg:w="46"/><text x="30.7906%" y="527.50"></text></g><g><title>mmap_region (70 samples, 0.02%)</title><rect x="30.5402%" y="533" width="0.0155%" height="15" fill="rgb(245,209,47)" fg:x="137998" fg:w="70"/><text x="30.7902%" y="543.50"></text></g><g><title>do_mmap (74 samples, 0.02%)</title><rect x="30.5395%" y="549" width="0.0164%" height="15" fill="rgb(218,220,15)" fg:x="137995" fg:w="74"/><text x="30.7895%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (76 samples, 0.02%)</title><rect x="30.5393%" y="581" width="0.0168%" height="15" fill="rgb(222,202,31)" fg:x="137994" fg:w="76"/><text x="30.7893%" y="591.50"></text></g><g><title>vm_mmap_pgoff (75 samples, 0.02%)</title><rect x="30.5395%" y="565" width="0.0166%" height="15" fill="rgb(243,203,4)" fg:x="137995" fg:w="75"/><text x="30.7895%" y="575.50"></text></g><g><title>do_syscall_64 (78 samples, 0.02%)</title><rect x="30.5393%" y="597" width="0.0173%" height="15" fill="rgb(237,92,17)" fg:x="137994" fg:w="78"/><text x="30.7893%" y="607.50"></text></g><g><title>_dl_map_segments (96 samples, 0.02%)</title><rect x="30.5355%" y="661" width="0.0212%" height="15" fill="rgb(231,119,7)" fg:x="137977" fg:w="96"/><text x="30.7855%" y="671.50"></text></g><g><title>__mmap64 (81 samples, 0.02%)</title><rect x="30.5389%" y="645" width="0.0179%" height="15" fill="rgb(237,82,41)" fg:x="137992" fg:w="81"/><text x="30.7889%" y="655.50"></text></g><g><title>__mmap64 (81 samples, 0.02%)</title><rect x="30.5389%" y="629" width="0.0179%" height="15" fill="rgb(226,81,48)" fg:x="137992" fg:w="81"/><text x="30.7889%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="30.5393%" y="613" width="0.0175%" height="15" fill="rgb(234,70,51)" fg:x="137994" fg:w="79"/><text x="30.7893%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (126 samples, 0.03%)</title><rect x="30.5340%" y="677" width="0.0279%" height="15" fill="rgb(251,86,4)" fg:x="137970" fg:w="126"/><text x="30.7840%" y="687.50"></text></g><g><title>_dl_catch_exception (190 samples, 0.04%)</title><rect x="30.5307%" y="725" width="0.0420%" height="15" fill="rgb(244,144,28)" fg:x="137955" fg:w="190"/><text x="30.7807%" y="735.50"></text></g><g><title>openaux (190 samples, 0.04%)</title><rect x="30.5307%" y="709" width="0.0420%" height="15" fill="rgb(232,161,39)" fg:x="137955" fg:w="190"/><text x="30.7807%" y="719.50"></text></g><g><title>_dl_map_object (190 samples, 0.04%)</title><rect x="30.5307%" y="693" width="0.0420%" height="15" fill="rgb(247,34,51)" fg:x="137955" fg:w="190"/><text x="30.7807%" y="703.50"></text></g><g><title>_dl_map_object_deps (195 samples, 0.04%)</title><rect x="30.5305%" y="741" width="0.0432%" height="15" fill="rgb(225,132,2)" fg:x="137954" fg:w="195"/><text x="30.7805%" y="751.50"></text></g><g><title>dl_new_hash (90 samples, 0.02%)</title><rect x="30.6267%" y="677" width="0.0199%" height="15" fill="rgb(209,159,44)" fg:x="138389" fg:w="90"/><text x="30.8767%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (349 samples, 0.08%)</title><rect x="30.6221%" y="693" width="0.0772%" height="15" fill="rgb(251,214,1)" fg:x="138368" fg:w="349"/><text x="30.8721%" y="703.50"></text></g><g><title>do_lookup_x (238 samples, 0.05%)</title><rect x="30.6466%" y="677" width="0.0527%" height="15" fill="rgb(247,84,47)" fg:x="138479" fg:w="238"/><text x="30.8966%" y="687.50"></text></g><g><title>__alloc_pages_nodemask (62 samples, 0.01%)</title><rect x="30.7186%" y="613" width="0.0137%" height="15" fill="rgb(240,111,43)" fg:x="138804" fg:w="62"/><text x="30.9686%" y="623.50"></text></g><g><title>get_page_from_freelist (60 samples, 0.01%)</title><rect x="30.7190%" y="597" width="0.0133%" height="15" fill="rgb(215,214,35)" fg:x="138806" fg:w="60"/><text x="30.9690%" y="607.50"></text></g><g><title>alloc_pages_vma (63 samples, 0.01%)</title><rect x="30.7186%" y="629" width="0.0139%" height="15" fill="rgb(248,207,23)" fg:x="138804" fg:w="63"/><text x="30.9686%" y="639.50"></text></g><g><title>copy_page (60 samples, 0.01%)</title><rect x="30.7336%" y="629" width="0.0133%" height="15" fill="rgb(214,186,4)" fg:x="138872" fg:w="60"/><text x="30.9836%" y="639.50"></text></g><g><title>handle_mm_fault (267 samples, 0.06%)</title><rect x="30.7020%" y="645" width="0.0591%" height="15" fill="rgb(220,133,22)" fg:x="138729" fg:w="267"/><text x="30.9520%" y="655.50"></text></g><g><title>exc_page_fault (278 samples, 0.06%)</title><rect x="30.7002%" y="677" width="0.0615%" height="15" fill="rgb(239,134,19)" fg:x="138721" fg:w="278"/><text x="30.9502%" y="687.50"></text></g><g><title>do_user_addr_fault (277 samples, 0.06%)</title><rect x="30.7004%" y="661" width="0.0613%" height="15" fill="rgb(250,140,9)" fg:x="138722" fg:w="277"/><text x="30.9504%" y="671.50"></text></g><g><title>asm_exc_page_fault (283 samples, 0.06%)</title><rect x="30.6993%" y="693" width="0.0626%" height="15" fill="rgb(225,59,14)" fg:x="138717" fg:w="283"/><text x="30.9493%" y="703.50"></text></g><g><title>elf_machine_rela (765 samples, 0.17%)</title><rect x="30.5980%" y="709" width="0.1693%" height="15" fill="rgb(214,152,51)" fg:x="138259" fg:w="765"/><text x="30.8480%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (829 samples, 0.18%)</title><rect x="30.5884%" y="725" width="0.1835%" height="15" fill="rgb(251,227,43)" fg:x="138216" fg:w="829"/><text x="30.8384%" y="735.50"></text></g><g><title>_dl_relocate_object (871 samples, 0.19%)</title><rect x="30.5800%" y="741" width="0.1928%" height="15" fill="rgb(241,96,17)" fg:x="138178" fg:w="871"/><text x="30.8300%" y="751.50"></text></g><g><title>[ld-2.31.so] (1,127 samples, 0.25%)</title><rect x="30.5269%" y="757" width="0.2494%" height="15" fill="rgb(234,198,43)" fg:x="137938" fg:w="1127"/><text x="30.7769%" y="767.50"></text></g><g><title>_dl_start_final (1,130 samples, 0.25%)</title><rect x="30.5269%" y="789" width="0.2501%" height="15" fill="rgb(220,108,29)" fg:x="137938" fg:w="1130"/><text x="30.7769%" y="799.50"></text></g><g><title>_dl_sysdep_start (1,130 samples, 0.25%)</title><rect x="30.5269%" y="773" width="0.2501%" height="15" fill="rgb(226,163,33)" fg:x="137938" fg:w="1130"/><text x="30.7769%" y="783.50"></text></g><g><title>_dl_start (1,135 samples, 0.25%)</title><rect x="30.5269%" y="805" width="0.2512%" height="15" fill="rgb(205,194,45)" fg:x="137938" fg:w="1135"/><text x="30.7769%" y="815.50"></text></g><g><title>_start (3,370 samples, 0.75%)</title><rect x="30.0334%" y="821" width="0.7458%" height="15" fill="rgb(206,143,44)" fg:x="135708" fg:w="3370"/><text x="30.2834%" y="831.50"></text></g><g><title>asm_exc_page_fault (301 samples, 0.07%)</title><rect x="30.7792%" y="821" width="0.0666%" height="15" fill="rgb(236,136,36)" fg:x="139078" fg:w="301"/><text x="31.0292%" y="831.50"></text></g><g><title>free_unref_page_list (47 samples, 0.01%)</title><rect x="30.8772%" y="677" width="0.0104%" height="15" fill="rgb(249,172,42)" fg:x="139521" fg:w="47"/><text x="31.1272%" y="687.50"></text></g><g><title>tlb_finish_mmu (118 samples, 0.03%)</title><rect x="30.8629%" y="709" width="0.0261%" height="15" fill="rgb(216,139,23)" fg:x="139456" fg:w="118"/><text x="31.1129%" y="719.50"></text></g><g><title>release_pages (98 samples, 0.02%)</title><rect x="30.8673%" y="693" width="0.0217%" height="15" fill="rgb(207,166,20)" fg:x="139476" fg:w="98"/><text x="31.1173%" y="703.50"></text></g><g><title>mark_page_accessed (47 samples, 0.01%)</title><rect x="30.9421%" y="677" width="0.0104%" height="15" fill="rgb(210,209,22)" fg:x="139814" fg:w="47"/><text x="31.1921%" y="687.50"></text></g><g><title>__mod_memcg_lruvec_state (56 samples, 0.01%)</title><rect x="30.9846%" y="661" width="0.0124%" height="15" fill="rgb(232,118,20)" fg:x="140006" fg:w="56"/><text x="31.2346%" y="671.50"></text></g><g><title>page_remove_rmap (215 samples, 0.05%)</title><rect x="30.9525%" y="677" width="0.0476%" height="15" fill="rgb(238,113,42)" fg:x="139861" fg:w="215"/><text x="31.2025%" y="687.50"></text></g><g><title>tlb_flush_mmu (120 samples, 0.03%)</title><rect x="31.0001%" y="677" width="0.0266%" height="15" fill="rgb(231,42,5)" fg:x="140076" fg:w="120"/><text x="31.2501%" y="687.50"></text></g><g><title>release_pages (82 samples, 0.02%)</title><rect x="31.0085%" y="661" width="0.0181%" height="15" fill="rgb(243,166,24)" fg:x="140114" fg:w="82"/><text x="31.2585%" y="671.50"></text></g><g><title>mmput (794 samples, 0.18%)</title><rect x="30.8582%" y="741" width="0.1757%" height="15" fill="rgb(237,226,12)" fg:x="139435" fg:w="794"/><text x="31.1082%" y="751.50"></text></g><g><title>exit_mmap (794 samples, 0.18%)</title><rect x="30.8582%" y="725" width="0.1757%" height="15" fill="rgb(229,133,24)" fg:x="139435" fg:w="794"/><text x="31.1082%" y="735.50"></text></g><g><title>unmap_vmas (655 samples, 0.14%)</title><rect x="30.8890%" y="709" width="0.1450%" height="15" fill="rgb(238,33,43)" fg:x="139574" fg:w="655"/><text x="31.1390%" y="719.50"></text></g><g><title>unmap_page_range (654 samples, 0.14%)</title><rect x="30.8892%" y="693" width="0.1447%" height="15" fill="rgb(227,59,38)" fg:x="139575" fg:w="654"/><text x="31.1392%" y="703.50"></text></g><g><title>__x64_sys_exit_group (801 samples, 0.18%)</title><rect x="30.8580%" y="789" width="0.1773%" height="15" fill="rgb(230,97,0)" fg:x="139434" fg:w="801"/><text x="31.1080%" y="799.50"></text></g><g><title>do_group_exit (801 samples, 0.18%)</title><rect x="30.8580%" y="773" width="0.1773%" height="15" fill="rgb(250,173,50)" fg:x="139434" fg:w="801"/><text x="31.1080%" y="783.50"></text></g><g><title>do_exit (801 samples, 0.18%)</title><rect x="30.8580%" y="757" width="0.1773%" height="15" fill="rgb(240,15,50)" fg:x="139434" fg:w="801"/><text x="31.1080%" y="767.50"></text></g><g><title>do_syscall_64 (831 samples, 0.18%)</title><rect x="30.8531%" y="805" width="0.1839%" height="15" fill="rgb(221,93,22)" fg:x="139412" fg:w="831"/><text x="31.1031%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (832 samples, 0.18%)</title><rect x="30.8531%" y="821" width="0.1841%" height="15" fill="rgb(245,180,53)" fg:x="139412" fg:w="832"/><text x="31.1031%" y="831.50"></text></g><g><title>clang (9,739 samples, 2.16%)</title><rect x="28.8866%" y="837" width="2.1553%" height="15" fill="rgb(231,88,51)" fg:x="130526" fg:w="9739"/><text x="29.1366%" y="847.50">c..</text></g><g><title>[perf-42779.map] (497 samples, 0.11%)</title><rect x="31.0492%" y="821" width="0.1100%" height="15" fill="rgb(240,58,21)" fg:x="140298" fg:w="497"/><text x="31.2992%" y="831.50"></text></g><g><title>find-action-loo (555 samples, 0.12%)</title><rect x="31.0477%" y="837" width="0.1228%" height="15" fill="rgb(237,21,10)" fg:x="140291" fg:w="555"/><text x="31.2977%" y="847.50"></text></g><g><title>[perf-42779.map] (75 samples, 0.02%)</title><rect x="31.1740%" y="821" width="0.0166%" height="15" fill="rgb(218,43,11)" fg:x="140862" fg:w="75"/><text x="31.4240%" y="831.50"></text></g><g><title>globbing_pool-0 (152 samples, 0.03%)</title><rect x="31.1705%" y="837" width="0.0336%" height="15" fill="rgb(218,221,29)" fg:x="140846" fg:w="152"/><text x="31.4205%" y="847.50"></text></g><g><title>__GI___clone (60 samples, 0.01%)</title><rect x="31.1908%" y="821" width="0.0133%" height="15" fill="rgb(214,118,42)" fg:x="140938" fg:w="60"/><text x="31.4408%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.02%)</title><rect x="31.2406%" y="549" width="0.0188%" height="15" fill="rgb(251,200,26)" fg:x="141163" fg:w="85"/><text x="31.4906%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.02%)</title><rect x="31.2409%" y="533" width="0.0186%" height="15" fill="rgb(237,101,39)" fg:x="141164" fg:w="84"/><text x="31.4909%" y="543.50"></text></g><g><title>native_write_msr (84 samples, 0.02%)</title><rect x="31.2409%" y="517" width="0.0186%" height="15" fill="rgb(251,117,11)" fg:x="141164" fg:w="84"/><text x="31.4909%" y="527.50"></text></g><g><title>futex_wait_queue_me (91 samples, 0.02%)</title><rect x="31.2398%" y="613" width="0.0201%" height="15" fill="rgb(216,223,23)" fg:x="141159" fg:w="91"/><text x="31.4898%" y="623.50"></text></g><g><title>schedule (88 samples, 0.02%)</title><rect x="31.2404%" y="597" width="0.0195%" height="15" fill="rgb(251,54,12)" fg:x="141162" fg:w="88"/><text x="31.4904%" y="607.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="31.2404%" y="581" width="0.0195%" height="15" fill="rgb(254,176,54)" fg:x="141162" fg:w="88"/><text x="31.4904%" y="591.50"></text></g><g><title>finish_task_switch (88 samples, 0.02%)</title><rect x="31.2404%" y="565" width="0.0195%" height="15" fill="rgb(210,32,8)" fg:x="141162" fg:w="88"/><text x="31.4904%" y="575.50"></text></g><g><title>do_syscall_64 (92 samples, 0.02%)</title><rect x="31.2398%" y="677" width="0.0204%" height="15" fill="rgb(235,52,38)" fg:x="141159" fg:w="92"/><text x="31.4898%" y="687.50"></text></g><g><title>__x64_sys_futex (92 samples, 0.02%)</title><rect x="31.2398%" y="661" width="0.0204%" height="15" fill="rgb(231,4,44)" fg:x="141159" fg:w="92"/><text x="31.4898%" y="671.50"></text></g><g><title>do_futex (92 samples, 0.02%)</title><rect x="31.2398%" y="645" width="0.0204%" height="15" fill="rgb(249,2,32)" fg:x="141159" fg:w="92"/><text x="31.4898%" y="655.50"></text></g><g><title>futex_wait (92 samples, 0.02%)</title><rect x="31.2398%" y="629" width="0.0204%" height="15" fill="rgb(224,65,26)" fg:x="141159" fg:w="92"/><text x="31.4898%" y="639.50"></text></g><g><title>__pthread_cond_wait (93 samples, 0.02%)</title><rect x="31.2398%" y="741" width="0.0206%" height="15" fill="rgb(250,73,40)" fg:x="141159" fg:w="93"/><text x="31.4898%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (93 samples, 0.02%)</title><rect x="31.2398%" y="725" width="0.0206%" height="15" fill="rgb(253,177,16)" fg:x="141159" fg:w="93"/><text x="31.4898%" y="735.50"></text></g><g><title>futex_wait_cancelable (93 samples, 0.02%)</title><rect x="31.2398%" y="709" width="0.0206%" height="15" fill="rgb(217,32,34)" fg:x="141159" fg:w="93"/><text x="31.4898%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.02%)</title><rect x="31.2398%" y="693" width="0.0206%" height="15" fill="rgb(212,7,10)" fg:x="141159" fg:w="93"/><text x="31.4898%" y="703.50"></text></g><g><title>Monitor::lock (98 samples, 0.02%)</title><rect x="31.2395%" y="789" width="0.0217%" height="15" fill="rgb(245,89,8)" fg:x="141158" fg:w="98"/><text x="31.4895%" y="799.50"></text></g><g><title>Monitor::ILock (98 samples, 0.02%)</title><rect x="31.2395%" y="773" width="0.0217%" height="15" fill="rgb(237,16,53)" fg:x="141158" fg:w="98"/><text x="31.4895%" y="783.50"></text></g><g><title>os::PlatformEvent::park (97 samples, 0.02%)</title><rect x="31.2398%" y="757" width="0.0215%" height="15" fill="rgb(250,204,30)" fg:x="141159" fg:w="97"/><text x="31.4898%" y="767.50"></text></g><g><title>JVM_StartThread (130 samples, 0.03%)</title><rect x="31.2378%" y="805" width="0.0288%" height="15" fill="rgb(208,77,27)" fg:x="141150" fg:w="130"/><text x="31.4878%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="31.2694%" y="517" width="0.0108%" height="15" fill="rgb(250,204,28)" fg:x="141293" fg:w="49"/><text x="31.5194%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.01%)</title><rect x="31.2698%" y="501" width="0.0104%" height="15" fill="rgb(244,63,21)" fg:x="141295" fg:w="47"/><text x="31.5198%" y="511.50"></text></g><g><title>native_write_msr (47 samples, 0.01%)</title><rect x="31.2698%" y="485" width="0.0104%" height="15" fill="rgb(236,85,44)" fg:x="141295" fg:w="47"/><text x="31.5198%" y="495.50"></text></g><g><title>Monitor::lock_without_safepoint_check (52 samples, 0.01%)</title><rect x="31.2692%" y="757" width="0.0115%" height="15" fill="rgb(215,98,4)" fg:x="141292" fg:w="52"/><text x="31.5192%" y="767.50"></text></g><g><title>Monitor::ILock (52 samples, 0.01%)</title><rect x="31.2692%" y="741" width="0.0115%" height="15" fill="rgb(235,38,11)" fg:x="141292" fg:w="52"/><text x="31.5192%" y="751.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.01%)</title><rect x="31.2692%" y="725" width="0.0115%" height="15" fill="rgb(254,186,25)" fg:x="141292" fg:w="52"/><text x="31.5192%" y="735.50"></text></g><g><title>__pthread_cond_wait (52 samples, 0.01%)</title><rect x="31.2692%" y="709" width="0.0115%" height="15" fill="rgb(225,55,31)" fg:x="141292" fg:w="52"/><text x="31.5192%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (52 samples, 0.01%)</title><rect x="31.2692%" y="693" width="0.0115%" height="15" fill="rgb(211,15,21)" fg:x="141292" fg:w="52"/><text x="31.5192%" y="703.50"></text></g><g><title>futex_wait_cancelable (51 samples, 0.01%)</title><rect x="31.2694%" y="677" width="0.0113%" height="15" fill="rgb(215,187,41)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="31.2694%" y="661" width="0.0113%" height="15" fill="rgb(248,69,32)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="671.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="31.2694%" y="645" width="0.0113%" height="15" fill="rgb(252,102,52)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="655.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.01%)</title><rect x="31.2694%" y="629" width="0.0113%" height="15" fill="rgb(253,140,32)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="639.50"></text></g><g><title>do_futex (51 samples, 0.01%)</title><rect x="31.2694%" y="613" width="0.0113%" height="15" fill="rgb(216,56,42)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="623.50"></text></g><g><title>futex_wait (51 samples, 0.01%)</title><rect x="31.2694%" y="597" width="0.0113%" height="15" fill="rgb(216,184,14)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="607.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="31.2694%" y="581" width="0.0113%" height="15" fill="rgb(237,187,27)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="591.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="31.2694%" y="565" width="0.0113%" height="15" fill="rgb(219,65,3)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="575.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="31.2694%" y="549" width="0.0113%" height="15" fill="rgb(245,83,25)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="559.50"></text></g><g><title>finish_task_switch (51 samples, 0.01%)</title><rect x="31.2694%" y="533" width="0.0113%" height="15" fill="rgb(214,205,45)" fg:x="141293" fg:w="51"/><text x="31.5194%" y="543.50"></text></g><g><title>SafepointSynchronize::block (55 samples, 0.01%)</title><rect x="31.2687%" y="773" width="0.0122%" height="15" fill="rgb(241,20,18)" fg:x="141290" fg:w="55"/><text x="31.5187%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.02%)</title><rect x="31.2820%" y="581" width="0.0166%" height="15" fill="rgb(232,163,23)" fg:x="141350" fg:w="75"/><text x="31.5320%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (74 samples, 0.02%)</title><rect x="31.2822%" y="565" width="0.0164%" height="15" fill="rgb(214,5,46)" fg:x="141351" fg:w="74"/><text x="31.5322%" y="575.50"></text></g><g><title>native_write_msr (74 samples, 0.02%)</title><rect x="31.2822%" y="549" width="0.0164%" height="15" fill="rgb(229,78,17)" fg:x="141351" fg:w="74"/><text x="31.5322%" y="559.50"></text></g><g><title>finish_task_switch (79 samples, 0.02%)</title><rect x="31.2818%" y="597" width="0.0175%" height="15" fill="rgb(248,89,10)" fg:x="141349" fg:w="79"/><text x="31.5318%" y="607.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="31.2814%" y="709" width="0.0181%" height="15" fill="rgb(248,54,15)" fg:x="141347" fg:w="82"/><text x="31.5314%" y="719.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.02%)</title><rect x="31.2814%" y="693" width="0.0181%" height="15" fill="rgb(223,116,6)" fg:x="141347" fg:w="82"/><text x="31.5314%" y="703.50"></text></g><g><title>do_futex (82 samples, 0.02%)</title><rect x="31.2814%" y="677" width="0.0181%" height="15" fill="rgb(205,125,38)" fg:x="141347" fg:w="82"/><text x="31.5314%" y="687.50"></text></g><g><title>futex_wait (81 samples, 0.02%)</title><rect x="31.2816%" y="661" width="0.0179%" height="15" fill="rgb(251,78,38)" fg:x="141348" fg:w="81"/><text x="31.5316%" y="671.50"></text></g><g><title>futex_wait_queue_me (81 samples, 0.02%)</title><rect x="31.2816%" y="645" width="0.0179%" height="15" fill="rgb(253,78,28)" fg:x="141348" fg:w="81"/><text x="31.5316%" y="655.50"></text></g><g><title>schedule (81 samples, 0.02%)</title><rect x="31.2816%" y="629" width="0.0179%" height="15" fill="rgb(209,120,3)" fg:x="141348" fg:w="81"/><text x="31.5316%" y="639.50"></text></g><g><title>__schedule (81 samples, 0.02%)</title><rect x="31.2816%" y="613" width="0.0179%" height="15" fill="rgb(238,229,9)" fg:x="141348" fg:w="81"/><text x="31.5316%" y="623.50"></text></g><g><title>__pthread_cond_wait (86 samples, 0.02%)</title><rect x="31.2811%" y="773" width="0.0190%" height="15" fill="rgb(253,159,18)" fg:x="141346" fg:w="86"/><text x="31.5311%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (86 samples, 0.02%)</title><rect x="31.2811%" y="757" width="0.0190%" height="15" fill="rgb(244,42,34)" fg:x="141346" fg:w="86"/><text x="31.5311%" y="767.50"></text></g><g><title>futex_wait_cancelable (86 samples, 0.02%)</title><rect x="31.2811%" y="741" width="0.0190%" height="15" fill="rgb(224,8,7)" fg:x="141346" fg:w="86"/><text x="31.5311%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="31.2814%" y="725" width="0.0188%" height="15" fill="rgb(210,201,45)" fg:x="141347" fg:w="85"/><text x="31.5314%" y="735.50"></text></g><g><title>Unsafe_Park (146 samples, 0.03%)</title><rect x="31.2683%" y="805" width="0.0323%" height="15" fill="rgb(252,185,21)" fg:x="141288" fg:w="146"/><text x="31.5183%" y="815.50"></text></g><g><title>Parker::park (146 samples, 0.03%)</title><rect x="31.2683%" y="789" width="0.0323%" height="15" fill="rgb(223,131,1)" fg:x="141288" fg:w="146"/><text x="31.5183%" y="799.50"></text></g><g><title>[perf-42779.map] (394 samples, 0.09%)</title><rect x="31.2139%" y="821" width="0.0872%" height="15" fill="rgb(245,141,16)" fg:x="141042" fg:w="394"/><text x="31.4639%" y="831.50"></text></g><g><title>__GI___clone (83 samples, 0.02%)</title><rect x="31.3015%" y="821" width="0.0184%" height="15" fill="rgb(229,55,45)" fg:x="141438" fg:w="83"/><text x="31.5515%" y="831.50"></text></g><g><title>globbing_pool-1 (525 samples, 0.12%)</title><rect x="31.2041%" y="837" width="0.1162%" height="15" fill="rgb(208,92,15)" fg:x="140998" fg:w="525"/><text x="31.4541%" y="847.50"></text></g><g><title>Monitor::lock (46 samples, 0.01%)</title><rect x="31.3420%" y="789" width="0.0102%" height="15" fill="rgb(234,185,47)" fg:x="141621" fg:w="46"/><text x="31.5920%" y="799.50"></text></g><g><title>Monitor::ILock (46 samples, 0.01%)</title><rect x="31.3420%" y="773" width="0.0102%" height="15" fill="rgb(253,104,50)" fg:x="141621" fg:w="46"/><text x="31.5920%" y="783.50"></text></g><g><title>JVM_StartThread (69 samples, 0.02%)</title><rect x="31.3413%" y="805" width="0.0153%" height="15" fill="rgb(205,70,7)" fg:x="141618" fg:w="69"/><text x="31.5913%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="31.3650%" y="581" width="0.0148%" height="15" fill="rgb(240,178,43)" fg:x="141725" fg:w="67"/><text x="31.6150%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (65 samples, 0.01%)</title><rect x="31.3655%" y="565" width="0.0144%" height="15" fill="rgb(214,112,2)" fg:x="141727" fg:w="65"/><text x="31.6155%" y="575.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="31.3655%" y="549" width="0.0144%" height="15" fill="rgb(206,46,17)" fg:x="141727" fg:w="65"/><text x="31.6155%" y="559.50"></text></g><g><title>finish_task_switch (70 samples, 0.02%)</title><rect x="31.3648%" y="597" width="0.0155%" height="15" fill="rgb(225,220,16)" fg:x="141724" fg:w="70"/><text x="31.6148%" y="607.50"></text></g><g><title>do_syscall_64 (72 samples, 0.02%)</title><rect x="31.3646%" y="709" width="0.0159%" height="15" fill="rgb(238,65,40)" fg:x="141723" fg:w="72"/><text x="31.6146%" y="719.50"></text></g><g><title>__x64_sys_futex (72 samples, 0.02%)</title><rect x="31.3646%" y="693" width="0.0159%" height="15" fill="rgb(230,151,21)" fg:x="141723" fg:w="72"/><text x="31.6146%" y="703.50"></text></g><g><title>do_futex (71 samples, 0.02%)</title><rect x="31.3648%" y="677" width="0.0157%" height="15" fill="rgb(218,58,49)" fg:x="141724" fg:w="71"/><text x="31.6148%" y="687.50"></text></g><g><title>futex_wait (71 samples, 0.02%)</title><rect x="31.3648%" y="661" width="0.0157%" height="15" fill="rgb(219,179,14)" fg:x="141724" fg:w="71"/><text x="31.6148%" y="671.50"></text></g><g><title>futex_wait_queue_me (71 samples, 0.02%)</title><rect x="31.3648%" y="645" width="0.0157%" height="15" fill="rgb(223,72,1)" fg:x="141724" fg:w="71"/><text x="31.6148%" y="655.50"></text></g><g><title>schedule (71 samples, 0.02%)</title><rect x="31.3648%" y="629" width="0.0157%" height="15" fill="rgb(238,126,10)" fg:x="141724" fg:w="71"/><text x="31.6148%" y="639.50"></text></g><g><title>__schedule (71 samples, 0.02%)</title><rect x="31.3648%" y="613" width="0.0157%" height="15" fill="rgb(224,206,38)" fg:x="141724" fg:w="71"/><text x="31.6148%" y="623.50"></text></g><g><title>Unsafe_Park (107 samples, 0.02%)</title><rect x="31.3570%" y="805" width="0.0237%" height="15" fill="rgb(212,201,54)" fg:x="141689" fg:w="107"/><text x="31.6070%" y="815.50"></text></g><g><title>Parker::park (106 samples, 0.02%)</title><rect x="31.3573%" y="789" width="0.0235%" height="15" fill="rgb(218,154,48)" fg:x="141690" fg:w="106"/><text x="31.6073%" y="799.50"></text></g><g><title>__pthread_cond_wait (75 samples, 0.02%)</title><rect x="31.3641%" y="773" width="0.0166%" height="15" fill="rgb(232,93,24)" fg:x="141721" fg:w="75"/><text x="31.6141%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (75 samples, 0.02%)</title><rect x="31.3641%" y="757" width="0.0166%" height="15" fill="rgb(245,30,21)" fg:x="141721" fg:w="75"/><text x="31.6141%" y="767.50"></text></g><g><title>futex_wait_cancelable (73 samples, 0.02%)</title><rect x="31.3646%" y="741" width="0.0162%" height="15" fill="rgb(242,148,29)" fg:x="141723" fg:w="73"/><text x="31.6146%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.02%)</title><rect x="31.3646%" y="725" width="0.0162%" height="15" fill="rgb(244,153,54)" fg:x="141723" fg:w="73"/><text x="31.6146%" y="735.50"></text></g><g><title>[perf-42779.map] (251 samples, 0.06%)</title><rect x="31.3258%" y="821" width="0.0555%" height="15" fill="rgb(252,87,22)" fg:x="141548" fg:w="251"/><text x="31.5758%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.02%)</title><rect x="31.3858%" y="757" width="0.0150%" height="15" fill="rgb(210,51,29)" fg:x="141819" fg:w="68"/><text x="31.6358%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="31.3860%" y="741" width="0.0148%" height="15" fill="rgb(242,136,47)" fg:x="141820" fg:w="67"/><text x="31.6360%" y="751.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="31.3863%" y="725" width="0.0146%" height="15" fill="rgb(238,68,4)" fg:x="141821" fg:w="66"/><text x="31.6363%" y="735.50"></text></g><g><title>ret_from_fork (75 samples, 0.02%)</title><rect x="31.3849%" y="805" width="0.0166%" height="15" fill="rgb(242,161,30)" fg:x="141815" fg:w="75"/><text x="31.6349%" y="815.50"></text></g><g><title>schedule_tail (71 samples, 0.02%)</title><rect x="31.3858%" y="789" width="0.0157%" height="15" fill="rgb(218,58,44)" fg:x="141819" fg:w="71"/><text x="31.6358%" y="799.50"></text></g><g><title>finish_task_switch (71 samples, 0.02%)</title><rect x="31.3858%" y="773" width="0.0157%" height="15" fill="rgb(252,125,32)" fg:x="141819" fg:w="71"/><text x="31.6358%" y="783.50"></text></g><g><title>__GI___clone (123 samples, 0.03%)</title><rect x="31.3836%" y="821" width="0.0272%" height="15" fill="rgb(219,178,0)" fg:x="141809" fg:w="123"/><text x="31.6336%" y="831.50"></text></g><g><title>globbing_pool-2 (414 samples, 0.09%)</title><rect x="31.3203%" y="837" width="0.0916%" height="15" fill="rgb(213,152,7)" fg:x="141523" fg:w="414"/><text x="31.5703%" y="847.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="31.4562%" y="677" width="0.0108%" height="15" fill="rgb(249,109,34)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="687.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.01%)</title><rect x="31.4562%" y="661" width="0.0108%" height="15" fill="rgb(232,96,21)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="671.50"></text></g><g><title>do_futex (49 samples, 0.01%)</title><rect x="31.4562%" y="645" width="0.0108%" height="15" fill="rgb(228,27,39)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="655.50"></text></g><g><title>futex_wait (49 samples, 0.01%)</title><rect x="31.4562%" y="629" width="0.0108%" height="15" fill="rgb(211,182,52)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="639.50"></text></g><g><title>futex_wait_queue_me (49 samples, 0.01%)</title><rect x="31.4562%" y="613" width="0.0108%" height="15" fill="rgb(234,178,38)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="623.50"></text></g><g><title>schedule (49 samples, 0.01%)</title><rect x="31.4562%" y="597" width="0.0108%" height="15" fill="rgb(221,111,3)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="607.50"></text></g><g><title>__schedule (49 samples, 0.01%)</title><rect x="31.4562%" y="581" width="0.0108%" height="15" fill="rgb(228,175,21)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="591.50"></text></g><g><title>finish_task_switch (49 samples, 0.01%)</title><rect x="31.4562%" y="565" width="0.0108%" height="15" fill="rgb(228,174,43)" fg:x="142137" fg:w="49"/><text x="31.7062%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.01%)</title><rect x="31.4564%" y="549" width="0.0106%" height="15" fill="rgb(211,191,0)" fg:x="142138" fg:w="48"/><text x="31.7064%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.01%)</title><rect x="31.4564%" y="533" width="0.0106%" height="15" fill="rgb(253,117,3)" fg:x="142138" fg:w="48"/><text x="31.7064%" y="543.50"></text></g><g><title>native_write_msr (48 samples, 0.01%)</title><rect x="31.4564%" y="517" width="0.0106%" height="15" fill="rgb(241,127,19)" fg:x="142138" fg:w="48"/><text x="31.7064%" y="527.50"></text></g><g><title>__pthread_cond_wait (50 samples, 0.01%)</title><rect x="31.4562%" y="741" width="0.0111%" height="15" fill="rgb(218,103,12)" fg:x="142137" fg:w="50"/><text x="31.7062%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.01%)</title><rect x="31.4562%" y="725" width="0.0111%" height="15" fill="rgb(236,214,43)" fg:x="142137" fg:w="50"/><text x="31.7062%" y="735.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.01%)</title><rect x="31.4562%" y="709" width="0.0111%" height="15" fill="rgb(244,144,19)" fg:x="142137" fg:w="50"/><text x="31.7062%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="31.4562%" y="693" width="0.0111%" height="15" fill="rgb(246,188,10)" fg:x="142137" fg:w="50"/><text x="31.7062%" y="703.50"></text></g><g><title>Monitor::lock (52 samples, 0.01%)</title><rect x="31.4562%" y="789" width="0.0115%" height="15" fill="rgb(212,193,33)" fg:x="142137" fg:w="52"/><text x="31.7062%" y="799.50"></text></g><g><title>Monitor::ILock (52 samples, 0.01%)</title><rect x="31.4562%" y="773" width="0.0115%" height="15" fill="rgb(241,51,29)" fg:x="142137" fg:w="52"/><text x="31.7062%" y="783.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.01%)</title><rect x="31.4562%" y="757" width="0.0115%" height="15" fill="rgb(211,58,19)" fg:x="142137" fg:w="52"/><text x="31.7062%" y="767.50"></text></g><g><title>JVM_StartThread (83 samples, 0.02%)</title><rect x="31.4551%" y="805" width="0.0184%" height="15" fill="rgb(229,111,26)" fg:x="142132" fg:w="83"/><text x="31.7051%" y="815.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="31.4748%" y="645" width="0.0106%" height="15" fill="rgb(213,115,40)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="655.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.01%)</title><rect x="31.4748%" y="629" width="0.0106%" height="15" fill="rgb(209,56,44)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="639.50"></text></g><g><title>do_futex (48 samples, 0.01%)</title><rect x="31.4748%" y="613" width="0.0106%" height="15" fill="rgb(230,108,32)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="623.50"></text></g><g><title>futex_wait (48 samples, 0.01%)</title><rect x="31.4748%" y="597" width="0.0106%" height="15" fill="rgb(216,165,31)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="607.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.01%)</title><rect x="31.4748%" y="581" width="0.0106%" height="15" fill="rgb(218,122,21)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="591.50"></text></g><g><title>schedule (48 samples, 0.01%)</title><rect x="31.4748%" y="565" width="0.0106%" height="15" fill="rgb(223,224,47)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="575.50"></text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="31.4748%" y="549" width="0.0106%" height="15" fill="rgb(238,102,44)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="559.50"></text></g><g><title>finish_task_switch (48 samples, 0.01%)</title><rect x="31.4748%" y="533" width="0.0106%" height="15" fill="rgb(236,46,40)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.01%)</title><rect x="31.4748%" y="517" width="0.0106%" height="15" fill="rgb(247,202,50)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.01%)</title><rect x="31.4748%" y="501" width="0.0106%" height="15" fill="rgb(209,99,20)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="511.50"></text></g><g><title>native_write_msr (48 samples, 0.01%)</title><rect x="31.4748%" y="485" width="0.0106%" height="15" fill="rgb(252,27,34)" fg:x="142221" fg:w="48"/><text x="31.7248%" y="495.50"></text></g><g><title>__pthread_cond_wait (51 samples, 0.01%)</title><rect x="31.4746%" y="709" width="0.0113%" height="15" fill="rgb(215,206,23)" fg:x="142220" fg:w="51"/><text x="31.7246%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.01%)</title><rect x="31.4746%" y="693" width="0.0113%" height="15" fill="rgb(212,135,36)" fg:x="142220" fg:w="51"/><text x="31.7246%" y="703.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.01%)</title><rect x="31.4748%" y="677" width="0.0111%" height="15" fill="rgb(240,189,1)" fg:x="142221" fg:w="50"/><text x="31.7248%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="31.4748%" y="661" width="0.0111%" height="15" fill="rgb(242,56,20)" fg:x="142221" fg:w="50"/><text x="31.7248%" y="671.50"></text></g><g><title>Monitor::lock_without_safepoint_check (53 samples, 0.01%)</title><rect x="31.4746%" y="757" width="0.0117%" height="15" fill="rgb(247,132,33)" fg:x="142220" fg:w="53"/><text x="31.7246%" y="767.50"></text></g><g><title>Monitor::ILock (53 samples, 0.01%)</title><rect x="31.4746%" y="741" width="0.0117%" height="15" fill="rgb(208,149,11)" fg:x="142220" fg:w="53"/><text x="31.7246%" y="751.50"></text></g><g><title>os::PlatformEvent::park (53 samples, 0.01%)</title><rect x="31.4746%" y="725" width="0.0117%" height="15" fill="rgb(211,33,11)" fg:x="142220" fg:w="53"/><text x="31.7246%" y="735.50"></text></g><g><title>SafepointSynchronize::block (55 samples, 0.01%)</title><rect x="31.4746%" y="773" width="0.0122%" height="15" fill="rgb(221,29,38)" fg:x="142220" fg:w="55"/><text x="31.7246%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="31.4887%" y="581" width="0.0120%" height="15" fill="rgb(206,182,49)" fg:x="142284" fg:w="54"/><text x="31.7387%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="31.4887%" y="565" width="0.0120%" height="15" fill="rgb(216,140,1)" fg:x="142284" fg:w="54"/><text x="31.7387%" y="575.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="31.4887%" y="549" width="0.0120%" height="15" fill="rgb(232,57,40)" fg:x="142284" fg:w="54"/><text x="31.7387%" y="559.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="31.4872%" y="709" width="0.0139%" height="15" fill="rgb(224,186,18)" fg:x="142277" fg:w="63"/><text x="31.7372%" y="719.50"></text></g><g><title>__x64_sys_futex (63 samples, 0.01%)</title><rect x="31.4872%" y="693" width="0.0139%" height="15" fill="rgb(215,121,11)" fg:x="142277" fg:w="63"/><text x="31.7372%" y="703.50"></text></g><g><title>do_futex (63 samples, 0.01%)</title><rect x="31.4872%" y="677" width="0.0139%" height="15" fill="rgb(245,147,10)" fg:x="142277" fg:w="63"/><text x="31.7372%" y="687.50"></text></g><g><title>futex_wait (63 samples, 0.01%)</title><rect x="31.4872%" y="661" width="0.0139%" height="15" fill="rgb(238,153,13)" fg:x="142277" fg:w="63"/><text x="31.7372%" y="671.50"></text></g><g><title>futex_wait_queue_me (63 samples, 0.01%)</title><rect x="31.4872%" y="645" width="0.0139%" height="15" fill="rgb(233,108,0)" fg:x="142277" fg:w="63"/><text x="31.7372%" y="655.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="31.4874%" y="629" width="0.0137%" height="15" fill="rgb(212,157,17)" fg:x="142278" fg:w="62"/><text x="31.7374%" y="639.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="31.4874%" y="613" width="0.0137%" height="15" fill="rgb(225,213,38)" fg:x="142278" fg:w="62"/><text x="31.7374%" y="623.50"></text></g><g><title>finish_task_switch (58 samples, 0.01%)</title><rect x="31.4883%" y="597" width="0.0128%" height="15" fill="rgb(248,16,11)" fg:x="142282" fg:w="58"/><text x="31.7383%" y="607.50"></text></g><g><title>Unsafe_Park (121 samples, 0.03%)</title><rect x="31.4746%" y="805" width="0.0268%" height="15" fill="rgb(241,33,4)" fg:x="142220" fg:w="121"/><text x="31.7246%" y="815.50"></text></g><g><title>Parker::park (121 samples, 0.03%)</title><rect x="31.4746%" y="789" width="0.0268%" height="15" fill="rgb(222,26,43)" fg:x="142220" fg:w="121"/><text x="31.7246%" y="799.50"></text></g><g><title>__pthread_cond_wait (66 samples, 0.01%)</title><rect x="31.4867%" y="773" width="0.0146%" height="15" fill="rgb(243,29,36)" fg:x="142275" fg:w="66"/><text x="31.7367%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (66 samples, 0.01%)</title><rect x="31.4867%" y="757" width="0.0146%" height="15" fill="rgb(241,9,27)" fg:x="142275" fg:w="66"/><text x="31.7367%" y="767.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.01%)</title><rect x="31.4872%" y="741" width="0.0142%" height="15" fill="rgb(205,117,26)" fg:x="142277" fg:w="64"/><text x="31.7372%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="31.4872%" y="725" width="0.0142%" height="15" fill="rgb(209,80,39)" fg:x="142277" fg:w="64"/><text x="31.7372%" y="735.50"></text></g><g><title>[perf-42779.map] (367 samples, 0.08%)</title><rect x="31.4232%" y="821" width="0.0812%" height="15" fill="rgb(239,155,6)" fg:x="141988" fg:w="367"/><text x="31.6732%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (95 samples, 0.02%)</title><rect x="31.5080%" y="757" width="0.0210%" height="15" fill="rgb(212,104,12)" fg:x="142371" fg:w="95"/><text x="31.7580%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (94 samples, 0.02%)</title><rect x="31.5082%" y="741" width="0.0208%" height="15" fill="rgb(234,204,3)" fg:x="142372" fg:w="94"/><text x="31.7582%" y="751.50"></text></g><g><title>native_write_msr (94 samples, 0.02%)</title><rect x="31.5082%" y="725" width="0.0208%" height="15" fill="rgb(251,218,7)" fg:x="142372" fg:w="94"/><text x="31.7582%" y="735.50"></text></g><g><title>schedule_tail (102 samples, 0.02%)</title><rect x="31.5071%" y="789" width="0.0226%" height="15" fill="rgb(221,81,32)" fg:x="142367" fg:w="102"/><text x="31.7571%" y="799.50"></text></g><g><title>finish_task_switch (101 samples, 0.02%)</title><rect x="31.5073%" y="773" width="0.0224%" height="15" fill="rgb(214,152,26)" fg:x="142368" fg:w="101"/><text x="31.7573%" y="783.50"></text></g><g><title>ret_from_fork (106 samples, 0.02%)</title><rect x="31.5064%" y="805" width="0.0235%" height="15" fill="rgb(223,22,3)" fg:x="142364" fg:w="106"/><text x="31.7564%" y="815.50"></text></g><g><title>__GI___clone (158 samples, 0.03%)</title><rect x="31.5051%" y="821" width="0.0350%" height="15" fill="rgb(207,174,7)" fg:x="142358" fg:w="158"/><text x="31.7551%" y="831.50"></text></g><g><title>start_thread (46 samples, 0.01%)</title><rect x="31.5299%" y="805" width="0.0102%" height="15" fill="rgb(224,19,52)" fg:x="142470" fg:w="46"/><text x="31.7799%" y="815.50"></text></g><g><title>globbing_pool-3 (584 samples, 0.13%)</title><rect x="31.4119%" y="837" width="0.1292%" height="15" fill="rgb(228,24,14)" fg:x="141937" fg:w="584"/><text x="31.6619%" y="847.50"></text></g><g><title>Monitor::lock_without_safepoint_check (47 samples, 0.01%)</title><rect x="31.5865%" y="757" width="0.0104%" height="15" fill="rgb(230,153,43)" fg:x="142726" fg:w="47"/><text x="31.8365%" y="767.50"></text></g><g><title>Monitor::ILock (47 samples, 0.01%)</title><rect x="31.5865%" y="741" width="0.0104%" height="15" fill="rgb(231,106,12)" fg:x="142726" fg:w="47"/><text x="31.8365%" y="751.50"></text></g><g><title>os::PlatformEvent::park (46 samples, 0.01%)</title><rect x="31.5868%" y="725" width="0.0102%" height="15" fill="rgb(215,92,2)" fg:x="142727" fg:w="46"/><text x="31.8368%" y="735.50"></text></g><g><title>SafepointSynchronize::block (48 samples, 0.01%)</title><rect x="31.5865%" y="773" width="0.0106%" height="15" fill="rgb(249,143,25)" fg:x="142726" fg:w="48"/><text x="31.8365%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="31.5978%" y="581" width="0.0128%" height="15" fill="rgb(252,7,35)" fg:x="142777" fg:w="58"/><text x="31.8478%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="31.5978%" y="565" width="0.0128%" height="15" fill="rgb(216,69,40)" fg:x="142777" fg:w="58"/><text x="31.8478%" y="575.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="31.5978%" y="549" width="0.0128%" height="15" fill="rgb(240,36,33)" fg:x="142777" fg:w="58"/><text x="31.8478%" y="559.50"></text></g><g><title>do_syscall_64 (62 samples, 0.01%)</title><rect x="31.5972%" y="709" width="0.0137%" height="15" fill="rgb(231,128,14)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="719.50"></text></g><g><title>__x64_sys_futex (62 samples, 0.01%)</title><rect x="31.5972%" y="693" width="0.0137%" height="15" fill="rgb(245,143,14)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="703.50"></text></g><g><title>do_futex (62 samples, 0.01%)</title><rect x="31.5972%" y="677" width="0.0137%" height="15" fill="rgb(222,130,28)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="687.50"></text></g><g><title>futex_wait (62 samples, 0.01%)</title><rect x="31.5972%" y="661" width="0.0137%" height="15" fill="rgb(212,10,48)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="671.50"></text></g><g><title>futex_wait_queue_me (62 samples, 0.01%)</title><rect x="31.5972%" y="645" width="0.0137%" height="15" fill="rgb(254,118,45)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="655.50"></text></g><g><title>schedule (62 samples, 0.01%)</title><rect x="31.5972%" y="629" width="0.0137%" height="15" fill="rgb(228,6,45)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="639.50"></text></g><g><title>__schedule (62 samples, 0.01%)</title><rect x="31.5972%" y="613" width="0.0137%" height="15" fill="rgb(241,18,35)" fg:x="142774" fg:w="62"/><text x="31.8472%" y="623.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="31.5978%" y="597" width="0.0131%" height="15" fill="rgb(227,214,53)" fg:x="142777" fg:w="59"/><text x="31.8478%" y="607.50"></text></g><g><title>Unsafe_Park (114 samples, 0.03%)</title><rect x="31.5861%" y="805" width="0.0252%" height="15" fill="rgb(224,107,51)" fg:x="142724" fg:w="114"/><text x="31.8361%" y="815.50"></text></g><g><title>Parker::park (113 samples, 0.03%)</title><rect x="31.5863%" y="789" width="0.0250%" height="15" fill="rgb(248,60,28)" fg:x="142725" fg:w="113"/><text x="31.8363%" y="799.50"></text></g><g><title>__pthread_cond_wait (64 samples, 0.01%)</title><rect x="31.5972%" y="773" width="0.0142%" height="15" fill="rgb(249,101,23)" fg:x="142774" fg:w="64"/><text x="31.8472%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.01%)</title><rect x="31.5972%" y="757" width="0.0142%" height="15" fill="rgb(228,51,19)" fg:x="142774" fg:w="64"/><text x="31.8472%" y="767.50"></text></g><g><title>futex_wait_cancelable (64 samples, 0.01%)</title><rect x="31.5972%" y="741" width="0.0142%" height="15" fill="rgb(213,20,6)" fg:x="142774" fg:w="64"/><text x="31.8472%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="31.5972%" y="725" width="0.0142%" height="15" fill="rgb(212,124,10)" fg:x="142774" fg:w="64"/><text x="31.8472%" y="735.50"></text></g><g><title>[perf-42779.map] (288 samples, 0.06%)</title><rect x="31.5491%" y="821" width="0.0637%" height="15" fill="rgb(248,3,40)" fg:x="142557" fg:w="288"/><text x="31.7991%" y="831.50"></text></g><g><title>__GI___clone (46 samples, 0.01%)</title><rect x="31.6133%" y="821" width="0.0102%" height="15" fill="rgb(223,178,23)" fg:x="142847" fg:w="46"/><text x="31.8633%" y="831.50"></text></g><g><title>globbing_pool-4 (375 samples, 0.08%)</title><rect x="31.5412%" y="837" width="0.0830%" height="15" fill="rgb(240,132,45)" fg:x="142521" fg:w="375"/><text x="31.7912%" y="847.50"></text></g><g><title>Unsafe_Park (70 samples, 0.02%)</title><rect x="31.6483%" y="805" width="0.0155%" height="15" fill="rgb(245,164,36)" fg:x="143005" fg:w="70"/><text x="31.8983%" y="815.50"></text></g><g><title>Parker::park (70 samples, 0.02%)</title><rect x="31.6483%" y="789" width="0.0155%" height="15" fill="rgb(231,188,53)" fg:x="143005" fg:w="70"/><text x="31.8983%" y="799.50"></text></g><g><title>[perf-42779.map] (166 samples, 0.04%)</title><rect x="31.6275%" y="821" width="0.0367%" height="15" fill="rgb(237,198,39)" fg:x="142911" fg:w="166"/><text x="31.8775%" y="831.50"></text></g><g><title>globbing_pool-5 (236 samples, 0.05%)</title><rect x="31.6242%" y="837" width="0.0522%" height="15" fill="rgb(223,120,35)" fg:x="142896" fg:w="236"/><text x="31.8742%" y="847.50"></text></g><g><title>[perf-42779.map] (141 samples, 0.03%)</title><rect x="31.6839%" y="821" width="0.0312%" height="15" fill="rgb(253,107,49)" fg:x="143166" fg:w="141"/><text x="31.9339%" y="831.50"></text></g><g><title>globbing_pool-6 (214 samples, 0.05%)</title><rect x="31.6764%" y="837" width="0.0474%" height="15" fill="rgb(216,44,31)" fg:x="143132" fg:w="214"/><text x="31.9264%" y="847.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="31.7503%" y="645" width="0.0106%" height="15" fill="rgb(253,87,21)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="655.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.01%)</title><rect x="31.7503%" y="629" width="0.0106%" height="15" fill="rgb(226,18,2)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="639.50"></text></g><g><title>do_futex (48 samples, 0.01%)</title><rect x="31.7503%" y="613" width="0.0106%" height="15" fill="rgb(216,8,46)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="623.50"></text></g><g><title>futex_wait (48 samples, 0.01%)</title><rect x="31.7503%" y="597" width="0.0106%" height="15" fill="rgb(226,140,39)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="607.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.01%)</title><rect x="31.7503%" y="581" width="0.0106%" height="15" fill="rgb(221,194,54)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="591.50"></text></g><g><title>schedule (48 samples, 0.01%)</title><rect x="31.7503%" y="565" width="0.0106%" height="15" fill="rgb(213,92,11)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="575.50"></text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="31.7503%" y="549" width="0.0106%" height="15" fill="rgb(229,162,46)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="559.50"></text></g><g><title>finish_task_switch (48 samples, 0.01%)</title><rect x="31.7503%" y="533" width="0.0106%" height="15" fill="rgb(214,111,36)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="543.50"></text></g><g><title>__perf_event_task_sched_in (48 samples, 0.01%)</title><rect x="31.7503%" y="517" width="0.0106%" height="15" fill="rgb(207,6,21)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.01%)</title><rect x="31.7503%" y="501" width="0.0106%" height="15" fill="rgb(213,127,38)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="511.50"></text></g><g><title>native_write_msr (48 samples, 0.01%)</title><rect x="31.7503%" y="485" width="0.0106%" height="15" fill="rgb(238,118,32)" fg:x="143466" fg:w="48"/><text x="32.0003%" y="495.50"></text></g><g><title>__pthread_cond_wait (51 samples, 0.01%)</title><rect x="31.7501%" y="709" width="0.0113%" height="15" fill="rgb(240,139,39)" fg:x="143465" fg:w="51"/><text x="32.0001%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.01%)</title><rect x="31.7501%" y="693" width="0.0113%" height="15" fill="rgb(235,10,37)" fg:x="143465" fg:w="51"/><text x="32.0001%" y="703.50"></text></g><g><title>futex_wait_cancelable (50 samples, 0.01%)</title><rect x="31.7503%" y="677" width="0.0111%" height="15" fill="rgb(249,171,38)" fg:x="143466" fg:w="50"/><text x="32.0003%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="31.7503%" y="661" width="0.0111%" height="15" fill="rgb(242,144,32)" fg:x="143466" fg:w="50"/><text x="32.0003%" y="671.50"></text></g><g><title>Monitor::lock_without_safepoint_check (52 samples, 0.01%)</title><rect x="31.7501%" y="757" width="0.0115%" height="15" fill="rgb(217,117,21)" fg:x="143465" fg:w="52"/><text x="32.0001%" y="767.50"></text></g><g><title>Monitor::ILock (52 samples, 0.01%)</title><rect x="31.7501%" y="741" width="0.0115%" height="15" fill="rgb(249,87,1)" fg:x="143465" fg:w="52"/><text x="32.0001%" y="751.50"></text></g><g><title>os::PlatformEvent::park (52 samples, 0.01%)</title><rect x="31.7501%" y="725" width="0.0115%" height="15" fill="rgb(248,196,48)" fg:x="143465" fg:w="52"/><text x="32.0001%" y="735.50"></text></g><g><title>SafepointSynchronize::block (53 samples, 0.01%)</title><rect x="31.7501%" y="773" width="0.0117%" height="15" fill="rgb(251,206,33)" fg:x="143465" fg:w="53"/><text x="32.0001%" y="783.50"></text></g><g><title>Unsafe_Park (101 samples, 0.02%)</title><rect x="31.7501%" y="805" width="0.0224%" height="15" fill="rgb(232,141,28)" fg:x="143465" fg:w="101"/><text x="32.0001%" y="815.50"></text></g><g><title>Parker::park (101 samples, 0.02%)</title><rect x="31.7501%" y="789" width="0.0224%" height="15" fill="rgb(209,167,14)" fg:x="143465" fg:w="101"/><text x="32.0001%" y="799.50"></text></g><g><title>[perf-42779.map] (203 samples, 0.04%)</title><rect x="31.7288%" y="821" width="0.0449%" height="15" fill="rgb(225,11,50)" fg:x="143369" fg:w="203"/><text x="31.9788%" y="831.50"></text></g><g><title>globbing_pool-7 (250 samples, 0.06%)</title><rect x="31.7238%" y="837" width="0.0553%" height="15" fill="rgb(209,50,20)" fg:x="143346" fg:w="250"/><text x="31.9738%" y="847.50"></text></g><g><title>[libunix_jni.so] (61 samples, 0.01%)</title><rect x="31.7809%" y="821" width="0.0135%" height="15" fill="rgb(212,17,46)" fg:x="143604" fg:w="61"/><text x="32.0309%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="31.8532%" y="581" width="0.0120%" height="15" fill="rgb(216,101,39)" fg:x="143931" fg:w="54"/><text x="32.1032%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="31.8532%" y="565" width="0.0120%" height="15" fill="rgb(212,228,48)" fg:x="143931" fg:w="54"/><text x="32.1032%" y="575.50"></text></g><g><title>native_write_msr (53 samples, 0.01%)</title><rect x="31.8534%" y="549" width="0.0117%" height="15" fill="rgb(250,6,50)" fg:x="143932" fg:w="53"/><text x="32.1034%" y="559.50"></text></g><g><title>finish_task_switch (57 samples, 0.01%)</title><rect x="31.8532%" y="597" width="0.0126%" height="15" fill="rgb(250,160,48)" fg:x="143931" fg:w="57"/><text x="32.1032%" y="607.50"></text></g><g><title>do_syscall_64 (61 samples, 0.01%)</title><rect x="31.8528%" y="709" width="0.0135%" height="15" fill="rgb(244,216,33)" fg:x="143929" fg:w="61"/><text x="32.1028%" y="719.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.01%)</title><rect x="31.8528%" y="693" width="0.0135%" height="15" fill="rgb(207,157,5)" fg:x="143929" fg:w="61"/><text x="32.1028%" y="703.50"></text></g><g><title>do_futex (61 samples, 0.01%)</title><rect x="31.8528%" y="677" width="0.0135%" height="15" fill="rgb(228,199,8)" fg:x="143929" fg:w="61"/><text x="32.1028%" y="687.50"></text></g><g><title>futex_wait (61 samples, 0.01%)</title><rect x="31.8528%" y="661" width="0.0135%" height="15" fill="rgb(227,80,20)" fg:x="143929" fg:w="61"/><text x="32.1028%" y="671.50"></text></g><g><title>futex_wait_queue_me (60 samples, 0.01%)</title><rect x="31.8530%" y="645" width="0.0133%" height="15" fill="rgb(222,9,33)" fg:x="143930" fg:w="60"/><text x="32.1030%" y="655.50"></text></g><g><title>schedule (60 samples, 0.01%)</title><rect x="31.8530%" y="629" width="0.0133%" height="15" fill="rgb(239,44,28)" fg:x="143930" fg:w="60"/><text x="32.1030%" y="639.50"></text></g><g><title>__schedule (60 samples, 0.01%)</title><rect x="31.8530%" y="613" width="0.0133%" height="15" fill="rgb(249,187,43)" fg:x="143930" fg:w="60"/><text x="32.1030%" y="623.50"></text></g><g><title>__pthread_cond_wait (62 samples, 0.01%)</title><rect x="31.8528%" y="773" width="0.0137%" height="15" fill="rgb(216,141,28)" fg:x="143929" fg:w="62"/><text x="32.1028%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (62 samples, 0.01%)</title><rect x="31.8528%" y="757" width="0.0137%" height="15" fill="rgb(230,154,53)" fg:x="143929" fg:w="62"/><text x="32.1028%" y="767.50"></text></g><g><title>futex_wait_cancelable (62 samples, 0.01%)</title><rect x="31.8528%" y="741" width="0.0137%" height="15" fill="rgb(227,82,4)" fg:x="143929" fg:w="62"/><text x="32.1028%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.01%)</title><rect x="31.8528%" y="725" width="0.0137%" height="15" fill="rgb(220,107,16)" fg:x="143929" fg:w="62"/><text x="32.1028%" y="735.50"></text></g><g><title>Unsafe_Park (103 samples, 0.02%)</title><rect x="31.8444%" y="805" width="0.0228%" height="15" fill="rgb(207,187,2)" fg:x="143891" fg:w="103"/><text x="32.0944%" y="815.50"></text></g><g><title>Parker::park (103 samples, 0.02%)</title><rect x="31.8444%" y="789" width="0.0228%" height="15" fill="rgb(210,162,52)" fg:x="143891" fg:w="103"/><text x="32.0944%" y="799.50"></text></g><g><title>[perf-42779.map] (335 samples, 0.07%)</title><rect x="31.7944%" y="821" width="0.0741%" height="15" fill="rgb(217,216,49)" fg:x="143665" fg:w="335"/><text x="32.0444%" y="831.50"></text></g><g><title>globbing_pool-8 (468 samples, 0.10%)</title><rect x="31.7791%" y="837" width="0.1036%" height="15" fill="rgb(218,146,49)" fg:x="143596" fg:w="468"/><text x="32.0291%" y="847.50"></text></g><g><title>SafepointSynchronize::block (46 samples, 0.01%)</title><rect x="31.9006%" y="773" width="0.0102%" height="15" fill="rgb(216,55,40)" fg:x="144145" fg:w="46"/><text x="32.1506%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="31.9110%" y="581" width="0.0162%" height="15" fill="rgb(208,196,21)" fg:x="144192" fg:w="73"/><text x="32.1610%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (72 samples, 0.02%)</title><rect x="31.9112%" y="565" width="0.0159%" height="15" fill="rgb(242,117,42)" fg:x="144193" fg:w="72"/><text x="32.1612%" y="575.50"></text></g><g><title>native_write_msr (72 samples, 0.02%)</title><rect x="31.9112%" y="549" width="0.0159%" height="15" fill="rgb(210,11,23)" fg:x="144193" fg:w="72"/><text x="32.1612%" y="559.50"></text></g><g><title>do_syscall_64 (76 samples, 0.02%)</title><rect x="31.9108%" y="709" width="0.0168%" height="15" fill="rgb(217,110,2)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="719.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.02%)</title><rect x="31.9108%" y="693" width="0.0168%" height="15" fill="rgb(229,77,54)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="703.50"></text></g><g><title>do_futex (76 samples, 0.02%)</title><rect x="31.9108%" y="677" width="0.0168%" height="15" fill="rgb(218,53,16)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="687.50"></text></g><g><title>futex_wait (76 samples, 0.02%)</title><rect x="31.9108%" y="661" width="0.0168%" height="15" fill="rgb(215,38,13)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="671.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.02%)</title><rect x="31.9108%" y="645" width="0.0168%" height="15" fill="rgb(235,42,18)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="655.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="31.9108%" y="629" width="0.0168%" height="15" fill="rgb(219,66,54)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="639.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="31.9108%" y="613" width="0.0168%" height="15" fill="rgb(222,205,4)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="623.50"></text></g><g><title>finish_task_switch (76 samples, 0.02%)</title><rect x="31.9108%" y="597" width="0.0168%" height="15" fill="rgb(227,213,46)" fg:x="144191" fg:w="76"/><text x="32.1608%" y="607.50"></text></g><g><title>__pthread_cond_wait (80 samples, 0.02%)</title><rect x="31.9108%" y="773" width="0.0177%" height="15" fill="rgb(250,145,42)" fg:x="144191" fg:w="80"/><text x="32.1608%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (80 samples, 0.02%)</title><rect x="31.9108%" y="757" width="0.0177%" height="15" fill="rgb(219,15,2)" fg:x="144191" fg:w="80"/><text x="32.1608%" y="767.50"></text></g><g><title>futex_wait_cancelable (80 samples, 0.02%)</title><rect x="31.9108%" y="741" width="0.0177%" height="15" fill="rgb(231,181,52)" fg:x="144191" fg:w="80"/><text x="32.1608%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="31.9108%" y="725" width="0.0177%" height="15" fill="rgb(235,1,42)" fg:x="144191" fg:w="80"/><text x="32.1608%" y="735.50"></text></g><g><title>Parker::park (128 samples, 0.03%)</title><rect x="31.9004%" y="789" width="0.0283%" height="15" fill="rgb(249,88,27)" fg:x="144144" fg:w="128"/><text x="32.1504%" y="799.50"></text></g><g><title>[perf-42779.map] (206 samples, 0.05%)</title><rect x="31.8849%" y="821" width="0.0456%" height="15" fill="rgb(235,145,16)" fg:x="144074" fg:w="206"/><text x="32.1349%" y="831.50"></text></g><g><title>Unsafe_Park (136 samples, 0.03%)</title><rect x="31.9004%" y="805" width="0.0301%" height="15" fill="rgb(237,114,19)" fg:x="144144" fg:w="136"/><text x="32.1504%" y="815.50"></text></g><g><title>globbing_pool-9 (255 samples, 0.06%)</title><rect x="31.8827%" y="837" width="0.0564%" height="15" fill="rgb(238,51,50)" fg:x="144064" fg:w="255"/><text x="32.1327%" y="847.50"></text></g><g><title>[anon] (235 samples, 0.05%)</title><rect x="31.9415%" y="821" width="0.0520%" height="15" fill="rgb(205,194,25)" fg:x="144330" fg:w="235"/><text x="32.1915%" y="831.50"></text></g><g><title>do_rmdir (76 samples, 0.02%)</title><rect x="32.0059%" y="757" width="0.0168%" height="15" fill="rgb(215,203,17)" fg:x="144621" fg:w="76"/><text x="32.2559%" y="767.50"></text></g><g><title>vfs_rmdir.part.0 (73 samples, 0.02%)</title><rect x="32.0066%" y="741" width="0.0162%" height="15" fill="rgb(233,112,49)" fg:x="144624" fg:w="73"/><text x="32.2566%" y="751.50"></text></g><g><title>btrfs_del_items (79 samples, 0.02%)</title><rect x="32.0422%" y="677" width="0.0175%" height="15" fill="rgb(241,130,26)" fg:x="144785" fg:w="79"/><text x="32.2922%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (141 samples, 0.03%)</title><rect x="32.0416%" y="693" width="0.0312%" height="15" fill="rgb(252,223,19)" fg:x="144782" fg:w="141"/><text x="32.2916%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (157 samples, 0.03%)</title><rect x="32.0391%" y="709" width="0.0347%" height="15" fill="rgb(211,95,25)" fg:x="144771" fg:w="157"/><text x="32.2891%" y="719.50"></text></g><g><title>btrfs_del_orphan_item (65 samples, 0.01%)</title><rect x="32.0739%" y="709" width="0.0144%" height="15" fill="rgb(251,182,27)" fg:x="144928" fg:w="65"/><text x="32.3239%" y="719.50"></text></g><g><title>btrfs_del_items (93 samples, 0.02%)</title><rect x="32.0922%" y="693" width="0.0206%" height="15" fill="rgb(238,24,4)" fg:x="145011" fg:w="93"/><text x="32.3422%" y="703.50"></text></g><g><title>btrfs_truncate_inode_items (184 samples, 0.04%)</title><rect x="32.0887%" y="709" width="0.0407%" height="15" fill="rgb(224,220,25)" fg:x="144995" fg:w="184"/><text x="32.3387%" y="719.50"></text></g><g><title>btrfs_evict_inode (550 samples, 0.12%)</title><rect x="32.0338%" y="725" width="0.1217%" height="15" fill="rgb(239,133,26)" fg:x="144747" fg:w="550"/><text x="32.2838%" y="735.50"></text></g><g><title>truncate_inode_pages_range (65 samples, 0.01%)</title><rect x="32.1411%" y="709" width="0.0144%" height="15" fill="rgb(211,94,48)" fg:x="145232" fg:w="65"/><text x="32.3911%" y="719.50"></text></g><g><title>evict (555 samples, 0.12%)</title><rect x="32.0329%" y="741" width="0.1228%" height="15" fill="rgb(239,87,6)" fg:x="144743" fg:w="555"/><text x="32.2829%" y="751.50"></text></g><g><title>btrfs_del_items (110 samples, 0.02%)</title><rect x="32.1619%" y="693" width="0.0243%" height="15" fill="rgb(227,62,0)" fg:x="145326" fg:w="110"/><text x="32.4119%" y="703.50"></text></g><g><title>btrfs_search_slot (70 samples, 0.02%)</title><rect x="32.1947%" y="677" width="0.0155%" height="15" fill="rgb(211,226,4)" fg:x="145474" fg:w="70"/><text x="32.4447%" y="687.50"></text></g><g><title>btrfs_lookup_dir_item (77 samples, 0.02%)</title><rect x="32.1934%" y="693" width="0.0170%" height="15" fill="rgb(253,38,52)" fg:x="145468" fg:w="77"/><text x="32.4434%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (244 samples, 0.05%)</title><rect x="32.1606%" y="709" width="0.0540%" height="15" fill="rgb(229,126,40)" fg:x="145320" fg:w="244"/><text x="32.4106%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (66 samples, 0.01%)</title><rect x="32.2157%" y="677" width="0.0146%" height="15" fill="rgb(229,165,44)" fg:x="145569" fg:w="66"/><text x="32.4657%" y="687.50"></text></g><g><title>btrfs_orphan_add (73 samples, 0.02%)</title><rect x="32.2148%" y="709" width="0.0162%" height="15" fill="rgb(247,95,47)" fg:x="145565" fg:w="73"/><text x="32.4648%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (72 samples, 0.02%)</title><rect x="32.2151%" y="693" width="0.0159%" height="15" fill="rgb(216,140,30)" fg:x="145566" fg:w="72"/><text x="32.4651%" y="703.50"></text></g><g><title>btrfs_unlink (351 samples, 0.08%)</title><rect x="32.1593%" y="725" width="0.0777%" height="15" fill="rgb(246,214,8)" fg:x="145314" fg:w="351"/><text x="32.4093%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,070 samples, 0.24%)</title><rect x="32.0030%" y="789" width="0.2368%" height="15" fill="rgb(227,224,15)" fg:x="144608" fg:w="1070"/><text x="32.2530%" y="799.50"></text></g><g><title>do_syscall_64 (1,070 samples, 0.24%)</title><rect x="32.0030%" y="773" width="0.2368%" height="15" fill="rgb(233,175,4)" fg:x="144608" fg:w="1070"/><text x="32.2530%" y="783.50"></text></g><g><title>do_unlinkat (981 samples, 0.22%)</title><rect x="32.0227%" y="757" width="0.2171%" height="15" fill="rgb(221,66,45)" fg:x="144697" fg:w="981"/><text x="32.2727%" y="767.50"></text></g><g><title>vfs_unlink (365 samples, 0.08%)</title><rect x="32.1591%" y="741" width="0.0808%" height="15" fill="rgb(221,178,18)" fg:x="145313" fg:w="365"/><text x="32.4091%" y="751.50"></text></g><g><title>__GI_unlinkat (1,074 samples, 0.24%)</title><rect x="32.0024%" y="805" width="0.2377%" height="15" fill="rgb(213,81,29)" fg:x="144605" fg:w="1074"/><text x="32.2524%" y="815.50"></text></g><g><title>[libunix_jni.so] (1,138 samples, 0.25%)</title><rect x="31.9935%" y="821" width="0.2518%" height="15" fill="rgb(220,89,49)" fg:x="144565" fg:w="1138"/><text x="32.2435%" y="831.50"></text></g><g><title>ClassFileParser::parse_constant_pool (46 samples, 0.01%)</title><rect x="32.6904%" y="661" width="0.0102%" height="15" fill="rgb(227,60,33)" fg:x="147714" fg:w="46"/><text x="32.9404%" y="671.50"></text></g><g><title>ClassFileParser::ClassFileParser (69 samples, 0.02%)</title><rect x="32.6902%" y="693" width="0.0153%" height="15" fill="rgb(205,113,12)" fg:x="147713" fg:w="69"/><text x="32.9402%" y="703.50"></text></g><g><title>ClassFileParser::parse_stream (69 samples, 0.02%)</title><rect x="32.6902%" y="677" width="0.0153%" height="15" fill="rgb(211,32,1)" fg:x="147713" fg:w="69"/><text x="32.9402%" y="687.50"></text></g><g><title>ClassLoader::load_class (116 samples, 0.03%)</title><rect x="32.6878%" y="725" width="0.0257%" height="15" fill="rgb(246,2,12)" fg:x="147702" fg:w="116"/><text x="32.9378%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (105 samples, 0.02%)</title><rect x="32.6902%" y="709" width="0.0232%" height="15" fill="rgb(243,37,27)" fg:x="147713" fg:w="105"/><text x="32.9402%" y="719.50"></text></g><g><title>ConstantPool::klass_at_impl (139 samples, 0.03%)</title><rect x="32.6851%" y="789" width="0.0308%" height="15" fill="rgb(248,211,31)" fg:x="147690" fg:w="139"/><text x="32.9351%" y="799.50"></text></g><g><title>SystemDictionary::resolve_or_fail (136 samples, 0.03%)</title><rect x="32.6858%" y="773" width="0.0301%" height="15" fill="rgb(242,146,47)" fg:x="147693" fg:w="136"/><text x="32.9358%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (135 samples, 0.03%)</title><rect x="32.6860%" y="757" width="0.0299%" height="15" fill="rgb(206,70,20)" fg:x="147694" fg:w="135"/><text x="32.9360%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (127 samples, 0.03%)</title><rect x="32.6878%" y="741" width="0.0281%" height="15" fill="rgb(215,10,51)" fg:x="147702" fg:w="127"/><text x="32.9378%" y="751.50"></text></g><g><title>Rewriter::rewrite (61 samples, 0.01%)</title><rect x="32.7285%" y="757" width="0.0135%" height="15" fill="rgb(243,178,53)" fg:x="147886" fg:w="61"/><text x="32.9785%" y="767.50"></text></g><g><title>Rewriter::Rewriter (60 samples, 0.01%)</title><rect x="32.7287%" y="741" width="0.0133%" height="15" fill="rgb(233,221,20)" fg:x="147887" fg:w="60"/><text x="32.9787%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (133 samples, 0.03%)</title><rect x="32.7174%" y="773" width="0.0294%" height="15" fill="rgb(218,95,35)" fg:x="147836" fg:w="133"/><text x="32.9674%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (138 samples, 0.03%)</title><rect x="32.7165%" y="789" width="0.0305%" height="15" fill="rgb(229,13,5)" fg:x="147832" fg:w="138"/><text x="32.9665%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (287 samples, 0.06%)</title><rect x="32.6849%" y="805" width="0.0635%" height="15" fill="rgb(252,164,30)" fg:x="147689" fg:w="287"/><text x="32.9349%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (58 samples, 0.01%)</title><rect x="32.7612%" y="773" width="0.0128%" height="15" fill="rgb(232,68,36)" fg:x="148034" fg:w="58"/><text x="33.0112%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (51 samples, 0.01%)</title><rect x="32.7628%" y="757" width="0.0113%" height="15" fill="rgb(219,59,54)" fg:x="148041" fg:w="51"/><text x="33.0128%" y="767.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (64 samples, 0.01%)</title><rect x="32.7601%" y="805" width="0.0142%" height="15" fill="rgb(250,92,33)" fg:x="148029" fg:w="64"/><text x="33.0101%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (64 samples, 0.01%)</title><rect x="32.7601%" y="789" width="0.0142%" height="15" fill="rgb(229,162,54)" fg:x="148029" fg:w="64"/><text x="33.0101%" y="799.50"></text></g><g><title>LinkResolver::resolve_field (53 samples, 0.01%)</title><rect x="32.7920%" y="757" width="0.0117%" height="15" fill="rgb(244,114,52)" fg:x="148173" fg:w="53"/><text x="33.0420%" y="767.50"></text></g><g><title>LinkResolver::resolve_field_access (87 samples, 0.02%)</title><rect x="32.7849%" y="773" width="0.0193%" height="15" fill="rgb(212,211,43)" fg:x="148141" fg:w="87"/><text x="33.0349%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (99 samples, 0.02%)</title><rect x="32.7836%" y="789" width="0.0219%" height="15" fill="rgb(226,147,8)" fg:x="148135" fg:w="99"/><text x="33.0336%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (49 samples, 0.01%)</title><rect x="32.8175%" y="661" width="0.0108%" height="15" fill="rgb(226,23,13)" fg:x="148288" fg:w="49"/><text x="33.0675%" y="671.50"></text></g><g><title>ClassFileParser::parse_stream (49 samples, 0.01%)</title><rect x="32.8175%" y="645" width="0.0108%" height="15" fill="rgb(240,63,4)" fg:x="148288" fg:w="49"/><text x="33.0675%" y="655.50"></text></g><g><title>ClassLoader::load_class (57 samples, 0.01%)</title><rect x="32.8166%" y="693" width="0.0126%" height="15" fill="rgb(221,1,32)" fg:x="148284" fg:w="57"/><text x="33.0666%" y="703.50"></text></g><g><title>KlassFactory::create_from_stream (54 samples, 0.01%)</title><rect x="32.8172%" y="677" width="0.0120%" height="15" fill="rgb(242,117,10)" fg:x="148287" fg:w="54"/><text x="33.0672%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (66 samples, 0.01%)</title><rect x="32.8166%" y="709" width="0.0146%" height="15" fill="rgb(249,172,44)" fg:x="148284" fg:w="66"/><text x="33.0666%" y="719.50"></text></g><g><title>ConstantPool::klass_ref_at (81 samples, 0.02%)</title><rect x="32.8139%" y="757" width="0.0179%" height="15" fill="rgb(244,46,45)" fg:x="148272" fg:w="81"/><text x="33.0639%" y="767.50"></text></g><g><title>SystemDictionary::resolve_or_fail (78 samples, 0.02%)</title><rect x="32.8146%" y="741" width="0.0173%" height="15" fill="rgb(206,43,17)" fg:x="148275" fg:w="78"/><text x="33.0646%" y="751.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (76 samples, 0.02%)</title><rect x="32.8150%" y="725" width="0.0168%" height="15" fill="rgb(239,218,39)" fg:x="148277" fg:w="76"/><text x="33.0650%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (67 samples, 0.01%)</title><rect x="32.8469%" y="725" width="0.0148%" height="15" fill="rgb(208,169,54)" fg:x="148421" fg:w="67"/><text x="33.0969%" y="735.50"></text></g><g><title>InstanceKlass::initialize_impl (70 samples, 0.02%)</title><rect x="32.8467%" y="741" width="0.0155%" height="15" fill="rgb(247,25,42)" fg:x="148420" fg:w="70"/><text x="33.0967%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (96 samples, 0.02%)</title><rect x="32.8462%" y="757" width="0.0212%" height="15" fill="rgb(226,23,31)" fg:x="148418" fg:w="96"/><text x="33.0962%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (247 samples, 0.05%)</title><rect x="32.8130%" y="773" width="0.0547%" height="15" fill="rgb(247,16,28)" fg:x="148268" fg:w="247"/><text x="33.0630%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (290 samples, 0.06%)</title><rect x="32.8055%" y="789" width="0.0642%" height="15" fill="rgb(231,147,38)" fg:x="148234" fg:w="290"/><text x="33.0555%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (53 samples, 0.01%)</title><rect x="32.8697%" y="789" width="0.0117%" height="15" fill="rgb(253,81,48)" fg:x="148524" fg:w="53"/><text x="33.1197%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (52 samples, 0.01%)</title><rect x="32.8699%" y="773" width="0.0115%" height="15" fill="rgb(249,222,43)" fg:x="148525" fg:w="52"/><text x="33.1199%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.01%)</title><rect x="32.8701%" y="757" width="0.0113%" height="15" fill="rgb(221,3,27)" fg:x="148526" fg:w="51"/><text x="33.1201%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (457 samples, 0.10%)</title><rect x="32.7823%" y="805" width="0.1011%" height="15" fill="rgb(228,180,5)" fg:x="148129" fg:w="457"/><text x="33.0323%" y="815.50"></text></g><g><title>SymbolTable::add (54 samples, 0.01%)</title><rect x="32.9711%" y="661" width="0.0120%" height="15" fill="rgb(227,131,42)" fg:x="148982" fg:w="54"/><text x="33.2211%" y="671.50"></text></g><g><title>SymbolTable::basic_add (52 samples, 0.01%)</title><rect x="32.9715%" y="645" width="0.0115%" height="15" fill="rgb(212,3,39)" fg:x="148984" fg:w="52"/><text x="33.2215%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (421 samples, 0.09%)</title><rect x="32.9830%" y="661" width="0.0932%" height="15" fill="rgb(226,45,5)" fg:x="149036" fg:w="421"/><text x="33.2330%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (509 samples, 0.11%)</title><rect x="32.9637%" y="677" width="0.1126%" height="15" fill="rgb(215,167,45)" fg:x="148949" fg:w="509"/><text x="33.2137%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool (534 samples, 0.12%)</title><rect x="32.9602%" y="693" width="0.1182%" height="15" fill="rgb(250,218,53)" fg:x="148933" fg:w="534"/><text x="33.2102%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (141 samples, 0.03%)</title><rect x="33.0837%" y="677" width="0.0312%" height="15" fill="rgb(207,140,0)" fg:x="149491" fg:w="141"/><text x="33.3337%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (143 samples, 0.03%)</title><rect x="33.0835%" y="693" width="0.0316%" height="15" fill="rgb(238,133,51)" fg:x="149490" fg:w="143"/><text x="33.3335%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (730 samples, 0.16%)</title><rect x="32.9580%" y="725" width="0.1616%" height="15" fill="rgb(218,203,53)" fg:x="148923" fg:w="730"/><text x="33.2080%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (729 samples, 0.16%)</title><rect x="32.9582%" y="709" width="0.1613%" height="15" fill="rgb(226,184,25)" fg:x="148924" fg:w="729"/><text x="33.2082%" y="719.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (90 samples, 0.02%)</title><rect x="33.1266%" y="677" width="0.0199%" height="15" fill="rgb(231,121,21)" fg:x="149685" fg:w="90"/><text x="33.3766%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (130 samples, 0.03%)</title><rect x="33.1229%" y="693" width="0.0288%" height="15" fill="rgb(251,14,34)" fg:x="149668" fg:w="130"/><text x="33.3729%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (172 samples, 0.04%)</title><rect x="33.1195%" y="709" width="0.0381%" height="15" fill="rgb(249,193,11)" fg:x="149653" fg:w="172"/><text x="33.3695%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (181 samples, 0.04%)</title><rect x="33.1195%" y="725" width="0.0401%" height="15" fill="rgb(220,172,37)" fg:x="149653" fg:w="181"/><text x="33.3695%" y="735.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (56 samples, 0.01%)</title><rect x="33.1596%" y="725" width="0.0124%" height="15" fill="rgb(231,229,43)" fg:x="149834" fg:w="56"/><text x="33.4096%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (968 samples, 0.21%)</title><rect x="32.9580%" y="741" width="0.2142%" height="15" fill="rgb(250,161,5)" fg:x="148923" fg:w="968"/><text x="33.2080%" y="751.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,010 samples, 0.22%)</title><rect x="32.9578%" y="757" width="0.2235%" height="15" fill="rgb(218,225,18)" fg:x="148922" fg:w="1010"/><text x="33.2078%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (1,020 samples, 0.23%)</title><rect x="32.9558%" y="789" width="0.2257%" height="15" fill="rgb(245,45,42)" fg:x="148913" fg:w="1020"/><text x="33.2058%" y="799.50"></text></g><g><title>jvm_define_class_common (1,020 samples, 0.23%)</title><rect x="32.9558%" y="773" width="0.2257%" height="15" fill="rgb(211,115,1)" fg:x="148913" fg:w="1020"/><text x="33.2058%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,054 samples, 0.23%)</title><rect x="32.9553%" y="805" width="0.2333%" height="15" fill="rgb(248,133,52)" fg:x="148911" fg:w="1054"/><text x="33.2053%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_null (57 samples, 0.01%)</title><rect x="33.1893%" y="773" width="0.0126%" height="15" fill="rgb(238,100,21)" fg:x="149968" fg:w="57"/><text x="33.4393%" y="783.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (57 samples, 0.01%)</title><rect x="33.1893%" y="757" width="0.0126%" height="15" fill="rgb(247,144,11)" fg:x="149968" fg:w="57"/><text x="33.4393%" y="767.50"></text></g><g><title>SystemDictionary::load_instance_class (48 samples, 0.01%)</title><rect x="33.1913%" y="741" width="0.0106%" height="15" fill="rgb(206,164,16)" fg:x="149977" fg:w="48"/><text x="33.4413%" y="751.50"></text></g><g><title>JVM_FindClassFromBootLoader (61 samples, 0.01%)</title><rect x="33.1886%" y="789" width="0.0135%" height="15" fill="rgb(222,34,3)" fg:x="149965" fg:w="61"/><text x="33.4386%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (69 samples, 0.02%)</title><rect x="33.1886%" y="805" width="0.0153%" height="15" fill="rgb(248,82,4)" fg:x="149965" fg:w="69"/><text x="33.4386%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (60 samples, 0.01%)</title><rect x="33.2278%" y="789" width="0.0133%" height="15" fill="rgb(228,81,46)" fg:x="150142" fg:w="60"/><text x="33.4778%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (64 samples, 0.01%)</title><rect x="33.2271%" y="805" width="0.0142%" height="15" fill="rgb(227,67,47)" fg:x="150139" fg:w="64"/><text x="33.4771%" y="815.50"></text></g><g><title>[perf-42779.map] (4,556 samples, 1.01%)</title><rect x="32.2454%" y="821" width="1.0083%" height="15" fill="rgb(215,93,53)" fg:x="145703" fg:w="4556"/><text x="32.4954%" y="831.50"></text></g><g><title>readBytes (51 samples, 0.01%)</title><rect x="33.2709%" y="805" width="0.0113%" height="15" fill="rgb(248,194,39)" fg:x="150337" fg:w="51"/><text x="33.5209%" y="815.50"></text></g><g><title>[unknown] (133 samples, 0.03%)</title><rect x="33.2537%" y="821" width="0.0294%" height="15" fill="rgb(215,5,19)" fg:x="150259" fg:w="133"/><text x="33.5037%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (320 samples, 0.07%)</title><rect x="33.2897%" y="757" width="0.0708%" height="15" fill="rgb(226,215,51)" fg:x="150422" fg:w="320"/><text x="33.5397%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (314 samples, 0.07%)</title><rect x="33.2911%" y="741" width="0.0695%" height="15" fill="rgb(225,56,26)" fg:x="150428" fg:w="314"/><text x="33.5411%" y="751.50"></text></g><g><title>native_write_msr (313 samples, 0.07%)</title><rect x="33.2913%" y="725" width="0.0693%" height="15" fill="rgb(222,75,29)" fg:x="150429" fg:w="313"/><text x="33.5413%" y="735.50"></text></g><g><title>schedule_tail (336 samples, 0.07%)</title><rect x="33.2884%" y="789" width="0.0744%" height="15" fill="rgb(236,139,6)" fg:x="150416" fg:w="336"/><text x="33.5384%" y="799.50"></text></g><g><title>finish_task_switch (333 samples, 0.07%)</title><rect x="33.2891%" y="773" width="0.0737%" height="15" fill="rgb(223,137,36)" fg:x="150419" fg:w="333"/><text x="33.5391%" y="783.50"></text></g><g><title>ret_from_fork (344 samples, 0.08%)</title><rect x="33.2871%" y="805" width="0.0761%" height="15" fill="rgb(226,99,2)" fg:x="150410" fg:w="344"/><text x="33.5371%" y="815.50"></text></g><g><title>JNI_CreateJavaVM (53 samples, 0.01%)</title><rect x="33.3634%" y="773" width="0.0117%" height="15" fill="rgb(206,133,23)" fg:x="150755" fg:w="53"/><text x="33.6134%" y="783.50"></text></g><g><title>Threads::create_vm (53 samples, 0.01%)</title><rect x="33.3634%" y="757" width="0.0117%" height="15" fill="rgb(243,173,15)" fg:x="150755" fg:w="53"/><text x="33.6134%" y="767.50"></text></g><g><title>JavaMain (55 samples, 0.01%)</title><rect x="33.3634%" y="789" width="0.0122%" height="15" fill="rgb(228,69,28)" fg:x="150755" fg:w="55"/><text x="33.6134%" y="799.50"></text></g><g><title>do_syscall_64 (48 samples, 0.01%)</title><rect x="33.3798%" y="661" width="0.0106%" height="15" fill="rgb(212,51,22)" fg:x="150829" fg:w="48"/><text x="33.6298%" y="671.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.01%)</title><rect x="33.3800%" y="645" width="0.0104%" height="15" fill="rgb(227,113,0)" fg:x="150830" fg:w="47"/><text x="33.6300%" y="655.50"></text></g><g><title>do_futex (47 samples, 0.01%)</title><rect x="33.3800%" y="629" width="0.0104%" height="15" fill="rgb(252,84,27)" fg:x="150830" fg:w="47"/><text x="33.6300%" y="639.50"></text></g><g><title>futex_wait (46 samples, 0.01%)</title><rect x="33.3803%" y="613" width="0.0102%" height="15" fill="rgb(223,145,39)" fg:x="150831" fg:w="46"/><text x="33.6303%" y="623.50"></text></g><g><title>futex_wait_queue_me (46 samples, 0.01%)</title><rect x="33.3803%" y="597" width="0.0102%" height="15" fill="rgb(239,219,30)" fg:x="150831" fg:w="46"/><text x="33.6303%" y="607.50"></text></g><g><title>schedule (46 samples, 0.01%)</title><rect x="33.3803%" y="581" width="0.0102%" height="15" fill="rgb(224,196,39)" fg:x="150831" fg:w="46"/><text x="33.6303%" y="591.50"></text></g><g><title>__schedule (46 samples, 0.01%)</title><rect x="33.3803%" y="565" width="0.0102%" height="15" fill="rgb(205,35,43)" fg:x="150831" fg:w="46"/><text x="33.6303%" y="575.50"></text></g><g><title>Monitor::wait (60 samples, 0.01%)</title><rect x="33.3774%" y="773" width="0.0133%" height="15" fill="rgb(228,201,21)" fg:x="150818" fg:w="60"/><text x="33.6274%" y="783.50"></text></g><g><title>Monitor::IWait (60 samples, 0.01%)</title><rect x="33.3774%" y="757" width="0.0133%" height="15" fill="rgb(237,118,16)" fg:x="150818" fg:w="60"/><text x="33.6274%" y="767.50"></text></g><g><title>os::PlatformEvent::park (53 samples, 0.01%)</title><rect x="33.3789%" y="741" width="0.0117%" height="15" fill="rgb(241,17,19)" fg:x="150825" fg:w="53"/><text x="33.6289%" y="751.50"></text></g><g><title>__pthread_cond_wait (53 samples, 0.01%)</title><rect x="33.3789%" y="725" width="0.0117%" height="15" fill="rgb(214,10,25)" fg:x="150825" fg:w="53"/><text x="33.6289%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (53 samples, 0.01%)</title><rect x="33.3789%" y="709" width="0.0117%" height="15" fill="rgb(238,37,29)" fg:x="150825" fg:w="53"/><text x="33.6289%" y="719.50"></text></g><g><title>futex_wait_cancelable (52 samples, 0.01%)</title><rect x="33.3791%" y="693" width="0.0115%" height="15" fill="rgb(253,83,25)" fg:x="150826" fg:w="52"/><text x="33.6291%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="33.3794%" y="677" width="0.0113%" height="15" fill="rgb(234,192,12)" fg:x="150827" fg:w="51"/><text x="33.6294%" y="687.50"></text></g><g><title>JavaThread::run (47 samples, 0.01%)</title><rect x="33.3907%" y="757" width="0.0104%" height="15" fill="rgb(241,216,45)" fg:x="150878" fg:w="47"/><text x="33.6407%" y="767.50"></text></g><g><title>Thread::call_run (49 samples, 0.01%)</title><rect x="33.3907%" y="773" width="0.0108%" height="15" fill="rgb(242,22,33)" fg:x="150878" fg:w="49"/><text x="33.6407%" y="783.50"></text></g><g><title>__GI___clone (566 samples, 0.13%)</title><rect x="33.2831%" y="821" width="0.1253%" height="15" fill="rgb(231,105,49)" fg:x="150392" fg:w="566"/><text x="33.5331%" y="831.50"></text></g><g><title>start_thread (204 samples, 0.05%)</title><rect x="33.3632%" y="805" width="0.0451%" height="15" fill="rgb(218,204,15)" fg:x="150754" fg:w="204"/><text x="33.6132%" y="815.50"></text></g><g><title>thread_native_entry (141 samples, 0.03%)</title><rect x="33.3772%" y="789" width="0.0312%" height="15" fill="rgb(235,138,41)" fg:x="150817" fg:w="141"/><text x="33.6272%" y="799.50"></text></g><g><title>java (6,673 samples, 1.48%)</title><rect x="31.9391%" y="837" width="1.4768%" height="15" fill="rgb(246,0,9)" fg:x="144319" fg:w="6673"/><text x="32.1891%" y="847.50"></text></g><g><title>[[heap]] (87 samples, 0.02%)</title><rect x="33.4159%" y="821" width="0.0193%" height="15" fill="rgb(210,74,4)" fg:x="150992" fg:w="87"/><text x="33.6659%" y="831.50"></text></g><g><title>[[stack]] (65 samples, 0.01%)</title><rect x="33.4351%" y="821" width="0.0144%" height="15" fill="rgb(250,60,41)" fg:x="151079" fg:w="65"/><text x="33.6851%" y="831.50"></text></g><g><title>copy_process (58 samples, 0.01%)</title><rect x="33.4683%" y="725" width="0.0128%" height="15" fill="rgb(220,115,12)" fg:x="151229" fg:w="58"/><text x="33.7183%" y="735.50"></text></g><g><title>__GI___clone (69 samples, 0.02%)</title><rect x="33.4683%" y="805" width="0.0153%" height="15" fill="rgb(237,100,13)" fg:x="151229" fg:w="69"/><text x="33.7183%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.02%)</title><rect x="33.4683%" y="789" width="0.0153%" height="15" fill="rgb(213,55,26)" fg:x="151229" fg:w="69"/><text x="33.7183%" y="799.50"></text></g><g><title>do_syscall_64 (69 samples, 0.02%)</title><rect x="33.4683%" y="773" width="0.0153%" height="15" fill="rgb(216,17,4)" fg:x="151229" fg:w="69"/><text x="33.7183%" y="783.50"></text></g><g><title>__do_sys_clone (69 samples, 0.02%)</title><rect x="33.4683%" y="757" width="0.0153%" height="15" fill="rgb(220,153,47)" fg:x="151229" fg:w="69"/><text x="33.7183%" y="767.50"></text></g><g><title>kernel_clone (69 samples, 0.02%)</title><rect x="33.4683%" y="741" width="0.0153%" height="15" fill="rgb(215,131,9)" fg:x="151229" fg:w="69"/><text x="33.7183%" y="751.50"></text></g><g><title>lldMain (49 samples, 0.01%)</title><rect x="33.5017%" y="805" width="0.0108%" height="15" fill="rgb(233,46,42)" fg:x="151380" fg:w="49"/><text x="33.7517%" y="815.50"></text></g><g><title>lld::elf::link (49 samples, 0.01%)</title><rect x="33.5017%" y="789" width="0.0108%" height="15" fill="rgb(226,86,7)" fg:x="151380" fg:w="49"/><text x="33.7517%" y="799.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (49 samples, 0.01%)</title><rect x="33.5017%" y="773" width="0.0108%" height="15" fill="rgb(239,226,21)" fg:x="151380" fg:w="49"/><text x="33.7517%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (46 samples, 0.01%)</title><rect x="33.5024%" y="757" width="0.0102%" height="15" fill="rgb(244,137,22)" fg:x="151383" fg:w="46"/><text x="33.7524%" y="767.50"></text></g><g><title>[unknown] (402 samples, 0.09%)</title><rect x="33.4641%" y="821" width="0.0890%" height="15" fill="rgb(211,139,35)" fg:x="151210" fg:w="402"/><text x="33.7141%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (1,331 samples, 0.29%)</title><rect x="33.5613%" y="757" width="0.2946%" height="15" fill="rgb(214,62,50)" fg:x="151649" fg:w="1331"/><text x="33.8113%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (1,311 samples, 0.29%)</title><rect x="33.5657%" y="741" width="0.2901%" height="15" fill="rgb(212,113,44)" fg:x="151669" fg:w="1311"/><text x="33.8157%" y="751.50"></text></g><g><title>native_write_msr (1,302 samples, 0.29%)</title><rect x="33.5677%" y="725" width="0.2881%" height="15" fill="rgb(226,150,43)" fg:x="151678" fg:w="1302"/><text x="33.8177%" y="735.50"></text></g><g><title>schedule_tail (1,418 samples, 0.31%)</title><rect x="33.5562%" y="789" width="0.3138%" height="15" fill="rgb(250,71,37)" fg:x="151626" fg:w="1418"/><text x="33.8062%" y="799.50"></text></g><g><title>finish_task_switch (1,410 samples, 0.31%)</title><rect x="33.5580%" y="773" width="0.3120%" height="15" fill="rgb(219,76,19)" fg:x="151634" fg:w="1410"/><text x="33.8080%" y="783.50"></text></g><g><title>ret_from_fork (1,499 samples, 0.33%)</title><rect x="33.5533%" y="805" width="0.3317%" height="15" fill="rgb(250,39,11)" fg:x="151613" fg:w="1499"/><text x="33.8033%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (68 samples, 0.02%)</title><rect x="33.8700%" y="789" width="0.0150%" height="15" fill="rgb(230,64,31)" fg:x="153044" fg:w="68"/><text x="34.1200%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (67 samples, 0.01%)</title><rect x="33.8702%" y="773" width="0.0148%" height="15" fill="rgb(208,222,23)" fg:x="153045" fg:w="67"/><text x="34.1202%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (239 samples, 0.05%)</title><rect x="33.8939%" y="581" width="0.0529%" height="15" fill="rgb(227,125,18)" fg:x="153152" fg:w="239"/><text x="34.1439%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (237 samples, 0.05%)</title><rect x="33.8944%" y="565" width="0.0525%" height="15" fill="rgb(234,210,9)" fg:x="153154" fg:w="237"/><text x="34.1444%" y="575.50"></text></g><g><title>native_write_msr (232 samples, 0.05%)</title><rect x="33.8955%" y="549" width="0.0513%" height="15" fill="rgb(217,127,24)" fg:x="153159" fg:w="232"/><text x="34.1455%" y="559.50"></text></g><g><title>finish_task_switch (248 samples, 0.05%)</title><rect x="33.8935%" y="597" width="0.0549%" height="15" fill="rgb(239,141,48)" fg:x="153150" fg:w="248"/><text x="34.1435%" y="607.50"></text></g><g><title>futex_wait_queue_me (271 samples, 0.06%)</title><rect x="33.8913%" y="645" width="0.0600%" height="15" fill="rgb(227,109,8)" fg:x="153140" fg:w="271"/><text x="34.1413%" y="655.50"></text></g><g><title>schedule (271 samples, 0.06%)</title><rect x="33.8913%" y="629" width="0.0600%" height="15" fill="rgb(235,184,23)" fg:x="153140" fg:w="271"/><text x="34.1413%" y="639.50"></text></g><g><title>__schedule (271 samples, 0.06%)</title><rect x="33.8913%" y="613" width="0.0600%" height="15" fill="rgb(227,226,48)" fg:x="153140" fg:w="271"/><text x="34.1413%" y="623.50"></text></g><g><title>do_syscall_64 (280 samples, 0.06%)</title><rect x="33.8908%" y="709" width="0.0620%" height="15" fill="rgb(206,150,11)" fg:x="153138" fg:w="280"/><text x="34.1408%" y="719.50"></text></g><g><title>__x64_sys_futex (280 samples, 0.06%)</title><rect x="33.8908%" y="693" width="0.0620%" height="15" fill="rgb(254,2,33)" fg:x="153138" fg:w="280"/><text x="34.1408%" y="703.50"></text></g><g><title>do_futex (279 samples, 0.06%)</title><rect x="33.8910%" y="677" width="0.0617%" height="15" fill="rgb(243,160,20)" fg:x="153139" fg:w="279"/><text x="34.1410%" y="687.50"></text></g><g><title>futex_wait (279 samples, 0.06%)</title><rect x="33.8910%" y="661" width="0.0617%" height="15" fill="rgb(218,208,30)" fg:x="153139" fg:w="279"/><text x="34.1410%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (290 samples, 0.06%)</title><rect x="33.8908%" y="725" width="0.0642%" height="15" fill="rgb(224,120,49)" fg:x="153138" fg:w="290"/><text x="34.1408%" y="735.50"></text></g><g><title>__GI___pthread_mutex_lock (307 samples, 0.07%)</title><rect x="33.8875%" y="757" width="0.0679%" height="15" fill="rgb(246,12,2)" fg:x="153123" fg:w="307"/><text x="34.1375%" y="767.50"></text></g><g><title>__lll_lock_wait (297 samples, 0.07%)</title><rect x="33.8897%" y="741" width="0.0657%" height="15" fill="rgb(236,117,3)" fg:x="153133" fg:w="297"/><text x="34.1397%" y="751.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.01%)</title><rect x="33.9596%" y="709" width="0.0126%" height="15" fill="rgb(216,128,52)" fg:x="153449" fg:w="57"/><text x="34.2096%" y="719.50"></text></g><g><title>do_futex (56 samples, 0.01%)</title><rect x="33.9599%" y="693" width="0.0124%" height="15" fill="rgb(246,145,19)" fg:x="153450" fg:w="56"/><text x="34.2099%" y="703.50"></text></g><g><title>futex_wake (54 samples, 0.01%)</title><rect x="33.9603%" y="677" width="0.0120%" height="15" fill="rgb(222,11,46)" fg:x="153452" fg:w="54"/><text x="34.2103%" y="687.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="33.9596%" y="725" width="0.0128%" height="15" fill="rgb(245,82,36)" fg:x="153449" fg:w="58"/><text x="34.2096%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="33.9596%" y="741" width="0.0150%" height="15" fill="rgb(250,73,51)" fg:x="153449" fg:w="68"/><text x="34.2096%" y="751.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (90 samples, 0.02%)</title><rect x="33.9557%" y="757" width="0.0199%" height="15" fill="rgb(221,189,23)" fg:x="153431" fg:w="90"/><text x="34.2057%" y="767.50"></text></g><g><title>arena_get2 (62 samples, 0.01%)</title><rect x="33.9864%" y="661" width="0.0137%" height="15" fill="rgb(210,33,7)" fg:x="153570" fg:w="62"/><text x="34.2364%" y="671.50"></text></g><g><title>_int_new_arena (61 samples, 0.01%)</title><rect x="33.9866%" y="645" width="0.0135%" height="15" fill="rgb(210,107,22)" fg:x="153571" fg:w="61"/><text x="34.2366%" y="655.50"></text></g><g><title>__GI___libc_malloc (80 samples, 0.02%)</title><rect x="33.9829%" y="725" width="0.0177%" height="15" fill="rgb(222,116,37)" fg:x="153554" fg:w="80"/><text x="34.2329%" y="735.50"></text></g><g><title>tcache_init (64 samples, 0.01%)</title><rect x="33.9864%" y="709" width="0.0142%" height="15" fill="rgb(254,17,48)" fg:x="153570" fg:w="64"/><text x="34.2364%" y="719.50"></text></g><g><title>tcache_init (64 samples, 0.01%)</title><rect x="33.9864%" y="693" width="0.0142%" height="15" fill="rgb(224,36,32)" fg:x="153570" fg:w="64"/><text x="34.2364%" y="703.50"></text></g><g><title>arena_get2 (64 samples, 0.01%)</title><rect x="33.9864%" y="677" width="0.0142%" height="15" fill="rgb(232,90,46)" fg:x="153570" fg:w="64"/><text x="34.2364%" y="687.50"></text></g><g><title>operator new (81 samples, 0.02%)</title><rect x="33.9829%" y="741" width="0.0179%" height="15" fill="rgb(241,66,40)" fg:x="153554" fg:w="81"/><text x="34.2329%" y="751.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (144 samples, 0.03%)</title><rect x="33.9758%" y="757" width="0.0319%" height="15" fill="rgb(249,184,29)" fg:x="153522" fg:w="144"/><text x="34.2258%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (79 samples, 0.02%)</title><rect x="34.0125%" y="741" width="0.0175%" height="15" fill="rgb(231,181,1)" fg:x="153688" fg:w="79"/><text x="34.2625%" y="751.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (48 samples, 0.01%)</title><rect x="34.0194%" y="725" width="0.0106%" height="15" fill="rgb(224,94,2)" fg:x="153719" fg:w="48"/><text x="34.2694%" y="735.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (115 samples, 0.03%)</title><rect x="34.0077%" y="757" width="0.0255%" height="15" fill="rgb(229,170,15)" fg:x="153666" fg:w="115"/><text x="34.2577%" y="767.50"></text></g><g><title>do_syscall_64 (86 samples, 0.02%)</title><rect x="34.0424%" y="661" width="0.0190%" height="15" fill="rgb(240,127,35)" fg:x="153823" fg:w="86"/><text x="34.2924%" y="671.50"></text></g><g><title>__x64_sys_futex (86 samples, 0.02%)</title><rect x="34.0424%" y="645" width="0.0190%" height="15" fill="rgb(248,196,34)" fg:x="153823" fg:w="86"/><text x="34.2924%" y="655.50"></text></g><g><title>do_futex (86 samples, 0.02%)</title><rect x="34.0424%" y="629" width="0.0190%" height="15" fill="rgb(236,137,7)" fg:x="153823" fg:w="86"/><text x="34.2924%" y="639.50"></text></g><g><title>futex_wake (85 samples, 0.02%)</title><rect x="34.0426%" y="613" width="0.0188%" height="15" fill="rgb(235,127,16)" fg:x="153824" fg:w="85"/><text x="34.2926%" y="623.50"></text></g><g><title>wake_up_q (69 samples, 0.02%)</title><rect x="34.0462%" y="597" width="0.0153%" height="15" fill="rgb(250,192,54)" fg:x="153840" fg:w="69"/><text x="34.2962%" y="607.50"></text></g><g><title>try_to_wake_up (68 samples, 0.02%)</title><rect x="34.0464%" y="581" width="0.0150%" height="15" fill="rgb(218,98,20)" fg:x="153841" fg:w="68"/><text x="34.2964%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (122 samples, 0.03%)</title><rect x="34.0422%" y="677" width="0.0270%" height="15" fill="rgb(230,176,47)" fg:x="153822" fg:w="122"/><text x="34.2922%" y="687.50"></text></g><g><title>__condvar_dec_grefs (147 samples, 0.03%)</title><rect x="34.0373%" y="709" width="0.0325%" height="15" fill="rgb(244,2,33)" fg:x="153800" fg:w="147"/><text x="34.2873%" y="719.50"></text></g><g><title>futex_wake (126 samples, 0.03%)</title><rect x="34.0420%" y="693" width="0.0279%" height="15" fill="rgb(231,100,17)" fg:x="153821" fg:w="126"/><text x="34.2920%" y="703.50"></text></g><g><title>dequeue_entity (68 samples, 0.02%)</title><rect x="34.1188%" y="549" width="0.0150%" height="15" fill="rgb(245,23,12)" fg:x="154168" fg:w="68"/><text x="34.3688%" y="559.50"></text></g><g><title>dequeue_task_fair (95 samples, 0.02%)</title><rect x="34.1161%" y="565" width="0.0210%" height="15" fill="rgb(249,55,22)" fg:x="154156" fg:w="95"/><text x="34.3661%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (2,190 samples, 0.48%)</title><rect x="34.1447%" y="549" width="0.4847%" height="15" fill="rgb(207,134,9)" fg:x="154285" fg:w="2190"/><text x="34.3947%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (2,164 samples, 0.48%)</title><rect x="34.1504%" y="533" width="0.4789%" height="15" fill="rgb(218,134,0)" fg:x="154311" fg:w="2164"/><text x="34.4004%" y="543.50"></text></g><g><title>native_write_msr (2,151 samples, 0.48%)</title><rect x="34.1533%" y="517" width="0.4760%" height="15" fill="rgb(213,212,33)" fg:x="154324" fg:w="2151"/><text x="34.4033%" y="527.50"></text></g><g><title>asm_sysvec_irq_work (47 samples, 0.01%)</title><rect x="34.6311%" y="549" width="0.0104%" height="15" fill="rgb(252,106,18)" fg:x="156483" fg:w="47"/><text x="34.8811%" y="559.50"></text></g><g><title>finish_task_switch (2,296 samples, 0.51%)</title><rect x="34.1371%" y="565" width="0.5081%" height="15" fill="rgb(208,126,42)" fg:x="154251" fg:w="2296"/><text x="34.3871%" y="575.50"></text></g><g><title>psi_task_change (77 samples, 0.02%)</title><rect x="34.6526%" y="565" width="0.0170%" height="15" fill="rgb(246,175,29)" fg:x="156580" fg:w="77"/><text x="34.9026%" y="575.50"></text></g><g><title>psi_group_change (63 samples, 0.01%)</title><rect x="34.6557%" y="549" width="0.0139%" height="15" fill="rgb(215,13,50)" fg:x="156594" fg:w="63"/><text x="34.9057%" y="559.50"></text></g><g><title>futex_wait_queue_me (2,635 samples, 0.58%)</title><rect x="34.0951%" y="613" width="0.5831%" height="15" fill="rgb(216,172,15)" fg:x="154061" fg:w="2635"/><text x="34.3451%" y="623.50"></text></g><g><title>schedule (2,618 samples, 0.58%)</title><rect x="34.0988%" y="597" width="0.5794%" height="15" fill="rgb(212,103,13)" fg:x="154078" fg:w="2618"/><text x="34.3488%" y="607.50"></text></g><g><title>__schedule (2,614 samples, 0.58%)</title><rect x="34.0997%" y="581" width="0.5785%" height="15" fill="rgb(231,171,36)" fg:x="154082" fg:w="2614"/><text x="34.3497%" y="591.50"></text></g><g><title>__x64_sys_futex (2,690 samples, 0.60%)</title><rect x="34.0895%" y="661" width="0.5953%" height="15" fill="rgb(250,123,20)" fg:x="154036" fg:w="2690"/><text x="34.3395%" y="671.50"></text></g><g><title>do_futex (2,684 samples, 0.59%)</title><rect x="34.0909%" y="645" width="0.5940%" height="15" fill="rgb(212,53,50)" fg:x="154042" fg:w="2684"/><text x="34.3409%" y="655.50"></text></g><g><title>futex_wait (2,678 samples, 0.59%)</title><rect x="34.0922%" y="629" width="0.5927%" height="15" fill="rgb(243,54,12)" fg:x="154048" fg:w="2678"/><text x="34.3422%" y="639.50"></text></g><g><title>do_syscall_64 (2,700 samples, 0.60%)</title><rect x="34.0876%" y="677" width="0.5975%" height="15" fill="rgb(234,101,34)" fg:x="154027" fg:w="2700"/><text x="34.3376%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,769 samples, 0.61%)</title><rect x="34.0864%" y="693" width="0.6128%" height="15" fill="rgb(254,67,22)" fg:x="154022" fg:w="2769"/><text x="34.3364%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (64 samples, 0.01%)</title><rect x="34.6851%" y="677" width="0.0142%" height="15" fill="rgb(250,35,47)" fg:x="156727" fg:w="64"/><text x="34.9351%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (61 samples, 0.01%)</title><rect x="34.6858%" y="661" width="0.0135%" height="15" fill="rgb(226,126,38)" fg:x="156730" fg:w="61"/><text x="34.9358%" y="671.50"></text></g><g><title>switch_fpu_return (52 samples, 0.01%)</title><rect x="34.6877%" y="645" width="0.0115%" height="15" fill="rgb(216,138,53)" fg:x="156739" fg:w="52"/><text x="34.9377%" y="655.50"></text></g><g><title>__pthread_cond_wait (3,012 samples, 0.67%)</title><rect x="34.0336%" y="741" width="0.6666%" height="15" fill="rgb(246,199,43)" fg:x="153783" fg:w="3012"/><text x="34.2836%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (3,012 samples, 0.67%)</title><rect x="34.0336%" y="725" width="0.6666%" height="15" fill="rgb(232,125,11)" fg:x="153783" fg:w="3012"/><text x="34.2836%" y="735.50"></text></g><g><title>futex_wait_cancelable (2,806 samples, 0.62%)</title><rect x="34.0791%" y="709" width="0.6210%" height="15" fill="rgb(218,219,45)" fg:x="153989" fg:w="2806"/><text x="34.3291%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.02%)</title><rect x="34.7052%" y="565" width="0.0195%" height="15" fill="rgb(216,102,54)" fg:x="156818" fg:w="88"/><text x="34.9552%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (87 samples, 0.02%)</title><rect x="34.7054%" y="549" width="0.0193%" height="15" fill="rgb(250,228,7)" fg:x="156819" fg:w="87"/><text x="34.9554%" y="559.50"></text></g><g><title>native_write_msr (87 samples, 0.02%)</title><rect x="34.7054%" y="533" width="0.0193%" height="15" fill="rgb(226,125,25)" fg:x="156819" fg:w="87"/><text x="34.9554%" y="543.50"></text></g><g><title>finish_task_switch (90 samples, 0.02%)</title><rect x="34.7050%" y="581" width="0.0199%" height="15" fill="rgb(224,165,27)" fg:x="156817" fg:w="90"/><text x="34.9550%" y="591.50"></text></g><g><title>futex_wait_queue_me (109 samples, 0.02%)</title><rect x="34.7019%" y="629" width="0.0241%" height="15" fill="rgb(233,86,3)" fg:x="156803" fg:w="109"/><text x="34.9519%" y="639.50"></text></g><g><title>schedule (109 samples, 0.02%)</title><rect x="34.7019%" y="613" width="0.0241%" height="15" fill="rgb(228,116,20)" fg:x="156803" fg:w="109"/><text x="34.9519%" y="623.50"></text></g><g><title>__schedule (108 samples, 0.02%)</title><rect x="34.7021%" y="597" width="0.0239%" height="15" fill="rgb(209,192,17)" fg:x="156804" fg:w="108"/><text x="34.9521%" y="607.50"></text></g><g><title>do_syscall_64 (112 samples, 0.02%)</title><rect x="34.7019%" y="693" width="0.0248%" height="15" fill="rgb(224,88,34)" fg:x="156803" fg:w="112"/><text x="34.9519%" y="703.50"></text></g><g><title>__x64_sys_futex (112 samples, 0.02%)</title><rect x="34.7019%" y="677" width="0.0248%" height="15" fill="rgb(233,38,6)" fg:x="156803" fg:w="112"/><text x="34.9519%" y="687.50"></text></g><g><title>do_futex (112 samples, 0.02%)</title><rect x="34.7019%" y="661" width="0.0248%" height="15" fill="rgb(212,59,30)" fg:x="156803" fg:w="112"/><text x="34.9519%" y="671.50"></text></g><g><title>futex_wait (112 samples, 0.02%)</title><rect x="34.7019%" y="645" width="0.0248%" height="15" fill="rgb(213,80,3)" fg:x="156803" fg:w="112"/><text x="34.9519%" y="655.50"></text></g><g><title>__pthread_mutex_cond_lock (121 samples, 0.03%)</title><rect x="34.7001%" y="741" width="0.0268%" height="15" fill="rgb(251,178,7)" fg:x="156795" fg:w="121"/><text x="34.9501%" y="751.50"></text></g><g><title>__lll_lock_wait (115 samples, 0.03%)</title><rect x="34.7015%" y="725" width="0.0255%" height="15" fill="rgb(213,154,26)" fg:x="156801" fg:w="115"/><text x="34.9515%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.03%)</title><rect x="34.7017%" y="709" width="0.0252%" height="15" fill="rgb(238,165,49)" fg:x="156802" fg:w="114"/><text x="34.9517%" y="719.50"></text></g><g><title>std::condition_variable::wait (3,139 samples, 0.69%)</title><rect x="34.0331%" y="757" width="0.6947%" height="15" fill="rgb(248,91,46)" fg:x="153781" fg:w="3139"/><text x="34.2831%" y="767.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (3,810 samples, 0.84%)</title><rect x="33.8859%" y="773" width="0.8432%" height="15" fill="rgb(244,21,52)" fg:x="153116" fg:w="3810"/><text x="34.1359%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.01%)</title><rect x="34.7329%" y="565" width="0.0113%" height="15" fill="rgb(247,122,20)" fg:x="156943" fg:w="51"/><text x="34.9829%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.01%)</title><rect x="34.7329%" y="549" width="0.0113%" height="15" fill="rgb(218,27,9)" fg:x="156943" fg:w="51"/><text x="34.9829%" y="559.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="34.7329%" y="533" width="0.0113%" height="15" fill="rgb(246,7,6)" fg:x="156943" fg:w="51"/><text x="34.9829%" y="543.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="34.7329%" y="581" width="0.0117%" height="15" fill="rgb(227,135,54)" fg:x="156943" fg:w="53"/><text x="34.9829%" y="591.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="34.7324%" y="629" width="0.0126%" height="15" fill="rgb(247,14,11)" fg:x="156941" fg:w="57"/><text x="34.9824%" y="639.50"></text></g><g><title>schedule (56 samples, 0.01%)</title><rect x="34.7327%" y="613" width="0.0124%" height="15" fill="rgb(206,149,34)" fg:x="156942" fg:w="56"/><text x="34.9827%" y="623.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="34.7327%" y="597" width="0.0124%" height="15" fill="rgb(227,228,4)" fg:x="156942" fg:w="56"/><text x="34.9827%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.01%)</title><rect x="34.7320%" y="709" width="0.0135%" height="15" fill="rgb(238,218,28)" fg:x="156939" fg:w="61"/><text x="34.9820%" y="719.50"></text></g><g><title>do_syscall_64 (61 samples, 0.01%)</title><rect x="34.7320%" y="693" width="0.0135%" height="15" fill="rgb(252,86,40)" fg:x="156939" fg:w="61"/><text x="34.9820%" y="703.50"></text></g><g><title>__x64_sys_futex (61 samples, 0.01%)</title><rect x="34.7320%" y="677" width="0.0135%" height="15" fill="rgb(251,225,11)" fg:x="156939" fg:w="61"/><text x="34.9820%" y="687.50"></text></g><g><title>do_futex (60 samples, 0.01%)</title><rect x="34.7322%" y="661" width="0.0133%" height="15" fill="rgb(206,46,49)" fg:x="156940" fg:w="60"/><text x="34.9822%" y="671.50"></text></g><g><title>futex_wait (59 samples, 0.01%)</title><rect x="34.7324%" y="645" width="0.0131%" height="15" fill="rgb(245,128,24)" fg:x="156941" fg:w="59"/><text x="34.9824%" y="655.50"></text></g><g><title>__GI___pthread_mutex_lock (69 samples, 0.02%)</title><rect x="34.7305%" y="741" width="0.0153%" height="15" fill="rgb(219,177,34)" fg:x="156932" fg:w="69"/><text x="34.9805%" y="751.50"></text></g><g><title>__lll_lock_wait (66 samples, 0.01%)</title><rect x="34.7311%" y="725" width="0.0146%" height="15" fill="rgb(218,60,48)" fg:x="156935" fg:w="66"/><text x="34.9811%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (68 samples, 0.02%)</title><rect x="34.7519%" y="629" width="0.0150%" height="15" fill="rgb(221,11,5)" fg:x="157029" fg:w="68"/><text x="35.0019%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="34.7521%" y="613" width="0.0148%" height="15" fill="rgb(220,148,13)" fg:x="157030" fg:w="67"/><text x="35.0021%" y="623.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="34.7521%" y="597" width="0.0148%" height="15" fill="rgb(210,16,3)" fg:x="157030" fg:w="67"/><text x="35.0021%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (88 samples, 0.02%)</title><rect x="34.7482%" y="725" width="0.0195%" height="15" fill="rgb(236,80,2)" fg:x="157012" fg:w="88"/><text x="34.9982%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (74 samples, 0.02%)</title><rect x="34.7513%" y="709" width="0.0164%" height="15" fill="rgb(239,129,19)" fg:x="157026" fg:w="74"/><text x="35.0013%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (74 samples, 0.02%)</title><rect x="34.7513%" y="693" width="0.0164%" height="15" fill="rgb(220,106,35)" fg:x="157026" fg:w="74"/><text x="35.0013%" y="703.50"></text></g><g><title>schedule (71 samples, 0.02%)</title><rect x="34.7519%" y="677" width="0.0157%" height="15" fill="rgb(252,139,45)" fg:x="157029" fg:w="71"/><text x="35.0019%" y="687.50"></text></g><g><title>__schedule (71 samples, 0.02%)</title><rect x="34.7519%" y="661" width="0.0157%" height="15" fill="rgb(229,8,36)" fg:x="157029" fg:w="71"/><text x="35.0019%" y="671.50"></text></g><g><title>finish_task_switch (71 samples, 0.02%)</title><rect x="34.7519%" y="645" width="0.0157%" height="15" fill="rgb(230,126,33)" fg:x="157029" fg:w="71"/><text x="35.0019%" y="655.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (100 samples, 0.02%)</title><rect x="34.7457%" y="741" width="0.0221%" height="15" fill="rgb(239,140,21)" fg:x="157001" fg:w="100"/><text x="34.9957%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (407 samples, 0.09%)</title><rect x="34.8024%" y="533" width="0.0901%" height="15" fill="rgb(254,104,9)" fg:x="157257" fg:w="407"/><text x="35.0524%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (402 samples, 0.09%)</title><rect x="34.8035%" y="517" width="0.0890%" height="15" fill="rgb(239,52,14)" fg:x="157262" fg:w="402"/><text x="35.0535%" y="527.50"></text></g><g><title>native_write_msr (399 samples, 0.09%)</title><rect x="34.8042%" y="501" width="0.0883%" height="15" fill="rgb(208,227,44)" fg:x="157265" fg:w="399"/><text x="35.0542%" y="511.50"></text></g><g><title>finish_task_switch (419 samples, 0.09%)</title><rect x="34.8017%" y="549" width="0.0927%" height="15" fill="rgb(246,18,19)" fg:x="157254" fg:w="419"/><text x="35.0517%" y="559.50"></text></g><g><title>futex_wait_queue_me (476 samples, 0.11%)</title><rect x="34.7957%" y="597" width="0.1053%" height="15" fill="rgb(235,228,25)" fg:x="157227" fg:w="476"/><text x="35.0457%" y="607.50"></text></g><g><title>schedule (474 samples, 0.10%)</title><rect x="34.7962%" y="581" width="0.1049%" height="15" fill="rgb(240,156,20)" fg:x="157229" fg:w="474"/><text x="35.0462%" y="591.50"></text></g><g><title>__schedule (474 samples, 0.10%)</title><rect x="34.7962%" y="565" width="0.1049%" height="15" fill="rgb(224,8,20)" fg:x="157229" fg:w="474"/><text x="35.0462%" y="575.50"></text></g><g><title>do_syscall_64 (486 samples, 0.11%)</title><rect x="34.7949%" y="661" width="0.1076%" height="15" fill="rgb(214,12,52)" fg:x="157223" fg:w="486"/><text x="35.0449%" y="671.50"></text></g><g><title>__x64_sys_futex (484 samples, 0.11%)</title><rect x="34.7953%" y="645" width="0.1071%" height="15" fill="rgb(211,220,47)" fg:x="157225" fg:w="484"/><text x="35.0453%" y="655.50"></text></g><g><title>do_futex (483 samples, 0.11%)</title><rect x="34.7955%" y="629" width="0.1069%" height="15" fill="rgb(250,173,5)" fg:x="157226" fg:w="483"/><text x="35.0455%" y="639.50"></text></g><g><title>futex_wait (482 samples, 0.11%)</title><rect x="34.7957%" y="613" width="0.1067%" height="15" fill="rgb(250,125,52)" fg:x="157227" fg:w="482"/><text x="35.0457%" y="623.50"></text></g><g><title>__pthread_cond_wait (537 samples, 0.12%)</title><rect x="34.7856%" y="725" width="0.1188%" height="15" fill="rgb(209,133,18)" fg:x="157181" fg:w="537"/><text x="35.0356%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (537 samples, 0.12%)</title><rect x="34.7856%" y="709" width="0.1188%" height="15" fill="rgb(216,173,22)" fg:x="157181" fg:w="537"/><text x="35.0356%" y="719.50"></text></g><g><title>futex_wait_cancelable (505 samples, 0.11%)</title><rect x="34.7926%" y="693" width="0.1118%" height="15" fill="rgb(205,3,22)" fg:x="157213" fg:w="505"/><text x="35.0426%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (495 samples, 0.11%)</title><rect x="34.7949%" y="677" width="0.1095%" height="15" fill="rgb(248,22,20)" fg:x="157223" fg:w="495"/><text x="35.0449%" y="687.50"></text></g><g><title>finish_task_switch (46 samples, 0.01%)</title><rect x="34.9053%" y="565" width="0.0102%" height="15" fill="rgb(233,6,29)" fg:x="157722" fg:w="46"/><text x="35.1553%" y="575.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.01%)</title><rect x="34.9053%" y="549" width="0.0102%" height="15" fill="rgb(240,22,54)" fg:x="157722" fg:w="46"/><text x="35.1553%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.01%)</title><rect x="34.9053%" y="533" width="0.0102%" height="15" fill="rgb(231,133,32)" fg:x="157722" fg:w="46"/><text x="35.1553%" y="543.50"></text></g><g><title>native_write_msr (46 samples, 0.01%)</title><rect x="34.9053%" y="517" width="0.0102%" height="15" fill="rgb(248,193,4)" fg:x="157722" fg:w="46"/><text x="35.1553%" y="527.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.01%)</title><rect x="34.9051%" y="613" width="0.0106%" height="15" fill="rgb(211,178,46)" fg:x="157721" fg:w="48"/><text x="35.1551%" y="623.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="34.9053%" y="597" width="0.0104%" height="15" fill="rgb(224,5,42)" fg:x="157722" fg:w="47"/><text x="35.1553%" y="607.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="34.9053%" y="581" width="0.0104%" height="15" fill="rgb(239,176,25)" fg:x="157722" fg:w="47"/><text x="35.1553%" y="591.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="34.9048%" y="677" width="0.0111%" height="15" fill="rgb(245,187,50)" fg:x="157720" fg:w="50"/><text x="35.1548%" y="687.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.01%)</title><rect x="34.9048%" y="661" width="0.0111%" height="15" fill="rgb(248,24,15)" fg:x="157720" fg:w="50"/><text x="35.1548%" y="671.50"></text></g><g><title>do_futex (50 samples, 0.01%)</title><rect x="34.9048%" y="645" width="0.0111%" height="15" fill="rgb(205,166,13)" fg:x="157720" fg:w="50"/><text x="35.1548%" y="655.50"></text></g><g><title>futex_wait (49 samples, 0.01%)</title><rect x="34.9051%" y="629" width="0.0108%" height="15" fill="rgb(208,114,23)" fg:x="157721" fg:w="49"/><text x="35.1551%" y="639.50"></text></g><g><title>__pthread_mutex_cond_lock (53 samples, 0.01%)</title><rect x="34.9044%" y="725" width="0.0117%" height="15" fill="rgb(239,127,18)" fg:x="157718" fg:w="53"/><text x="35.1544%" y="735.50"></text></g><g><title>__lll_lock_wait (52 samples, 0.01%)</title><rect x="34.9046%" y="709" width="0.0115%" height="15" fill="rgb(219,154,28)" fg:x="157719" fg:w="52"/><text x="35.1546%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="34.9048%" y="693" width="0.0113%" height="15" fill="rgb(225,157,23)" fg:x="157720" fg:w="51"/><text x="35.1548%" y="703.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (844 samples, 0.19%)</title><rect x="34.7296%" y="757" width="0.1868%" height="15" fill="rgb(219,8,6)" fg:x="156928" fg:w="844"/><text x="34.9796%" y="767.50"></text></g><g><title>std::condition_variable::wait (591 samples, 0.13%)</title><rect x="34.7856%" y="741" width="0.1308%" height="15" fill="rgb(212,47,6)" fg:x="157181" fg:w="591"/><text x="35.0356%" y="751.50"></text></g><g><title>allocate_stack (52 samples, 0.01%)</title><rect x="34.9208%" y="725" width="0.0115%" height="15" fill="rgb(224,190,4)" fg:x="157792" fg:w="52"/><text x="35.1708%" y="735.50"></text></g><g><title>[libstdc++.so.6.0.28] (4,733 samples, 1.05%)</title><rect x="33.8855%" y="789" width="1.0475%" height="15" fill="rgb(239,183,29)" fg:x="153114" fg:w="4733"/><text x="34.1355%" y="799.50"></text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (919 samples, 0.20%)</title><rect x="34.7296%" y="773" width="0.2034%" height="15" fill="rgb(213,57,7)" fg:x="156928" fg:w="919"/><text x="34.9796%" y="783.50"></text></g><g><title>std::thread::_M_start_thread (55 samples, 0.01%)</title><rect x="34.9208%" y="757" width="0.0122%" height="15" fill="rgb(216,148,1)" fg:x="157792" fg:w="55"/><text x="35.1708%" y="767.50"></text></g><g><title>__pthread_create_2_1 (55 samples, 0.01%)</title><rect x="34.9208%" y="741" width="0.0122%" height="15" fill="rgb(236,182,29)" fg:x="157792" fg:w="55"/><text x="35.1708%" y="751.50"></text></g><g><title>__GI___clone (6,288 samples, 1.39%)</title><rect x="33.5531%" y="821" width="1.3916%" height="15" fill="rgb(244,120,48)" fg:x="151612" fg:w="6288"/><text x="33.8031%" y="831.50"></text></g><g><title>start_thread (4,788 samples, 1.06%)</title><rect x="33.8851%" y="805" width="1.0596%" height="15" fill="rgb(206,71,34)" fg:x="153112" fg:w="4788"/><text x="34.1351%" y="815.50"></text></g><g><title>__libc_csu_init (582 samples, 0.13%)</title><rect x="34.9518%" y="789" width="0.1288%" height="15" fill="rgb(242,32,6)" fg:x="157932" fg:w="582"/><text x="35.2018%" y="799.50"></text></g><g><title>lld::elf::readLinkerScript (64 samples, 0.01%)</title><rect x="35.0921%" y="677" width="0.0142%" height="15" fill="rgb(241,35,3)" fg:x="158566" fg:w="64"/><text x="35.3421%" y="687.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (81 samples, 0.02%)</title><rect x="35.0896%" y="693" width="0.0179%" height="15" fill="rgb(222,62,19)" fg:x="158555" fg:w="81"/><text x="35.3396%" y="703.50"></text></g><g><title>llvm::sys::fs::access (46 samples, 0.01%)</title><rect x="35.1138%" y="645" width="0.0102%" height="15" fill="rgb(223,110,41)" fg:x="158664" fg:w="46"/><text x="35.3638%" y="655.50"></text></g><g><title>__GI___access (46 samples, 0.01%)</title><rect x="35.1138%" y="629" width="0.0102%" height="15" fill="rgb(208,224,4)" fg:x="158664" fg:w="46"/><text x="35.3638%" y="639.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (181 samples, 0.04%)</title><rect x="35.0841%" y="725" width="0.0401%" height="15" fill="rgb(241,137,19)" fg:x="158530" fg:w="181"/><text x="35.3341%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (156 samples, 0.03%)</title><rect x="35.0896%" y="709" width="0.0345%" height="15" fill="rgb(244,24,17)" fg:x="158555" fg:w="156"/><text x="35.3396%" y="719.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (75 samples, 0.02%)</title><rect x="35.1076%" y="693" width="0.0166%" height="15" fill="rgb(245,178,49)" fg:x="158636" fg:w="75"/><text x="35.3576%" y="703.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (47 samples, 0.01%)</title><rect x="35.1138%" y="677" width="0.0104%" height="15" fill="rgb(219,160,38)" fg:x="158664" fg:w="47"/><text x="35.3638%" y="687.50"></text></g><g><title>findFile[abi:cxx11] (47 samples, 0.01%)</title><rect x="35.1138%" y="661" width="0.0104%" height="15" fill="rgb(228,137,14)" fg:x="158664" fg:w="47"/><text x="35.3638%" y="671.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (67 samples, 0.01%)</title><rect x="35.1443%" y="661" width="0.0148%" height="15" fill="rgb(237,134,11)" fg:x="158802" fg:w="67"/><text x="35.3943%" y="671.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (62 samples, 0.01%)</title><rect x="35.1454%" y="645" width="0.0137%" height="15" fill="rgb(211,126,44)" fg:x="158807" fg:w="62"/><text x="35.3954%" y="655.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (183 samples, 0.04%)</title><rect x="35.1337%" y="693" width="0.0405%" height="15" fill="rgb(226,171,33)" fg:x="158754" fg:w="183"/><text x="35.3837%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::insert (167 samples, 0.04%)</title><rect x="35.1372%" y="677" width="0.0370%" height="15" fill="rgb(253,99,13)" fg:x="158770" fg:w="167"/><text x="35.3872%" y="687.50"></text></g><g><title>lld::elf::ArchiveFile::parse (240 samples, 0.05%)</title><rect x="35.1308%" y="709" width="0.0531%" height="15" fill="rgb(244,48,7)" fg:x="158741" fg:w="240"/><text x="35.3808%" y="719.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (47 samples, 0.01%)</title><rect x="35.1908%" y="645" width="0.0104%" height="15" fill="rgb(244,217,54)" fg:x="159012" fg:w="47"/><text x="35.4408%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.02%)</title><rect x="35.2025%" y="421" width="0.0168%" height="15" fill="rgb(224,15,18)" fg:x="159065" fg:w="76"/><text x="35.4525%" y="431.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.02%)</title><rect x="35.2025%" y="405" width="0.0168%" height="15" fill="rgb(244,99,12)" fg:x="159065" fg:w="76"/><text x="35.4525%" y="415.50"></text></g><g><title>native_write_msr (76 samples, 0.02%)</title><rect x="35.2025%" y="389" width="0.0168%" height="15" fill="rgb(233,226,8)" fg:x="159065" fg:w="76"/><text x="35.4525%" y="399.50"></text></g><g><title>finish_task_switch (78 samples, 0.02%)</title><rect x="35.2025%" y="437" width="0.0173%" height="15" fill="rgb(229,211,3)" fg:x="159065" fg:w="78"/><text x="35.4525%" y="447.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (81 samples, 0.02%)</title><rect x="35.2021%" y="613" width="0.0179%" height="15" fill="rgb(216,140,21)" fg:x="159063" fg:w="81"/><text x="35.4521%" y="623.50"></text></g><g><title>futex_wait_simple (81 samples, 0.02%)</title><rect x="35.2021%" y="597" width="0.0179%" height="15" fill="rgb(234,122,30)" fg:x="159063" fg:w="81"/><text x="35.4521%" y="607.50"></text></g><g><title>futex_wait (81 samples, 0.02%)</title><rect x="35.2021%" y="581" width="0.0179%" height="15" fill="rgb(236,25,46)" fg:x="159063" fg:w="81"/><text x="35.4521%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="35.2023%" y="565" width="0.0177%" height="15" fill="rgb(217,52,54)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="575.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="35.2023%" y="549" width="0.0177%" height="15" fill="rgb(222,29,26)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="559.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.02%)</title><rect x="35.2023%" y="533" width="0.0177%" height="15" fill="rgb(216,177,29)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="543.50"></text></g><g><title>do_futex (80 samples, 0.02%)</title><rect x="35.2023%" y="517" width="0.0177%" height="15" fill="rgb(247,136,51)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="527.50"></text></g><g><title>futex_wait (80 samples, 0.02%)</title><rect x="35.2023%" y="501" width="0.0177%" height="15" fill="rgb(231,47,47)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="511.50"></text></g><g><title>futex_wait_queue_me (80 samples, 0.02%)</title><rect x="35.2023%" y="485" width="0.0177%" height="15" fill="rgb(211,192,36)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="495.50"></text></g><g><title>schedule (80 samples, 0.02%)</title><rect x="35.2023%" y="469" width="0.0177%" height="15" fill="rgb(229,156,32)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="479.50"></text></g><g><title>__schedule (80 samples, 0.02%)</title><rect x="35.2023%" y="453" width="0.0177%" height="15" fill="rgb(248,213,20)" fg:x="159064" fg:w="80"/><text x="35.4523%" y="463.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (156 samples, 0.03%)</title><rect x="35.1906%" y="661" width="0.0345%" height="15" fill="rgb(217,64,7)" fg:x="159011" fg:w="156"/><text x="35.4406%" y="671.50"></text></g><g><title>std::condition_variable::notify_one (105 samples, 0.02%)</title><rect x="35.2018%" y="645" width="0.0232%" height="15" fill="rgb(232,142,8)" fg:x="159062" fg:w="105"/><text x="35.4518%" y="655.50"></text></g><g><title>__pthread_cond_signal (105 samples, 0.02%)</title><rect x="35.2018%" y="629" width="0.0232%" height="15" fill="rgb(224,92,44)" fg:x="159062" fg:w="105"/><text x="35.4518%" y="639.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (51 samples, 0.01%)</title><rect x="35.2251%" y="661" width="0.0113%" height="15" fill="rgb(214,169,17)" fg:x="159167" fg:w="51"/><text x="35.4751%" y="671.50"></text></g><g><title>std::condition_variable::wait (51 samples, 0.01%)</title><rect x="35.2251%" y="645" width="0.0113%" height="15" fill="rgb(210,59,37)" fg:x="159167" fg:w="51"/><text x="35.4751%" y="655.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (221 samples, 0.05%)</title><rect x="35.1877%" y="693" width="0.0489%" height="15" fill="rgb(214,116,48)" fg:x="158998" fg:w="221"/><text x="35.4377%" y="703.50"></text></g><g><title>llvm::parallelForEachN (210 samples, 0.05%)</title><rect x="35.1901%" y="677" width="0.0465%" height="15" fill="rgb(244,191,6)" fg:x="159009" fg:w="210"/><text x="35.4401%" y="687.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (222 samples, 0.05%)</title><rect x="35.1877%" y="709" width="0.0491%" height="15" fill="rgb(241,50,52)" fg:x="158998" fg:w="222"/><text x="35.4377%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::find (46 samples, 0.01%)</title><rect x="35.2404%" y="709" width="0.0102%" height="15" fill="rgb(236,75,39)" fg:x="159236" fg:w="46"/><text x="35.4904%" y="719.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (61 samples, 0.01%)</title><rect x="35.2893%" y="645" width="0.0135%" height="15" fill="rgb(236,99,0)" fg:x="159457" fg:w="61"/><text x="35.5393%" y="655.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (114 samples, 0.03%)</title><rect x="35.3028%" y="645" width="0.0252%" height="15" fill="rgb(207,202,15)" fg:x="159518" fg:w="114"/><text x="35.5528%" y="655.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (108 samples, 0.02%)</title><rect x="35.3041%" y="629" width="0.0239%" height="15" fill="rgb(233,207,14)" fg:x="159524" fg:w="108"/><text x="35.5541%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (92 samples, 0.02%)</title><rect x="35.3280%" y="645" width="0.0204%" height="15" fill="rgb(226,27,51)" fg:x="159632" fg:w="92"/><text x="35.5780%" y="655.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (380 samples, 0.08%)</title><rect x="35.2738%" y="677" width="0.0841%" height="15" fill="rgb(206,104,42)" fg:x="159387" fg:w="380"/><text x="35.5238%" y="687.50"></text></g><g><title>lld::elf::SymbolTable::insert (342 samples, 0.08%)</title><rect x="35.2822%" y="661" width="0.0757%" height="15" fill="rgb(212,225,4)" fg:x="159425" fg:w="342"/><text x="35.5322%" y="671.50"></text></g><g><title>llvm::Twine::toVector (58 samples, 0.01%)</title><rect x="35.3612%" y="677" width="0.0128%" height="15" fill="rgb(233,96,42)" fg:x="159782" fg:w="58"/><text x="35.6112%" y="687.50"></text></g><g><title>lld::elf::parseFile (517 samples, 0.11%)</title><rect x="35.2627%" y="709" width="0.1144%" height="15" fill="rgb(229,21,32)" fg:x="159337" fg:w="517"/><text x="35.5127%" y="719.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (506 samples, 0.11%)</title><rect x="35.2651%" y="693" width="0.1120%" height="15" fill="rgb(226,216,24)" fg:x="159348" fg:w="506"/><text x="35.5151%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.01%)</title><rect x="35.3815%" y="453" width="0.0104%" height="15" fill="rgb(221,163,17)" fg:x="159874" fg:w="47"/><text x="35.6315%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (47 samples, 0.01%)</title><rect x="35.3815%" y="437" width="0.0104%" height="15" fill="rgb(216,216,42)" fg:x="159874" fg:w="47"/><text x="35.6315%" y="447.50"></text></g><g><title>native_write_msr (47 samples, 0.01%)</title><rect x="35.3815%" y="421" width="0.0104%" height="15" fill="rgb(240,118,7)" fg:x="159874" fg:w="47"/><text x="35.6315%" y="431.50"></text></g><g><title>finish_task_switch (48 samples, 0.01%)</title><rect x="35.3815%" y="469" width="0.0106%" height="15" fill="rgb(221,67,37)" fg:x="159874" fg:w="48"/><text x="35.6315%" y="479.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="35.3813%" y="581" width="0.0113%" height="15" fill="rgb(241,32,44)" fg:x="159873" fg:w="51"/><text x="35.6313%" y="591.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.01%)</title><rect x="35.3813%" y="565" width="0.0113%" height="15" fill="rgb(235,204,43)" fg:x="159873" fg:w="51"/><text x="35.6313%" y="575.50"></text></g><g><title>do_futex (51 samples, 0.01%)</title><rect x="35.3813%" y="549" width="0.0113%" height="15" fill="rgb(213,116,10)" fg:x="159873" fg:w="51"/><text x="35.6313%" y="559.50"></text></g><g><title>futex_wait (51 samples, 0.01%)</title><rect x="35.3813%" y="533" width="0.0113%" height="15" fill="rgb(239,15,48)" fg:x="159873" fg:w="51"/><text x="35.6313%" y="543.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.01%)</title><rect x="35.3815%" y="517" width="0.0111%" height="15" fill="rgb(207,123,36)" fg:x="159874" fg:w="50"/><text x="35.6315%" y="527.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="35.3815%" y="501" width="0.0111%" height="15" fill="rgb(209,103,30)" fg:x="159874" fg:w="50"/><text x="35.6315%" y="511.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="35.3815%" y="485" width="0.0111%" height="15" fill="rgb(238,100,19)" fg:x="159874" fg:w="50"/><text x="35.6315%" y="495.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.01%)</title><rect x="35.3809%" y="645" width="0.0122%" height="15" fill="rgb(244,30,14)" fg:x="159871" fg:w="55"/><text x="35.6309%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.01%)</title><rect x="35.3809%" y="629" width="0.0122%" height="15" fill="rgb(249,174,6)" fg:x="159871" fg:w="55"/><text x="35.6309%" y="639.50"></text></g><g><title>futex_wait_cancelable (55 samples, 0.01%)</title><rect x="35.3809%" y="613" width="0.0122%" height="15" fill="rgb(235,213,41)" fg:x="159871" fg:w="55"/><text x="35.6309%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="35.3813%" y="597" width="0.0117%" height="15" fill="rgb(213,118,6)" fg:x="159873" fg:w="53"/><text x="35.6313%" y="607.50"></text></g><g><title>lld::elf::splitSections&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (73 samples, 0.02%)</title><rect x="35.3771%" y="709" width="0.0162%" height="15" fill="rgb(235,44,51)" fg:x="159854" fg:w="73"/><text x="35.6271%" y="719.50"></text></g><g><title>llvm::parallelForEachN (73 samples, 0.02%)</title><rect x="35.3771%" y="693" width="0.0162%" height="15" fill="rgb(217,9,53)" fg:x="159854" fg:w="73"/><text x="35.6271%" y="703.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (61 samples, 0.01%)</title><rect x="35.3798%" y="677" width="0.0135%" height="15" fill="rgb(237,172,34)" fg:x="159866" fg:w="61"/><text x="35.6298%" y="687.50"></text></g><g><title>std::condition_variable::wait (56 samples, 0.01%)</title><rect x="35.3809%" y="661" width="0.0124%" height="15" fill="rgb(206,206,11)" fg:x="159871" fg:w="56"/><text x="35.6309%" y="671.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.02%)</title><rect x="35.4037%" y="437" width="0.0150%" height="15" fill="rgb(214,149,29)" fg:x="159974" fg:w="68"/><text x="35.6537%" y="447.50"></text></g><g><title>schedule (68 samples, 0.02%)</title><rect x="35.4037%" y="421" width="0.0150%" height="15" fill="rgb(208,123,3)" fg:x="159974" fg:w="68"/><text x="35.6537%" y="431.50"></text></g><g><title>__schedule (68 samples, 0.02%)</title><rect x="35.4037%" y="405" width="0.0150%" height="15" fill="rgb(229,126,4)" fg:x="159974" fg:w="68"/><text x="35.6537%" y="415.50"></text></g><g><title>finish_task_switch (67 samples, 0.01%)</title><rect x="35.4039%" y="389" width="0.0148%" height="15" fill="rgb(222,92,36)" fg:x="159975" fg:w="67"/><text x="35.6539%" y="399.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="35.4039%" y="373" width="0.0148%" height="15" fill="rgb(216,39,41)" fg:x="159975" fg:w="67"/><text x="35.6539%" y="383.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (66 samples, 0.01%)</title><rect x="35.4041%" y="357" width="0.0146%" height="15" fill="rgb(253,127,28)" fg:x="159976" fg:w="66"/><text x="35.6541%" y="367.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="35.4043%" y="341" width="0.0144%" height="15" fill="rgb(249,152,51)" fg:x="159977" fg:w="65"/><text x="35.6543%" y="351.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (69 samples, 0.02%)</title><rect x="35.4037%" y="565" width="0.0153%" height="15" fill="rgb(209,123,42)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="575.50"></text></g><g><title>futex_wait_simple (69 samples, 0.02%)</title><rect x="35.4037%" y="549" width="0.0153%" height="15" fill="rgb(241,118,22)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="559.50"></text></g><g><title>futex_wait (69 samples, 0.02%)</title><rect x="35.4037%" y="533" width="0.0153%" height="15" fill="rgb(208,25,7)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.02%)</title><rect x="35.4037%" y="517" width="0.0153%" height="15" fill="rgb(243,144,39)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="527.50"></text></g><g><title>do_syscall_64 (69 samples, 0.02%)</title><rect x="35.4037%" y="501" width="0.0153%" height="15" fill="rgb(250,50,5)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="511.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.02%)</title><rect x="35.4037%" y="485" width="0.0153%" height="15" fill="rgb(207,67,11)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="495.50"></text></g><g><title>do_futex (69 samples, 0.02%)</title><rect x="35.4037%" y="469" width="0.0153%" height="15" fill="rgb(245,204,40)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="479.50"></text></g><g><title>futex_wait (69 samples, 0.02%)</title><rect x="35.4037%" y="453" width="0.0153%" height="15" fill="rgb(238,228,24)" fg:x="159974" fg:w="69"/><text x="35.6537%" y="463.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (98 samples, 0.02%)</title><rect x="35.4028%" y="613" width="0.0217%" height="15" fill="rgb(217,116,22)" fg:x="159970" fg:w="98"/><text x="35.6528%" y="623.50"></text></g><g><title>std::condition_variable::notify_one (95 samples, 0.02%)</title><rect x="35.4035%" y="597" width="0.0210%" height="15" fill="rgb(234,98,12)" fg:x="159973" fg:w="95"/><text x="35.6535%" y="607.50"></text></g><g><title>__pthread_cond_signal (95 samples, 0.02%)</title><rect x="35.4035%" y="581" width="0.0210%" height="15" fill="rgb(242,170,50)" fg:x="159973" fg:w="95"/><text x="35.6535%" y="591.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (101 samples, 0.02%)</title><rect x="35.4028%" y="645" width="0.0224%" height="15" fill="rgb(235,7,5)" fg:x="159970" fg:w="101"/><text x="35.6528%" y="655.50"></text></g><g><title>llvm::parallelForEachN (101 samples, 0.02%)</title><rect x="35.4028%" y="629" width="0.0224%" height="15" fill="rgb(241,114,28)" fg:x="159970" fg:w="101"/><text x="35.6528%" y="639.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (132 samples, 0.03%)</title><rect x="35.4019%" y="661" width="0.0292%" height="15" fill="rgb(246,112,42)" fg:x="159966" fg:w="132"/><text x="35.6519%" y="671.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (198 samples, 0.04%)</title><rect x="35.4012%" y="693" width="0.0438%" height="15" fill="rgb(248,228,14)" fg:x="159963" fg:w="198"/><text x="35.6512%" y="703.50"></text></g><g><title>llvm::parallelForEachN (196 samples, 0.04%)</title><rect x="35.4017%" y="677" width="0.0434%" height="15" fill="rgb(208,133,18)" fg:x="159965" fg:w="196"/><text x="35.6517%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="35.4727%" y="469" width="0.0128%" height="15" fill="rgb(207,35,49)" fg:x="160286" fg:w="58"/><text x="35.7227%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="35.4727%" y="453" width="0.0128%" height="15" fill="rgb(205,68,36)" fg:x="160286" fg:w="58"/><text x="35.7227%" y="463.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="35.4727%" y="437" width="0.0128%" height="15" fill="rgb(245,62,40)" fg:x="160286" fg:w="58"/><text x="35.7227%" y="447.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="35.4725%" y="485" width="0.0135%" height="15" fill="rgb(228,27,24)" fg:x="160285" fg:w="61"/><text x="35.7225%" y="495.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="35.4723%" y="533" width="0.0144%" height="15" fill="rgb(253,19,12)" fg:x="160284" fg:w="65"/><text x="35.7223%" y="543.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="35.4725%" y="517" width="0.0142%" height="15" fill="rgb(232,28,20)" fg:x="160285" fg:w="64"/><text x="35.7225%" y="527.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="35.4725%" y="501" width="0.0142%" height="15" fill="rgb(218,35,51)" fg:x="160285" fg:w="64"/><text x="35.7225%" y="511.50"></text></g><g><title>__lll_lock_wait (72 samples, 0.02%)</title><rect x="35.4710%" y="629" width="0.0159%" height="15" fill="rgb(212,90,40)" fg:x="160278" fg:w="72"/><text x="35.7210%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.02%)</title><rect x="35.4718%" y="613" width="0.0150%" height="15" fill="rgb(220,172,12)" fg:x="160282" fg:w="68"/><text x="35.7218%" y="623.50"></text></g><g><title>do_syscall_64 (68 samples, 0.02%)</title><rect x="35.4718%" y="597" width="0.0150%" height="15" fill="rgb(226,159,20)" fg:x="160282" fg:w="68"/><text x="35.7218%" y="607.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.01%)</title><rect x="35.4721%" y="581" width="0.0148%" height="15" fill="rgb(234,205,16)" fg:x="160283" fg:w="67"/><text x="35.7221%" y="591.50"></text></g><g><title>do_futex (67 samples, 0.01%)</title><rect x="35.4721%" y="565" width="0.0148%" height="15" fill="rgb(207,9,39)" fg:x="160283" fg:w="67"/><text x="35.7221%" y="575.50"></text></g><g><title>futex_wait (67 samples, 0.01%)</title><rect x="35.4721%" y="549" width="0.0148%" height="15" fill="rgb(249,143,15)" fg:x="160283" fg:w="67"/><text x="35.7221%" y="559.50"></text></g><g><title>__GI___pthread_mutex_lock (89 samples, 0.02%)</title><rect x="35.4674%" y="645" width="0.0197%" height="15" fill="rgb(253,133,29)" fg:x="160262" fg:w="89"/><text x="35.7174%" y="655.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (53 samples, 0.01%)</title><rect x="35.4966%" y="629" width="0.0117%" height="15" fill="rgb(221,187,0)" fg:x="160394" fg:w="53"/><text x="35.7466%" y="639.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (186 samples, 0.04%)</title><rect x="35.4674%" y="661" width="0.0412%" height="15" fill="rgb(205,204,26)" fg:x="160262" fg:w="186"/><text x="35.7174%" y="671.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (57 samples, 0.01%)</title><rect x="35.4960%" y="645" width="0.0126%" height="15" fill="rgb(224,68,54)" fg:x="160391" fg:w="57"/><text x="35.7460%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (255 samples, 0.06%)</title><rect x="35.5247%" y="437" width="0.0564%" height="15" fill="rgb(209,67,4)" fg:x="160521" fg:w="255"/><text x="35.7747%" y="447.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (252 samples, 0.06%)</title><rect x="35.5254%" y="421" width="0.0558%" height="15" fill="rgb(228,229,18)" fg:x="160524" fg:w="252"/><text x="35.7754%" y="431.50"></text></g><g><title>native_write_msr (252 samples, 0.06%)</title><rect x="35.5254%" y="405" width="0.0558%" height="15" fill="rgb(231,89,13)" fg:x="160524" fg:w="252"/><text x="35.7754%" y="415.50"></text></g><g><title>finish_task_switch (261 samples, 0.06%)</title><rect x="35.5238%" y="453" width="0.0578%" height="15" fill="rgb(210,182,18)" fg:x="160517" fg:w="261"/><text x="35.7738%" y="463.50"></text></g><g><title>futex_wait_queue_me (295 samples, 0.07%)</title><rect x="35.5194%" y="501" width="0.0653%" height="15" fill="rgb(240,105,2)" fg:x="160497" fg:w="295"/><text x="35.7694%" y="511.50"></text></g><g><title>schedule (291 samples, 0.06%)</title><rect x="35.5203%" y="485" width="0.0644%" height="15" fill="rgb(207,170,50)" fg:x="160501" fg:w="291"/><text x="35.7703%" y="495.50"></text></g><g><title>__schedule (288 samples, 0.06%)</title><rect x="35.5210%" y="469" width="0.0637%" height="15" fill="rgb(232,133,24)" fg:x="160504" fg:w="288"/><text x="35.7710%" y="479.50"></text></g><g><title>do_syscall_64 (308 samples, 0.07%)</title><rect x="35.5168%" y="565" width="0.0682%" height="15" fill="rgb(235,166,27)" fg:x="160485" fg:w="308"/><text x="35.7668%" y="575.50"></text></g><g><title>__x64_sys_futex (307 samples, 0.07%)</title><rect x="35.5170%" y="549" width="0.0679%" height="15" fill="rgb(209,19,13)" fg:x="160486" fg:w="307"/><text x="35.7670%" y="559.50"></text></g><g><title>do_futex (307 samples, 0.07%)</title><rect x="35.5170%" y="533" width="0.0679%" height="15" fill="rgb(226,79,39)" fg:x="160486" fg:w="307"/><text x="35.7670%" y="543.50"></text></g><g><title>futex_wait (304 samples, 0.07%)</title><rect x="35.5177%" y="517" width="0.0673%" height="15" fill="rgb(222,163,10)" fg:x="160489" fg:w="304"/><text x="35.7677%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (313 samples, 0.07%)</title><rect x="35.5168%" y="581" width="0.0693%" height="15" fill="rgb(214,44,19)" fg:x="160485" fg:w="313"/><text x="35.7668%" y="591.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (323 samples, 0.07%)</title><rect x="35.5152%" y="629" width="0.0715%" height="15" fill="rgb(210,217,13)" fg:x="160478" fg:w="323"/><text x="35.7652%" y="639.50"></text></g><g><title>futex_wait_simple (318 samples, 0.07%)</title><rect x="35.5163%" y="613" width="0.0704%" height="15" fill="rgb(237,61,54)" fg:x="160483" fg:w="318"/><text x="35.7663%" y="623.50"></text></g><g><title>futex_wait (318 samples, 0.07%)</title><rect x="35.5163%" y="597" width="0.0704%" height="15" fill="rgb(226,184,24)" fg:x="160483" fg:w="318"/><text x="35.7663%" y="607.50"></text></g><g><title>_raw_spin_lock (86 samples, 0.02%)</title><rect x="35.5993%" y="501" width="0.0190%" height="15" fill="rgb(223,226,4)" fg:x="160858" fg:w="86"/><text x="35.8493%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath (84 samples, 0.02%)</title><rect x="35.5998%" y="485" width="0.0186%" height="15" fill="rgb(210,26,41)" fg:x="160860" fg:w="84"/><text x="35.8498%" y="495.50"></text></g><g><title>enqueue_task_fair (68 samples, 0.02%)</title><rect x="35.6294%" y="485" width="0.0150%" height="15" fill="rgb(220,221,6)" fg:x="160994" fg:w="68"/><text x="35.8794%" y="495.50"></text></g><g><title>ttwu_do_activate (130 samples, 0.03%)</title><rect x="35.6290%" y="501" width="0.0288%" height="15" fill="rgb(225,89,49)" fg:x="160992" fg:w="130"/><text x="35.8790%" y="511.50"></text></g><g><title>psi_task_change (60 samples, 0.01%)</title><rect x="35.6445%" y="485" width="0.0133%" height="15" fill="rgb(218,70,45)" fg:x="161062" fg:w="60"/><text x="35.8945%" y="495.50"></text></g><g><title>psi_group_change (54 samples, 0.01%)</title><rect x="35.6458%" y="469" width="0.0120%" height="15" fill="rgb(238,166,21)" fg:x="161068" fg:w="54"/><text x="35.8958%" y="479.50"></text></g><g><title>__x64_sys_futex (322 samples, 0.07%)</title><rect x="35.5896%" y="581" width="0.0713%" height="15" fill="rgb(224,141,44)" fg:x="160814" fg:w="322"/><text x="35.8396%" y="591.50"></text></g><g><title>do_futex (321 samples, 0.07%)</title><rect x="35.5898%" y="565" width="0.0710%" height="15" fill="rgb(230,12,49)" fg:x="160815" fg:w="321"/><text x="35.8398%" y="575.50"></text></g><g><title>futex_wake (321 samples, 0.07%)</title><rect x="35.5898%" y="549" width="0.0710%" height="15" fill="rgb(212,174,12)" fg:x="160815" fg:w="321"/><text x="35.8398%" y="559.50"></text></g><g><title>wake_up_q (288 samples, 0.06%)</title><rect x="35.5971%" y="533" width="0.0637%" height="15" fill="rgb(246,67,9)" fg:x="160848" fg:w="288"/><text x="35.8471%" y="543.50"></text></g><g><title>try_to_wake_up (284 samples, 0.06%)</title><rect x="35.5980%" y="517" width="0.0629%" height="15" fill="rgb(239,35,23)" fg:x="160852" fg:w="284"/><text x="35.8480%" y="527.50"></text></g><g><title>do_syscall_64 (325 samples, 0.07%)</title><rect x="35.5894%" y="597" width="0.0719%" height="15" fill="rgb(211,167,0)" fg:x="160813" fg:w="325"/><text x="35.8394%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (340 samples, 0.08%)</title><rect x="35.5891%" y="613" width="0.0752%" height="15" fill="rgb(225,119,45)" fg:x="160812" fg:w="340"/><text x="35.8391%" y="623.50"></text></g><g><title>__pthread_cond_signal (680 samples, 0.15%)</title><rect x="35.5148%" y="645" width="0.1505%" height="15" fill="rgb(210,162,6)" fg:x="160476" fg:w="680"/><text x="35.7648%" y="655.50"></text></g><g><title>futex_wake (353 samples, 0.08%)</title><rect x="35.5871%" y="629" width="0.0781%" height="15" fill="rgb(208,118,35)" fg:x="160803" fg:w="353"/><text x="35.8371%" y="639.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (916 samples, 0.20%)</title><rect x="35.4628%" y="677" width="0.2027%" height="15" fill="rgb(239,4,53)" fg:x="160241" fg:w="916"/><text x="35.7128%" y="687.50"></text></g><g><title>std::condition_variable::notify_one (682 samples, 0.15%)</title><rect x="35.5146%" y="661" width="0.1509%" height="15" fill="rgb(213,130,21)" fg:x="160475" fg:w="682"/><text x="35.7646%" y="671.50"></text></g><g><title>llvm::parallelForEachN (945 samples, 0.21%)</title><rect x="35.4619%" y="693" width="0.2091%" height="15" fill="rgb(235,148,0)" fg:x="160237" fg:w="945"/><text x="35.7119%" y="703.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (1,280 samples, 0.28%)</title><rect x="35.3933%" y="709" width="0.2833%" height="15" fill="rgb(244,224,18)" fg:x="159927" fg:w="1280"/><text x="35.6433%" y="719.50"></text></g><g><title>lld::tryCreateFile (62 samples, 0.01%)</title><rect x="35.6766%" y="709" width="0.0137%" height="15" fill="rgb(211,214,4)" fg:x="161207" fg:w="62"/><text x="35.9266%" y="719.50"></text></g><g><title>lld::elf::LinkerDriver::link (2,560 samples, 0.57%)</title><rect x="35.1242%" y="725" width="0.5666%" height="15" fill="rgb(206,119,25)" fg:x="158711" fg:w="2560"/><text x="35.3742%" y="735.50"></text></g><g><title>llvm::InitializeAllTargets (83 samples, 0.02%)</title><rect x="35.6929%" y="725" width="0.0184%" height="15" fill="rgb(243,93,47)" fg:x="161281" fg:w="83"/><text x="35.9429%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (2,896 samples, 0.64%)</title><rect x="35.0832%" y="741" width="0.6409%" height="15" fill="rgb(224,194,6)" fg:x="158526" fg:w="2896"/><text x="35.3332%" y="751.50"></text></g><g><title>readConfigs (48 samples, 0.01%)</title><rect x="35.7135%" y="725" width="0.0106%" height="15" fill="rgb(243,229,6)" fg:x="161374" fg:w="48"/><text x="35.9635%" y="735.50"></text></g><g><title>lld::elf::link (2,909 samples, 0.64%)</title><rect x="35.0808%" y="757" width="0.6438%" height="15" fill="rgb(207,23,50)" fg:x="158515" fg:w="2909"/><text x="35.3308%" y="767.50"></text></g><g><title>llvm::llvm_shutdown (109 samples, 0.02%)</title><rect x="35.7246%" y="741" width="0.0241%" height="15" fill="rgb(253,192,32)" fg:x="161424" fg:w="109"/><text x="35.9746%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::stop (50 samples, 0.01%)</title><rect x="35.7376%" y="725" width="0.0111%" height="15" fill="rgb(213,21,6)" fg:x="161483" fg:w="50"/><text x="35.9876%" y="735.50"></text></g><g><title>lldMain (3,023 samples, 0.67%)</title><rect x="35.0806%" y="773" width="0.6690%" height="15" fill="rgb(243,151,13)" fg:x="158514" fg:w="3023"/><text x="35.3306%" y="783.50"></text></g><g><title>lld::exitLld (113 samples, 0.03%)</title><rect x="35.7246%" y="757" width="0.0250%" height="15" fill="rgb(233,165,41)" fg:x="161424" fg:w="113"/><text x="35.9746%" y="767.50"></text></g><g><title>__libc_start_main (3,612 samples, 0.80%)</title><rect x="34.9515%" y="805" width="0.7994%" height="15" fill="rgb(246,176,45)" fg:x="157931" fg:w="3612"/><text x="35.2015%" y="815.50"></text></g><g><title>main (3,029 samples, 0.67%)</title><rect x="35.0806%" y="789" width="0.6703%" height="15" fill="rgb(217,170,52)" fg:x="158514" fg:w="3029"/><text x="35.3306%" y="799.50"></text></g><g><title>_dl_map_object_from_fd (57 samples, 0.01%)</title><rect x="35.7540%" y="677" width="0.0126%" height="15" fill="rgb(214,203,54)" fg:x="161557" fg:w="57"/><text x="36.0040%" y="687.50"></text></g><g><title>_dl_catch_exception (97 samples, 0.02%)</title><rect x="35.7525%" y="725" width="0.0215%" height="15" fill="rgb(248,215,49)" fg:x="161550" fg:w="97"/><text x="36.0025%" y="735.50"></text></g><g><title>openaux (97 samples, 0.02%)</title><rect x="35.7525%" y="709" width="0.0215%" height="15" fill="rgb(208,46,10)" fg:x="161550" fg:w="97"/><text x="36.0025%" y="719.50"></text></g><g><title>_dl_map_object (97 samples, 0.02%)</title><rect x="35.7525%" y="693" width="0.0215%" height="15" fill="rgb(254,5,31)" fg:x="161550" fg:w="97"/><text x="36.0025%" y="703.50"></text></g><g><title>_dl_map_object_deps (99 samples, 0.02%)</title><rect x="35.7525%" y="741" width="0.0219%" height="15" fill="rgb(222,104,33)" fg:x="161550" fg:w="99"/><text x="36.0025%" y="751.50"></text></g><g><title>_dl_lookup_symbol_x (162 samples, 0.04%)</title><rect x="35.7896%" y="693" width="0.0359%" height="15" fill="rgb(248,49,16)" fg:x="161718" fg:w="162"/><text x="36.0396%" y="703.50"></text></g><g><title>do_lookup_x (112 samples, 0.02%)</title><rect x="35.8007%" y="677" width="0.0248%" height="15" fill="rgb(232,198,41)" fg:x="161768" fg:w="112"/><text x="36.0507%" y="687.50"></text></g><g><title>asm_exc_page_fault (51 samples, 0.01%)</title><rect x="35.8255%" y="693" width="0.0113%" height="15" fill="rgb(214,125,3)" fg:x="161880" fg:w="51"/><text x="36.0755%" y="703.50"></text></g><g><title>exc_page_fault (51 samples, 0.01%)</title><rect x="35.8255%" y="677" width="0.0113%" height="15" fill="rgb(229,220,28)" fg:x="161880" fg:w="51"/><text x="36.0755%" y="687.50"></text></g><g><title>do_user_addr_fault (51 samples, 0.01%)</title><rect x="35.8255%" y="661" width="0.0113%" height="15" fill="rgb(222,64,37)" fg:x="161880" fg:w="51"/><text x="36.0755%" y="671.50"></text></g><g><title>handle_mm_fault (49 samples, 0.01%)</title><rect x="35.8259%" y="645" width="0.0108%" height="15" fill="rgb(249,184,13)" fg:x="161882" fg:w="49"/><text x="36.0759%" y="655.50"></text></g><g><title>elf_machine_rela (246 samples, 0.05%)</title><rect x="35.7830%" y="709" width="0.0544%" height="15" fill="rgb(252,176,6)" fg:x="161688" fg:w="246"/><text x="36.0330%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (277 samples, 0.06%)</title><rect x="35.7788%" y="725" width="0.0613%" height="15" fill="rgb(228,153,7)" fg:x="161669" fg:w="277"/><text x="36.0288%" y="735.50"></text></g><g><title>_dl_relocate_object (296 samples, 0.07%)</title><rect x="35.7755%" y="741" width="0.0655%" height="15" fill="rgb(242,193,5)" fg:x="161654" fg:w="296"/><text x="36.0255%" y="751.50"></text></g><g><title>[ld-2.31.so] (413 samples, 0.09%)</title><rect x="35.7511%" y="757" width="0.0914%" height="15" fill="rgb(232,140,9)" fg:x="161544" fg:w="413"/><text x="36.0011%" y="767.50"></text></g><g><title>_dl_start_final (420 samples, 0.09%)</title><rect x="35.7509%" y="789" width="0.0929%" height="15" fill="rgb(213,222,16)" fg:x="161543" fg:w="420"/><text x="36.0009%" y="799.50"></text></g><g><title>_dl_sysdep_start (419 samples, 0.09%)</title><rect x="35.7511%" y="773" width="0.0927%" height="15" fill="rgb(222,75,50)" fg:x="161544" fg:w="419"/><text x="36.0011%" y="783.50"></text></g><g><title>_dl_start (423 samples, 0.09%)</title><rect x="35.7509%" y="805" width="0.0936%" height="15" fill="rgb(205,180,2)" fg:x="161543" fg:w="423"/><text x="36.0009%" y="815.50"></text></g><g><title>_start (4,038 samples, 0.89%)</title><rect x="34.9513%" y="821" width="0.8936%" height="15" fill="rgb(216,34,7)" fg:x="157930" fg:w="4038"/><text x="35.2013%" y="831.50"></text></g><g><title>asm_exc_page_fault (123 samples, 0.03%)</title><rect x="35.8450%" y="821" width="0.0272%" height="15" fill="rgb(253,16,32)" fg:x="161968" fg:w="123"/><text x="36.0950%" y="831.50"></text></g><g><title>mmput (103 samples, 0.02%)</title><rect x="35.8804%" y="741" width="0.0228%" height="15" fill="rgb(208,97,28)" fg:x="162128" fg:w="103"/><text x="36.1304%" y="751.50"></text></g><g><title>exit_mmap (103 samples, 0.02%)</title><rect x="35.8804%" y="725" width="0.0228%" height="15" fill="rgb(225,92,11)" fg:x="162128" fg:w="103"/><text x="36.1304%" y="735.50"></text></g><g><title>unmap_vmas (94 samples, 0.02%)</title><rect x="35.8824%" y="709" width="0.0208%" height="15" fill="rgb(243,38,12)" fg:x="162137" fg:w="94"/><text x="36.1324%" y="719.50"></text></g><g><title>unmap_page_range (94 samples, 0.02%)</title><rect x="35.8824%" y="693" width="0.0208%" height="15" fill="rgb(208,139,16)" fg:x="162137" fg:w="94"/><text x="36.1324%" y="703.50"></text></g><g><title>__x64_sys_exit_group (109 samples, 0.02%)</title><rect x="35.8793%" y="789" width="0.0241%" height="15" fill="rgb(227,24,9)" fg:x="162123" fg:w="109"/><text x="36.1293%" y="799.50"></text></g><g><title>do_group_exit (109 samples, 0.02%)</title><rect x="35.8793%" y="773" width="0.0241%" height="15" fill="rgb(206,62,11)" fg:x="162123" fg:w="109"/><text x="36.1293%" y="783.50"></text></g><g><title>do_exit (109 samples, 0.02%)</title><rect x="35.8793%" y="757" width="0.0241%" height="15" fill="rgb(228,134,27)" fg:x="162123" fg:w="109"/><text x="36.1293%" y="767.50"></text></g><g><title>do_syscall_64 (134 samples, 0.03%)</title><rect x="35.8746%" y="805" width="0.0297%" height="15" fill="rgb(205,55,33)" fg:x="162102" fg:w="134"/><text x="36.1246%" y="815.50"></text></g><g><title>mmput (56 samples, 0.01%)</title><rect x="35.9067%" y="709" width="0.0124%" height="15" fill="rgb(243,75,43)" fg:x="162247" fg:w="56"/><text x="36.1567%" y="719.50"></text></g><g><title>exit_mmap (56 samples, 0.01%)</title><rect x="35.9067%" y="693" width="0.0124%" height="15" fill="rgb(223,27,42)" fg:x="162247" fg:w="56"/><text x="36.1567%" y="703.50"></text></g><g><title>unmap_vmas (50 samples, 0.01%)</title><rect x="35.9080%" y="677" width="0.0111%" height="15" fill="rgb(232,189,33)" fg:x="162253" fg:w="50"/><text x="36.1580%" y="687.50"></text></g><g><title>unmap_page_range (50 samples, 0.01%)</title><rect x="35.9080%" y="661" width="0.0111%" height="15" fill="rgb(210,9,39)" fg:x="162253" fg:w="50"/><text x="36.1580%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (209 samples, 0.05%)</title><rect x="35.8733%" y="821" width="0.0463%" height="15" fill="rgb(242,85,26)" fg:x="162096" fg:w="209"/><text x="36.1233%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (69 samples, 0.02%)</title><rect x="35.9043%" y="805" width="0.0153%" height="15" fill="rgb(248,44,4)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (69 samples, 0.02%)</title><rect x="35.9043%" y="789" width="0.0153%" height="15" fill="rgb(250,96,46)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="799.50"></text></g><g><title>arch_do_signal (69 samples, 0.02%)</title><rect x="35.9043%" y="773" width="0.0153%" height="15" fill="rgb(229,116,26)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="783.50"></text></g><g><title>get_signal (69 samples, 0.02%)</title><rect x="35.9043%" y="757" width="0.0153%" height="15" fill="rgb(246,94,34)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="767.50"></text></g><g><title>do_group_exit (69 samples, 0.02%)</title><rect x="35.9043%" y="741" width="0.0153%" height="15" fill="rgb(251,73,21)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="751.50"></text></g><g><title>do_exit (69 samples, 0.02%)</title><rect x="35.9043%" y="725" width="0.0153%" height="15" fill="rgb(254,121,25)" fg:x="162236" fg:w="69"/><text x="36.1543%" y="735.50"></text></g><g><title>page_remove_rmap (58 samples, 0.01%)</title><rect x="35.9563%" y="645" width="0.0128%" height="15" fill="rgb(215,161,49)" fg:x="162471" fg:w="58"/><text x="36.2063%" y="655.50"></text></g><g><title>tlb_flush_mmu (56 samples, 0.01%)</title><rect x="35.9691%" y="645" width="0.0124%" height="15" fill="rgb(221,43,13)" fg:x="162529" fg:w="56"/><text x="36.2191%" y="655.50"></text></g><g><title>unmap_page_range (221 samples, 0.05%)</title><rect x="35.9353%" y="661" width="0.0489%" height="15" fill="rgb(249,5,37)" fg:x="162376" fg:w="221"/><text x="36.1853%" y="671.50"></text></g><g><title>mmput (242 samples, 0.05%)</title><rect x="35.9308%" y="709" width="0.0536%" height="15" fill="rgb(226,25,44)" fg:x="162356" fg:w="242"/><text x="36.1808%" y="719.50"></text></g><g><title>exit_mmap (241 samples, 0.05%)</title><rect x="35.9311%" y="693" width="0.0533%" height="15" fill="rgb(238,189,16)" fg:x="162357" fg:w="241"/><text x="36.1811%" y="703.50"></text></g><g><title>unmap_vmas (223 samples, 0.05%)</title><rect x="35.9350%" y="677" width="0.0494%" height="15" fill="rgb(251,186,8)" fg:x="162375" fg:w="223"/><text x="36.1850%" y="687.50"></text></g><g><title>ret_from_fork (282 samples, 0.06%)</title><rect x="35.9224%" y="821" width="0.0624%" height="15" fill="rgb(254,34,31)" fg:x="162318" fg:w="282"/><text x="36.1724%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (281 samples, 0.06%)</title><rect x="35.9226%" y="805" width="0.0622%" height="15" fill="rgb(225,215,27)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (281 samples, 0.06%)</title><rect x="35.9226%" y="789" width="0.0622%" height="15" fill="rgb(221,192,48)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="799.50"></text></g><g><title>arch_do_signal (281 samples, 0.06%)</title><rect x="35.9226%" y="773" width="0.0622%" height="15" fill="rgb(219,137,20)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="783.50"></text></g><g><title>get_signal (281 samples, 0.06%)</title><rect x="35.9226%" y="757" width="0.0622%" height="15" fill="rgb(219,84,11)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="767.50"></text></g><g><title>do_group_exit (281 samples, 0.06%)</title><rect x="35.9226%" y="741" width="0.0622%" height="15" fill="rgb(224,10,23)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="751.50"></text></g><g><title>do_exit (281 samples, 0.06%)</title><rect x="35.9226%" y="725" width="0.0622%" height="15" fill="rgb(248,22,39)" fg:x="162319" fg:w="281"/><text x="36.1726%" y="735.50"></text></g><g><title>ld.lld (11,612 samples, 2.57%)</title><rect x="33.4159%" y="837" width="2.5698%" height="15" fill="rgb(212,154,20)" fg:x="150992" fg:w="11612"/><text x="33.6659%" y="847.50">ld..</text></g><g><title>[bash] (63 samples, 0.01%)</title><rect x="35.9975%" y="805" width="0.0139%" height="15" fill="rgb(236,199,50)" fg:x="162657" fg:w="63"/><text x="36.2475%" y="815.50"></text></g><g><title>execute_command_internal (46 samples, 0.01%)</title><rect x="36.0012%" y="789" width="0.0102%" height="15" fill="rgb(211,9,17)" fg:x="162674" fg:w="46"/><text x="36.2512%" y="799.50"></text></g><g><title>execute_command (49 samples, 0.01%)</title><rect x="36.0160%" y="773" width="0.0108%" height="15" fill="rgb(243,216,36)" fg:x="162741" fg:w="49"/><text x="36.2660%" y="783.50"></text></g><g><title>execute_command_internal (49 samples, 0.01%)</title><rect x="36.0160%" y="757" width="0.0108%" height="15" fill="rgb(250,2,10)" fg:x="162741" fg:w="49"/><text x="36.2660%" y="767.50"></text></g><g><title>[bash] (76 samples, 0.02%)</title><rect x="36.0158%" y="789" width="0.0168%" height="15" fill="rgb(226,50,48)" fg:x="162740" fg:w="76"/><text x="36.2658%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.02%)</title><rect x="36.0388%" y="69" width="0.0188%" height="15" fill="rgb(243,81,16)" fg:x="162844" fg:w="85"/><text x="36.2888%" y="79.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (84 samples, 0.02%)</title><rect x="36.0391%" y="53" width="0.0186%" height="15" fill="rgb(250,14,2)" fg:x="162845" fg:w="84"/><text x="36.2891%" y="63.50"></text></g><g><title>native_write_msr (84 samples, 0.02%)</title><rect x="36.0391%" y="37" width="0.0186%" height="15" fill="rgb(233,135,29)" fg:x="162845" fg:w="84"/><text x="36.2891%" y="47.50"></text></g><g><title>arch_fork (113 samples, 0.03%)</title><rect x="36.0337%" y="133" width="0.0250%" height="15" fill="rgb(224,64,43)" fg:x="162821" fg:w="113"/><text x="36.2837%" y="143.50"></text></g><g><title>ret_from_fork (104 samples, 0.02%)</title><rect x="36.0357%" y="117" width="0.0230%" height="15" fill="rgb(238,84,13)" fg:x="162830" fg:w="104"/><text x="36.2857%" y="127.50"></text></g><g><title>schedule_tail (103 samples, 0.02%)</title><rect x="36.0360%" y="101" width="0.0228%" height="15" fill="rgb(253,48,26)" fg:x="162831" fg:w="103"/><text x="36.2860%" y="111.50"></text></g><g><title>finish_task_switch (94 samples, 0.02%)</title><rect x="36.0380%" y="85" width="0.0208%" height="15" fill="rgb(205,223,31)" fg:x="162840" fg:w="94"/><text x="36.2880%" y="95.50"></text></g><g><title>make_child (115 samples, 0.03%)</title><rect x="36.0335%" y="165" width="0.0255%" height="15" fill="rgb(221,41,32)" fg:x="162820" fg:w="115"/><text x="36.2835%" y="175.50"></text></g><g><title>__libc_fork (115 samples, 0.03%)</title><rect x="36.0335%" y="149" width="0.0255%" height="15" fill="rgb(213,158,31)" fg:x="162820" fg:w="115"/><text x="36.2835%" y="159.50"></text></g><g><title>execute_command_internal (196 samples, 0.04%)</title><rect x="36.0158%" y="805" width="0.0434%" height="15" fill="rgb(245,126,43)" fg:x="162740" fg:w="196"/><text x="36.2658%" y="815.50"></text></g><g><title>execute_command_internal (120 samples, 0.03%)</title><rect x="36.0326%" y="789" width="0.0266%" height="15" fill="rgb(227,7,22)" fg:x="162816" fg:w="120"/><text x="36.2826%" y="799.50"></text></g><g><title>[bash] (120 samples, 0.03%)</title><rect x="36.0326%" y="773" width="0.0266%" height="15" fill="rgb(252,90,44)" fg:x="162816" fg:w="120"/><text x="36.2826%" y="783.50"></text></g><g><title>execute_command (120 samples, 0.03%)</title><rect x="36.0326%" y="757" width="0.0266%" height="15" fill="rgb(253,91,0)" fg:x="162816" fg:w="120"/><text x="36.2826%" y="767.50"></text></g><g><title>execute_command_internal (120 samples, 0.03%)</title><rect x="36.0326%" y="741" width="0.0266%" height="15" fill="rgb(252,175,49)" fg:x="162816" fg:w="120"/><text x="36.2826%" y="751.50"></text></g><g><title>[bash] (120 samples, 0.03%)</title><rect x="36.0326%" y="725" width="0.0266%" height="15" fill="rgb(246,150,1)" fg:x="162816" fg:w="120"/><text x="36.2826%" y="735.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="709" width="0.0263%" height="15" fill="rgb(241,192,25)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="719.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="693" width="0.0263%" height="15" fill="rgb(239,187,11)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="703.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="677" width="0.0263%" height="15" fill="rgb(218,202,51)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="687.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="661" width="0.0263%" height="15" fill="rgb(225,176,8)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="671.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="645" width="0.0263%" height="15" fill="rgb(219,122,41)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="655.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="629" width="0.0263%" height="15" fill="rgb(248,140,20)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="639.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="613" width="0.0263%" height="15" fill="rgb(245,41,37)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="623.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="597" width="0.0263%" height="15" fill="rgb(235,82,39)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="607.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="581" width="0.0263%" height="15" fill="rgb(230,108,42)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="591.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="565" width="0.0263%" height="15" fill="rgb(215,150,50)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="575.50"></text></g><g><title>execute_command (119 samples, 0.03%)</title><rect x="36.0329%" y="549" width="0.0263%" height="15" fill="rgb(233,212,5)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="559.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="533" width="0.0263%" height="15" fill="rgb(245,80,22)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="543.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="517" width="0.0263%" height="15" fill="rgb(238,129,16)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="527.50"></text></g><g><title>execute_command (119 samples, 0.03%)</title><rect x="36.0329%" y="501" width="0.0263%" height="15" fill="rgb(240,19,0)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="511.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="485" width="0.0263%" height="15" fill="rgb(232,42,35)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="495.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="469" width="0.0263%" height="15" fill="rgb(223,130,24)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="479.50"></text></g><g><title>execute_command (119 samples, 0.03%)</title><rect x="36.0329%" y="453" width="0.0263%" height="15" fill="rgb(237,16,22)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="463.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="437" width="0.0263%" height="15" fill="rgb(248,192,20)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="447.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="421" width="0.0263%" height="15" fill="rgb(233,167,2)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="431.50"></text></g><g><title>execute_command (119 samples, 0.03%)</title><rect x="36.0329%" y="405" width="0.0263%" height="15" fill="rgb(252,71,44)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="415.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="389" width="0.0263%" height="15" fill="rgb(238,37,47)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="399.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="373" width="0.0263%" height="15" fill="rgb(214,202,54)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="383.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="357" width="0.0263%" height="15" fill="rgb(254,165,40)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="367.50"></text></g><g><title>expand_words (119 samples, 0.03%)</title><rect x="36.0329%" y="341" width="0.0263%" height="15" fill="rgb(246,173,38)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="351.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="325" width="0.0263%" height="15" fill="rgb(215,3,27)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="335.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="309" width="0.0263%" height="15" fill="rgb(239,169,51)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="319.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="293" width="0.0263%" height="15" fill="rgb(212,5,25)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="303.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="277" width="0.0263%" height="15" fill="rgb(243,45,17)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="287.50"></text></g><g><title>command_substitute (119 samples, 0.03%)</title><rect x="36.0329%" y="261" width="0.0263%" height="15" fill="rgb(242,97,9)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="271.50"></text></g><g><title>parse_and_execute (119 samples, 0.03%)</title><rect x="36.0329%" y="245" width="0.0263%" height="15" fill="rgb(228,71,31)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="255.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="229" width="0.0263%" height="15" fill="rgb(252,184,16)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="239.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="213" width="0.0263%" height="15" fill="rgb(236,169,46)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="223.50"></text></g><g><title>[bash] (119 samples, 0.03%)</title><rect x="36.0329%" y="197" width="0.0263%" height="15" fill="rgb(207,17,47)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="207.50"></text></g><g><title>execute_command_internal (119 samples, 0.03%)</title><rect x="36.0329%" y="181" width="0.0263%" height="15" fill="rgb(206,201,28)" fg:x="162817" fg:w="119"/><text x="36.2829%" y="191.50"></text></g><g><title>[unknown] (294 samples, 0.07%)</title><rect x="35.9975%" y="821" width="0.0651%" height="15" fill="rgb(224,184,23)" fg:x="162657" fg:w="294"/><text x="36.2475%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.02%)</title><rect x="36.0813%" y="581" width="0.0153%" height="15" fill="rgb(208,139,48)" fg:x="163036" fg:w="69"/><text x="36.3313%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.01%)</title><rect x="36.0818%" y="565" width="0.0148%" height="15" fill="rgb(208,130,10)" fg:x="163038" fg:w="67"/><text x="36.3318%" y="575.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="36.0818%" y="549" width="0.0148%" height="15" fill="rgb(211,213,45)" fg:x="163038" fg:w="67"/><text x="36.3318%" y="559.50"></text></g><g><title>__libc_fork (88 samples, 0.02%)</title><rect x="36.0780%" y="661" width="0.0195%" height="15" fill="rgb(235,100,30)" fg:x="163021" fg:w="88"/><text x="36.3280%" y="671.50"></text></g><g><title>arch_fork (88 samples, 0.02%)</title><rect x="36.0780%" y="645" width="0.0195%" height="15" fill="rgb(206,144,31)" fg:x="163021" fg:w="88"/><text x="36.3280%" y="655.50"></text></g><g><title>ret_from_fork (81 samples, 0.02%)</title><rect x="36.0796%" y="629" width="0.0179%" height="15" fill="rgb(224,200,26)" fg:x="163028" fg:w="81"/><text x="36.3296%" y="639.50"></text></g><g><title>schedule_tail (81 samples, 0.02%)</title><rect x="36.0796%" y="613" width="0.0179%" height="15" fill="rgb(247,104,53)" fg:x="163028" fg:w="81"/><text x="36.3296%" y="623.50"></text></g><g><title>finish_task_switch (75 samples, 0.02%)</title><rect x="36.0809%" y="597" width="0.0166%" height="15" fill="rgb(220,14,17)" fg:x="163034" fg:w="75"/><text x="36.3309%" y="607.50"></text></g><g><title>make_child (95 samples, 0.02%)</title><rect x="36.0778%" y="677" width="0.0210%" height="15" fill="rgb(230,140,40)" fg:x="163020" fg:w="95"/><text x="36.3278%" y="687.50"></text></g><g><title>execute_command (156 samples, 0.03%)</title><rect x="36.0709%" y="709" width="0.0345%" height="15" fill="rgb(229,2,41)" fg:x="162989" fg:w="156"/><text x="36.3209%" y="719.50"></text></g><g><title>execute_command_internal (156 samples, 0.03%)</title><rect x="36.0709%" y="693" width="0.0345%" height="15" fill="rgb(232,89,16)" fg:x="162989" fg:w="156"/><text x="36.3209%" y="703.50"></text></g><g><title>[bash] (176 samples, 0.04%)</title><rect x="36.0703%" y="725" width="0.0390%" height="15" fill="rgb(247,59,52)" fg:x="162986" fg:w="176"/><text x="36.3203%" y="735.50"></text></g><g><title>copy_command (46 samples, 0.01%)</title><rect x="36.1116%" y="565" width="0.0102%" height="15" fill="rgb(226,110,21)" fg:x="163173" fg:w="46"/><text x="36.3616%" y="575.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="36.1116%" y="597" width="0.0104%" height="15" fill="rgb(224,176,43)" fg:x="163173" fg:w="47"/><text x="36.3616%" y="607.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="36.1116%" y="581" width="0.0104%" height="15" fill="rgb(221,73,6)" fg:x="163173" fg:w="47"/><text x="36.3616%" y="591.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="36.1112%" y="613" width="0.0113%" height="15" fill="rgb(232,78,19)" fg:x="163171" fg:w="51"/><text x="36.3612%" y="623.50"></text></g><g><title>copy_command (59 samples, 0.01%)</title><rect x="36.1097%" y="661" width="0.0131%" height="15" fill="rgb(233,112,48)" fg:x="163164" fg:w="59"/><text x="36.3597%" y="671.50"></text></g><g><title>copy_command (58 samples, 0.01%)</title><rect x="36.1099%" y="645" width="0.0128%" height="15" fill="rgb(243,131,47)" fg:x="163165" fg:w="58"/><text x="36.3599%" y="655.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="36.1101%" y="629" width="0.0126%" height="15" fill="rgb(226,51,1)" fg:x="163166" fg:w="57"/><text x="36.3601%" y="639.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="36.1094%" y="693" width="0.0135%" height="15" fill="rgb(247,58,7)" fg:x="163163" fg:w="61"/><text x="36.3594%" y="703.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="36.1097%" y="677" width="0.0133%" height="15" fill="rgb(209,7,32)" fg:x="163164" fg:w="60"/><text x="36.3597%" y="687.50"></text></g><g><title>copy_command (63 samples, 0.01%)</title><rect x="36.1094%" y="709" width="0.0139%" height="15" fill="rgb(209,39,41)" fg:x="163163" fg:w="63"/><text x="36.3594%" y="719.50"></text></g><g><title>bind_function (67 samples, 0.01%)</title><rect x="36.1092%" y="725" width="0.0148%" height="15" fill="rgb(226,182,46)" fg:x="163162" fg:w="67"/><text x="36.3592%" y="735.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="36.1254%" y="629" width="0.0104%" height="15" fill="rgb(230,219,10)" fg:x="163235" fg:w="47"/><text x="36.3754%" y="639.50"></text></g><g><title>copy_command (53 samples, 0.01%)</title><rect x="36.1245%" y="645" width="0.0117%" height="15" fill="rgb(227,175,30)" fg:x="163231" fg:w="53"/><text x="36.3745%" y="655.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="36.1240%" y="661" width="0.0124%" height="15" fill="rgb(217,2,50)" fg:x="163229" fg:w="56"/><text x="36.3740%" y="671.50"></text></g><g><title>copy_command (59 samples, 0.01%)</title><rect x="36.1240%" y="693" width="0.0131%" height="15" fill="rgb(229,160,0)" fg:x="163229" fg:w="59"/><text x="36.3740%" y="703.50"></text></g><g><title>copy_command (59 samples, 0.01%)</title><rect x="36.1240%" y="677" width="0.0131%" height="15" fill="rgb(207,78,37)" fg:x="163229" fg:w="59"/><text x="36.3740%" y="687.50"></text></g><g><title>copy_function_def_contents (60 samples, 0.01%)</title><rect x="36.1240%" y="725" width="0.0133%" height="15" fill="rgb(225,57,0)" fg:x="163229" fg:w="60"/><text x="36.3740%" y="735.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="36.1240%" y="709" width="0.0133%" height="15" fill="rgb(232,154,2)" fg:x="163229" fg:w="60"/><text x="36.3740%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.02%)</title><rect x="36.1464%" y="549" width="0.0170%" height="15" fill="rgb(241,212,25)" fg:x="163330" fg:w="77"/><text x="36.3964%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (76 samples, 0.02%)</title><rect x="36.1466%" y="533" width="0.0168%" height="15" fill="rgb(226,69,20)" fg:x="163331" fg:w="76"/><text x="36.3966%" y="543.50"></text></g><g><title>native_write_msr (75 samples, 0.02%)</title><rect x="36.1468%" y="517" width="0.0166%" height="15" fill="rgb(247,184,54)" fg:x="163332" fg:w="75"/><text x="36.3968%" y="527.50"></text></g><g><title>__libc_fork (96 samples, 0.02%)</title><rect x="36.1431%" y="629" width="0.0212%" height="15" fill="rgb(210,145,0)" fg:x="163315" fg:w="96"/><text x="36.3931%" y="639.50"></text></g><g><title>arch_fork (95 samples, 0.02%)</title><rect x="36.1433%" y="613" width="0.0210%" height="15" fill="rgb(253,82,12)" fg:x="163316" fg:w="95"/><text x="36.3933%" y="623.50"></text></g><g><title>ret_from_fork (91 samples, 0.02%)</title><rect x="36.1442%" y="597" width="0.0201%" height="15" fill="rgb(245,42,11)" fg:x="163320" fg:w="91"/><text x="36.3942%" y="607.50"></text></g><g><title>schedule_tail (90 samples, 0.02%)</title><rect x="36.1444%" y="581" width="0.0199%" height="15" fill="rgb(219,147,32)" fg:x="163321" fg:w="90"/><text x="36.3944%" y="591.50"></text></g><g><title>finish_task_switch (81 samples, 0.02%)</title><rect x="36.1464%" y="565" width="0.0179%" height="15" fill="rgb(246,12,7)" fg:x="163330" fg:w="81"/><text x="36.3964%" y="575.50"></text></g><g><title>make_child (106 samples, 0.02%)</title><rect x="36.1429%" y="645" width="0.0235%" height="15" fill="rgb(243,50,9)" fg:x="163314" fg:w="106"/><text x="36.3929%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="36.1727%" y="517" width="0.0124%" height="15" fill="rgb(219,149,6)" fg:x="163449" fg:w="56"/><text x="36.4227%" y="527.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (56 samples, 0.01%)</title><rect x="36.1727%" y="501" width="0.0124%" height="15" fill="rgb(241,51,42)" fg:x="163449" fg:w="56"/><text x="36.4227%" y="511.50"></text></g><g><title>native_write_msr (56 samples, 0.01%)</title><rect x="36.1727%" y="485" width="0.0124%" height="15" fill="rgb(226,128,27)" fg:x="163449" fg:w="56"/><text x="36.4227%" y="495.50"></text></g><g><title>__libc_fork (72 samples, 0.02%)</title><rect x="36.1694%" y="597" width="0.0159%" height="15" fill="rgb(244,144,4)" fg:x="163434" fg:w="72"/><text x="36.4194%" y="607.50"></text></g><g><title>arch_fork (72 samples, 0.02%)</title><rect x="36.1694%" y="581" width="0.0159%" height="15" fill="rgb(221,4,13)" fg:x="163434" fg:w="72"/><text x="36.4194%" y="591.50"></text></g><g><title>ret_from_fork (67 samples, 0.01%)</title><rect x="36.1705%" y="565" width="0.0148%" height="15" fill="rgb(208,170,28)" fg:x="163439" fg:w="67"/><text x="36.4205%" y="575.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="36.1705%" y="549" width="0.0148%" height="15" fill="rgb(226,131,13)" fg:x="163439" fg:w="67"/><text x="36.4205%" y="559.50"></text></g><g><title>finish_task_switch (59 samples, 0.01%)</title><rect x="36.1723%" y="533" width="0.0131%" height="15" fill="rgb(215,72,41)" fg:x="163447" fg:w="59"/><text x="36.4223%" y="543.50"></text></g><g><title>make_child (77 samples, 0.02%)</title><rect x="36.1690%" y="613" width="0.0170%" height="15" fill="rgb(243,108,20)" fg:x="163432" fg:w="77"/><text x="36.4190%" y="623.50"></text></g><g><title>execute_command_internal (121 samples, 0.03%)</title><rect x="36.1663%" y="629" width="0.0268%" height="15" fill="rgb(230,189,17)" fg:x="163420" fg:w="121"/><text x="36.4163%" y="639.50"></text></g><g><title>parse_and_execute (122 samples, 0.03%)</title><rect x="36.1663%" y="645" width="0.0270%" height="15" fill="rgb(220,50,17)" fg:x="163420" fg:w="122"/><text x="36.4163%" y="655.50"></text></g><g><title>expand_word_leave_quoted (279 samples, 0.06%)</title><rect x="36.1422%" y="693" width="0.0617%" height="15" fill="rgb(248,152,48)" fg:x="163311" fg:w="279"/><text x="36.3922%" y="703.50"></text></g><g><title>[bash] (279 samples, 0.06%)</title><rect x="36.1422%" y="677" width="0.0617%" height="15" fill="rgb(244,91,11)" fg:x="163311" fg:w="279"/><text x="36.3922%" y="687.50"></text></g><g><title>command_substitute (279 samples, 0.06%)</title><rect x="36.1422%" y="661" width="0.0617%" height="15" fill="rgb(220,157,5)" fg:x="163311" fg:w="279"/><text x="36.3922%" y="671.50"></text></g><g><title>zread (46 samples, 0.01%)</title><rect x="36.1938%" y="645" width="0.0102%" height="15" fill="rgb(253,137,8)" fg:x="163544" fg:w="46"/><text x="36.4438%" y="655.50"></text></g><g><title>execute_command (305 samples, 0.07%)</title><rect x="36.1375%" y="725" width="0.0675%" height="15" fill="rgb(217,137,51)" fg:x="163290" fg:w="305"/><text x="36.3875%" y="735.50"></text></g><g><title>execute_command_internal (304 samples, 0.07%)</title><rect x="36.1378%" y="709" width="0.0673%" height="15" fill="rgb(218,209,53)" fg:x="163291" fg:w="304"/><text x="36.3878%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (75 samples, 0.02%)</title><rect x="36.2117%" y="533" width="0.0166%" height="15" fill="rgb(249,137,25)" fg:x="163625" fg:w="75"/><text x="36.4617%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (74 samples, 0.02%)</title><rect x="36.2119%" y="517" width="0.0164%" height="15" fill="rgb(239,155,26)" fg:x="163626" fg:w="74"/><text x="36.4619%" y="527.50"></text></g><g><title>native_write_msr (73 samples, 0.02%)</title><rect x="36.2121%" y="501" width="0.0162%" height="15" fill="rgb(227,85,46)" fg:x="163627" fg:w="73"/><text x="36.4621%" y="511.50"></text></g><g><title>__libc_fork (94 samples, 0.02%)</title><rect x="36.2084%" y="613" width="0.0208%" height="15" fill="rgb(251,107,43)" fg:x="163610" fg:w="94"/><text x="36.4584%" y="623.50"></text></g><g><title>arch_fork (94 samples, 0.02%)</title><rect x="36.2084%" y="597" width="0.0208%" height="15" fill="rgb(234,170,33)" fg:x="163610" fg:w="94"/><text x="36.4584%" y="607.50"></text></g><g><title>ret_from_fork (89 samples, 0.02%)</title><rect x="36.2095%" y="581" width="0.0197%" height="15" fill="rgb(206,29,35)" fg:x="163615" fg:w="89"/><text x="36.4595%" y="591.50"></text></g><g><title>schedule_tail (89 samples, 0.02%)</title><rect x="36.2095%" y="565" width="0.0197%" height="15" fill="rgb(227,138,25)" fg:x="163615" fg:w="89"/><text x="36.4595%" y="575.50"></text></g><g><title>finish_task_switch (82 samples, 0.02%)</title><rect x="36.2110%" y="549" width="0.0181%" height="15" fill="rgb(249,131,35)" fg:x="163622" fg:w="82"/><text x="36.4610%" y="559.50"></text></g><g><title>make_child (102 samples, 0.02%)</title><rect x="36.2081%" y="629" width="0.0226%" height="15" fill="rgb(239,6,40)" fg:x="163609" fg:w="102"/><text x="36.4581%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (144 samples, 0.03%)</title><rect x="36.2471%" y="453" width="0.0319%" height="15" fill="rgb(246,136,47)" fg:x="163785" fg:w="144"/><text x="36.4971%" y="463.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (143 samples, 0.03%)</title><rect x="36.2473%" y="437" width="0.0316%" height="15" fill="rgb(253,58,26)" fg:x="163786" fg:w="143"/><text x="36.4973%" y="447.50"></text></g><g><title>native_write_msr (143 samples, 0.03%)</title><rect x="36.2473%" y="421" width="0.0316%" height="15" fill="rgb(237,141,10)" fg:x="163786" fg:w="143"/><text x="36.4973%" y="431.50"></text></g><g><title>arch_fork (179 samples, 0.04%)</title><rect x="36.2418%" y="517" width="0.0396%" height="15" fill="rgb(234,156,12)" fg:x="163761" fg:w="179"/><text x="36.4918%" y="527.50"></text></g><g><title>ret_from_fork (167 samples, 0.04%)</title><rect x="36.2444%" y="501" width="0.0370%" height="15" fill="rgb(243,224,36)" fg:x="163773" fg:w="167"/><text x="36.4944%" y="511.50"></text></g><g><title>schedule_tail (167 samples, 0.04%)</title><rect x="36.2444%" y="485" width="0.0370%" height="15" fill="rgb(205,229,51)" fg:x="163773" fg:w="167"/><text x="36.4944%" y="495.50"></text></g><g><title>finish_task_switch (156 samples, 0.03%)</title><rect x="36.2469%" y="469" width="0.0345%" height="15" fill="rgb(223,189,4)" fg:x="163784" fg:w="156"/><text x="36.4969%" y="479.50"></text></g><g><title>__libc_fork (182 samples, 0.04%)</title><rect x="36.2416%" y="533" width="0.0403%" height="15" fill="rgb(249,167,54)" fg:x="163760" fg:w="182"/><text x="36.4916%" y="543.50"></text></g><g><title>make_child (191 samples, 0.04%)</title><rect x="36.2413%" y="549" width="0.0423%" height="15" fill="rgb(218,34,28)" fg:x="163759" fg:w="191"/><text x="36.4913%" y="559.50"></text></g><g><title>execute_command_internal (248 samples, 0.05%)</title><rect x="36.2309%" y="613" width="0.0549%" height="15" fill="rgb(232,109,42)" fg:x="163712" fg:w="248"/><text x="36.4809%" y="623.50"></text></g><g><title>[bash] (247 samples, 0.05%)</title><rect x="36.2312%" y="597" width="0.0547%" height="15" fill="rgb(248,214,46)" fg:x="163713" fg:w="247"/><text x="36.4812%" y="607.50"></text></g><g><title>[bash] (247 samples, 0.05%)</title><rect x="36.2312%" y="581" width="0.0547%" height="15" fill="rgb(244,216,40)" fg:x="163713" fg:w="247"/><text x="36.4812%" y="591.50"></text></g><g><title>execute_command_internal (246 samples, 0.05%)</title><rect x="36.2314%" y="565" width="0.0544%" height="15" fill="rgb(231,226,31)" fg:x="163714" fg:w="246"/><text x="36.4814%" y="575.50"></text></g><g><title>parse_and_execute (250 samples, 0.06%)</title><rect x="36.2307%" y="629" width="0.0553%" height="15" fill="rgb(238,38,43)" fg:x="163711" fg:w="250"/><text x="36.4807%" y="639.50"></text></g><g><title>command_substitute (374 samples, 0.08%)</title><rect x="36.2070%" y="645" width="0.0828%" height="15" fill="rgb(208,88,43)" fg:x="163604" fg:w="374"/><text x="36.4570%" y="655.50"></text></g><g><title>[bash] (380 samples, 0.08%)</title><rect x="36.2061%" y="661" width="0.0841%" height="15" fill="rgb(205,136,37)" fg:x="163600" fg:w="380"/><text x="36.4561%" y="671.50"></text></g><g><title>[bash] (384 samples, 0.08%)</title><rect x="36.2059%" y="677" width="0.0850%" height="15" fill="rgb(237,34,14)" fg:x="163599" fg:w="384"/><text x="36.4559%" y="687.50"></text></g><g><title>[bash] (394 samples, 0.09%)</title><rect x="36.2050%" y="693" width="0.0872%" height="15" fill="rgb(236,193,44)" fg:x="163595" fg:w="394"/><text x="36.4550%" y="703.50"></text></g><g><title>expand_words (396 samples, 0.09%)</title><rect x="36.2050%" y="725" width="0.0876%" height="15" fill="rgb(231,48,10)" fg:x="163595" fg:w="396"/><text x="36.4550%" y="735.50"></text></g><g><title>[bash] (396 samples, 0.09%)</title><rect x="36.2050%" y="709" width="0.0876%" height="15" fill="rgb(213,141,34)" fg:x="163595" fg:w="396"/><text x="36.4550%" y="719.50"></text></g><g><title>execute_command_internal (1,008 samples, 0.22%)</title><rect x="36.0698%" y="741" width="0.2231%" height="15" fill="rgb(249,130,34)" fg:x="162984" fg:w="1008"/><text x="36.3198%" y="751.50"></text></g><g><title>execute_command (1,010 samples, 0.22%)</title><rect x="36.0696%" y="757" width="0.2235%" height="15" fill="rgb(219,42,41)" fg:x="162983" fg:w="1010"/><text x="36.3196%" y="767.50"></text></g><g><title>[bash] (190 samples, 0.04%)</title><rect x="36.3232%" y="693" width="0.0420%" height="15" fill="rgb(224,100,54)" fg:x="164129" fg:w="190"/><text x="36.5732%" y="703.50"></text></g><g><title>[bash] (346 samples, 0.08%)</title><rect x="36.3042%" y="709" width="0.0766%" height="15" fill="rgb(229,200,27)" fg:x="164043" fg:w="346"/><text x="36.5542%" y="719.50"></text></g><g><title>reader_loop (1,463 samples, 0.32%)</title><rect x="36.0641%" y="773" width="0.3238%" height="15" fill="rgb(217,118,10)" fg:x="162958" fg:w="1463"/><text x="36.3141%" y="783.50"></text></g><g><title>read_command (428 samples, 0.09%)</title><rect x="36.2931%" y="757" width="0.0947%" height="15" fill="rgb(206,22,3)" fg:x="163993" fg:w="428"/><text x="36.5431%" y="767.50"></text></g><g><title>parse_command (428 samples, 0.09%)</title><rect x="36.2931%" y="741" width="0.0947%" height="15" fill="rgb(232,163,46)" fg:x="163993" fg:w="428"/><text x="36.5431%" y="751.50"></text></g><g><title>yyparse (427 samples, 0.09%)</title><rect x="36.2933%" y="725" width="0.0945%" height="15" fill="rgb(206,95,13)" fg:x="163994" fg:w="427"/><text x="36.5433%" y="735.50"></text></g><g><title>__libc_start_main (1,473 samples, 0.33%)</title><rect x="36.0632%" y="805" width="0.3260%" height="15" fill="rgb(253,154,18)" fg:x="162954" fg:w="1473"/><text x="36.3132%" y="815.50"></text></g><g><title>main (1,473 samples, 0.33%)</title><rect x="36.0632%" y="789" width="0.3260%" height="15" fill="rgb(219,32,23)" fg:x="162954" fg:w="1473"/><text x="36.3132%" y="799.50"></text></g><g><title>_start (1,484 samples, 0.33%)</title><rect x="36.0632%" y="821" width="0.3284%" height="15" fill="rgb(230,191,45)" fg:x="162954" fg:w="1484"/><text x="36.3132%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.01%)</title><rect x="36.3987%" y="821" width="0.0102%" height="15" fill="rgb(229,64,36)" fg:x="164470" fg:w="46"/><text x="36.6487%" y="831.50"></text></g><g><title>do_syscall_64 (46 samples, 0.01%)</title><rect x="36.3987%" y="805" width="0.0102%" height="15" fill="rgb(205,129,25)" fg:x="164470" fg:w="46"/><text x="36.6487%" y="815.50"></text></g><g><title>libtool (1,920 samples, 0.42%)</title><rect x="35.9857%" y="837" width="0.4249%" height="15" fill="rgb(254,112,7)" fg:x="162604" fg:w="1920"/><text x="36.2357%" y="847.50"></text></g><g><title>create_new_namespaces (46 samples, 0.01%)</title><rect x="36.4266%" y="677" width="0.0102%" height="15" fill="rgb(226,53,48)" fg:x="164596" fg:w="46"/><text x="36.6766%" y="687.50"></text></g><g><title>copy_namespaces (48 samples, 0.01%)</title><rect x="36.4266%" y="693" width="0.0106%" height="15" fill="rgb(214,153,38)" fg:x="164596" fg:w="48"/><text x="36.6766%" y="703.50"></text></g><g><title>dup_mm (47 samples, 0.01%)</title><rect x="36.4376%" y="693" width="0.0104%" height="15" fill="rgb(243,101,7)" fg:x="164646" fg:w="47"/><text x="36.6876%" y="703.50"></text></g><g><title>copy_process (126 samples, 0.03%)</title><rect x="36.4224%" y="709" width="0.0279%" height="15" fill="rgb(240,140,22)" fg:x="164577" fg:w="126"/><text x="36.6724%" y="719.50"></text></g><g><title>__libc_start_main (128 samples, 0.03%)</title><rect x="36.4224%" y="805" width="0.0283%" height="15" fill="rgb(235,114,2)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="815.50"></text></g><g><title>__GI___clone (128 samples, 0.03%)</title><rect x="36.4224%" y="789" width="0.0283%" height="15" fill="rgb(242,59,12)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (128 samples, 0.03%)</title><rect x="36.4224%" y="773" width="0.0283%" height="15" fill="rgb(252,134,9)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="783.50"></text></g><g><title>do_syscall_64 (128 samples, 0.03%)</title><rect x="36.4224%" y="757" width="0.0283%" height="15" fill="rgb(236,4,44)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="767.50"></text></g><g><title>__do_sys_clone (128 samples, 0.03%)</title><rect x="36.4224%" y="741" width="0.0283%" height="15" fill="rgb(254,172,41)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="751.50"></text></g><g><title>kernel_clone (128 samples, 0.03%)</title><rect x="36.4224%" y="725" width="0.0283%" height="15" fill="rgb(244,63,20)" fg:x="164577" fg:w="128"/><text x="36.6724%" y="735.50"></text></g><g><title>[unknown] (148 samples, 0.03%)</title><rect x="36.4206%" y="821" width="0.0328%" height="15" fill="rgb(250,73,31)" fg:x="164569" fg:w="148"/><text x="36.6706%" y="831.50"></text></g><g><title>__GI___getmntent_r (63 samples, 0.01%)</title><rect x="36.4699%" y="789" width="0.0139%" height="15" fill="rgb(241,38,36)" fg:x="164792" fg:w="63"/><text x="36.7199%" y="799.50"></text></g><g><title>get_mnt_entry (63 samples, 0.01%)</title><rect x="36.4699%" y="773" width="0.0139%" height="15" fill="rgb(245,211,2)" fg:x="164792" fg:w="63"/><text x="36.7199%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (349 samples, 0.08%)</title><rect x="36.4956%" y="661" width="0.0772%" height="15" fill="rgb(206,120,28)" fg:x="164908" fg:w="349"/><text x="36.7456%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (348 samples, 0.08%)</title><rect x="36.4958%" y="645" width="0.0770%" height="15" fill="rgb(211,59,34)" fg:x="164909" fg:w="348"/><text x="36.7458%" y="655.50"></text></g><g><title>native_write_msr (346 samples, 0.08%)</title><rect x="36.4963%" y="629" width="0.0766%" height="15" fill="rgb(233,168,5)" fg:x="164911" fg:w="346"/><text x="36.7463%" y="639.50"></text></g><g><title>finish_task_switch (374 samples, 0.08%)</title><rect x="36.4925%" y="677" width="0.0828%" height="15" fill="rgb(234,33,13)" fg:x="164894" fg:w="374"/><text x="36.7425%" y="687.50"></text></g><g><title>schedule (382 samples, 0.08%)</title><rect x="36.4919%" y="709" width="0.0845%" height="15" fill="rgb(231,150,26)" fg:x="164891" fg:w="382"/><text x="36.7419%" y="719.50"></text></g><g><title>__schedule (382 samples, 0.08%)</title><rect x="36.4919%" y="693" width="0.0845%" height="15" fill="rgb(217,191,4)" fg:x="164891" fg:w="382"/><text x="36.7419%" y="703.50"></text></g><g><title>__GI___wait4 (431 samples, 0.10%)</title><rect x="36.4905%" y="789" width="0.0954%" height="15" fill="rgb(246,198,38)" fg:x="164885" fg:w="431"/><text x="36.7405%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (429 samples, 0.09%)</title><rect x="36.4910%" y="773" width="0.0949%" height="15" fill="rgb(245,64,37)" fg:x="164887" fg:w="429"/><text x="36.7410%" y="783.50"></text></g><g><title>do_syscall_64 (429 samples, 0.09%)</title><rect x="36.4910%" y="757" width="0.0949%" height="15" fill="rgb(250,30,36)" fg:x="164887" fg:w="429"/><text x="36.7410%" y="767.50"></text></g><g><title>kernel_wait4 (428 samples, 0.09%)</title><rect x="36.4912%" y="741" width="0.0947%" height="15" fill="rgb(217,86,53)" fg:x="164888" fg:w="428"/><text x="36.7412%" y="751.50"></text></g><g><title>do_wait (427 samples, 0.09%)</title><rect x="36.4914%" y="725" width="0.0945%" height="15" fill="rgb(228,157,16)" fg:x="164889" fg:w="427"/><text x="36.7414%" y="735.50"></text></g><g><title>bprm_execve (59 samples, 0.01%)</title><rect x="36.5926%" y="693" width="0.0131%" height="15" fill="rgb(217,59,31)" fg:x="165346" fg:w="59"/><text x="36.8426%" y="703.50"></text></g><g><title>do_execveat_common (66 samples, 0.01%)</title><rect x="36.5921%" y="709" width="0.0146%" height="15" fill="rgb(237,138,41)" fg:x="165344" fg:w="66"/><text x="36.8421%" y="719.50"></text></g><g><title>__execvpe_common (72 samples, 0.02%)</title><rect x="36.5910%" y="789" width="0.0159%" height="15" fill="rgb(227,91,49)" fg:x="165339" fg:w="72"/><text x="36.8410%" y="799.50"></text></g><g><title>__GI_execve (67 samples, 0.01%)</title><rect x="36.5921%" y="773" width="0.0148%" height="15" fill="rgb(247,21,44)" fg:x="165344" fg:w="67"/><text x="36.8421%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="36.5921%" y="757" width="0.0148%" height="15" fill="rgb(219,210,51)" fg:x="165344" fg:w="67"/><text x="36.8421%" y="767.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="36.5921%" y="741" width="0.0148%" height="15" fill="rgb(209,140,6)" fg:x="165344" fg:w="67"/><text x="36.8421%" y="751.50"></text></g><g><title>__x64_sys_execve (67 samples, 0.01%)</title><rect x="36.5921%" y="725" width="0.0148%" height="15" fill="rgb(221,188,24)" fg:x="165344" fg:w="67"/><text x="36.8421%" y="735.50"></text></g><g><title>copy_process (60 samples, 0.01%)</title><rect x="36.6107%" y="693" width="0.0133%" height="15" fill="rgb(232,154,20)" fg:x="165428" fg:w="60"/><text x="36.8607%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="36.6105%" y="757" width="0.0139%" height="15" fill="rgb(244,137,50)" fg:x="165427" fg:w="63"/><text x="36.8605%" y="767.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="36.6105%" y="741" width="0.0139%" height="15" fill="rgb(225,185,43)" fg:x="165427" fg:w="63"/><text x="36.8605%" y="751.50"></text></g><g><title>__do_sys_clone (63 samples, 0.01%)</title><rect x="36.6105%" y="725" width="0.0139%" height="15" fill="rgb(213,205,38)" fg:x="165427" fg:w="63"/><text x="36.8605%" y="735.50"></text></g><g><title>kernel_clone (63 samples, 0.01%)</title><rect x="36.6105%" y="709" width="0.0139%" height="15" fill="rgb(236,73,12)" fg:x="165427" fg:w="63"/><text x="36.8605%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (283 samples, 0.06%)</title><rect x="36.6319%" y="709" width="0.0626%" height="15" fill="rgb(235,219,13)" fg:x="165524" fg:w="283"/><text x="36.8819%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (281 samples, 0.06%)</title><rect x="36.6324%" y="693" width="0.0622%" height="15" fill="rgb(218,59,36)" fg:x="165526" fg:w="281"/><text x="36.8824%" y="703.50"></text></g><g><title>native_write_msr (279 samples, 0.06%)</title><rect x="36.6328%" y="677" width="0.0617%" height="15" fill="rgb(205,110,39)" fg:x="165528" fg:w="279"/><text x="36.8828%" y="687.50"></text></g><g><title>arch_fork (402 samples, 0.09%)</title><rect x="36.6078%" y="773" width="0.0890%" height="15" fill="rgb(218,206,42)" fg:x="165415" fg:w="402"/><text x="36.8578%" y="783.50"></text></g><g><title>ret_from_fork (326 samples, 0.07%)</title><rect x="36.6246%" y="757" width="0.0721%" height="15" fill="rgb(248,125,24)" fg:x="165491" fg:w="326"/><text x="36.8746%" y="767.50"></text></g><g><title>schedule_tail (326 samples, 0.07%)</title><rect x="36.6246%" y="741" width="0.0721%" height="15" fill="rgb(242,28,27)" fg:x="165491" fg:w="326"/><text x="36.8746%" y="751.50"></text></g><g><title>finish_task_switch (296 samples, 0.07%)</title><rect x="36.6313%" y="725" width="0.0655%" height="15" fill="rgb(216,228,15)" fg:x="165521" fg:w="296"/><text x="36.8813%" y="735.50"></text></g><g><title>__libc_fork (414 samples, 0.09%)</title><rect x="36.6069%" y="789" width="0.0916%" height="15" fill="rgb(235,116,46)" fg:x="165411" fg:w="414"/><text x="36.8569%" y="799.50"></text></g><g><title>path_mount (46 samples, 0.01%)</title><rect x="36.7085%" y="725" width="0.0102%" height="15" fill="rgb(224,18,32)" fg:x="165870" fg:w="46"/><text x="36.9585%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="36.7012%" y="773" width="0.0186%" height="15" fill="rgb(252,5,12)" fg:x="165837" fg:w="84"/><text x="36.9512%" y="783.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="36.7012%" y="757" width="0.0186%" height="15" fill="rgb(251,36,5)" fg:x="165837" fg:w="84"/><text x="36.9512%" y="767.50"></text></g><g><title>__x64_sys_mount (84 samples, 0.02%)</title><rect x="36.7012%" y="741" width="0.0186%" height="15" fill="rgb(217,53,14)" fg:x="165837" fg:w="84"/><text x="36.9512%" y="751.50"></text></g><g><title>__mount (85 samples, 0.02%)</title><rect x="36.7012%" y="789" width="0.0188%" height="15" fill="rgb(215,86,45)" fg:x="165837" fg:w="85"/><text x="36.9512%" y="799.50"></text></g><g><title>Pid1Main (1,266 samples, 0.28%)</title><rect x="36.4538%" y="805" width="0.2802%" height="15" fill="rgb(242,169,11)" fg:x="164719" fg:w="1266"/><text x="36.7038%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (235 samples, 0.05%)</title><rect x="36.7395%" y="757" width="0.0520%" height="15" fill="rgb(211,213,45)" fg:x="166010" fg:w="235"/><text x="36.9895%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (231 samples, 0.05%)</title><rect x="36.7404%" y="741" width="0.0511%" height="15" fill="rgb(205,88,11)" fg:x="166014" fg:w="231"/><text x="36.9904%" y="751.50"></text></g><g><title>native_write_msr (230 samples, 0.05%)</title><rect x="36.7406%" y="725" width="0.0509%" height="15" fill="rgb(252,69,26)" fg:x="166015" fg:w="230"/><text x="36.9906%" y="735.50"></text></g><g><title>schedule_tail (252 samples, 0.06%)</title><rect x="36.7386%" y="789" width="0.0558%" height="15" fill="rgb(246,123,37)" fg:x="166006" fg:w="252"/><text x="36.9886%" y="799.50"></text></g><g><title>finish_task_switch (251 samples, 0.06%)</title><rect x="36.7388%" y="773" width="0.0555%" height="15" fill="rgb(212,205,5)" fg:x="166007" fg:w="251"/><text x="36.9888%" y="783.50"></text></g><g><title>__GI___clone (1,543 samples, 0.34%)</title><rect x="36.4533%" y="821" width="0.3415%" height="15" fill="rgb(253,148,0)" fg:x="164717" fg:w="1543"/><text x="36.7033%" y="831.50"></text></g><g><title>ret_from_fork (255 samples, 0.06%)</title><rect x="36.7384%" y="805" width="0.0564%" height="15" fill="rgb(239,22,4)" fg:x="166005" fg:w="255"/><text x="36.9884%" y="815.50"></text></g><g><title>get_page_from_freelist (47 samples, 0.01%)</title><rect x="36.8409%" y="661" width="0.0104%" height="15" fill="rgb(226,26,53)" fg:x="166468" fg:w="47"/><text x="37.0909%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (55 samples, 0.01%)</title><rect x="36.8393%" y="677" width="0.0122%" height="15" fill="rgb(225,229,45)" fg:x="166461" fg:w="55"/><text x="37.0893%" y="687.50"></text></g><g><title>alloc_pages_vma (57 samples, 0.01%)</title><rect x="36.8391%" y="693" width="0.0126%" height="15" fill="rgb(220,60,37)" fg:x="166460" fg:w="57"/><text x="37.0891%" y="703.50"></text></g><g><title>do_user_addr_fault (131 samples, 0.03%)</title><rect x="36.8338%" y="725" width="0.0290%" height="15" fill="rgb(217,180,35)" fg:x="166436" fg:w="131"/><text x="37.0838%" y="735.50"></text></g><g><title>handle_mm_fault (124 samples, 0.03%)</title><rect x="36.8353%" y="709" width="0.0274%" height="15" fill="rgb(229,7,53)" fg:x="166443" fg:w="124"/><text x="37.0853%" y="719.50"></text></g><g><title>exc_page_fault (133 samples, 0.03%)</title><rect x="36.8336%" y="741" width="0.0294%" height="15" fill="rgb(254,137,3)" fg:x="166435" fg:w="133"/><text x="37.0836%" y="751.50"></text></g><g><title>asm_exc_page_fault (137 samples, 0.03%)</title><rect x="36.8333%" y="757" width="0.0303%" height="15" fill="rgb(215,140,41)" fg:x="166434" fg:w="137"/><text x="37.0833%" y="767.50"></text></g><g><title>[libc-2.31.so] (169 samples, 0.04%)</title><rect x="36.8300%" y="773" width="0.0374%" height="15" fill="rgb(250,80,15)" fg:x="166419" fg:w="169"/><text x="37.0800%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (357 samples, 0.08%)</title><rect x="36.8718%" y="629" width="0.0790%" height="15" fill="rgb(252,191,6)" fg:x="166608" fg:w="357"/><text x="37.1218%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (354 samples, 0.08%)</title><rect x="36.8725%" y="613" width="0.0783%" height="15" fill="rgb(246,217,18)" fg:x="166611" fg:w="354"/><text x="37.1225%" y="623.50"></text></g><g><title>native_write_msr (351 samples, 0.08%)</title><rect x="36.8732%" y="597" width="0.0777%" height="15" fill="rgb(223,93,7)" fg:x="166614" fg:w="351"/><text x="37.1232%" y="607.50"></text></g><g><title>finish_task_switch (390 samples, 0.09%)</title><rect x="36.8701%" y="645" width="0.0863%" height="15" fill="rgb(225,55,52)" fg:x="166600" fg:w="390"/><text x="37.1201%" y="655.50"></text></g><g><title>schedule (391 samples, 0.09%)</title><rect x="36.8701%" y="677" width="0.0865%" height="15" fill="rgb(240,31,24)" fg:x="166600" fg:w="391"/><text x="37.1201%" y="687.50"></text></g><g><title>__schedule (391 samples, 0.09%)</title><rect x="36.8701%" y="661" width="0.0865%" height="15" fill="rgb(205,56,52)" fg:x="166600" fg:w="391"/><text x="37.1201%" y="671.50"></text></g><g><title>do_syscall_64 (439 samples, 0.10%)</title><rect x="36.8694%" y="741" width="0.0972%" height="15" fill="rgb(246,146,12)" fg:x="166597" fg:w="439"/><text x="37.1194%" y="751.50"></text></g><g><title>__do_sys_wait4 (439 samples, 0.10%)</title><rect x="36.8694%" y="725" width="0.0972%" height="15" fill="rgb(239,84,36)" fg:x="166597" fg:w="439"/><text x="37.1194%" y="735.50"></text></g><g><title>kernel_wait4 (439 samples, 0.10%)</title><rect x="36.8694%" y="709" width="0.0972%" height="15" fill="rgb(207,41,40)" fg:x="166597" fg:w="439"/><text x="37.1194%" y="719.50"></text></g><g><title>do_wait (437 samples, 0.10%)</title><rect x="36.8699%" y="693" width="0.0967%" height="15" fill="rgb(241,179,25)" fg:x="166599" fg:w="437"/><text x="37.1199%" y="703.50"></text></g><g><title>__GI___wait4 (441 samples, 0.10%)</title><rect x="36.8692%" y="773" width="0.0976%" height="15" fill="rgb(210,0,34)" fg:x="166596" fg:w="441"/><text x="37.1192%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (440 samples, 0.10%)</title><rect x="36.8694%" y="757" width="0.0974%" height="15" fill="rgb(225,217,29)" fg:x="166597" fg:w="440"/><text x="37.1194%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.02%)</title><rect x="36.9745%" y="613" width="0.0157%" height="15" fill="rgb(216,191,38)" fg:x="167072" fg:w="71"/><text x="37.2245%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.02%)</title><rect x="36.9748%" y="597" width="0.0155%" height="15" fill="rgb(232,140,52)" fg:x="167073" fg:w="70"/><text x="37.2248%" y="607.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="36.9748%" y="581" width="0.0155%" height="15" fill="rgb(223,158,51)" fg:x="167073" fg:w="70"/><text x="37.2248%" y="591.50"></text></g><g><title>finish_task_switch (74 samples, 0.02%)</title><rect x="36.9743%" y="629" width="0.0164%" height="15" fill="rgb(235,29,51)" fg:x="167071" fg:w="74"/><text x="37.2243%" y="639.50"></text></g><g><title>__libc_read (83 samples, 0.02%)</title><rect x="36.9725%" y="773" width="0.0184%" height="15" fill="rgb(215,181,18)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="36.9725%" y="757" width="0.0184%" height="15" fill="rgb(227,125,34)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="767.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="36.9725%" y="741" width="0.0184%" height="15" fill="rgb(230,197,49)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="751.50"></text></g><g><title>ksys_read (83 samples, 0.02%)</title><rect x="36.9725%" y="725" width="0.0184%" height="15" fill="rgb(239,141,16)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="735.50"></text></g><g><title>vfs_read (83 samples, 0.02%)</title><rect x="36.9725%" y="709" width="0.0184%" height="15" fill="rgb(225,105,43)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="719.50"></text></g><g><title>new_sync_read (83 samples, 0.02%)</title><rect x="36.9725%" y="693" width="0.0184%" height="15" fill="rgb(214,131,14)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="703.50"></text></g><g><title>pipe_read (83 samples, 0.02%)</title><rect x="36.9725%" y="677" width="0.0184%" height="15" fill="rgb(229,177,11)" fg:x="167063" fg:w="83"/><text x="37.2225%" y="687.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="36.9741%" y="661" width="0.0168%" height="15" fill="rgb(231,180,14)" fg:x="167070" fg:w="76"/><text x="37.2241%" y="671.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="36.9741%" y="645" width="0.0168%" height="15" fill="rgb(232,88,2)" fg:x="167070" fg:w="76"/><text x="37.2241%" y="655.50"></text></g><g><title>__libc_start_main (854 samples, 0.19%)</title><rect x="36.8068%" y="805" width="0.1890%" height="15" fill="rgb(205,220,8)" fg:x="166314" fg:w="854"/><text x="37.0568%" y="815.50"></text></g><g><title>main (766 samples, 0.17%)</title><rect x="36.8263%" y="789" width="0.1695%" height="15" fill="rgb(225,23,53)" fg:x="166402" fg:w="766"/><text x="37.0763%" y="799.50"></text></g><g><title>ksys_mmap_pgoff (78 samples, 0.02%)</title><rect x="37.0060%" y="581" width="0.0173%" height="15" fill="rgb(213,62,29)" fg:x="167214" fg:w="78"/><text x="37.2560%" y="591.50"></text></g><g><title>vm_mmap_pgoff (78 samples, 0.02%)</title><rect x="37.0060%" y="565" width="0.0173%" height="15" fill="rgb(227,75,7)" fg:x="167214" fg:w="78"/><text x="37.2560%" y="575.50"></text></g><g><title>do_mmap (76 samples, 0.02%)</title><rect x="37.0064%" y="549" width="0.0168%" height="15" fill="rgb(207,105,14)" fg:x="167216" fg:w="76"/><text x="37.2564%" y="559.50"></text></g><g><title>mmap_region (75 samples, 0.02%)</title><rect x="37.0066%" y="533" width="0.0166%" height="15" fill="rgb(245,62,29)" fg:x="167217" fg:w="75"/><text x="37.2566%" y="543.50"></text></g><g><title>_dl_map_segments (99 samples, 0.02%)</title><rect x="37.0022%" y="661" width="0.0219%" height="15" fill="rgb(236,202,4)" fg:x="167197" fg:w="99"/><text x="37.2522%" y="671.50"></text></g><g><title>__mmap64 (83 samples, 0.02%)</title><rect x="37.0057%" y="645" width="0.0184%" height="15" fill="rgb(250,67,1)" fg:x="167213" fg:w="83"/><text x="37.2557%" y="655.50"></text></g><g><title>__mmap64 (83 samples, 0.02%)</title><rect x="37.0057%" y="629" width="0.0184%" height="15" fill="rgb(253,115,44)" fg:x="167213" fg:w="83"/><text x="37.2557%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="37.0057%" y="613" width="0.0184%" height="15" fill="rgb(251,139,18)" fg:x="167213" fg:w="83"/><text x="37.2557%" y="623.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="37.0057%" y="597" width="0.0184%" height="15" fill="rgb(218,22,32)" fg:x="167213" fg:w="83"/><text x="37.2557%" y="607.50"></text></g><g><title>_dl_map_object_from_fd (117 samples, 0.03%)</title><rect x="37.0006%" y="677" width="0.0259%" height="15" fill="rgb(243,53,5)" fg:x="167190" fg:w="117"/><text x="37.2506%" y="687.50"></text></g><g><title>_dl_catch_exception (149 samples, 0.03%)</title><rect x="36.9982%" y="725" width="0.0330%" height="15" fill="rgb(227,56,16)" fg:x="167179" fg:w="149"/><text x="37.2482%" y="735.50"></text></g><g><title>openaux (149 samples, 0.03%)</title><rect x="36.9982%" y="709" width="0.0330%" height="15" fill="rgb(245,53,0)" fg:x="167179" fg:w="149"/><text x="37.2482%" y="719.50"></text></g><g><title>_dl_map_object (149 samples, 0.03%)</title><rect x="36.9982%" y="693" width="0.0330%" height="15" fill="rgb(216,170,35)" fg:x="167179" fg:w="149"/><text x="37.2482%" y="703.50"></text></g><g><title>_dl_map_object_deps (160 samples, 0.04%)</title><rect x="36.9975%" y="741" width="0.0354%" height="15" fill="rgb(211,200,8)" fg:x="167176" fg:w="160"/><text x="37.2475%" y="751.50"></text></g><g><title>dl_new_hash (92 samples, 0.02%)</title><rect x="37.0650%" y="677" width="0.0204%" height="15" fill="rgb(228,204,44)" fg:x="167481" fg:w="92"/><text x="37.3150%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (318 samples, 0.07%)</title><rect x="37.0611%" y="693" width="0.0704%" height="15" fill="rgb(214,121,17)" fg:x="167463" fg:w="318"/><text x="37.3111%" y="703.50"></text></g><g><title>do_lookup_x (208 samples, 0.05%)</title><rect x="37.0854%" y="677" width="0.0460%" height="15" fill="rgb(233,64,38)" fg:x="167573" fg:w="208"/><text x="37.3354%" y="687.50"></text></g><g><title>elf_machine_rela (384 samples, 0.08%)</title><rect x="37.0469%" y="709" width="0.0850%" height="15" fill="rgb(253,54,19)" fg:x="167399" fg:w="384"/><text x="37.2969%" y="719.50"></text></g><g><title>elf_dynamic_do_Rela (436 samples, 0.10%)</title><rect x="37.0396%" y="725" width="0.0965%" height="15" fill="rgb(253,94,18)" fg:x="167366" fg:w="436"/><text x="37.2896%" y="735.50"></text></g><g><title>_dl_relocate_object (459 samples, 0.10%)</title><rect x="37.0352%" y="741" width="0.1016%" height="15" fill="rgb(227,57,52)" fg:x="167346" fg:w="459"/><text x="37.2852%" y="751.50"></text></g><g><title>[ld-2.31.so] (649 samples, 0.14%)</title><rect x="36.9962%" y="757" width="0.1436%" height="15" fill="rgb(230,228,50)" fg:x="167170" fg:w="649"/><text x="37.2462%" y="767.50"></text></g><g><title>_dl_start_final (657 samples, 0.15%)</title><rect x="36.9958%" y="789" width="0.1454%" height="15" fill="rgb(217,205,27)" fg:x="167168" fg:w="657"/><text x="37.2458%" y="799.50"></text></g><g><title>_dl_sysdep_start (656 samples, 0.15%)</title><rect x="36.9960%" y="773" width="0.1452%" height="15" fill="rgb(252,71,50)" fg:x="167169" fg:w="656"/><text x="37.2460%" y="783.50"></text></g><g><title>_dl_start (662 samples, 0.15%)</title><rect x="36.9958%" y="805" width="0.1465%" height="15" fill="rgb(209,86,4)" fg:x="167168" fg:w="662"/><text x="37.2458%" y="815.50"></text></g><g><title>_start (1,529 samples, 0.34%)</title><rect x="36.8068%" y="821" width="0.3384%" height="15" fill="rgb(229,94,0)" fg:x="166314" fg:w="1529"/><text x="37.0568%" y="831.50"></text></g><g><title>asm_exc_page_fault (130 samples, 0.03%)</title><rect x="37.1452%" y="821" width="0.0288%" height="15" fill="rgb(252,223,21)" fg:x="167843" fg:w="130"/><text x="37.3952%" y="831.50"></text></g><g><title>begin_new_exec (59 samples, 0.01%)</title><rect x="37.1757%" y="725" width="0.0131%" height="15" fill="rgb(230,210,4)" fg:x="167981" fg:w="59"/><text x="37.4257%" y="735.50"></text></g><g><title>mmput (58 samples, 0.01%)</title><rect x="37.1759%" y="709" width="0.0128%" height="15" fill="rgb(240,149,38)" fg:x="167982" fg:w="58"/><text x="37.4259%" y="719.50"></text></g><g><title>exit_mmap (58 samples, 0.01%)</title><rect x="37.1759%" y="693" width="0.0128%" height="15" fill="rgb(254,105,20)" fg:x="167982" fg:w="58"/><text x="37.4259%" y="703.50"></text></g><g><title>__x64_sys_execve (98 samples, 0.02%)</title><rect x="37.1746%" y="789" width="0.0217%" height="15" fill="rgb(253,87,46)" fg:x="167976" fg:w="98"/><text x="37.4246%" y="799.50"></text></g><g><title>do_execveat_common (98 samples, 0.02%)</title><rect x="37.1746%" y="773" width="0.0217%" height="15" fill="rgb(253,116,33)" fg:x="167976" fg:w="98"/><text x="37.4246%" y="783.50"></text></g><g><title>bprm_execve (98 samples, 0.02%)</title><rect x="37.1746%" y="757" width="0.0217%" height="15" fill="rgb(229,198,5)" fg:x="167976" fg:w="98"/><text x="37.4246%" y="767.50"></text></g><g><title>load_elf_binary (98 samples, 0.02%)</title><rect x="37.1746%" y="741" width="0.0217%" height="15" fill="rgb(242,38,37)" fg:x="167976" fg:w="98"/><text x="37.4246%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="37.2027%" y="645" width="0.0131%" height="15" fill="rgb(242,69,53)" fg:x="168103" fg:w="59"/><text x="37.4527%" y="655.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (59 samples, 0.01%)</title><rect x="37.2027%" y="629" width="0.0131%" height="15" fill="rgb(249,80,16)" fg:x="168103" fg:w="59"/><text x="37.4527%" y="639.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="37.2027%" y="613" width="0.0131%" height="15" fill="rgb(206,128,11)" fg:x="168103" fg:w="59"/><text x="37.4527%" y="623.50"></text></g><g><title>finish_task_switch (61 samples, 0.01%)</title><rect x="37.2027%" y="661" width="0.0135%" height="15" fill="rgb(212,35,20)" fg:x="168103" fg:w="61"/><text x="37.4527%" y="671.50"></text></g><g><title>namespace_unlock (87 samples, 0.02%)</title><rect x="37.1972%" y="725" width="0.0193%" height="15" fill="rgb(236,79,13)" fg:x="168078" fg:w="87"/><text x="37.4472%" y="735.50"></text></g><g><title>synchronize_rcu_expedited (80 samples, 0.02%)</title><rect x="37.1987%" y="709" width="0.0177%" height="15" fill="rgb(233,123,3)" fg:x="168085" fg:w="80"/><text x="37.4487%" y="719.50"></text></g><g><title>schedule (63 samples, 0.01%)</title><rect x="37.2025%" y="693" width="0.0139%" height="15" fill="rgb(214,93,52)" fg:x="168102" fg:w="63"/><text x="37.4525%" y="703.50"></text></g><g><title>__schedule (63 samples, 0.01%)</title><rect x="37.2025%" y="677" width="0.0139%" height="15" fill="rgb(251,37,40)" fg:x="168102" fg:w="63"/><text x="37.4525%" y="687.50"></text></g><g><title>put_mnt_ns (93 samples, 0.02%)</title><rect x="37.1969%" y="741" width="0.0206%" height="15" fill="rgb(227,80,54)" fg:x="168077" fg:w="93"/><text x="37.4469%" y="751.50"></text></g><g><title>free_nsproxy (97 samples, 0.02%)</title><rect x="37.1963%" y="757" width="0.0215%" height="15" fill="rgb(254,48,11)" fg:x="168074" fg:w="97"/><text x="37.4463%" y="767.50"></text></g><g><title>tlb_finish_mmu (49 samples, 0.01%)</title><rect x="37.2217%" y="725" width="0.0108%" height="15" fill="rgb(235,193,26)" fg:x="168189" fg:w="49"/><text x="37.4717%" y="735.50"></text></g><g><title>mmput (137 samples, 0.03%)</title><rect x="37.2180%" y="757" width="0.0303%" height="15" fill="rgb(229,99,21)" fg:x="168172" fg:w="137"/><text x="37.4680%" y="767.50"></text></g><g><title>exit_mmap (137 samples, 0.03%)</title><rect x="37.2180%" y="741" width="0.0303%" height="15" fill="rgb(211,140,41)" fg:x="168172" fg:w="137"/><text x="37.4680%" y="751.50"></text></g><g><title>unmap_vmas (71 samples, 0.02%)</title><rect x="37.2326%" y="725" width="0.0157%" height="15" fill="rgb(240,227,30)" fg:x="168238" fg:w="71"/><text x="37.4826%" y="735.50"></text></g><g><title>unmap_page_range (71 samples, 0.02%)</title><rect x="37.2326%" y="709" width="0.0157%" height="15" fill="rgb(215,224,45)" fg:x="168238" fg:w="71"/><text x="37.4826%" y="719.50"></text></g><g><title>__x64_sys_exit (275 samples, 0.06%)</title><rect x="37.1963%" y="789" width="0.0609%" height="15" fill="rgb(206,123,31)" fg:x="168074" fg:w="275"/><text x="37.4463%" y="799.50"></text></g><g><title>do_exit (275 samples, 0.06%)</title><rect x="37.1963%" y="773" width="0.0609%" height="15" fill="rgb(210,138,16)" fg:x="168074" fg:w="275"/><text x="37.4463%" y="783.50"></text></g><g><title>mmput (86 samples, 0.02%)</title><rect x="37.2571%" y="741" width="0.0190%" height="15" fill="rgb(228,57,28)" fg:x="168349" fg:w="86"/><text x="37.5071%" y="751.50"></text></g><g><title>exit_mmap (86 samples, 0.02%)</title><rect x="37.2571%" y="725" width="0.0190%" height="15" fill="rgb(242,170,10)" fg:x="168349" fg:w="86"/><text x="37.5071%" y="735.50"></text></g><g><title>__x64_sys_exit_group (91 samples, 0.02%)</title><rect x="37.2571%" y="789" width="0.0201%" height="15" fill="rgb(228,214,39)" fg:x="168349" fg:w="91"/><text x="37.5071%" y="799.50"></text></g><g><title>do_group_exit (91 samples, 0.02%)</title><rect x="37.2571%" y="773" width="0.0201%" height="15" fill="rgb(218,179,33)" fg:x="168349" fg:w="91"/><text x="37.5071%" y="783.50"></text></g><g><title>do_exit (91 samples, 0.02%)</title><rect x="37.2571%" y="757" width="0.0201%" height="15" fill="rgb(235,193,39)" fg:x="168349" fg:w="91"/><text x="37.5071%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (467 samples, 0.10%)</title><rect x="37.1742%" y="821" width="0.1034%" height="15" fill="rgb(219,221,36)" fg:x="167974" fg:w="467"/><text x="37.4242%" y="831.50"></text></g><g><title>do_syscall_64 (465 samples, 0.10%)</title><rect x="37.1746%" y="805" width="0.1029%" height="15" fill="rgb(248,218,19)" fg:x="167976" fg:w="465"/><text x="37.4246%" y="815.50"></text></g><g><title>linux-sandbox (3,920 samples, 0.87%)</title><rect x="36.4106%" y="837" width="0.8675%" height="15" fill="rgb(205,50,9)" fg:x="164524" fg:w="3920"/><text x="36.6606%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="37.2908%" y="661" width="0.0221%" height="15" fill="rgb(238,81,28)" fg:x="168501" fg:w="100"/><text x="37.5408%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.02%)</title><rect x="37.2908%" y="645" width="0.0221%" height="15" fill="rgb(235,110,19)" fg:x="168501" fg:w="100"/><text x="37.5408%" y="655.50"></text></g><g><title>native_write_msr (100 samples, 0.02%)</title><rect x="37.2908%" y="629" width="0.0221%" height="15" fill="rgb(214,7,14)" fg:x="168501" fg:w="100"/><text x="37.5408%" y="639.50"></text></g><g><title>arch_fork (122 samples, 0.03%)</title><rect x="37.2866%" y="725" width="0.0270%" height="15" fill="rgb(211,77,3)" fg:x="168482" fg:w="122"/><text x="37.5366%" y="735.50"></text></g><g><title>ret_from_fork (117 samples, 0.03%)</title><rect x="37.2877%" y="709" width="0.0259%" height="15" fill="rgb(229,5,9)" fg:x="168487" fg:w="117"/><text x="37.5377%" y="719.50"></text></g><g><title>schedule_tail (117 samples, 0.03%)</title><rect x="37.2877%" y="693" width="0.0259%" height="15" fill="rgb(225,90,11)" fg:x="168487" fg:w="117"/><text x="37.5377%" y="703.50"></text></g><g><title>finish_task_switch (103 samples, 0.02%)</title><rect x="37.2908%" y="677" width="0.0228%" height="15" fill="rgb(242,56,8)" fg:x="168501" fg:w="103"/><text x="37.5408%" y="687.50"></text></g><g><title>__libc_fork (129 samples, 0.03%)</title><rect x="37.2855%" y="741" width="0.0285%" height="15" fill="rgb(249,212,39)" fg:x="168477" fg:w="129"/><text x="37.5355%" y="751.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (151 samples, 0.03%)</title><rect x="37.2821%" y="773" width="0.0334%" height="15" fill="rgb(236,90,9)" fg:x="168462" fg:w="151"/><text x="37.5321%" y="783.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (151 samples, 0.03%)</title><rect x="37.2821%" y="757" width="0.0334%" height="15" fill="rgb(206,88,35)" fg:x="168462" fg:w="151"/><text x="37.5321%" y="767.50"></text></g><g><title>__libc_start_main (181 samples, 0.04%)</title><rect x="37.2817%" y="805" width="0.0401%" height="15" fill="rgb(205,126,30)" fg:x="168460" fg:w="181"/><text x="37.5317%" y="815.50"></text></g><g><title>main (179 samples, 0.04%)</title><rect x="37.2821%" y="789" width="0.0396%" height="15" fill="rgb(230,176,12)" fg:x="168462" fg:w="179"/><text x="37.5321%" y="799.50"></text></g><g><title>_start (225 samples, 0.05%)</title><rect x="37.2817%" y="821" width="0.0498%" height="15" fill="rgb(243,19,9)" fg:x="168460" fg:w="225"/><text x="37.5317%" y="831.50"></text></g><g><title>process-wrapper (253 samples, 0.06%)</title><rect x="37.2795%" y="837" width="0.0560%" height="15" fill="rgb(245,171,17)" fg:x="168450" fg:w="253"/><text x="37.5295%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (231 samples, 0.05%)</title><rect x="37.3855%" y="661" width="0.0511%" height="15" fill="rgb(227,52,21)" fg:x="168929" fg:w="231"/><text x="37.6355%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (230 samples, 0.05%)</title><rect x="37.3857%" y="645" width="0.0509%" height="15" fill="rgb(238,69,14)" fg:x="168930" fg:w="230"/><text x="37.6357%" y="655.50"></text></g><g><title>native_write_msr (230 samples, 0.05%)</title><rect x="37.3857%" y="629" width="0.0509%" height="15" fill="rgb(241,156,39)" fg:x="168930" fg:w="230"/><text x="37.6357%" y="639.50"></text></g><g><title>finish_task_switch (262 samples, 0.06%)</title><rect x="37.3831%" y="677" width="0.0580%" height="15" fill="rgb(212,227,28)" fg:x="168918" fg:w="262"/><text x="37.6331%" y="687.50"></text></g><g><title>schedule (270 samples, 0.06%)</title><rect x="37.3820%" y="709" width="0.0598%" height="15" fill="rgb(209,118,27)" fg:x="168913" fg:w="270"/><text x="37.6320%" y="719.50"></text></g><g><title>__schedule (269 samples, 0.06%)</title><rect x="37.3822%" y="693" width="0.0595%" height="15" fill="rgb(226,102,5)" fg:x="168914" fg:w="269"/><text x="37.6322%" y="703.50"></text></g><g><title>do_wait (359 samples, 0.08%)</title><rect x="37.3680%" y="725" width="0.0794%" height="15" fill="rgb(223,34,3)" fg:x="168850" fg:w="359"/><text x="37.6180%" y="735.50"></text></g><g><title>do_syscall_64 (362 samples, 0.08%)</title><rect x="37.3678%" y="757" width="0.0801%" height="15" fill="rgb(221,81,38)" fg:x="168849" fg:w="362"/><text x="37.6178%" y="767.50"></text></g><g><title>kernel_wait4 (361 samples, 0.08%)</title><rect x="37.3680%" y="741" width="0.0799%" height="15" fill="rgb(236,219,28)" fg:x="168850" fg:w="361"/><text x="37.6180%" y="751.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (365 samples, 0.08%)</title><rect x="37.3674%" y="805" width="0.0808%" height="15" fill="rgb(213,200,14)" fg:x="168847" fg:w="365"/><text x="37.6174%" y="815.50"></text></g><g><title>__GI___wait4 (365 samples, 0.08%)</title><rect x="37.3674%" y="789" width="0.0808%" height="15" fill="rgb(240,33,19)" fg:x="168847" fg:w="365"/><text x="37.6174%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (363 samples, 0.08%)</title><rect x="37.3678%" y="773" width="0.0803%" height="15" fill="rgb(233,113,27)" fg:x="168849" fg:w="363"/><text x="37.6178%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (83 samples, 0.02%)</title><rect x="37.4495%" y="581" width="0.0184%" height="15" fill="rgb(220,221,18)" fg:x="169218" fg:w="83"/><text x="37.6995%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (82 samples, 0.02%)</title><rect x="37.4497%" y="565" width="0.0181%" height="15" fill="rgb(238,92,8)" fg:x="169219" fg:w="82"/><text x="37.6997%" y="575.50"></text></g><g><title>native_write_msr (82 samples, 0.02%)</title><rect x="37.4497%" y="549" width="0.0181%" height="15" fill="rgb(222,164,16)" fg:x="169219" fg:w="82"/><text x="37.6997%" y="559.50"></text></g><g><title>finish_task_switch (86 samples, 0.02%)</title><rect x="37.4495%" y="597" width="0.0190%" height="15" fill="rgb(241,119,3)" fg:x="169218" fg:w="86"/><text x="37.6995%" y="607.50"></text></g><g><title>futex_wait_queue_me (88 samples, 0.02%)</title><rect x="37.4492%" y="645" width="0.0195%" height="15" fill="rgb(241,44,8)" fg:x="169217" fg:w="88"/><text x="37.6992%" y="655.50"></text></g><g><title>schedule (88 samples, 0.02%)</title><rect x="37.4492%" y="629" width="0.0195%" height="15" fill="rgb(230,36,40)" fg:x="169217" fg:w="88"/><text x="37.6992%" y="639.50"></text></g><g><title>__schedule (87 samples, 0.02%)</title><rect x="37.4495%" y="613" width="0.0193%" height="15" fill="rgb(243,16,36)" fg:x="169218" fg:w="87"/><text x="37.6995%" y="623.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="37.4492%" y="709" width="0.0208%" height="15" fill="rgb(231,4,26)" fg:x="169217" fg:w="94"/><text x="37.6992%" y="719.50"></text></g><g><title>__x64_sys_futex (94 samples, 0.02%)</title><rect x="37.4492%" y="693" width="0.0208%" height="15" fill="rgb(240,9,31)" fg:x="169217" fg:w="94"/><text x="37.6992%" y="703.50"></text></g><g><title>do_futex (94 samples, 0.02%)</title><rect x="37.4492%" y="677" width="0.0208%" height="15" fill="rgb(207,173,15)" fg:x="169217" fg:w="94"/><text x="37.6992%" y="687.50"></text></g><g><title>futex_wait (94 samples, 0.02%)</title><rect x="37.4492%" y="661" width="0.0208%" height="15" fill="rgb(224,192,53)" fg:x="169217" fg:w="94"/><text x="37.6992%" y="671.50"></text></g><g><title>__pthread_cond_timedwait (96 samples, 0.02%)</title><rect x="37.4490%" y="773" width="0.0212%" height="15" fill="rgb(223,67,28)" fg:x="169216" fg:w="96"/><text x="37.6990%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (96 samples, 0.02%)</title><rect x="37.4490%" y="757" width="0.0212%" height="15" fill="rgb(211,20,47)" fg:x="169216" fg:w="96"/><text x="37.6990%" y="767.50"></text></g><g><title>futex_abstimed_wait_cancelable (96 samples, 0.02%)</title><rect x="37.4490%" y="741" width="0.0212%" height="15" fill="rgb(240,228,2)" fg:x="169216" fg:w="96"/><text x="37.6990%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (95 samples, 0.02%)</title><rect x="37.4492%" y="725" width="0.0210%" height="15" fill="rgb(248,151,12)" fg:x="169217" fg:w="95"/><text x="37.6992%" y="735.50"></text></g><g><title>Unsafe_Park (99 samples, 0.02%)</title><rect x="37.4486%" y="805" width="0.0219%" height="15" fill="rgb(244,8,39)" fg:x="169214" fg:w="99"/><text x="37.6986%" y="815.50"></text></g><g><title>Parker::park (99 samples, 0.02%)</title><rect x="37.4486%" y="789" width="0.0219%" height="15" fill="rgb(222,26,8)" fg:x="169214" fg:w="99"/><text x="37.6986%" y="799.50"></text></g><g><title>[perf-42779.map] (610 samples, 0.13%)</title><rect x="37.3364%" y="821" width="0.1350%" height="15" fill="rgb(213,106,44)" fg:x="168707" fg:w="610"/><text x="37.5864%" y="831.50"></text></g><g><title>process_reaper (618 samples, 0.14%)</title><rect x="37.3355%" y="837" width="0.1368%" height="15" fill="rgb(214,129,20)" fg:x="168703" fg:w="618"/><text x="37.5855%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (469 samples, 0.10%)</title><rect x="37.5902%" y="581" width="0.1038%" height="15" fill="rgb(212,32,13)" fg:x="169854" fg:w="469"/><text x="37.8402%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (463 samples, 0.10%)</title><rect x="37.5915%" y="565" width="0.1025%" height="15" fill="rgb(208,168,33)" fg:x="169860" fg:w="463"/><text x="37.8415%" y="575.50"></text></g><g><title>native_write_msr (463 samples, 0.10%)</title><rect x="37.5915%" y="549" width="0.1025%" height="15" fill="rgb(231,207,8)" fg:x="169860" fg:w="463"/><text x="37.8415%" y="559.50"></text></g><g><title>finish_task_switch (499 samples, 0.11%)</title><rect x="37.5880%" y="597" width="0.1104%" height="15" fill="rgb(235,219,23)" fg:x="169844" fg:w="499"/><text x="37.8380%" y="607.50"></text></g><g><title>futex_wait_queue_me (541 samples, 0.12%)</title><rect x="37.5825%" y="645" width="0.1197%" height="15" fill="rgb(226,216,26)" fg:x="169819" fg:w="541"/><text x="37.8325%" y="655.50"></text></g><g><title>schedule (533 samples, 0.12%)</title><rect x="37.5842%" y="629" width="0.1180%" height="15" fill="rgb(239,137,16)" fg:x="169827" fg:w="533"/><text x="37.8342%" y="639.50"></text></g><g><title>__schedule (532 samples, 0.12%)</title><rect x="37.5845%" y="613" width="0.1177%" height="15" fill="rgb(207,12,36)" fg:x="169828" fg:w="532"/><text x="37.8345%" y="623.50"></text></g><g><title>do_syscall_64 (553 samples, 0.12%)</title><rect x="37.5803%" y="709" width="0.1224%" height="15" fill="rgb(210,214,24)" fg:x="169809" fg:w="553"/><text x="37.8303%" y="719.50"></text></g><g><title>__x64_sys_futex (553 samples, 0.12%)</title><rect x="37.5803%" y="693" width="0.1224%" height="15" fill="rgb(206,56,30)" fg:x="169809" fg:w="553"/><text x="37.8303%" y="703.50"></text></g><g><title>do_futex (548 samples, 0.12%)</title><rect x="37.5814%" y="677" width="0.1213%" height="15" fill="rgb(228,143,26)" fg:x="169814" fg:w="548"/><text x="37.8314%" y="687.50"></text></g><g><title>futex_wait (547 samples, 0.12%)</title><rect x="37.5816%" y="661" width="0.1211%" height="15" fill="rgb(216,218,46)" fg:x="169815" fg:w="547"/><text x="37.8316%" y="671.50"></text></g><g><title>__pthread_cond_wait (573 samples, 0.13%)</title><rect x="37.5780%" y="773" width="0.1268%" height="15" fill="rgb(206,6,19)" fg:x="169799" fg:w="573"/><text x="37.8280%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (573 samples, 0.13%)</title><rect x="37.5780%" y="757" width="0.1268%" height="15" fill="rgb(239,177,51)" fg:x="169799" fg:w="573"/><text x="37.8280%" y="767.50"></text></g><g><title>futex_wait_cancelable (570 samples, 0.13%)</title><rect x="37.5787%" y="741" width="0.1261%" height="15" fill="rgb(216,55,25)" fg:x="169802" fg:w="570"/><text x="37.8287%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (564 samples, 0.12%)</title><rect x="37.5800%" y="725" width="0.1248%" height="15" fill="rgb(231,163,29)" fg:x="169808" fg:w="564"/><text x="37.8300%" y="735.50"></text></g><g><title>Parker::park (608 samples, 0.13%)</title><rect x="37.5714%" y="789" width="0.1346%" height="15" fill="rgb(232,149,50)" fg:x="169769" fg:w="608"/><text x="37.8214%" y="799.50"></text></g><g><title>Unsafe_Park (616 samples, 0.14%)</title><rect x="37.5705%" y="805" width="0.1363%" height="15" fill="rgb(223,142,48)" fg:x="169765" fg:w="616"/><text x="37.8205%" y="815.50"></text></g><g><title>[perf-42779.map] (1,048 samples, 0.23%)</title><rect x="37.4760%" y="821" width="0.2319%" height="15" fill="rgb(245,83,23)" fg:x="169338" fg:w="1048"/><text x="37.7260%" y="831.50"></text></g><g><title>profile-writer- (1,077 samples, 0.24%)</title><rect x="37.4723%" y="837" width="0.2383%" height="15" fill="rgb(224,63,2)" fg:x="169321" fg:w="1077"/><text x="37.7223%" y="847.50"></text></g><g><title>[python3.9] (75 samples, 0.02%)</title><rect x="37.7341%" y="805" width="0.0166%" height="15" fill="rgb(218,65,53)" fg:x="170504" fg:w="75"/><text x="37.9841%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (72 samples, 0.02%)</title><rect x="37.7622%" y="789" width="0.0159%" height="15" fill="rgb(221,84,29)" fg:x="170631" fg:w="72"/><text x="38.0122%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (58 samples, 0.01%)</title><rect x="37.7653%" y="773" width="0.0128%" height="15" fill="rgb(234,0,32)" fg:x="170645" fg:w="58"/><text x="38.0153%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (57 samples, 0.01%)</title><rect x="37.7655%" y="757" width="0.0126%" height="15" fill="rgb(206,20,16)" fg:x="170646" fg:w="57"/><text x="38.0155%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (48 samples, 0.01%)</title><rect x="37.7675%" y="741" width="0.0106%" height="15" fill="rgb(244,172,18)" fg:x="170655" fg:w="48"/><text x="38.0175%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (48 samples, 0.01%)</title><rect x="37.7675%" y="725" width="0.0106%" height="15" fill="rgb(254,133,1)" fg:x="170655" fg:w="48"/><text x="38.0175%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (116 samples, 0.03%)</title><rect x="37.7527%" y="805" width="0.0257%" height="15" fill="rgb(222,206,41)" fg:x="170588" fg:w="116"/><text x="38.0027%" y="815.50"></text></g><g><title>[unknown] (315 samples, 0.07%)</title><rect x="37.7221%" y="821" width="0.0697%" height="15" fill="rgb(212,3,42)" fg:x="170450" fg:w="315"/><text x="37.9721%" y="831.50"></text></g><g><title>Py_RunMain (72 samples, 0.02%)</title><rect x="37.7918%" y="773" width="0.0159%" height="15" fill="rgb(241,11,4)" fg:x="170765" fg:w="72"/><text x="38.0418%" y="783.50"></text></g><g><title>Py_FinalizeEx (53 samples, 0.01%)</title><rect x="37.7960%" y="757" width="0.0117%" height="15" fill="rgb(205,19,26)" fg:x="170784" fg:w="53"/><text x="38.0460%" y="767.50"></text></g><g><title>Py_InitializeFromConfig (71 samples, 0.02%)</title><rect x="37.8078%" y="741" width="0.0157%" height="15" fill="rgb(210,179,32)" fg:x="170837" fg:w="71"/><text x="38.0578%" y="751.50"></text></g><g><title>[python3.9] (71 samples, 0.02%)</title><rect x="37.8078%" y="725" width="0.0157%" height="15" fill="rgb(227,116,49)" fg:x="170837" fg:w="71"/><text x="38.0578%" y="735.50"></text></g><g><title>[python3.9] (71 samples, 0.02%)</title><rect x="37.8078%" y="709" width="0.0157%" height="15" fill="rgb(211,146,6)" fg:x="170837" fg:w="71"/><text x="38.0578%" y="719.50"></text></g><g><title>__libc_start_main (146 samples, 0.03%)</title><rect x="37.7918%" y="805" width="0.0323%" height="15" fill="rgb(219,44,39)" fg:x="170765" fg:w="146"/><text x="38.0418%" y="815.50"></text></g><g><title>Py_BytesMain (146 samples, 0.03%)</title><rect x="37.7918%" y="789" width="0.0323%" height="15" fill="rgb(234,128,11)" fg:x="170765" fg:w="146"/><text x="38.0418%" y="799.50"></text></g><g><title>[python3.9] (74 samples, 0.02%)</title><rect x="37.8078%" y="773" width="0.0164%" height="15" fill="rgb(220,183,53)" fg:x="170837" fg:w="74"/><text x="38.0578%" y="783.50"></text></g><g><title>[python3.9] (74 samples, 0.02%)</title><rect x="37.8078%" y="757" width="0.0164%" height="15" fill="rgb(213,219,32)" fg:x="170837" fg:w="74"/><text x="38.0578%" y="767.50"></text></g><g><title>_start (152 samples, 0.03%)</title><rect x="37.7918%" y="821" width="0.0336%" height="15" fill="rgb(232,156,16)" fg:x="170765" fg:w="152"/><text x="38.0418%" y="831.50"></text></g><g><title>python3 (522 samples, 0.12%)</title><rect x="37.7137%" y="837" width="0.1155%" height="15" fill="rgb(246,135,34)" fg:x="170412" fg:w="522"/><text x="37.9637%" y="847.50"></text></g><g><title>sed (59 samples, 0.01%)</title><rect x="37.8292%" y="837" width="0.0131%" height="15" fill="rgb(241,99,0)" fg:x="170934" fg:w="59"/><text x="38.0792%" y="847.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (55 samples, 0.01%)</title><rect x="37.8576%" y="805" width="0.0122%" height="15" fill="rgb(222,103,45)" fg:x="171062" fg:w="55"/><text x="38.1076%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (46 samples, 0.01%)</title><rect x="37.9257%" y="805" width="0.0102%" height="15" fill="rgb(212,57,4)" fg:x="171370" fg:w="46"/><text x="38.1757%" y="815.50"></text></g><g><title>JavaThread::is_Java_thread (51 samples, 0.01%)</title><rect x="37.9753%" y="805" width="0.0113%" height="15" fill="rgb(215,68,47)" fg:x="171594" fg:w="51"/><text x="38.2253%" y="815.50"></text></g><g><title>ThreadHeapSampler::enabled (102 samples, 0.02%)</title><rect x="38.0359%" y="805" width="0.0226%" height="15" fill="rgb(230,84,2)" fg:x="171868" fg:w="102"/><text x="38.2859%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (74 samples, 0.02%)</title><rect x="38.0689%" y="805" width="0.0164%" height="15" fill="rgb(220,102,14)" fg:x="172017" fg:w="74"/><text x="38.3189%" y="815.50"></text></g><g><title>UNICODE::is_latin1 (55 samples, 0.01%)</title><rect x="38.0924%" y="805" width="0.0122%" height="15" fill="rgb(240,10,32)" fg:x="172123" fg:w="55"/><text x="38.3424%" y="815.50"></text></g><g><title>check_bounds (166 samples, 0.04%)</title><rect x="38.1450%" y="805" width="0.0367%" height="15" fill="rgb(215,47,27)" fg:x="172361" fg:w="166"/><text x="38.3950%" y="815.50"></text></g><g><title>[anon] (1,812 samples, 0.40%)</title><rect x="37.8502%" y="821" width="0.4010%" height="15" fill="rgb(233,188,43)" fg:x="171029" fg:w="1812"/><text x="38.1002%" y="831.50"></text></g><g><title>[libc-2.31.so] (233 samples, 0.05%)</title><rect x="39.1018%" y="805" width="0.0516%" height="15" fill="rgb(253,190,1)" fg:x="176684" fg:w="233"/><text x="39.3518%" y="815.50"></text></g><g><title>__x64_sys_close (87 samples, 0.02%)</title><rect x="39.1608%" y="757" width="0.0193%" height="15" fill="rgb(206,114,52)" fg:x="176951" fg:w="87"/><text x="39.4108%" y="767.50"></text></g><g><title>filp_close (62 samples, 0.01%)</title><rect x="39.1664%" y="741" width="0.0137%" height="15" fill="rgb(233,120,37)" fg:x="176976" fg:w="62"/><text x="39.4164%" y="751.50"></text></g><g><title>do_syscall_64 (102 samples, 0.02%)</title><rect x="39.1586%" y="773" width="0.0226%" height="15" fill="rgb(214,52,39)" fg:x="176941" fg:w="102"/><text x="39.4086%" y="783.50"></text></g><g><title>btrfs_release_file (112 samples, 0.02%)</title><rect x="39.1936%" y="709" width="0.0248%" height="15" fill="rgb(223,80,29)" fg:x="177099" fg:w="112"/><text x="39.4436%" y="719.50"></text></g><g><title>kfree (80 samples, 0.02%)</title><rect x="39.2007%" y="693" width="0.0177%" height="15" fill="rgb(230,101,40)" fg:x="177131" fg:w="80"/><text x="39.4507%" y="703.50"></text></g><g><title>__fput (232 samples, 0.05%)</title><rect x="39.1883%" y="725" width="0.0513%" height="15" fill="rgb(219,211,8)" fg:x="177075" fg:w="232"/><text x="39.4383%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (409 samples, 0.09%)</title><rect x="39.1575%" y="789" width="0.0905%" height="15" fill="rgb(252,126,28)" fg:x="176936" fg:w="409"/><text x="39.4075%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (302 samples, 0.07%)</title><rect x="39.1812%" y="773" width="0.0668%" height="15" fill="rgb(215,56,38)" fg:x="177043" fg:w="302"/><text x="39.4312%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (302 samples, 0.07%)</title><rect x="39.1812%" y="757" width="0.0668%" height="15" fill="rgb(249,55,44)" fg:x="177043" fg:w="302"/><text x="39.4312%" y="767.50"></text></g><g><title>task_work_run (279 samples, 0.06%)</title><rect x="39.1863%" y="741" width="0.0617%" height="15" fill="rgb(220,221,32)" fg:x="177066" fg:w="279"/><text x="39.4363%" y="751.50"></text></g><g><title>__GI___close_nocancel (432 samples, 0.10%)</title><rect x="39.1533%" y="805" width="0.0956%" height="15" fill="rgb(212,216,41)" fg:x="176917" fg:w="432"/><text x="39.4033%" y="815.50"></text></g><g><title>__GI___libc_free (239 samples, 0.05%)</title><rect x="39.2489%" y="805" width="0.0529%" height="15" fill="rgb(228,213,43)" fg:x="177349" fg:w="239"/><text x="39.4989%" y="815.50"></text></g><g><title>inode_permission.part.0 (49 samples, 0.01%)</title><rect x="39.3277%" y="677" width="0.0108%" height="15" fill="rgb(211,31,26)" fg:x="177705" fg:w="49"/><text x="39.5777%" y="687.50"></text></g><g><title>lookup_fast (74 samples, 0.02%)</title><rect x="39.3405%" y="661" width="0.0164%" height="15" fill="rgb(229,202,19)" fg:x="177763" fg:w="74"/><text x="39.5905%" y="671.50"></text></g><g><title>__d_lookup_rcu (66 samples, 0.01%)</title><rect x="39.3423%" y="645" width="0.0146%" height="15" fill="rgb(229,105,46)" fg:x="177771" fg:w="66"/><text x="39.5923%" y="655.50"></text></g><g><title>link_path_walk.part.0 (170 samples, 0.04%)</title><rect x="39.3224%" y="693" width="0.0376%" height="15" fill="rgb(235,108,1)" fg:x="177681" fg:w="170"/><text x="39.5724%" y="703.50"></text></g><g><title>walk_component (95 samples, 0.02%)</title><rect x="39.3390%" y="677" width="0.0210%" height="15" fill="rgb(245,111,35)" fg:x="177756" fg:w="95"/><text x="39.5890%" y="687.50"></text></g><g><title>filename_lookup (262 samples, 0.06%)</title><rect x="39.3140%" y="725" width="0.0580%" height="15" fill="rgb(219,185,31)" fg:x="177643" fg:w="262"/><text x="39.5640%" y="735.50"></text></g><g><title>path_lookupat (245 samples, 0.05%)</title><rect x="39.3177%" y="709" width="0.0542%" height="15" fill="rgb(214,4,43)" fg:x="177660" fg:w="245"/><text x="39.5677%" y="719.50"></text></g><g><title>__do_sys_newlstat (421 samples, 0.09%)</title><rect x="39.3036%" y="757" width="0.0932%" height="15" fill="rgb(235,227,40)" fg:x="177596" fg:w="421"/><text x="39.5536%" y="767.50"></text></g><g><title>vfs_statx (403 samples, 0.09%)</title><rect x="39.3076%" y="741" width="0.0892%" height="15" fill="rgb(230,88,30)" fg:x="177614" fg:w="403"/><text x="39.5576%" y="751.50"></text></g><g><title>user_path_at_empty (64 samples, 0.01%)</title><rect x="39.3826%" y="725" width="0.0142%" height="15" fill="rgb(216,217,1)" fg:x="177953" fg:w="64"/><text x="39.6326%" y="735.50"></text></g><g><title>getname_flags.part.0 (61 samples, 0.01%)</title><rect x="39.3833%" y="709" width="0.0135%" height="15" fill="rgb(248,139,50)" fg:x="177956" fg:w="61"/><text x="39.6333%" y="719.50"></text></g><g><title>do_syscall_64 (429 samples, 0.09%)</title><rect x="39.3029%" y="773" width="0.0949%" height="15" fill="rgb(233,1,21)" fg:x="177593" fg:w="429"/><text x="39.5529%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (436 samples, 0.10%)</title><rect x="39.3025%" y="789" width="0.0965%" height="15" fill="rgb(215,183,12)" fg:x="177591" fg:w="436"/><text x="39.5525%" y="799.50"></text></g><g><title>__GI___lxstat (442 samples, 0.10%)</title><rect x="39.3018%" y="805" width="0.0978%" height="15" fill="rgb(229,104,42)" fg:x="177588" fg:w="442"/><text x="39.5518%" y="815.50"></text></g><g><title>__btrfs_tree_read_lock (57 samples, 0.01%)</title><rect x="39.4156%" y="645" width="0.0126%" height="15" fill="rgb(243,34,48)" fg:x="178102" fg:w="57"/><text x="39.6656%" y="655.50"></text></g><g><title>btrfs_search_slot (167 samples, 0.04%)</title><rect x="39.4111%" y="661" width="0.0370%" height="15" fill="rgb(239,11,44)" fg:x="178082" fg:w="167"/><text x="39.6611%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (172 samples, 0.04%)</title><rect x="39.4109%" y="677" width="0.0381%" height="15" fill="rgb(231,98,35)" fg:x="178081" fg:w="172"/><text x="39.6609%" y="687.50"></text></g><g><title>btrfs_lookup (189 samples, 0.04%)</title><rect x="39.4087%" y="709" width="0.0418%" height="15" fill="rgb(233,28,25)" fg:x="178071" fg:w="189"/><text x="39.6587%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (188 samples, 0.04%)</title><rect x="39.4089%" y="693" width="0.0416%" height="15" fill="rgb(234,123,11)" fg:x="178072" fg:w="188"/><text x="39.6589%" y="703.50"></text></g><g><title>__lookup_hash (221 samples, 0.05%)</title><rect x="39.4087%" y="725" width="0.0489%" height="15" fill="rgb(220,69,3)" fg:x="178071" fg:w="221"/><text x="39.6587%" y="735.50"></text></g><g><title>link_path_walk.part.0 (87 samples, 0.02%)</title><rect x="39.4596%" y="693" width="0.0193%" height="15" fill="rgb(214,64,36)" fg:x="178301" fg:w="87"/><text x="39.7096%" y="703.50"></text></g><g><title>filename_parentat (100 samples, 0.02%)</title><rect x="39.4576%" y="725" width="0.0221%" height="15" fill="rgb(211,138,32)" fg:x="178292" fg:w="100"/><text x="39.7076%" y="735.50"></text></g><g><title>path_parentat (97 samples, 0.02%)</title><rect x="39.4583%" y="709" width="0.0215%" height="15" fill="rgb(213,118,47)" fg:x="178295" fg:w="97"/><text x="39.7083%" y="719.50"></text></g><g><title>filename_create (337 samples, 0.07%)</title><rect x="39.4085%" y="741" width="0.0746%" height="15" fill="rgb(243,124,49)" fg:x="178070" fg:w="337"/><text x="39.6585%" y="751.50"></text></g><g><title>__btrfs_tree_lock (83 samples, 0.02%)</title><rect x="39.5127%" y="629" width="0.0184%" height="15" fill="rgb(221,30,28)" fg:x="178541" fg:w="83"/><text x="39.7627%" y="639.50"></text></g><g><title>btrfs_search_slot (204 samples, 0.05%)</title><rect x="39.5096%" y="645" width="0.0451%" height="15" fill="rgb(246,37,13)" fg:x="178527" fg:w="204"/><text x="39.7596%" y="655.50"></text></g><g><title>insert_with_overflow (299 samples, 0.07%)</title><rect x="39.5090%" y="677" width="0.0662%" height="15" fill="rgb(249,66,14)" fg:x="178524" fg:w="299"/><text x="39.7590%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (297 samples, 0.07%)</title><rect x="39.5094%" y="661" width="0.0657%" height="15" fill="rgb(213,166,5)" fg:x="178526" fg:w="297"/><text x="39.7594%" y="671.50"></text></g><g><title>setup_items_for_insert (92 samples, 0.02%)</title><rect x="39.5548%" y="645" width="0.0204%" height="15" fill="rgb(221,66,24)" fg:x="178731" fg:w="92"/><text x="39.8048%" y="655.50"></text></g><g><title>btrfs_insert_dir_item (366 samples, 0.08%)</title><rect x="39.4959%" y="693" width="0.0810%" height="15" fill="rgb(210,132,17)" fg:x="178465" fg:w="366"/><text x="39.7459%" y="703.50"></text></g><g><title>btrfs_add_link (384 samples, 0.08%)</title><rect x="39.4957%" y="709" width="0.0850%" height="15" fill="rgb(243,202,5)" fg:x="178464" fg:w="384"/><text x="39.7457%" y="719.50"></text></g><g><title>__btrfs_tree_lock (83 samples, 0.02%)</title><rect x="39.5959%" y="661" width="0.0184%" height="15" fill="rgb(233,70,48)" fg:x="178917" fg:w="83"/><text x="39.8459%" y="671.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="39.6030%" y="645" width="0.0113%" height="15" fill="rgb(238,41,26)" fg:x="178949" fg:w="51"/><text x="39.8530%" y="655.50"></text></g><g><title>__schedule (50 samples, 0.01%)</title><rect x="39.6032%" y="629" width="0.0111%" height="15" fill="rgb(241,19,31)" fg:x="178950" fg:w="50"/><text x="39.8532%" y="639.50"></text></g><g><title>btrfs_search_slot (250 samples, 0.06%)</title><rect x="39.5924%" y="677" width="0.0553%" height="15" fill="rgb(214,76,10)" fg:x="178901" fg:w="250"/><text x="39.8424%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (294 samples, 0.07%)</title><rect x="39.5920%" y="693" width="0.0651%" height="15" fill="rgb(254,202,22)" fg:x="178899" fg:w="294"/><text x="39.8420%" y="703.50"></text></g><g><title>inode_tree_add (48 samples, 0.01%)</title><rect x="39.6639%" y="693" width="0.0106%" height="15" fill="rgb(214,72,24)" fg:x="179224" fg:w="48"/><text x="39.9139%" y="703.50"></text></g><g><title>btrfs_new_inode (454 samples, 0.10%)</title><rect x="39.5866%" y="709" width="0.1005%" height="15" fill="rgb(221,92,46)" fg:x="178875" fg:w="454"/><text x="39.8366%" y="719.50"></text></g><g><title>btrfs_update_inode (49 samples, 0.01%)</title><rect x="39.6871%" y="709" width="0.0108%" height="15" fill="rgb(246,13,50)" fg:x="179329" fg:w="49"/><text x="39.9371%" y="719.50"></text></g><g><title>btrfs_mkdir (994 samples, 0.22%)</title><rect x="39.4906%" y="725" width="0.2200%" height="15" fill="rgb(240,165,38)" fg:x="178441" fg:w="994"/><text x="39.7406%" y="735.50"></text></g><g><title>do_syscall_64 (1,404 samples, 0.31%)</title><rect x="39.4012%" y="773" width="0.3107%" height="15" fill="rgb(241,24,51)" fg:x="178037" fg:w="1404"/><text x="39.6512%" y="783.50"></text></g><g><title>do_mkdirat (1,400 samples, 0.31%)</title><rect x="39.4021%" y="757" width="0.3098%" height="15" fill="rgb(227,51,44)" fg:x="178041" fg:w="1400"/><text x="39.6521%" y="767.50"></text></g><g><title>vfs_mkdir (1,002 samples, 0.22%)</title><rect x="39.4901%" y="741" width="0.2218%" height="15" fill="rgb(231,121,3)" fg:x="178439" fg:w="1002"/><text x="39.7401%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,408 samples, 0.31%)</title><rect x="39.4010%" y="789" width="0.3116%" height="15" fill="rgb(245,3,41)" fg:x="178036" fg:w="1408"/><text x="39.6510%" y="799.50"></text></g><g><title>__GI___mkdir (1,416 samples, 0.31%)</title><rect x="39.3996%" y="805" width="0.3134%" height="15" fill="rgb(214,13,26)" fg:x="178030" fg:w="1416"/><text x="39.6496%" y="815.50"></text></g><g><title>__fdget_pos (51 samples, 0.01%)</title><rect x="39.7867%" y="725" width="0.0113%" height="15" fill="rgb(252,75,11)" fg:x="179779" fg:w="51"/><text x="40.0367%" y="735.50"></text></g><g><title>btrfs_filldir (529 samples, 0.12%)</title><rect x="39.8858%" y="693" width="0.1171%" height="15" fill="rgb(218,226,17)" fg:x="180227" fg:w="529"/><text x="40.1358%" y="703.50"></text></g><g><title>filldir64 (466 samples, 0.10%)</title><rect x="39.8998%" y="677" width="0.1031%" height="15" fill="rgb(248,89,38)" fg:x="180290" fg:w="466"/><text x="40.1498%" y="687.50"></text></g><g><title>verify_dirent_name (133 samples, 0.03%)</title><rect x="39.9735%" y="661" width="0.0294%" height="15" fill="rgb(237,73,46)" fg:x="180623" fg:w="133"/><text x="40.2235%" y="671.50"></text></g><g><title>memchr (99 samples, 0.02%)</title><rect x="39.9810%" y="645" width="0.0219%" height="15" fill="rgb(242,78,33)" fg:x="180657" fg:w="99"/><text x="40.2310%" y="655.50"></text></g><g><title>btrfs_get_16 (143 samples, 0.03%)</title><rect x="40.0058%" y="693" width="0.0316%" height="15" fill="rgb(235,60,3)" fg:x="180769" fg:w="143"/><text x="40.2558%" y="703.50"></text></g><g><title>btrfs_get_32 (118 samples, 0.03%)</title><rect x="40.0374%" y="693" width="0.0261%" height="15" fill="rgb(216,172,19)" fg:x="180912" fg:w="118"/><text x="40.2874%" y="703.50"></text></g><g><title>btrfs_get_8 (50 samples, 0.01%)</title><rect x="40.0636%" y="693" width="0.0111%" height="15" fill="rgb(227,6,42)" fg:x="181030" fg:w="50"/><text x="40.3136%" y="703.50"></text></g><g><title>btrfs_search_slot (78 samples, 0.02%)</title><rect x="40.0773%" y="677" width="0.0173%" height="15" fill="rgb(223,207,42)" fg:x="181092" fg:w="78"/><text x="40.3273%" y="687.50"></text></g><g><title>btrfs_next_old_leaf (135 samples, 0.03%)</title><rect x="40.0748%" y="693" width="0.0299%" height="15" fill="rgb(246,138,30)" fg:x="181081" fg:w="135"/><text x="40.3248%" y="703.50"></text></g><g><title>btrfs_get_delayed_node (59 samples, 0.01%)</title><rect x="40.1083%" y="677" width="0.0131%" height="15" fill="rgb(251,199,47)" fg:x="181232" fg:w="59"/><text x="40.3583%" y="687.50"></text></g><g><title>btrfs_readdir_get_delayed_items (150 samples, 0.03%)</title><rect x="40.1058%" y="693" width="0.0332%" height="15" fill="rgb(228,218,44)" fg:x="181221" fg:w="150"/><text x="40.3558%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (63 samples, 0.01%)</title><rect x="40.1505%" y="677" width="0.0139%" height="15" fill="rgb(220,68,6)" fg:x="181423" fg:w="63"/><text x="40.4005%" y="687.50"></text></g><g><title>btrfs_release_path (125 samples, 0.03%)</title><rect x="40.1417%" y="693" width="0.0277%" height="15" fill="rgb(240,60,26)" fg:x="181383" fg:w="125"/><text x="40.3917%" y="703.50"></text></g><g><title>_raw_spin_lock_irqsave (62 samples, 0.01%)</title><rect x="40.2092%" y="629" width="0.0137%" height="15" fill="rgb(211,200,19)" fg:x="181688" fg:w="62"/><text x="40.4592%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (53 samples, 0.01%)</title><rect x="40.2112%" y="613" width="0.0117%" height="15" fill="rgb(242,145,30)" fg:x="181697" fg:w="53"/><text x="40.4612%" y="623.50"></text></g><g><title>prepare_to_wait_event (75 samples, 0.02%)</title><rect x="40.2074%" y="645" width="0.0166%" height="15" fill="rgb(225,64,13)" fg:x="181680" fg:w="75"/><text x="40.4574%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (326 samples, 0.07%)</title><rect x="40.2461%" y="597" width="0.0721%" height="15" fill="rgb(218,103,35)" fg:x="181855" fg:w="326"/><text x="40.4961%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (317 samples, 0.07%)</title><rect x="40.2481%" y="581" width="0.0702%" height="15" fill="rgb(216,93,46)" fg:x="181864" fg:w="317"/><text x="40.4981%" y="591.50"></text></g><g><title>native_write_msr (315 samples, 0.07%)</title><rect x="40.2486%" y="565" width="0.0697%" height="15" fill="rgb(225,159,27)" fg:x="181866" fg:w="315"/><text x="40.4986%" y="575.50"></text></g><g><title>finish_task_switch (348 samples, 0.08%)</title><rect x="40.2439%" y="613" width="0.0770%" height="15" fill="rgb(225,204,11)" fg:x="181845" fg:w="348"/><text x="40.4939%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (605 samples, 0.13%)</title><rect x="40.1979%" y="661" width="0.1339%" height="15" fill="rgb(205,56,4)" fg:x="181637" fg:w="605"/><text x="40.4479%" y="671.50"></text></g><g><title>schedule (458 samples, 0.10%)</title><rect x="40.2304%" y="645" width="0.1014%" height="15" fill="rgb(206,6,35)" fg:x="181784" fg:w="458"/><text x="40.4804%" y="655.50"></text></g><g><title>__schedule (452 samples, 0.10%)</title><rect x="40.2318%" y="629" width="0.1000%" height="15" fill="rgb(247,73,52)" fg:x="181790" fg:w="452"/><text x="40.4818%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (680 samples, 0.15%)</title><rect x="40.1948%" y="677" width="0.1505%" height="15" fill="rgb(246,97,4)" fg:x="181623" fg:w="680"/><text x="40.4448%" y="687.50"></text></g><g><title>btrfs_root_node (61 samples, 0.01%)</title><rect x="40.3318%" y="661" width="0.0135%" height="15" fill="rgb(212,37,15)" fg:x="182242" fg:w="61"/><text x="40.5818%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (50 samples, 0.01%)</title><rect x="40.3453%" y="677" width="0.0111%" height="15" fill="rgb(208,130,40)" fg:x="182303" fg:w="50"/><text x="40.5953%" y="687.50"></text></g><g><title>btrfs_set_path_blocking (59 samples, 0.01%)</title><rect x="40.3610%" y="677" width="0.0131%" height="15" fill="rgb(236,55,29)" fg:x="182374" fg:w="59"/><text x="40.6110%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (403 samples, 0.09%)</title><rect x="40.3895%" y="677" width="0.0892%" height="15" fill="rgb(209,156,45)" fg:x="182503" fg:w="403"/><text x="40.6395%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (47 samples, 0.01%)</title><rect x="40.4918%" y="661" width="0.0104%" height="15" fill="rgb(249,107,4)" fg:x="182965" fg:w="47"/><text x="40.7418%" y="671.50"></text></g><g><title>__radix_tree_lookup (155 samples, 0.03%)</title><rect x="40.5312%" y="645" width="0.0343%" height="15" fill="rgb(227,7,13)" fg:x="183143" fg:w="155"/><text x="40.7812%" y="655.50"></text></g><g><title>mark_extent_buffer_accessed (99 samples, 0.02%)</title><rect x="40.5655%" y="645" width="0.0219%" height="15" fill="rgb(250,129,14)" fg:x="183298" fg:w="99"/><text x="40.8155%" y="655.50"></text></g><g><title>mark_page_accessed (79 samples, 0.02%)</title><rect x="40.5699%" y="629" width="0.0175%" height="15" fill="rgb(229,92,13)" fg:x="183318" fg:w="79"/><text x="40.8199%" y="639.50"></text></g><g><title>find_extent_buffer (319 samples, 0.07%)</title><rect x="40.5179%" y="661" width="0.0706%" height="15" fill="rgb(245,98,39)" fg:x="183083" fg:w="319"/><text x="40.7679%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (552 samples, 0.12%)</title><rect x="40.4787%" y="677" width="0.1222%" height="15" fill="rgb(234,135,48)" fg:x="182906" fg:w="552"/><text x="40.7287%" y="687.50"></text></g><g><title>read_extent_buffer (56 samples, 0.01%)</title><rect x="40.5885%" y="661" width="0.0124%" height="15" fill="rgb(230,98,28)" fg:x="183402" fg:w="56"/><text x="40.8385%" y="671.50"></text></g><g><title>btrfs_search_slot (1,990 samples, 0.44%)</title><rect x="40.1693%" y="693" width="0.4404%" height="15" fill="rgb(223,121,0)" fg:x="181508" fg:w="1990"/><text x="40.4193%" y="703.50"></text></g><g><title>filldir64 (66 samples, 0.01%)</title><rect x="40.6162%" y="693" width="0.0146%" height="15" fill="rgb(234,173,33)" fg:x="183527" fg:w="66"/><text x="40.8662%" y="703.50"></text></g><g><title>kmem_cache_alloc (89 samples, 0.02%)</title><rect x="40.6376%" y="693" width="0.0197%" height="15" fill="rgb(245,47,8)" fg:x="183624" fg:w="89"/><text x="40.8876%" y="703.50"></text></g><g><title>kmem_cache_free (51 samples, 0.01%)</title><rect x="40.6573%" y="693" width="0.0113%" height="15" fill="rgb(205,17,20)" fg:x="183713" fg:w="51"/><text x="40.9073%" y="703.50"></text></g><g><title>btrfs_real_readdir (4,593 samples, 1.02%)</title><rect x="39.8099%" y="709" width="1.0165%" height="15" fill="rgb(232,151,16)" fg:x="179884" fg:w="4593"/><text x="40.0599%" y="719.50"></text></g><g><title>read_extent_buffer (713 samples, 0.16%)</title><rect x="40.6686%" y="693" width="0.1578%" height="15" fill="rgb(208,30,32)" fg:x="183764" fg:w="713"/><text x="40.9186%" y="703.50"></text></g><g><title>security_file_permission (58 samples, 0.01%)</title><rect x="40.8366%" y="709" width="0.0128%" height="15" fill="rgb(254,26,3)" fg:x="184523" fg:w="58"/><text x="41.0866%" y="719.50"></text></g><g><title>btrfs_delayed_update_inode (48 samples, 0.01%)</title><rect x="40.8620%" y="661" width="0.0106%" height="15" fill="rgb(240,177,30)" fg:x="184638" fg:w="48"/><text x="41.1120%" y="671.50"></text></g><g><title>btrfs_update_inode (56 samples, 0.01%)</title><rect x="40.8616%" y="677" width="0.0124%" height="15" fill="rgb(248,76,44)" fg:x="184636" fg:w="56"/><text x="41.1116%" y="687.50"></text></g><g><title>btrfs_dirty_inode (77 samples, 0.02%)</title><rect x="40.8598%" y="693" width="0.0170%" height="15" fill="rgb(241,186,54)" fg:x="184628" fg:w="77"/><text x="41.1098%" y="703.50"></text></g><g><title>touch_atime (126 samples, 0.03%)</title><rect x="40.8494%" y="709" width="0.0279%" height="15" fill="rgb(249,171,29)" fg:x="184581" fg:w="126"/><text x="41.0994%" y="719.50"></text></g><g><title>iterate_dir (4,878 samples, 1.08%)</title><rect x="39.8015%" y="725" width="1.0795%" height="15" fill="rgb(237,151,44)" fg:x="179846" fg:w="4878"/><text x="40.0515%" y="735.50"></text></g><g><title>do_syscall_64 (4,974 samples, 1.10%)</title><rect x="39.7825%" y="757" width="1.1008%" height="15" fill="rgb(228,174,30)" fg:x="179760" fg:w="4974"/><text x="40.0325%" y="767.50"></text></g><g><title>__x64_sys_getdents64 (4,968 samples, 1.10%)</title><rect x="39.7838%" y="741" width="1.0995%" height="15" fill="rgb(252,14,37)" fg:x="179766" fg:w="4968"/><text x="40.0338%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,009 samples, 1.11%)</title><rect x="39.7807%" y="773" width="1.1085%" height="15" fill="rgb(207,111,40)" fg:x="179752" fg:w="5009"/><text x="40.0307%" y="783.50"></text></g><g><title>__GI___getdents64 (5,080 samples, 1.12%)</title><rect x="39.7690%" y="789" width="1.1242%" height="15" fill="rgb(248,171,54)" fg:x="179699" fg:w="5080"/><text x="40.0190%" y="799.50"></text></g><g><title>__GI___readdir64 (5,334 samples, 1.18%)</title><rect x="39.7130%" y="805" width="1.1805%" height="15" fill="rgb(211,127,2)" fg:x="179446" fg:w="5334"/><text x="39.9630%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (259 samples, 0.06%)</title><rect x="40.9311%" y="789" width="0.0573%" height="15" fill="rgb(236,87,47)" fg:x="184950" fg:w="259"/><text x="41.1811%" y="799.50"></text></g><g><title>kmem_cache_free (408 samples, 0.09%)</title><rect x="41.0842%" y="709" width="0.0903%" height="15" fill="rgb(223,190,45)" fg:x="185642" fg:w="408"/><text x="41.3342%" y="719.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (86 samples, 0.02%)</title><rect x="41.1555%" y="693" width="0.0190%" height="15" fill="rgb(215,5,16)" fg:x="185964" fg:w="86"/><text x="41.4055%" y="703.50"></text></g><g><title>__legitimize_mnt (199 samples, 0.04%)</title><rect x="41.2115%" y="645" width="0.0440%" height="15" fill="rgb(252,82,33)" fg:x="186217" fg:w="199"/><text x="41.4615%" y="655.50"></text></g><g><title>__legitimize_path (349 samples, 0.08%)</title><rect x="41.2057%" y="661" width="0.0772%" height="15" fill="rgb(247,213,44)" fg:x="186191" fg:w="349"/><text x="41.4557%" y="671.50"></text></g><g><title>lockref_get_not_dead (124 samples, 0.03%)</title><rect x="41.2555%" y="645" width="0.0274%" height="15" fill="rgb(205,196,44)" fg:x="186416" fg:w="124"/><text x="41.5055%" y="655.50"></text></g><g><title>complete_walk (440 samples, 0.10%)</title><rect x="41.1938%" y="693" width="0.0974%" height="15" fill="rgb(237,96,54)" fg:x="186137" fg:w="440"/><text x="41.4438%" y="703.50"></text></g><g><title>try_to_unlazy (421 samples, 0.09%)</title><rect x="41.1980%" y="677" width="0.0932%" height="15" fill="rgb(230,113,34)" fg:x="186156" fg:w="421"/><text x="41.4480%" y="687.50"></text></g><g><title>btrfs_permission (89 samples, 0.02%)</title><rect x="42.2707%" y="661" width="0.0197%" height="15" fill="rgb(221,224,12)" fg:x="191003" fg:w="89"/><text x="42.5207%" y="671.50"></text></g><g><title>inode_permission.part.0 (2,461 samples, 0.54%)</title><rect x="41.8840%" y="677" width="0.5446%" height="15" fill="rgb(219,112,44)" fg:x="189256" fg:w="2461"/><text x="42.1340%" y="687.50"></text></g><g><title>generic_permission (625 samples, 0.14%)</title><rect x="42.2904%" y="661" width="0.1383%" height="15" fill="rgb(210,31,13)" fg:x="191092" fg:w="625"/><text x="42.5404%" y="671.50"></text></g><g><title>security_inode_permission (235 samples, 0.05%)</title><rect x="42.4287%" y="677" width="0.0520%" height="15" fill="rgb(230,25,16)" fg:x="191717" fg:w="235"/><text x="42.6787%" y="687.50"></text></g><g><title>__d_lookup_rcu (2,936 samples, 0.65%)</title><rect x="42.8434%" y="645" width="0.6498%" height="15" fill="rgb(246,108,53)" fg:x="193591" fg:w="2936"/><text x="43.0934%" y="655.50"></text></g><g><title>lookup_fast (3,694 samples, 0.82%)</title><rect x="42.6768%" y="661" width="0.8175%" height="15" fill="rgb(241,172,50)" fg:x="192838" fg:w="3694"/><text x="42.9268%" y="671.50"></text></g><g><title>__lookup_mnt (100 samples, 0.02%)</title><rect x="43.7171%" y="645" width="0.0221%" height="15" fill="rgb(235,141,10)" fg:x="197539" fg:w="100"/><text x="43.9671%" y="655.50"></text></g><g><title>link_path_walk.part.0 (11,076 samples, 2.45%)</title><rect x="41.2912%" y="693" width="2.4512%" height="15" fill="rgb(220,174,43)" fg:x="186577" fg:w="11076"/><text x="41.5412%" y="703.50">li..</text></g><g><title>walk_component (5,701 samples, 1.26%)</title><rect x="42.4807%" y="677" width="1.2617%" height="15" fill="rgb(215,181,40)" fg:x="191952" fg:w="5701"/><text x="42.7307%" y="687.50"></text></g><g><title>step_into (1,121 samples, 0.25%)</title><rect x="43.4943%" y="661" width="0.2481%" height="15" fill="rgb(230,97,2)" fg:x="196532" fg:w="1121"/><text x="43.7443%" y="671.50"></text></g><g><title>path_init (423 samples, 0.09%)</title><rect x="43.7424%" y="693" width="0.0936%" height="15" fill="rgb(211,25,27)" fg:x="197653" fg:w="423"/><text x="43.9924%" y="703.50"></text></g><g><title>nd_jump_root (290 samples, 0.06%)</title><rect x="43.7718%" y="677" width="0.0642%" height="15" fill="rgb(230,87,26)" fg:x="197786" fg:w="290"/><text x="44.0218%" y="687.50"></text></g><g><title>set_root (233 samples, 0.05%)</title><rect x="43.7844%" y="661" width="0.0516%" height="15" fill="rgb(227,160,17)" fg:x="197843" fg:w="233"/><text x="44.0344%" y="671.50"></text></g><g><title>terminate_walk (68 samples, 0.02%)</title><rect x="43.8360%" y="693" width="0.0150%" height="15" fill="rgb(244,85,34)" fg:x="198076" fg:w="68"/><text x="44.0860%" y="703.50"></text></g><g><title>lookup_fast (1,475 samples, 0.33%)</title><rect x="43.8623%" y="677" width="0.3264%" height="15" fill="rgb(207,70,0)" fg:x="198195" fg:w="1475"/><text x="44.1123%" y="687.50"></text></g><g><title>__d_lookup_rcu (1,439 samples, 0.32%)</title><rect x="43.8703%" y="661" width="0.3185%" height="15" fill="rgb(223,129,7)" fg:x="198231" fg:w="1439"/><text x="44.1203%" y="671.50"></text></g><g><title>path_lookupat (13,674 samples, 3.03%)</title><rect x="41.1745%" y="709" width="3.0262%" height="15" fill="rgb(246,105,7)" fg:x="186050" fg:w="13674"/><text x="41.4245%" y="719.50">pat..</text></g><g><title>walk_component (1,580 samples, 0.35%)</title><rect x="43.8510%" y="693" width="0.3497%" height="15" fill="rgb(215,154,42)" fg:x="198144" fg:w="1580"/><text x="44.1010%" y="703.50"></text></g><g><title>step_into (54 samples, 0.01%)</title><rect x="44.1888%" y="677" width="0.0120%" height="15" fill="rgb(220,215,30)" fg:x="199670" fg:w="54"/><text x="44.4388%" y="687.50"></text></g><g><title>filename_lookup (14,272 samples, 3.16%)</title><rect x="41.0477%" y="725" width="3.1585%" height="15" fill="rgb(228,81,51)" fg:x="185477" fg:w="14272"/><text x="41.2977%" y="735.50">fil..</text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="44.2392%" y="677" width="0.0106%" height="15" fill="rgb(247,71,54)" fg:x="199898" fg:w="48"/><text x="44.4892%" y="687.50"></text></g><g><title>_cond_resched (73 samples, 0.02%)</title><rect x="44.2352%" y="693" width="0.0162%" height="15" fill="rgb(234,176,34)" fg:x="199880" fg:w="73"/><text x="44.4852%" y="703.50"></text></g><g><title>btrfs_dentry_delete (652 samples, 0.14%)</title><rect x="44.2514%" y="693" width="0.1443%" height="15" fill="rgb(241,103,54)" fg:x="199953" fg:w="652"/><text x="44.5014%" y="703.50"></text></g><g><title>lockref_put_or_lock (136 samples, 0.03%)</title><rect x="44.3957%" y="693" width="0.0301%" height="15" fill="rgb(228,22,34)" fg:x="200605" fg:w="136"/><text x="44.6457%" y="703.50"></text></g><g><title>_raw_spin_lock (93 samples, 0.02%)</title><rect x="44.4052%" y="677" width="0.0206%" height="15" fill="rgb(241,179,48)" fg:x="200648" fg:w="93"/><text x="44.6552%" y="687.50"></text></g><g><title>path_put (955 samples, 0.21%)</title><rect x="44.2155%" y="725" width="0.2114%" height="15" fill="rgb(235,167,37)" fg:x="199791" fg:w="955"/><text x="44.4655%" y="735.50"></text></g><g><title>dput (941 samples, 0.21%)</title><rect x="44.2186%" y="709" width="0.2083%" height="15" fill="rgb(213,109,30)" fg:x="199805" fg:w="941"/><text x="44.4686%" y="719.50"></text></g><g><title>security_inode_readlink (675 samples, 0.15%)</title><rect x="44.4269%" y="725" width="0.1494%" height="15" fill="rgb(222,172,16)" fg:x="200746" fg:w="675"/><text x="44.6769%" y="735.50"></text></g><g><title>atime_needs_update (273 samples, 0.06%)</title><rect x="44.5900%" y="709" width="0.0604%" height="15" fill="rgb(233,192,5)" fg:x="201483" fg:w="273"/><text x="44.8400%" y="719.50"></text></g><g><title>current_time (58 samples, 0.01%)</title><rect x="44.6376%" y="693" width="0.0128%" height="15" fill="rgb(247,189,41)" fg:x="201698" fg:w="58"/><text x="44.8876%" y="703.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="44.6528%" y="693" width="0.0133%" height="15" fill="rgb(218,134,47)" fg:x="201767" fg:w="60"/><text x="44.9028%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (69 samples, 0.02%)</title><rect x="44.6796%" y="661" width="0.0153%" height="15" fill="rgb(216,29,3)" fg:x="201888" fg:w="69"/><text x="44.9296%" y="671.50"></text></g><g><title>_raw_spin_lock (77 samples, 0.02%)</title><rect x="44.7122%" y="613" width="0.0170%" height="15" fill="rgb(246,140,12)" fg:x="202035" fg:w="77"/><text x="44.9622%" y="623.50"></text></g><g><title>native_queued_spin_lock_slowpath (52 samples, 0.01%)</title><rect x="44.7177%" y="597" width="0.0115%" height="15" fill="rgb(230,136,11)" fg:x="202060" fg:w="52"/><text x="44.9677%" y="607.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (76 samples, 0.02%)</title><rect x="44.7292%" y="613" width="0.0168%" height="15" fill="rgb(247,22,47)" fg:x="202112" fg:w="76"/><text x="44.9792%" y="623.50"></text></g><g><title>btrfs_block_rsv_add (314 samples, 0.07%)</title><rect x="44.6949%" y="661" width="0.0695%" height="15" fill="rgb(218,84,22)" fg:x="201957" fg:w="314"/><text x="44.9449%" y="671.50"></text></g><g><title>btrfs_reserve_metadata_bytes (283 samples, 0.06%)</title><rect x="44.7018%" y="645" width="0.0626%" height="15" fill="rgb(216,87,39)" fg:x="201988" fg:w="283"/><text x="44.9518%" y="655.50"></text></g><g><title>__reserve_bytes (262 samples, 0.06%)</title><rect x="44.7064%" y="629" width="0.0580%" height="15" fill="rgb(221,178,8)" fg:x="202009" fg:w="262"/><text x="44.9564%" y="639.50"></text></g><g><title>calc_available_free_space.isra.0 (83 samples, 0.02%)</title><rect x="44.7460%" y="613" width="0.0184%" height="15" fill="rgb(230,42,11)" fg:x="202188" fg:w="83"/><text x="44.9960%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (70 samples, 0.02%)</title><rect x="44.7644%" y="661" width="0.0155%" height="15" fill="rgb(237,229,4)" fg:x="202271" fg:w="70"/><text x="45.0144%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (66 samples, 0.01%)</title><rect x="44.7653%" y="645" width="0.0146%" height="15" fill="rgb(222,31,33)" fg:x="202275" fg:w="66"/><text x="45.0153%" y="655.50"></text></g><g><title>fill_stack_inode_item (47 samples, 0.01%)</title><rect x="44.7803%" y="661" width="0.0104%" height="15" fill="rgb(210,17,39)" fg:x="202343" fg:w="47"/><text x="45.0303%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (542 samples, 0.12%)</title><rect x="44.6739%" y="677" width="0.1199%" height="15" fill="rgb(244,93,20)" fg:x="201862" fg:w="542"/><text x="44.9239%" y="687.50"></text></g><g><title>btrfs_update_inode (585 samples, 0.13%)</title><rect x="44.6717%" y="693" width="0.1295%" height="15" fill="rgb(210,40,47)" fg:x="201852" fg:w="585"/><text x="44.9217%" y="703.50"></text></g><g><title>queue_work_on (56 samples, 0.01%)</title><rect x="44.8011%" y="693" width="0.0124%" height="15" fill="rgb(239,211,47)" fg:x="202437" fg:w="56"/><text x="45.0511%" y="703.50"></text></g><g><title>__queue_work (56 samples, 0.01%)</title><rect x="44.8011%" y="677" width="0.0124%" height="15" fill="rgb(251,223,49)" fg:x="202437" fg:w="56"/><text x="45.0511%" y="687.50"></text></g><g><title>join_transaction (60 samples, 0.01%)</title><rect x="44.8206%" y="677" width="0.0133%" height="15" fill="rgb(221,149,5)" fg:x="202525" fg:w="60"/><text x="45.0706%" y="687.50"></text></g><g><title>btrfs_dirty_inode (857 samples, 0.19%)</title><rect x="44.6504%" y="709" width="0.1897%" height="15" fill="rgb(219,224,51)" fg:x="201756" fg:w="857"/><text x="44.9004%" y="719.50"></text></g><g><title>start_transaction (120 samples, 0.03%)</title><rect x="44.8135%" y="693" width="0.0266%" height="15" fill="rgb(223,7,8)" fg:x="202493" fg:w="120"/><text x="45.0635%" y="703.50"></text></g><g><title>touch_atime (1,230 samples, 0.27%)</title><rect x="44.5763%" y="725" width="0.2722%" height="15" fill="rgb(241,217,22)" fg:x="201421" fg:w="1230"/><text x="44.8263%" y="735.50"></text></g><g><title>memcg_slab_post_alloc_hook (46 samples, 0.01%)</title><rect x="44.9324%" y="677" width="0.0102%" height="15" fill="rgb(248,209,0)" fg:x="203030" fg:w="46"/><text x="45.1824%" y="687.50"></text></g><g><title>memset_erms (823 samples, 0.18%)</title><rect x="44.9428%" y="677" width="0.1821%" height="15" fill="rgb(217,205,4)" fg:x="203077" fg:w="823"/><text x="45.1928%" y="687.50"></text></g><g><title>_cond_resched (73 samples, 0.02%)</title><rect x="45.1433%" y="661" width="0.0162%" height="15" fill="rgb(228,124,39)" fg:x="203983" fg:w="73"/><text x="45.3933%" y="671.50"></text></g><g><title>kmem_cache_alloc (1,284 samples, 0.28%)</title><rect x="44.8777%" y="693" width="0.2842%" height="15" fill="rgb(250,116,42)" fg:x="202783" fg:w="1284"/><text x="45.1277%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (167 samples, 0.04%)</title><rect x="45.1249%" y="677" width="0.0370%" height="15" fill="rgb(223,202,9)" fg:x="203900" fg:w="167"/><text x="45.3749%" y="687.50"></text></g><g><title>__check_heap_object (130 samples, 0.03%)</title><rect x="45.3739%" y="661" width="0.0288%" height="15" fill="rgb(242,222,40)" fg:x="205025" fg:w="130"/><text x="45.6239%" y="671.50"></text></g><g><title>__virt_addr_valid (231 samples, 0.05%)</title><rect x="45.4026%" y="661" width="0.0511%" height="15" fill="rgb(229,99,46)" fg:x="205155" fg:w="231"/><text x="45.6526%" y="671.50"></text></g><g><title>user_path_at_empty (2,763 samples, 0.61%)</title><rect x="44.8485%" y="725" width="0.6115%" height="15" fill="rgb(225,56,46)" fg:x="202651" fg:w="2763"/><text x="45.0985%" y="735.50"></text></g><g><title>getname_flags.part.0 (2,732 samples, 0.60%)</title><rect x="44.8553%" y="709" width="0.6046%" height="15" fill="rgb(227,94,5)" fg:x="202682" fg:w="2732"/><text x="45.1053%" y="719.50"></text></g><g><title>strncpy_from_user (1,347 samples, 0.30%)</title><rect x="45.1619%" y="693" width="0.2981%" height="15" fill="rgb(205,112,38)" fg:x="204067" fg:w="1347"/><text x="45.4119%" y="703.50"></text></g><g><title>__check_object_size (519 samples, 0.11%)</title><rect x="45.3451%" y="677" width="0.1149%" height="15" fill="rgb(231,133,46)" fg:x="204895" fg:w="519"/><text x="45.5951%" y="687.50"></text></g><g><title>__list_del_entry_valid (48 samples, 0.01%)</title><rect x="45.6284%" y="645" width="0.0106%" height="15" fill="rgb(217,16,9)" fg:x="206175" fg:w="48"/><text x="45.8784%" y="655.50"></text></g><g><title>kernel_init_free_pages (148 samples, 0.03%)</title><rect x="45.6403%" y="629" width="0.0328%" height="15" fill="rgb(249,173,9)" fg:x="206229" fg:w="148"/><text x="45.8903%" y="639.50"></text></g><g><title>clear_page_erms (142 samples, 0.03%)</title><rect x="45.6417%" y="613" width="0.0314%" height="15" fill="rgb(205,163,53)" fg:x="206235" fg:w="142"/><text x="45.8917%" y="623.50"></text></g><g><title>get_page_from_freelist (276 samples, 0.06%)</title><rect x="45.6129%" y="661" width="0.0611%" height="15" fill="rgb(217,54,41)" fg:x="206105" fg:w="276"/><text x="45.8629%" y="671.50"></text></g><g><title>prep_new_page (157 samples, 0.03%)</title><rect x="45.6392%" y="645" width="0.0347%" height="15" fill="rgb(228,216,12)" fg:x="206224" fg:w="157"/><text x="45.8892%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (324 samples, 0.07%)</title><rect x="45.6029%" y="677" width="0.0717%" height="15" fill="rgb(244,228,15)" fg:x="206060" fg:w="324"/><text x="45.8529%" y="687.50"></text></g><g><title>mem_cgroup_charge (90 samples, 0.02%)</title><rect x="45.7003%" y="645" width="0.0199%" height="15" fill="rgb(221,176,53)" fg:x="206500" fg:w="90"/><text x="45.9503%" y="655.50"></text></g><g><title>__add_to_page_cache_locked (262 samples, 0.06%)</title><rect x="45.6766%" y="661" width="0.0580%" height="15" fill="rgb(205,94,34)" fg:x="206393" fg:w="262"/><text x="45.9266%" y="671.50"></text></g><g><title>__pagevec_lru_add_fn (58 samples, 0.01%)</title><rect x="45.7397%" y="629" width="0.0128%" height="15" fill="rgb(213,110,48)" fg:x="206678" fg:w="58"/><text x="45.9897%" y="639.50"></text></g><g><title>add_to_page_cache_lru (368 samples, 0.08%)</title><rect x="45.6746%" y="677" width="0.0814%" height="15" fill="rgb(236,142,28)" fg:x="206384" fg:w="368"/><text x="45.9246%" y="687.50"></text></g><g><title>lru_cache_add (97 samples, 0.02%)</title><rect x="45.7346%" y="661" width="0.0215%" height="15" fill="rgb(225,135,29)" fg:x="206655" fg:w="97"/><text x="45.9846%" y="671.50"></text></g><g><title>pagevec_lru_move_fn (82 samples, 0.02%)</title><rect x="45.7379%" y="645" width="0.0181%" height="15" fill="rgb(252,45,31)" fg:x="206670" fg:w="82"/><text x="45.9879%" y="655.50"></text></g><g><title>__wake_up_common_lock (49 samples, 0.01%)</title><rect x="45.8048%" y="613" width="0.0108%" height="15" fill="rgb(211,187,50)" fg:x="206972" fg:w="49"/><text x="46.0548%" y="623.50"></text></g><g><title>clear_state_bit (84 samples, 0.02%)</title><rect x="45.8028%" y="629" width="0.0186%" height="15" fill="rgb(229,109,7)" fg:x="206963" fg:w="84"/><text x="46.0528%" y="639.50"></text></g><g><title>__clear_extent_bit (204 samples, 0.05%)</title><rect x="45.7835%" y="645" width="0.0451%" height="15" fill="rgb(251,131,51)" fg:x="206876" fg:w="204"/><text x="46.0335%" y="655.50"></text></g><g><title>alloc_extent_map (90 samples, 0.02%)</title><rect x="45.8652%" y="629" width="0.0199%" height="15" fill="rgb(251,180,35)" fg:x="207245" fg:w="90"/><text x="46.1152%" y="639.50"></text></g><g><title>kmem_cache_alloc (86 samples, 0.02%)</title><rect x="45.8661%" y="613" width="0.0190%" height="15" fill="rgb(211,46,32)" fg:x="207249" fg:w="86"/><text x="46.1161%" y="623.50"></text></g><g><title>btrfs_extent_item_to_extent_map (77 samples, 0.02%)</title><rect x="45.8922%" y="629" width="0.0170%" height="15" fill="rgb(248,123,17)" fg:x="207367" fg:w="77"/><text x="46.1422%" y="639.50"></text></g><g><title>btrfs_get_8 (69 samples, 0.02%)</title><rect x="45.9251%" y="629" width="0.0153%" height="15" fill="rgb(227,141,18)" fg:x="207516" fg:w="69"/><text x="46.1751%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (92 samples, 0.02%)</title><rect x="45.9539%" y="597" width="0.0204%" height="15" fill="rgb(216,102,9)" fg:x="207646" fg:w="92"/><text x="46.2039%" y="607.50"></text></g><g><title>btrfs_root_node (53 samples, 0.01%)</title><rect x="45.9626%" y="581" width="0.0117%" height="15" fill="rgb(253,47,13)" fg:x="207685" fg:w="53"/><text x="46.2126%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (154 samples, 0.03%)</title><rect x="45.9957%" y="597" width="0.0341%" height="15" fill="rgb(226,93,23)" fg:x="207835" fg:w="154"/><text x="46.2457%" y="607.50"></text></g><g><title>__radix_tree_lookup (103 samples, 0.02%)</title><rect x="46.0705%" y="565" width="0.0228%" height="15" fill="rgb(247,104,17)" fg:x="208173" fg:w="103"/><text x="46.3205%" y="575.50"></text></g><g><title>mark_extent_buffer_accessed (53 samples, 0.01%)</title><rect x="46.0933%" y="565" width="0.0117%" height="15" fill="rgb(233,203,26)" fg:x="208276" fg:w="53"/><text x="46.3433%" y="575.50"></text></g><g><title>find_extent_buffer (219 samples, 0.05%)</title><rect x="46.0570%" y="581" width="0.0485%" height="15" fill="rgb(244,98,49)" fg:x="208112" fg:w="219"/><text x="46.3070%" y="591.50"></text></g><g><title>read_block_for_search.isra.0 (367 samples, 0.08%)</title><rect x="46.0298%" y="597" width="0.0812%" height="15" fill="rgb(235,134,22)" fg:x="207989" fg:w="367"/><text x="46.2798%" y="607.50"></text></g><g><title>btrfs_lookup_file_extent (795 samples, 0.18%)</title><rect x="45.9404%" y="629" width="0.1759%" height="15" fill="rgb(221,70,32)" fg:x="207585" fg:w="795"/><text x="46.1904%" y="639.50"></text></g><g><title>btrfs_search_slot (793 samples, 0.18%)</title><rect x="45.9409%" y="613" width="0.1755%" height="15" fill="rgb(238,15,50)" fg:x="207587" fg:w="793"/><text x="46.1909%" y="623.50"></text></g><g><title>free_extent_buffer.part.0 (62 samples, 0.01%)</title><rect x="46.1232%" y="613" width="0.0137%" height="15" fill="rgb(215,221,48)" fg:x="208411" fg:w="62"/><text x="46.3732%" y="623.50"></text></g><g><title>btrfs_release_path (108 samples, 0.02%)</title><rect x="46.1164%" y="629" width="0.0239%" height="15" fill="rgb(236,73,3)" fg:x="208380" fg:w="108"/><text x="46.3664%" y="639.50"></text></g><g><title>kmem_cache_alloc (60 samples, 0.01%)</title><rect x="46.1478%" y="629" width="0.0133%" height="15" fill="rgb(250,107,11)" fg:x="208522" fg:w="60"/><text x="46.3978%" y="639.50"></text></g><g><title>read_extent_buffer (79 samples, 0.02%)</title><rect x="46.1695%" y="629" width="0.0175%" height="15" fill="rgb(242,39,14)" fg:x="208620" fg:w="79"/><text x="46.4195%" y="639.50"></text></g><g><title>alloc_extent_state (49 samples, 0.01%)</title><rect x="46.1932%" y="597" width="0.0108%" height="15" fill="rgb(248,164,37)" fg:x="208727" fg:w="49"/><text x="46.4432%" y="607.50"></text></g><g><title>btrfs_get_extent (1,737 samples, 0.38%)</title><rect x="45.8287%" y="645" width="0.3844%" height="15" fill="rgb(217,60,12)" fg:x="207080" fg:w="1737"/><text x="46.0787%" y="655.50"></text></g><g><title>set_extent_bit (118 samples, 0.03%)</title><rect x="46.1870%" y="629" width="0.0261%" height="15" fill="rgb(240,125,29)" fg:x="208699" fg:w="118"/><text x="46.4370%" y="639.50"></text></g><g><title>__set_extent_bit (118 samples, 0.03%)</title><rect x="46.1870%" y="613" width="0.0261%" height="15" fill="rgb(208,207,28)" fg:x="208699" fg:w="118"/><text x="46.4370%" y="623.50"></text></g><g><title>btrfs_do_readpage (2,083 samples, 0.46%)</title><rect x="45.7627%" y="661" width="0.4610%" height="15" fill="rgb(209,159,27)" fg:x="206782" fg:w="2083"/><text x="46.0127%" y="671.50"></text></g><g><title>alloc_extent_state (50 samples, 0.01%)</title><rect x="46.2465%" y="613" width="0.0111%" height="15" fill="rgb(251,176,53)" fg:x="208968" fg:w="50"/><text x="46.4965%" y="623.50"></text></g><g><title>btrfs_readpage (2,276 samples, 0.50%)</title><rect x="45.7605%" y="677" width="0.5037%" height="15" fill="rgb(211,85,7)" fg:x="206772" fg:w="2276"/><text x="46.0105%" y="687.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (183 samples, 0.04%)</title><rect x="46.2237%" y="661" width="0.0405%" height="15" fill="rgb(216,64,54)" fg:x="208865" fg:w="183"/><text x="46.4737%" y="671.50"></text></g><g><title>lock_extent_bits (132 samples, 0.03%)</title><rect x="46.2350%" y="645" width="0.0292%" height="15" fill="rgb(217,54,24)" fg:x="208916" fg:w="132"/><text x="46.4850%" y="655.50"></text></g><g><title>__set_extent_bit (125 samples, 0.03%)</title><rect x="46.2365%" y="629" width="0.0277%" height="15" fill="rgb(208,206,53)" fg:x="208923" fg:w="125"/><text x="46.4865%" y="639.50"></text></g><g><title>__activate_page (78 samples, 0.02%)</title><rect x="46.2799%" y="645" width="0.0173%" height="15" fill="rgb(251,74,39)" fg:x="209119" fg:w="78"/><text x="46.5299%" y="655.50"></text></g><g><title>mark_page_accessed (171 samples, 0.04%)</title><rect x="46.2642%" y="677" width="0.0378%" height="15" fill="rgb(226,47,5)" fg:x="209048" fg:w="171"/><text x="46.5142%" y="687.50"></text></g><g><title>pagevec_lru_move_fn (107 samples, 0.02%)</title><rect x="46.2784%" y="661" width="0.0237%" height="15" fill="rgb(234,111,33)" fg:x="209112" fg:w="107"/><text x="46.5284%" y="671.50"></text></g><g><title>pagecache_get_page (533 samples, 0.12%)</title><rect x="46.3020%" y="677" width="0.1180%" height="15" fill="rgb(251,14,10)" fg:x="209219" fg:w="533"/><text x="46.5520%" y="687.50"></text></g><g><title>find_get_entry (485 samples, 0.11%)</title><rect x="46.3127%" y="661" width="0.1073%" height="15" fill="rgb(232,43,0)" fg:x="209267" fg:w="485"/><text x="46.5627%" y="671.50"></text></g><g><title>xas_load (82 samples, 0.02%)</title><rect x="46.4018%" y="645" width="0.0181%" height="15" fill="rgb(222,68,43)" fg:x="209670" fg:w="82"/><text x="46.6518%" y="655.50"></text></g><g><title>xas_start (62 samples, 0.01%)</title><rect x="46.4063%" y="629" width="0.0137%" height="15" fill="rgb(217,24,23)" fg:x="209690" fg:w="62"/><text x="46.6563%" y="639.50"></text></g><g><title>do_read_cache_page (3,871 samples, 0.86%)</title><rect x="45.5888%" y="693" width="0.8567%" height="15" fill="rgb(229,209,14)" fg:x="205996" fg:w="3871"/><text x="45.8388%" y="703.50"></text></g><g><title>workingset_activation (115 samples, 0.03%)</title><rect x="46.4200%" y="677" width="0.0255%" height="15" fill="rgb(250,149,48)" fg:x="209752" fg:w="115"/><text x="46.6700%" y="687.50"></text></g><g><title>workingset_age_nonresident (97 samples, 0.02%)</title><rect x="46.4240%" y="661" width="0.0215%" height="15" fill="rgb(210,120,37)" fg:x="209770" fg:w="97"/><text x="46.6740%" y="671.50"></text></g><g><title>page_get_link (4,119 samples, 0.91%)</title><rect x="45.5626%" y="709" width="0.9116%" height="15" fill="rgb(210,21,8)" fg:x="205878" fg:w="4119"/><text x="45.8126%" y="719.50"></text></g><g><title>read_cache_page (130 samples, 0.03%)</title><rect x="46.4454%" y="693" width="0.0288%" height="15" fill="rgb(243,145,7)" fg:x="209867" fg:w="130"/><text x="46.6954%" y="703.50"></text></g><g><title>page_put_link (88 samples, 0.02%)</title><rect x="46.4742%" y="709" width="0.0195%" height="15" fill="rgb(238,178,32)" fg:x="209997" fg:w="88"/><text x="46.7242%" y="719.50"></text></g><g><title>__virt_addr_valid (160 samples, 0.04%)</title><rect x="46.5276%" y="677" width="0.0354%" height="15" fill="rgb(222,4,10)" fg:x="210238" fg:w="160"/><text x="46.7776%" y="687.50"></text></g><g><title>__check_object_size (314 samples, 0.07%)</title><rect x="46.5067%" y="693" width="0.0695%" height="15" fill="rgb(239,7,37)" fg:x="210144" fg:w="314"/><text x="46.7567%" y="703.50"></text></g><g><title>check_stack_object (60 samples, 0.01%)</title><rect x="46.5630%" y="677" width="0.0133%" height="15" fill="rgb(215,31,37)" fg:x="210398" fg:w="60"/><text x="46.8130%" y="687.50"></text></g><g><title>_copy_to_user (301 samples, 0.07%)</title><rect x="46.5762%" y="693" width="0.0666%" height="15" fill="rgb(224,83,33)" fg:x="210458" fg:w="301"/><text x="46.8262%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (268 samples, 0.06%)</title><rect x="46.5835%" y="677" width="0.0593%" height="15" fill="rgb(239,55,3)" fg:x="210491" fg:w="268"/><text x="46.8335%" y="687.50"></text></g><g><title>__x64_sys_readlink (27,398 samples, 6.06%)</title><rect x="41.0108%" y="757" width="6.0634%" height="15" fill="rgb(247,92,11)" fg:x="185310" fg:w="27398"/><text x="41.2608%" y="767.50">__x64_sy..</text></g><g><title>do_readlinkat (27,386 samples, 6.06%)</title><rect x="41.0134%" y="741" width="6.0608%" height="15" fill="rgb(239,200,7)" fg:x="185322" fg:w="27386"/><text x="41.2634%" y="751.50">do_readl..</text></g><g><title>vfs_readlink (7,294 samples, 1.61%)</title><rect x="45.4600%" y="725" width="1.6142%" height="15" fill="rgb(227,115,8)" fg:x="205414" fg:w="7294"/><text x="45.7100%" y="735.50"></text></g><g><title>readlink_copy (2,623 samples, 0.58%)</title><rect x="46.4937%" y="709" width="0.5805%" height="15" fill="rgb(215,189,27)" fg:x="210085" fg:w="2623"/><text x="46.7437%" y="719.50"></text></g><g><title>strlen (1,948 samples, 0.43%)</title><rect x="46.6431%" y="693" width="0.4311%" height="15" fill="rgb(251,216,39)" fg:x="210760" fg:w="1948"/><text x="46.8931%" y="703.50"></text></g><g><title>do_syscall_64 (27,478 samples, 6.08%)</title><rect x="41.0046%" y="773" width="6.0811%" height="15" fill="rgb(207,29,47)" fg:x="185282" fg:w="27478"/><text x="41.2546%" y="783.50">do_sysca..</text></g><g><title>syscall_enter_from_user_mode (52 samples, 0.01%)</title><rect x="47.0742%" y="757" width="0.0115%" height="15" fill="rgb(210,71,34)" fg:x="212708" fg:w="52"/><text x="47.3242%" y="767.50"></text></g><g><title>fpregs_assert_state_consistent (61 samples, 0.01%)</title><rect x="47.1023%" y="741" width="0.0135%" height="15" fill="rgb(253,217,51)" fg:x="212835" fg:w="61"/><text x="47.3523%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (27,690 samples, 6.13%)</title><rect x="40.9884%" y="789" width="6.1280%" height="15" fill="rgb(222,117,46)" fg:x="185209" fg:w="27690"/><text x="41.2384%" y="799.50">entry_SY..</text></g><g><title>syscall_exit_to_user_mode (139 samples, 0.03%)</title><rect x="47.0857%" y="773" width="0.0308%" height="15" fill="rgb(226,132,6)" fg:x="212760" fg:w="139"/><text x="47.3357%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (103 samples, 0.02%)</title><rect x="47.0937%" y="757" width="0.0228%" height="15" fill="rgb(254,145,51)" fg:x="212796" fg:w="103"/><text x="47.3437%" y="767.50"></text></g><g><title>syscall_return_via_sysret (117 samples, 0.03%)</title><rect x="47.1171%" y="789" width="0.0259%" height="15" fill="rgb(231,199,27)" fg:x="212902" fg:w="117"/><text x="47.3671%" y="799.50"></text></g><g><title>__GI___readlink (28,240 samples, 6.25%)</title><rect x="40.8935%" y="805" width="6.2498%" height="15" fill="rgb(245,158,14)" fg:x="184780" fg:w="28240"/><text x="41.1435%" y="815.50">__GI___r..</text></g><g><title>link_path_walk.part.0 (120 samples, 0.03%)</title><rect x="47.1558%" y="693" width="0.0266%" height="15" fill="rgb(240,113,14)" fg:x="213077" fg:w="120"/><text x="47.4058%" y="703.50"></text></g><g><title>walk_component (56 samples, 0.01%)</title><rect x="47.1700%" y="677" width="0.0124%" height="15" fill="rgb(210,20,13)" fg:x="213141" fg:w="56"/><text x="47.4200%" y="687.50"></text></g><g><title>filename_lookup (174 samples, 0.04%)</title><rect x="47.1508%" y="725" width="0.0385%" height="15" fill="rgb(241,144,13)" fg:x="213054" fg:w="174"/><text x="47.4008%" y="735.50"></text></g><g><title>path_lookupat (162 samples, 0.04%)</title><rect x="47.1534%" y="709" width="0.0359%" height="15" fill="rgb(235,43,34)" fg:x="213066" fg:w="162"/><text x="47.4034%" y="719.50"></text></g><g><title>__do_sys_newstat (267 samples, 0.06%)</title><rect x="47.1452%" y="757" width="0.0591%" height="15" fill="rgb(208,36,20)" fg:x="213029" fg:w="267"/><text x="47.3952%" y="767.50"></text></g><g><title>vfs_statx (251 samples, 0.06%)</title><rect x="47.1488%" y="741" width="0.0555%" height="15" fill="rgb(239,204,10)" fg:x="213045" fg:w="251"/><text x="47.3988%" y="751.50"></text></g><g><title>do_syscall_64 (275 samples, 0.06%)</title><rect x="47.1448%" y="773" width="0.0609%" height="15" fill="rgb(217,84,43)" fg:x="213027" fg:w="275"/><text x="47.3948%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (281 samples, 0.06%)</title><rect x="47.1448%" y="789" width="0.0622%" height="15" fill="rgb(241,170,50)" fg:x="213027" fg:w="281"/><text x="47.3948%" y="799.50"></text></g><g><title>__GI___xstat (289 samples, 0.06%)</title><rect x="47.1432%" y="805" width="0.0640%" height="15" fill="rgb(226,205,29)" fg:x="213020" fg:w="289"/><text x="47.3932%" y="815.50"></text></g><g><title>btrfs_rmdir (54 samples, 0.01%)</title><rect x="47.2081%" y="693" width="0.0120%" height="15" fill="rgb(233,113,1)" fg:x="213313" fg:w="54"/><text x="47.4581%" y="703.50"></text></g><g><title>evict (67 samples, 0.01%)</title><rect x="47.2205%" y="693" width="0.0148%" height="15" fill="rgb(253,98,13)" fg:x="213369" fg:w="67"/><text x="47.4705%" y="703.50"></text></g><g><title>btrfs_evict_inode (67 samples, 0.01%)</title><rect x="47.2205%" y="677" width="0.0148%" height="15" fill="rgb(211,115,12)" fg:x="213369" fg:w="67"/><text x="47.4705%" y="687.50"></text></g><g><title>__GI_remove (148 samples, 0.03%)</title><rect x="47.2074%" y="789" width="0.0328%" height="15" fill="rgb(208,12,16)" fg:x="213310" fg:w="148"/><text x="47.4574%" y="799.50"></text></g><g><title>__GI___rmdir (148 samples, 0.03%)</title><rect x="47.2074%" y="773" width="0.0328%" height="15" fill="rgb(237,193,54)" fg:x="213310" fg:w="148"/><text x="47.4574%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (148 samples, 0.03%)</title><rect x="47.2074%" y="757" width="0.0328%" height="15" fill="rgb(243,22,42)" fg:x="213310" fg:w="148"/><text x="47.4574%" y="767.50"></text></g><g><title>do_syscall_64 (148 samples, 0.03%)</title><rect x="47.2074%" y="741" width="0.0328%" height="15" fill="rgb(233,151,36)" fg:x="213310" fg:w="148"/><text x="47.4574%" y="751.50"></text></g><g><title>do_rmdir (148 samples, 0.03%)</title><rect x="47.2074%" y="725" width="0.0328%" height="15" fill="rgb(237,57,45)" fg:x="213310" fg:w="148"/><text x="47.4574%" y="735.50"></text></g><g><title>vfs_rmdir.part.0 (145 samples, 0.03%)</title><rect x="47.2081%" y="709" width="0.0321%" height="15" fill="rgb(221,88,17)" fg:x="213313" fg:w="145"/><text x="47.4581%" y="719.50"></text></g><g><title>btrfs_destroy_inode (68 samples, 0.02%)</title><rect x="47.2577%" y="709" width="0.0150%" height="15" fill="rgb(230,79,15)" fg:x="213537" fg:w="68"/><text x="47.5077%" y="719.50"></text></g><g><title>destroy_inode (77 samples, 0.02%)</title><rect x="47.2561%" y="725" width="0.0170%" height="15" fill="rgb(213,57,13)" fg:x="213530" fg:w="77"/><text x="47.5061%" y="735.50"></text></g><g><title>btrfs_del_items (139 samples, 0.03%)</title><rect x="47.2977%" y="661" width="0.0308%" height="15" fill="rgb(222,116,39)" fg:x="213718" fg:w="139"/><text x="47.5477%" y="671.50"></text></g><g><title>__wake_up_common (50 samples, 0.01%)</title><rect x="47.3679%" y="597" width="0.0111%" height="15" fill="rgb(245,107,2)" fg:x="214035" fg:w="50"/><text x="47.6179%" y="607.50"></text></g><g><title>autoremove_wake_function (48 samples, 0.01%)</title><rect x="47.3683%" y="581" width="0.0106%" height="15" fill="rgb(238,1,10)" fg:x="214037" fg:w="48"/><text x="47.6183%" y="591.50"></text></g><g><title>try_to_wake_up (48 samples, 0.01%)</title><rect x="47.3683%" y="565" width="0.0106%" height="15" fill="rgb(249,4,48)" fg:x="214037" fg:w="48"/><text x="47.6183%" y="575.50"></text></g><g><title>btrfs_lookup_inode (227 samples, 0.05%)</title><rect x="47.3294%" y="661" width="0.0502%" height="15" fill="rgb(223,151,18)" fg:x="213861" fg:w="227"/><text x="47.5794%" y="671.50"></text></g><g><title>btrfs_search_slot (225 samples, 0.05%)</title><rect x="47.3298%" y="645" width="0.0498%" height="15" fill="rgb(227,65,43)" fg:x="213863" fg:w="225"/><text x="47.5798%" y="655.50"></text></g><g><title>unlock_up (61 samples, 0.01%)</title><rect x="47.3661%" y="629" width="0.0135%" height="15" fill="rgb(218,40,45)" fg:x="214027" fg:w="61"/><text x="47.6161%" y="639.50"></text></g><g><title>__wake_up_common_lock (53 samples, 0.01%)</title><rect x="47.3679%" y="613" width="0.0117%" height="15" fill="rgb(252,121,31)" fg:x="214035" fg:w="53"/><text x="47.6179%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (422 samples, 0.09%)</title><rect x="47.2970%" y="677" width="0.0934%" height="15" fill="rgb(219,158,43)" fg:x="213715" fg:w="422"/><text x="47.5470%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (474 samples, 0.10%)</title><rect x="47.2917%" y="693" width="0.1049%" height="15" fill="rgb(231,162,42)" fg:x="213691" fg:w="474"/><text x="47.5417%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (70 samples, 0.02%)</title><rect x="47.4037%" y="645" width="0.0155%" height="15" fill="rgb(217,179,25)" fg:x="214197" fg:w="70"/><text x="47.6537%" y="655.50"></text></g><g><title>schedule (51 samples, 0.01%)</title><rect x="47.4079%" y="629" width="0.0113%" height="15" fill="rgb(206,212,31)" fg:x="214216" fg:w="51"/><text x="47.6579%" y="639.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="47.4079%" y="613" width="0.0113%" height="15" fill="rgb(235,144,12)" fg:x="214216" fg:w="51"/><text x="47.6579%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (72 samples, 0.02%)</title><rect x="47.4037%" y="661" width="0.0159%" height="15" fill="rgb(213,51,10)" fg:x="214197" fg:w="72"/><text x="47.6537%" y="671.50"></text></g><g><title>btrfs_lock_root_node (72 samples, 0.02%)</title><rect x="47.4256%" y="661" width="0.0159%" height="15" fill="rgb(231,145,14)" fg:x="214296" fg:w="72"/><text x="47.6756%" y="671.50"></text></g><g><title>__btrfs_tree_lock (72 samples, 0.02%)</title><rect x="47.4256%" y="645" width="0.0159%" height="15" fill="rgb(235,15,28)" fg:x="214296" fg:w="72"/><text x="47.6756%" y="655.50"></text></g><g><title>schedule (52 samples, 0.01%)</title><rect x="47.4300%" y="629" width="0.0115%" height="15" fill="rgb(237,206,10)" fg:x="214316" fg:w="52"/><text x="47.6800%" y="639.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="47.4303%" y="613" width="0.0113%" height="15" fill="rgb(236,227,27)" fg:x="214317" fg:w="51"/><text x="47.6803%" y="623.50"></text></g><g><title>btrfs_search_slot (280 samples, 0.06%)</title><rect x="47.4024%" y="677" width="0.0620%" height="15" fill="rgb(246,83,35)" fg:x="214191" fg:w="280"/><text x="47.6524%" y="687.50"></text></g><g><title>unlock_up (50 samples, 0.01%)</title><rect x="47.4533%" y="661" width="0.0111%" height="15" fill="rgb(220,136,24)" fg:x="214421" fg:w="50"/><text x="47.7033%" y="671.50"></text></g><g><title>btrfs_del_orphan_item (312 samples, 0.07%)</title><rect x="47.3966%" y="693" width="0.0690%" height="15" fill="rgb(217,3,25)" fg:x="214165" fg:w="312"/><text x="47.6466%" y="703.50"></text></g><g><title>btrfs_get_token_32 (48 samples, 0.01%)</title><rect x="47.4810%" y="661" width="0.0106%" height="15" fill="rgb(239,24,14)" fg:x="214546" fg:w="48"/><text x="47.7310%" y="671.50"></text></g><g><title>btrfs_del_items (169 samples, 0.04%)</title><rect x="47.4750%" y="677" width="0.0374%" height="15" fill="rgb(244,16,53)" fg:x="214519" fg:w="169"/><text x="47.7250%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (53 samples, 0.01%)</title><rect x="47.5356%" y="645" width="0.0117%" height="15" fill="rgb(208,175,44)" fg:x="214793" fg:w="53"/><text x="47.7856%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (54 samples, 0.01%)</title><rect x="47.5356%" y="661" width="0.0120%" height="15" fill="rgb(252,18,48)" fg:x="214793" fg:w="54"/><text x="47.7856%" y="671.50"></text></g><g><title>btrfs_lock_root_node (75 samples, 0.02%)</title><rect x="47.5533%" y="661" width="0.0166%" height="15" fill="rgb(234,199,32)" fg:x="214873" fg:w="75"/><text x="47.8033%" y="671.50"></text></g><g><title>__btrfs_tree_lock (75 samples, 0.02%)</title><rect x="47.5533%" y="645" width="0.0166%" height="15" fill="rgb(225,77,54)" fg:x="214873" fg:w="75"/><text x="47.8033%" y="655.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="47.5577%" y="629" width="0.0122%" height="15" fill="rgb(225,42,25)" fg:x="214893" fg:w="55"/><text x="47.8077%" y="639.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="47.5577%" y="613" width="0.0122%" height="15" fill="rgb(242,227,46)" fg:x="214893" fg:w="55"/><text x="47.8077%" y="623.50"></text></g><g><title>btrfs_search_slot (281 samples, 0.06%)</title><rect x="47.5336%" y="677" width="0.0622%" height="15" fill="rgb(246,197,35)" fg:x="214784" fg:w="281"/><text x="47.7836%" y="687.50"></text></g><g><title>unlock_up (47 samples, 0.01%)</title><rect x="47.5854%" y="661" width="0.0104%" height="15" fill="rgb(215,159,26)" fg:x="215018" fg:w="47"/><text x="47.8354%" y="671.50"></text></g><g><title>btrfs_truncate_inode_items (612 samples, 0.14%)</title><rect x="47.4663%" y="693" width="0.1354%" height="15" fill="rgb(212,194,50)" fg:x="214480" fg:w="612"/><text x="47.7163%" y="703.50"></text></g><g><title>evict_refill_and_join (61 samples, 0.01%)</title><rect x="47.6027%" y="693" width="0.0135%" height="15" fill="rgb(246,132,1)" fg:x="215096" fg:w="61"/><text x="47.8527%" y="703.50"></text></g><g><title>btrfs_evict_inode (1,559 samples, 0.35%)</title><rect x="47.2791%" y="709" width="0.3450%" height="15" fill="rgb(217,71,7)" fg:x="213634" fg:w="1559"/><text x="47.5291%" y="719.50"></text></g><g><title>evict (1,578 samples, 0.35%)</title><rect x="47.2756%" y="725" width="0.3492%" height="15" fill="rgb(252,59,32)" fg:x="213618" fg:w="1578"/><text x="47.5256%" y="735.50"></text></g><g><title>link_path_walk.part.0 (110 samples, 0.02%)</title><rect x="47.6268%" y="693" width="0.0243%" height="15" fill="rgb(253,204,25)" fg:x="215205" fg:w="110"/><text x="47.8768%" y="703.50"></text></g><g><title>walk_component (65 samples, 0.01%)</title><rect x="47.6368%" y="677" width="0.0144%" height="15" fill="rgb(232,21,16)" fg:x="215250" fg:w="65"/><text x="47.8868%" y="687.50"></text></g><g><title>filename_parentat (127 samples, 0.03%)</title><rect x="47.6248%" y="725" width="0.0281%" height="15" fill="rgb(248,90,29)" fg:x="215196" fg:w="127"/><text x="47.8748%" y="735.50"></text></g><g><title>path_parentat (125 samples, 0.03%)</title><rect x="47.6252%" y="709" width="0.0277%" height="15" fill="rgb(249,223,7)" fg:x="215198" fg:w="125"/><text x="47.8752%" y="719.50"></text></g><g><title>btrfs_del_dir_entries_in_log (101 samples, 0.02%)</title><rect x="47.6673%" y="677" width="0.0224%" height="15" fill="rgb(231,119,42)" fg:x="215388" fg:w="101"/><text x="47.9173%" y="687.50"></text></g><g><title>btrfs_search_slot (92 samples, 0.02%)</title><rect x="47.6936%" y="645" width="0.0204%" height="15" fill="rgb(215,41,35)" fg:x="215507" fg:w="92"/><text x="47.9436%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (123 samples, 0.03%)</title><rect x="47.6899%" y="661" width="0.0272%" height="15" fill="rgb(220,44,45)" fg:x="215490" fg:w="123"/><text x="47.9399%" y="671.50"></text></g><g><title>btrfs_del_inode_ref_in_log (126 samples, 0.03%)</title><rect x="47.6896%" y="677" width="0.0279%" height="15" fill="rgb(253,197,36)" fg:x="215489" fg:w="126"/><text x="47.9396%" y="687.50"></text></g><g><title>btrfs_del_items (145 samples, 0.03%)</title><rect x="47.7175%" y="677" width="0.0321%" height="15" fill="rgb(245,225,54)" fg:x="215615" fg:w="145"/><text x="47.9675%" y="687.50"></text></g><g><title>btrfs_lock_root_node (46 samples, 0.01%)</title><rect x="47.7822%" y="645" width="0.0102%" height="15" fill="rgb(239,94,37)" fg:x="215907" fg:w="46"/><text x="48.0322%" y="655.50"></text></g><g><title>btrfs_search_slot (171 samples, 0.04%)</title><rect x="47.7698%" y="661" width="0.0378%" height="15" fill="rgb(242,217,10)" fg:x="215851" fg:w="171"/><text x="48.0198%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (187 samples, 0.04%)</title><rect x="47.7669%" y="677" width="0.0414%" height="15" fill="rgb(250,193,7)" fg:x="215838" fg:w="187"/><text x="48.0169%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (671 samples, 0.15%)</title><rect x="47.6653%" y="693" width="0.1485%" height="15" fill="rgb(230,104,19)" fg:x="215379" fg:w="671"/><text x="47.9153%" y="703.50"></text></g><g><title>btrfs_search_slot (134 samples, 0.03%)</title><rect x="47.8209%" y="645" width="0.0297%" height="15" fill="rgb(230,181,4)" fg:x="216082" fg:w="134"/><text x="48.0709%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (164 samples, 0.04%)</title><rect x="47.8200%" y="661" width="0.0363%" height="15" fill="rgb(216,219,49)" fg:x="216078" fg:w="164"/><text x="48.0700%" y="671.50"></text></g><g><title>btrfs_orphan_add (177 samples, 0.04%)</title><rect x="47.8180%" y="693" width="0.0392%" height="15" fill="rgb(254,144,0)" fg:x="216069" fg:w="177"/><text x="48.0680%" y="703.50"></text></g><g><title>btrfs_insert_orphan_item (176 samples, 0.04%)</title><rect x="47.8182%" y="677" width="0.0390%" height="15" fill="rgb(205,209,38)" fg:x="216070" fg:w="176"/><text x="48.0682%" y="687.50"></text></g><g><title>btrfs_unlink (943 samples, 0.21%)</title><rect x="47.6604%" y="709" width="0.2087%" height="15" fill="rgb(240,21,42)" fg:x="215357" fg:w="943"/><text x="47.9104%" y="719.50"></text></g><g><title>do_syscall_64 (2,861 samples, 0.63%)</title><rect x="47.2426%" y="757" width="0.6332%" height="15" fill="rgb(241,132,3)" fg:x="213469" fg:w="2861"/><text x="47.4926%" y="767.50"></text></g><g><title>do_unlinkat (2,833 samples, 0.63%)</title><rect x="47.2488%" y="741" width="0.6270%" height="15" fill="rgb(225,14,2)" fg:x="213497" fg:w="2833"/><text x="47.4988%" y="751.50"></text></g><g><title>vfs_unlink (976 samples, 0.22%)</title><rect x="47.6598%" y="725" width="0.2160%" height="15" fill="rgb(210,141,35)" fg:x="215354" fg:w="976"/><text x="47.9098%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,865 samples, 0.63%)</title><rect x="47.2422%" y="773" width="0.6341%" height="15" fill="rgb(251,14,44)" fg:x="213467" fg:w="2865"/><text x="47.4922%" y="783.50"></text></g><g><title>__GI_remove (3,024 samples, 0.67%)</title><rect x="47.2072%" y="805" width="0.6692%" height="15" fill="rgb(247,48,18)" fg:x="213309" fg:w="3024"/><text x="47.4572%" y="815.50"></text></g><g><title>__unlink (2,875 samples, 0.64%)</title><rect x="47.2402%" y="789" width="0.6363%" height="15" fill="rgb(225,0,40)" fg:x="213458" fg:w="2875"/><text x="47.4902%" y="799.50"></text></g><g><title>kmem_cache_alloc (50 samples, 0.01%)</title><rect x="47.8875%" y="725" width="0.0111%" height="15" fill="rgb(221,31,33)" fg:x="216383" fg:w="50"/><text x="48.1375%" y="735.50"></text></g><g><title>__x64_sys_unlinkat (83 samples, 0.02%)</title><rect x="47.8857%" y="757" width="0.0184%" height="15" fill="rgb(237,42,40)" fg:x="216375" fg:w="83"/><text x="48.1357%" y="767.50"></text></g><g><title>getname_flags.part.0 (78 samples, 0.02%)</title><rect x="47.8868%" y="741" width="0.0173%" height="15" fill="rgb(233,51,29)" fg:x="216380" fg:w="78"/><text x="48.1368%" y="751.50"></text></g><g><title>btrfs_lookup_dir_item (63 samples, 0.01%)</title><rect x="47.9313%" y="693" width="0.0139%" height="15" fill="rgb(226,58,20)" fg:x="216581" fg:w="63"/><text x="48.1813%" y="703.50"></text></g><g><title>btrfs_search_slot (59 samples, 0.01%)</title><rect x="47.9322%" y="677" width="0.0131%" height="15" fill="rgb(208,98,7)" fg:x="216585" fg:w="59"/><text x="48.1822%" y="687.50"></text></g><g><title>__btrfs_unlink_inode (174 samples, 0.04%)</title><rect x="47.9112%" y="709" width="0.0385%" height="15" fill="rgb(228,143,44)" fg:x="216490" fg:w="174"/><text x="48.1612%" y="719.50"></text></g><g><title>btrfs_insert_empty_items (49 samples, 0.01%)</title><rect x="47.9506%" y="677" width="0.0108%" height="15" fill="rgb(246,55,38)" fg:x="216668" fg:w="49"/><text x="48.2006%" y="687.50"></text></g><g><title>btrfs_orphan_add (53 samples, 0.01%)</title><rect x="47.9501%" y="709" width="0.0117%" height="15" fill="rgb(247,87,16)" fg:x="216666" fg:w="53"/><text x="48.2001%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (52 samples, 0.01%)</title><rect x="47.9503%" y="693" width="0.0115%" height="15" fill="rgb(234,129,42)" fg:x="216667" fg:w="52"/><text x="48.2003%" y="703.50"></text></g><g><title>btrfs_rmdir (247 samples, 0.05%)</title><rect x="47.9107%" y="725" width="0.0547%" height="15" fill="rgb(220,82,16)" fg:x="216488" fg:w="247"/><text x="48.1607%" y="735.50"></text></g><g><title>btrfs_del_items (46 samples, 0.01%)</title><rect x="47.9758%" y="661" width="0.0102%" height="15" fill="rgb(211,88,4)" fg:x="216782" fg:w="46"/><text x="48.2258%" y="671.50"></text></g><g><title>btrfs_lookup_inode (64 samples, 0.01%)</title><rect x="47.9866%" y="661" width="0.0142%" height="15" fill="rgb(248,151,21)" fg:x="216831" fg:w="64"/><text x="48.2366%" y="671.50"></text></g><g><title>btrfs_search_slot (64 samples, 0.01%)</title><rect x="47.9866%" y="645" width="0.0142%" height="15" fill="rgb(238,163,6)" fg:x="216831" fg:w="64"/><text x="48.2366%" y="655.50"></text></g><g><title>__btrfs_update_delayed_inode (120 samples, 0.03%)</title><rect x="47.9758%" y="677" width="0.0266%" height="15" fill="rgb(209,183,11)" fg:x="216782" fg:w="120"/><text x="48.2258%" y="687.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (131 samples, 0.03%)</title><rect x="47.9754%" y="693" width="0.0290%" height="15" fill="rgb(219,37,20)" fg:x="216780" fg:w="131"/><text x="48.2254%" y="703.50"></text></g><g><title>btrfs_search_slot (91 samples, 0.02%)</title><rect x="48.0066%" y="677" width="0.0201%" height="15" fill="rgb(210,158,4)" fg:x="216921" fg:w="91"/><text x="48.2566%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (102 samples, 0.02%)</title><rect x="48.0043%" y="693" width="0.0226%" height="15" fill="rgb(221,167,53)" fg:x="216911" fg:w="102"/><text x="48.2543%" y="703.50"></text></g><g><title>btrfs_del_items (46 samples, 0.01%)</title><rect x="48.0291%" y="677" width="0.0102%" height="15" fill="rgb(237,151,45)" fg:x="217023" fg:w="46"/><text x="48.2791%" y="687.50"></text></g><g><title>btrfs_search_slot (68 samples, 0.02%)</title><rect x="48.0493%" y="677" width="0.0150%" height="15" fill="rgb(231,39,3)" fg:x="217114" fg:w="68"/><text x="48.2993%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (176 samples, 0.04%)</title><rect x="48.0269%" y="693" width="0.0390%" height="15" fill="rgb(212,167,28)" fg:x="217013" fg:w="176"/><text x="48.2769%" y="703.50"></text></g><g><title>btrfs_evict_inode (442 samples, 0.10%)</title><rect x="47.9716%" y="709" width="0.0978%" height="15" fill="rgb(232,178,8)" fg:x="216763" fg:w="442"/><text x="48.2216%" y="719.50"></text></g><g><title>evict (447 samples, 0.10%)</title><rect x="47.9707%" y="725" width="0.0989%" height="15" fill="rgb(225,151,20)" fg:x="216759" fg:w="447"/><text x="48.2207%" y="735.50"></text></g><g><title>do_rmdir (818 samples, 0.18%)</title><rect x="47.9041%" y="757" width="0.1810%" height="15" fill="rgb(238,3,37)" fg:x="216458" fg:w="818"/><text x="48.1541%" y="767.50"></text></g><g><title>vfs_rmdir.part.0 (788 samples, 0.17%)</title><rect x="47.9107%" y="741" width="0.1744%" height="15" fill="rgb(251,147,42)" fg:x="216488" fg:w="788"/><text x="48.1607%" y="751.50"></text></g><g><title>shrink_dcache_parent (66 samples, 0.01%)</title><rect x="48.0705%" y="725" width="0.0146%" height="15" fill="rgb(208,173,10)" fg:x="217210" fg:w="66"/><text x="48.3205%" y="735.50"></text></g><g><title>__lookup_hash (63 samples, 0.01%)</title><rect x="48.0880%" y="741" width="0.0139%" height="15" fill="rgb(246,225,4)" fg:x="217289" fg:w="63"/><text x="48.3380%" y="751.50"></text></g><g><title>lookup_dcache (60 samples, 0.01%)</title><rect x="48.0887%" y="725" width="0.0133%" height="15" fill="rgb(248,102,6)" fg:x="217292" fg:w="60"/><text x="48.3387%" y="735.50"></text></g><g><title>d_lookup (57 samples, 0.01%)</title><rect x="48.0893%" y="709" width="0.0126%" height="15" fill="rgb(232,6,21)" fg:x="217295" fg:w="57"/><text x="48.3393%" y="719.50"></text></g><g><title>__d_lookup (53 samples, 0.01%)</title><rect x="48.0902%" y="693" width="0.0117%" height="15" fill="rgb(221,179,22)" fg:x="217299" fg:w="53"/><text x="48.3402%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (51 samples, 0.01%)</title><rect x="48.1137%" y="709" width="0.0113%" height="15" fill="rgb(252,50,20)" fg:x="217405" fg:w="51"/><text x="48.3637%" y="719.50"></text></g><g><title>clear_record_extent_bits (52 samples, 0.01%)</title><rect x="48.1351%" y="693" width="0.0115%" height="15" fill="rgb(222,56,38)" fg:x="217502" fg:w="52"/><text x="48.3851%" y="703.50"></text></g><g><title>__clear_extent_bit (48 samples, 0.01%)</title><rect x="48.1360%" y="677" width="0.0106%" height="15" fill="rgb(206,193,29)" fg:x="217506" fg:w="48"/><text x="48.3860%" y="687.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (60 samples, 0.01%)</title><rect x="48.1349%" y="709" width="0.0133%" height="15" fill="rgb(239,192,45)" fg:x="217501" fg:w="60"/><text x="48.3849%" y="719.50"></text></g><g><title>btrfs_destroy_inode (206 samples, 0.05%)</title><rect x="48.1119%" y="725" width="0.0456%" height="15" fill="rgb(254,18,36)" fg:x="217397" fg:w="206"/><text x="48.3619%" y="735.50"></text></g><g><title>destroy_inode (242 samples, 0.05%)</title><rect x="48.1048%" y="741" width="0.0536%" height="15" fill="rgb(221,127,11)" fg:x="217365" fg:w="242"/><text x="48.3548%" y="751.50"></text></g><g><title>__btrfs_end_transaction (100 samples, 0.02%)</title><rect x="48.1770%" y="709" width="0.0221%" height="15" fill="rgb(234,146,35)" fg:x="217691" fg:w="100"/><text x="48.4270%" y="719.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (69 samples, 0.02%)</title><rect x="48.1991%" y="709" width="0.0153%" height="15" fill="rgb(254,201,37)" fg:x="217791" fg:w="69"/><text x="48.4491%" y="719.50"></text></g><g><title>btrfs_get_token_32 (125 samples, 0.03%)</title><rect x="48.2595%" y="661" width="0.0277%" height="15" fill="rgb(211,202,23)" fg:x="218064" fg:w="125"/><text x="48.5095%" y="671.50"></text></g><g><title>btrfs_set_token_32 (103 samples, 0.02%)</title><rect x="48.2885%" y="661" width="0.0228%" height="15" fill="rgb(237,91,2)" fg:x="218195" fg:w="103"/><text x="48.5385%" y="671.50"></text></g><g><title>memmove_extent_buffer (182 samples, 0.04%)</title><rect x="48.3166%" y="661" width="0.0403%" height="15" fill="rgb(226,228,36)" fg:x="218322" fg:w="182"/><text x="48.5666%" y="671.50"></text></g><g><title>memmove (155 samples, 0.03%)</title><rect x="48.3226%" y="645" width="0.0343%" height="15" fill="rgb(213,63,50)" fg:x="218349" fg:w="155"/><text x="48.5726%" y="655.50"></text></g><g><title>btrfs_del_items (519 samples, 0.11%)</title><rect x="48.2460%" y="677" width="0.1149%" height="15" fill="rgb(235,194,19)" fg:x="218003" fg:w="519"/><text x="48.4960%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.01%)</title><rect x="48.3936%" y="565" width="0.0104%" height="15" fill="rgb(207,204,18)" fg:x="218670" fg:w="47"/><text x="48.6436%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.01%)</title><rect x="48.3939%" y="549" width="0.0102%" height="15" fill="rgb(248,8,7)" fg:x="218671" fg:w="46"/><text x="48.6439%" y="559.50"></text></g><g><title>finish_task_switch (53 samples, 0.01%)</title><rect x="48.3930%" y="581" width="0.0117%" height="15" fill="rgb(223,145,47)" fg:x="218667" fg:w="53"/><text x="48.6430%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (145 samples, 0.03%)</title><rect x="48.3773%" y="629" width="0.0321%" height="15" fill="rgb(228,84,11)" fg:x="218596" fg:w="145"/><text x="48.6273%" y="639.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="48.3877%" y="613" width="0.0217%" height="15" fill="rgb(218,76,45)" fg:x="218643" fg:w="98"/><text x="48.6377%" y="623.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="48.3879%" y="597" width="0.0215%" height="15" fill="rgb(223,80,15)" fg:x="218644" fg:w="97"/><text x="48.6379%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (153 samples, 0.03%)</title><rect x="48.3766%" y="645" width="0.0339%" height="15" fill="rgb(219,218,33)" fg:x="218593" fg:w="153"/><text x="48.6266%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.02%)</title><rect x="48.4171%" y="581" width="0.0157%" height="15" fill="rgb(208,51,11)" fg:x="218776" fg:w="71"/><text x="48.6671%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (70 samples, 0.02%)</title><rect x="48.4173%" y="565" width="0.0155%" height="15" fill="rgb(229,165,39)" fg:x="218777" fg:w="70"/><text x="48.6673%" y="575.50"></text></g><g><title>native_write_msr (70 samples, 0.02%)</title><rect x="48.4173%" y="549" width="0.0155%" height="15" fill="rgb(241,100,24)" fg:x="218777" fg:w="70"/><text x="48.6673%" y="559.50"></text></g><g><title>finish_task_switch (76 samples, 0.02%)</title><rect x="48.4164%" y="597" width="0.0168%" height="15" fill="rgb(228,14,23)" fg:x="218773" fg:w="76"/><text x="48.6664%" y="607.50"></text></g><g><title>__btrfs_tree_lock (115 samples, 0.03%)</title><rect x="48.4104%" y="645" width="0.0255%" height="15" fill="rgb(247,116,52)" fg:x="218746" fg:w="115"/><text x="48.6604%" y="655.50"></text></g><g><title>schedule (108 samples, 0.02%)</title><rect x="48.4120%" y="629" width="0.0239%" height="15" fill="rgb(216,149,33)" fg:x="218753" fg:w="108"/><text x="48.6620%" y="639.50"></text></g><g><title>__schedule (108 samples, 0.02%)</title><rect x="48.4120%" y="613" width="0.0239%" height="15" fill="rgb(238,142,29)" fg:x="218753" fg:w="108"/><text x="48.6620%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="48.4534%" y="565" width="0.0221%" height="15" fill="rgb(224,83,40)" fg:x="218940" fg:w="100"/><text x="48.7034%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (97 samples, 0.02%)</title><rect x="48.4540%" y="549" width="0.0215%" height="15" fill="rgb(234,165,11)" fg:x="218943" fg:w="97"/><text x="48.7040%" y="559.50"></text></g><g><title>native_write_msr (97 samples, 0.02%)</title><rect x="48.4540%" y="533" width="0.0215%" height="15" fill="rgb(215,96,23)" fg:x="218943" fg:w="97"/><text x="48.7040%" y="543.50"></text></g><g><title>finish_task_switch (109 samples, 0.02%)</title><rect x="48.4525%" y="581" width="0.0241%" height="15" fill="rgb(233,179,26)" fg:x="218936" fg:w="109"/><text x="48.7025%" y="591.50"></text></g><g><title>__btrfs_tree_lock (195 samples, 0.04%)</title><rect x="48.4366%" y="629" width="0.0432%" height="15" fill="rgb(225,129,33)" fg:x="218864" fg:w="195"/><text x="48.6866%" y="639.50"></text></g><g><title>schedule (146 samples, 0.03%)</title><rect x="48.4474%" y="613" width="0.0323%" height="15" fill="rgb(237,49,13)" fg:x="218913" fg:w="146"/><text x="48.6974%" y="623.50"></text></g><g><title>__schedule (145 samples, 0.03%)</title><rect x="48.4476%" y="597" width="0.0321%" height="15" fill="rgb(211,3,31)" fg:x="218914" fg:w="145"/><text x="48.6976%" y="607.50"></text></g><g><title>btrfs_lock_root_node (197 samples, 0.04%)</title><rect x="48.4366%" y="645" width="0.0436%" height="15" fill="rgb(216,152,19)" fg:x="218864" fg:w="197"/><text x="48.6866%" y="655.50"></text></g><g><title>find_extent_buffer (70 samples, 0.02%)</title><rect x="48.5043%" y="629" width="0.0155%" height="15" fill="rgb(251,121,35)" fg:x="219170" fg:w="70"/><text x="48.7543%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.03%)</title><rect x="48.4957%" y="645" width="0.0266%" height="15" fill="rgb(210,217,47)" fg:x="219131" fg:w="120"/><text x="48.7457%" y="655.50"></text></g><g><title>ttwu_do_activate (61 samples, 0.01%)</title><rect x="48.5561%" y="565" width="0.0135%" height="15" fill="rgb(244,116,22)" fg:x="219404" fg:w="61"/><text x="48.8061%" y="575.50"></text></g><g><title>__wake_up_common (163 samples, 0.04%)</title><rect x="48.5373%" y="613" width="0.0361%" height="15" fill="rgb(228,17,21)" fg:x="219319" fg:w="163"/><text x="48.7873%" y="623.50"></text></g><g><title>autoremove_wake_function (162 samples, 0.04%)</title><rect x="48.5375%" y="597" width="0.0359%" height="15" fill="rgb(240,149,34)" fg:x="219320" fg:w="162"/><text x="48.7875%" y="607.50"></text></g><g><title>try_to_wake_up (159 samples, 0.04%)</title><rect x="48.5381%" y="581" width="0.0352%" height="15" fill="rgb(208,125,47)" fg:x="219323" fg:w="159"/><text x="48.7881%" y="591.50"></text></g><g><title>__wake_up_common_lock (165 samples, 0.04%)</title><rect x="48.5373%" y="629" width="0.0365%" height="15" fill="rgb(249,186,39)" fg:x="219319" fg:w="165"/><text x="48.7873%" y="639.50"></text></g><g><title>btrfs_lookup_inode (937 samples, 0.21%)</title><rect x="48.3677%" y="677" width="0.2074%" height="15" fill="rgb(240,220,33)" fg:x="218553" fg:w="937"/><text x="48.6177%" y="687.50"></text></g><g><title>btrfs_search_slot (932 samples, 0.21%)</title><rect x="48.3688%" y="661" width="0.2063%" height="15" fill="rgb(243,110,23)" fg:x="218558" fg:w="932"/><text x="48.6188%" y="671.50"></text></g><g><title>unlock_up (194 samples, 0.04%)</title><rect x="48.5322%" y="645" width="0.0429%" height="15" fill="rgb(219,163,46)" fg:x="219296" fg:w="194"/><text x="48.7822%" y="655.50"></text></g><g><title>__wake_up_common (77 samples, 0.02%)</title><rect x="48.5769%" y="645" width="0.0170%" height="15" fill="rgb(216,126,30)" fg:x="219498" fg:w="77"/><text x="48.8269%" y="655.50"></text></g><g><title>autoremove_wake_function (76 samples, 0.02%)</title><rect x="48.5771%" y="629" width="0.0168%" height="15" fill="rgb(208,139,11)" fg:x="219499" fg:w="76"/><text x="48.8271%" y="639.50"></text></g><g><title>try_to_wake_up (75 samples, 0.02%)</title><rect x="48.5773%" y="613" width="0.0166%" height="15" fill="rgb(213,118,36)" fg:x="219500" fg:w="75"/><text x="48.8273%" y="623.50"></text></g><g><title>__wake_up_common_lock (78 samples, 0.02%)</title><rect x="48.5769%" y="661" width="0.0173%" height="15" fill="rgb(226,43,17)" fg:x="219498" fg:w="78"/><text x="48.8269%" y="671.50"></text></g><g><title>btrfs_release_path (118 samples, 0.03%)</title><rect x="48.5764%" y="677" width="0.0261%" height="15" fill="rgb(254,217,4)" fg:x="219496" fg:w="118"/><text x="48.8264%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (1,678 samples, 0.37%)</title><rect x="48.2425%" y="693" width="0.3714%" height="15" fill="rgb(210,134,47)" fg:x="217987" fg:w="1678"/><text x="48.4925%" y="703.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (1,861 samples, 0.41%)</title><rect x="48.2270%" y="709" width="0.4119%" height="15" fill="rgb(237,24,49)" fg:x="217917" fg:w="1861"/><text x="48.4770%" y="719.50"></text></g><g><title>btrfs_del_items (47 samples, 0.01%)</title><rect x="48.6391%" y="693" width="0.0104%" height="15" fill="rgb(251,39,46)" fg:x="219779" fg:w="47"/><text x="48.8891%" y="703.50"></text></g><g><title>__wake_up_common_lock (46 samples, 0.01%)</title><rect x="48.6499%" y="661" width="0.0102%" height="15" fill="rgb(251,220,3)" fg:x="219828" fg:w="46"/><text x="48.8999%" y="671.50"></text></g><g><title>btrfs_free_path (81 samples, 0.02%)</title><rect x="48.6495%" y="693" width="0.0179%" height="15" fill="rgb(228,105,12)" fg:x="219826" fg:w="81"/><text x="48.8995%" y="703.50"></text></g><g><title>btrfs_release_path (81 samples, 0.02%)</title><rect x="48.6495%" y="677" width="0.0179%" height="15" fill="rgb(215,196,1)" fg:x="219826" fg:w="81"/><text x="48.8995%" y="687.50"></text></g><g><title>prepare_to_wait_event (46 samples, 0.01%)</title><rect x="48.6820%" y="645" width="0.0102%" height="15" fill="rgb(214,33,39)" fg:x="219973" fg:w="46"/><text x="48.9320%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (161 samples, 0.04%)</title><rect x="48.7017%" y="597" width="0.0356%" height="15" fill="rgb(220,19,52)" fg:x="220062" fg:w="161"/><text x="48.9517%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (159 samples, 0.04%)</title><rect x="48.7021%" y="581" width="0.0352%" height="15" fill="rgb(221,78,38)" fg:x="220064" fg:w="159"/><text x="48.9521%" y="591.50"></text></g><g><title>native_write_msr (158 samples, 0.03%)</title><rect x="48.7024%" y="565" width="0.0350%" height="15" fill="rgb(253,30,16)" fg:x="220065" fg:w="158"/><text x="48.9524%" y="575.50"></text></g><g><title>finish_task_switch (172 samples, 0.04%)</title><rect x="48.7008%" y="613" width="0.0381%" height="15" fill="rgb(242,65,0)" fg:x="220058" fg:w="172"/><text x="48.9508%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (307 samples, 0.07%)</title><rect x="48.6771%" y="661" width="0.0679%" height="15" fill="rgb(235,201,12)" fg:x="219951" fg:w="307"/><text x="48.9271%" y="671.50"></text></g><g><title>schedule (231 samples, 0.05%)</title><rect x="48.6939%" y="645" width="0.0511%" height="15" fill="rgb(233,161,9)" fg:x="220027" fg:w="231"/><text x="48.9439%" y="655.50"></text></g><g><title>__schedule (227 samples, 0.05%)</title><rect x="48.6948%" y="629" width="0.0502%" height="15" fill="rgb(241,207,41)" fg:x="220031" fg:w="227"/><text x="48.9448%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (316 samples, 0.07%)</title><rect x="48.6771%" y="677" width="0.0699%" height="15" fill="rgb(212,69,46)" fg:x="219951" fg:w="316"/><text x="48.9271%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="48.7528%" y="613" width="0.0179%" height="15" fill="rgb(239,69,45)" fg:x="220293" fg:w="81"/><text x="49.0028%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (81 samples, 0.02%)</title><rect x="48.7528%" y="597" width="0.0179%" height="15" fill="rgb(242,117,48)" fg:x="220293" fg:w="81"/><text x="49.0028%" y="607.50"></text></g><g><title>native_write_msr (80 samples, 0.02%)</title><rect x="48.7530%" y="581" width="0.0177%" height="15" fill="rgb(228,41,36)" fg:x="220294" fg:w="80"/><text x="49.0030%" y="591.50"></text></g><g><title>finish_task_switch (85 samples, 0.02%)</title><rect x="48.7526%" y="629" width="0.0188%" height="15" fill="rgb(212,3,32)" fg:x="220292" fg:w="85"/><text x="49.0026%" y="639.50"></text></g><g><title>__btrfs_tree_lock (122 samples, 0.03%)</title><rect x="48.7471%" y="677" width="0.0270%" height="15" fill="rgb(233,41,49)" fg:x="220267" fg:w="122"/><text x="48.9971%" y="687.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="48.7497%" y="661" width="0.0243%" height="15" fill="rgb(252,170,49)" fg:x="220279" fg:w="110"/><text x="48.9997%" y="671.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="48.7497%" y="645" width="0.0243%" height="15" fill="rgb(229,53,26)" fg:x="220279" fg:w="110"/><text x="48.9997%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.04%)</title><rect x="48.8064%" y="597" width="0.0405%" height="15" fill="rgb(217,157,12)" fg:x="220535" fg:w="183"/><text x="49.0564%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (175 samples, 0.04%)</title><rect x="48.8081%" y="581" width="0.0387%" height="15" fill="rgb(227,17,9)" fg:x="220543" fg:w="175"/><text x="49.0581%" y="591.50"></text></g><g><title>native_write_msr (173 samples, 0.04%)</title><rect x="48.8086%" y="565" width="0.0383%" height="15" fill="rgb(218,84,12)" fg:x="220545" fg:w="173"/><text x="49.0586%" y="575.50"></text></g><g><title>finish_task_switch (199 samples, 0.04%)</title><rect x="48.8053%" y="613" width="0.0440%" height="15" fill="rgb(212,79,24)" fg:x="220530" fg:w="199"/><text x="49.0553%" y="623.50"></text></g><g><title>__btrfs_tree_lock (362 samples, 0.08%)</title><rect x="48.7756%" y="661" width="0.0801%" height="15" fill="rgb(217,222,37)" fg:x="220396" fg:w="362"/><text x="49.0256%" y="671.50"></text></g><g><title>schedule (269 samples, 0.06%)</title><rect x="48.7962%" y="645" width="0.0595%" height="15" fill="rgb(246,208,8)" fg:x="220489" fg:w="269"/><text x="49.0462%" y="655.50"></text></g><g><title>__schedule (268 samples, 0.06%)</title><rect x="48.7964%" y="629" width="0.0593%" height="15" fill="rgb(244,133,10)" fg:x="220490" fg:w="268"/><text x="49.0464%" y="639.50"></text></g><g><title>btrfs_lock_root_node (367 samples, 0.08%)</title><rect x="48.7752%" y="677" width="0.0812%" height="15" fill="rgb(209,219,41)" fg:x="220394" fg:w="367"/><text x="49.0252%" y="687.50"></text></g><g><title>find_extent_buffer (74 samples, 0.02%)</title><rect x="48.8860%" y="661" width="0.0164%" height="15" fill="rgb(253,175,45)" fg:x="220895" fg:w="74"/><text x="49.1360%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (133 samples, 0.03%)</title><rect x="48.8750%" y="677" width="0.0294%" height="15" fill="rgb(235,100,37)" fg:x="220845" fg:w="133"/><text x="49.1250%" y="687.50"></text></g><g><title>ttwu_do_activate (53 samples, 0.01%)</title><rect x="48.9336%" y="597" width="0.0117%" height="15" fill="rgb(225,87,19)" fg:x="221110" fg:w="53"/><text x="49.1836%" y="607.50"></text></g><g><title>__wake_up_common (153 samples, 0.03%)</title><rect x="48.9133%" y="645" width="0.0339%" height="15" fill="rgb(217,152,17)" fg:x="221018" fg:w="153"/><text x="49.1633%" y="655.50"></text></g><g><title>autoremove_wake_function (149 samples, 0.03%)</title><rect x="48.9141%" y="629" width="0.0330%" height="15" fill="rgb(235,72,13)" fg:x="221022" fg:w="149"/><text x="49.1641%" y="639.50"></text></g><g><title>try_to_wake_up (147 samples, 0.03%)</title><rect x="48.9146%" y="613" width="0.0325%" height="15" fill="rgb(233,140,18)" fg:x="221024" fg:w="147"/><text x="49.1646%" y="623.50"></text></g><g><title>__wake_up_common_lock (156 samples, 0.03%)</title><rect x="48.9133%" y="661" width="0.0345%" height="15" fill="rgb(207,212,28)" fg:x="221018" fg:w="156"/><text x="49.1633%" y="671.50"></text></g><g><title>btrfs_search_slot (1,277 samples, 0.28%)</title><rect x="48.6674%" y="693" width="0.2826%" height="15" fill="rgb(220,130,25)" fg:x="219907" fg:w="1277"/><text x="48.9174%" y="703.50"></text></g><g><title>unlock_up (178 samples, 0.04%)</title><rect x="48.9106%" y="677" width="0.0394%" height="15" fill="rgb(205,55,34)" fg:x="221006" fg:w="178"/><text x="49.1606%" y="687.50"></text></g><g><title>btrfs_del_orphan_item (1,429 samples, 0.32%)</title><rect x="48.6388%" y="709" width="0.3163%" height="15" fill="rgb(237,54,35)" fg:x="219778" fg:w="1429"/><text x="48.8888%" y="719.50"></text></g><g><title>__clear_extent_bit (90 samples, 0.02%)</title><rect x="48.9666%" y="693" width="0.0199%" height="15" fill="rgb(208,67,23)" fg:x="221259" fg:w="90"/><text x="49.2166%" y="703.50"></text></g><g><title>btrfs_get_token_32 (161 samples, 0.04%)</title><rect x="49.0038%" y="677" width="0.0356%" height="15" fill="rgb(206,207,50)" fg:x="221427" fg:w="161"/><text x="49.2538%" y="687.50"></text></g><g><title>btrfs_set_token_32 (129 samples, 0.03%)</title><rect x="49.0410%" y="677" width="0.0285%" height="15" fill="rgb(213,211,42)" fg:x="221595" fg:w="129"/><text x="49.2910%" y="687.50"></text></g><g><title>memmove_extent_buffer (151 samples, 0.03%)</title><rect x="49.0799%" y="677" width="0.0334%" height="15" fill="rgb(252,197,50)" fg:x="221771" fg:w="151"/><text x="49.3299%" y="687.50"></text></g><g><title>memmove (113 samples, 0.03%)</title><rect x="49.0883%" y="661" width="0.0250%" height="15" fill="rgb(251,211,41)" fg:x="221809" fg:w="113"/><text x="49.3383%" y="671.50"></text></g><g><title>btrfs_del_items (621 samples, 0.14%)</title><rect x="48.9865%" y="693" width="0.1374%" height="15" fill="rgb(229,211,5)" fg:x="221349" fg:w="621"/><text x="49.2365%" y="703.50"></text></g><g><title>btrfs_drop_extent_cache (66 samples, 0.01%)</title><rect x="49.1239%" y="693" width="0.0146%" height="15" fill="rgb(239,36,31)" fg:x="221970" fg:w="66"/><text x="49.3739%" y="703.50"></text></g><g><title>__wake_up_common_lock (106 samples, 0.02%)</title><rect x="49.1403%" y="661" width="0.0235%" height="15" fill="rgb(248,67,31)" fg:x="222044" fg:w="106"/><text x="49.3903%" y="671.50"></text></g><g><title>__wake_up_common (106 samples, 0.02%)</title><rect x="49.1403%" y="645" width="0.0235%" height="15" fill="rgb(249,55,44)" fg:x="222044" fg:w="106"/><text x="49.3903%" y="655.50"></text></g><g><title>autoremove_wake_function (98 samples, 0.02%)</title><rect x="49.1421%" y="629" width="0.0217%" height="15" fill="rgb(216,82,12)" fg:x="222052" fg:w="98"/><text x="49.3921%" y="639.50"></text></g><g><title>try_to_wake_up (96 samples, 0.02%)</title><rect x="49.1425%" y="613" width="0.0212%" height="15" fill="rgb(242,174,1)" fg:x="222054" fg:w="96"/><text x="49.3925%" y="623.50"></text></g><g><title>btrfs_free_path (151 samples, 0.03%)</title><rect x="49.1386%" y="693" width="0.0334%" height="15" fill="rgb(208,120,29)" fg:x="222036" fg:w="151"/><text x="49.3886%" y="703.50"></text></g><g><title>btrfs_release_path (149 samples, 0.03%)</title><rect x="49.1390%" y="677" width="0.0330%" height="15" fill="rgb(221,105,43)" fg:x="222038" fg:w="149"/><text x="49.3890%" y="687.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (62 samples, 0.01%)</title><rect x="49.1746%" y="693" width="0.0137%" height="15" fill="rgb(234,124,22)" fg:x="222199" fg:w="62"/><text x="49.4246%" y="703.50"></text></g><g><title>clear_extent_bit (55 samples, 0.01%)</title><rect x="49.1762%" y="677" width="0.0122%" height="15" fill="rgb(212,23,30)" fg:x="222206" fg:w="55"/><text x="49.4262%" y="687.50"></text></g><g><title>__clear_extent_bit (55 samples, 0.01%)</title><rect x="49.1762%" y="661" width="0.0122%" height="15" fill="rgb(219,122,53)" fg:x="222206" fg:w="55"/><text x="49.4262%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (95 samples, 0.02%)</title><rect x="49.2193%" y="597" width="0.0210%" height="15" fill="rgb(248,84,24)" fg:x="222401" fg:w="95"/><text x="49.4693%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (91 samples, 0.02%)</title><rect x="49.2202%" y="581" width="0.0201%" height="15" fill="rgb(245,115,18)" fg:x="222405" fg:w="91"/><text x="49.4702%" y="591.50"></text></g><g><title>native_write_msr (89 samples, 0.02%)</title><rect x="49.2207%" y="565" width="0.0197%" height="15" fill="rgb(227,176,51)" fg:x="222407" fg:w="89"/><text x="49.4707%" y="575.50"></text></g><g><title>finish_task_switch (101 samples, 0.02%)</title><rect x="49.2184%" y="613" width="0.0224%" height="15" fill="rgb(229,63,42)" fg:x="222397" fg:w="101"/><text x="49.4684%" y="623.50"></text></g><g><title>__btrfs_tree_read_lock (188 samples, 0.04%)</title><rect x="49.2012%" y="661" width="0.0416%" height="15" fill="rgb(247,202,24)" fg:x="222319" fg:w="188"/><text x="49.4512%" y="671.50"></text></g><g><title>schedule (135 samples, 0.03%)</title><rect x="49.2129%" y="645" width="0.0299%" height="15" fill="rgb(244,173,20)" fg:x="222372" fg:w="135"/><text x="49.4629%" y="655.50"></text></g><g><title>__schedule (134 samples, 0.03%)</title><rect x="49.2131%" y="629" width="0.0297%" height="15" fill="rgb(242,81,47)" fg:x="222373" fg:w="134"/><text x="49.4631%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (196 samples, 0.04%)</title><rect x="49.2010%" y="677" width="0.0434%" height="15" fill="rgb(231,185,54)" fg:x="222318" fg:w="196"/><text x="49.4510%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="49.2534%" y="613" width="0.0235%" height="15" fill="rgb(243,55,32)" fg:x="222555" fg:w="106"/><text x="49.5034%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (103 samples, 0.02%)</title><rect x="49.2541%" y="597" width="0.0228%" height="15" fill="rgb(208,167,19)" fg:x="222558" fg:w="103"/><text x="49.5041%" y="607.50"></text></g><g><title>native_write_msr (103 samples, 0.02%)</title><rect x="49.2541%" y="581" width="0.0228%" height="15" fill="rgb(231,72,35)" fg:x="222558" fg:w="103"/><text x="49.5041%" y="591.50"></text></g><g><title>finish_task_switch (114 samples, 0.03%)</title><rect x="49.2528%" y="629" width="0.0252%" height="15" fill="rgb(250,173,51)" fg:x="222552" fg:w="114"/><text x="49.5028%" y="639.50"></text></g><g><title>__btrfs_tree_lock (170 samples, 0.04%)</title><rect x="49.2443%" y="677" width="0.0376%" height="15" fill="rgb(209,5,22)" fg:x="222514" fg:w="170"/><text x="49.4943%" y="687.50"></text></g><g><title>schedule (155 samples, 0.03%)</title><rect x="49.2477%" y="661" width="0.0343%" height="15" fill="rgb(250,174,19)" fg:x="222529" fg:w="155"/><text x="49.4977%" y="671.50"></text></g><g><title>__schedule (155 samples, 0.03%)</title><rect x="49.2477%" y="645" width="0.0343%" height="15" fill="rgb(217,3,49)" fg:x="222529" fg:w="155"/><text x="49.4977%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.02%)</title><rect x="49.3030%" y="597" width="0.0246%" height="15" fill="rgb(218,225,5)" fg:x="222779" fg:w="111"/><text x="49.5530%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="49.3037%" y="581" width="0.0239%" height="15" fill="rgb(236,89,11)" fg:x="222782" fg:w="108"/><text x="49.5537%" y="591.50"></text></g><g><title>native_write_msr (107 samples, 0.02%)</title><rect x="49.3039%" y="565" width="0.0237%" height="15" fill="rgb(206,33,28)" fg:x="222783" fg:w="107"/><text x="49.5539%" y="575.50"></text></g><g><title>finish_task_switch (121 samples, 0.03%)</title><rect x="49.3017%" y="613" width="0.0268%" height="15" fill="rgb(241,56,42)" fg:x="222773" fg:w="121"/><text x="49.5517%" y="623.50"></text></g><g><title>__btrfs_tree_lock (224 samples, 0.05%)</title><rect x="49.2837%" y="661" width="0.0496%" height="15" fill="rgb(222,44,11)" fg:x="222692" fg:w="224"/><text x="49.5337%" y="671.50"></text></g><g><title>schedule (166 samples, 0.04%)</title><rect x="49.2966%" y="645" width="0.0367%" height="15" fill="rgb(234,111,20)" fg:x="222750" fg:w="166"/><text x="49.5466%" y="655.50"></text></g><g><title>__schedule (164 samples, 0.04%)</title><rect x="49.2970%" y="629" width="0.0363%" height="15" fill="rgb(237,77,6)" fg:x="222752" fg:w="164"/><text x="49.5470%" y="639.50"></text></g><g><title>btrfs_lock_root_node (229 samples, 0.05%)</title><rect x="49.2835%" y="677" width="0.0507%" height="15" fill="rgb(235,111,23)" fg:x="222691" fg:w="229"/><text x="49.5335%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (60 samples, 0.01%)</title><rect x="49.3419%" y="677" width="0.0133%" height="15" fill="rgb(251,135,29)" fg:x="222955" fg:w="60"/><text x="49.5919%" y="687.50"></text></g><g><title>find_extent_buffer (69 samples, 0.02%)</title><rect x="49.3636%" y="661" width="0.0153%" height="15" fill="rgb(217,57,1)" fg:x="223053" fg:w="69"/><text x="49.6136%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.03%)</title><rect x="49.3552%" y="677" width="0.0266%" height="15" fill="rgb(249,119,31)" fg:x="223015" fg:w="120"/><text x="49.6052%" y="687.50"></text></g><g><title>ttwu_do_activate (54 samples, 0.01%)</title><rect x="49.4123%" y="597" width="0.0120%" height="15" fill="rgb(233,164,33)" fg:x="223273" fg:w="54"/><text x="49.6623%" y="607.50"></text></g><g><title>__wake_up_common (156 samples, 0.03%)</title><rect x="49.3924%" y="645" width="0.0345%" height="15" fill="rgb(250,217,43)" fg:x="223183" fg:w="156"/><text x="49.6424%" y="655.50"></text></g><g><title>autoremove_wake_function (153 samples, 0.03%)</title><rect x="49.3931%" y="629" width="0.0339%" height="15" fill="rgb(232,154,50)" fg:x="223186" fg:w="153"/><text x="49.6431%" y="639.50"></text></g><g><title>try_to_wake_up (148 samples, 0.03%)</title><rect x="49.3942%" y="613" width="0.0328%" height="15" fill="rgb(227,190,8)" fg:x="223191" fg:w="148"/><text x="49.6442%" y="623.50"></text></g><g><title>__wake_up_common_lock (160 samples, 0.04%)</title><rect x="49.3922%" y="661" width="0.0354%" height="15" fill="rgb(209,217,32)" fg:x="223182" fg:w="160"/><text x="49.6422%" y="671.50"></text></g><g><title>btrfs_search_slot (1,058 samples, 0.23%)</title><rect x="49.1959%" y="693" width="0.2341%" height="15" fill="rgb(243,203,50)" fg:x="222295" fg:w="1058"/><text x="49.4459%" y="703.50"></text></g><g><title>unlock_up (185 samples, 0.04%)</title><rect x="49.3891%" y="677" width="0.0409%" height="15" fill="rgb(232,152,27)" fg:x="223168" fg:w="185"/><text x="49.6391%" y="687.50"></text></g><g><title>lock_extent_bits (67 samples, 0.01%)</title><rect x="49.4378%" y="693" width="0.0148%" height="15" fill="rgb(240,34,29)" fg:x="223388" fg:w="67"/><text x="49.6878%" y="703.50"></text></g><g><title>__set_extent_bit (65 samples, 0.01%)</title><rect x="49.4382%" y="677" width="0.0144%" height="15" fill="rgb(215,185,52)" fg:x="223390" fg:w="65"/><text x="49.6882%" y="687.50"></text></g><g><title>btrfs_truncate_inode_items (2,242 samples, 0.50%)</title><rect x="48.9586%" y="709" width="0.4962%" height="15" fill="rgb(240,89,49)" fg:x="221223" fg:w="2242"/><text x="49.2086%" y="719.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (64 samples, 0.01%)</title><rect x="49.4721%" y="645" width="0.0142%" height="15" fill="rgb(225,12,52)" fg:x="223543" fg:w="64"/><text x="49.7221%" y="655.50"></text></g><g><title>btrfs_block_rsv_refill (140 samples, 0.03%)</title><rect x="49.4634%" y="693" width="0.0310%" height="15" fill="rgb(239,128,45)" fg:x="223504" fg:w="140"/><text x="49.7134%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (120 samples, 0.03%)</title><rect x="49.4679%" y="677" width="0.0266%" height="15" fill="rgb(211,78,47)" fg:x="223524" fg:w="120"/><text x="49.7179%" y="687.50"></text></g><g><title>__reserve_bytes (116 samples, 0.03%)</title><rect x="49.4687%" y="661" width="0.0257%" height="15" fill="rgb(232,31,21)" fg:x="223528" fg:w="116"/><text x="49.7187%" y="671.50"></text></g><g><title>evict_refill_and_join (246 samples, 0.05%)</title><rect x="49.4566%" y="709" width="0.0544%" height="15" fill="rgb(222,168,14)" fg:x="223473" fg:w="246"/><text x="49.7066%" y="719.50"></text></g><g><title>start_transaction (75 samples, 0.02%)</title><rect x="49.4944%" y="693" width="0.0166%" height="15" fill="rgb(209,128,24)" fg:x="223644" fg:w="75"/><text x="49.7444%" y="703.50"></text></g><g><title>btrfs_evict_inode (6,150 samples, 1.36%)</title><rect x="48.1736%" y="725" width="1.3611%" height="15" fill="rgb(249,35,13)" fg:x="217676" fg:w="6150"/><text x="48.4236%" y="735.50"></text></g><g><title>evict (6,206 samples, 1.37%)</title><rect x="48.1661%" y="741" width="1.3734%" height="15" fill="rgb(218,7,2)" fg:x="217642" fg:w="6206"/><text x="48.4161%" y="751.50"></text></g><g><title>filename_parentat (88 samples, 0.02%)</title><rect x="49.5396%" y="741" width="0.0195%" height="15" fill="rgb(238,107,27)" fg:x="223848" fg:w="88"/><text x="49.7896%" y="751.50"></text></g><g><title>path_parentat (81 samples, 0.02%)</title><rect x="49.5411%" y="725" width="0.0179%" height="15" fill="rgb(217,88,38)" fg:x="223855" fg:w="81"/><text x="49.7911%" y="735.50"></text></g><g><title>__btrfs_end_transaction (60 samples, 0.01%)</title><rect x="49.5812%" y="709" width="0.0133%" height="15" fill="rgb(230,207,0)" fg:x="224036" fg:w="60"/><text x="49.8312%" y="719.50"></text></g><g><title>btrfs_lookup_dir_index_item (127 samples, 0.03%)</title><rect x="49.6088%" y="677" width="0.0281%" height="15" fill="rgb(249,64,54)" fg:x="224161" fg:w="127"/><text x="49.8588%" y="687.50"></text></g><g><title>btrfs_search_slot (126 samples, 0.03%)</title><rect x="49.6091%" y="661" width="0.0279%" height="15" fill="rgb(231,7,11)" fg:x="224162" fg:w="126"/><text x="49.8591%" y="671.50"></text></g><g><title>btrfs_search_slot (147 samples, 0.03%)</title><rect x="49.6385%" y="661" width="0.0325%" height="15" fill="rgb(205,149,21)" fg:x="224295" fg:w="147"/><text x="49.8885%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (158 samples, 0.03%)</title><rect x="49.6369%" y="677" width="0.0350%" height="15" fill="rgb(215,126,34)" fg:x="224288" fg:w="158"/><text x="49.8869%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (373 samples, 0.08%)</title><rect x="49.6004%" y="693" width="0.0825%" height="15" fill="rgb(241,132,45)" fg:x="224123" fg:w="373"/><text x="49.8504%" y="703.50"></text></g><g><title>btrfs_free_path (49 samples, 0.01%)</title><rect x="49.6856%" y="661" width="0.0108%" height="15" fill="rgb(252,69,32)" fg:x="224508" fg:w="49"/><text x="49.9356%" y="671.50"></text></g><g><title>btrfs_release_path (46 samples, 0.01%)</title><rect x="49.6863%" y="645" width="0.0102%" height="15" fill="rgb(232,204,19)" fg:x="224511" fg:w="46"/><text x="49.9363%" y="655.50"></text></g><g><title>find_extent_buffer (60 samples, 0.01%)</title><rect x="49.7429%" y="629" width="0.0133%" height="15" fill="rgb(249,15,47)" fg:x="224767" fg:w="60"/><text x="49.9929%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (106 samples, 0.02%)</title><rect x="49.7352%" y="645" width="0.0235%" height="15" fill="rgb(209,227,23)" fg:x="224732" fg:w="106"/><text x="49.9852%" y="655.50"></text></g><g><title>btrfs_search_slot (297 samples, 0.07%)</title><rect x="49.6965%" y="661" width="0.0657%" height="15" fill="rgb(248,92,24)" fg:x="224557" fg:w="297"/><text x="49.9465%" y="671.50"></text></g><g><title>btrfs_del_inode_ref (413 samples, 0.09%)</title><rect x="49.6836%" y="677" width="0.0914%" height="15" fill="rgb(247,59,2)" fg:x="224499" fg:w="413"/><text x="49.9336%" y="687.50"></text></g><g><title>btrfs_del_inode_ref_in_log (445 samples, 0.10%)</title><rect x="49.6830%" y="693" width="0.0985%" height="15" fill="rgb(221,30,5)" fg:x="224496" fg:w="445"/><text x="49.9330%" y="703.50"></text></g><g><title>btrfs_get_token_32 (261 samples, 0.06%)</title><rect x="49.7974%" y="677" width="0.0578%" height="15" fill="rgb(208,108,53)" fg:x="225013" fg:w="261"/><text x="50.0474%" y="687.50"></text></g><g><title>btrfs_set_token_32 (201 samples, 0.04%)</title><rect x="49.8578%" y="677" width="0.0445%" height="15" fill="rgb(211,183,26)" fg:x="225286" fg:w="201"/><text x="50.1078%" y="687.50"></text></g><g><title>memmove_extent_buffer (119 samples, 0.03%)</title><rect x="49.9114%" y="677" width="0.0263%" height="15" fill="rgb(232,132,4)" fg:x="225528" fg:w="119"/><text x="50.1614%" y="687.50"></text></g><g><title>memmove (99 samples, 0.02%)</title><rect x="49.9158%" y="661" width="0.0219%" height="15" fill="rgb(253,128,37)" fg:x="225548" fg:w="99"/><text x="50.1658%" y="671.50"></text></g><g><title>btrfs_del_items (735 samples, 0.16%)</title><rect x="49.7815%" y="693" width="0.1627%" height="15" fill="rgb(221,58,24)" fg:x="224941" fg:w="735"/><text x="50.0315%" y="703.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (115 samples, 0.03%)</title><rect x="49.9441%" y="693" width="0.0255%" height="15" fill="rgb(230,54,45)" fg:x="225676" fg:w="115"/><text x="50.1941%" y="703.50"></text></g><g><title>btrfs_delete_delayed_dir_index (134 samples, 0.03%)</title><rect x="49.9696%" y="693" width="0.0297%" height="15" fill="rgb(254,21,18)" fg:x="225791" fg:w="134"/><text x="50.2196%" y="703.50"></text></g><g><title>btrfs_match_dir_item_name (46 samples, 0.01%)</title><rect x="50.0054%" y="677" width="0.0102%" height="15" fill="rgb(221,108,0)" fg:x="225953" fg:w="46"/><text x="50.2554%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (95 samples, 0.02%)</title><rect x="50.0231%" y="645" width="0.0210%" height="15" fill="rgb(206,95,1)" fg:x="226033" fg:w="95"/><text x="50.2731%" y="655.50"></text></g><g><title>schedule (59 samples, 0.01%)</title><rect x="50.0311%" y="629" width="0.0131%" height="15" fill="rgb(237,52,5)" fg:x="226069" fg:w="59"/><text x="50.2811%" y="639.50"></text></g><g><title>__schedule (59 samples, 0.01%)</title><rect x="50.0311%" y="613" width="0.0131%" height="15" fill="rgb(218,150,34)" fg:x="226069" fg:w="59"/><text x="50.2811%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (108 samples, 0.02%)</title><rect x="50.0231%" y="661" width="0.0239%" height="15" fill="rgb(235,194,28)" fg:x="226033" fg:w="108"/><text x="50.2731%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (90 samples, 0.02%)</title><rect x="50.0508%" y="597" width="0.0199%" height="15" fill="rgb(245,92,18)" fg:x="226158" fg:w="90"/><text x="50.3008%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (87 samples, 0.02%)</title><rect x="50.0515%" y="581" width="0.0193%" height="15" fill="rgb(253,203,53)" fg:x="226161" fg:w="87"/><text x="50.3015%" y="591.50"></text></g><g><title>native_write_msr (87 samples, 0.02%)</title><rect x="50.0515%" y="565" width="0.0193%" height="15" fill="rgb(249,185,47)" fg:x="226161" fg:w="87"/><text x="50.3015%" y="575.50"></text></g><g><title>finish_task_switch (97 samples, 0.02%)</title><rect x="50.0501%" y="613" width="0.0215%" height="15" fill="rgb(252,194,52)" fg:x="226155" fg:w="97"/><text x="50.3001%" y="623.50"></text></g><g><title>__btrfs_tree_lock (122 samples, 0.03%)</title><rect x="50.0470%" y="661" width="0.0270%" height="15" fill="rgb(210,53,36)" fg:x="226141" fg:w="122"/><text x="50.2970%" y="671.50"></text></g><g><title>schedule (116 samples, 0.03%)</title><rect x="50.0484%" y="645" width="0.0257%" height="15" fill="rgb(237,37,25)" fg:x="226147" fg:w="116"/><text x="50.2984%" y="655.50"></text></g><g><title>__schedule (116 samples, 0.03%)</title><rect x="50.0484%" y="629" width="0.0257%" height="15" fill="rgb(242,116,27)" fg:x="226147" fg:w="116"/><text x="50.2984%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.01%)</title><rect x="50.0920%" y="581" width="0.0104%" height="15" fill="rgb(213,185,26)" fg:x="226344" fg:w="47"/><text x="50.3420%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.01%)</title><rect x="50.0922%" y="565" width="0.0102%" height="15" fill="rgb(225,204,8)" fg:x="226345" fg:w="46"/><text x="50.3422%" y="575.50"></text></g><g><title>finish_task_switch (52 samples, 0.01%)</title><rect x="50.0913%" y="597" width="0.0115%" height="15" fill="rgb(254,111,37)" fg:x="226341" fg:w="52"/><text x="50.3413%" y="607.50"></text></g><g><title>__btrfs_tree_lock (128 samples, 0.03%)</title><rect x="50.0765%" y="645" width="0.0283%" height="15" fill="rgb(242,35,9)" fg:x="226274" fg:w="128"/><text x="50.3265%" y="655.50"></text></g><g><title>schedule (85 samples, 0.02%)</title><rect x="50.0860%" y="629" width="0.0188%" height="15" fill="rgb(232,138,49)" fg:x="226317" fg:w="85"/><text x="50.3360%" y="639.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="50.0864%" y="613" width="0.0184%" height="15" fill="rgb(247,56,4)" fg:x="226319" fg:w="83"/><text x="50.3364%" y="623.50"></text></g><g><title>btrfs_lock_root_node (136 samples, 0.03%)</title><rect x="50.0762%" y="661" width="0.0301%" height="15" fill="rgb(226,179,17)" fg:x="226273" fg:w="136"/><text x="50.3262%" y="671.50"></text></g><g><title>generic_bin_search.constprop.0 (80 samples, 0.02%)</title><rect x="50.1114%" y="661" width="0.0177%" height="15" fill="rgb(216,163,45)" fg:x="226432" fg:w="80"/><text x="50.3614%" y="671.50"></text></g><g><title>find_extent_buffer (72 samples, 0.02%)</title><rect x="50.1364%" y="645" width="0.0159%" height="15" fill="rgb(211,157,3)" fg:x="226545" fg:w="72"/><text x="50.3864%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (120 samples, 0.03%)</title><rect x="50.1291%" y="661" width="0.0266%" height="15" fill="rgb(234,44,20)" fg:x="226512" fg:w="120"/><text x="50.3791%" y="671.50"></text></g><g><title>ttwu_do_activate (75 samples, 0.02%)</title><rect x="50.1829%" y="581" width="0.0166%" height="15" fill="rgb(254,138,23)" fg:x="226755" fg:w="75"/><text x="50.4329%" y="591.50"></text></g><g><title>__wake_up_common_lock (171 samples, 0.04%)</title><rect x="50.1663%" y="645" width="0.0378%" height="15" fill="rgb(206,119,39)" fg:x="226680" fg:w="171"/><text x="50.4163%" y="655.50"></text></g><g><title>__wake_up_common (170 samples, 0.04%)</title><rect x="50.1665%" y="629" width="0.0376%" height="15" fill="rgb(231,105,52)" fg:x="226681" fg:w="170"/><text x="50.4165%" y="639.50"></text></g><g><title>autoremove_wake_function (168 samples, 0.04%)</title><rect x="50.1670%" y="613" width="0.0372%" height="15" fill="rgb(250,20,5)" fg:x="226683" fg:w="168"/><text x="50.4170%" y="623.50"></text></g><g><title>try_to_wake_up (165 samples, 0.04%)</title><rect x="50.1676%" y="597" width="0.0365%" height="15" fill="rgb(215,198,30)" fg:x="226686" fg:w="165"/><text x="50.4176%" y="607.50"></text></g><g><title>btrfs_search_slot (856 samples, 0.19%)</title><rect x="50.0156%" y="677" width="0.1894%" height="15" fill="rgb(246,142,8)" fg:x="225999" fg:w="856"/><text x="50.2656%" y="687.50"></text></g><g><title>unlock_up (190 samples, 0.04%)</title><rect x="50.1630%" y="661" width="0.0420%" height="15" fill="rgb(243,26,38)" fg:x="226665" fg:w="190"/><text x="50.4130%" y="671.50"></text></g><g><title>btrfs_lookup_dir_item (931 samples, 0.21%)</title><rect x="50.0037%" y="693" width="0.2060%" height="15" fill="rgb(205,133,28)" fg:x="225945" fg:w="931"/><text x="50.2537%" y="703.50"></text></g><g><title>__wake_up_common_lock (79 samples, 0.02%)</title><rect x="50.2108%" y="677" width="0.0175%" height="15" fill="rgb(212,34,0)" fg:x="226881" fg:w="79"/><text x="50.4608%" y="687.50"></text></g><g><title>__wake_up_common (79 samples, 0.02%)</title><rect x="50.2108%" y="661" width="0.0175%" height="15" fill="rgb(251,226,22)" fg:x="226881" fg:w="79"/><text x="50.4608%" y="671.50"></text></g><g><title>autoremove_wake_function (76 samples, 0.02%)</title><rect x="50.2115%" y="645" width="0.0168%" height="15" fill="rgb(252,119,9)" fg:x="226884" fg:w="76"/><text x="50.4615%" y="655.50"></text></g><g><title>try_to_wake_up (73 samples, 0.02%)</title><rect x="50.2121%" y="629" width="0.0162%" height="15" fill="rgb(213,150,50)" fg:x="226887" fg:w="73"/><text x="50.4621%" y="639.50"></text></g><g><title>btrfs_release_path (112 samples, 0.02%)</title><rect x="50.2097%" y="693" width="0.0248%" height="15" fill="rgb(212,24,39)" fg:x="226876" fg:w="112"/><text x="50.4597%" y="703.50"></text></g><g><title>btrfs_update_inode (53 samples, 0.01%)</title><rect x="50.2345%" y="693" width="0.0117%" height="15" fill="rgb(213,46,39)" fg:x="226988" fg:w="53"/><text x="50.4845%" y="703.50"></text></g><g><title>__btrfs_unlink_inode (2,981 samples, 0.66%)</title><rect x="49.5945%" y="709" width="0.6597%" height="15" fill="rgb(239,106,12)" fg:x="224096" fg:w="2981"/><text x="49.8445%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="50.2883%" y="565" width="0.0126%" height="15" fill="rgb(249,229,21)" fg:x="227231" fg:w="57"/><text x="50.5383%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.01%)</title><rect x="50.2894%" y="549" width="0.0115%" height="15" fill="rgb(212,158,3)" fg:x="227236" fg:w="52"/><text x="50.5394%" y="559.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="50.2894%" y="533" width="0.0115%" height="15" fill="rgb(253,26,48)" fg:x="227236" fg:w="52"/><text x="50.5394%" y="543.50"></text></g><g><title>finish_task_switch (62 samples, 0.01%)</title><rect x="50.2878%" y="581" width="0.0137%" height="15" fill="rgb(238,178,20)" fg:x="227229" fg:w="62"/><text x="50.5378%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (97 samples, 0.02%)</title><rect x="50.2812%" y="629" width="0.0215%" height="15" fill="rgb(208,86,15)" fg:x="227199" fg:w="97"/><text x="50.5312%" y="639.50"></text></g><g><title>schedule (75 samples, 0.02%)</title><rect x="50.2860%" y="613" width="0.0166%" height="15" fill="rgb(239,42,53)" fg:x="227221" fg:w="75"/><text x="50.5360%" y="623.50"></text></g><g><title>__schedule (75 samples, 0.02%)</title><rect x="50.2860%" y="597" width="0.0166%" height="15" fill="rgb(245,226,8)" fg:x="227221" fg:w="75"/><text x="50.5360%" y="607.50"></text></g><g><title>__btrfs_read_lock_root_node (108 samples, 0.02%)</title><rect x="50.2812%" y="645" width="0.0239%" height="15" fill="rgb(216,176,32)" fg:x="227199" fg:w="108"/><text x="50.5312%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (132 samples, 0.03%)</title><rect x="50.3141%" y="581" width="0.0292%" height="15" fill="rgb(231,186,21)" fg:x="227348" fg:w="132"/><text x="50.5641%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (127 samples, 0.03%)</title><rect x="50.3153%" y="565" width="0.0281%" height="15" fill="rgb(205,95,49)" fg:x="227353" fg:w="127"/><text x="50.5653%" y="575.50"></text></g><g><title>native_write_msr (126 samples, 0.03%)</title><rect x="50.3155%" y="549" width="0.0279%" height="15" fill="rgb(217,145,8)" fg:x="227354" fg:w="126"/><text x="50.5655%" y="559.50"></text></g><g><title>finish_task_switch (138 samples, 0.03%)</title><rect x="50.3130%" y="597" width="0.0305%" height="15" fill="rgb(239,144,48)" fg:x="227343" fg:w="138"/><text x="50.5630%" y="607.50"></text></g><g><title>__btrfs_tree_lock (190 samples, 0.04%)</title><rect x="50.3051%" y="645" width="0.0420%" height="15" fill="rgb(214,189,23)" fg:x="227307" fg:w="190"/><text x="50.5551%" y="655.50"></text></g><g><title>schedule (178 samples, 0.04%)</title><rect x="50.3077%" y="629" width="0.0394%" height="15" fill="rgb(229,157,17)" fg:x="227319" fg:w="178"/><text x="50.5577%" y="639.50"></text></g><g><title>__schedule (176 samples, 0.04%)</title><rect x="50.3082%" y="613" width="0.0390%" height="15" fill="rgb(230,5,48)" fg:x="227321" fg:w="176"/><text x="50.5582%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (49 samples, 0.01%)</title><rect x="50.3573%" y="645" width="0.0108%" height="15" fill="rgb(224,156,48)" fg:x="227543" fg:w="49"/><text x="50.6073%" y="655.50"></text></g><g><title>find_extent_buffer (68 samples, 0.02%)</title><rect x="50.3761%" y="629" width="0.0150%" height="15" fill="rgb(223,14,29)" fg:x="227628" fg:w="68"/><text x="50.6261%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (110 samples, 0.02%)</title><rect x="50.3681%" y="645" width="0.0243%" height="15" fill="rgb(229,96,36)" fg:x="227592" fg:w="110"/><text x="50.6181%" y="655.50"></text></g><g><title>__wake_up_common (86 samples, 0.02%)</title><rect x="50.3960%" y="613" width="0.0190%" height="15" fill="rgb(231,102,53)" fg:x="227718" fg:w="86"/><text x="50.6460%" y="623.50"></text></g><g><title>autoremove_wake_function (86 samples, 0.02%)</title><rect x="50.3960%" y="597" width="0.0190%" height="15" fill="rgb(210,77,38)" fg:x="227718" fg:w="86"/><text x="50.6460%" y="607.50"></text></g><g><title>try_to_wake_up (82 samples, 0.02%)</title><rect x="50.3969%" y="581" width="0.0181%" height="15" fill="rgb(235,131,6)" fg:x="227722" fg:w="82"/><text x="50.6469%" y="591.50"></text></g><g><title>__wake_up_common_lock (88 samples, 0.02%)</title><rect x="50.3960%" y="629" width="0.0195%" height="15" fill="rgb(252,55,38)" fg:x="227718" fg:w="88"/><text x="50.6460%" y="639.50"></text></g><g><title>btrfs_search_slot (641 samples, 0.14%)</title><rect x="50.2748%" y="661" width="0.1419%" height="15" fill="rgb(246,38,14)" fg:x="227170" fg:w="641"/><text x="50.5248%" y="671.50"></text></g><g><title>unlock_up (108 samples, 0.02%)</title><rect x="50.3927%" y="645" width="0.0239%" height="15" fill="rgb(242,27,5)" fg:x="227703" fg:w="108"/><text x="50.6427%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (740 samples, 0.16%)</title><rect x="50.2730%" y="677" width="0.1638%" height="15" fill="rgb(228,65,35)" fg:x="227162" fg:w="740"/><text x="50.5230%" y="687.50"></text></g><g><title>setup_items_for_insert (91 samples, 0.02%)</title><rect x="50.4166%" y="661" width="0.0201%" height="15" fill="rgb(245,93,11)" fg:x="227811" fg:w="91"/><text x="50.6666%" y="671.50"></text></g><g><title>btrfs_orphan_add (805 samples, 0.18%)</title><rect x="50.2639%" y="709" width="0.1782%" height="15" fill="rgb(213,1,31)" fg:x="227121" fg:w="805"/><text x="50.5139%" y="719.50"></text></g><g><title>btrfs_insert_orphan_item (805 samples, 0.18%)</title><rect x="50.2639%" y="693" width="0.1782%" height="15" fill="rgb(237,205,14)" fg:x="227121" fg:w="805"/><text x="50.5139%" y="703.50"></text></g><g><title>btrfs_update_inode (59 samples, 0.01%)</title><rect x="50.4483%" y="709" width="0.0131%" height="15" fill="rgb(232,118,45)" fg:x="227954" fg:w="59"/><text x="50.6983%" y="719.50"></text></g><g><title>btrfs_block_rsv_add (74 samples, 0.02%)</title><rect x="50.4675%" y="693" width="0.0164%" height="15" fill="rgb(218,5,6)" fg:x="228041" fg:w="74"/><text x="50.7175%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (68 samples, 0.02%)</title><rect x="50.4688%" y="677" width="0.0150%" height="15" fill="rgb(251,87,51)" fg:x="228047" fg:w="68"/><text x="50.7188%" y="687.50"></text></g><g><title>__reserve_bytes (59 samples, 0.01%)</title><rect x="50.4708%" y="661" width="0.0131%" height="15" fill="rgb(207,225,20)" fg:x="228056" fg:w="59"/><text x="50.7208%" y="671.50"></text></g><g><title>btrfs_unlink (4,113 samples, 0.91%)</title><rect x="49.5803%" y="725" width="0.9102%" height="15" fill="rgb(222,78,54)" fg:x="224032" fg:w="4113"/><text x="49.8303%" y="735.50"></text></g><g><title>start_transaction (124 samples, 0.03%)</title><rect x="50.4631%" y="709" width="0.0274%" height="15" fill="rgb(232,85,16)" fg:x="228021" fg:w="124"/><text x="50.7131%" y="719.50"></text></g><g><title>do_unlinkat (10,962 samples, 2.43%)</title><rect x="48.0851%" y="757" width="2.4260%" height="15" fill="rgb(244,25,33)" fg:x="217276" fg:w="10962"/><text x="48.3351%" y="767.50">do..</text></g><g><title>vfs_unlink (4,211 samples, 0.93%)</title><rect x="49.5792%" y="741" width="0.9319%" height="15" fill="rgb(233,24,36)" fg:x="224027" fg:w="4211"/><text x="49.8292%" y="751.50"></text></g><g><title>do_syscall_64 (11,875 samples, 2.63%)</title><rect x="47.8842%" y="773" width="2.6280%" height="15" fill="rgb(253,49,54)" fg:x="216368" fg:w="11875"/><text x="48.1342%" y="783.50">do..</text></g><g><title>entry_SYSCALL_64_after_hwframe (11,899 samples, 2.63%)</title><rect x="47.8833%" y="789" width="2.6334%" height="15" fill="rgb(245,12,22)" fg:x="216364" fg:w="11899"/><text x="48.1333%" y="799.50">en..</text></g><g><title>__GI_unlinkat (11,939 samples, 2.64%)</title><rect x="47.8764%" y="805" width="2.6422%" height="15" fill="rgb(253,141,28)" fg:x="216333" fg:w="11939"/><text x="48.1264%" y="815.50">__..</text></g><g><title>__closedir (62 samples, 0.01%)</title><rect x="50.5224%" y="805" width="0.0137%" height="15" fill="rgb(225,207,27)" fg:x="228289" fg:w="62"/><text x="50.7724%" y="815.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="50.5585%" y="773" width="0.0139%" height="15" fill="rgb(220,84,2)" fg:x="228452" fg:w="63"/><text x="50.8085%" y="783.50"></text></g><g><title>__x64_sys_openat (63 samples, 0.01%)</title><rect x="50.5585%" y="757" width="0.0139%" height="15" fill="rgb(224,37,37)" fg:x="228452" fg:w="63"/><text x="50.8085%" y="767.50"></text></g><g><title>do_sys_openat2 (63 samples, 0.01%)</title><rect x="50.5585%" y="741" width="0.0139%" height="15" fill="rgb(220,143,18)" fg:x="228452" fg:w="63"/><text x="50.8085%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="50.5585%" y="789" width="0.0142%" height="15" fill="rgb(210,88,33)" fg:x="228452" fg:w="64"/><text x="50.8085%" y="799.50"></text></g><g><title>__libc_openat64 (66 samples, 0.01%)</title><rect x="50.5583%" y="805" width="0.0146%" height="15" fill="rgb(219,87,51)" fg:x="228451" fg:w="66"/><text x="50.8083%" y="815.50"></text></g><g><title>__alloc_fd (48 samples, 0.01%)</title><rect x="50.5870%" y="709" width="0.0106%" height="15" fill="rgb(211,7,35)" fg:x="228581" fg:w="48"/><text x="50.8370%" y="719.50"></text></g><g><title>memcg_slab_post_alloc_hook (53 samples, 0.01%)</title><rect x="50.6249%" y="629" width="0.0117%" height="15" fill="rgb(232,77,2)" fg:x="228752" fg:w="53"/><text x="50.8749%" y="639.50"></text></g><g><title>get_obj_cgroup_from_current (53 samples, 0.01%)</title><rect x="50.6410%" y="613" width="0.0117%" height="15" fill="rgb(249,94,25)" fg:x="228825" fg:w="53"/><text x="50.8910%" y="623.50"></text></g><g><title>kmem_cache_alloc (173 samples, 0.04%)</title><rect x="50.6180%" y="645" width="0.0383%" height="15" fill="rgb(215,112,2)" fg:x="228721" fg:w="173"/><text x="50.8680%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (78 samples, 0.02%)</title><rect x="50.6390%" y="629" width="0.0173%" height="15" fill="rgb(226,115,48)" fg:x="228816" fg:w="78"/><text x="50.8890%" y="639.50"></text></g><g><title>__alloc_file (266 samples, 0.06%)</title><rect x="50.6125%" y="661" width="0.0589%" height="15" fill="rgb(249,196,10)" fg:x="228696" fg:w="266"/><text x="50.8625%" y="671.50"></text></g><g><title>security_file_alloc (68 samples, 0.02%)</title><rect x="50.6563%" y="645" width="0.0150%" height="15" fill="rgb(237,109,14)" fg:x="228894" fg:w="68"/><text x="50.9063%" y="655.50"></text></g><g><title>alloc_empty_file (280 samples, 0.06%)</title><rect x="50.6100%" y="677" width="0.0620%" height="15" fill="rgb(217,103,53)" fg:x="228685" fg:w="280"/><text x="50.8600%" y="687.50"></text></g><g><title>memset_erms (58 samples, 0.01%)</title><rect x="50.7028%" y="629" width="0.0128%" height="15" fill="rgb(244,137,9)" fg:x="229104" fg:w="58"/><text x="50.9528%" y="639.50"></text></g><g><title>btrfs_opendir (127 samples, 0.03%)</title><rect x="50.6915%" y="661" width="0.0281%" height="15" fill="rgb(227,201,3)" fg:x="229053" fg:w="127"/><text x="50.9415%" y="671.50"></text></g><g><title>kmem_cache_alloc_trace (115 samples, 0.03%)</title><rect x="50.6941%" y="645" width="0.0255%" height="15" fill="rgb(243,94,6)" fg:x="229065" fg:w="115"/><text x="50.9441%" y="655.50"></text></g><g><title>do_dentry_open (309 samples, 0.07%)</title><rect x="50.6800%" y="677" width="0.0684%" height="15" fill="rgb(235,118,5)" fg:x="229001" fg:w="309"/><text x="50.9300%" y="687.50"></text></g><g><title>security_file_open (78 samples, 0.02%)</title><rect x="50.7311%" y="661" width="0.0173%" height="15" fill="rgb(247,10,30)" fg:x="229232" fg:w="78"/><text x="50.9811%" y="671.50"></text></g><g><title>inode_permission.part.0 (151 samples, 0.03%)</title><rect x="50.7875%" y="661" width="0.0334%" height="15" fill="rgb(205,26,28)" fg:x="229487" fg:w="151"/><text x="51.0375%" y="671.50"></text></g><g><title>__d_lookup_rcu (205 samples, 0.05%)</title><rect x="50.8431%" y="629" width="0.0454%" height="15" fill="rgb(206,99,35)" fg:x="229738" fg:w="205"/><text x="51.0931%" y="639.50"></text></g><g><title>lookup_fast (244 samples, 0.05%)</title><rect x="50.8347%" y="645" width="0.0540%" height="15" fill="rgb(238,130,40)" fg:x="229700" fg:w="244"/><text x="51.0847%" y="655.50"></text></g><g><title>link_path_walk.part.0 (693 samples, 0.15%)</title><rect x="50.7484%" y="677" width="0.1534%" height="15" fill="rgb(224,126,31)" fg:x="229310" fg:w="693"/><text x="50.9984%" y="687.50"></text></g><g><title>walk_component (349 samples, 0.08%)</title><rect x="50.8245%" y="661" width="0.0772%" height="15" fill="rgb(254,105,17)" fg:x="229654" fg:w="349"/><text x="51.0745%" y="671.50"></text></g><g><title>step_into (59 samples, 0.01%)</title><rect x="50.8887%" y="645" width="0.0131%" height="15" fill="rgb(216,87,36)" fg:x="229944" fg:w="59"/><text x="51.1387%" y="655.50"></text></g><g><title>lookup_fast (66 samples, 0.01%)</title><rect x="50.9017%" y="677" width="0.0146%" height="15" fill="rgb(240,21,12)" fg:x="230003" fg:w="66"/><text x="51.1517%" y="687.50"></text></g><g><title>__d_lookup_rcu (60 samples, 0.01%)</title><rect x="50.9031%" y="661" width="0.0133%" height="15" fill="rgb(245,192,34)" fg:x="230009" fg:w="60"/><text x="51.1531%" y="671.50"></text></g><g><title>do_filp_open (1,500 samples, 0.33%)</title><rect x="50.6010%" y="709" width="0.3320%" height="15" fill="rgb(226,100,49)" fg:x="228644" fg:w="1500"/><text x="50.8510%" y="719.50"></text></g><g><title>path_openat (1,482 samples, 0.33%)</title><rect x="50.6049%" y="693" width="0.3280%" height="15" fill="rgb(245,188,27)" fg:x="228662" fg:w="1482"/><text x="50.8549%" y="703.50"></text></g><g><title>memset_erms (47 samples, 0.01%)</title><rect x="50.9509%" y="677" width="0.0104%" height="15" fill="rgb(212,170,8)" fg:x="230225" fg:w="47"/><text x="51.2009%" y="687.50"></text></g><g><title>kmem_cache_alloc (80 samples, 0.02%)</title><rect x="50.9464%" y="693" width="0.0177%" height="15" fill="rgb(217,113,29)" fg:x="230205" fg:w="80"/><text x="51.1964%" y="703.50"></text></g><g><title>getname_flags.part.0 (173 samples, 0.04%)</title><rect x="50.9447%" y="709" width="0.0383%" height="15" fill="rgb(237,30,3)" fg:x="230197" fg:w="173"/><text x="51.1947%" y="719.50"></text></g><g><title>strncpy_from_user (85 samples, 0.02%)</title><rect x="50.9641%" y="693" width="0.0188%" height="15" fill="rgb(227,19,28)" fg:x="230285" fg:w="85"/><text x="51.2141%" y="703.50"></text></g><g><title>__x64_sys_openat (1,835 samples, 0.41%)</title><rect x="50.5833%" y="741" width="0.4061%" height="15" fill="rgb(239,172,45)" fg:x="228564" fg:w="1835"/><text x="50.8333%" y="751.50"></text></g><g><title>do_sys_openat2 (1,831 samples, 0.41%)</title><rect x="50.5841%" y="725" width="0.4052%" height="15" fill="rgb(254,55,39)" fg:x="228568" fg:w="1831"/><text x="50.8341%" y="735.50"></text></g><g><title>do_syscall_64 (1,842 samples, 0.41%)</title><rect x="50.5826%" y="757" width="0.4077%" height="15" fill="rgb(249,208,12)" fg:x="228561" fg:w="1842"/><text x="50.8326%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,859 samples, 0.41%)</title><rect x="50.5817%" y="773" width="0.4114%" height="15" fill="rgb(240,52,13)" fg:x="228557" fg:w="1859"/><text x="50.8317%" y="783.50"></text></g><g><title>__GI___open64_nocancel (1,886 samples, 0.42%)</title><rect x="50.5782%" y="789" width="0.4174%" height="15" fill="rgb(252,149,13)" fg:x="228541" fg:w="1886"/><text x="50.8282%" y="799.50"></text></g><g><title>__opendir (1,890 samples, 0.42%)</title><rect x="50.5779%" y="805" width="0.4183%" height="15" fill="rgb(232,81,48)" fg:x="228540" fg:w="1890"/><text x="50.8279%" y="815.50"></text></g><g><title>entry_SYSCALL_64 (50 samples, 0.01%)</title><rect x="51.0190%" y="789" width="0.0111%" height="15" fill="rgb(222,144,2)" fg:x="230533" fg:w="50"/><text x="51.2690%" y="799.50"></text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="51.0650%" y="709" width="0.0106%" height="15" fill="rgb(216,81,32)" fg:x="230741" fg:w="48"/><text x="51.3150%" y="719.50"></text></g><g><title>_cond_resched (54 samples, 0.01%)</title><rect x="51.0646%" y="725" width="0.0120%" height="15" fill="rgb(244,78,51)" fg:x="230739" fg:w="54"/><text x="51.3146%" y="735.50"></text></g><g><title>_raw_spin_lock (57 samples, 0.01%)</title><rect x="51.1179%" y="693" width="0.0126%" height="15" fill="rgb(217,66,21)" fg:x="230980" fg:w="57"/><text x="51.3679%" y="703.50"></text></g><g><title>d_lru_add (239 samples, 0.05%)</title><rect x="51.0814%" y="725" width="0.0529%" height="15" fill="rgb(247,101,42)" fg:x="230815" fg:w="239"/><text x="51.3314%" y="735.50"></text></g><g><title>list_lru_add (217 samples, 0.05%)</title><rect x="51.0863%" y="709" width="0.0480%" height="15" fill="rgb(227,81,39)" fg:x="230837" fg:w="217"/><text x="51.3363%" y="719.50"></text></g><g><title>lockref_put_or_lock (54 samples, 0.01%)</title><rect x="51.1343%" y="725" width="0.0120%" height="15" fill="rgb(220,223,44)" fg:x="231054" fg:w="54"/><text x="51.3843%" y="735.50"></text></g><g><title>dput (403 samples, 0.09%)</title><rect x="51.0573%" y="741" width="0.0892%" height="15" fill="rgb(205,218,2)" fg:x="230706" fg:w="403"/><text x="51.3073%" y="751.50"></text></g><g><title>free_extent_buffer.part.0 (93 samples, 0.02%)</title><rect x="51.1817%" y="645" width="0.0206%" height="15" fill="rgb(212,207,28)" fg:x="231268" fg:w="93"/><text x="51.4317%" y="655.50"></text></g><g><title>btrfs_free_path (180 samples, 0.04%)</title><rect x="51.1666%" y="677" width="0.0398%" height="15" fill="rgb(224,12,41)" fg:x="231200" fg:w="180"/><text x="51.4166%" y="687.50"></text></g><g><title>btrfs_release_path (165 samples, 0.04%)</title><rect x="51.1699%" y="661" width="0.0365%" height="15" fill="rgb(216,118,12)" fg:x="231215" fg:w="165"/><text x="51.4199%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (68 samples, 0.02%)</title><rect x="51.2465%" y="629" width="0.0150%" height="15" fill="rgb(252,97,46)" fg:x="231561" fg:w="68"/><text x="51.4965%" y="639.50"></text></g><g><title>__btrfs_read_lock_root_node (185 samples, 0.04%)</title><rect x="51.2450%" y="645" width="0.0409%" height="15" fill="rgb(244,206,19)" fg:x="231554" fg:w="185"/><text x="51.4950%" y="655.50"></text></g><g><title>btrfs_root_node (110 samples, 0.02%)</title><rect x="51.2616%" y="629" width="0.0243%" height="15" fill="rgb(231,84,31)" fg:x="231629" fg:w="110"/><text x="51.5116%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.02%)</title><rect x="51.3032%" y="581" width="0.0248%" height="15" fill="rgb(244,133,0)" fg:x="231817" fg:w="112"/><text x="51.5532%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (109 samples, 0.02%)</title><rect x="51.3038%" y="565" width="0.0241%" height="15" fill="rgb(223,15,50)" fg:x="231820" fg:w="109"/><text x="51.5538%" y="575.50"></text></g><g><title>native_write_msr (104 samples, 0.02%)</title><rect x="51.3049%" y="549" width="0.0230%" height="15" fill="rgb(250,118,49)" fg:x="231825" fg:w="104"/><text x="51.5549%" y="559.50"></text></g><g><title>finish_task_switch (118 samples, 0.03%)</title><rect x="51.3032%" y="597" width="0.0261%" height="15" fill="rgb(248,25,38)" fg:x="231817" fg:w="118"/><text x="51.5532%" y="607.50"></text></g><g><title>__btrfs_tree_read_lock (217 samples, 0.05%)</title><rect x="51.2859%" y="645" width="0.0480%" height="15" fill="rgb(215,70,14)" fg:x="231739" fg:w="217"/><text x="51.5359%" y="655.50"></text></g><g><title>schedule (174 samples, 0.04%)</title><rect x="51.2954%" y="629" width="0.0385%" height="15" fill="rgb(215,28,15)" fg:x="231782" fg:w="174"/><text x="51.5454%" y="639.50"></text></g><g><title>__schedule (172 samples, 0.04%)</title><rect x="51.2959%" y="613" width="0.0381%" height="15" fill="rgb(243,6,28)" fg:x="231784" fg:w="172"/><text x="51.5459%" y="623.50"></text></g><g><title>btrfs_set_path_blocking (55 samples, 0.01%)</title><rect x="51.3426%" y="645" width="0.0122%" height="15" fill="rgb(222,130,1)" fg:x="231995" fg:w="55"/><text x="51.5926%" y="655.50"></text></g><g><title>btrfs_tree_read_lock_atomic (57 samples, 0.01%)</title><rect x="51.3547%" y="645" width="0.0126%" height="15" fill="rgb(236,166,44)" fg:x="232050" fg:w="57"/><text x="51.6047%" y="655.50"></text></g><g><title>btrfs_tree_read_unlock (58 samples, 0.01%)</title><rect x="51.3674%" y="645" width="0.0128%" height="15" fill="rgb(221,108,14)" fg:x="232107" fg:w="58"/><text x="51.6174%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (386 samples, 0.09%)</title><rect x="51.3811%" y="645" width="0.0854%" height="15" fill="rgb(252,3,45)" fg:x="232169" fg:w="386"/><text x="51.6311%" y="655.50"></text></g><g><title>btrfs_get_64 (72 samples, 0.02%)</title><rect x="51.4840%" y="629" width="0.0159%" height="15" fill="rgb(237,68,30)" fg:x="232634" fg:w="72"/><text x="51.7340%" y="639.50"></text></g><g><title>__radix_tree_lookup (218 samples, 0.05%)</title><rect x="51.5234%" y="613" width="0.0482%" height="15" fill="rgb(211,79,22)" fg:x="232812" fg:w="218"/><text x="51.7734%" y="623.50"></text></g><g><title>mark_page_accessed (85 samples, 0.02%)</title><rect x="51.5765%" y="597" width="0.0188%" height="15" fill="rgb(252,185,21)" fg:x="233052" fg:w="85"/><text x="51.8265%" y="607.50"></text></g><g><title>mark_extent_buffer_accessed (109 samples, 0.02%)</title><rect x="51.5716%" y="613" width="0.0241%" height="15" fill="rgb(225,189,26)" fg:x="233030" fg:w="109"/><text x="51.8216%" y="623.50"></text></g><g><title>find_extent_buffer (411 samples, 0.09%)</title><rect x="51.5057%" y="629" width="0.0910%" height="15" fill="rgb(241,30,40)" fg:x="232732" fg:w="411"/><text x="51.7557%" y="639.50"></text></g><g><title>read_block_for_search.isra.0 (626 samples, 0.14%)</title><rect x="51.4665%" y="645" width="0.1385%" height="15" fill="rgb(235,215,44)" fg:x="232555" fg:w="626"/><text x="51.7165%" y="655.50"></text></g><g><title>btrfs_search_slot (1,828 samples, 0.40%)</title><rect x="51.2127%" y="661" width="0.4046%" height="15" fill="rgb(205,8,29)" fg:x="231408" fg:w="1828"/><text x="51.4627%" y="671.50"></text></g><g><title>unlock_up (55 samples, 0.01%)</title><rect x="51.6050%" y="645" width="0.0122%" height="15" fill="rgb(241,137,42)" fg:x="233181" fg:w="55"/><text x="51.8550%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (1,917 samples, 0.42%)</title><rect x="51.2065%" y="677" width="0.4242%" height="15" fill="rgb(237,155,2)" fg:x="231380" fg:w="1917"/><text x="51.4565%" y="687.50"></text></g><g><title>crc32c (61 samples, 0.01%)</title><rect x="51.6172%" y="661" width="0.0135%" height="15" fill="rgb(245,29,42)" fg:x="233236" fg:w="61"/><text x="51.8672%" y="671.50"></text></g><g><title>kmem_cache_alloc (96 samples, 0.02%)</title><rect x="51.6307%" y="677" width="0.0212%" height="15" fill="rgb(234,101,35)" fg:x="233297" fg:w="96"/><text x="51.8807%" y="687.50"></text></g><g><title>btrfs_lookup (2,275 samples, 0.50%)</title><rect x="51.1556%" y="709" width="0.5035%" height="15" fill="rgb(228,64,37)" fg:x="231150" fg:w="2275"/><text x="51.4056%" y="719.50"></text></g><g><title>btrfs_lookup_dentry (2,270 samples, 0.50%)</title><rect x="51.1567%" y="693" width="0.5024%" height="15" fill="rgb(217,214,36)" fg:x="231155" fg:w="2270"/><text x="51.4067%" y="703.50"></text></g><g><title>allocate_slab (48 samples, 0.01%)</title><rect x="51.6852%" y="629" width="0.0106%" height="15" fill="rgb(243,70,3)" fg:x="233543" fg:w="48"/><text x="51.9352%" y="639.50"></text></g><g><title>__slab_alloc (65 samples, 0.01%)</title><rect x="51.6821%" y="661" width="0.0144%" height="15" fill="rgb(253,158,52)" fg:x="233529" fg:w="65"/><text x="51.9321%" y="671.50"></text></g><g><title>___slab_alloc (64 samples, 0.01%)</title><rect x="51.6823%" y="645" width="0.0142%" height="15" fill="rgb(234,111,54)" fg:x="233530" fg:w="64"/><text x="51.9323%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (134 samples, 0.03%)</title><rect x="51.6964%" y="661" width="0.0297%" height="15" fill="rgb(217,70,32)" fg:x="233594" fg:w="134"/><text x="51.9464%" y="671.50"></text></g><g><title>get_obj_cgroup_from_current (71 samples, 0.02%)</title><rect x="51.7350%" y="645" width="0.0157%" height="15" fill="rgb(234,18,33)" fg:x="233768" fg:w="71"/><text x="51.9850%" y="655.50"></text></g><g><title>kmem_cache_alloc (397 samples, 0.09%)</title><rect x="51.6710%" y="677" width="0.0879%" height="15" fill="rgb(234,12,49)" fg:x="233479" fg:w="397"/><text x="51.9210%" y="687.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (128 samples, 0.03%)</title><rect x="51.7305%" y="661" width="0.0283%" height="15" fill="rgb(236,10,21)" fg:x="233748" fg:w="128"/><text x="51.9805%" y="671.50"></text></g><g><title>__d_alloc (465 samples, 0.10%)</title><rect x="51.6606%" y="693" width="0.1029%" height="15" fill="rgb(248,182,45)" fg:x="233432" fg:w="465"/><text x="51.9106%" y="703.50"></text></g><g><title>d_alloc (501 samples, 0.11%)</title><rect x="51.6590%" y="709" width="0.1109%" height="15" fill="rgb(217,95,36)" fg:x="233425" fg:w="501"/><text x="51.9090%" y="719.50"></text></g><g><title>d_splice_alias (72 samples, 0.02%)</title><rect x="51.7699%" y="709" width="0.0159%" height="15" fill="rgb(212,110,31)" fg:x="233926" fg:w="72"/><text x="52.0199%" y="719.50"></text></g><g><title>__d_add (63 samples, 0.01%)</title><rect x="51.7719%" y="693" width="0.0139%" height="15" fill="rgb(206,32,53)" fg:x="233935" fg:w="63"/><text x="52.0219%" y="703.50"></text></g><g><title>__lookup_hash (3,000 samples, 0.66%)</title><rect x="51.1525%" y="725" width="0.6639%" height="15" fill="rgb(246,141,37)" fg:x="231136" fg:w="3000"/><text x="51.4025%" y="735.50"></text></g><g><title>lookup_dcache (138 samples, 0.03%)</title><rect x="51.7859%" y="709" width="0.0305%" height="15" fill="rgb(219,16,7)" fg:x="233998" fg:w="138"/><text x="52.0359%" y="719.50"></text></g><g><title>d_lookup (134 samples, 0.03%)</title><rect x="51.7867%" y="693" width="0.0297%" height="15" fill="rgb(230,205,45)" fg:x="234002" fg:w="134"/><text x="52.0367%" y="703.50"></text></g><g><title>__d_lookup (122 samples, 0.03%)</title><rect x="51.7894%" y="677" width="0.0270%" height="15" fill="rgb(231,43,49)" fg:x="234014" fg:w="122"/><text x="52.0394%" y="687.50"></text></g><g><title>__legitimize_mnt (54 samples, 0.01%)</title><rect x="51.8438%" y="645" width="0.0120%" height="15" fill="rgb(212,106,34)" fg:x="234260" fg:w="54"/><text x="52.0938%" y="655.50"></text></g><g><title>__legitimize_path (89 samples, 0.02%)</title><rect x="51.8396%" y="661" width="0.0197%" height="15" fill="rgb(206,83,17)" fg:x="234241" fg:w="89"/><text x="52.0896%" y="671.50"></text></g><g><title>complete_walk (153 samples, 0.03%)</title><rect x="51.8308%" y="693" width="0.0339%" height="15" fill="rgb(244,154,49)" fg:x="234201" fg:w="153"/><text x="52.0808%" y="703.50"></text></g><g><title>try_to_unlazy (134 samples, 0.03%)</title><rect x="51.8350%" y="677" width="0.0297%" height="15" fill="rgb(244,149,49)" fg:x="234220" fg:w="134"/><text x="52.0850%" y="687.50"></text></g><g><title>inode_permission.part.0 (450 samples, 0.10%)</title><rect x="51.9441%" y="677" width="0.0996%" height="15" fill="rgb(227,134,18)" fg:x="234713" fg:w="450"/><text x="52.1941%" y="687.50"></text></g><g><title>generic_permission (98 samples, 0.02%)</title><rect x="52.0220%" y="661" width="0.0217%" height="15" fill="rgb(237,116,36)" fg:x="235065" fg:w="98"/><text x="52.2720%" y="671.50"></text></g><g><title>lookup_fast (778 samples, 0.17%)</title><rect x="52.0817%" y="661" width="0.1722%" height="15" fill="rgb(205,129,40)" fg:x="235335" fg:w="778"/><text x="52.3317%" y="671.50"></text></g><g><title>__d_lookup_rcu (656 samples, 0.15%)</title><rect x="52.1087%" y="645" width="0.1452%" height="15" fill="rgb(236,178,4)" fg:x="235457" fg:w="656"/><text x="52.3587%" y="655.50"></text></g><g><title>link_path_walk.part.0 (1,885 samples, 0.42%)</title><rect x="51.8646%" y="693" width="0.4172%" height="15" fill="rgb(251,76,53)" fg:x="234354" fg:w="1885"/><text x="52.1146%" y="703.50"></text></g><g><title>walk_component (1,039 samples, 0.23%)</title><rect x="52.0519%" y="677" width="0.2299%" height="15" fill="rgb(242,92,40)" fg:x="235200" fg:w="1039"/><text x="52.3019%" y="687.50"></text></g><g><title>step_into (126 samples, 0.03%)</title><rect x="52.2539%" y="661" width="0.0279%" height="15" fill="rgb(209,45,30)" fg:x="236113" fg:w="126"/><text x="52.5039%" y="671.50"></text></g><g><title>path_init (118 samples, 0.03%)</title><rect x="52.2818%" y="693" width="0.0261%" height="15" fill="rgb(218,157,36)" fg:x="236239" fg:w="118"/><text x="52.5318%" y="703.50"></text></g><g><title>nd_jump_root (49 samples, 0.01%)</title><rect x="52.2971%" y="677" width="0.0108%" height="15" fill="rgb(222,186,16)" fg:x="236308" fg:w="49"/><text x="52.5471%" y="687.50"></text></g><g><title>filename_parentat (2,268 samples, 0.50%)</title><rect x="51.8193%" y="725" width="0.5019%" height="15" fill="rgb(254,72,35)" fg:x="234149" fg:w="2268"/><text x="52.0693%" y="735.50"></text></g><g><title>path_parentat (2,227 samples, 0.49%)</title><rect x="51.8283%" y="709" width="0.4929%" height="15" fill="rgb(224,25,35)" fg:x="234190" fg:w="2227"/><text x="52.0783%" y="719.50"></text></g><g><title>terminate_walk (60 samples, 0.01%)</title><rect x="52.3079%" y="693" width="0.0133%" height="15" fill="rgb(206,135,52)" fg:x="236357" fg:w="60"/><text x="52.5579%" y="703.50"></text></g><g><title>kmem_cache_free (47 samples, 0.01%)</title><rect x="52.3212%" y="725" width="0.0104%" height="15" fill="rgb(229,174,47)" fg:x="236417" fg:w="47"/><text x="52.5712%" y="735.50"></text></g><g><title>mnt_want_write (56 samples, 0.01%)</title><rect x="52.3316%" y="725" width="0.0124%" height="15" fill="rgb(242,184,21)" fg:x="236464" fg:w="56"/><text x="52.5816%" y="735.50"></text></g><g><title>filename_create (5,426 samples, 1.20%)</title><rect x="51.1465%" y="741" width="1.2008%" height="15" fill="rgb(213,22,45)" fg:x="231109" fg:w="5426"/><text x="51.3965%" y="751.50"></text></g><g><title>memset_erms (249 samples, 0.06%)</title><rect x="52.3739%" y="709" width="0.0551%" height="15" fill="rgb(237,81,54)" fg:x="236655" fg:w="249"/><text x="52.6239%" y="719.50"></text></g><g><title>kmem_cache_alloc (366 samples, 0.08%)</title><rect x="52.3564%" y="725" width="0.0810%" height="15" fill="rgb(248,177,18)" fg:x="236576" fg:w="366"/><text x="52.6064%" y="735.50"></text></g><g><title>__virt_addr_valid (59 samples, 0.01%)</title><rect x="52.5095%" y="693" width="0.0131%" height="15" fill="rgb(254,31,16)" fg:x="237268" fg:w="59"/><text x="52.7595%" y="703.50"></text></g><g><title>getname_flags.part.0 (801 samples, 0.18%)</title><rect x="52.3500%" y="741" width="0.1773%" height="15" fill="rgb(235,20,31)" fg:x="236547" fg:w="801"/><text x="52.6000%" y="751.50"></text></g><g><title>strncpy_from_user (406 samples, 0.09%)</title><rect x="52.4374%" y="725" width="0.0899%" height="15" fill="rgb(240,56,43)" fg:x="236942" fg:w="406"/><text x="52.6874%" y="735.50"></text></g><g><title>__check_object_size (177 samples, 0.04%)</title><rect x="52.4881%" y="709" width="0.0392%" height="15" fill="rgb(237,197,51)" fg:x="237171" fg:w="177"/><text x="52.7381%" y="719.50"></text></g><g><title>kmem_cache_free (84 samples, 0.02%)</title><rect x="52.5272%" y="741" width="0.0186%" height="15" fill="rgb(241,162,44)" fg:x="237348" fg:w="84"/><text x="52.7772%" y="751.50"></text></g><g><title>security_path_symlink (192 samples, 0.04%)</title><rect x="52.5498%" y="741" width="0.0425%" height="15" fill="rgb(224,23,20)" fg:x="237450" fg:w="192"/><text x="52.7998%" y="751.50"></text></g><g><title>tomoyo_path_symlink (118 samples, 0.03%)</title><rect x="52.5662%" y="725" width="0.0261%" height="15" fill="rgb(250,109,34)" fg:x="237524" fg:w="118"/><text x="52.8162%" y="735.50"></text></g><g><title>tomoyo_path_perm (112 samples, 0.02%)</title><rect x="52.5675%" y="709" width="0.0248%" height="15" fill="rgb(214,175,50)" fg:x="237530" fg:w="112"/><text x="52.8175%" y="719.50"></text></g><g><title>tomoyo_init_request_info (66 samples, 0.01%)</title><rect x="52.5777%" y="693" width="0.0146%" height="15" fill="rgb(213,182,5)" fg:x="237576" fg:w="66"/><text x="52.8277%" y="703.50"></text></g><g><title>up_write (51 samples, 0.01%)</title><rect x="52.5923%" y="741" width="0.0113%" height="15" fill="rgb(209,199,19)" fg:x="237642" fg:w="51"/><text x="52.8423%" y="751.50"></text></g><g><title>_raw_spin_lock (90 samples, 0.02%)</title><rect x="52.6881%" y="661" width="0.0199%" height="15" fill="rgb(236,224,42)" fg:x="238075" fg:w="90"/><text x="52.9381%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (158 samples, 0.03%)</title><rect x="52.6764%" y="693" width="0.0350%" height="15" fill="rgb(246,226,29)" fg:x="238022" fg:w="158"/><text x="52.9264%" y="703.50"></text></g><g><title>btrfs_block_rsv_release (140 samples, 0.03%)</title><rect x="52.6804%" y="677" width="0.0310%" height="15" fill="rgb(227,223,11)" fg:x="238040" fg:w="140"/><text x="52.9304%" y="687.50"></text></g><g><title>__btrfs_end_transaction (406 samples, 0.09%)</title><rect x="52.6346%" y="709" width="0.0899%" height="15" fill="rgb(219,7,51)" fg:x="237833" fg:w="406"/><text x="52.8846%" y="719.50"></text></g><g><title>kmem_cache_free (59 samples, 0.01%)</title><rect x="52.7114%" y="693" width="0.0131%" height="15" fill="rgb(245,167,10)" fg:x="238180" fg:w="59"/><text x="52.9614%" y="703.50"></text></g><g><title>balance_dirty_pages_ratelimited (108 samples, 0.02%)</title><rect x="52.7244%" y="709" width="0.0239%" height="15" fill="rgb(237,224,16)" fg:x="238239" fg:w="108"/><text x="52.9744%" y="719.50"></text></g><g><title>btrfs_comp_cpu_keys (73 samples, 0.02%)</title><rect x="52.7913%" y="645" width="0.0162%" height="15" fill="rgb(226,132,13)" fg:x="238541" fg:w="73"/><text x="53.0413%" y="655.50"></text></g><g><title>__btrfs_add_delayed_item (161 samples, 0.04%)</title><rect x="52.7778%" y="661" width="0.0356%" height="15" fill="rgb(214,140,3)" fg:x="238480" fg:w="161"/><text x="53.0278%" y="671.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (111 samples, 0.02%)</title><rect x="52.8134%" y="661" width="0.0246%" height="15" fill="rgb(221,177,4)" fg:x="238641" fg:w="111"/><text x="53.0634%" y="671.50"></text></g><g><title>__kmalloc (189 samples, 0.04%)</title><rect x="52.8380%" y="661" width="0.0418%" height="15" fill="rgb(238,139,3)" fg:x="238752" fg:w="189"/><text x="53.0880%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (47 samples, 0.01%)</title><rect x="52.8694%" y="645" width="0.0104%" height="15" fill="rgb(216,17,39)" fg:x="238894" fg:w="47"/><text x="53.1194%" y="655.50"></text></g><g><title>mutex_spin_on_owner (107 samples, 0.02%)</title><rect x="52.8798%" y="645" width="0.0237%" height="15" fill="rgb(238,120,9)" fg:x="238941" fg:w="107"/><text x="53.1298%" y="655.50"></text></g><g><title>__mutex_lock.constprop.0 (112 samples, 0.02%)</title><rect x="52.8798%" y="661" width="0.0248%" height="15" fill="rgb(244,92,53)" fg:x="238941" fg:w="112"/><text x="53.1298%" y="671.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (97 samples, 0.02%)</title><rect x="52.9046%" y="661" width="0.0215%" height="15" fill="rgb(224,148,33)" fg:x="239053" fg:w="97"/><text x="53.1546%" y="671.50"></text></g><g><title>btrfs_block_rsv_migrate (84 samples, 0.02%)</title><rect x="52.9074%" y="645" width="0.0186%" height="15" fill="rgb(243,6,36)" fg:x="239066" fg:w="84"/><text x="53.1574%" y="655.50"></text></g><g><title>_raw_spin_lock (76 samples, 0.02%)</title><rect x="52.9092%" y="629" width="0.0168%" height="15" fill="rgb(230,102,11)" fg:x="239074" fg:w="76"/><text x="53.1592%" y="639.50"></text></g><g><title>btrfs_get_or_create_delayed_node (53 samples, 0.01%)</title><rect x="52.9260%" y="661" width="0.0117%" height="15" fill="rgb(234,148,36)" fg:x="239150" fg:w="53"/><text x="53.1760%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (47 samples, 0.01%)</title><rect x="52.9274%" y="645" width="0.0104%" height="15" fill="rgb(251,153,25)" fg:x="239156" fg:w="47"/><text x="53.1774%" y="655.50"></text></g><g><title>btrfs_insert_delayed_dir_index (809 samples, 0.18%)</title><rect x="52.7727%" y="677" width="0.1790%" height="15" fill="rgb(215,129,8)" fg:x="238457" fg:w="809"/><text x="53.0227%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (86 samples, 0.02%)</title><rect x="52.9637%" y="661" width="0.0190%" height="15" fill="rgb(224,128,35)" fg:x="239320" fg:w="86"/><text x="53.2137%" y="671.50"></text></g><g><title>btrfs_release_path (130 samples, 0.03%)</title><rect x="52.9597%" y="677" width="0.0288%" height="15" fill="rgb(237,56,52)" fg:x="239302" fg:w="130"/><text x="53.2097%" y="687.50"></text></g><g><title>crc32c (64 samples, 0.01%)</title><rect x="52.9993%" y="677" width="0.0142%" height="15" fill="rgb(234,213,19)" fg:x="239481" fg:w="64"/><text x="53.2493%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (86 samples, 0.02%)</title><rect x="53.0632%" y="613" width="0.0190%" height="15" fill="rgb(252,82,23)" fg:x="239770" fg:w="86"/><text x="53.3132%" y="623.50"></text></g><g><title>__btrfs_read_lock_root_node (165 samples, 0.04%)</title><rect x="53.0621%" y="629" width="0.0365%" height="15" fill="rgb(254,201,21)" fg:x="239765" fg:w="165"/><text x="53.3121%" y="639.50"></text></g><g><title>btrfs_root_node (74 samples, 0.02%)</title><rect x="53.0823%" y="613" width="0.0164%" height="15" fill="rgb(250,186,11)" fg:x="239856" fg:w="74"/><text x="53.3323%" y="623.50"></text></g><g><title>prepare_to_wait_event (49 samples, 0.01%)</title><rect x="53.1035%" y="613" width="0.0108%" height="15" fill="rgb(211,174,5)" fg:x="239952" fg:w="49"/><text x="53.3535%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.02%)</title><rect x="53.1294%" y="565" width="0.0243%" height="15" fill="rgb(214,121,10)" fg:x="240069" fg:w="110"/><text x="53.3794%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (108 samples, 0.02%)</title><rect x="53.1299%" y="549" width="0.0239%" height="15" fill="rgb(241,66,2)" fg:x="240071" fg:w="108"/><text x="53.3799%" y="559.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="53.1305%" y="533" width="0.0232%" height="15" fill="rgb(220,167,19)" fg:x="240074" fg:w="105"/><text x="53.3805%" y="543.50"></text></g><g><title>finish_task_switch (113 samples, 0.03%)</title><rect x="53.1292%" y="581" width="0.0250%" height="15" fill="rgb(231,54,50)" fg:x="240068" fg:w="113"/><text x="53.3792%" y="591.50"></text></g><g><title>__btrfs_tree_lock (284 samples, 0.06%)</title><rect x="53.0987%" y="629" width="0.0629%" height="15" fill="rgb(239,217,53)" fg:x="239930" fg:w="284"/><text x="53.3487%" y="639.50"></text></g><g><title>schedule (193 samples, 0.04%)</title><rect x="53.1188%" y="613" width="0.0427%" height="15" fill="rgb(248,8,0)" fg:x="240021" fg:w="193"/><text x="53.3688%" y="623.50"></text></g><g><title>__schedule (193 samples, 0.04%)</title><rect x="53.1188%" y="597" width="0.0427%" height="15" fill="rgb(229,118,37)" fg:x="240021" fg:w="193"/><text x="53.3688%" y="607.50"></text></g><g><title>btrfs_leaf_free_space (84 samples, 0.02%)</title><rect x="53.1635%" y="629" width="0.0186%" height="15" fill="rgb(253,223,43)" fg:x="240223" fg:w="84"/><text x="53.4135%" y="639.50"></text></g><g><title>leaf_space_used (71 samples, 0.02%)</title><rect x="53.1664%" y="613" width="0.0157%" height="15" fill="rgb(211,77,36)" fg:x="240236" fg:w="71"/><text x="53.4164%" y="623.50"></text></g><g><title>btrfs_get_32 (58 samples, 0.01%)</title><rect x="53.1693%" y="597" width="0.0128%" height="15" fill="rgb(219,3,53)" fg:x="240249" fg:w="58"/><text x="53.4193%" y="607.50"></text></g><g><title>btrfs_try_tree_write_lock (69 samples, 0.02%)</title><rect x="53.1916%" y="629" width="0.0153%" height="15" fill="rgb(244,45,42)" fg:x="240350" fg:w="69"/><text x="53.4416%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (373 samples, 0.08%)</title><rect x="53.2069%" y="629" width="0.0825%" height="15" fill="rgb(225,95,27)" fg:x="240419" fg:w="373"/><text x="53.4569%" y="639.50"></text></g><g><title>btrfs_get_64 (62 samples, 0.01%)</title><rect x="53.3104%" y="613" width="0.0137%" height="15" fill="rgb(207,74,8)" fg:x="240887" fg:w="62"/><text x="53.5604%" y="623.50"></text></g><g><title>__radix_tree_lookup (188 samples, 0.04%)</title><rect x="53.3423%" y="597" width="0.0416%" height="15" fill="rgb(243,63,36)" fg:x="241031" fg:w="188"/><text x="53.5923%" y="607.50"></text></g><g><title>mark_page_accessed (74 samples, 0.02%)</title><rect x="53.3888%" y="581" width="0.0164%" height="15" fill="rgb(211,180,12)" fg:x="241241" fg:w="74"/><text x="53.6388%" y="591.50"></text></g><g><title>mark_extent_buffer_accessed (97 samples, 0.02%)</title><rect x="53.3839%" y="597" width="0.0215%" height="15" fill="rgb(254,166,49)" fg:x="241219" fg:w="97"/><text x="53.6339%" y="607.50"></text></g><g><title>find_extent_buffer (354 samples, 0.08%)</title><rect x="53.3275%" y="613" width="0.0783%" height="15" fill="rgb(205,19,0)" fg:x="240964" fg:w="354"/><text x="53.5775%" y="623.50"></text></g><g><title>read_block_for_search.isra.0 (568 samples, 0.13%)</title><rect x="53.2894%" y="629" width="0.1257%" height="15" fill="rgb(224,172,32)" fg:x="240792" fg:w="568"/><text x="53.5394%" y="639.50"></text></g><g><title>alloc_tree_block_no_bg_flush (64 samples, 0.01%)</title><rect x="53.4178%" y="613" width="0.0142%" height="15" fill="rgb(254,136,30)" fg:x="241372" fg:w="64"/><text x="53.6678%" y="623.50"></text></g><g><title>btrfs_alloc_tree_block (64 samples, 0.01%)</title><rect x="53.4178%" y="597" width="0.0142%" height="15" fill="rgb(246,19,35)" fg:x="241372" fg:w="64"/><text x="53.6678%" y="607.50"></text></g><g><title>btrfs_get_token_32 (74 samples, 0.02%)</title><rect x="53.4481%" y="581" width="0.0164%" height="15" fill="rgb(219,24,36)" fg:x="241509" fg:w="74"/><text x="53.6981%" y="591.50"></text></g><g><title>btrfs_set_token_32 (63 samples, 0.01%)</title><rect x="53.4651%" y="581" width="0.0139%" height="15" fill="rgb(251,55,1)" fg:x="241586" fg:w="63"/><text x="53.7151%" y="591.50"></text></g><g><title>__push_leaf_left (205 samples, 0.05%)</title><rect x="53.4419%" y="597" width="0.0454%" height="15" fill="rgb(218,117,39)" fg:x="241481" fg:w="205"/><text x="53.6919%" y="607.50"></text></g><g><title>push_leaf_left (226 samples, 0.05%)</title><rect x="53.4412%" y="613" width="0.0500%" height="15" fill="rgb(248,169,11)" fg:x="241478" fg:w="226"/><text x="53.6912%" y="623.50"></text></g><g><title>btrfs_get_token_32 (163 samples, 0.04%)</title><rect x="53.5127%" y="581" width="0.0361%" height="15" fill="rgb(244,40,44)" fg:x="241801" fg:w="163"/><text x="53.7627%" y="591.50"></text></g><g><title>btrfs_set_token_32 (138 samples, 0.03%)</title><rect x="53.5521%" y="581" width="0.0305%" height="15" fill="rgb(234,62,37)" fg:x="241979" fg:w="138"/><text x="53.8021%" y="591.50"></text></g><g><title>memcpy_extent_buffer (50 samples, 0.01%)</title><rect x="53.5858%" y="581" width="0.0111%" height="15" fill="rgb(207,117,42)" fg:x="242131" fg:w="50"/><text x="53.8358%" y="591.50"></text></g><g><title>memmove_extent_buffer (57 samples, 0.01%)</title><rect x="53.5968%" y="581" width="0.0126%" height="15" fill="rgb(213,43,2)" fg:x="242181" fg:w="57"/><text x="53.8468%" y="591.50"></text></g><g><title>memmove (46 samples, 0.01%)</title><rect x="53.5993%" y="565" width="0.0102%" height="15" fill="rgb(244,202,51)" fg:x="242192" fg:w="46"/><text x="53.8493%" y="575.50"></text></g><g><title>__push_leaf_right (528 samples, 0.12%)</title><rect x="53.4935%" y="597" width="0.1169%" height="15" fill="rgb(253,174,46)" fg:x="241714" fg:w="528"/><text x="53.7435%" y="607.50"></text></g><g><title>btrfs_read_node_slot (53 samples, 0.01%)</title><rect x="53.6141%" y="597" width="0.0117%" height="15" fill="rgb(251,23,1)" fg:x="242259" fg:w="53"/><text x="53.8641%" y="607.50"></text></g><g><title>read_tree_block (49 samples, 0.01%)</title><rect x="53.6150%" y="581" width="0.0108%" height="15" fill="rgb(253,26,1)" fg:x="242263" fg:w="49"/><text x="53.8650%" y="591.50"></text></g><g><title>split_leaf (964 samples, 0.21%)</title><rect x="53.4156%" y="629" width="0.2133%" height="15" fill="rgb(216,89,31)" fg:x="241362" fg:w="964"/><text x="53.6656%" y="639.50"></text></g><g><title>push_leaf_right (622 samples, 0.14%)</title><rect x="53.4913%" y="613" width="0.1377%" height="15" fill="rgb(209,109,5)" fg:x="241704" fg:w="622"/><text x="53.7413%" y="623.50"></text></g><g><title>__wake_up_common (89 samples, 0.02%)</title><rect x="53.6473%" y="597" width="0.0197%" height="15" fill="rgb(229,63,13)" fg:x="242409" fg:w="89"/><text x="53.8973%" y="607.50"></text></g><g><title>autoremove_wake_function (88 samples, 0.02%)</title><rect x="53.6475%" y="581" width="0.0195%" height="15" fill="rgb(238,137,54)" fg:x="242410" fg:w="88"/><text x="53.8975%" y="591.50"></text></g><g><title>try_to_wake_up (87 samples, 0.02%)</title><rect x="53.6477%" y="565" width="0.0193%" height="15" fill="rgb(228,1,9)" fg:x="242411" fg:w="87"/><text x="53.8977%" y="575.50"></text></g><g><title>__wake_up_common_lock (90 samples, 0.02%)</title><rect x="53.6473%" y="613" width="0.0199%" height="15" fill="rgb(249,120,48)" fg:x="242409" fg:w="90"/><text x="53.8973%" y="623.50"></text></g><g><title>btrfs_search_slot (2,916 samples, 0.65%)</title><rect x="53.0320%" y="645" width="0.6453%" height="15" fill="rgb(209,72,36)" fg:x="239629" fg:w="2916"/><text x="53.2820%" y="655.50"></text></g><g><title>unlock_up (199 samples, 0.04%)</title><rect x="53.6333%" y="629" width="0.0440%" height="15" fill="rgb(247,98,49)" fg:x="242346" fg:w="199"/><text x="53.8833%" y="639.50"></text></g><g><title>btrfs_get_token_32 (1,213 samples, 0.27%)</title><rect x="53.7336%" y="629" width="0.2684%" height="15" fill="rgb(233,75,36)" fg:x="242799" fg:w="1213"/><text x="53.9836%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (162 samples, 0.04%)</title><rect x="53.9662%" y="613" width="0.0359%" height="15" fill="rgb(225,14,24)" fg:x="243850" fg:w="162"/><text x="54.2162%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (75 samples, 0.02%)</title><rect x="54.0020%" y="629" width="0.0166%" height="15" fill="rgb(237,193,20)" fg:x="244012" fg:w="75"/><text x="54.2520%" y="639.50"></text></g><g><title>leaf_space_used (67 samples, 0.01%)</title><rect x="54.0038%" y="613" width="0.0148%" height="15" fill="rgb(239,122,19)" fg:x="244020" fg:w="67"/><text x="54.2538%" y="623.50"></text></g><g><title>btrfs_get_32 (48 samples, 0.01%)</title><rect x="54.0080%" y="597" width="0.0106%" height="15" fill="rgb(231,220,10)" fg:x="244039" fg:w="48"/><text x="54.2580%" y="607.50"></text></g><g><title>btrfs_mark_buffer_dirty (47 samples, 0.01%)</title><rect x="54.0186%" y="629" width="0.0104%" height="15" fill="rgb(220,66,15)" fg:x="244087" fg:w="47"/><text x="54.2686%" y="639.50"></text></g><g><title>btrfs_set_token_32 (949 samples, 0.21%)</title><rect x="54.0290%" y="629" width="0.2100%" height="15" fill="rgb(215,171,52)" fg:x="244134" fg:w="949"/><text x="54.2790%" y="639.50"></text></g><g><title>check_setget_bounds.isra.0 (154 samples, 0.03%)</title><rect x="54.2050%" y="613" width="0.0341%" height="15" fill="rgb(241,169,50)" fg:x="244929" fg:w="154"/><text x="54.4550%" y="623.50"></text></g><g><title>copy_pages (46 samples, 0.01%)</title><rect x="54.2481%" y="613" width="0.0102%" height="15" fill="rgb(236,189,0)" fg:x="245124" fg:w="46"/><text x="54.4981%" y="623.50"></text></g><g><title>memcpy_extent_buffer (368 samples, 0.08%)</title><rect x="54.2435%" y="629" width="0.0814%" height="15" fill="rgb(217,147,20)" fg:x="245103" fg:w="368"/><text x="54.4935%" y="639.50"></text></g><g><title>memmove (301 samples, 0.07%)</title><rect x="54.2583%" y="613" width="0.0666%" height="15" fill="rgb(206,188,39)" fg:x="245170" fg:w="301"/><text x="54.5083%" y="623.50"></text></g><g><title>memmove_extent_buffer (287 samples, 0.06%)</title><rect x="54.3249%" y="629" width="0.0635%" height="15" fill="rgb(227,118,25)" fg:x="245471" fg:w="287"/><text x="54.5749%" y="639.50"></text></g><g><title>memmove (215 samples, 0.05%)</title><rect x="54.3409%" y="613" width="0.0476%" height="15" fill="rgb(248,171,40)" fg:x="245543" fg:w="215"/><text x="54.5909%" y="623.50"></text></g><g><title>insert_with_overflow (6,248 samples, 1.38%)</title><rect x="53.0135%" y="677" width="1.3827%" height="15" fill="rgb(251,90,54)" fg:x="239545" fg:w="6248"/><text x="53.2635%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (6,180 samples, 1.37%)</title><rect x="53.0285%" y="661" width="1.3677%" height="15" fill="rgb(234,11,46)" fg:x="239613" fg:w="6180"/><text x="53.2785%" y="671.50"></text></g><g><title>setup_items_for_insert (3,248 samples, 0.72%)</title><rect x="53.6774%" y="645" width="0.7188%" height="15" fill="rgb(229,134,13)" fg:x="242545" fg:w="3248"/><text x="53.9274%" y="655.50"></text></g><g><title>kmem_cache_alloc (67 samples, 0.01%)</title><rect x="54.3962%" y="677" width="0.0148%" height="15" fill="rgb(223,129,3)" fg:x="245793" fg:w="67"/><text x="54.6462%" y="687.50"></text></g><g><title>kmem_cache_free (58 samples, 0.01%)</title><rect x="54.4110%" y="677" width="0.0128%" height="15" fill="rgb(221,124,13)" fg:x="245860" fg:w="58"/><text x="54.6610%" y="687.50"></text></g><g><title>btrfs_insert_dir_item (7,586 samples, 1.68%)</title><rect x="52.7620%" y="693" width="1.6788%" height="15" fill="rgb(234,3,18)" fg:x="238409" fg:w="7586"/><text x="53.0120%" y="703.50"></text></g><g><title>write_extent_buffer (77 samples, 0.02%)</title><rect x="54.4239%" y="677" width="0.0170%" height="15" fill="rgb(249,199,20)" fg:x="245918" fg:w="77"/><text x="54.6739%" y="687.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (81 samples, 0.02%)</title><rect x="54.4531%" y="661" width="0.0179%" height="15" fill="rgb(224,134,6)" fg:x="246050" fg:w="81"/><text x="54.7031%" y="671.50"></text></g><g><title>btrfs_delayed_update_inode (199 samples, 0.04%)</title><rect x="54.4504%" y="677" width="0.0440%" height="15" fill="rgb(254,83,26)" fg:x="246038" fg:w="199"/><text x="54.7004%" y="687.50"></text></g><g><title>btrfs_update_inode (314 samples, 0.07%)</title><rect x="54.4409%" y="693" width="0.0695%" height="15" fill="rgb(217,88,9)" fg:x="245995" fg:w="314"/><text x="54.6909%" y="703.50"></text></g><g><title>btrfs_update_root_times (72 samples, 0.02%)</title><rect x="54.4945%" y="677" width="0.0159%" height="15" fill="rgb(225,73,2)" fg:x="246237" fg:w="72"/><text x="54.7445%" y="687.50"></text></g><g><title>btrfs_add_link (7,977 samples, 1.77%)</title><rect x="52.7483%" y="709" width="1.7654%" height="15" fill="rgb(226,44,39)" fg:x="238347" fg:w="7977"/><text x="52.9983%" y="719.50"></text></g><g><title>btrfs_balance_delayed_items (67 samples, 0.01%)</title><rect x="54.5217%" y="693" width="0.0148%" height="15" fill="rgb(228,53,17)" fg:x="246360" fg:w="67"/><text x="54.7717%" y="703.50"></text></g><g><title>select_task_rq_fair (74 samples, 0.02%)</title><rect x="54.5792%" y="645" width="0.0164%" height="15" fill="rgb(212,27,27)" fg:x="246620" fg:w="74"/><text x="54.8292%" y="655.50"></text></g><g><title>enqueue_task_fair (52 samples, 0.01%)</title><rect x="54.5985%" y="629" width="0.0115%" height="15" fill="rgb(241,50,6)" fg:x="246707" fg:w="52"/><text x="54.8485%" y="639.50"></text></g><g><title>ttwu_do_activate (88 samples, 0.02%)</title><rect x="54.5976%" y="645" width="0.0195%" height="15" fill="rgb(225,28,51)" fg:x="246703" fg:w="88"/><text x="54.8476%" y="655.50"></text></g><g><title>__queue_work (376 samples, 0.08%)</title><rect x="54.5431%" y="677" width="0.0832%" height="15" fill="rgb(215,33,16)" fg:x="246457" fg:w="376"/><text x="54.7931%" y="687.50"></text></g><g><title>try_to_wake_up (281 samples, 0.06%)</title><rect x="54.5642%" y="661" width="0.0622%" height="15" fill="rgb(243,40,39)" fg:x="246552" fg:w="281"/><text x="54.8142%" y="671.50"></text></g><g><title>btrfs_btree_balance_dirty (510 samples, 0.11%)</title><rect x="54.5137%" y="709" width="0.1129%" height="15" fill="rgb(225,11,42)" fg:x="246324" fg:w="510"/><text x="54.7637%" y="719.50"></text></g><g><title>queue_work_on (386 samples, 0.09%)</title><rect x="54.5411%" y="693" width="0.0854%" height="15" fill="rgb(241,220,38)" fg:x="246448" fg:w="386"/><text x="54.7911%" y="703.50"></text></g><g><title>mutex_lock (58 samples, 0.01%)</title><rect x="54.6295%" y="693" width="0.0128%" height="15" fill="rgb(244,52,35)" fg:x="246847" fg:w="58"/><text x="54.8795%" y="703.50"></text></g><g><title>btrfs_find_free_ino (107 samples, 0.02%)</title><rect x="54.6268%" y="709" width="0.0237%" height="15" fill="rgb(246,42,46)" fg:x="246835" fg:w="107"/><text x="54.8768%" y="719.50"></text></g><g><title>select_task_rq_fair (91 samples, 0.02%)</title><rect x="54.7735%" y="613" width="0.0201%" height="15" fill="rgb(205,184,13)" fg:x="247498" fg:w="91"/><text x="55.0235%" y="623.50"></text></g><g><title>enqueue_entity (90 samples, 0.02%)</title><rect x="54.8016%" y="581" width="0.0199%" height="15" fill="rgb(209,48,36)" fg:x="247625" fg:w="90"/><text x="55.0516%" y="591.50"></text></g><g><title>enqueue_task_fair (117 samples, 0.03%)</title><rect x="54.7961%" y="597" width="0.0259%" height="15" fill="rgb(244,34,51)" fg:x="247600" fg:w="117"/><text x="55.0461%" y="607.50"></text></g><g><title>ttwu_do_activate (206 samples, 0.05%)</title><rect x="54.7948%" y="613" width="0.0456%" height="15" fill="rgb(221,107,33)" fg:x="247594" fg:w="206"/><text x="55.0448%" y="623.50"></text></g><g><title>psi_task_change (83 samples, 0.02%)</title><rect x="54.8220%" y="597" width="0.0184%" height="15" fill="rgb(224,203,12)" fg:x="247717" fg:w="83"/><text x="55.0720%" y="607.50"></text></g><g><title>psi_group_change (71 samples, 0.02%)</title><rect x="54.8246%" y="581" width="0.0157%" height="15" fill="rgb(230,215,18)" fg:x="247729" fg:w="71"/><text x="55.0746%" y="591.50"></text></g><g><title>__wake_up_common (897 samples, 0.20%)</title><rect x="54.6558%" y="661" width="0.1985%" height="15" fill="rgb(206,185,35)" fg:x="246966" fg:w="897"/><text x="54.9058%" y="671.50"></text></g><g><title>autoremove_wake_function (881 samples, 0.19%)</title><rect x="54.6593%" y="645" width="0.1950%" height="15" fill="rgb(228,140,34)" fg:x="246982" fg:w="881"/><text x="54.9093%" y="655.50"></text></g><g><title>try_to_wake_up (875 samples, 0.19%)</title><rect x="54.6607%" y="629" width="0.1936%" height="15" fill="rgb(208,93,13)" fg:x="246988" fg:w="875"/><text x="54.9107%" y="639.50"></text></g><g><title>__wake_up_common_lock (920 samples, 0.20%)</title><rect x="54.6542%" y="677" width="0.2036%" height="15" fill="rgb(221,193,39)" fg:x="246959" fg:w="920"/><text x="54.9042%" y="687.50"></text></g><g><title>free_extent_buffer.part.0 (110 samples, 0.02%)</title><rect x="54.8645%" y="677" width="0.0243%" height="15" fill="rgb(241,132,34)" fg:x="247909" fg:w="110"/><text x="55.1145%" y="687.50"></text></g><g><title>btrfs_free_path (1,108 samples, 0.25%)</title><rect x="54.6505%" y="709" width="0.2452%" height="15" fill="rgb(221,141,10)" fg:x="246942" fg:w="1108"/><text x="54.9005%" y="719.50"></text></g><g><title>btrfs_release_path (1,104 samples, 0.24%)</title><rect x="54.6514%" y="693" width="0.2443%" height="15" fill="rgb(226,90,31)" fg:x="246946" fg:w="1104"/><text x="54.9014%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (96 samples, 0.02%)</title><rect x="54.9508%" y="661" width="0.0212%" height="15" fill="rgb(243,75,5)" fg:x="248299" fg:w="96"/><text x="55.2008%" y="671.50"></text></g><g><title>__btrfs_read_lock_root_node (177 samples, 0.04%)</title><rect x="54.9492%" y="677" width="0.0392%" height="15" fill="rgb(227,156,21)" fg:x="248292" fg:w="177"/><text x="55.1992%" y="687.50"></text></g><g><title>btrfs_root_node (74 samples, 0.02%)</title><rect x="54.9720%" y="661" width="0.0164%" height="15" fill="rgb(250,195,8)" fg:x="248395" fg:w="74"/><text x="55.2220%" y="671.50"></text></g><g><title>finish_wait (229 samples, 0.05%)</title><rect x="55.0174%" y="661" width="0.0507%" height="15" fill="rgb(220,134,5)" fg:x="248600" fg:w="229"/><text x="55.2674%" y="671.50"></text></g><g><title>_raw_spin_lock_irqsave (206 samples, 0.05%)</title><rect x="55.0225%" y="645" width="0.0456%" height="15" fill="rgb(246,106,34)" fg:x="248623" fg:w="206"/><text x="55.2725%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (193 samples, 0.04%)</title><rect x="55.0254%" y="629" width="0.0427%" height="15" fill="rgb(205,1,4)" fg:x="248636" fg:w="193"/><text x="55.2754%" y="639.50"></text></g><g><title>_raw_spin_lock_irqsave (935 samples, 0.21%)</title><rect x="55.0949%" y="645" width="0.2069%" height="15" fill="rgb(224,151,29)" fg:x="248950" fg:w="935"/><text x="55.3449%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (836 samples, 0.19%)</title><rect x="55.1168%" y="629" width="0.1850%" height="15" fill="rgb(251,196,0)" fg:x="249049" fg:w="836"/><text x="55.3668%" y="639.50"></text></g><g><title>prepare_to_wait_event (1,084 samples, 0.24%)</title><rect x="55.0687%" y="661" width="0.2399%" height="15" fill="rgb(212,127,0)" fg:x="248832" fg:w="1084"/><text x="55.3187%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (807 samples, 0.18%)</title><rect x="55.3086%" y="661" width="0.1786%" height="15" fill="rgb(236,71,53)" fg:x="249916" fg:w="807"/><text x="55.5586%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (417 samples, 0.09%)</title><rect x="55.3950%" y="645" width="0.0923%" height="15" fill="rgb(227,99,0)" fg:x="250306" fg:w="417"/><text x="55.6450%" y="655.50"></text></g><g><title>__perf_event_task_sched_out (69 samples, 0.02%)</title><rect x="55.5134%" y="629" width="0.0153%" height="15" fill="rgb(239,89,21)" fg:x="250841" fg:w="69"/><text x="55.7634%" y="639.50"></text></g><g><title>update_cfs_group (46 samples, 0.01%)</title><rect x="55.5541%" y="597" width="0.0102%" height="15" fill="rgb(243,122,19)" fg:x="251025" fg:w="46"/><text x="55.8041%" y="607.50"></text></g><g><title>update_curr (113 samples, 0.03%)</title><rect x="55.5643%" y="597" width="0.0250%" height="15" fill="rgb(229,192,45)" fg:x="251071" fg:w="113"/><text x="55.8143%" y="607.50"></text></g><g><title>dequeue_entity (327 samples, 0.07%)</title><rect x="55.5395%" y="613" width="0.0724%" height="15" fill="rgb(235,165,35)" fg:x="250959" fg:w="327"/><text x="55.7895%" y="623.50"></text></g><g><title>update_load_avg (102 samples, 0.02%)</title><rect x="55.5893%" y="597" width="0.0226%" height="15" fill="rgb(253,202,0)" fg:x="251184" fg:w="102"/><text x="55.8393%" y="607.50"></text></g><g><title>dequeue_task_fair (383 samples, 0.08%)</title><rect x="55.5317%" y="629" width="0.0848%" height="15" fill="rgb(235,51,20)" fg:x="250924" fg:w="383"/><text x="55.7817%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.03%)</title><rect x="55.6302%" y="613" width="0.0328%" height="15" fill="rgb(218,95,46)" fg:x="251369" fg:w="148"/><text x="55.8802%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (140 samples, 0.03%)</title><rect x="55.6320%" y="597" width="0.0310%" height="15" fill="rgb(212,81,10)" fg:x="251377" fg:w="140"/><text x="55.8820%" y="607.50"></text></g><g><title>native_write_msr (134 samples, 0.03%)</title><rect x="55.6333%" y="581" width="0.0297%" height="15" fill="rgb(240,59,0)" fg:x="251383" fg:w="134"/><text x="55.8833%" y="591.50"></text></g><g><title>finish_task_switch (219 samples, 0.05%)</title><rect x="55.6165%" y="629" width="0.0485%" height="15" fill="rgb(212,191,42)" fg:x="251307" fg:w="219"/><text x="55.8665%" y="639.50"></text></g><g><title>pick_next_task_fair (76 samples, 0.02%)</title><rect x="55.6652%" y="629" width="0.0168%" height="15" fill="rgb(233,140,3)" fg:x="251527" fg:w="76"/><text x="55.9152%" y="639.50"></text></g><g><title>pick_next_task_idle (60 samples, 0.01%)</title><rect x="55.6820%" y="629" width="0.0133%" height="15" fill="rgb(215,69,23)" fg:x="251603" fg:w="60"/><text x="55.9320%" y="639.50"></text></g><g><title>__update_idle_core (49 samples, 0.01%)</title><rect x="55.6844%" y="613" width="0.0108%" height="15" fill="rgb(240,202,20)" fg:x="251614" fg:w="49"/><text x="55.9344%" y="623.50"></text></g><g><title>psi_task_change (292 samples, 0.06%)</title><rect x="55.6953%" y="629" width="0.0646%" height="15" fill="rgb(209,146,50)" fg:x="251663" fg:w="292"/><text x="55.9453%" y="639.50"></text></g><g><title>psi_group_change (255 samples, 0.06%)</title><rect x="55.7035%" y="613" width="0.0564%" height="15" fill="rgb(253,102,54)" fg:x="251700" fg:w="255"/><text x="55.9535%" y="623.50"></text></g><g><title>record_times (63 samples, 0.01%)</title><rect x="55.7460%" y="597" width="0.0139%" height="15" fill="rgb(250,173,47)" fg:x="251892" fg:w="63"/><text x="55.9960%" y="607.50"></text></g><g><title>__btrfs_tree_lock (3,561 samples, 0.79%)</title><rect x="54.9884%" y="677" width="0.7881%" height="15" fill="rgb(232,142,7)" fg:x="248469" fg:w="3561"/><text x="55.2384%" y="687.50"></text></g><g><title>schedule (1,307 samples, 0.29%)</title><rect x="55.4872%" y="661" width="0.2893%" height="15" fill="rgb(230,157,47)" fg:x="250723" fg:w="1307"/><text x="55.7372%" y="671.50"></text></g><g><title>__schedule (1,285 samples, 0.28%)</title><rect x="55.4921%" y="645" width="0.2844%" height="15" fill="rgb(214,177,35)" fg:x="250745" fg:w="1285"/><text x="55.7421%" y="655.50"></text></g><g><title>btrfs_leaf_free_space (73 samples, 0.02%)</title><rect x="55.7796%" y="677" width="0.0162%" height="15" fill="rgb(234,119,46)" fg:x="252044" fg:w="73"/><text x="56.0296%" y="687.50"></text></g><g><title>leaf_space_used (54 samples, 0.01%)</title><rect x="55.7838%" y="661" width="0.0120%" height="15" fill="rgb(241,180,50)" fg:x="252063" fg:w="54"/><text x="56.0338%" y="671.50"></text></g><g><title>btrfs_set_path_blocking (99 samples, 0.02%)</title><rect x="55.7971%" y="677" width="0.0219%" height="15" fill="rgb(221,54,25)" fg:x="252123" fg:w="99"/><text x="56.0471%" y="687.50"></text></g><g><title>_raw_write_lock (47 samples, 0.01%)</title><rect x="55.8256%" y="661" width="0.0104%" height="15" fill="rgb(209,157,44)" fg:x="252252" fg:w="47"/><text x="56.0756%" y="671.50"></text></g><g><title>btrfs_try_tree_write_lock (1,258 samples, 0.28%)</title><rect x="55.8192%" y="677" width="0.2784%" height="15" fill="rgb(246,115,41)" fg:x="252223" fg:w="1258"/><text x="56.0692%" y="687.50"></text></g><g><title>queued_write_lock_slowpath (1,182 samples, 0.26%)</title><rect x="55.8360%" y="661" width="0.2616%" height="15" fill="rgb(229,86,1)" fg:x="252299" fg:w="1182"/><text x="56.0860%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (622 samples, 0.14%)</title><rect x="55.9600%" y="645" width="0.1377%" height="15" fill="rgb(240,108,53)" fg:x="252859" fg:w="622"/><text x="56.2100%" y="655.50"></text></g><g><title>generic_bin_search.constprop.0 (279 samples, 0.06%)</title><rect x="56.0976%" y="677" width="0.0617%" height="15" fill="rgb(227,134,2)" fg:x="253481" fg:w="279"/><text x="56.3476%" y="687.50"></text></g><g><title>btrfs_buffer_uptodate (50 samples, 0.01%)</title><rect x="56.1695%" y="661" width="0.0111%" height="15" fill="rgb(213,129,25)" fg:x="253806" fg:w="50"/><text x="56.4195%" y="671.50"></text></g><g><title>btrfs_get_64 (58 samples, 0.01%)</title><rect x="56.1806%" y="661" width="0.0128%" height="15" fill="rgb(226,35,21)" fg:x="253856" fg:w="58"/><text x="56.4306%" y="671.50"></text></g><g><title>__radix_tree_lookup (181 samples, 0.04%)</title><rect x="56.2304%" y="645" width="0.0401%" height="15" fill="rgb(208,129,26)" fg:x="254081" fg:w="181"/><text x="56.4804%" y="655.50"></text></g><g><title>mark_page_accessed (62 samples, 0.01%)</title><rect x="56.2778%" y="629" width="0.0137%" height="15" fill="rgb(224,83,6)" fg:x="254295" fg:w="62"/><text x="56.5278%" y="639.50"></text></g><g><title>mark_extent_buffer_accessed (93 samples, 0.02%)</title><rect x="56.2711%" y="645" width="0.0206%" height="15" fill="rgb(227,52,39)" fg:x="254265" fg:w="93"/><text x="56.5211%" y="655.50"></text></g><g><title>find_extent_buffer (410 samples, 0.09%)</title><rect x="56.2016%" y="661" width="0.0907%" height="15" fill="rgb(241,30,17)" fg:x="253951" fg:w="410"/><text x="56.4516%" y="671.50"></text></g><g><title>read_block_for_search.isra.0 (656 samples, 0.15%)</title><rect x="56.1594%" y="677" width="0.1452%" height="15" fill="rgb(246,186,42)" fg:x="253760" fg:w="656"/><text x="56.4094%" y="687.50"></text></g><g><title>read_extent_buffer (55 samples, 0.01%)</title><rect x="56.2924%" y="661" width="0.0122%" height="15" fill="rgb(221,169,15)" fg:x="254361" fg:w="55"/><text x="56.5424%" y="671.50"></text></g><g><title>add_to_page_cache_lru (59 samples, 0.01%)</title><rect x="56.3141%" y="597" width="0.0131%" height="15" fill="rgb(235,108,21)" fg:x="254459" fg:w="59"/><text x="56.5641%" y="607.50"></text></g><g><title>alloc_extent_buffer (112 samples, 0.02%)</title><rect x="56.3059%" y="629" width="0.0248%" height="15" fill="rgb(219,148,30)" fg:x="254422" fg:w="112"/><text x="56.5559%" y="639.50"></text></g><g><title>pagecache_get_page (99 samples, 0.02%)</title><rect x="56.3087%" y="613" width="0.0219%" height="15" fill="rgb(220,109,5)" fg:x="254435" fg:w="99"/><text x="56.5587%" y="623.50"></text></g><g><title>alloc_tree_block_no_bg_flush (182 samples, 0.04%)</title><rect x="56.3054%" y="661" width="0.0403%" height="15" fill="rgb(213,203,48)" fg:x="254420" fg:w="182"/><text x="56.5554%" y="671.50"></text></g><g><title>btrfs_alloc_tree_block (182 samples, 0.04%)</title><rect x="56.3054%" y="645" width="0.0403%" height="15" fill="rgb(244,71,33)" fg:x="254420" fg:w="182"/><text x="56.5554%" y="655.50"></text></g><g><title>__push_leaf_left (76 samples, 0.02%)</title><rect x="56.3570%" y="645" width="0.0168%" height="15" fill="rgb(209,23,2)" fg:x="254653" fg:w="76"/><text x="56.6070%" y="655.50"></text></g><g><title>push_leaf_left (97 samples, 0.02%)</title><rect x="56.3563%" y="661" width="0.0215%" height="15" fill="rgb(219,97,7)" fg:x="254650" fg:w="97"/><text x="56.6063%" y="671.50"></text></g><g><title>split_leaf (337 samples, 0.07%)</title><rect x="56.3045%" y="677" width="0.0746%" height="15" fill="rgb(216,161,23)" fg:x="254416" fg:w="337"/><text x="56.5545%" y="687.50"></text></g><g><title>_raw_spin_lock (55 samples, 0.01%)</title><rect x="56.4336%" y="597" width="0.0122%" height="15" fill="rgb(207,45,42)" fg:x="254999" fg:w="55"/><text x="56.6836%" y="607.50"></text></g><g><title>available_idle_cpu (47 samples, 0.01%)</title><rect x="56.4736%" y="581" width="0.0104%" height="15" fill="rgb(241,61,4)" fg:x="255180" fg:w="47"/><text x="56.7236%" y="591.50"></text></g><g><title>select_task_rq_fair (207 samples, 0.05%)</title><rect x="56.4555%" y="597" width="0.0458%" height="15" fill="rgb(236,170,1)" fg:x="255098" fg:w="207"/><text x="56.7055%" y="607.50"></text></g><g><title>enqueue_entity (196 samples, 0.04%)</title><rect x="56.5214%" y="565" width="0.0434%" height="15" fill="rgb(239,72,5)" fg:x="255396" fg:w="196"/><text x="56.7714%" y="575.50"></text></g><g><title>update_load_avg (62 samples, 0.01%)</title><rect x="56.5511%" y="549" width="0.0137%" height="15" fill="rgb(214,13,50)" fg:x="255530" fg:w="62"/><text x="56.8011%" y="559.50"></text></g><g><title>enqueue_task_fair (256 samples, 0.06%)</title><rect x="56.5121%" y="581" width="0.0567%" height="15" fill="rgb(224,88,9)" fg:x="255354" fg:w="256"/><text x="56.7621%" y="591.50"></text></g><g><title>ttwu_do_activate (514 samples, 0.11%)</title><rect x="56.5057%" y="597" width="0.1138%" height="15" fill="rgb(238,192,34)" fg:x="255325" fg:w="514"/><text x="56.7557%" y="607.50"></text></g><g><title>psi_task_change (228 samples, 0.05%)</title><rect x="56.5690%" y="581" width="0.0505%" height="15" fill="rgb(217,203,50)" fg:x="255611" fg:w="228"/><text x="56.8190%" y="591.50"></text></g><g><title>psi_group_change (201 samples, 0.04%)</title><rect x="56.5750%" y="565" width="0.0445%" height="15" fill="rgb(241,123,32)" fg:x="255638" fg:w="201"/><text x="56.8250%" y="575.50"></text></g><g><title>ttwu_do_wakeup (52 samples, 0.01%)</title><rect x="56.6195%" y="597" width="0.0115%" height="15" fill="rgb(248,151,39)" fg:x="255839" fg:w="52"/><text x="56.8695%" y="607.50"></text></g><g><title>check_preempt_curr (46 samples, 0.01%)</title><rect x="56.6208%" y="581" width="0.0102%" height="15" fill="rgb(208,89,6)" fg:x="255845" fg:w="46"/><text x="56.8708%" y="591.50"></text></g><g><title>__wake_up_common (1,115 samples, 0.25%)</title><rect x="56.3942%" y="645" width="0.2468%" height="15" fill="rgb(254,43,26)" fg:x="254821" fg:w="1115"/><text x="56.6442%" y="655.50"></text></g><g><title>autoremove_wake_function (1,104 samples, 0.24%)</title><rect x="56.3966%" y="629" width="0.2443%" height="15" fill="rgb(216,158,13)" fg:x="254832" fg:w="1104"/><text x="56.6466%" y="639.50"></text></g><g><title>try_to_wake_up (1,065 samples, 0.24%)</title><rect x="56.4052%" y="613" width="0.2357%" height="15" fill="rgb(212,47,37)" fg:x="254871" fg:w="1065"/><text x="56.6552%" y="623.50"></text></g><g><title>__wake_up_common_lock (1,139 samples, 0.25%)</title><rect x="56.3931%" y="661" width="0.2521%" height="15" fill="rgb(254,16,10)" fg:x="254816" fg:w="1139"/><text x="56.6431%" y="671.50"></text></g><g><title>btrfs_search_slot (7,908 samples, 1.75%)</title><rect x="54.9123%" y="693" width="1.7501%" height="15" fill="rgb(223,228,16)" fg:x="248125" fg:w="7908"/><text x="55.1623%" y="703.50"></text></g><g><title>unlock_up (1,277 samples, 0.28%)</title><rect x="56.3798%" y="677" width="0.2826%" height="15" fill="rgb(249,108,50)" fg:x="254756" fg:w="1277"/><text x="56.6298%" y="687.50"></text></g><g><title>btrfs_get_token_32 (98 samples, 0.02%)</title><rect x="56.6912%" y="677" width="0.0217%" height="15" fill="rgb(208,220,5)" fg:x="256163" fg:w="98"/><text x="56.9412%" y="687.50"></text></g><g><title>btrfs_leaf_free_space (94 samples, 0.02%)</title><rect x="56.7129%" y="677" width="0.0208%" height="15" fill="rgb(217,89,48)" fg:x="256261" fg:w="94"/><text x="56.9629%" y="687.50"></text></g><g><title>leaf_space_used (79 samples, 0.02%)</title><rect x="56.7162%" y="661" width="0.0175%" height="15" fill="rgb(212,113,41)" fg:x="256276" fg:w="79"/><text x="56.9662%" y="671.50"></text></g><g><title>btrfs_get_32 (61 samples, 0.01%)</title><rect x="56.7202%" y="645" width="0.0135%" height="15" fill="rgb(231,127,5)" fg:x="256294" fg:w="61"/><text x="56.9702%" y="655.50"></text></g><g><title>btrfs_mark_buffer_dirty (73 samples, 0.02%)</title><rect x="56.7337%" y="677" width="0.0162%" height="15" fill="rgb(217,141,17)" fg:x="256355" fg:w="73"/><text x="56.9837%" y="687.50"></text></g><g><title>set_extent_buffer_dirty (46 samples, 0.01%)</title><rect x="56.7396%" y="661" width="0.0102%" height="15" fill="rgb(245,125,54)" fg:x="256382" fg:w="46"/><text x="56.9896%" y="671.50"></text></g><g><title>btrfs_set_token_32 (100 samples, 0.02%)</title><rect x="56.7498%" y="677" width="0.0221%" height="15" fill="rgb(248,125,3)" fg:x="256428" fg:w="100"/><text x="56.9998%" y="687.50"></text></g><g><title>memcpy_extent_buffer (105 samples, 0.02%)</title><rect x="56.7775%" y="677" width="0.0232%" height="15" fill="rgb(236,119,51)" fg:x="256553" fg:w="105"/><text x="57.0275%" y="687.50"></text></g><g><title>memmove (72 samples, 0.02%)</title><rect x="56.7848%" y="661" width="0.0159%" height="15" fill="rgb(239,99,8)" fg:x="256586" fg:w="72"/><text x="57.0348%" y="671.50"></text></g><g><title>memmove_extent_buffer (74 samples, 0.02%)</title><rect x="56.8007%" y="677" width="0.0164%" height="15" fill="rgb(224,228,4)" fg:x="256658" fg:w="74"/><text x="57.0507%" y="687.50"></text></g><g><title>btrfs_insert_empty_items (8,660 samples, 1.92%)</title><rect x="54.9085%" y="709" width="1.9165%" height="15" fill="rgb(220,131,45)" fg:x="248108" fg:w="8660"/><text x="55.1585%" y="719.50">b..</text></g><g><title>setup_items_for_insert (735 samples, 0.16%)</title><rect x="56.6624%" y="693" width="0.1627%" height="15" fill="rgb(215,62,5)" fg:x="256033" fg:w="735"/><text x="56.9124%" y="703.50"></text></g><g><title>free_extent_buffer.part.0 (99 samples, 0.02%)</title><rect x="56.8870%" y="661" width="0.0219%" height="15" fill="rgb(253,12,24)" fg:x="257048" fg:w="99"/><text x="57.1370%" y="671.50"></text></g><g><title>btrfs_free_path (170 samples, 0.04%)</title><rect x="56.8780%" y="693" width="0.0376%" height="15" fill="rgb(248,120,50)" fg:x="257007" fg:w="170"/><text x="57.1280%" y="703.50"></text></g><g><title>btrfs_release_path (168 samples, 0.04%)</title><rect x="56.8784%" y="677" width="0.0372%" height="15" fill="rgb(245,194,10)" fg:x="257009" fg:w="168"/><text x="57.1284%" y="687.50"></text></g><g><title>__btrfs_tree_read_lock (64 samples, 0.01%)</title><rect x="56.9559%" y="645" width="0.0142%" height="15" fill="rgb(241,149,38)" fg:x="257359" fg:w="64"/><text x="57.2059%" y="655.50"></text></g><g><title>__btrfs_read_lock_root_node (120 samples, 0.03%)</title><rect x="56.9554%" y="661" width="0.0266%" height="15" fill="rgb(219,215,7)" fg:x="257357" fg:w="120"/><text x="57.2054%" y="671.50"></text></g><g><title>btrfs_root_node (54 samples, 0.01%)</title><rect x="56.9700%" y="645" width="0.0120%" height="15" fill="rgb(208,120,31)" fg:x="257423" fg:w="54"/><text x="57.2200%" y="655.50"></text></g><g><title>finish_wait (182 samples, 0.04%)</title><rect x="57.0019%" y="645" width="0.0403%" height="15" fill="rgb(244,30,8)" fg:x="257567" fg:w="182"/><text x="57.2519%" y="655.50"></text></g><g><title>_raw_spin_lock_irqsave (172 samples, 0.04%)</title><rect x="57.0041%" y="629" width="0.0381%" height="15" fill="rgb(238,35,44)" fg:x="257577" fg:w="172"/><text x="57.2541%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (157 samples, 0.03%)</title><rect x="57.0074%" y="613" width="0.0347%" height="15" fill="rgb(243,218,37)" fg:x="257592" fg:w="157"/><text x="57.2574%" y="623.50"></text></g><g><title>_raw_spin_lock_irqsave (721 samples, 0.16%)</title><rect x="57.0652%" y="629" width="0.1596%" height="15" fill="rgb(218,169,10)" fg:x="257853" fg:w="721"/><text x="57.3152%" y="639.50"></text></g><g><title>native_queued_spin_lock_slowpath (663 samples, 0.15%)</title><rect x="57.0780%" y="613" width="0.1467%" height="15" fill="rgb(221,144,10)" fg:x="257911" fg:w="663"/><text x="57.3280%" y="623.50"></text></g><g><title>prepare_to_wait_event (847 samples, 0.19%)</title><rect x="57.0435%" y="645" width="0.1874%" height="15" fill="rgb(226,41,38)" fg:x="257755" fg:w="847"/><text x="57.2935%" y="655.50"></text></g><g><title>queued_write_lock_slowpath (566 samples, 0.13%)</title><rect x="57.2309%" y="645" width="0.1253%" height="15" fill="rgb(228,3,1)" fg:x="258602" fg:w="566"/><text x="57.4809%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (275 samples, 0.06%)</title><rect x="57.2953%" y="629" width="0.0609%" height="15" fill="rgb(209,129,12)" fg:x="258893" fg:w="275"/><text x="57.5453%" y="639.50"></text></g><g><title>__perf_event_task_sched_out (61 samples, 0.01%)</title><rect x="57.3755%" y="613" width="0.0135%" height="15" fill="rgb(213,136,33)" fg:x="259255" fg:w="61"/><text x="57.6255%" y="623.50"></text></g><g><title>update_curr (101 samples, 0.02%)</title><rect x="57.4228%" y="581" width="0.0224%" height="15" fill="rgb(209,181,29)" fg:x="259469" fg:w="101"/><text x="57.6728%" y="591.50"></text></g><g><title>dequeue_entity (285 samples, 0.06%)</title><rect x="57.4022%" y="597" width="0.0631%" height="15" fill="rgb(234,173,18)" fg:x="259376" fg:w="285"/><text x="57.6522%" y="607.50"></text></g><g><title>update_load_avg (91 samples, 0.02%)</title><rect x="57.4452%" y="581" width="0.0201%" height="15" fill="rgb(227,73,47)" fg:x="259570" fg:w="91"/><text x="57.6952%" y="591.50"></text></g><g><title>dequeue_task_fair (354 samples, 0.08%)</title><rect x="57.3918%" y="613" width="0.0783%" height="15" fill="rgb(234,9,34)" fg:x="259329" fg:w="354"/><text x="57.6418%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (171 samples, 0.04%)</title><rect x="57.4799%" y="597" width="0.0378%" height="15" fill="rgb(235,172,15)" fg:x="259727" fg:w="171"/><text x="57.7299%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (159 samples, 0.04%)</title><rect x="57.4826%" y="581" width="0.0352%" height="15" fill="rgb(245,61,2)" fg:x="259739" fg:w="159"/><text x="57.7326%" y="591.50"></text></g><g><title>native_write_msr (153 samples, 0.03%)</title><rect x="57.4839%" y="565" width="0.0339%" height="15" fill="rgb(238,39,47)" fg:x="259745" fg:w="153"/><text x="57.7339%" y="575.50"></text></g><g><title>finish_task_switch (217 samples, 0.05%)</title><rect x="57.4702%" y="613" width="0.0480%" height="15" fill="rgb(234,37,24)" fg:x="259683" fg:w="217"/><text x="57.7202%" y="623.50"></text></g><g><title>pick_next_task_fair (61 samples, 0.01%)</title><rect x="57.5182%" y="613" width="0.0135%" height="15" fill="rgb(248,223,24)" fg:x="259900" fg:w="61"/><text x="57.7682%" y="623.50"></text></g><g><title>__update_idle_core (53 samples, 0.01%)</title><rect x="57.5348%" y="597" width="0.0117%" height="15" fill="rgb(223,12,15)" fg:x="259975" fg:w="53"/><text x="57.7848%" y="607.50"></text></g><g><title>pick_next_task_idle (68 samples, 0.02%)</title><rect x="57.5317%" y="613" width="0.0150%" height="15" fill="rgb(249,6,3)" fg:x="259961" fg:w="68"/><text x="57.7817%" y="623.50"></text></g><g><title>psi_task_change (263 samples, 0.06%)</title><rect x="57.5467%" y="613" width="0.0582%" height="15" fill="rgb(237,105,33)" fg:x="260029" fg:w="263"/><text x="57.7967%" y="623.50"></text></g><g><title>psi_group_change (222 samples, 0.05%)</title><rect x="57.5558%" y="597" width="0.0491%" height="15" fill="rgb(252,208,35)" fg:x="260070" fg:w="222"/><text x="57.8058%" y="607.50"></text></g><g><title>__btrfs_tree_lock (2,895 samples, 0.64%)</title><rect x="56.9820%" y="661" width="0.6407%" height="15" fill="rgb(215,181,35)" fg:x="257477" fg:w="2895"/><text x="57.2320%" y="671.50"></text></g><g><title>schedule (1,204 samples, 0.27%)</title><rect x="57.3562%" y="645" width="0.2665%" height="15" fill="rgb(246,212,3)" fg:x="259168" fg:w="1204"/><text x="57.6062%" y="655.50"></text></g><g><title>__schedule (1,188 samples, 0.26%)</title><rect x="57.3597%" y="629" width="0.2629%" height="15" fill="rgb(247,156,24)" fg:x="259184" fg:w="1188"/><text x="57.6097%" y="639.50"></text></g><g><title>btrfs_leaf_free_space (73 samples, 0.02%)</title><rect x="57.6266%" y="661" width="0.0162%" height="15" fill="rgb(248,9,31)" fg:x="260390" fg:w="73"/><text x="57.8766%" y="671.50"></text></g><g><title>leaf_space_used (65 samples, 0.01%)</title><rect x="57.6284%" y="645" width="0.0144%" height="15" fill="rgb(234,26,45)" fg:x="260398" fg:w="65"/><text x="57.8784%" y="655.50"></text></g><g><title>btrfs_try_tree_write_lock (1,042 samples, 0.23%)</title><rect x="57.6490%" y="661" width="0.2306%" height="15" fill="rgb(249,11,32)" fg:x="260491" fg:w="1042"/><text x="57.8990%" y="671.50"></text></g><g><title>queued_write_lock_slowpath (978 samples, 0.22%)</title><rect x="57.6632%" y="645" width="0.2164%" height="15" fill="rgb(249,162,33)" fg:x="260555" fg:w="978"/><text x="57.9132%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath (213 samples, 0.05%)</title><rect x="57.8325%" y="629" width="0.0471%" height="15" fill="rgb(232,4,32)" fg:x="261320" fg:w="213"/><text x="58.0825%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (262 samples, 0.06%)</title><rect x="57.8796%" y="661" width="0.0580%" height="15" fill="rgb(212,5,45)" fg:x="261533" fg:w="262"/><text x="58.1296%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (57 samples, 0.01%)</title><rect x="57.9469%" y="645" width="0.0126%" height="15" fill="rgb(227,95,13)" fg:x="261837" fg:w="57"/><text x="58.1969%" y="655.50"></text></g><g><title>verify_parent_transid (51 samples, 0.01%)</title><rect x="57.9482%" y="629" width="0.0113%" height="15" fill="rgb(223,205,10)" fg:x="261843" fg:w="51"/><text x="58.1982%" y="639.50"></text></g><g><title>btrfs_get_64 (73 samples, 0.02%)</title><rect x="57.9595%" y="645" width="0.0162%" height="15" fill="rgb(222,178,8)" fg:x="261894" fg:w="73"/><text x="58.2095%" y="655.50"></text></g><g><title>__radix_tree_lookup (188 samples, 0.04%)</title><rect x="58.0119%" y="629" width="0.0416%" height="15" fill="rgb(216,13,22)" fg:x="262131" fg:w="188"/><text x="58.2619%" y="639.50"></text></g><g><title>mark_page_accessed (71 samples, 0.02%)</title><rect x="58.0620%" y="613" width="0.0157%" height="15" fill="rgb(240,167,12)" fg:x="262357" fg:w="71"/><text x="58.3120%" y="623.50"></text></g><g><title>mark_extent_buffer_accessed (110 samples, 0.02%)</title><rect x="58.0535%" y="629" width="0.0243%" height="15" fill="rgb(235,68,35)" fg:x="262319" fg:w="110"/><text x="58.3035%" y="639.50"></text></g><g><title>find_extent_buffer (435 samples, 0.10%)</title><rect x="57.9818%" y="645" width="0.0963%" height="15" fill="rgb(253,40,27)" fg:x="261995" fg:w="435"/><text x="58.2318%" y="655.50"></text></g><g><title>read_block_for_search.isra.0 (690 samples, 0.15%)</title><rect x="57.9376%" y="661" width="0.1527%" height="15" fill="rgb(214,19,28)" fg:x="261795" fg:w="690"/><text x="58.1876%" y="671.50"></text></g><g><title>read_extent_buffer (55 samples, 0.01%)</title><rect x="58.0781%" y="645" width="0.0122%" height="15" fill="rgb(210,167,45)" fg:x="262430" fg:w="55"/><text x="58.3281%" y="655.50"></text></g><g><title>add_to_page_cache_lru (61 samples, 0.01%)</title><rect x="58.1007%" y="581" width="0.0135%" height="15" fill="rgb(232,97,40)" fg:x="262532" fg:w="61"/><text x="58.3507%" y="591.50"></text></g><g><title>pagecache_get_page (100 samples, 0.02%)</title><rect x="58.0943%" y="597" width="0.0221%" height="15" fill="rgb(250,35,23)" fg:x="262503" fg:w="100"/><text x="58.3443%" y="607.50"></text></g><g><title>alloc_extent_buffer (111 samples, 0.02%)</title><rect x="58.0923%" y="613" width="0.0246%" height="15" fill="rgb(248,47,53)" fg:x="262494" fg:w="111"/><text x="58.3423%" y="623.50"></text></g><g><title>alloc_tree_block_no_bg_flush (197 samples, 0.04%)</title><rect x="58.0916%" y="645" width="0.0436%" height="15" fill="rgb(226,58,50)" fg:x="262491" fg:w="197"/><text x="58.3416%" y="655.50"></text></g><g><title>btrfs_alloc_tree_block (197 samples, 0.04%)</title><rect x="58.0916%" y="629" width="0.0436%" height="15" fill="rgb(217,105,26)" fg:x="262491" fg:w="197"/><text x="58.3416%" y="639.50"></text></g><g><title>copy_for_split (54 samples, 0.01%)</title><rect x="58.1359%" y="645" width="0.0120%" height="15" fill="rgb(208,64,1)" fg:x="262691" fg:w="54"/><text x="58.3859%" y="655.50"></text></g><g><title>__push_leaf_left (113 samples, 0.03%)</title><rect x="58.1511%" y="629" width="0.0250%" height="15" fill="rgb(214,80,1)" fg:x="262760" fg:w="113"/><text x="58.4011%" y="639.50"></text></g><g><title>push_leaf_left (148 samples, 0.03%)</title><rect x="58.1478%" y="645" width="0.0328%" height="15" fill="rgb(206,175,26)" fg:x="262745" fg:w="148"/><text x="58.3978%" y="655.50"></text></g><g><title>split_leaf (407 samples, 0.09%)</title><rect x="58.0907%" y="661" width="0.0901%" height="15" fill="rgb(235,156,37)" fg:x="262487" fg:w="407"/><text x="58.3407%" y="671.50"></text></g><g><title>_raw_spin_lock (53 samples, 0.01%)</title><rect x="58.2293%" y="581" width="0.0117%" height="15" fill="rgb(213,100,9)" fg:x="263113" fg:w="53"/><text x="58.4793%" y="591.50"></text></g><g><title>_raw_spin_lock_irqsave (47 samples, 0.01%)</title><rect x="58.2410%" y="581" width="0.0104%" height="15" fill="rgb(241,15,13)" fg:x="263166" fg:w="47"/><text x="58.4910%" y="591.50"></text></g><g><title>select_task_rq_fair (211 samples, 0.05%)</title><rect x="58.2529%" y="581" width="0.0467%" height="15" fill="rgb(205,97,43)" fg:x="263220" fg:w="211"/><text x="58.5029%" y="591.50"></text></g><g><title>enqueue_entity (172 samples, 0.04%)</title><rect x="58.3173%" y="549" width="0.0381%" height="15" fill="rgb(216,106,32)" fg:x="263511" fg:w="172"/><text x="58.5673%" y="559.50"></text></g><g><title>update_load_avg (65 samples, 0.01%)</title><rect x="58.3410%" y="533" width="0.0144%" height="15" fill="rgb(226,200,8)" fg:x="263618" fg:w="65"/><text x="58.5910%" y="543.50"></text></g><g><title>enqueue_task_fair (220 samples, 0.05%)</title><rect x="58.3109%" y="565" width="0.0487%" height="15" fill="rgb(244,54,29)" fg:x="263482" fg:w="220"/><text x="58.5609%" y="575.50"></text></g><g><title>ttwu_do_activate (463 samples, 0.10%)</title><rect x="58.3052%" y="581" width="0.1025%" height="15" fill="rgb(252,169,12)" fg:x="263456" fg:w="463"/><text x="58.5552%" y="591.50"></text></g><g><title>psi_task_change (217 samples, 0.05%)</title><rect x="58.3596%" y="565" width="0.0480%" height="15" fill="rgb(231,199,11)" fg:x="263702" fg:w="217"/><text x="58.6096%" y="575.50"></text></g><g><title>psi_group_change (193 samples, 0.04%)</title><rect x="58.3649%" y="549" width="0.0427%" height="15" fill="rgb(233,191,18)" fg:x="263726" fg:w="193"/><text x="58.6149%" y="559.50"></text></g><g><title>__wake_up_common (1,067 samples, 0.24%)</title><rect x="58.1958%" y="629" width="0.2361%" height="15" fill="rgb(215,83,47)" fg:x="262962" fg:w="1067"/><text x="58.4458%" y="639.50"></text></g><g><title>autoremove_wake_function (1,057 samples, 0.23%)</title><rect x="58.1981%" y="613" width="0.2339%" height="15" fill="rgb(251,67,19)" fg:x="262972" fg:w="1057"/><text x="58.4481%" y="623.50"></text></g><g><title>try_to_wake_up (1,028 samples, 0.23%)</title><rect x="58.2045%" y="597" width="0.2275%" height="15" fill="rgb(240,7,20)" fg:x="263001" fg:w="1028"/><text x="58.4545%" y="607.50"></text></g><g><title>__wake_up_common_lock (1,090 samples, 0.24%)</title><rect x="58.1947%" y="645" width="0.2412%" height="15" fill="rgb(210,150,26)" fg:x="262957" fg:w="1090"/><text x="58.4447%" y="655.50"></text></g><g><title>btrfs_search_slot (6,892 samples, 1.53%)</title><rect x="56.9273%" y="677" width="1.5253%" height="15" fill="rgb(228,75,42)" fg:x="257230" fg:w="6892"/><text x="57.1773%" y="687.50"></text></g><g><title>unlock_up (1,228 samples, 0.27%)</title><rect x="58.1808%" y="661" width="0.2718%" height="15" fill="rgb(237,134,48)" fg:x="262894" fg:w="1228"/><text x="58.4308%" y="671.50"></text></g><g><title>btrfs_get_token_32 (61 samples, 0.01%)</title><rect x="58.4858%" y="661" width="0.0135%" height="15" fill="rgb(205,80,50)" fg:x="264272" fg:w="61"/><text x="58.7358%" y="671.50"></text></g><g><title>btrfs_leaf_free_space (100 samples, 0.02%)</title><rect x="58.4993%" y="661" width="0.0221%" height="15" fill="rgb(217,74,48)" fg:x="264333" fg:w="100"/><text x="58.7493%" y="671.50"></text></g><g><title>leaf_space_used (81 samples, 0.02%)</title><rect x="58.5035%" y="645" width="0.0179%" height="15" fill="rgb(205,82,50)" fg:x="264352" fg:w="81"/><text x="58.7535%" y="655.50"></text></g><g><title>btrfs_get_32 (63 samples, 0.01%)</title><rect x="58.5074%" y="629" width="0.0139%" height="15" fill="rgb(228,1,33)" fg:x="264370" fg:w="63"/><text x="58.7574%" y="639.50"></text></g><g><title>btrfs_mark_buffer_dirty (73 samples, 0.02%)</title><rect x="58.5214%" y="661" width="0.0162%" height="15" fill="rgb(214,50,23)" fg:x="264433" fg:w="73"/><text x="58.7714%" y="671.50"></text></g><g><title>btrfs_set_token_32 (103 samples, 0.02%)</title><rect x="58.5375%" y="661" width="0.0228%" height="15" fill="rgb(210,62,9)" fg:x="264506" fg:w="103"/><text x="58.7875%" y="671.50"></text></g><g><title>copy_pages (50 samples, 0.01%)</title><rect x="58.5785%" y="645" width="0.0111%" height="15" fill="rgb(210,104,37)" fg:x="264691" fg:w="50"/><text x="58.8285%" y="655.50"></text></g><g><title>memmove_extent_buffer (83 samples, 0.02%)</title><rect x="58.5736%" y="661" width="0.0184%" height="15" fill="rgb(232,104,43)" fg:x="264669" fg:w="83"/><text x="58.8236%" y="671.50"></text></g><g><title>btrfs_insert_empty_items (7,607 samples, 1.68%)</title><rect x="56.9258%" y="693" width="1.6835%" height="15" fill="rgb(244,52,6)" fg:x="257223" fg:w="7607"/><text x="57.1758%" y="703.50"></text></g><g><title>setup_items_for_insert (708 samples, 0.16%)</title><rect x="58.4526%" y="677" width="0.1567%" height="15" fill="rgb(211,174,52)" fg:x="264122" fg:w="708"/><text x="58.7026%" y="687.50"></text></g><g><title>write_extent_buffer (78 samples, 0.02%)</title><rect x="58.5920%" y="661" width="0.0173%" height="15" fill="rgb(229,48,4)" fg:x="264752" fg:w="78"/><text x="58.8420%" y="671.50"></text></g><g><title>btrfs_mark_buffer_dirty (57 samples, 0.01%)</title><rect x="58.6093%" y="693" width="0.0126%" height="15" fill="rgb(205,155,16)" fg:x="264830" fg:w="57"/><text x="58.8593%" y="703.50"></text></g><g><title>btrfs_set_token_32 (132 samples, 0.03%)</title><rect x="58.6668%" y="677" width="0.0292%" height="15" fill="rgb(211,141,53)" fg:x="265090" fg:w="132"/><text x="58.9168%" y="687.50"></text></g><g><title>btrfs_set_token_64 (173 samples, 0.04%)</title><rect x="58.6960%" y="677" width="0.0383%" height="15" fill="rgb(240,148,11)" fg:x="265222" fg:w="173"/><text x="58.9460%" y="687.50"></text></g><g><title>fill_inode_item (410 samples, 0.09%)</title><rect x="58.6548%" y="693" width="0.0907%" height="15" fill="rgb(214,45,23)" fg:x="265036" fg:w="410"/><text x="58.9048%" y="703.50"></text></g><g><title>inode_tree_add (744 samples, 0.16%)</title><rect x="58.7593%" y="693" width="0.1647%" height="15" fill="rgb(248,74,26)" fg:x="265508" fg:w="744"/><text x="59.0093%" y="703.50"></text></g><g><title>rb_insert_color (77 samples, 0.02%)</title><rect x="58.9069%" y="677" width="0.0170%" height="15" fill="rgb(218,121,16)" fg:x="266175" fg:w="77"/><text x="59.1569%" y="687.50"></text></g><g><title>insert_inode_locked4 (139 samples, 0.03%)</title><rect x="58.9240%" y="693" width="0.0308%" height="15" fill="rgb(218,10,47)" fg:x="266252" fg:w="139"/><text x="59.1740%" y="703.50"></text></g><g><title>inode_insert5 (136 samples, 0.03%)</title><rect x="58.9246%" y="677" width="0.0301%" height="15" fill="rgb(227,99,14)" fg:x="266255" fg:w="136"/><text x="59.1746%" y="687.50"></text></g><g><title>find_inode (79 samples, 0.02%)</title><rect x="58.9372%" y="661" width="0.0175%" height="15" fill="rgb(229,83,46)" fg:x="266312" fg:w="79"/><text x="59.1872%" y="671.50"></text></g><g><title>kmem_cache_alloc (46 samples, 0.01%)</title><rect x="58.9547%" y="693" width="0.0102%" height="15" fill="rgb(228,25,1)" fg:x="266391" fg:w="46"/><text x="59.2047%" y="703.50"></text></g><g><title>kmem_cache_free (52 samples, 0.01%)</title><rect x="58.9649%" y="693" width="0.0115%" height="15" fill="rgb(252,190,15)" fg:x="266437" fg:w="52"/><text x="59.2149%" y="703.50"></text></g><g><title>btrfs_init_metadata_block_rsv (62 samples, 0.01%)</title><rect x="59.0127%" y="645" width="0.0137%" height="15" fill="rgb(213,103,51)" fg:x="266653" fg:w="62"/><text x="59.2627%" y="655.50"></text></g><g><title>btrfs_find_space_info (48 samples, 0.01%)</title><rect x="59.0158%" y="629" width="0.0106%" height="15" fill="rgb(220,38,44)" fg:x="266667" fg:w="48"/><text x="59.2658%" y="639.50"></text></g><g><title>kernel_init_free_pages (56 samples, 0.01%)</title><rect x="59.0565%" y="533" width="0.0124%" height="15" fill="rgb(210,45,26)" fg:x="266851" fg:w="56"/><text x="59.3065%" y="543.50"></text></g><g><title>clear_page_erms (54 samples, 0.01%)</title><rect x="59.0570%" y="517" width="0.0120%" height="15" fill="rgb(205,95,48)" fg:x="266853" fg:w="54"/><text x="59.3070%" y="527.50"></text></g><g><title>prep_new_page (59 samples, 0.01%)</title><rect x="59.0561%" y="549" width="0.0131%" height="15" fill="rgb(225,179,37)" fg:x="266849" fg:w="59"/><text x="59.3061%" y="559.50"></text></g><g><title>__alloc_pages_nodemask (86 samples, 0.02%)</title><rect x="59.0508%" y="581" width="0.0190%" height="15" fill="rgb(230,209,3)" fg:x="266825" fg:w="86"/><text x="59.3008%" y="591.50"></text></g><g><title>get_page_from_freelist (83 samples, 0.02%)</title><rect x="59.0514%" y="565" width="0.0184%" height="15" fill="rgb(248,12,46)" fg:x="266828" fg:w="83"/><text x="59.3014%" y="575.50"></text></g><g><title>allocate_slab (148 samples, 0.03%)</title><rect x="59.0490%" y="597" width="0.0328%" height="15" fill="rgb(234,18,0)" fg:x="266817" fg:w="148"/><text x="59.2990%" y="607.50"></text></g><g><title>setup_object.isra.0 (50 samples, 0.01%)</title><rect x="59.0707%" y="581" width="0.0111%" height="15" fill="rgb(238,197,14)" fg:x="266915" fg:w="50"/><text x="59.3207%" y="591.50"></text></g><g><title>inode_init_once (48 samples, 0.01%)</title><rect x="59.0711%" y="565" width="0.0106%" height="15" fill="rgb(251,162,48)" fg:x="266917" fg:w="48"/><text x="59.3211%" y="575.50"></text></g><g><title>__slab_alloc (163 samples, 0.04%)</title><rect x="59.0463%" y="629" width="0.0361%" height="15" fill="rgb(237,73,42)" fg:x="266805" fg:w="163"/><text x="59.2963%" y="639.50"></text></g><g><title>___slab_alloc (161 samples, 0.04%)</title><rect x="59.0468%" y="613" width="0.0356%" height="15" fill="rgb(211,108,8)" fg:x="266807" fg:w="161"/><text x="59.2968%" y="623.50"></text></g><g><title>memcg_slab_post_alloc_hook (101 samples, 0.02%)</title><rect x="59.0824%" y="629" width="0.0224%" height="15" fill="rgb(213,45,22)" fg:x="266968" fg:w="101"/><text x="59.3324%" y="639.50"></text></g><g><title>btrfs_alloc_inode (596 samples, 0.13%)</title><rect x="58.9996%" y="661" width="0.1319%" height="15" fill="rgb(252,154,5)" fg:x="266594" fg:w="596"/><text x="59.2496%" y="671.50"></text></g><g><title>kmem_cache_alloc (447 samples, 0.10%)</title><rect x="59.0326%" y="645" width="0.0989%" height="15" fill="rgb(221,79,52)" fg:x="266743" fg:w="447"/><text x="59.2826%" y="655.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (120 samples, 0.03%)</title><rect x="59.1050%" y="629" width="0.0266%" height="15" fill="rgb(229,220,36)" fg:x="267070" fg:w="120"/><text x="59.3550%" y="639.50"></text></g><g><title>obj_cgroup_charge (65 samples, 0.01%)</title><rect x="59.1172%" y="613" width="0.0144%" height="15" fill="rgb(211,17,16)" fg:x="267125" fg:w="65"/><text x="59.3672%" y="623.50"></text></g><g><title>alloc_inode (774 samples, 0.17%)</title><rect x="58.9926%" y="677" width="0.1713%" height="15" fill="rgb(222,55,31)" fg:x="266562" fg:w="774"/><text x="59.2426%" y="687.50"></text></g><g><title>inode_init_always (146 samples, 0.03%)</title><rect x="59.1315%" y="661" width="0.0323%" height="15" fill="rgb(221,221,31)" fg:x="267190" fg:w="146"/><text x="59.3815%" y="671.50"></text></g><g><title>new_inode (837 samples, 0.19%)</title><rect x="58.9857%" y="693" width="0.1852%" height="15" fill="rgb(227,168,26)" fg:x="266531" fg:w="837"/><text x="59.2357%" y="703.50"></text></g><g><title>btrfs_new_inode (10,601 samples, 2.35%)</title><rect x="56.8350%" y="709" width="2.3461%" height="15" fill="rgb(224,139,9)" fg:x="256813" fg:w="10601"/><text x="57.0850%" y="719.50">b..</text></g><g><title>write_extent_buffer (46 samples, 0.01%)</title><rect x="59.1709%" y="693" width="0.0102%" height="15" fill="rgb(254,172,0)" fg:x="267368" fg:w="46"/><text x="59.4209%" y="703.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (154 samples, 0.03%)</title><rect x="59.2214%" y="677" width="0.0341%" height="15" fill="rgb(235,203,1)" fg:x="267596" fg:w="154"/><text x="59.4714%" y="687.50"></text></g><g><title>btrfs_block_rsv_migrate (80 samples, 0.02%)</title><rect x="59.2555%" y="677" width="0.0177%" height="15" fill="rgb(216,205,24)" fg:x="267750" fg:w="80"/><text x="59.5055%" y="687.50"></text></g><g><title>_raw_spin_lock (69 samples, 0.02%)</title><rect x="59.2579%" y="661" width="0.0153%" height="15" fill="rgb(233,24,6)" fg:x="267761" fg:w="69"/><text x="59.5079%" y="671.50"></text></g><g><title>__radix_tree_lookup (178 samples, 0.04%)</title><rect x="59.2980%" y="645" width="0.0394%" height="15" fill="rgb(244,110,9)" fg:x="267942" fg:w="178"/><text x="59.5480%" y="655.50"></text></g><g><title>btrfs_get_delayed_node (225 samples, 0.05%)</title><rect x="59.2962%" y="661" width="0.0498%" height="15" fill="rgb(239,222,42)" fg:x="267934" fg:w="225"/><text x="59.5462%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (54 samples, 0.01%)</title><rect x="59.3610%" y="597" width="0.0120%" height="15" fill="rgb(218,145,13)" fg:x="268227" fg:w="54"/><text x="59.6110%" y="607.50"></text></g><g><title>get_page_from_freelist (52 samples, 0.01%)</title><rect x="59.3615%" y="581" width="0.0115%" height="15" fill="rgb(207,69,11)" fg:x="268229" fg:w="52"/><text x="59.6115%" y="591.50"></text></g><g><title>allocate_slab (68 samples, 0.02%)</title><rect x="59.3597%" y="613" width="0.0150%" height="15" fill="rgb(220,223,22)" fg:x="268221" fg:w="68"/><text x="59.6097%" y="623.50"></text></g><g><title>___slab_alloc (87 samples, 0.02%)</title><rect x="59.3562%" y="629" width="0.0193%" height="15" fill="rgb(245,102,5)" fg:x="268205" fg:w="87"/><text x="59.6062%" y="639.50"></text></g><g><title>__slab_alloc (88 samples, 0.02%)</title><rect x="59.3562%" y="645" width="0.0195%" height="15" fill="rgb(211,148,2)" fg:x="268205" fg:w="88"/><text x="59.6062%" y="655.50"></text></g><g><title>_cond_resched (58 samples, 0.01%)</title><rect x="59.3821%" y="629" width="0.0128%" height="15" fill="rgb(241,13,44)" fg:x="268322" fg:w="58"/><text x="59.6321%" y="639.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="59.3823%" y="613" width="0.0126%" height="15" fill="rgb(219,137,21)" fg:x="268323" fg:w="57"/><text x="59.6323%" y="623.50"></text></g><g><title>kmem_cache_alloc (222 samples, 0.05%)</title><rect x="59.3460%" y="661" width="0.0491%" height="15" fill="rgb(242,206,5)" fg:x="268159" fg:w="222"/><text x="59.5960%" y="671.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (61 samples, 0.01%)</title><rect x="59.3816%" y="645" width="0.0135%" height="15" fill="rgb(217,114,22)" fg:x="268320" fg:w="61"/><text x="59.6316%" y="655.50"></text></g><g><title>radix_tree_insert (68 samples, 0.02%)</title><rect x="59.3951%" y="661" width="0.0150%" height="15" fill="rgb(253,206,42)" fg:x="268381" fg:w="68"/><text x="59.6451%" y="671.50"></text></g><g><title>btrfs_get_or_create_delayed_node (630 samples, 0.14%)</title><rect x="59.2732%" y="677" width="0.1394%" height="15" fill="rgb(236,102,18)" fg:x="267830" fg:w="630"/><text x="59.5232%" y="687.50"></text></g><g><title>fill_stack_inode_item (55 samples, 0.01%)</title><rect x="59.4126%" y="677" width="0.0122%" height="15" fill="rgb(208,59,49)" fg:x="268460" fg:w="55"/><text x="59.6626%" y="687.50"></text></g><g><title>btrfs_delayed_update_inode (1,032 samples, 0.23%)</title><rect x="59.2088%" y="693" width="0.2284%" height="15" fill="rgb(215,194,28)" fg:x="267539" fg:w="1032"/><text x="59.4588%" y="703.50"></text></g><g><title>btrfs_update_inode (1,156 samples, 0.26%)</title><rect x="59.1999%" y="709" width="0.2558%" height="15" fill="rgb(243,207,11)" fg:x="267499" fg:w="1156"/><text x="59.4499%" y="719.50"></text></g><g><title>btrfs_update_root_times (84 samples, 0.02%)</title><rect x="59.4372%" y="693" width="0.0186%" height="15" fill="rgb(254,179,35)" fg:x="268571" fg:w="84"/><text x="59.6872%" y="703.50"></text></g><g><title>__d_instantiate (82 samples, 0.02%)</title><rect x="59.4615%" y="693" width="0.0181%" height="15" fill="rgb(235,97,3)" fg:x="268681" fg:w="82"/><text x="59.7115%" y="703.50"></text></g><g><title>d_instantiate_new (166 samples, 0.04%)</title><rect x="59.4569%" y="709" width="0.0367%" height="15" fill="rgb(215,155,33)" fg:x="268660" fg:w="166"/><text x="59.7069%" y="719.50"></text></g><g><title>_cond_resched (51 samples, 0.01%)</title><rect x="59.5137%" y="677" width="0.0113%" height="15" fill="rgb(223,128,12)" fg:x="268917" fg:w="51"/><text x="59.7637%" y="687.50"></text></g><g><title>kmem_cache_alloc (124 samples, 0.03%)</title><rect x="59.4978%" y="709" width="0.0274%" height="15" fill="rgb(208,157,18)" fg:x="268845" fg:w="124"/><text x="59.7478%" y="719.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (62 samples, 0.01%)</title><rect x="59.5115%" y="693" width="0.0137%" height="15" fill="rgb(249,70,54)" fg:x="268907" fg:w="62"/><text x="59.7615%" y="703.50"></text></g><g><title>kmem_cache_free (57 samples, 0.01%)</title><rect x="59.5252%" y="709" width="0.0126%" height="15" fill="rgb(244,118,24)" fg:x="268969" fg:w="57"/><text x="59.7752%" y="719.50"></text></g><g><title>_raw_spin_lock (73 samples, 0.02%)</title><rect x="59.6062%" y="645" width="0.0162%" height="15" fill="rgb(211,54,0)" fg:x="269335" fg:w="73"/><text x="59.8562%" y="655.50"></text></g><g><title>btrfs_calc_reclaim_metadata_size (188 samples, 0.04%)</title><rect x="59.6224%" y="645" width="0.0416%" height="15" fill="rgb(245,137,45)" fg:x="269408" fg:w="188"/><text x="59.8724%" y="655.50"></text></g><g><title>btrfs_reduce_alloc_profile (74 samples, 0.02%)</title><rect x="59.6476%" y="629" width="0.0164%" height="15" fill="rgb(232,154,31)" fg:x="269522" fg:w="74"/><text x="59.8976%" y="639.50"></text></g><g><title>btrfs_block_rsv_add (427 samples, 0.09%)</title><rect x="59.5792%" y="693" width="0.0945%" height="15" fill="rgb(253,6,39)" fg:x="269213" fg:w="427"/><text x="59.8292%" y="703.50"></text></g><g><title>btrfs_reserve_metadata_bytes (378 samples, 0.08%)</title><rect x="59.5901%" y="677" width="0.0837%" height="15" fill="rgb(234,183,24)" fg:x="269262" fg:w="378"/><text x="59.8401%" y="687.50"></text></g><g><title>__reserve_bytes (345 samples, 0.08%)</title><rect x="59.5974%" y="661" width="0.0764%" height="15" fill="rgb(252,84,40)" fg:x="269295" fg:w="345"/><text x="59.8474%" y="671.50"></text></g><g><title>join_transaction (76 samples, 0.02%)</title><rect x="59.6753%" y="693" width="0.0168%" height="15" fill="rgb(224,65,2)" fg:x="269647" fg:w="76"/><text x="59.9253%" y="703.50"></text></g><g><title>_cond_resched (51 samples, 0.01%)</title><rect x="59.7085%" y="661" width="0.0113%" height="15" fill="rgb(229,38,24)" fg:x="269797" fg:w="51"/><text x="59.9585%" y="671.50"></text></g><g><title>kmem_cache_alloc (126 samples, 0.03%)</title><rect x="59.6921%" y="693" width="0.0279%" height="15" fill="rgb(218,131,50)" fg:x="269723" fg:w="126"/><text x="59.9421%" y="703.50"></text></g><g><title>slab_pre_alloc_hook.constprop.0 (70 samples, 0.02%)</title><rect x="59.7045%" y="677" width="0.0155%" height="15" fill="rgb(233,106,18)" fg:x="269779" fg:w="70"/><text x="59.9545%" y="687.50"></text></g><g><title>start_transaction (832 samples, 0.18%)</title><rect x="59.5465%" y="709" width="0.1841%" height="15" fill="rgb(220,216,11)" fg:x="269065" fg:w="832"/><text x="59.7965%" y="719.50"></text></g><g><title>wait_current_trans (48 samples, 0.01%)</title><rect x="59.7200%" y="693" width="0.0106%" height="15" fill="rgb(251,100,45)" fg:x="269849" fg:w="48"/><text x="59.9700%" y="703.50"></text></g><g><title>strlen (249 samples, 0.06%)</title><rect x="59.7306%" y="709" width="0.0551%" height="15" fill="rgb(235,143,32)" fg:x="269897" fg:w="249"/><text x="59.9806%" y="719.50"></text></g><g><title>btrfs_symlink (32,469 samples, 7.19%)</title><rect x="52.6127%" y="725" width="7.1857%" height="15" fill="rgb(248,124,34)" fg:x="237734" fg:w="32469"/><text x="52.8627%" y="735.50">btrfs_syml..</text></g><g><title>write_extent_buffer (57 samples, 0.01%)</title><rect x="59.7857%" y="709" width="0.0126%" height="15" fill="rgb(225,221,4)" fg:x="270146" fg:w="57"/><text x="60.0357%" y="719.50"></text></g><g><title>do_symlinkat (39,655 samples, 8.78%)</title><rect x="51.0460%" y="757" width="8.7760%" height="15" fill="rgb(242,27,43)" fg:x="230655" fg:w="39655"/><text x="51.2960%" y="767.50">do_symlinkat</text></g><g><title>vfs_symlink (32,617 samples, 7.22%)</title><rect x="52.6036%" y="741" width="7.2184%" height="15" fill="rgb(227,54,8)" fg:x="237693" fg:w="32617"/><text x="52.8536%" y="751.50">vfs_symlink</text></g><g><title>do_syscall_64 (39,703 samples, 8.79%)</title><rect x="51.0394%" y="773" width="8.7866%" height="15" fill="rgb(253,139,49)" fg:x="230625" fg:w="39703"/><text x="51.2894%" y="783.50">do_syscall_64</text></g><g><title>entry_SYSCALL_64_after_hwframe (39,833 samples, 8.82%)</title><rect x="51.0301%" y="789" width="8.8154%" height="15" fill="rgb(231,26,43)" fg:x="230583" fg:w="39833"/><text x="51.2801%" y="799.50">entry_SYSCAL..</text></g><g><title>syscall_exit_to_user_mode (88 samples, 0.02%)</title><rect x="59.8260%" y="773" width="0.0195%" height="15" fill="rgb(207,121,39)" fg:x="270328" fg:w="88"/><text x="60.0760%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (80 samples, 0.02%)</title><rect x="59.8278%" y="757" width="0.0177%" height="15" fill="rgb(223,101,35)" fg:x="270336" fg:w="80"/><text x="60.0778%" y="767.50"></text></g><g><title>switch_fpu_return (47 samples, 0.01%)</title><rect x="59.8351%" y="741" width="0.0104%" height="15" fill="rgb(232,87,23)" fg:x="270369" fg:w="47"/><text x="60.0851%" y="751.50"></text></g><g><title>__symlink (40,040 samples, 8.86%)</title><rect x="50.9962%" y="805" width="8.8612%" height="15" fill="rgb(225,180,29)" fg:x="230430" fg:w="40040"/><text x="51.2462%" y="815.50">__symlink</text></g><g><title>malloc_consolidate (58 samples, 0.01%)</title><rect x="59.9121%" y="789" width="0.0128%" height="15" fill="rgb(225,25,17)" fg:x="270717" fg:w="58"/><text x="60.1621%" y="799.50"></text></g><g><title>_int_free (338 samples, 0.07%)</title><rect x="59.8574%" y="805" width="0.0748%" height="15" fill="rgb(223,8,52)" fg:x="270470" fg:w="338"/><text x="60.1074%" y="815.50"></text></g><g><title>free@plt (87 samples, 0.02%)</title><rect x="59.9358%" y="805" width="0.0193%" height="15" fill="rgb(246,42,21)" fg:x="270824" fg:w="87"/><text x="60.1858%" y="815.50"></text></g><g><title>HandleMark::pop_and_restore (50 samples, 0.01%)</title><rect x="59.9938%" y="789" width="0.0111%" height="15" fill="rgb(205,64,43)" fg:x="271086" fg:w="50"/><text x="60.2438%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (177 samples, 0.04%)</title><rect x="60.0055%" y="789" width="0.0392%" height="15" fill="rgb(221,160,13)" fg:x="271139" fg:w="177"/><text x="60.2555%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (145 samples, 0.03%)</title><rect x="60.0447%" y="789" width="0.0321%" height="15" fill="rgb(239,58,35)" fg:x="271316" fg:w="145"/><text x="60.2947%" y="799.50"></text></g><g><title>[libc-2.31.so] (95 samples, 0.02%)</title><rect x="60.0767%" y="789" width="0.0210%" height="15" fill="rgb(251,26,40)" fg:x="271461" fg:w="95"/><text x="60.3267%" y="799.50"></text></g><g><title>check_bounds (235 samples, 0.05%)</title><rect x="60.0980%" y="789" width="0.0520%" height="15" fill="rgb(247,0,4)" fg:x="271557" fg:w="235"/><text x="60.3480%" y="799.50"></text></g><g><title>jni_GetByteArrayRegion (905 samples, 0.20%)</title><rect x="59.9619%" y="805" width="0.2003%" height="15" fill="rgb(218,130,10)" fg:x="270942" fg:w="905"/><text x="60.2119%" y="815.50"></text></g><g><title>memmove@plt (55 samples, 0.01%)</title><rect x="60.1500%" y="789" width="0.0122%" height="15" fill="rgb(239,32,7)" fg:x="271792" fg:w="55"/><text x="60.4000%" y="799.50"></text></g><g><title>jni_GetObjectClass (62 samples, 0.01%)</title><rect x="60.1622%" y="805" width="0.0137%" height="15" fill="rgb(210,192,24)" fg:x="271847" fg:w="62"/><text x="60.4122%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (264 samples, 0.06%)</title><rect x="60.2064%" y="789" width="0.0584%" height="15" fill="rgb(226,212,17)" fg:x="272047" fg:w="264"/><text x="60.4564%" y="799.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (237 samples, 0.05%)</title><rect x="60.2124%" y="773" width="0.0525%" height="15" fill="rgb(219,201,28)" fg:x="272074" fg:w="237"/><text x="60.4624%" y="783.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (212 samples, 0.05%)</title><rect x="60.2179%" y="757" width="0.0469%" height="15" fill="rgb(235,207,41)" fg:x="272099" fg:w="212"/><text x="60.4679%" y="767.50"></text></g><g><title>HandleMark::pop_and_restore (121 samples, 0.03%)</title><rect x="60.2649%" y="789" width="0.0268%" height="15" fill="rgb(241,95,54)" fg:x="272311" fg:w="121"/><text x="60.5149%" y="799.50"></text></g><g><title>JNIHandles::make_local (242 samples, 0.05%)</title><rect x="60.2916%" y="789" width="0.0536%" height="15" fill="rgb(248,12,23)" fg:x="272432" fg:w="242"/><text x="60.5416%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (167 samples, 0.04%)</title><rect x="60.3465%" y="789" width="0.0370%" height="15" fill="rgb(228,173,4)" fg:x="272680" fg:w="167"/><text x="60.5965%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (197 samples, 0.04%)</title><rect x="60.3835%" y="789" width="0.0436%" height="15" fill="rgb(254,99,5)" fg:x="272847" fg:w="197"/><text x="60.6335%" y="799.50"></text></g><g><title>jni_GetObjectField (1,137 samples, 0.25%)</title><rect x="60.1759%" y="805" width="0.2516%" height="15" fill="rgb(212,184,17)" fg:x="271909" fg:w="1137"/><text x="60.4259%" y="815.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (142 samples, 0.03%)</title><rect x="60.4722%" y="789" width="0.0314%" height="15" fill="rgb(252,174,1)" fg:x="273248" fg:w="142"/><text x="60.7222%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (264 samples, 0.06%)</title><rect x="60.5037%" y="789" width="0.0584%" height="15" fill="rgb(241,118,51)" fg:x="273390" fg:w="264"/><text x="60.7537%" y="799.50"></text></g><g><title>jni_GetStringLength (609 samples, 0.13%)</title><rect x="60.4275%" y="805" width="0.1348%" height="15" fill="rgb(227,94,47)" fg:x="273046" fg:w="609"/><text x="60.6775%" y="815.50"></text></g><g><title>jni_NewByteArray (46 samples, 0.01%)</title><rect x="60.5623%" y="805" width="0.0102%" height="15" fill="rgb(229,104,2)" fg:x="273655" fg:w="46"/><text x="60.8123%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (46 samples, 0.01%)</title><rect x="60.5882%" y="773" width="0.0102%" height="15" fill="rgb(219,28,31)" fg:x="273772" fg:w="46"/><text x="60.8382%" y="783.50"></text></g><g><title>ObjArrayKlass::allocate (75 samples, 0.02%)</title><rect x="60.5820%" y="789" width="0.0166%" height="15" fill="rgb(233,109,36)" fg:x="273744" fg:w="75"/><text x="60.8320%" y="799.50"></text></g><g><title>jni_NewObjectArray (154 samples, 0.03%)</title><rect x="60.5725%" y="805" width="0.0341%" height="15" fill="rgb(246,88,11)" fg:x="273701" fg:w="154"/><text x="60.8225%" y="815.50"></text></g><g><title>CollectedHeap::obj_allocate (51 samples, 0.01%)</title><rect x="60.6221%" y="773" width="0.0113%" height="15" fill="rgb(209,212,17)" fg:x="273925" fg:w="51"/><text x="60.8721%" y="783.50"></text></g><g><title>MemAllocator::allocate (47 samples, 0.01%)</title><rect x="60.6229%" y="757" width="0.0104%" height="15" fill="rgb(243,59,29)" fg:x="273929" fg:w="47"/><text x="60.8729%" y="767.50"></text></g><g><title>InstanceKlass::allocate_instance (66 samples, 0.01%)</title><rect x="60.6190%" y="789" width="0.0146%" height="15" fill="rgb(244,205,48)" fg:x="273911" fg:w="66"/><text x="60.8690%" y="799.50"></text></g><g><title>alloc_object (61 samples, 0.01%)</title><rect x="60.6424%" y="789" width="0.0135%" height="15" fill="rgb(227,30,6)" fg:x="274017" fg:w="61"/><text x="60.8924%" y="799.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (54 samples, 0.01%)</title><rect x="60.6688%" y="773" width="0.0120%" height="15" fill="rgb(220,205,48)" fg:x="274136" fg:w="54"/><text x="60.9188%" y="783.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (50 samples, 0.01%)</title><rect x="60.7106%" y="757" width="0.0111%" height="15" fill="rgb(250,94,14)" fg:x="274325" fg:w="50"/><text x="60.9606%" y="767.50"></text></g><g><title>JavaCalls::call_helper (213 samples, 0.05%)</title><rect x="60.6809%" y="773" width="0.0471%" height="15" fill="rgb(216,119,42)" fg:x="274191" fg:w="213"/><text x="60.9309%" y="783.50"></text></g><g><title>jni_invoke_nonstatic (344 samples, 0.08%)</title><rect x="60.6577%" y="789" width="0.0761%" height="15" fill="rgb(232,155,0)" fg:x="274086" fg:w="344"/><text x="60.9077%" y="799.50"></text></g><g><title>jni_NewObjectV (576 samples, 0.13%)</title><rect x="60.6066%" y="805" width="0.1275%" height="15" fill="rgb(212,24,32)" fg:x="273855" fg:w="576"/><text x="60.8566%" y="815.50"></text></g><g><title>JNIHandles::make_local (267 samples, 0.06%)</title><rect x="60.7920%" y="789" width="0.0591%" height="15" fill="rgb(216,69,20)" fg:x="274693" fg:w="267"/><text x="61.0420%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (234 samples, 0.05%)</title><rect x="60.8522%" y="789" width="0.0518%" height="15" fill="rgb(229,73,31)" fg:x="274965" fg:w="234"/><text x="61.1022%" y="799.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.01%)</title><rect x="60.9673%" y="693" width="0.0128%" height="15" fill="rgb(224,219,20)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.01%)</title><rect x="60.9673%" y="677" width="0.0128%" height="15" fill="rgb(215,146,41)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="687.50"></text></g><g><title>futex_wait_cancelable (58 samples, 0.01%)</title><rect x="60.9673%" y="661" width="0.0128%" height="15" fill="rgb(244,71,31)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="60.9673%" y="645" width="0.0128%" height="15" fill="rgb(224,24,11)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="655.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="60.9673%" y="629" width="0.0128%" height="15" fill="rgb(229,76,15)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="639.50"></text></g><g><title>__x64_sys_futex (58 samples, 0.01%)</title><rect x="60.9673%" y="613" width="0.0128%" height="15" fill="rgb(209,93,2)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="623.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="60.9673%" y="597" width="0.0128%" height="15" fill="rgb(216,200,50)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="607.50"></text></g><g><title>futex_wait (58 samples, 0.01%)</title><rect x="60.9673%" y="581" width="0.0128%" height="15" fill="rgb(211,67,34)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="591.50"></text></g><g><title>futex_wait_queue_me (58 samples, 0.01%)</title><rect x="60.9673%" y="565" width="0.0128%" height="15" fill="rgb(225,87,47)" fg:x="275485" fg:w="58"/><text x="61.2173%" y="575.50"></text></g><g><title>schedule (57 samples, 0.01%)</title><rect x="60.9675%" y="549" width="0.0126%" height="15" fill="rgb(217,185,16)" fg:x="275486" fg:w="57"/><text x="61.2175%" y="559.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="60.9675%" y="533" width="0.0126%" height="15" fill="rgb(205,0,0)" fg:x="275486" fg:w="57"/><text x="61.2175%" y="543.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="60.9677%" y="517" width="0.0124%" height="15" fill="rgb(207,116,45)" fg:x="275487" fg:w="56"/><text x="61.2177%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (54 samples, 0.01%)</title><rect x="60.9682%" y="501" width="0.0120%" height="15" fill="rgb(221,156,26)" fg:x="275489" fg:w="54"/><text x="61.2182%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (54 samples, 0.01%)</title><rect x="60.9682%" y="485" width="0.0120%" height="15" fill="rgb(213,140,4)" fg:x="275489" fg:w="54"/><text x="61.2182%" y="495.50"></text></g><g><title>native_write_msr (54 samples, 0.01%)</title><rect x="60.9682%" y="469" width="0.0120%" height="15" fill="rgb(231,224,15)" fg:x="275489" fg:w="54"/><text x="61.2182%" y="479.50"></text></g><g><title>Monitor::lock_without_safepoint_check (60 samples, 0.01%)</title><rect x="60.9673%" y="741" width="0.0133%" height="15" fill="rgb(244,76,20)" fg:x="275485" fg:w="60"/><text x="61.2173%" y="751.50"></text></g><g><title>Monitor::ILock (60 samples, 0.01%)</title><rect x="60.9673%" y="725" width="0.0133%" height="15" fill="rgb(238,117,7)" fg:x="275485" fg:w="60"/><text x="61.2173%" y="735.50"></text></g><g><title>os::PlatformEvent::park (60 samples, 0.01%)</title><rect x="60.9673%" y="709" width="0.0133%" height="15" fill="rgb(235,1,10)" fg:x="275485" fg:w="60"/><text x="61.2173%" y="719.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (64 samples, 0.01%)</title><rect x="60.9673%" y="773" width="0.0142%" height="15" fill="rgb(216,165,6)" fg:x="275485" fg:w="64"/><text x="61.2173%" y="783.50"></text></g><g><title>SafepointSynchronize::block (64 samples, 0.01%)</title><rect x="60.9673%" y="757" width="0.0142%" height="15" fill="rgb(246,91,35)" fg:x="275485" fg:w="64"/><text x="61.2173%" y="767.50"></text></g><g><title>ThreadStateTransition::transition_from_native (351 samples, 0.08%)</title><rect x="60.9040%" y="789" width="0.0777%" height="15" fill="rgb(228,96,24)" fg:x="275199" fg:w="351"/><text x="61.1540%" y="799.50"></text></g><g><title>UNICODE::is_latin1 (1,705 samples, 0.38%)</title><rect x="61.5471%" y="757" width="0.3773%" height="15" fill="rgb(254,217,53)" fg:x="278105" fg:w="1705"/><text x="61.7971%" y="767.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 573558ul&gt;::oop_access_barrier (339 samples, 0.08%)</title><rect x="62.0112%" y="741" width="0.0750%" height="15" fill="rgb(209,60,0)" fg:x="280202" fg:w="339"/><text x="62.2612%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (135 samples, 0.03%)</title><rect x="62.2007%" y="693" width="0.0299%" height="15" fill="rgb(250,93,26)" fg:x="281058" fg:w="135"/><text x="62.4507%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (164 samples, 0.04%)</title><rect x="62.2305%" y="693" width="0.0363%" height="15" fill="rgb(211,9,40)" fg:x="281193" fg:w="164"/><text x="62.4805%" y="703.50"></text></g><g><title>ThreadHeapSampler::enabled (47 samples, 0.01%)</title><rect x="62.2564%" y="677" width="0.0104%" height="15" fill="rgb(242,57,20)" fg:x="281310" fg:w="47"/><text x="62.5064%" y="687.50"></text></g><g><title>ObjAllocator::initialize (218 samples, 0.05%)</title><rect x="62.2670%" y="693" width="0.0482%" height="15" fill="rgb(248,85,48)" fg:x="281358" fg:w="218"/><text x="62.5170%" y="703.50"></text></g><g><title>__tls_get_addr (111 samples, 0.02%)</title><rect x="62.3153%" y="693" width="0.0246%" height="15" fill="rgb(212,117,2)" fg:x="281576" fg:w="111"/><text x="62.5653%" y="703.50"></text></g><g><title>MemAllocator::allocate (838 samples, 0.19%)</title><rect x="62.1573%" y="709" width="0.1855%" height="15" fill="rgb(243,19,3)" fg:x="280862" fg:w="838"/><text x="62.4073%" y="719.50"></text></g><g><title>CollectedHeap::obj_allocate (890 samples, 0.20%)</title><rect x="62.1460%" y="725" width="0.1970%" height="15" fill="rgb(232,217,24)" fg:x="280811" fg:w="890"/><text x="62.3960%" y="735.50"></text></g><g><title>InstanceKlass::allocate_instance (1,124 samples, 0.25%)</title><rect x="62.0944%" y="741" width="0.2488%" height="15" fill="rgb(224,175,40)" fg:x="280578" fg:w="1124"/><text x="62.3444%" y="751.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (89 samples, 0.02%)</title><rect x="62.4386%" y="693" width="0.0197%" height="15" fill="rgb(212,162,32)" fg:x="282133" fg:w="89"/><text x="62.6886%" y="703.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (99 samples, 0.02%)</title><rect x="62.4583%" y="693" width="0.0219%" height="15" fill="rgb(215,9,4)" fg:x="282222" fg:w="99"/><text x="62.7083%" y="703.50"></text></g><g><title>[libc-2.31.so] (159 samples, 0.04%)</title><rect x="62.5246%" y="677" width="0.0352%" height="15" fill="rgb(242,42,7)" fg:x="282522" fg:w="159"/><text x="62.7746%" y="687.50"></text></g><g><title>ObjArrayAllocator::initialize (364 samples, 0.08%)</title><rect x="62.4824%" y="693" width="0.0806%" height="15" fill="rgb(242,184,45)" fg:x="282331" fg:w="364"/><text x="62.7324%" y="703.50"></text></g><g><title>MemAllocator::allocate (784 samples, 0.17%)</title><rect x="62.4005%" y="709" width="0.1735%" height="15" fill="rgb(228,111,51)" fg:x="281961" fg:w="784"/><text x="62.6505%" y="719.50"></text></g><g><title>TypeArrayKlass::allocate_common (1,047 samples, 0.23%)</title><rect x="62.3432%" y="741" width="0.2317%" height="15" fill="rgb(236,147,17)" fg:x="281702" fg:w="1047"/><text x="62.5932%" y="751.50"></text></g><g><title>CollectedHeap::array_allocate (841 samples, 0.19%)</title><rect x="62.3888%" y="725" width="0.1861%" height="15" fill="rgb(210,75,22)" fg:x="281908" fg:w="841"/><text x="62.6388%" y="735.50"></text></g><g><title>jni_NewString (8,322 samples, 1.84%)</title><rect x="60.7340%" y="805" width="1.8417%" height="15" fill="rgb(217,159,45)" fg:x="274431" fg:w="8322"/><text x="60.9840%" y="815.50">j..</text></g><g><title>java_lang_String::create_oop_from_unicode (7,199 samples, 1.59%)</title><rect x="60.9826%" y="789" width="1.5932%" height="15" fill="rgb(245,165,53)" fg:x="275554" fg:w="7199"/><text x="61.2326%" y="799.50"></text></g><g><title>java_lang_String::create_from_unicode (7,136 samples, 1.58%)</title><rect x="60.9965%" y="773" width="1.5793%" height="15" fill="rgb(251,190,50)" fg:x="275617" fg:w="7136"/><text x="61.2465%" y="783.50"></text></g><g><title>java_lang_String::basic_create (2,930 samples, 0.65%)</title><rect x="61.9273%" y="757" width="0.6484%" height="15" fill="rgb(208,203,29)" fg:x="279823" fg:w="2930"/><text x="62.1773%" y="767.50"></text></g><g><title>jni_SetByteArrayRegion (47 samples, 0.01%)</title><rect x="62.5758%" y="805" width="0.0104%" height="15" fill="rgb(207,209,35)" fg:x="282753" fg:w="47"/><text x="62.8258%" y="815.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;2670710ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 2670710ul&gt;::oop_access_barrier (60 samples, 0.01%)</title><rect x="62.6260%" y="789" width="0.0133%" height="15" fill="rgb(230,144,49)" fg:x="282980" fg:w="60"/><text x="62.8760%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (135 samples, 0.03%)</title><rect x="62.6461%" y="789" width="0.0299%" height="15" fill="rgb(229,31,6)" fg:x="283071" fg:w="135"/><text x="62.8961%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (116 samples, 0.03%)</title><rect x="62.6760%" y="789" width="0.0257%" height="15" fill="rgb(251,129,24)" fg:x="283206" fg:w="116"/><text x="62.9260%" y="799.50"></text></g><g><title>jni_SetObjectArrayElement (523 samples, 0.12%)</title><rect x="62.5862%" y="805" width="0.1157%" height="15" fill="rgb(235,105,15)" fg:x="282800" fg:w="523"/><text x="62.8362%" y="815.50"></text></g><g><title>btrfs_getattr (58 samples, 0.01%)</title><rect x="62.7196%" y="709" width="0.0128%" height="15" fill="rgb(216,52,43)" fg:x="283403" fg:w="58"/><text x="62.9696%" y="719.50"></text></g><g><title>__do_sys_newfstat (167 samples, 0.04%)</title><rect x="62.7086%" y="741" width="0.0370%" height="15" fill="rgb(238,144,41)" fg:x="283353" fg:w="167"/><text x="62.9586%" y="751.50"></text></g><g><title>vfs_fstat (132 samples, 0.03%)</title><rect x="62.7163%" y="725" width="0.0292%" height="15" fill="rgb(243,63,9)" fg:x="283388" fg:w="132"/><text x="62.9663%" y="735.50"></text></g><g><title>do_syscall_64 (170 samples, 0.04%)</title><rect x="62.7083%" y="757" width="0.0376%" height="15" fill="rgb(246,208,1)" fg:x="283352" fg:w="170"/><text x="62.9583%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.04%)</title><rect x="62.7077%" y="773" width="0.0394%" height="15" fill="rgb(233,182,18)" fg:x="283349" fg:w="178"/><text x="62.9577%" y="783.50"></text></g><g><title>__GI___fxstat (201 samples, 0.04%)</title><rect x="62.7039%" y="789" width="0.0445%" height="15" fill="rgb(242,224,8)" fg:x="283332" fg:w="201"/><text x="62.9539%" y="799.50"></text></g><g><title>malloc_consolidate (70 samples, 0.02%)</title><rect x="62.7705%" y="741" width="0.0155%" height="15" fill="rgb(243,54,37)" fg:x="283633" fg:w="70"/><text x="63.0205%" y="751.50"></text></g><g><title>__GI___libc_malloc (181 samples, 0.04%)</title><rect x="62.7488%" y="773" width="0.0401%" height="15" fill="rgb(233,192,12)" fg:x="283535" fg:w="181"/><text x="62.9988%" y="783.50"></text></g><g><title>_int_malloc (148 samples, 0.03%)</title><rect x="62.7561%" y="757" width="0.0328%" height="15" fill="rgb(251,192,53)" fg:x="283568" fg:w="148"/><text x="63.0061%" y="767.50"></text></g><g><title>opendir_tail (402 samples, 0.09%)</title><rect x="62.7021%" y="805" width="0.0890%" height="15" fill="rgb(246,141,26)" fg:x="283324" fg:w="402"/><text x="62.9521%" y="815.50"></text></g><g><title>__alloc_dir (193 samples, 0.04%)</title><rect x="62.7484%" y="789" width="0.0427%" height="15" fill="rgb(239,195,19)" fg:x="283533" fg:w="193"/><text x="62.9984%" y="799.50"></text></g><g><title>operator delete@plt (99 samples, 0.02%)</title><rect x="62.7958%" y="805" width="0.0219%" height="15" fill="rgb(241,16,39)" fg:x="283747" fg:w="99"/><text x="63.0458%" y="815.50"></text></g><g><title>__GI___libc_malloc (313 samples, 0.07%)</title><rect x="62.8258%" y="789" width="0.0693%" height="15" fill="rgb(223,13,53)" fg:x="283883" fg:w="313"/><text x="63.0758%" y="799.50"></text></g><g><title>tcache_get (129 samples, 0.03%)</title><rect x="62.8666%" y="773" width="0.0285%" height="15" fill="rgb(214,227,0)" fg:x="284067" fg:w="129"/><text x="63.1166%" y="783.50"></text></g><g><title>operator new (362 samples, 0.08%)</title><rect x="62.8247%" y="805" width="0.0801%" height="15" fill="rgb(228,103,26)" fg:x="283878" fg:w="362"/><text x="63.0747%" y="815.50"></text></g><g><title>operator new@plt (104 samples, 0.02%)</title><rect x="62.9049%" y="805" width="0.0230%" height="15" fill="rgb(254,177,53)" fg:x="284240" fg:w="104"/><text x="63.1549%" y="815.50"></text></g><g><title>__btrfs_unlink_inode (87 samples, 0.02%)</title><rect x="62.9352%" y="693" width="0.0193%" height="15" fill="rgb(208,201,34)" fg:x="284377" fg:w="87"/><text x="63.1852%" y="703.50"></text></g><g><title>btrfs_rename2 (142 samples, 0.03%)</title><rect x="62.9343%" y="709" width="0.0314%" height="15" fill="rgb(212,39,5)" fg:x="284373" fg:w="142"/><text x="63.1843%" y="719.50"></text></g><g><title>rename (158 samples, 0.03%)</title><rect x="62.9312%" y="805" width="0.0350%" height="15" fill="rgb(246,117,3)" fg:x="284359" fg:w="158"/><text x="63.1812%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (156 samples, 0.03%)</title><rect x="62.9316%" y="789" width="0.0345%" height="15" fill="rgb(244,118,39)" fg:x="284361" fg:w="156"/><text x="63.1816%" y="799.50"></text></g><g><title>do_syscall_64 (156 samples, 0.03%)</title><rect x="62.9316%" y="773" width="0.0345%" height="15" fill="rgb(241,64,10)" fg:x="284361" fg:w="156"/><text x="63.1816%" y="783.50"></text></g><g><title>__x64_sys_rename (156 samples, 0.03%)</title><rect x="62.9316%" y="757" width="0.0345%" height="15" fill="rgb(229,39,44)" fg:x="284361" fg:w="156"/><text x="63.1816%" y="767.50"></text></g><g><title>do_renameat2 (156 samples, 0.03%)</title><rect x="62.9316%" y="741" width="0.0345%" height="15" fill="rgb(230,226,3)" fg:x="284361" fg:w="156"/><text x="63.1816%" y="751.50"></text></g><g><title>vfs_rename (145 samples, 0.03%)</title><rect x="62.9341%" y="725" width="0.0321%" height="15" fill="rgb(222,13,42)" fg:x="284372" fg:w="145"/><text x="63.1841%" y="735.50"></text></g><g><title>_int_malloc (229 samples, 0.05%)</title><rect x="63.0184%" y="757" width="0.0507%" height="15" fill="rgb(247,180,54)" fg:x="284753" fg:w="229"/><text x="63.2684%" y="767.50"></text></g><g><title>__GI___libc_malloc (482 samples, 0.11%)</title><rect x="62.9743%" y="773" width="0.1067%" height="15" fill="rgb(205,96,16)" fg:x="284554" fg:w="482"/><text x="63.2243%" y="783.50"></text></g><g><title>operator new (493 samples, 0.11%)</title><rect x="62.9737%" y="789" width="0.1091%" height="15" fill="rgb(205,100,21)" fg:x="284551" fg:w="493"/><text x="63.2237%" y="799.50"></text></g><g><title>[libunix_jni.so] (112,216 samples, 24.83%)</title><rect x="38.2515%" y="821" width="24.8344%" height="15" fill="rgb(248,51,4)" fg:x="172842" fg:w="112216"/><text x="38.5015%" y="831.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (533 samples, 0.12%)</title><rect x="62.9679%" y="805" width="0.1180%" height="15" fill="rgb(217,197,30)" fg:x="284525" fg:w="533"/><text x="63.2179%" y="815.50"></text></g><g><title>InstanceKlass::link_class_impl (90 samples, 0.02%)</title><rect x="96.8036%" y="773" width="0.0199%" height="15" fill="rgb(240,179,40)" fg:x="437414" fg:w="90"/><text x="97.0536%" y="783.50"></text></g><g><title>InstanceKlass::initialize_impl (103 samples, 0.02%)</title><rect x="96.8034%" y="789" width="0.0228%" height="15" fill="rgb(212,185,35)" fg:x="437413" fg:w="103"/><text x="97.0534%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (153 samples, 0.03%)</title><rect x="96.7941%" y="805" width="0.0339%" height="15" fill="rgb(251,222,31)" fg:x="437371" fg:w="153"/><text x="97.0441%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (51 samples, 0.01%)</title><rect x="96.8388%" y="773" width="0.0113%" height="15" fill="rgb(208,140,36)" fg:x="437573" fg:w="51"/><text x="97.0888%" y="783.50"></text></g><g><title>MemAllocator::allocate (49 samples, 0.01%)</title><rect x="96.8393%" y="757" width="0.0108%" height="15" fill="rgb(220,148,1)" fg:x="437575" fg:w="49"/><text x="97.0893%" y="767.50"></text></g><g><title>InstanceKlass::allocate_objArray (82 samples, 0.02%)</title><rect x="96.8353%" y="789" width="0.0181%" height="15" fill="rgb(254,4,28)" fg:x="437557" fg:w="82"/><text x="97.0853%" y="799.50"></text></g><g><title>InterpreterRuntime::anewarray (121 samples, 0.03%)</title><rect x="96.8280%" y="805" width="0.0268%" height="15" fill="rgb(222,185,44)" fg:x="437524" fg:w="121"/><text x="97.0780%" y="815.50"></text></g><g><title>CompileBroker::compile_method_base (73 samples, 0.02%)</title><rect x="96.9052%" y="693" width="0.0162%" height="15" fill="rgb(215,74,39)" fg:x="437873" fg:w="73"/><text x="97.1552%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (230 samples, 0.05%)</title><rect x="96.8718%" y="789" width="0.0509%" height="15" fill="rgb(247,86,4)" fg:x="437722" fg:w="230"/><text x="97.1218%" y="799.50"></text></g><g><title>TieredThresholdPolicy::event (192 samples, 0.04%)</title><rect x="96.8802%" y="773" width="0.0425%" height="15" fill="rgb(231,105,32)" fg:x="437760" fg:w="192"/><text x="97.1302%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (168 samples, 0.04%)</title><rect x="96.8855%" y="757" width="0.0372%" height="15" fill="rgb(222,65,35)" fg:x="437784" fg:w="168"/><text x="97.1355%" y="767.50"></text></g><g><title>TieredThresholdPolicy::compile (95 samples, 0.02%)</title><rect x="96.9017%" y="741" width="0.0210%" height="15" fill="rgb(218,145,35)" fg:x="437857" fg:w="95"/><text x="97.1517%" y="751.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (94 samples, 0.02%)</title><rect x="96.9019%" y="725" width="0.0208%" height="15" fill="rgb(208,7,15)" fg:x="437858" fg:w="94"/><text x="97.1519%" y="735.50"></text></g><g><title>CompileBroker::compile_method (92 samples, 0.02%)</title><rect x="96.9023%" y="709" width="0.0204%" height="15" fill="rgb(209,83,13)" fg:x="437860" fg:w="92"/><text x="97.1523%" y="719.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (235 samples, 0.05%)</title><rect x="96.8709%" y="805" width="0.0520%" height="15" fill="rgb(218,3,10)" fg:x="437718" fg:w="235"/><text x="97.1209%" y="815.50"></text></g><g><title>JavaThread::pd_last_frame (56 samples, 0.01%)</title><rect x="96.9307%" y="789" width="0.0124%" height="15" fill="rgb(211,219,4)" fg:x="437988" fg:w="56"/><text x="97.1807%" y="799.50"></text></g><g><title>CodeCache::find_blob (51 samples, 0.01%)</title><rect x="96.9318%" y="773" width="0.0113%" height="15" fill="rgb(228,194,12)" fg:x="437993" fg:w="51"/><text x="97.1818%" y="783.50"></text></g><g><title>InterpreterRuntime::ldc (106 samples, 0.02%)</title><rect x="96.9229%" y="805" width="0.0235%" height="15" fill="rgb(210,175,7)" fg:x="437953" fg:w="106"/><text x="97.1729%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.01%)</title><rect x="96.9530%" y="501" width="0.0113%" height="15" fill="rgb(243,132,6)" fg:x="438089" fg:w="51"/><text x="97.2030%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (49 samples, 0.01%)</title><rect x="96.9535%" y="485" width="0.0108%" height="15" fill="rgb(207,72,18)" fg:x="438091" fg:w="49"/><text x="97.2035%" y="495.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="96.9535%" y="469" width="0.0108%" height="15" fill="rgb(236,1,18)" fg:x="438091" fg:w="49"/><text x="97.2035%" y="479.50"></text></g><g><title>finish_task_switch (55 samples, 0.01%)</title><rect x="96.9528%" y="517" width="0.0122%" height="15" fill="rgb(227,0,18)" fg:x="438088" fg:w="55"/><text x="97.2028%" y="527.50"></text></g><g><title>do_syscall_64 (57 samples, 0.01%)</title><rect x="96.9526%" y="629" width="0.0126%" height="15" fill="rgb(247,37,5)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="639.50"></text></g><g><title>__x64_sys_futex (57 samples, 0.01%)</title><rect x="96.9526%" y="613" width="0.0126%" height="15" fill="rgb(237,179,24)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="623.50"></text></g><g><title>do_futex (57 samples, 0.01%)</title><rect x="96.9526%" y="597" width="0.0126%" height="15" fill="rgb(226,53,20)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="607.50"></text></g><g><title>futex_wait (57 samples, 0.01%)</title><rect x="96.9526%" y="581" width="0.0126%" height="15" fill="rgb(247,75,7)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="591.50"></text></g><g><title>futex_wait_queue_me (57 samples, 0.01%)</title><rect x="96.9526%" y="565" width="0.0126%" height="15" fill="rgb(233,96,12)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="575.50"></text></g><g><title>schedule (57 samples, 0.01%)</title><rect x="96.9526%" y="549" width="0.0126%" height="15" fill="rgb(224,125,0)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="559.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="96.9526%" y="533" width="0.0126%" height="15" fill="rgb(224,92,25)" fg:x="438087" fg:w="57"/><text x="97.2026%" y="543.50"></text></g><g><title>Monitor::IWait (59 samples, 0.01%)</title><rect x="96.9524%" y="725" width="0.0131%" height="15" fill="rgb(224,42,24)" fg:x="438086" fg:w="59"/><text x="97.2024%" y="735.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.01%)</title><rect x="96.9524%" y="709" width="0.0131%" height="15" fill="rgb(234,132,49)" fg:x="438086" fg:w="59"/><text x="97.2024%" y="719.50"></text></g><g><title>__pthread_cond_wait (59 samples, 0.01%)</title><rect x="96.9524%" y="693" width="0.0131%" height="15" fill="rgb(248,100,35)" fg:x="438086" fg:w="59"/><text x="97.2024%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (59 samples, 0.01%)</title><rect x="96.9524%" y="677" width="0.0131%" height="15" fill="rgb(239,94,40)" fg:x="438086" fg:w="59"/><text x="97.2024%" y="687.50"></text></g><g><title>futex_wait_cancelable (59 samples, 0.01%)</title><rect x="96.9524%" y="661" width="0.0131%" height="15" fill="rgb(235,139,28)" fg:x="438086" fg:w="59"/><text x="97.2024%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="96.9526%" y="645" width="0.0128%" height="15" fill="rgb(217,144,7)" fg:x="438087" fg:w="58"/><text x="97.2026%" y="655.50"></text></g><g><title>Monitor::wait (69 samples, 0.02%)</title><rect x="96.9524%" y="741" width="0.0153%" height="15" fill="rgb(227,55,4)" fg:x="438086" fg:w="69"/><text x="97.2024%" y="751.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (75 samples, 0.02%)</title><rect x="96.9519%" y="773" width="0.0166%" height="15" fill="rgb(252,82,54)" fg:x="438084" fg:w="75"/><text x="97.2019%" y="783.50"></text></g><g><title>VMThread::execute (75 samples, 0.02%)</title><rect x="96.9519%" y="757" width="0.0166%" height="15" fill="rgb(245,172,4)" fg:x="438084" fg:w="75"/><text x="97.2019%" y="767.50"></text></g><g><title>InterpreterRuntime::monitorenter (101 samples, 0.02%)</title><rect x="96.9464%" y="805" width="0.0224%" height="15" fill="rgb(207,26,27)" fg:x="438059" fg:w="101"/><text x="97.1964%" y="815.50"></text></g><g><title>ObjectSynchronizer::fast_enter (76 samples, 0.02%)</title><rect x="96.9519%" y="789" width="0.0168%" height="15" fill="rgb(252,98,18)" fg:x="438084" fg:w="76"/><text x="97.2019%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (47 samples, 0.01%)</title><rect x="96.9791%" y="789" width="0.0104%" height="15" fill="rgb(244,8,26)" fg:x="438207" fg:w="47"/><text x="97.2291%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (49 samples, 0.01%)</title><rect x="97.0212%" y="757" width="0.0108%" height="15" fill="rgb(237,173,45)" fg:x="438397" fg:w="49"/><text x="97.2712%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (58 samples, 0.01%)</title><rect x="97.0320%" y="757" width="0.0128%" height="15" fill="rgb(208,213,49)" fg:x="438446" fg:w="58"/><text x="97.2820%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (202 samples, 0.04%)</title><rect x="97.0010%" y="773" width="0.0447%" height="15" fill="rgb(212,122,37)" fg:x="438306" fg:w="202"/><text x="97.2510%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (274 samples, 0.06%)</title><rect x="96.9895%" y="789" width="0.0606%" height="15" fill="rgb(213,80,17)" fg:x="438254" fg:w="274"/><text x="97.2395%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (63 samples, 0.01%)</title><rect x="97.0502%" y="789" width="0.0139%" height="15" fill="rgb(206,210,43)" fg:x="438528" fg:w="63"/><text x="97.3002%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (58 samples, 0.01%)</title><rect x="97.0513%" y="773" width="0.0128%" height="15" fill="rgb(229,214,3)" fg:x="438533" fg:w="58"/><text x="97.3013%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (58 samples, 0.01%)</title><rect x="97.0513%" y="757" width="0.0128%" height="15" fill="rgb(235,213,29)" fg:x="438533" fg:w="58"/><text x="97.3013%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (407 samples, 0.09%)</title><rect x="96.9771%" y="805" width="0.0901%" height="15" fill="rgb(248,135,26)" fg:x="438198" fg:w="407"/><text x="97.2271%" y="815.50"></text></g><g><title>JVM_Clone (111 samples, 0.02%)</title><rect x="97.0716%" y="805" width="0.0246%" height="15" fill="rgb(242,188,12)" fg:x="438625" fg:w="111"/><text x="97.3216%" y="815.50"></text></g><g><title>__pthread_cond_wait (48 samples, 0.01%)</title><rect x="97.1312%" y="693" width="0.0106%" height="15" fill="rgb(245,38,12)" fg:x="438894" fg:w="48"/><text x="97.3812%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (48 samples, 0.01%)</title><rect x="97.1312%" y="677" width="0.0106%" height="15" fill="rgb(218,42,13)" fg:x="438894" fg:w="48"/><text x="97.3812%" y="687.50"></text></g><g><title>futex_wait_cancelable (47 samples, 0.01%)</title><rect x="97.1314%" y="661" width="0.0104%" height="15" fill="rgb(238,132,49)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (47 samples, 0.01%)</title><rect x="97.1314%" y="645" width="0.0104%" height="15" fill="rgb(209,196,19)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="655.50"></text></g><g><title>do_syscall_64 (47 samples, 0.01%)</title><rect x="97.1314%" y="629" width="0.0104%" height="15" fill="rgb(244,131,22)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="639.50"></text></g><g><title>__x64_sys_futex (47 samples, 0.01%)</title><rect x="97.1314%" y="613" width="0.0104%" height="15" fill="rgb(223,18,34)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="623.50"></text></g><g><title>do_futex (47 samples, 0.01%)</title><rect x="97.1314%" y="597" width="0.0104%" height="15" fill="rgb(252,124,54)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="607.50"></text></g><g><title>futex_wait (47 samples, 0.01%)</title><rect x="97.1314%" y="581" width="0.0104%" height="15" fill="rgb(229,106,42)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="591.50"></text></g><g><title>futex_wait_queue_me (47 samples, 0.01%)</title><rect x="97.1314%" y="565" width="0.0104%" height="15" fill="rgb(221,129,1)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="575.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="97.1314%" y="549" width="0.0104%" height="15" fill="rgb(229,74,15)" fg:x="438895" fg:w="47"/><text x="97.3814%" y="559.50"></text></g><g><title>Monitor::IWait (51 samples, 0.01%)</title><rect x="97.1307%" y="725" width="0.0113%" height="15" fill="rgb(210,206,50)" fg:x="438892" fg:w="51"/><text x="97.3807%" y="735.50"></text></g><g><title>os::PlatformEvent::park (49 samples, 0.01%)</title><rect x="97.1312%" y="709" width="0.0108%" height="15" fill="rgb(251,114,31)" fg:x="438894" fg:w="49"/><text x="97.3812%" y="719.50"></text></g><g><title>Monitor::wait (73 samples, 0.02%)</title><rect x="97.1307%" y="741" width="0.0162%" height="15" fill="rgb(215,225,28)" fg:x="438892" fg:w="73"/><text x="97.3807%" y="751.50"></text></g><g><title>VMThread::execute (74 samples, 0.02%)</title><rect x="97.1307%" y="757" width="0.0164%" height="15" fill="rgb(237,109,14)" fg:x="438892" fg:w="74"/><text x="97.3807%" y="767.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (89 samples, 0.02%)</title><rect x="97.1279%" y="789" width="0.0197%" height="15" fill="rgb(230,13,37)" fg:x="438879" fg:w="89"/><text x="97.3779%" y="799.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (83 samples, 0.02%)</title><rect x="97.1292%" y="773" width="0.0184%" height="15" fill="rgb(231,40,28)" fg:x="438885" fg:w="83"/><text x="97.3792%" y="783.50"></text></g><g><title>JVM_IHashCode (98 samples, 0.02%)</title><rect x="97.1272%" y="805" width="0.0217%" height="15" fill="rgb(231,202,18)" fg:x="438876" fg:w="98"/><text x="97.3772%" y="815.50"></text></g><g><title>JVM_IsInterrupted (69 samples, 0.02%)</title><rect x="97.1668%" y="805" width="0.0153%" height="15" fill="rgb(225,33,18)" fg:x="439055" fg:w="69"/><text x="97.4168%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (225 samples, 0.05%)</title><rect x="97.1938%" y="549" width="0.0498%" height="15" fill="rgb(223,64,47)" fg:x="439177" fg:w="225"/><text x="97.4438%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (223 samples, 0.05%)</title><rect x="97.1942%" y="533" width="0.0494%" height="15" fill="rgb(234,114,13)" fg:x="439179" fg:w="223"/><text x="97.4442%" y="543.50"></text></g><g><title>native_write_msr (223 samples, 0.05%)</title><rect x="97.1942%" y="517" width="0.0494%" height="15" fill="rgb(248,56,40)" fg:x="439179" fg:w="223"/><text x="97.4442%" y="527.50"></text></g><g><title>finish_task_switch (242 samples, 0.05%)</title><rect x="97.1914%" y="565" width="0.0536%" height="15" fill="rgb(221,194,21)" fg:x="439166" fg:w="242"/><text x="97.4414%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (252 samples, 0.06%)</title><rect x="97.1894%" y="693" width="0.0558%" height="15" fill="rgb(242,108,46)" fg:x="439157" fg:w="252"/><text x="97.4394%" y="703.50"></text></g><g><title>do_syscall_64 (252 samples, 0.06%)</title><rect x="97.1894%" y="677" width="0.0558%" height="15" fill="rgb(220,106,10)" fg:x="439157" fg:w="252"/><text x="97.4394%" y="687.50"></text></g><g><title>__x64_sys_futex (251 samples, 0.06%)</title><rect x="97.1896%" y="661" width="0.0555%" height="15" fill="rgb(211,88,4)" fg:x="439158" fg:w="251"/><text x="97.4396%" y="671.50"></text></g><g><title>do_futex (251 samples, 0.06%)</title><rect x="97.1896%" y="645" width="0.0555%" height="15" fill="rgb(214,95,34)" fg:x="439158" fg:w="251"/><text x="97.4396%" y="655.50"></text></g><g><title>futex_wait (250 samples, 0.06%)</title><rect x="97.1898%" y="629" width="0.0553%" height="15" fill="rgb(250,160,33)" fg:x="439159" fg:w="250"/><text x="97.4398%" y="639.50"></text></g><g><title>futex_wait_queue_me (248 samples, 0.05%)</title><rect x="97.1903%" y="613" width="0.0549%" height="15" fill="rgb(225,29,10)" fg:x="439161" fg:w="248"/><text x="97.4403%" y="623.50"></text></g><g><title>schedule (246 samples, 0.05%)</title><rect x="97.1907%" y="597" width="0.0544%" height="15" fill="rgb(224,28,30)" fg:x="439163" fg:w="246"/><text x="97.4407%" y="607.50"></text></g><g><title>__schedule (245 samples, 0.05%)</title><rect x="97.1909%" y="581" width="0.0542%" height="15" fill="rgb(231,77,4)" fg:x="439164" fg:w="245"/><text x="97.4409%" y="591.50"></text></g><g><title>JVM_MonitorWait (285 samples, 0.06%)</title><rect x="97.1823%" y="805" width="0.0631%" height="15" fill="rgb(209,63,21)" fg:x="439125" fg:w="285"/><text x="97.4323%" y="815.50"></text></g><g><title>ObjectSynchronizer::wait (283 samples, 0.06%)</title><rect x="97.1827%" y="789" width="0.0626%" height="15" fill="rgb(226,22,11)" fg:x="439127" fg:w="283"/><text x="97.4327%" y="799.50"></text></g><g><title>ObjectMonitor::wait (283 samples, 0.06%)</title><rect x="97.1827%" y="773" width="0.0626%" height="15" fill="rgb(216,82,30)" fg:x="439127" fg:w="283"/><text x="97.4327%" y="783.50"></text></g><g><title>os::PlatformEvent::park (257 samples, 0.06%)</title><rect x="97.1885%" y="757" width="0.0569%" height="15" fill="rgb(246,227,38)" fg:x="439153" fg:w="257"/><text x="97.4385%" y="767.50"></text></g><g><title>__pthread_cond_wait (254 samples, 0.06%)</title><rect x="97.1892%" y="741" width="0.0562%" height="15" fill="rgb(251,203,53)" fg:x="439156" fg:w="254"/><text x="97.4392%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (254 samples, 0.06%)</title><rect x="97.1892%" y="725" width="0.0562%" height="15" fill="rgb(254,101,1)" fg:x="439156" fg:w="254"/><text x="97.4392%" y="735.50"></text></g><g><title>futex_wait_cancelable (254 samples, 0.06%)</title><rect x="97.1892%" y="709" width="0.0562%" height="15" fill="rgb(241,180,5)" fg:x="439156" fg:w="254"/><text x="97.4392%" y="719.50"></text></g><g><title>JavaThread::check_special_condition_for_native_trans (49 samples, 0.01%)</title><rect x="97.2542%" y="805" width="0.0108%" height="15" fill="rgb(218,168,4)" fg:x="439450" fg:w="49"/><text x="97.5042%" y="815.50"></text></g><g><title>JavaThread::check_safepoint_and_suspend_for_native_trans (49 samples, 0.01%)</title><rect x="97.2542%" y="789" width="0.0108%" height="15" fill="rgb(224,223,32)" fg:x="439450" fg:w="49"/><text x="97.5042%" y="799.50"></text></g><g><title>SafepointSynchronize::block (49 samples, 0.01%)</title><rect x="97.2542%" y="773" width="0.0108%" height="15" fill="rgb(236,106,22)" fg:x="439450" fg:w="49"/><text x="97.5042%" y="783.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (339 samples, 0.08%)</title><rect x="97.2772%" y="677" width="0.0750%" height="15" fill="rgb(206,121,5)" fg:x="439554" fg:w="339"/><text x="97.5272%" y="687.50"></text></g><g><title>SymbolTable::lookup_only (307 samples, 0.07%)</title><rect x="97.2843%" y="661" width="0.0679%" height="15" fill="rgb(233,87,28)" fg:x="439586" fg:w="307"/><text x="97.5343%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (352 samples, 0.08%)</title><rect x="97.2755%" y="693" width="0.0779%" height="15" fill="rgb(236,137,17)" fg:x="439546" fg:w="352"/><text x="97.5255%" y="703.50"></text></g><g><title>ClassFileParser::parse_method (84 samples, 0.02%)</title><rect x="97.3554%" y="677" width="0.0186%" height="15" fill="rgb(209,183,38)" fg:x="439907" fg:w="84"/><text x="97.6054%" y="687.50"></text></g><g><title>ClassFileParser::parse_methods (87 samples, 0.02%)</title><rect x="97.3554%" y="693" width="0.0193%" height="15" fill="rgb(206,162,44)" fg:x="439907" fg:w="87"/><text x="97.6054%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (457 samples, 0.10%)</title><rect x="97.2748%" y="725" width="0.1011%" height="15" fill="rgb(237,70,39)" fg:x="439543" fg:w="457"/><text x="97.5248%" y="735.50"></text></g><g><title>ClassFileParser::parse_stream (456 samples, 0.10%)</title><rect x="97.2750%" y="709" width="0.1009%" height="15" fill="rgb(212,176,5)" fg:x="439544" fg:w="456"/><text x="97.5250%" y="719.50"></text></g><g><title>DefaultMethods::generate_default_methods (59 samples, 0.01%)</title><rect x="97.3773%" y="693" width="0.0131%" height="15" fill="rgb(232,95,16)" fg:x="440006" fg:w="59"/><text x="97.6273%" y="703.50"></text></g><g><title>ClassFileParser::fill_instance_klass (88 samples, 0.02%)</title><rect x="97.3759%" y="709" width="0.0195%" height="15" fill="rgb(219,115,35)" fg:x="440000" fg:w="88"/><text x="97.6259%" y="719.50"></text></g><g><title>ClassFileParser::create_instance_klass (102 samples, 0.02%)</title><rect x="97.3759%" y="725" width="0.0226%" height="15" fill="rgb(251,67,27)" fg:x="440000" fg:w="102"/><text x="97.6259%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (589 samples, 0.13%)</title><rect x="97.2748%" y="741" width="0.1304%" height="15" fill="rgb(222,95,40)" fg:x="439543" fg:w="589"/><text x="97.5248%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (627 samples, 0.14%)</title><rect x="97.2726%" y="789" width="0.1388%" height="15" fill="rgb(250,35,16)" fg:x="439533" fg:w="627"/><text x="97.5226%" y="799.50"></text></g><g><title>jvm_define_class_common (627 samples, 0.14%)</title><rect x="97.2726%" y="773" width="0.1388%" height="15" fill="rgb(224,86,44)" fg:x="439533" fg:w="627"/><text x="97.5226%" y="783.50"></text></g><g><title>SystemDictionary::resolve_from_stream (617 samples, 0.14%)</title><rect x="97.2748%" y="757" width="0.1365%" height="15" fill="rgb(237,53,53)" fg:x="439543" fg:w="617"/><text x="97.5248%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (649 samples, 0.14%)</title><rect x="97.2721%" y="805" width="0.1436%" height="15" fill="rgb(208,171,33)" fg:x="439531" fg:w="649"/><text x="97.5221%" y="815.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (48 samples, 0.01%)</title><rect x="97.4293%" y="805" width="0.0106%" height="15" fill="rgb(222,64,27)" fg:x="440241" fg:w="48"/><text x="97.6793%" y="815.50"></text></g><g><title>os_getParentPidAndTimings (48 samples, 0.01%)</title><rect x="97.4293%" y="789" width="0.0106%" height="15" fill="rgb(221,121,35)" fg:x="440241" fg:w="48"/><text x="97.6793%" y="799.50"></text></g><g><title>wait_for_completion_killable (47 samples, 0.01%)</title><rect x="97.4580%" y="693" width="0.0104%" height="15" fill="rgb(228,137,42)" fg:x="440371" fg:w="47"/><text x="97.7080%" y="703.50"></text></g><g><title>__wait_for_common (47 samples, 0.01%)</title><rect x="97.4580%" y="677" width="0.0104%" height="15" fill="rgb(227,54,21)" fg:x="440371" fg:w="47"/><text x="97.7080%" y="687.50"></text></g><g><title>schedule_timeout (46 samples, 0.01%)</title><rect x="97.4583%" y="661" width="0.0102%" height="15" fill="rgb(240,168,33)" fg:x="440372" fg:w="46"/><text x="97.7083%" y="671.50"></text></g><g><title>schedule (46 samples, 0.01%)</title><rect x="97.4583%" y="645" width="0.0102%" height="15" fill="rgb(243,159,6)" fg:x="440372" fg:w="46"/><text x="97.7083%" y="655.50"></text></g><g><title>__schedule (46 samples, 0.01%)</title><rect x="97.4583%" y="629" width="0.0102%" height="15" fill="rgb(205,211,41)" fg:x="440372" fg:w="46"/><text x="97.7083%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.02%)</title><rect x="97.4494%" y="757" width="0.0201%" height="15" fill="rgb(253,30,1)" fg:x="440332" fg:w="91"/><text x="97.6994%" y="767.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="97.4494%" y="741" width="0.0201%" height="15" fill="rgb(226,80,18)" fg:x="440332" fg:w="91"/><text x="97.6994%" y="751.50"></text></g><g><title>__x64_sys_vfork (91 samples, 0.02%)</title><rect x="97.4494%" y="725" width="0.0201%" height="15" fill="rgb(253,156,46)" fg:x="440332" fg:w="91"/><text x="97.6994%" y="735.50"></text></g><g><title>kernel_clone (91 samples, 0.02%)</title><rect x="97.4494%" y="709" width="0.0201%" height="15" fill="rgb(248,87,27)" fg:x="440332" fg:w="91"/><text x="97.6994%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (346 samples, 0.08%)</title><rect x="97.4755%" y="709" width="0.0766%" height="15" fill="rgb(227,122,2)" fg:x="440450" fg:w="346"/><text x="97.7255%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (342 samples, 0.08%)</title><rect x="97.4764%" y="693" width="0.0757%" height="15" fill="rgb(229,94,39)" fg:x="440454" fg:w="342"/><text x="97.7264%" y="703.50"></text></g><g><title>native_write_msr (341 samples, 0.08%)</title><rect x="97.4766%" y="677" width="0.0755%" height="15" fill="rgb(225,173,31)" fg:x="440455" fg:w="341"/><text x="97.7266%" y="687.50"></text></g><g><title>schedule_tail (360 samples, 0.08%)</title><rect x="97.4735%" y="741" width="0.0797%" height="15" fill="rgb(239,176,30)" fg:x="440441" fg:w="360"/><text x="97.7235%" y="751.50"></text></g><g><title>finish_task_switch (359 samples, 0.08%)</title><rect x="97.4738%" y="725" width="0.0794%" height="15" fill="rgb(212,104,21)" fg:x="440442" fg:w="359"/><text x="97.7238%" y="735.50"></text></g><g><title>__libc_vfork (484 samples, 0.11%)</title><rect x="97.4483%" y="773" width="0.1071%" height="15" fill="rgb(240,209,40)" fg:x="440327" fg:w="484"/><text x="97.6983%" y="783.50"></text></g><g><title>ret_from_fork (388 samples, 0.09%)</title><rect x="97.4696%" y="757" width="0.0859%" height="15" fill="rgb(234,195,5)" fg:x="440423" fg:w="388"/><text x="97.7196%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="97.5676%" y="565" width="0.0108%" height="15" fill="rgb(238,213,1)" fg:x="440866" fg:w="49"/><text x="97.8176%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.01%)</title><rect x="97.5678%" y="549" width="0.0106%" height="15" fill="rgb(235,182,54)" fg:x="440867" fg:w="48"/><text x="97.8178%" y="559.50"></text></g><g><title>native_write_msr (48 samples, 0.01%)</title><rect x="97.5678%" y="533" width="0.0106%" height="15" fill="rgb(229,50,46)" fg:x="440867" fg:w="48"/><text x="97.8178%" y="543.50"></text></g><g><title>sched_exec (55 samples, 0.01%)</title><rect x="97.5665%" y="645" width="0.0122%" height="15" fill="rgb(219,145,13)" fg:x="440861" fg:w="55"/><text x="97.8165%" y="655.50"></text></g><g><title>stop_one_cpu (55 samples, 0.01%)</title><rect x="97.5665%" y="629" width="0.0122%" height="15" fill="rgb(220,226,10)" fg:x="440861" fg:w="55"/><text x="97.8165%" y="639.50"></text></g><g><title>_cond_resched (51 samples, 0.01%)</title><rect x="97.5674%" y="613" width="0.0113%" height="15" fill="rgb(248,47,30)" fg:x="440865" fg:w="51"/><text x="97.8174%" y="623.50"></text></g><g><title>__schedule (51 samples, 0.01%)</title><rect x="97.5674%" y="597" width="0.0113%" height="15" fill="rgb(231,209,44)" fg:x="440865" fg:w="51"/><text x="97.8174%" y="607.50"></text></g><g><title>finish_task_switch (50 samples, 0.01%)</title><rect x="97.5676%" y="581" width="0.0111%" height="15" fill="rgb(209,80,30)" fg:x="440866" fg:w="50"/><text x="97.8176%" y="591.50"></text></g><g><title>bprm_execve (113 samples, 0.03%)</title><rect x="97.5585%" y="661" width="0.0250%" height="15" fill="rgb(232,9,14)" fg:x="440825" fg:w="113"/><text x="97.8085%" y="671.50"></text></g><g><title>do_execveat_common (140 samples, 0.03%)</title><rect x="97.5563%" y="677" width="0.0310%" height="15" fill="rgb(243,91,43)" fg:x="440815" fg:w="140"/><text x="97.8063%" y="687.50"></text></g><g><title>JDK_execvpe (143 samples, 0.03%)</title><rect x="97.5561%" y="757" width="0.0316%" height="15" fill="rgb(231,90,52)" fg:x="440814" fg:w="143"/><text x="97.8061%" y="767.50"></text></g><g><title>__GI_execve (143 samples, 0.03%)</title><rect x="97.5561%" y="741" width="0.0316%" height="15" fill="rgb(253,192,44)" fg:x="440814" fg:w="143"/><text x="97.8061%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (142 samples, 0.03%)</title><rect x="97.5563%" y="725" width="0.0314%" height="15" fill="rgb(241,66,31)" fg:x="440815" fg:w="142"/><text x="97.8063%" y="735.50"></text></g><g><title>do_syscall_64 (142 samples, 0.03%)</title><rect x="97.5563%" y="709" width="0.0314%" height="15" fill="rgb(235,81,37)" fg:x="440815" fg:w="142"/><text x="97.8063%" y="719.50"></text></g><g><title>__x64_sys_execve (142 samples, 0.03%)</title><rect x="97.5563%" y="693" width="0.0314%" height="15" fill="rgb(223,221,9)" fg:x="440815" fg:w="142"/><text x="97.8063%" y="703.50"></text></g><g><title>__GI___open64_nocancel (53 samples, 0.01%)</title><rect x="97.6050%" y="725" width="0.0117%" height="15" fill="rgb(242,180,7)" fg:x="441035" fg:w="53"/><text x="97.8550%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="97.6052%" y="709" width="0.0115%" height="15" fill="rgb(243,78,19)" fg:x="441036" fg:w="52"/><text x="97.8552%" y="719.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="97.6052%" y="693" width="0.0115%" height="15" fill="rgb(233,23,17)" fg:x="441036" fg:w="52"/><text x="97.8552%" y="703.50"></text></g><g><title>__x64_sys_openat (52 samples, 0.01%)</title><rect x="97.6052%" y="677" width="0.0115%" height="15" fill="rgb(252,122,45)" fg:x="441036" fg:w="52"/><text x="97.8552%" y="687.50"></text></g><g><title>do_sys_openat2 (52 samples, 0.01%)</title><rect x="97.6052%" y="661" width="0.0115%" height="15" fill="rgb(247,108,20)" fg:x="441036" fg:w="52"/><text x="97.8552%" y="671.50"></text></g><g><title>__opendir (54 samples, 0.01%)</title><rect x="97.6050%" y="741" width="0.0120%" height="15" fill="rgb(235,84,21)" fg:x="441035" fg:w="54"/><text x="97.8550%" y="751.50"></text></g><g><title>closeDescriptors (118 samples, 0.03%)</title><rect x="97.5913%" y="757" width="0.0261%" height="15" fill="rgb(247,129,10)" fg:x="440973" fg:w="118"/><text x="97.8413%" y="767.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (815 samples, 0.18%)</title><rect x="97.4399%" y="805" width="0.1804%" height="15" fill="rgb(208,173,14)" fg:x="440289" fg:w="815"/><text x="97.6899%" y="815.50"></text></g><g><title>vforkChild (778 samples, 0.17%)</title><rect x="97.4481%" y="789" width="0.1722%" height="15" fill="rgb(236,31,38)" fg:x="440326" fg:w="778"/><text x="97.6981%" y="799.50"></text></g><g><title>childProcess (293 samples, 0.06%)</title><rect x="97.5554%" y="773" width="0.0648%" height="15" fill="rgb(232,65,17)" fg:x="440811" fg:w="293"/><text x="97.8054%" y="783.50"></text></g><g><title>do_huge_pmd_anonymous_page (46 samples, 0.01%)</title><rect x="97.6468%" y="661" width="0.0102%" height="15" fill="rgb(224,45,49)" fg:x="441224" fg:w="46"/><text x="97.8968%" y="671.50"></text></g><g><title>OptoRuntime::new_array_C (126 samples, 0.03%)</title><rect x="97.6293%" y="805" width="0.0279%" height="15" fill="rgb(225,2,53)" fg:x="441145" fg:w="126"/><text x="97.8793%" y="815.50"></text></g><g><title>TypeArrayKlass::allocate_common (85 samples, 0.02%)</title><rect x="97.6384%" y="789" width="0.0188%" height="15" fill="rgb(248,210,53)" fg:x="441186" fg:w="85"/><text x="97.8884%" y="799.50"></text></g><g><title>CollectedHeap::array_allocate (83 samples, 0.02%)</title><rect x="97.6389%" y="773" width="0.0184%" height="15" fill="rgb(211,1,30)" fg:x="441188" fg:w="83"/><text x="97.8889%" y="783.50"></text></g><g><title>MemAllocator::allocate (83 samples, 0.02%)</title><rect x="97.6389%" y="757" width="0.0184%" height="15" fill="rgb(224,96,15)" fg:x="441188" fg:w="83"/><text x="97.8889%" y="767.50"></text></g><g><title>ObjArrayAllocator::initialize (55 samples, 0.01%)</title><rect x="97.6451%" y="741" width="0.0122%" height="15" fill="rgb(252,45,11)" fg:x="441216" fg:w="55"/><text x="97.8951%" y="751.50"></text></g><g><title>asm_exc_page_fault (48 samples, 0.01%)</title><rect x="97.6466%" y="725" width="0.0106%" height="15" fill="rgb(220,125,38)" fg:x="441223" fg:w="48"/><text x="97.8966%" y="735.50"></text></g><g><title>exc_page_fault (48 samples, 0.01%)</title><rect x="97.6466%" y="709" width="0.0106%" height="15" fill="rgb(243,161,33)" fg:x="441223" fg:w="48"/><text x="97.8966%" y="719.50"></text></g><g><title>do_user_addr_fault (48 samples, 0.01%)</title><rect x="97.6466%" y="693" width="0.0106%" height="15" fill="rgb(248,197,34)" fg:x="441223" fg:w="48"/><text x="97.8966%" y="703.50"></text></g><g><title>handle_mm_fault (48 samples, 0.01%)</title><rect x="97.6466%" y="677" width="0.0106%" height="15" fill="rgb(228,165,23)" fg:x="441223" fg:w="48"/><text x="97.8966%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (53 samples, 0.01%)</title><rect x="97.6714%" y="661" width="0.0117%" height="15" fill="rgb(236,94,38)" fg:x="441335" fg:w="53"/><text x="97.9214%" y="671.50"></text></g><g><title>ObjAllocator::initialize (57 samples, 0.01%)</title><rect x="97.6709%" y="741" width="0.0126%" height="15" fill="rgb(220,13,23)" fg:x="441333" fg:w="57"/><text x="97.9209%" y="751.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.01%)</title><rect x="97.6712%" y="725" width="0.0124%" height="15" fill="rgb(234,26,39)" fg:x="441334" fg:w="56"/><text x="97.9212%" y="735.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="97.6712%" y="709" width="0.0124%" height="15" fill="rgb(205,117,44)" fg:x="441334" fg:w="56"/><text x="97.9212%" y="719.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="97.6712%" y="693" width="0.0124%" height="15" fill="rgb(250,42,2)" fg:x="441334" fg:w="56"/><text x="97.9212%" y="703.50"></text></g><g><title>handle_mm_fault (56 samples, 0.01%)</title><rect x="97.6712%" y="677" width="0.0124%" height="15" fill="rgb(223,83,14)" fg:x="441334" fg:w="56"/><text x="97.9212%" y="687.50"></text></g><g><title>InstanceKlass::allocate_instance (93 samples, 0.02%)</title><rect x="97.6634%" y="789" width="0.0206%" height="15" fill="rgb(241,147,50)" fg:x="441299" fg:w="93"/><text x="97.9134%" y="799.50"></text></g><g><title>CollectedHeap::obj_allocate (93 samples, 0.02%)</title><rect x="97.6634%" y="773" width="0.0206%" height="15" fill="rgb(218,90,6)" fg:x="441299" fg:w="93"/><text x="97.9134%" y="783.50"></text></g><g><title>MemAllocator::allocate (93 samples, 0.02%)</title><rect x="97.6634%" y="757" width="0.0206%" height="15" fill="rgb(210,191,5)" fg:x="441299" fg:w="93"/><text x="97.9134%" y="767.50"></text></g><g><title>OptoRuntime::new_instance_C (110 samples, 0.02%)</title><rect x="97.6621%" y="805" width="0.0243%" height="15" fill="rgb(225,139,19)" fg:x="441293" fg:w="110"/><text x="97.9121%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (106 samples, 0.02%)</title><rect x="97.6993%" y="789" width="0.0235%" height="15" fill="rgb(210,1,33)" fg:x="441461" fg:w="106"/><text x="97.9493%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (67 samples, 0.01%)</title><rect x="97.7079%" y="773" width="0.0148%" height="15" fill="rgb(213,50,3)" fg:x="441500" fg:w="67"/><text x="97.9579%" y="783.50"></text></g><g><title>Runtime1::counter_overflow (210 samples, 0.05%)</title><rect x="97.6871%" y="805" width="0.0465%" height="15" fill="rgb(234,227,4)" fg:x="441406" fg:w="210"/><text x="97.9371%" y="815.50"></text></g><g><title>frame::sender (49 samples, 0.01%)</title><rect x="97.7227%" y="789" width="0.0108%" height="15" fill="rgb(246,63,5)" fg:x="441567" fg:w="49"/><text x="97.9727%" y="799.50"></text></g><g><title>ObjectMonitor::enter (116 samples, 0.03%)</title><rect x="97.7418%" y="789" width="0.0257%" height="15" fill="rgb(245,136,27)" fg:x="441653" fg:w="116"/><text x="97.9918%" y="799.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (46 samples, 0.01%)</title><rect x="97.7688%" y="773" width="0.0102%" height="15" fill="rgb(247,199,27)" fg:x="441775" fg:w="46"/><text x="98.0188%" y="783.50"></text></g><g><title>Runtime1::monitorenter (210 samples, 0.05%)</title><rect x="97.7345%" y="805" width="0.0465%" height="15" fill="rgb(252,158,49)" fg:x="441620" fg:w="210"/><text x="97.9845%" y="815.50"></text></g><g><title>ObjectSynchronizer::fast_enter (61 samples, 0.01%)</title><rect x="97.7674%" y="789" width="0.0135%" height="15" fill="rgb(254,73,1)" fg:x="441769" fg:w="61"/><text x="98.0174%" y="799.50"></text></g><g><title>Runtime1::monitorexit (47 samples, 0.01%)</title><rect x="97.7809%" y="805" width="0.0104%" height="15" fill="rgb(248,93,19)" fg:x="441830" fg:w="47"/><text x="98.0309%" y="815.50"></text></g><g><title>futex_wait_queue_me (47 samples, 0.01%)</title><rect x="97.8201%" y="629" width="0.0104%" height="15" fill="rgb(206,67,5)" fg:x="442007" fg:w="47"/><text x="98.0701%" y="639.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="97.8201%" y="613" width="0.0104%" height="15" fill="rgb(209,210,4)" fg:x="442007" fg:w="47"/><text x="98.0701%" y="623.50"></text></g><g><title>__schedule (47 samples, 0.01%)</title><rect x="97.8201%" y="597" width="0.0104%" height="15" fill="rgb(214,185,36)" fg:x="442007" fg:w="47"/><text x="98.0701%" y="607.50"></text></g><g><title>__x64_sys_futex (48 samples, 0.01%)</title><rect x="97.8201%" y="677" width="0.0106%" height="15" fill="rgb(233,191,26)" fg:x="442007" fg:w="48"/><text x="98.0701%" y="687.50"></text></g><g><title>do_futex (48 samples, 0.01%)</title><rect x="97.8201%" y="661" width="0.0106%" height="15" fill="rgb(248,94,17)" fg:x="442007" fg:w="48"/><text x="98.0701%" y="671.50"></text></g><g><title>futex_wait (48 samples, 0.01%)</title><rect x="97.8201%" y="645" width="0.0106%" height="15" fill="rgb(250,64,4)" fg:x="442007" fg:w="48"/><text x="98.0701%" y="655.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="97.8201%" y="693" width="0.0108%" height="15" fill="rgb(218,41,53)" fg:x="442007" fg:w="49"/><text x="98.0701%" y="703.50"></text></g><g><title>__pthread_cond_wait (55 samples, 0.01%)</title><rect x="97.8190%" y="757" width="0.0122%" height="15" fill="rgb(251,176,28)" fg:x="442002" fg:w="55"/><text x="98.0690%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (55 samples, 0.01%)</title><rect x="97.8190%" y="741" width="0.0122%" height="15" fill="rgb(247,22,9)" fg:x="442002" fg:w="55"/><text x="98.0690%" y="751.50"></text></g><g><title>futex_wait_cancelable (53 samples, 0.01%)</title><rect x="97.8194%" y="725" width="0.0117%" height="15" fill="rgb(218,201,14)" fg:x="442004" fg:w="53"/><text x="98.0694%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="97.8201%" y="709" width="0.0111%" height="15" fill="rgb(218,94,10)" fg:x="442007" fg:w="50"/><text x="98.0701%" y="719.50"></text></g><g><title>ObjectMonitor::enter (104 samples, 0.02%)</title><rect x="97.8086%" y="789" width="0.0230%" height="15" fill="rgb(222,183,52)" fg:x="441955" fg:w="104"/><text x="98.0586%" y="799.50"></text></g><g><title>os::PlatformEvent::park (98 samples, 0.02%)</title><rect x="97.8099%" y="773" width="0.0217%" height="15" fill="rgb(242,140,25)" fg:x="441961" fg:w="98"/><text x="98.0599%" y="783.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (119 samples, 0.03%)</title><rect x="97.8075%" y="805" width="0.0263%" height="15" fill="rgb(235,197,38)" fg:x="441950" fg:w="119"/><text x="98.0575%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (49 samples, 0.01%)</title><rect x="97.8657%" y="773" width="0.0108%" height="15" fill="rgb(237,136,15)" fg:x="442213" fg:w="49"/><text x="98.1157%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (78 samples, 0.02%)</title><rect x="97.8610%" y="805" width="0.0173%" height="15" fill="rgb(223,44,49)" fg:x="442192" fg:w="78"/><text x="98.1110%" y="815.50"></text></g><g><title>SystemDictionary::parse_stream (77 samples, 0.02%)</title><rect x="97.8613%" y="789" width="0.0170%" height="15" fill="rgb(227,71,15)" fg:x="442193" fg:w="77"/><text x="98.1113%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (423 samples, 0.09%)</title><rect x="97.9126%" y="581" width="0.0936%" height="15" fill="rgb(225,153,20)" fg:x="442425" fg:w="423"/><text x="98.1626%" y="591.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (409 samples, 0.09%)</title><rect x="97.9157%" y="565" width="0.0905%" height="15" fill="rgb(210,190,26)" fg:x="442439" fg:w="409"/><text x="98.1657%" y="575.50"></text></g><g><title>native_write_msr (405 samples, 0.09%)</title><rect x="97.9166%" y="549" width="0.0896%" height="15" fill="rgb(223,147,5)" fg:x="442443" fg:w="405"/><text x="98.1666%" y="559.50"></text></g><g><title>finish_task_switch (446 samples, 0.10%)</title><rect x="97.9113%" y="597" width="0.0987%" height="15" fill="rgb(207,14,23)" fg:x="442419" fg:w="446"/><text x="98.1613%" y="607.50"></text></g><g><title>futex_wait_queue_me (530 samples, 0.12%)</title><rect x="97.9035%" y="645" width="0.1173%" height="15" fill="rgb(211,195,53)" fg:x="442384" fg:w="530"/><text x="98.1535%" y="655.50"></text></g><g><title>schedule (525 samples, 0.12%)</title><rect x="97.9046%" y="629" width="0.1162%" height="15" fill="rgb(237,75,46)" fg:x="442389" fg:w="525"/><text x="98.1546%" y="639.50"></text></g><g><title>__schedule (523 samples, 0.12%)</title><rect x="97.9051%" y="613" width="0.1157%" height="15" fill="rgb(254,55,14)" fg:x="442391" fg:w="523"/><text x="98.1551%" y="623.50"></text></g><g><title>__x64_sys_futex (539 samples, 0.12%)</title><rect x="97.9024%" y="693" width="0.1193%" height="15" fill="rgb(230,185,30)" fg:x="442379" fg:w="539"/><text x="98.1524%" y="703.50"></text></g><g><title>do_futex (538 samples, 0.12%)</title><rect x="97.9027%" y="677" width="0.1191%" height="15" fill="rgb(220,14,11)" fg:x="442380" fg:w="538"/><text x="98.1527%" y="687.50"></text></g><g><title>futex_wait (537 samples, 0.12%)</title><rect x="97.9029%" y="661" width="0.1188%" height="15" fill="rgb(215,169,44)" fg:x="442381" fg:w="537"/><text x="98.1529%" y="671.50"></text></g><g><title>do_syscall_64 (541 samples, 0.12%)</title><rect x="97.9022%" y="709" width="0.1197%" height="15" fill="rgb(253,203,20)" fg:x="442378" fg:w="541"/><text x="98.1522%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (554 samples, 0.12%)</title><rect x="97.9020%" y="725" width="0.1226%" height="15" fill="rgb(229,225,17)" fg:x="442377" fg:w="554"/><text x="98.1520%" y="735.50"></text></g><g><title>__pthread_cond_wait (568 samples, 0.13%)</title><rect x="97.8991%" y="773" width="0.1257%" height="15" fill="rgb(236,76,26)" fg:x="442364" fg:w="568"/><text x="98.1491%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (568 samples, 0.13%)</title><rect x="97.8991%" y="757" width="0.1257%" height="15" fill="rgb(234,15,30)" fg:x="442364" fg:w="568"/><text x="98.1491%" y="767.50"></text></g><g><title>futex_wait_cancelable (563 samples, 0.12%)</title><rect x="97.9002%" y="741" width="0.1246%" height="15" fill="rgb(211,113,48)" fg:x="442369" fg:w="563"/><text x="98.1502%" y="751.50"></text></g><g><title>Parker::park (652 samples, 0.14%)</title><rect x="97.8856%" y="789" width="0.1443%" height="15" fill="rgb(221,31,36)" fg:x="442303" fg:w="652"/><text x="98.1356%" y="799.50"></text></g><g><title>Unsafe_Park (664 samples, 0.15%)</title><rect x="97.8845%" y="805" width="0.1469%" height="15" fill="rgb(215,118,52)" fg:x="442298" fg:w="664"/><text x="98.1345%" y="815.50"></text></g><g><title>select_task_rq_fair (66 samples, 0.01%)</title><rect x="98.0680%" y="645" width="0.0146%" height="15" fill="rgb(241,151,27)" fg:x="443127" fg:w="66"/><text x="98.3180%" y="655.50"></text></g><g><title>enqueue_entity (58 samples, 0.01%)</title><rect x="98.0897%" y="613" width="0.0128%" height="15" fill="rgb(253,51,3)" fg:x="443225" fg:w="58"/><text x="98.3397%" y="623.50"></text></g><g><title>enqueue_task_fair (90 samples, 0.02%)</title><rect x="98.0861%" y="629" width="0.0199%" height="15" fill="rgb(216,201,24)" fg:x="443209" fg:w="90"/><text x="98.3361%" y="639.50"></text></g><g><title>ttwu_do_activate (166 samples, 0.04%)</title><rect x="98.0839%" y="645" width="0.0367%" height="15" fill="rgb(231,107,4)" fg:x="443199" fg:w="166"/><text x="98.3339%" y="655.50"></text></g><g><title>psi_task_change (66 samples, 0.01%)</title><rect x="98.1060%" y="629" width="0.0146%" height="15" fill="rgb(243,97,54)" fg:x="443299" fg:w="66"/><text x="98.3560%" y="639.50"></text></g><g><title>__x64_sys_futex (350 samples, 0.08%)</title><rect x="98.0514%" y="725" width="0.0775%" height="15" fill="rgb(221,32,51)" fg:x="443052" fg:w="350"/><text x="98.3014%" y="735.50"></text></g><g><title>do_futex (344 samples, 0.08%)</title><rect x="98.0527%" y="709" width="0.0761%" height="15" fill="rgb(218,171,35)" fg:x="443058" fg:w="344"/><text x="98.3027%" y="719.50"></text></g><g><title>futex_wake (342 samples, 0.08%)</title><rect x="98.0531%" y="693" width="0.0757%" height="15" fill="rgb(214,20,53)" fg:x="443060" fg:w="342"/><text x="98.3031%" y="703.50"></text></g><g><title>wake_up_q (300 samples, 0.07%)</title><rect x="98.0624%" y="677" width="0.0664%" height="15" fill="rgb(239,9,52)" fg:x="443102" fg:w="300"/><text x="98.3124%" y="687.50"></text></g><g><title>try_to_wake_up (297 samples, 0.07%)</title><rect x="98.0631%" y="661" width="0.0657%" height="15" fill="rgb(215,114,45)" fg:x="443105" fg:w="297"/><text x="98.3131%" y="671.50"></text></g><g><title>do_syscall_64 (352 samples, 0.08%)</title><rect x="98.0512%" y="741" width="0.0779%" height="15" fill="rgb(208,118,9)" fg:x="443051" fg:w="352"/><text x="98.3012%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (47 samples, 0.01%)</title><rect x="98.1330%" y="661" width="0.0104%" height="15" fill="rgb(235,7,39)" fg:x="443421" fg:w="47"/><text x="98.3830%" y="671.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.01%)</title><rect x="98.1333%" y="645" width="0.0102%" height="15" fill="rgb(243,225,15)" fg:x="443422" fg:w="46"/><text x="98.3833%" y="655.50"></text></g><g><title>native_write_msr (46 samples, 0.01%)</title><rect x="98.1333%" y="629" width="0.0102%" height="15" fill="rgb(225,216,18)" fg:x="443422" fg:w="46"/><text x="98.3833%" y="639.50"></text></g><g><title>finish_task_switch (51 samples, 0.01%)</title><rect x="98.1326%" y="677" width="0.0113%" height="15" fill="rgb(233,36,38)" fg:x="443419" fg:w="51"/><text x="98.3826%" y="687.50"></text></g><g><title>schedule (83 samples, 0.02%)</title><rect x="98.1293%" y="709" width="0.0184%" height="15" fill="rgb(239,88,23)" fg:x="443404" fg:w="83"/><text x="98.3793%" y="719.50"></text></g><g><title>__schedule (83 samples, 0.02%)</title><rect x="98.1293%" y="693" width="0.0184%" height="15" fill="rgb(219,181,35)" fg:x="443404" fg:w="83"/><text x="98.3793%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (443 samples, 0.10%)</title><rect x="98.0507%" y="757" width="0.0980%" height="15" fill="rgb(215,18,46)" fg:x="443049" fg:w="443"/><text x="98.3007%" y="767.50"></text></g><g><title>syscall_exit_to_user_mode (89 samples, 0.02%)</title><rect x="98.1291%" y="741" width="0.0197%" height="15" fill="rgb(241,38,11)" fg:x="443403" fg:w="89"/><text x="98.3791%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (89 samples, 0.02%)</title><rect x="98.1291%" y="725" width="0.0197%" height="15" fill="rgb(248,169,45)" fg:x="443403" fg:w="89"/><text x="98.3791%" y="735.50"></text></g><g><title>__pthread_cond_signal (465 samples, 0.10%)</title><rect x="98.0465%" y="789" width="0.1029%" height="15" fill="rgb(239,50,49)" fg:x="443030" fg:w="465"/><text x="98.2965%" y="799.50"></text></g><g><title>futex_wake (458 samples, 0.10%)</title><rect x="98.0481%" y="773" width="0.1014%" height="15" fill="rgb(231,96,31)" fg:x="443037" fg:w="458"/><text x="98.2981%" y="783.50"></text></g><g><title>Unsafe_Unpark (544 samples, 0.12%)</title><rect x="98.0321%" y="805" width="0.1204%" height="15" fill="rgb(224,193,37)" fg:x="442965" fg:w="544"/><text x="98.2821%" y="815.50"></text></g><g><title>__list_del_entry_valid (51 samples, 0.01%)</title><rect x="98.2572%" y="693" width="0.0113%" height="15" fill="rgb(227,153,50)" fg:x="443982" fg:w="51"/><text x="98.5072%" y="703.50"></text></g><g><title>kernel_init_free_pages (137 samples, 0.03%)</title><rect x="98.2714%" y="677" width="0.0303%" height="15" fill="rgb(249,228,3)" fg:x="444046" fg:w="137"/><text x="98.5214%" y="687.50"></text></g><g><title>clear_page_erms (131 samples, 0.03%)</title><rect x="98.2727%" y="661" width="0.0290%" height="15" fill="rgb(219,164,43)" fg:x="444052" fg:w="131"/><text x="98.5227%" y="671.50"></text></g><g><title>prep_new_page (150 samples, 0.03%)</title><rect x="98.2694%" y="693" width="0.0332%" height="15" fill="rgb(216,45,41)" fg:x="444037" fg:w="150"/><text x="98.5194%" y="703.50"></text></g><g><title>get_page_from_freelist (264 samples, 0.06%)</title><rect x="98.2444%" y="709" width="0.0584%" height="15" fill="rgb(210,226,51)" fg:x="443924" fg:w="264"/><text x="98.4944%" y="719.50"></text></g><g><title>__alloc_pages_nodemask (333 samples, 0.07%)</title><rect x="98.2297%" y="725" width="0.0737%" height="15" fill="rgb(209,117,49)" fg:x="443858" fg:w="333"/><text x="98.4797%" y="735.50"></text></g><g><title>alloc_pages_vma (358 samples, 0.08%)</title><rect x="98.2260%" y="741" width="0.0792%" height="15" fill="rgb(206,196,24)" fg:x="443841" fg:w="358"/><text x="98.4760%" y="751.50"></text></g><g><title>__pagevec_lru_add_fn (65 samples, 0.01%)</title><rect x="98.3196%" y="709" width="0.0144%" height="15" fill="rgb(253,218,3)" fg:x="444264" fg:w="65"/><text x="98.5696%" y="719.50"></text></g><g><title>lru_cache_add (95 samples, 0.02%)</title><rect x="98.3152%" y="741" width="0.0210%" height="15" fill="rgb(252,166,2)" fg:x="444244" fg:w="95"/><text x="98.5652%" y="751.50"></text></g><g><title>pagevec_lru_move_fn (87 samples, 0.02%)</title><rect x="98.3169%" y="725" width="0.0193%" height="15" fill="rgb(236,218,26)" fg:x="444252" fg:w="87"/><text x="98.5669%" y="735.50"></text></g><g><title>mem_cgroup_charge (104 samples, 0.02%)</title><rect x="98.3369%" y="741" width="0.0230%" height="15" fill="rgb(254,84,19)" fg:x="444342" fg:w="104"/><text x="98.5869%" y="751.50"></text></g><g><title>page_add_new_anon_rmap (50 samples, 0.01%)</title><rect x="98.3630%" y="741" width="0.0111%" height="15" fill="rgb(219,137,29)" fg:x="444460" fg:w="50"/><text x="98.6130%" y="751.50"></text></g><g><title>handle_mm_fault (839 samples, 0.19%)</title><rect x="98.1910%" y="757" width="0.1857%" height="15" fill="rgb(227,47,52)" fg:x="443683" fg:w="839"/><text x="98.4410%" y="767.50"></text></g><g><title>exc_page_fault (936 samples, 0.21%)</title><rect x="98.1722%" y="789" width="0.2071%" height="15" fill="rgb(229,167,24)" fg:x="443598" fg:w="936"/><text x="98.4222%" y="799.50"></text></g><g><title>do_user_addr_fault (915 samples, 0.20%)</title><rect x="98.1769%" y="773" width="0.2025%" height="15" fill="rgb(233,164,1)" fg:x="443619" fg:w="915"/><text x="98.4269%" y="783.50"></text></g><g><title>asm_exc_page_fault (963 samples, 0.21%)</title><rect x="98.1702%" y="805" width="0.2131%" height="15" fill="rgb(218,88,48)" fg:x="443589" fg:w="963"/><text x="98.4202%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (174 samples, 0.04%)</title><rect x="98.3862%" y="709" width="0.0385%" height="15" fill="rgb(226,214,24)" fg:x="444565" fg:w="174"/><text x="98.6362%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (171 samples, 0.04%)</title><rect x="98.3869%" y="693" width="0.0378%" height="15" fill="rgb(233,29,12)" fg:x="444568" fg:w="171"/><text x="98.6369%" y="703.50"></text></g><g><title>native_write_msr (171 samples, 0.04%)</title><rect x="98.3869%" y="677" width="0.0378%" height="15" fill="rgb(219,120,34)" fg:x="444568" fg:w="171"/><text x="98.6369%" y="687.50"></text></g><g><title>finish_task_switch (184 samples, 0.04%)</title><rect x="98.3856%" y="725" width="0.0407%" height="15" fill="rgb(226,78,44)" fg:x="444562" fg:w="184"/><text x="98.6356%" y="735.50"></text></g><g><title>schedule (199 samples, 0.04%)</title><rect x="98.3840%" y="757" width="0.0440%" height="15" fill="rgb(240,15,48)" fg:x="444555" fg:w="199"/><text x="98.6340%" y="767.50"></text></g><g><title>__schedule (199 samples, 0.04%)</title><rect x="98.3840%" y="741" width="0.0440%" height="15" fill="rgb(253,176,7)" fg:x="444555" fg:w="199"/><text x="98.6340%" y="751.50"></text></g><g><title>irqentry_exit_to_user_mode (204 samples, 0.05%)</title><rect x="98.3833%" y="789" width="0.0451%" height="15" fill="rgb(206,166,28)" fg:x="444552" fg:w="204"/><text x="98.6333%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (203 samples, 0.04%)</title><rect x="98.3836%" y="773" width="0.0449%" height="15" fill="rgb(241,53,51)" fg:x="444553" fg:w="203"/><text x="98.6336%" y="783.50"></text></g><g><title>task_tick_fair (63 samples, 0.01%)</title><rect x="98.4528%" y="661" width="0.0139%" height="15" fill="rgb(249,112,30)" fg:x="444866" fg:w="63"/><text x="98.7028%" y="671.50"></text></g><g><title>scheduler_tick (91 samples, 0.02%)</title><rect x="98.4471%" y="677" width="0.0201%" height="15" fill="rgb(217,85,30)" fg:x="444840" fg:w="91"/><text x="98.6971%" y="687.50"></text></g><g><title>tick_sched_handle (136 samples, 0.03%)</title><rect x="98.4373%" y="709" width="0.0301%" height="15" fill="rgb(233,49,7)" fg:x="444796" fg:w="136"/><text x="98.6873%" y="719.50"></text></g><g><title>update_process_times (131 samples, 0.03%)</title><rect x="98.4384%" y="693" width="0.0290%" height="15" fill="rgb(234,109,9)" fg:x="444801" fg:w="131"/><text x="98.6884%" y="703.50"></text></g><g><title>tick_sched_timer (161 samples, 0.04%)</title><rect x="98.4353%" y="725" width="0.0356%" height="15" fill="rgb(253,95,22)" fg:x="444787" fg:w="161"/><text x="98.6853%" y="735.50"></text></g><g><title>__hrtimer_run_queues (184 samples, 0.04%)</title><rect x="98.4325%" y="741" width="0.0407%" height="15" fill="rgb(233,176,25)" fg:x="444774" fg:w="184"/><text x="98.6825%" y="751.50"></text></g><g><title>hrtimer_interrupt (216 samples, 0.05%)</title><rect x="98.4298%" y="757" width="0.0478%" height="15" fill="rgb(236,33,39)" fg:x="444762" fg:w="216"/><text x="98.6798%" y="767.50"></text></g><g><title>__sysvec_apic_timer_interrupt (223 samples, 0.05%)</title><rect x="98.4287%" y="773" width="0.0494%" height="15" fill="rgb(223,226,42)" fg:x="444757" fg:w="223"/><text x="98.6787%" y="783.50"></text></g><g><title>rcu_core (95 samples, 0.02%)</title><rect x="98.4803%" y="709" width="0.0210%" height="15" fill="rgb(216,99,33)" fg:x="444990" fg:w="95"/><text x="98.7303%" y="719.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (579 samples, 0.13%)</title><rect x="98.3833%" y="805" width="0.1281%" height="15" fill="rgb(235,84,23)" fg:x="444552" fg:w="579"/><text x="98.6333%" y="815.50"></text></g><g><title>sysvec_apic_timer_interrupt (375 samples, 0.08%)</title><rect x="98.4285%" y="789" width="0.0830%" height="15" fill="rgb(232,2,27)" fg:x="444756" fg:w="375"/><text x="98.6785%" y="799.50"></text></g><g><title>irq_exit_rcu (150 samples, 0.03%)</title><rect x="98.4783%" y="773" width="0.0332%" height="15" fill="rgb(241,23,22)" fg:x="444981" fg:w="150"/><text x="98.7283%" y="783.50"></text></g><g><title>do_softirq_own_stack (144 samples, 0.03%)</title><rect x="98.4796%" y="757" width="0.0319%" height="15" fill="rgb(211,73,27)" fg:x="444987" fg:w="144"/><text x="98.7296%" y="767.50"></text></g><g><title>asm_call_sysvec_on_stack (144 samples, 0.03%)</title><rect x="98.4796%" y="741" width="0.0319%" height="15" fill="rgb(235,109,49)" fg:x="444987" fg:w="144"/><text x="98.7296%" y="751.50"></text></g><g><title>__softirqentry_text_start (143 samples, 0.03%)</title><rect x="98.4798%" y="725" width="0.0316%" height="15" fill="rgb(230,99,29)" fg:x="444988" fg:w="143"/><text x="98.7298%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (241 samples, 0.05%)</title><rect x="98.5259%" y="709" width="0.0533%" height="15" fill="rgb(245,199,7)" fg:x="445196" fg:w="241"/><text x="98.7759%" y="719.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (239 samples, 0.05%)</title><rect x="98.5263%" y="693" width="0.0529%" height="15" fill="rgb(217,179,10)" fg:x="445198" fg:w="239"/><text x="98.7763%" y="703.50"></text></g><g><title>native_write_msr (237 samples, 0.05%)</title><rect x="98.5267%" y="677" width="0.0525%" height="15" fill="rgb(254,99,47)" fg:x="445200" fg:w="237"/><text x="98.7767%" y="687.50"></text></g><g><title>finish_task_switch (257 samples, 0.06%)</title><rect x="98.5248%" y="725" width="0.0569%" height="15" fill="rgb(251,121,7)" fg:x="445191" fg:w="257"/><text x="98.7748%" y="735.50"></text></g><g><title>schedule (328 samples, 0.07%)</title><rect x="98.5190%" y="757" width="0.0726%" height="15" fill="rgb(250,177,26)" fg:x="445165" fg:w="328"/><text x="98.7690%" y="767.50"></text></g><g><title>__schedule (326 samples, 0.07%)</title><rect x="98.5194%" y="741" width="0.0721%" height="15" fill="rgb(232,88,15)" fg:x="445167" fg:w="326"/><text x="98.7694%" y="751.50"></text></g><g><title>irqentry_exit_to_user_mode (337 samples, 0.07%)</title><rect x="98.5177%" y="789" width="0.0746%" height="15" fill="rgb(251,54,54)" fg:x="445159" fg:w="337"/><text x="98.7677%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (337 samples, 0.07%)</title><rect x="98.5177%" y="773" width="0.0746%" height="15" fill="rgb(208,177,15)" fg:x="445159" fg:w="337"/><text x="98.7677%" y="783.50"></text></g><g><title>asm_sysvec_reschedule_ipi (345 samples, 0.08%)</title><rect x="98.5177%" y="805" width="0.0764%" height="15" fill="rgb(205,97,32)" fg:x="445159" fg:w="345"/><text x="98.7677%" y="815.50"></text></g><g><title>__sysvec_thermal (113 samples, 0.03%)</title><rect x="98.5942%" y="773" width="0.0250%" height="15" fill="rgb(217,192,13)" fg:x="445505" fg:w="113"/><text x="98.8442%" y="783.50"></text></g><g><title>intel_thermal_interrupt (111 samples, 0.02%)</title><rect x="98.5947%" y="757" width="0.0246%" height="15" fill="rgb(215,163,41)" fg:x="445507" fg:w="111"/><text x="98.8447%" y="767.50"></text></g><g><title>asm_sysvec_thermal (119 samples, 0.03%)</title><rect x="98.5940%" y="805" width="0.0263%" height="15" fill="rgb(246,83,29)" fg:x="445504" fg:w="119"/><text x="98.8440%" y="815.50"></text></g><g><title>sysvec_thermal (118 samples, 0.03%)</title><rect x="98.5942%" y="789" width="0.0261%" height="15" fill="rgb(219,2,45)" fg:x="445505" fg:w="118"/><text x="98.8442%" y="799.50"></text></g><g><title>error_entry (114 samples, 0.03%)</title><rect x="98.6221%" y="805" width="0.0252%" height="15" fill="rgb(242,215,33)" fg:x="445631" fg:w="114"/><text x="98.8721%" y="815.50"></text></g><g><title>sync_regs (104 samples, 0.02%)</title><rect x="98.6243%" y="789" width="0.0230%" height="15" fill="rgb(217,1,6)" fg:x="445641" fg:w="104"/><text x="98.8743%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.02%)</title><rect x="98.6496%" y="773" width="0.0173%" height="15" fill="rgb(207,85,52)" fg:x="445755" fg:w="78"/><text x="98.8996%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (56 samples, 0.01%)</title><rect x="98.6544%" y="757" width="0.0124%" height="15" fill="rgb(231,171,19)" fg:x="445777" fg:w="56"/><text x="98.9044%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (56 samples, 0.01%)</title><rect x="98.6544%" y="741" width="0.0124%" height="15" fill="rgb(207,128,4)" fg:x="445777" fg:w="56"/><text x="98.9044%" y="751.50"></text></g><g><title>task_work_run (47 samples, 0.01%)</title><rect x="98.6564%" y="725" width="0.0104%" height="15" fill="rgb(219,208,4)" fg:x="445786" fg:w="47"/><text x="98.9064%" y="735.50"></text></g><g><title>__close (81 samples, 0.02%)</title><rect x="98.6491%" y="789" width="0.0179%" height="15" fill="rgb(235,161,42)" fg:x="445753" fg:w="81"/><text x="98.8991%" y="799.50"></text></g><g><title>fileDescriptorClose (97 samples, 0.02%)</title><rect x="98.6482%" y="805" width="0.0215%" height="15" fill="rgb(247,218,18)" fg:x="445749" fg:w="97"/><text x="98.8982%" y="815.50"></text></g><g><title>JNU_GetStringPlatformChars (84 samples, 0.02%)</title><rect x="98.6706%" y="789" width="0.0186%" height="15" fill="rgb(232,114,51)" fg:x="445850" fg:w="84"/><text x="98.9206%" y="799.50"></text></g><g><title>__GI___fxstat (51 samples, 0.01%)</title><rect x="98.6905%" y="789" width="0.0113%" height="15" fill="rgb(222,95,3)" fg:x="445940" fg:w="51"/><text x="98.9405%" y="799.50"></text></g><g><title>kmem_cache_alloc (53 samples, 0.01%)</title><rect x="98.7140%" y="645" width="0.0117%" height="15" fill="rgb(240,65,29)" fg:x="446046" fg:w="53"/><text x="98.9640%" y="655.50"></text></g><g><title>__alloc_file (73 samples, 0.02%)</title><rect x="98.7131%" y="661" width="0.0162%" height="15" fill="rgb(249,209,20)" fg:x="446042" fg:w="73"/><text x="98.9631%" y="671.50"></text></g><g><title>alloc_empty_file (80 samples, 0.02%)</title><rect x="98.7122%" y="677" width="0.0177%" height="15" fill="rgb(241,48,37)" fg:x="446038" fg:w="80"/><text x="98.9622%" y="687.50"></text></g><g><title>do_dentry_open (58 samples, 0.01%)</title><rect x="98.7346%" y="677" width="0.0128%" height="15" fill="rgb(230,140,42)" fg:x="446139" fg:w="58"/><text x="98.9846%" y="687.50"></text></g><g><title>link_path_walk.part.0 (98 samples, 0.02%)</title><rect x="98.7474%" y="677" width="0.0217%" height="15" fill="rgb(230,176,45)" fg:x="446197" fg:w="98"/><text x="98.9974%" y="687.50"></text></g><g><title>walk_component (47 samples, 0.01%)</title><rect x="98.7587%" y="661" width="0.0104%" height="15" fill="rgb(245,112,21)" fg:x="446248" fg:w="47"/><text x="99.0087%" y="671.50"></text></g><g><title>do_filp_open (294 samples, 0.07%)</title><rect x="98.7102%" y="709" width="0.0651%" height="15" fill="rgb(207,183,35)" fg:x="446029" fg:w="294"/><text x="98.9602%" y="719.50"></text></g><g><title>path_openat (290 samples, 0.06%)</title><rect x="98.7111%" y="693" width="0.0642%" height="15" fill="rgb(227,44,33)" fg:x="446033" fg:w="290"/><text x="98.9611%" y="703.50"></text></g><g><title>__x64_sys_openat (350 samples, 0.08%)</title><rect x="98.7060%" y="741" width="0.0775%" height="15" fill="rgb(246,120,21)" fg:x="446010" fg:w="350"/><text x="98.9560%" y="751.50"></text></g><g><title>do_sys_openat2 (348 samples, 0.08%)</title><rect x="98.7064%" y="725" width="0.0770%" height="15" fill="rgb(235,57,52)" fg:x="446012" fg:w="348"/><text x="98.9564%" y="735.50"></text></g><g><title>do_syscall_64 (354 samples, 0.08%)</title><rect x="98.7053%" y="757" width="0.0783%" height="15" fill="rgb(238,84,10)" fg:x="446007" fg:w="354"/><text x="98.9553%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (358 samples, 0.08%)</title><rect x="98.7051%" y="773" width="0.0792%" height="15" fill="rgb(251,200,32)" fg:x="446006" fg:w="358"/><text x="98.9551%" y="783.50"></text></g><g><title>__libc_open64 (371 samples, 0.08%)</title><rect x="98.7029%" y="789" width="0.0821%" height="15" fill="rgb(247,159,13)" fg:x="445996" fg:w="371"/><text x="98.9529%" y="799.50"></text></g><g><title>fileOpen (552 samples, 0.12%)</title><rect x="98.6697%" y="805" width="0.1222%" height="15" fill="rgb(238,64,4)" fg:x="445846" fg:w="552"/><text x="98.9197%" y="815.50"></text></g><g><title>jni_IsAssignableFrom (78 samples, 0.02%)</title><rect x="98.7970%" y="805" width="0.0173%" height="15" fill="rgb(221,131,51)" fg:x="446421" fg:w="78"/><text x="99.0470%" y="815.50"></text></g><g><title>os::javaTimeNanos (637 samples, 0.14%)</title><rect x="98.8149%" y="805" width="0.1410%" height="15" fill="rgb(242,5,29)" fg:x="446502" fg:w="637"/><text x="99.0649%" y="815.50"></text></g><g><title>__GI___clock_gettime (559 samples, 0.12%)</title><rect x="98.8322%" y="789" width="0.1237%" height="15" fill="rgb(214,130,32)" fg:x="446580" fg:w="559"/><text x="99.0822%" y="799.50"></text></g><g><title>__vdso_clock_gettime (407 samples, 0.09%)</title><rect x="98.8658%" y="773" width="0.0901%" height="15" fill="rgb(244,210,16)" fg:x="446732" fg:w="407"/><text x="99.1158%" y="783.50"></text></g><g><title>[[vdso]] (247 samples, 0.05%)</title><rect x="98.9012%" y="757" width="0.0547%" height="15" fill="rgb(234,48,26)" fg:x="446892" fg:w="247"/><text x="99.1512%" y="767.50"></text></g><g><title>[perf-42779.map] (162,089 samples, 35.87%)</title><rect x="63.0859%" y="821" width="35.8717%" height="15" fill="rgb(231,82,38)" fg:x="285058" fg:w="162089"/><text x="63.3359%" y="831.50">[perf-42779.map]</text></g><g><title>Deoptimization::fetch_unroll_info_helper (59 samples, 0.01%)</title><rect x="98.9610%" y="805" width="0.0131%" height="15" fill="rgb(254,128,41)" fg:x="447162" fg:w="59"/><text x="99.2110%" y="815.50"></text></g><g><title>LinkResolver::resolve_method_statically (51 samples, 0.01%)</title><rect x="99.0406%" y="757" width="0.0113%" height="15" fill="rgb(212,73,49)" fg:x="447522" fg:w="51"/><text x="99.2906%" y="767.50"></text></g><g><title>Bytecode_invoke::static_target (54 samples, 0.01%)</title><rect x="99.0406%" y="773" width="0.0120%" height="15" fill="rgb(205,62,54)" fg:x="447522" fg:w="54"/><text x="99.2906%" y="783.50"></text></g><g><title>frame::sender (66 samples, 0.01%)</title><rect x="99.0692%" y="773" width="0.0146%" height="15" fill="rgb(228,0,8)" fg:x="447651" fg:w="66"/><text x="99.3192%" y="783.50"></text></g><g><title>OopMapSet::update_register_map (63 samples, 0.01%)</title><rect x="99.0698%" y="757" width="0.0139%" height="15" fill="rgb(251,28,17)" fg:x="447654" fg:w="63"/><text x="99.3198%" y="767.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (203 samples, 0.04%)</title><rect x="99.0391%" y="789" width="0.0449%" height="15" fill="rgb(238,105,27)" fg:x="447515" fg:w="203"/><text x="99.2891%" y="799.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (334 samples, 0.07%)</title><rect x="99.0134%" y="805" width="0.0739%" height="15" fill="rgb(237,216,33)" fg:x="447399" fg:w="334"/><text x="99.2634%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (243 samples, 0.05%)</title><rect x="99.0948%" y="533" width="0.0538%" height="15" fill="rgb(229,228,25)" fg:x="447767" fg:w="243"/><text x="99.3448%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (241 samples, 0.05%)</title><rect x="99.0953%" y="517" width="0.0533%" height="15" fill="rgb(233,75,23)" fg:x="447769" fg:w="241"/><text x="99.3453%" y="527.50"></text></g><g><title>native_write_msr (237 samples, 0.05%)</title><rect x="99.0962%" y="501" width="0.0525%" height="15" fill="rgb(231,207,16)" fg:x="447773" fg:w="237"/><text x="99.3462%" y="511.50"></text></g><g><title>finish_task_switch (254 samples, 0.06%)</title><rect x="99.0935%" y="549" width="0.0562%" height="15" fill="rgb(231,191,45)" fg:x="447761" fg:w="254"/><text x="99.3435%" y="559.50"></text></g><g><title>do_syscall_64 (265 samples, 0.06%)</title><rect x="99.0920%" y="661" width="0.0586%" height="15" fill="rgb(224,133,17)" fg:x="447754" fg:w="265"/><text x="99.3420%" y="671.50"></text></g><g><title>__x64_sys_futex (265 samples, 0.06%)</title><rect x="99.0920%" y="645" width="0.0586%" height="15" fill="rgb(209,178,27)" fg:x="447754" fg:w="265"/><text x="99.3420%" y="655.50"></text></g><g><title>do_futex (264 samples, 0.06%)</title><rect x="99.0922%" y="629" width="0.0584%" height="15" fill="rgb(218,37,11)" fg:x="447755" fg:w="264"/><text x="99.3422%" y="639.50"></text></g><g><title>futex_wait (263 samples, 0.06%)</title><rect x="99.0924%" y="613" width="0.0582%" height="15" fill="rgb(251,226,25)" fg:x="447756" fg:w="263"/><text x="99.3424%" y="623.50"></text></g><g><title>futex_wait_queue_me (263 samples, 0.06%)</title><rect x="99.0924%" y="597" width="0.0582%" height="15" fill="rgb(209,222,27)" fg:x="447756" fg:w="263"/><text x="99.3424%" y="607.50"></text></g><g><title>schedule (262 samples, 0.06%)</title><rect x="99.0926%" y="581" width="0.0580%" height="15" fill="rgb(238,22,21)" fg:x="447757" fg:w="262"/><text x="99.3426%" y="591.50"></text></g><g><title>__schedule (262 samples, 0.06%)</title><rect x="99.0926%" y="565" width="0.0580%" height="15" fill="rgb(233,161,25)" fg:x="447757" fg:w="262"/><text x="99.3426%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (271 samples, 0.06%)</title><rect x="99.0920%" y="677" width="0.0600%" height="15" fill="rgb(226,122,53)" fg:x="447754" fg:w="271"/><text x="99.3420%" y="687.50"></text></g><g><title>__pthread_cond_wait (279 samples, 0.06%)</title><rect x="99.0904%" y="725" width="0.0617%" height="15" fill="rgb(220,123,17)" fg:x="447747" fg:w="279"/><text x="99.3404%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (279 samples, 0.06%)</title><rect x="99.0904%" y="709" width="0.0617%" height="15" fill="rgb(230,224,35)" fg:x="447747" fg:w="279"/><text x="99.3404%" y="719.50"></text></g><g><title>futex_wait_cancelable (275 samples, 0.06%)</title><rect x="99.0913%" y="693" width="0.0609%" height="15" fill="rgb(246,83,8)" fg:x="447751" fg:w="275"/><text x="99.3413%" y="703.50"></text></g><g><title>Monitor::ILock (289 samples, 0.06%)</title><rect x="99.0886%" y="757" width="0.0640%" height="15" fill="rgb(230,214,17)" fg:x="447739" fg:w="289"/><text x="99.3386%" y="767.50"></text></g><g><title>os::PlatformEvent::park (283 samples, 0.06%)</title><rect x="99.0900%" y="741" width="0.0626%" height="15" fill="rgb(222,97,18)" fg:x="447745" fg:w="283"/><text x="99.3400%" y="751.50"></text></g><g><title>Monitor::lock_without_safepoint_check (291 samples, 0.06%)</title><rect x="99.0886%" y="773" width="0.0644%" height="15" fill="rgb(206,79,1)" fg:x="447739" fg:w="291"/><text x="99.3386%" y="783.50"></text></g><g><title>SafepointSynchronize::block (326 samples, 0.07%)</title><rect x="99.0882%" y="789" width="0.0721%" height="15" fill="rgb(214,121,34)" fg:x="447737" fg:w="326"/><text x="99.3382%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (328 samples, 0.07%)</title><rect x="99.0880%" y="805" width="0.0726%" height="15" fill="rgb(249,199,46)" fg:x="447736" fg:w="328"/><text x="99.3380%" y="815.50"></text></g><g><title>__GI___clock_gettime (121 samples, 0.03%)</title><rect x="99.1646%" y="805" width="0.0268%" height="15" fill="rgb(214,222,46)" fg:x="448082" fg:w="121"/><text x="99.4146%" y="815.50"></text></g><g><title>__fdget_pos (75 samples, 0.02%)</title><rect x="99.2639%" y="693" width="0.0166%" height="15" fill="rgb(248,168,30)" fg:x="448531" fg:w="75"/><text x="99.5139%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (554 samples, 0.12%)</title><rect x="99.3341%" y="629" width="0.1226%" height="15" fill="rgb(226,14,28)" fg:x="448848" fg:w="554"/><text x="99.5841%" y="639.50"></text></g><g><title>copy_page_to_iter (615 samples, 0.14%)</title><rect x="99.3221%" y="645" width="0.1361%" height="15" fill="rgb(253,123,1)" fg:x="448794" fg:w="615"/><text x="99.5721%" y="655.50"></text></g><g><title>add_to_page_cache_lru (90 samples, 0.02%)</title><rect x="99.4711%" y="629" width="0.0199%" height="15" fill="rgb(225,24,42)" fg:x="449467" fg:w="90"/><text x="99.7211%" y="639.50"></text></g><g><title>read_pages (139 samples, 0.03%)</title><rect x="99.4917%" y="629" width="0.0308%" height="15" fill="rgb(216,161,37)" fg:x="449560" fg:w="139"/><text x="99.7417%" y="639.50"></text></g><g><title>extent_readahead (121 samples, 0.03%)</title><rect x="99.4956%" y="613" width="0.0268%" height="15" fill="rgb(251,164,26)" fg:x="449578" fg:w="121"/><text x="99.7456%" y="623.50"></text></g><g><title>submit_one_bio (63 samples, 0.01%)</title><rect x="99.5085%" y="597" width="0.0139%" height="15" fill="rgb(219,177,3)" fg:x="449636" fg:w="63"/><text x="99.7585%" y="607.50"></text></g><g><title>btrfs_submit_data_bio (63 samples, 0.01%)</title><rect x="99.5085%" y="581" width="0.0139%" height="15" fill="rgb(222,65,0)" fg:x="449636" fg:w="63"/><text x="99.7585%" y="591.50"></text></g><g><title>page_cache_ra_unbounded (276 samples, 0.06%)</title><rect x="99.4618%" y="645" width="0.0611%" height="15" fill="rgb(223,69,54)" fg:x="449425" fg:w="276"/><text x="99.7118%" y="655.50"></text></g><g><title>pagecache_get_page (176 samples, 0.04%)</title><rect x="99.5231%" y="645" width="0.0390%" height="15" fill="rgb(235,30,27)" fg:x="449702" fg:w="176"/><text x="99.7731%" y="655.50"></text></g><g><title>find_get_entry (154 samples, 0.03%)</title><rect x="99.5279%" y="629" width="0.0341%" height="15" fill="rgb(220,183,50)" fg:x="449724" fg:w="154"/><text x="99.7779%" y="639.50"></text></g><g><title>xas_load (75 samples, 0.02%)</title><rect x="99.5454%" y="613" width="0.0166%" height="15" fill="rgb(248,198,15)" fg:x="449803" fg:w="75"/><text x="99.7954%" y="623.50"></text></g><g><title>touch_atime (53 samples, 0.01%)</title><rect x="99.5620%" y="645" width="0.0117%" height="15" fill="rgb(222,211,4)" fg:x="449878" fg:w="53"/><text x="99.8120%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.01%)</title><rect x="99.5766%" y="565" width="0.0115%" height="15" fill="rgb(214,102,34)" fg:x="449944" fg:w="52"/><text x="99.8266%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (52 samples, 0.01%)</title><rect x="99.5766%" y="549" width="0.0115%" height="15" fill="rgb(245,92,5)" fg:x="449944" fg:w="52"/><text x="99.8266%" y="559.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="99.5766%" y="533" width="0.0115%" height="15" fill="rgb(252,72,51)" fg:x="449944" fg:w="52"/><text x="99.8266%" y="543.50"></text></g><g><title>finish_task_switch (56 samples, 0.01%)</title><rect x="99.5764%" y="581" width="0.0124%" height="15" fill="rgb(252,208,19)" fg:x="449943" fg:w="56"/><text x="99.8264%" y="591.50"></text></g><g><title>wait_on_page_bit_common (85 samples, 0.02%)</title><rect x="99.5738%" y="645" width="0.0188%" height="15" fill="rgb(211,69,7)" fg:x="449931" fg:w="85"/><text x="99.8238%" y="655.50"></text></g><g><title>io_schedule (81 samples, 0.02%)</title><rect x="99.5746%" y="629" width="0.0179%" height="15" fill="rgb(211,27,16)" fg:x="449935" fg:w="81"/><text x="99.8246%" y="639.50"></text></g><g><title>schedule (81 samples, 0.02%)</title><rect x="99.5746%" y="613" width="0.0179%" height="15" fill="rgb(219,216,14)" fg:x="449935" fg:w="81"/><text x="99.8246%" y="623.50"></text></g><g><title>__schedule (81 samples, 0.02%)</title><rect x="99.5746%" y="597" width="0.0179%" height="15" fill="rgb(219,71,8)" fg:x="449935" fg:w="81"/><text x="99.8246%" y="607.50"></text></g><g><title>generic_file_buffered_read (1,305 samples, 0.29%)</title><rect x="99.3042%" y="661" width="0.2888%" height="15" fill="rgb(223,170,53)" fg:x="448713" fg:w="1305"/><text x="99.5542%" y="671.50"></text></g><g><title>new_sync_read (1,324 samples, 0.29%)</title><rect x="99.3002%" y="677" width="0.2930%" height="15" fill="rgb(246,21,26)" fg:x="448695" fg:w="1324"/><text x="99.5502%" y="687.50"></text></g><g><title>ksys_read (1,551 samples, 0.34%)</title><rect x="99.2622%" y="709" width="0.3433%" height="15" fill="rgb(248,20,46)" fg:x="448523" fg:w="1551"/><text x="99.5122%" y="719.50"></text></g><g><title>vfs_read (1,449 samples, 0.32%)</title><rect x="99.2847%" y="693" width="0.3207%" height="15" fill="rgb(252,94,11)" fg:x="448625" fg:w="1449"/><text x="99.5347%" y="703.50"></text></g><g><title>security_file_permission (49 samples, 0.01%)</title><rect x="99.5946%" y="677" width="0.0108%" height="15" fill="rgb(236,163,8)" fg:x="450025" fg:w="49"/><text x="99.8446%" y="687.50"></text></g><g><title>do_syscall_64 (1,570 samples, 0.35%)</title><rect x="99.2602%" y="725" width="0.3475%" height="15" fill="rgb(217,221,45)" fg:x="448514" fg:w="1570"/><text x="99.5102%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,601 samples, 0.35%)</title><rect x="99.2580%" y="741" width="0.3543%" height="15" fill="rgb(238,38,17)" fg:x="448504" fg:w="1601"/><text x="99.5080%" y="751.50"></text></g><g><title>__libc_read (1,690 samples, 0.37%)</title><rect x="99.2416%" y="773" width="0.3740%" height="15" fill="rgb(242,210,23)" fg:x="448430" fg:w="1690"/><text x="99.4916%" y="783.50"></text></g><g><title>__libc_read (1,688 samples, 0.37%)</title><rect x="99.2420%" y="757" width="0.3736%" height="15" fill="rgb(250,86,53)" fg:x="448432" fg:w="1688"/><text x="99.4920%" y="767.50"></text></g><g><title>handleRead (1,700 samples, 0.38%)</title><rect x="99.2409%" y="789" width="0.3762%" height="15" fill="rgb(223,168,25)" fg:x="448427" fg:w="1700"/><text x="99.4909%" y="799.50"></text></g><g><title>jni_GetArrayLength (52 samples, 0.01%)</title><rect x="99.6171%" y="789" width="0.0115%" height="15" fill="rgb(251,189,4)" fg:x="450127" fg:w="52"/><text x="99.8671%" y="799.50"></text></g><g><title>jni_GetObjectField (188 samples, 0.04%)</title><rect x="99.6286%" y="789" width="0.0416%" height="15" fill="rgb(245,19,28)" fg:x="450179" fg:w="188"/><text x="99.8786%" y="799.50"></text></g><g><title>[libc-2.31.so] (215 samples, 0.05%)</title><rect x="99.6862%" y="773" width="0.0476%" height="15" fill="rgb(207,10,34)" fg:x="450439" fg:w="215"/><text x="99.9362%" y="783.50"></text></g><g><title>readBytes (2,292 samples, 0.51%)</title><rect x="99.2318%" y="805" width="0.5072%" height="15" fill="rgb(235,153,31)" fg:x="448386" fg:w="2292"/><text x="99.4818%" y="815.50"></text></g><g><title>jni_SetByteArrayRegion (311 samples, 0.07%)</title><rect x="99.6702%" y="789" width="0.0688%" height="15" fill="rgb(228,72,37)" fg:x="450367" fg:w="311"/><text x="99.9202%" y="799.50"></text></g><g><title>[unknown] (3,562 samples, 0.79%)</title><rect x="98.9576%" y="821" width="0.7883%" height="15" fill="rgb(215,15,16)" fg:x="447147" fg:w="3562"/><text x="99.2076%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (176 samples, 0.04%)</title><rect x="99.7488%" y="757" width="0.0390%" height="15" fill="rgb(250,119,29)" fg:x="450722" fg:w="176"/><text x="99.9988%" y="767.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (174 samples, 0.04%)</title><rect x="99.7493%" y="741" width="0.0385%" height="15" fill="rgb(214,59,1)" fg:x="450724" fg:w="174"/><text x="99.9993%" y="751.50"></text></g><g><title>native_write_msr (173 samples, 0.04%)</title><rect x="99.7495%" y="725" width="0.0383%" height="15" fill="rgb(223,109,25)" fg:x="450725" fg:w="173"/><text x="99.9995%" y="735.50"></text></g><g><title>schedule_tail (186 samples, 0.04%)</title><rect x="99.7479%" y="789" width="0.0412%" height="15" fill="rgb(230,198,22)" fg:x="450718" fg:w="186"/><text x="99.9979%" y="799.50"></text></g><g><title>finish_task_switch (185 samples, 0.04%)</title><rect x="99.7482%" y="773" width="0.0409%" height="15" fill="rgb(245,184,46)" fg:x="450719" fg:w="185"/><text x="99.9982%" y="783.50"></text></g><g><title>ret_from_fork (189 samples, 0.04%)</title><rect x="99.7479%" y="805" width="0.0418%" height="15" fill="rgb(253,73,16)" fg:x="450718" fg:w="189"/><text x="99.9979%" y="815.50"></text></g><g><title>__GI___clone (289 samples, 0.06%)</title><rect x="99.7459%" y="821" width="0.0640%" height="15" fill="rgb(206,94,45)" fg:x="450709" fg:w="289"/><text x="99.9959%" y="831.50"></text></g><g><title>start_thread (91 samples, 0.02%)</title><rect x="99.7898%" y="805" width="0.0201%" height="15" fill="rgb(236,83,27)" fg:x="450907" fg:w="91"/><text x="100.0398%" y="815.50"></text></g><g><title>thread_native_entry (76 samples, 0.02%)</title><rect x="99.7931%" y="789" width="0.0168%" height="15" fill="rgb(220,196,8)" fg:x="450922" fg:w="76"/><text x="100.0431%" y="799.50"></text></g><g><title>asm_exc_page_fault (233 samples, 0.05%)</title><rect x="99.8207%" y="821" width="0.0516%" height="15" fill="rgb(254,185,14)" fg:x="451047" fg:w="233"/><text x="100.0707%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="99.8854%" y="821" width="0.0120%" height="15" fill="rgb(226,50,22)" fg:x="451339" fg:w="54"/><text x="100.1354%" y="831.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (201 samples, 0.04%)</title><rect x="99.8973%" y="821" width="0.0445%" height="15" fill="rgb(253,147,0)" fg:x="451393" fg:w="201"/><text x="100.1473%" y="831.50"></text></g><g><title>jni_GetStringLength (50 samples, 0.01%)</title><rect x="99.9449%" y="821" width="0.0111%" height="15" fill="rgb(252,46,33)" fg:x="451608" fg:w="50"/><text x="100.1949%" y="831.50"></text></g><g><title>skyframe-evalua (280,712 samples, 62.12%)</title><rect x="37.8423%" y="837" width="62.1241%" height="15" fill="rgb(242,22,54)" fg:x="170993" fg:w="280712"/><text x="38.0923%" y="847.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (46 samples, 0.01%)</title><rect x="99.9830%" y="581" width="0.0102%" height="15" fill="rgb(223,178,32)" fg:x="451780" fg:w="46"/><text x="100.2330%" y="591.50"></text></g><g><title>finish_task_switch (47 samples, 0.01%)</title><rect x="99.9830%" y="597" width="0.0104%" height="15" fill="rgb(214,106,53)" fg:x="451780" fg:w="47"/><text x="100.2330%" y="607.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="99.9827%" y="709" width="0.0108%" height="15" fill="rgb(232,65,50)" fg:x="451779" fg:w="49"/><text x="100.2327%" y="719.50"></text></g><g><title>__x64_sys_futex (49 samples, 0.01%)</title><rect x="99.9827%" y="693" width="0.0108%" height="15" fill="rgb(231,110,28)" fg:x="451779" fg:w="49"/><text x="100.2327%" y="703.50"></text></g><g><title>do_futex (49 samples, 0.01%)</title><rect x="99.9827%" y="677" width="0.0108%" height="15" fill="rgb(216,71,40)" fg:x="451779" fg:w="49"/><text x="100.2327%" y="687.50"></text></g><g><title>futex_wait (49 samples, 0.01%)</title><rect x="99.9827%" y="661" width="0.0108%" height="15" fill="rgb(229,89,53)" fg:x="451779" fg:w="49"/><text x="100.2327%" y="671.50"></text></g><g><title>futex_wait_queue_me (49 samples, 0.01%)</title><rect x="99.9827%" y="645" width="0.0108%" height="15" fill="rgb(210,124,14)" fg:x="451779" fg:w="49"/><text x="100.2327%" y="655.50"></text></g><g><title>schedule (48 samples, 0.01%)</title><rect x="99.9830%" y="629" width="0.0106%" height="15" fill="rgb(236,213,6)" fg:x="451780" fg:w="48"/><text x="100.2330%" y="639.50"></text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="99.9830%" y="613" width="0.0106%" height="15" fill="rgb(228,41,5)" fg:x="451780" fg:w="48"/><text x="100.2330%" y="623.50"></text></g><g><title>Unsafe_Park (60 samples, 0.01%)</title><rect x="99.9805%" y="805" width="0.0133%" height="15" fill="rgb(221,167,25)" fg:x="451769" fg:w="60"/><text x="100.2305%" y="815.50"></text></g><g><title>Parker::park (60 samples, 0.01%)</title><rect x="99.9805%" y="789" width="0.0133%" height="15" fill="rgb(228,144,37)" fg:x="451769" fg:w="60"/><text x="100.2305%" y="799.50"></text></g><g><title>__pthread_cond_wait (51 samples, 0.01%)</title><rect x="99.9825%" y="773" width="0.0113%" height="15" fill="rgb(227,189,38)" fg:x="451778" fg:w="51"/><text x="100.2325%" y="783.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.01%)</title><rect x="99.9825%" y="757" width="0.0113%" height="15" fill="rgb(218,8,2)" fg:x="451778" fg:w="51"/><text x="100.2325%" y="767.50"></text></g><g><title>futex_wait_cancelable (51 samples, 0.01%)</title><rect x="99.9825%" y="741" width="0.0113%" height="15" fill="rgb(209,61,28)" fg:x="451778" fg:w="51"/><text x="100.2325%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="99.9827%" y="725" width="0.0111%" height="15" fill="rgb(233,140,39)" fg:x="451779" fg:w="50"/><text x="100.2327%" y="735.50"></text></g><g><title>[perf-42779.map] (135 samples, 0.03%)</title><rect x="99.9670%" y="821" width="0.0299%" height="15" fill="rgb(251,66,48)" fg:x="451708" fg:w="135"/><text x="100.2170%" y="831.50"></text></g><g><title>all (451,857 samples, 100%)</title><rect x="0.0000%" y="853" width="100.0000%" height="15" fill="rgb(210,44,45)" fg:x="0" fg:w="451857"/><text x="0.2500%" y="863.50"></text></g><g><title>skyframe-invali (152 samples, 0.03%)</title><rect x="99.9664%" y="837" width="0.0336%" height="15" fill="rgb(214,136,46)" fg:x="451705" fg:w="152"/><text x="100.2164%" y="847.50"></text></g></svg></svg>