1
Fork 0
test-zig-cc/results/zigcc-nosandbox.svg

414 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="1030" onload="init(evt)" viewBox="0 0 1200 1030" 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:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { 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;
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");
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);
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.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
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();
if (!isEdge) {
svg.removeAttribute("viewBox");
}
}, 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 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 (/^ *\$/.test(txt) || 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;
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);
update_text(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);
update_text(e);
}
}
}
}
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(el[i]);
}
}
// 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="1030" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="1013.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="1013.00"> </text><svg id="frames" x="10" width="1180" total_samples="480308"><g><title>_dl_update_slotinfo (159 samples, 0.03%)</title><rect x="0.2888%" y="933" width="0.0331%" height="15" fill="rgb(227,0,7)" fg:x="1387" fg:w="159"/><text x="0.5388%" y="943.50"></text></g><g><title>update_get_addr (58 samples, 0.01%)</title><rect x="0.3731%" y="933" width="0.0121%" height="15" fill="rgb(217,0,24)" fg:x="1792" fg:w="58"/><text x="0.6231%" y="943.50"></text></g><g><title>[anon] (1,525 samples, 0.32%)</title><rect x="0.0679%" y="949" width="0.3175%" height="15" fill="rgb(221,193,54)" fg:x="326" fg:w="1525"/><text x="0.3179%" y="959.50"></text></g><g><title>[perf-712021.map] (157 samples, 0.03%)</title><rect x="0.3860%" y="949" width="0.0327%" height="15" fill="rgb(248,212,6)" fg:x="1854" fg:w="157"/><text x="0.6360%" y="959.50"></text></g><g><title>[unknown] (138 samples, 0.03%)</title><rect x="0.4187%" y="949" width="0.0287%" height="15" fill="rgb(208,68,35)" fg:x="2011" fg:w="138"/><text x="0.6687%" y="959.50"></text></g><g><title>jio_vsnprintf (54 samples, 0.01%)</title><rect x="0.4707%" y="805" width="0.0112%" height="15" fill="rgb(232,128,0)" fg:x="2261" fg:w="54"/><text x="0.7207%" y="815.50"></text></g><g><title>os::vsnprintf (54 samples, 0.01%)</title><rect x="0.4707%" y="789" width="0.0112%" height="15" fill="rgb(207,160,47)" fg:x="2261" fg:w="54"/><text x="0.7207%" y="799.50"></text></g><g><title>__vsnprintf_internal (54 samples, 0.01%)</title><rect x="0.4707%" y="773" width="0.0112%" height="15" fill="rgb(228,23,34)" fg:x="2261" fg:w="54"/><text x="0.7207%" y="783.50"></text></g><g><title>CompileBroker::post_compile (66 samples, 0.01%)</title><rect x="0.4689%" y="837" width="0.0137%" height="15" fill="rgb(218,30,26)" fg:x="2252" fg:w="66"/><text x="0.7189%" y="847.50"></text></g><g><title>StringEventLog::log (64 samples, 0.01%)</title><rect x="0.4693%" y="821" width="0.0133%" height="15" fill="rgb(220,122,19)" fg:x="2254" fg:w="64"/><text x="0.7193%" y="831.50"></text></g><g><title>Method::print_short_name (51 samples, 0.01%)</title><rect x="0.4874%" y="821" width="0.0106%" height="15" fill="rgb(250,228,42)" fg:x="2341" fg:w="51"/><text x="0.7374%" y="831.50"></text></g><g><title>CompileTask::print (114 samples, 0.02%)</title><rect x="0.4872%" y="837" width="0.0237%" height="15" fill="rgb(240,193,28)" fg:x="2340" fg:w="114"/><text x="0.7372%" y="847.50"></text></g><g><title>outputStream::print (61 samples, 0.01%)</title><rect x="0.4982%" y="821" width="0.0127%" height="15" fill="rgb(216,20,37)" fg:x="2393" fg:w="61"/><text x="0.7482%" y="831.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (60 samples, 0.01%)</title><rect x="0.4984%" y="805" width="0.0125%" height="15" fill="rgb(206,188,39)" fg:x="2394" fg:w="60"/><text x="0.7484%" y="815.50"></text></g><g><title>BlockBegin::iterate_preorder (60 samples, 0.01%)</title><rect x="0.5386%" y="677" width="0.0125%" height="15" fill="rgb(217,207,13)" fg:x="2587" fg:w="60"/><text x="0.7886%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.02%)</title><rect x="0.5382%" y="693" width="0.0194%" height="15" fill="rgb(231,73,38)" fg:x="2585" fg:w="93"/><text x="0.7882%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (139 samples, 0.03%)</title><rect x="0.5376%" y="709" width="0.0289%" height="15" fill="rgb(225,20,46)" fg:x="2582" fg:w="139"/><text x="0.7876%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (210 samples, 0.04%)</title><rect x="0.5363%" y="741" width="0.0437%" height="15" fill="rgb(210,31,41)" fg:x="2576" fg:w="210"/><text x="0.7863%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (208 samples, 0.04%)</title><rect x="0.5367%" y="725" width="0.0433%" height="15" fill="rgb(221,200,47)" fg:x="2578" fg:w="208"/><text x="0.7867%" y="735.50"></text></g><g><title>SubstitutionResolver::block_do (65 samples, 0.01%)</title><rect x="0.5665%" y="709" width="0.0135%" height="15" fill="rgb(226,26,5)" fg:x="2721" fg:w="65"/><text x="0.8165%" y="719.50"></text></g><g><title>ValueMap::find_insert (50 samples, 0.01%)</title><rect x="0.5898%" y="741" width="0.0104%" height="15" fill="rgb(249,33,26)" fg:x="2833" fg:w="50"/><text x="0.8398%" y="751.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (414 samples, 0.09%)</title><rect x="0.5205%" y="757" width="0.0862%" height="15" fill="rgb(235,183,28)" fg:x="2500" fg:w="414"/><text x="0.7705%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (51 samples, 0.01%)</title><rect x="0.6163%" y="661" width="0.0106%" height="15" fill="rgb(221,5,38)" fg:x="2960" fg:w="51"/><text x="0.8663%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (71 samples, 0.01%)</title><rect x="0.6148%" y="677" width="0.0148%" height="15" fill="rgb(247,18,42)" fg:x="2953" fg:w="71"/><text x="0.8648%" y="687.50"></text></g><g><title>BlockBegin::iterate_preorder (94 samples, 0.02%)</title><rect x="0.6134%" y="693" width="0.0196%" height="15" fill="rgb(241,131,45)" fg:x="2946" fg:w="94"/><text x="0.8634%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (135 samples, 0.03%)</title><rect x="0.6086%" y="725" width="0.0281%" height="15" fill="rgb(249,31,29)" fg:x="2923" fg:w="135"/><text x="0.8586%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (130 samples, 0.03%)</title><rect x="0.6096%" y="709" width="0.0271%" height="15" fill="rgb(225,111,53)" fg:x="2928" fg:w="130"/><text x="0.8596%" y="719.50"></text></g><g><title>MethodLiveness::init_basic_blocks (53 samples, 0.01%)</title><rect x="0.6627%" y="661" width="0.0110%" height="15" fill="rgb(238,160,17)" fg:x="3183" fg:w="53"/><text x="0.9127%" y="671.50"></text></g><g><title>BlockListBuilder::set_leaders (138 samples, 0.03%)</title><rect x="0.6454%" y="709" width="0.0287%" height="15" fill="rgb(214,148,48)" fg:x="3100" fg:w="138"/><text x="0.8954%" y="719.50"></text></g><g><title>ciMethod::bci_block_start (92 samples, 0.02%)</title><rect x="0.6550%" y="693" width="0.0192%" height="15" fill="rgb(232,36,49)" fg:x="3146" fg:w="92"/><text x="0.9050%" y="703.50"></text></g><g><title>MethodLiveness::compute_liveness (88 samples, 0.02%)</title><rect x="0.6558%" y="677" width="0.0183%" height="15" fill="rgb(209,103,24)" fg:x="3150" fg:w="88"/><text x="0.9058%" y="687.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (161 samples, 0.03%)</title><rect x="0.6415%" y="725" width="0.0335%" height="15" fill="rgb(229,88,8)" fg:x="3081" fg:w="161"/><text x="0.8915%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (62 samples, 0.01%)</title><rect x="0.7254%" y="613" width="0.0129%" height="15" fill="rgb(213,181,19)" fg:x="3484" fg:w="62"/><text x="0.9754%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (83 samples, 0.02%)</title><rect x="0.7220%" y="629" width="0.0173%" height="15" fill="rgb(254,191,54)" fg:x="3468" fg:w="83"/><text x="0.9720%" y="639.50"></text></g><g><title>ciField::ciField (124 samples, 0.03%)</title><rect x="0.7179%" y="645" width="0.0258%" height="15" fill="rgb(241,83,37)" fg:x="3448" fg:w="124"/><text x="0.9679%" y="655.50"></text></g><g><title>ciEnv::get_field_by_index (136 samples, 0.03%)</title><rect x="0.7158%" y="661" width="0.0283%" height="15" fill="rgb(233,36,39)" fg:x="3438" fg:w="136"/><text x="0.9658%" y="671.50"></text></g><g><title>ciBytecodeStream::get_field (152 samples, 0.03%)</title><rect x="0.7158%" y="677" width="0.0316%" height="15" fill="rgb(226,3,54)" fg:x="3438" fg:w="152"/><text x="0.9658%" y="687.50"></text></g><g><title>GraphBuilder::access_field (219 samples, 0.05%)</title><rect x="0.7050%" y="693" width="0.0456%" height="15" fill="rgb(245,192,40)" fg:x="3386" fg:w="219"/><text x="0.9550%" y="703.50"></text></g><g><title>BlockBegin::try_merge (51 samples, 0.01%)</title><rect x="0.8211%" y="613" width="0.0106%" height="15" fill="rgb(238,167,29)" fg:x="3944" fg:w="51"/><text x="1.0711%" y="623.50"></text></g><g><title>ciField::ciField (82 samples, 0.02%)</title><rect x="0.8447%" y="565" width="0.0171%" height="15" fill="rgb(232,182,51)" fg:x="4057" fg:w="82"/><text x="1.0947%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (90 samples, 0.02%)</title><rect x="0.8434%" y="581" width="0.0187%" height="15" fill="rgb(231,60,39)" fg:x="4051" fg:w="90"/><text x="1.0934%" y="591.50"></text></g><g><title>ciBytecodeStream::get_field (103 samples, 0.02%)</title><rect x="0.8432%" y="597" width="0.0214%" height="15" fill="rgb(208,69,12)" fg:x="4050" fg:w="103"/><text x="1.0932%" y="607.50"></text></g><g><title>GraphBuilder::access_field (163 samples, 0.03%)</title><rect x="0.8338%" y="613" width="0.0339%" height="15" fill="rgb(235,93,37)" fg:x="4005" fg:w="163"/><text x="1.0838%" y="623.50"></text></g><g><title>GraphBuilder::access_field (72 samples, 0.01%)</title><rect x="0.8984%" y="533" width="0.0150%" height="15" fill="rgb(213,116,39)" fg:x="4315" fg:w="72"/><text x="1.1484%" y="543.50"></text></g><g><title>GraphBuilder::invoke (66 samples, 0.01%)</title><rect x="0.9525%" y="373" width="0.0137%" height="15" fill="rgb(222,207,29)" fg:x="4575" fg:w="66"/><text x="1.2025%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (108 samples, 0.02%)</title><rect x="0.9463%" y="405" width="0.0225%" height="15" fill="rgb(206,96,30)" fg:x="4545" fg:w="108"/><text x="1.1963%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (108 samples, 0.02%)</title><rect x="0.9463%" y="389" width="0.0225%" height="15" fill="rgb(218,138,4)" fg:x="4545" fg:w="108"/><text x="1.1963%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (159 samples, 0.03%)</title><rect x="0.9444%" y="421" width="0.0331%" height="15" fill="rgb(250,191,14)" fg:x="4536" fg:w="159"/><text x="1.1944%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (167 samples, 0.03%)</title><rect x="0.9442%" y="437" width="0.0348%" height="15" fill="rgb(239,60,40)" fg:x="4535" fg:w="167"/><text x="1.1942%" y="447.50"></text></g><g><title>GraphBuilder::invoke (234 samples, 0.05%)</title><rect x="0.9423%" y="453" width="0.0487%" height="15" fill="rgb(206,27,48)" fg:x="4526" fg:w="234"/><text x="1.1923%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (334 samples, 0.07%)</title><rect x="0.9259%" y="485" width="0.0695%" height="15" fill="rgb(225,35,8)" fg:x="4447" fg:w="334"/><text x="1.1759%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (329 samples, 0.07%)</title><rect x="0.9269%" y="469" width="0.0685%" height="15" fill="rgb(250,213,24)" fg:x="4452" fg:w="329"/><text x="1.1769%" y="479.50"></text></g><g><title>GraphBuilder::push_scope (54 samples, 0.01%)</title><rect x="0.9958%" y="485" width="0.0112%" height="15" fill="rgb(247,123,22)" fg:x="4783" fg:w="54"/><text x="1.2458%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (437 samples, 0.09%)</title><rect x="0.9236%" y="501" width="0.0910%" height="15" fill="rgb(231,138,38)" fg:x="4436" fg:w="437"/><text x="1.1736%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (474 samples, 0.10%)</title><rect x="0.9236%" y="517" width="0.0987%" height="15" fill="rgb(231,145,46)" fg:x="4436" fg:w="474"/><text x="1.1736%" y="527.50"></text></g><g><title>ciMethod::ciMethod (54 samples, 0.01%)</title><rect x="1.0358%" y="453" width="0.0112%" height="15" fill="rgb(251,118,11)" fg:x="4975" fg:w="54"/><text x="1.2858%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (61 samples, 0.01%)</title><rect x="1.0345%" y="485" width="0.0127%" height="15" fill="rgb(217,147,25)" fg:x="4969" fg:w="61"/><text x="1.2845%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (57 samples, 0.01%)</title><rect x="1.0354%" y="469" width="0.0119%" height="15" fill="rgb(247,81,37)" fg:x="4973" fg:w="57"/><text x="1.2854%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (108 samples, 0.02%)</title><rect x="1.0254%" y="517" width="0.0225%" height="15" fill="rgb(209,12,38)" fg:x="4925" fg:w="108"/><text x="1.2754%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (103 samples, 0.02%)</title><rect x="1.0264%" y="501" width="0.0214%" height="15" fill="rgb(227,1,9)" fg:x="4930" fg:w="103"/><text x="1.2764%" y="511.50"></text></g><g><title>GraphBuilder::invoke (641 samples, 0.13%)</title><rect x="0.9177%" y="533" width="0.1335%" height="15" fill="rgb(248,47,43)" fg:x="4408" fg:w="641"/><text x="1.1677%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (835 samples, 0.17%)</title><rect x="0.8894%" y="565" width="0.1738%" height="15" fill="rgb(221,10,30)" fg:x="4272" fg:w="835"/><text x="1.1394%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (834 samples, 0.17%)</title><rect x="0.8896%" y="549" width="0.1736%" height="15" fill="rgb(210,229,1)" fg:x="4273" fg:w="834"/><text x="1.1396%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (55 samples, 0.01%)</title><rect x="1.0637%" y="549" width="0.0115%" height="15" fill="rgb(222,148,37)" fg:x="5109" fg:w="55"/><text x="1.3137%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (89 samples, 0.02%)</title><rect x="1.0635%" y="565" width="0.0185%" height="15" fill="rgb(234,67,33)" fg:x="5108" fg:w="89"/><text x="1.3135%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (63 samples, 0.01%)</title><rect x="1.0843%" y="565" width="0.0131%" height="15" fill="rgb(247,98,35)" fg:x="5208" fg:w="63"/><text x="1.3343%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (61 samples, 0.01%)</title><rect x="1.0847%" y="549" width="0.0127%" height="15" fill="rgb(247,138,52)" fg:x="5210" fg:w="61"/><text x="1.3347%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (1,031 samples, 0.21%)</title><rect x="0.8830%" y="581" width="0.2147%" height="15" fill="rgb(213,79,30)" fg:x="4241" fg:w="1031"/><text x="1.1330%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (1,070 samples, 0.22%)</title><rect x="0.8817%" y="597" width="0.2228%" height="15" fill="rgb(246,177,23)" fg:x="4235" fg:w="1070"/><text x="1.1317%" y="607.50"></text></g><g><title>ciMethod::ciMethod (84 samples, 0.02%)</title><rect x="1.1332%" y="533" width="0.0175%" height="15" fill="rgb(230,62,27)" fg:x="5443" fg:w="84"/><text x="1.3832%" y="543.50"></text></g><g><title>ciSignature::ciSignature (72 samples, 0.01%)</title><rect x="1.1357%" y="517" width="0.0150%" height="15" fill="rgb(216,154,8)" fg:x="5455" fg:w="72"/><text x="1.3857%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (108 samples, 0.02%)</title><rect x="1.1297%" y="565" width="0.0225%" height="15" fill="rgb(244,35,45)" fg:x="5426" fg:w="108"/><text x="1.3797%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (100 samples, 0.02%)</title><rect x="1.1314%" y="549" width="0.0208%" height="15" fill="rgb(251,115,12)" fg:x="5434" fg:w="100"/><text x="1.3814%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (202 samples, 0.04%)</title><rect x="1.1114%" y="597" width="0.0421%" height="15" fill="rgb(240,54,50)" fg:x="5338" fg:w="202"/><text x="1.3614%" y="607.50"></text></g><g><title>ciEnv::get_method_by_index_impl (190 samples, 0.04%)</title><rect x="1.1139%" y="581" width="0.0396%" height="15" fill="rgb(233,84,52)" fg:x="5350" fg:w="190"/><text x="1.3639%" y="591.50"></text></g><g><title>GraphBuilder::invoke (1,379 samples, 0.29%)</title><rect x="0.8753%" y="613" width="0.2871%" height="15" fill="rgb(207,117,47)" fg:x="4204" fg:w="1379"/><text x="1.1253%" y="623.50"></text></g><g><title>GraphBuilder::method_return (51 samples, 0.01%)</title><rect x="1.1630%" y="613" width="0.0106%" height="15" fill="rgb(249,43,39)" fg:x="5586" fg:w="51"/><text x="1.4130%" y="623.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,746 samples, 0.36%)</title><rect x="0.8134%" y="645" width="0.3635%" height="15" fill="rgb(209,38,44)" fg:x="3907" fg:w="1746"/><text x="1.0634%" y="655.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,735 samples, 0.36%)</title><rect x="0.8157%" y="629" width="0.3612%" height="15" fill="rgb(236,212,23)" fg:x="3918" fg:w="1735"/><text x="1.0657%" y="639.50"></text></g><g><title>MethodLiveness::compute_liveness (76 samples, 0.02%)</title><rect x="1.1888%" y="581" width="0.0158%" height="15" fill="rgb(242,79,21)" fg:x="5710" fg:w="76"/><text x="1.4388%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (59 samples, 0.01%)</title><rect x="1.1924%" y="565" width="0.0123%" height="15" fill="rgb(211,96,35)" fg:x="5727" fg:w="59"/><text x="1.4424%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (98 samples, 0.02%)</title><rect x="1.1847%" y="613" width="0.0204%" height="15" fill="rgb(253,215,40)" fg:x="5690" fg:w="98"/><text x="1.4347%" y="623.50"></text></g><g><title>ciMethod::bci_block_start (81 samples, 0.02%)</title><rect x="1.1882%" y="597" width="0.0169%" height="15" fill="rgb(211,81,21)" fg:x="5707" fg:w="81"/><text x="1.4382%" y="607.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (115 samples, 0.02%)</title><rect x="1.1817%" y="629" width="0.0239%" height="15" fill="rgb(208,190,38)" fg:x="5676" fg:w="115"/><text x="1.4317%" y="639.50"></text></g><g><title>GraphBuilder::push_scope (169 samples, 0.04%)</title><rect x="1.1809%" y="645" width="0.0352%" height="15" fill="rgb(235,213,38)" fg:x="5672" fg:w="169"/><text x="1.4309%" y="655.50"></text></g><g><title>Method::build_interpreter_method_data (62 samples, 0.01%)</title><rect x="1.2203%" y="613" width="0.0129%" height="15" fill="rgb(237,122,38)" fg:x="5861" fg:w="62"/><text x="1.4703%" y="623.50"></text></g><g><title>MethodData::allocate (61 samples, 0.01%)</title><rect x="1.2205%" y="597" width="0.0127%" height="15" fill="rgb(244,218,35)" fg:x="5862" fg:w="61"/><text x="1.4705%" y="607.50"></text></g><g><title>ciMethodData::load_data (87 samples, 0.02%)</title><rect x="1.2338%" y="613" width="0.0181%" height="15" fill="rgb(240,68,47)" fg:x="5926" fg:w="87"/><text x="1.4838%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (164 samples, 0.03%)</title><rect x="1.2203%" y="629" width="0.0341%" height="15" fill="rgb(210,16,53)" fg:x="5861" fg:w="164"/><text x="1.4703%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (172 samples, 0.04%)</title><rect x="1.2188%" y="645" width="0.0358%" height="15" fill="rgb(235,124,12)" fg:x="5854" fg:w="172"/><text x="1.4688%" y="655.50"></text></g><g><title>GraphBuilder::try_inline_full (2,200 samples, 0.46%)</title><rect x="0.7987%" y="661" width="0.4580%" height="15" fill="rgb(224,169,11)" fg:x="3836" fg:w="2200"/><text x="1.0487%" y="671.50"></text></g><g><title>GraphBuilder::try_inline (2,223 samples, 0.46%)</title><rect x="0.7959%" y="677" width="0.4628%" height="15" fill="rgb(250,166,2)" fg:x="3823" fg:w="2223"/><text x="1.0459%" y="687.50"></text></g><g><title>ciEnv::lookup_method (97 samples, 0.02%)</title><rect x="1.2840%" y="645" width="0.0202%" height="15" fill="rgb(242,216,29)" fg:x="6167" fg:w="97"/><text x="1.5340%" y="655.50"></text></g><g><title>SignatureStream::as_symbol (52 samples, 0.01%)</title><rect x="1.3187%" y="581" width="0.0108%" height="15" fill="rgb(230,116,27)" fg:x="6334" fg:w="52"/><text x="1.5687%" y="591.50"></text></g><g><title>SymbolTable::lookup (50 samples, 0.01%)</title><rect x="1.3192%" y="565" width="0.0104%" height="15" fill="rgb(228,99,48)" fg:x="6336" fg:w="50"/><text x="1.5692%" y="575.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (56 samples, 0.01%)</title><rect x="1.3314%" y="581" width="0.0117%" height="15" fill="rgb(253,11,6)" fg:x="6395" fg:w="56"/><text x="1.5814%" y="591.50"></text></g><g><title>ciSignature::ciSignature (154 samples, 0.03%)</title><rect x="1.3148%" y="597" width="0.0321%" height="15" fill="rgb(247,143,39)" fg:x="6315" fg:w="154"/><text x="1.5648%" y="607.50"></text></g><g><title>ciMethod::ciMethod (188 samples, 0.04%)</title><rect x="1.3079%" y="613" width="0.0391%" height="15" fill="rgb(236,97,10)" fg:x="6282" fg:w="188"/><text x="1.5579%" y="623.50"></text></g><g><title>ciObjectFactory::get_metadata (211 samples, 0.04%)</title><rect x="1.3042%" y="645" width="0.0439%" height="15" fill="rgb(233,208,19)" fg:x="6264" fg:w="211"/><text x="1.5542%" y="655.50"></text></g><g><title>ciObjectFactory::create_new_metadata (200 samples, 0.04%)</title><rect x="1.3065%" y="629" width="0.0416%" height="15" fill="rgb(216,164,2)" fg:x="6275" fg:w="200"/><text x="1.5565%" y="639.50"></text></g><g><title>ciEnv::get_method_by_index_impl (351 samples, 0.07%)</title><rect x="1.2765%" y="661" width="0.0731%" height="15" fill="rgb(220,129,5)" fg:x="6131" fg:w="351"/><text x="1.5265%" y="671.50"></text></g><g><title>ciBytecodeStream::get_method (380 samples, 0.08%)</title><rect x="1.2706%" y="677" width="0.0791%" height="15" fill="rgb(242,17,10)" fg:x="6103" fg:w="380"/><text x="1.5206%" y="687.50"></text></g><g><title>GraphBuilder::invoke (2,853 samples, 0.59%)</title><rect x="0.7724%" y="693" width="0.5940%" height="15" fill="rgb(242,107,0)" fg:x="3710" fg:w="2853"/><text x="1.0224%" y="703.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,355 samples, 0.70%)</title><rect x="0.6844%" y="709" width="0.6985%" height="15" fill="rgb(251,28,31)" fg:x="3287" fg:w="3355"/><text x="0.9344%" y="719.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,406 samples, 0.71%)</title><rect x="0.6769%" y="725" width="0.7091%" height="15" fill="rgb(233,223,10)" fg:x="3251" fg:w="3406"/><text x="0.9269%" y="735.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,800 samples, 0.79%)</title><rect x="0.6073%" y="741" width="0.7912%" height="15" fill="rgb(215,21,27)" fg:x="2917" fg:w="3800"/><text x="0.8573%" y="751.50"></text></g><g><title>IR::IR (3,815 samples, 0.79%)</title><rect x="0.6067%" y="757" width="0.7943%" height="15" fill="rgb(232,23,21)" fg:x="2914" fg:w="3815"/><text x="0.8567%" y="767.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (61 samples, 0.01%)</title><rect x="1.4010%" y="741" width="0.0127%" height="15" fill="rgb(244,5,23)" fg:x="6729" fg:w="61"/><text x="1.6510%" y="751.50"></text></g><g><title>IR::compute_code (67 samples, 0.01%)</title><rect x="1.4010%" y="757" width="0.0139%" height="15" fill="rgb(226,81,46)" fg:x="6729" fg:w="67"/><text x="1.6510%" y="767.50"></text></g><g><title>UseCountComputer::block_do (94 samples, 0.02%)</title><rect x="1.4151%" y="725" width="0.0196%" height="15" fill="rgb(247,70,30)" fg:x="6797" fg:w="94"/><text x="1.6651%" y="735.50"></text></g><g><title>BlockList::iterate_backward (97 samples, 0.02%)</title><rect x="1.4149%" y="741" width="0.0202%" height="15" fill="rgb(212,68,19)" fg:x="6796" fg:w="97"/><text x="1.6649%" y="751.50"></text></g><g><title>IR::compute_use_counts (124 samples, 0.03%)</title><rect x="1.4149%" y="757" width="0.0258%" height="15" fill="rgb(240,187,13)" fg:x="6796" fg:w="124"/><text x="1.6649%" y="767.50"></text></g><g><title>NullCheckEliminator::iterate_one (186 samples, 0.04%)</title><rect x="1.4472%" y="725" width="0.0387%" height="15" fill="rgb(223,113,26)" fg:x="6951" fg:w="186"/><text x="1.6972%" y="735.50"></text></g><g><title>IR::eliminate_null_checks (222 samples, 0.05%)</title><rect x="1.4407%" y="757" width="0.0462%" height="15" fill="rgb(206,192,2)" fg:x="6920" fg:w="222"/><text x="1.6907%" y="767.50"></text></g><g><title>Optimizer::eliminate_null_checks (222 samples, 0.05%)</title><rect x="1.4407%" y="741" width="0.0462%" height="15" fill="rgb(241,108,4)" fg:x="6920" fg:w="222"/><text x="1.6907%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.4893%" y="709" width="0.0110%" height="15" fill="rgb(247,173,49)" fg:x="7153" fg:w="53"/><text x="1.7393%" y="719.50"></text></g><g><title>IR::optimize_blocks (68 samples, 0.01%)</title><rect x="1.4870%" y="757" width="0.0142%" height="15" fill="rgb(224,114,35)" fg:x="7142" fg:w="68"/><text x="1.7370%" y="767.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (57 samples, 0.01%)</title><rect x="1.4893%" y="741" width="0.0119%" height="15" fill="rgb(245,159,27)" fg:x="7153" fg:w="57"/><text x="1.7393%" y="751.50"></text></g><g><title>BlockBegin::iterate_preorder (57 samples, 0.01%)</title><rect x="1.4893%" y="725" width="0.0119%" height="15" fill="rgb(245,172,44)" fg:x="7153" fg:w="57"/><text x="1.7393%" y="735.50"></text></g><g><title>IR::split_critical_edges (58 samples, 0.01%)</title><rect x="1.5011%" y="757" width="0.0121%" height="15" fill="rgb(236,23,11)" fg:x="7210" fg:w="58"/><text x="1.7511%" y="767.50"></text></g><g><title>Compilation::build_hir (4,827 samples, 1.00%)</title><rect x="0.5186%" y="773" width="1.0050%" height="15" fill="rgb(205,117,38)" fg:x="2491" fg:w="4827"/><text x="0.7686%" y="783.50"></text></g><g><title>CodeEmitInfo::record_debug_info (90 samples, 0.02%)</title><rect x="1.5559%" y="693" width="0.0187%" height="15" fill="rgb(237,72,25)" fg:x="7473" fg:w="90"/><text x="1.8059%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (92 samples, 0.02%)</title><rect x="1.5557%" y="709" width="0.0192%" height="15" fill="rgb(244,70,9)" fg:x="7472" fg:w="92"/><text x="1.8057%" y="719.50"></text></g><g><title>LIR_Assembler::call (103 samples, 0.02%)</title><rect x="1.5546%" y="725" width="0.0214%" height="15" fill="rgb(217,125,39)" fg:x="7467" fg:w="103"/><text x="1.8046%" y="735.50"></text></g><g><title>LIR_Assembler::emit_call (171 samples, 0.04%)</title><rect x="1.5473%" y="741" width="0.0356%" height="15" fill="rgb(235,36,10)" fg:x="7432" fg:w="171"/><text x="1.7973%" y="751.50"></text></g><g><title>LIR_Assembler::mem2reg (57 samples, 0.01%)</title><rect x="1.6044%" y="725" width="0.0119%" height="15" fill="rgb(251,123,47)" fg:x="7706" fg:w="57"/><text x="1.8544%" y="735.50"></text></g><g><title>LIR_Assembler::emit_op1 (181 samples, 0.04%)</title><rect x="1.5919%" y="741" width="0.0377%" height="15" fill="rgb(221,13,13)" fg:x="7646" fg:w="181"/><text x="1.8419%" y="751.50"></text></g><g><title>LIR_Assembler::emit_profile_call (71 samples, 0.01%)</title><rect x="1.6346%" y="741" width="0.0148%" height="15" fill="rgb(238,131,9)" fg:x="7851" fg:w="71"/><text x="1.8846%" y="751.50"></text></g><g><title>LIR_Assembler::emit_code (718 samples, 0.15%)</title><rect x="1.5276%" y="757" width="0.1495%" height="15" fill="rgb(211,50,8)" fg:x="7337" fg:w="718"/><text x="1.7776%" y="767.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (49 samples, 0.01%)</title><rect x="1.6810%" y="757" width="0.0102%" height="15" fill="rgb(245,182,24)" fg:x="8074" fg:w="49"/><text x="1.9310%" y="767.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (55 samples, 0.01%)</title><rect x="1.7018%" y="693" width="0.0115%" height="15" fill="rgb(242,14,37)" fg:x="8174" fg:w="55"/><text x="1.9518%" y="703.50"></text></g><g><title>LIR_Assembler::add_call_info (137 samples, 0.03%)</title><rect x="1.6975%" y="725" width="0.0285%" height="15" fill="rgb(246,228,12)" fg:x="8153" fg:w="137"/><text x="1.9475%" y="735.50"></text></g><g><title>CodeEmitInfo::record_debug_info (137 samples, 0.03%)</title><rect x="1.6975%" y="709" width="0.0285%" height="15" fill="rgb(213,55,15)" fg:x="8153" fg:w="137"/><text x="1.9475%" y="719.50"></text></g><g><title>CounterOverflowStub::emit_code (179 samples, 0.04%)</title><rect x="1.6960%" y="741" width="0.0373%" height="15" fill="rgb(209,9,3)" fg:x="8146" fg:w="179"/><text x="1.9460%" y="751.50"></text></g><g><title>CodeEmitInfo::record_debug_info (62 samples, 0.01%)</title><rect x="1.7374%" y="709" width="0.0129%" height="15" fill="rgb(230,59,30)" fg:x="8345" fg:w="62"/><text x="1.9874%" y="719.50"></text></g><g><title>LIR_Assembler::add_call_info (63 samples, 0.01%)</title><rect x="1.7374%" y="725" width="0.0131%" height="15" fill="rgb(209,121,21)" fg:x="8345" fg:w="63"/><text x="1.9874%" y="735.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (73 samples, 0.02%)</title><rect x="1.7360%" y="741" width="0.0152%" height="15" fill="rgb(220,109,13)" fg:x="8338" fg:w="73"/><text x="1.9860%" y="751.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (383 samples, 0.08%)</title><rect x="1.6912%" y="757" width="0.0797%" height="15" fill="rgb(232,18,1)" fg:x="8123" fg:w="383"/><text x="1.9412%" y="767.50"></text></g><g><title>Compilation::emit_code_body (1,207 samples, 0.25%)</title><rect x="1.5236%" y="773" width="0.2513%" height="15" fill="rgb(215,41,42)" fg:x="7318" fg:w="1207"/><text x="1.7736%" y="783.50"></text></g><g><title>LIRGenerator::do_Base (97 samples, 0.02%)</title><rect x="1.7901%" y="725" width="0.0202%" height="15" fill="rgb(224,123,36)" fg:x="8598" fg:w="97"/><text x="2.0401%" y="735.50"></text></g><g><title>LIRGenerator::move_to_phi (60 samples, 0.01%)</title><rect x="1.8176%" y="693" width="0.0125%" height="15" fill="rgb(240,125,3)" fg:x="8730" fg:w="60"/><text x="2.0676%" y="703.50"></text></g><g><title>PhiResolver::create_node (50 samples, 0.01%)</title><rect x="1.8197%" y="677" width="0.0104%" height="15" fill="rgb(205,98,50)" fg:x="8740" fg:w="50"/><text x="2.0697%" y="687.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (51 samples, 0.01%)</title><rect x="1.8578%" y="677" width="0.0106%" height="15" fill="rgb(205,185,37)" fg:x="8923" fg:w="51"/><text x="2.1078%" y="687.50"></text></g><g><title>LIRGenerator::move_to_phi (261 samples, 0.05%)</title><rect x="1.8143%" y="709" width="0.0543%" height="15" fill="rgb(238,207,15)" fg:x="8714" fg:w="261"/><text x="2.0643%" y="719.50"></text></g><g><title>PhiResolverState::reset (178 samples, 0.04%)</title><rect x="1.8315%" y="693" width="0.0371%" height="15" fill="rgb(213,199,42)" fg:x="8797" fg:w="178"/><text x="2.0815%" y="703.50"></text></g><g><title>LIRGenerator::do_Goto (288 samples, 0.06%)</title><rect x="1.8118%" y="725" width="0.0600%" height="15" fill="rgb(235,201,11)" fg:x="8702" fg:w="288"/><text x="2.0618%" y="735.50"></text></g><g><title>LIRGenerator::do_If (81 samples, 0.02%)</title><rect x="1.8717%" y="725" width="0.0169%" height="15" fill="rgb(207,46,11)" fg:x="8990" fg:w="81"/><text x="2.1217%" y="735.50"></text></g><g><title>LIRGenerator::state_for (51 samples, 0.01%)</title><rect x="1.9054%" y="709" width="0.0106%" height="15" fill="rgb(241,35,35)" fg:x="9152" fg:w="51"/><text x="2.1554%" y="719.50"></text></g><g><title>LIRGenerator::do_Invoke (129 samples, 0.03%)</title><rect x="1.8902%" y="725" width="0.0269%" height="15" fill="rgb(243,32,47)" fg:x="9079" fg:w="129"/><text x="2.1402%" y="735.50"></text></g><g><title>LIRGenerator::state_for (61 samples, 0.01%)</title><rect x="1.9533%" y="709" width="0.0127%" height="15" fill="rgb(247,202,23)" fg:x="9382" fg:w="61"/><text x="2.2033%" y="719.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (115 samples, 0.02%)</title><rect x="1.9435%" y="725" width="0.0239%" height="15" fill="rgb(219,102,11)" fg:x="9335" fg:w="115"/><text x="2.1935%" y="735.50"></text></g><g><title>LIRGenerator::block_do (981 samples, 0.20%)</title><rect x="1.7770%" y="741" width="0.2042%" height="15" fill="rgb(243,110,44)" fg:x="8535" fg:w="981"/><text x="2.0270%" y="751.50"></text></g><g><title>BlockList::iterate_forward (989 samples, 0.21%)</title><rect x="1.7759%" y="757" width="0.2059%" height="15" fill="rgb(222,74,54)" fg:x="8530" fg:w="989"/><text x="2.0259%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (126 samples, 0.03%)</title><rect x="2.0125%" y="709" width="0.0262%" height="15" fill="rgb(216,99,12)" fg:x="9666" fg:w="126"/><text x="2.2625%" y="719.50"></text></g><g><title>LinearScanWalker::find_free_reg (115 samples, 0.02%)</title><rect x="2.0689%" y="677" width="0.0239%" height="15" fill="rgb(226,22,26)" fg:x="9937" fg:w="115"/><text x="2.3189%" y="687.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (151 samples, 0.03%)</title><rect x="2.0997%" y="677" width="0.0314%" height="15" fill="rgb(217,163,10)" fg:x="10085" fg:w="151"/><text x="2.3497%" y="687.50"></text></g><g><title>Interval::split (58 samples, 0.01%)</title><rect x="2.1345%" y="661" width="0.0121%" height="15" fill="rgb(213,25,53)" fg:x="10252" fg:w="58"/><text x="2.3845%" y="671.50"></text></g><g><title>LinearScanWalker::split_before_usage (83 samples, 0.02%)</title><rect x="2.1311%" y="677" width="0.0173%" height="15" fill="rgb(252,105,26)" fg:x="10236" fg:w="83"/><text x="2.3811%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (497 samples, 0.10%)</title><rect x="2.0474%" y="693" width="0.1035%" height="15" fill="rgb(220,39,43)" fg:x="9834" fg:w="497"/><text x="2.2974%" y="703.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (69 samples, 0.01%)</title><rect x="2.1603%" y="677" width="0.0144%" height="15" fill="rgb(229,68,48)" fg:x="10376" fg:w="69"/><text x="2.4103%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (158 samples, 0.03%)</title><rect x="2.1509%" y="693" width="0.0329%" height="15" fill="rgb(252,8,32)" fg:x="10331" fg:w="158"/><text x="2.4009%" y="703.50"></text></g><g><title>LinearScanWalker::insert_move (49 samples, 0.01%)</title><rect x="2.1894%" y="693" width="0.0102%" height="15" fill="rgb(223,20,43)" fg:x="10516" fg:w="49"/><text x="2.4394%" y="703.50"></text></g><g><title>LinearScanWalker::activate_current (778 samples, 0.16%)</title><rect x="2.0389%" y="709" width="0.1620%" height="15" fill="rgb(229,81,49)" fg:x="9793" fg:w="778"/><text x="2.2889%" y="719.50"></text></g><g><title>IntervalWalker::walk_to (946 samples, 0.20%)</title><rect x="2.0041%" y="725" width="0.1970%" height="15" fill="rgb(236,28,36)" fg:x="9626" fg:w="946"/><text x="2.2541%" y="735.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (82 samples, 0.02%)</title><rect x="2.2013%" y="725" width="0.0171%" height="15" fill="rgb(249,185,26)" fg:x="10573" fg:w="82"/><text x="2.4513%" y="735.50"></text></g><g><title>LinearScan::allocate_registers (1,059 samples, 0.22%)</title><rect x="1.9983%" y="741" width="0.2205%" height="15" fill="rgb(249,174,33)" fg:x="9598" fg:w="1059"/><text x="2.2483%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (86 samples, 0.02%)</title><rect x="2.2527%" y="709" width="0.0179%" height="15" fill="rgb(233,201,37)" fg:x="10820" fg:w="86"/><text x="2.5027%" y="719.50"></text></g><g><title>LinearScan::color_lir_opr (66 samples, 0.01%)</title><rect x="2.2708%" y="709" width="0.0137%" height="15" fill="rgb(221,78,26)" fg:x="10907" fg:w="66"/><text x="2.5208%" y="719.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (50 samples, 0.01%)</title><rect x="2.3094%" y="677" width="0.0104%" height="15" fill="rgb(250,127,30)" fg:x="11092" fg:w="50"/><text x="2.5594%" y="687.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (108 samples, 0.02%)</title><rect x="2.3000%" y="693" width="0.0225%" height="15" fill="rgb(230,49,44)" fg:x="11047" fg:w="108"/><text x="2.5500%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (204 samples, 0.04%)</title><rect x="2.2846%" y="709" width="0.0425%" height="15" fill="rgb(229,67,23)" fg:x="10973" fg:w="204"/><text x="2.5346%" y="719.50"></text></g><g><title>IntervalWalker::walk_to (107 samples, 0.02%)</title><rect x="2.3354%" y="677" width="0.0223%" height="15" fill="rgb(249,83,47)" fg:x="11217" fg:w="107"/><text x="2.5854%" y="687.50"></text></g><g><title>LinearScan::compute_oop_map (195 samples, 0.04%)</title><rect x="2.3295%" y="693" width="0.0406%" height="15" fill="rgb(215,43,3)" fg:x="11189" fg:w="195"/><text x="2.5795%" y="703.50"></text></g><g><title>LinearScan::compute_oop_map (208 samples, 0.04%)</title><rect x="2.3270%" y="709" width="0.0433%" height="15" fill="rgb(238,154,13)" fg:x="11177" fg:w="208"/><text x="2.5770%" y="719.50"></text></g><g><title>LinearScan::assign_reg_num (726 samples, 0.15%)</title><rect x="2.2200%" y="725" width="0.1512%" height="15" fill="rgb(219,56,2)" fg:x="10663" fg:w="726"/><text x="2.4700%" y="735.50"></text></g><g><title>LinearScan::assign_reg_num (759 samples, 0.16%)</title><rect x="2.2188%" y="741" width="0.1580%" height="15" fill="rgb(233,0,4)" fg:x="10657" fg:w="759"/><text x="2.4688%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (76 samples, 0.02%)</title><rect x="2.4497%" y="725" width="0.0158%" height="15" fill="rgb(235,30,7)" fg:x="11766" fg:w="76"/><text x="2.6997%" y="735.50"></text></g><g><title>LinearScan::add_def (70 samples, 0.01%)</title><rect x="2.4655%" y="725" width="0.0146%" height="15" fill="rgb(250,79,13)" fg:x="11842" fg:w="70"/><text x="2.7155%" y="735.50"></text></g><g><title>LinearScan::create_interval (58 samples, 0.01%)</title><rect x="2.4974%" y="709" width="0.0121%" height="15" fill="rgb(211,146,34)" fg:x="11995" fg:w="58"/><text x="2.7474%" y="719.50"></text></g><g><title>LinearScan::add_temp (120 samples, 0.02%)</title><rect x="2.4849%" y="725" width="0.0250%" height="15" fill="rgb(228,22,38)" fg:x="11935" fg:w="120"/><text x="2.7349%" y="735.50"></text></g><g><title>Interval::add_range (49 samples, 0.01%)</title><rect x="2.5186%" y="709" width="0.0102%" height="15" fill="rgb(235,168,5)" fg:x="12097" fg:w="49"/><text x="2.7686%" y="719.50"></text></g><g><title>Interval::Interval (74 samples, 0.02%)</title><rect x="2.5305%" y="693" width="0.0154%" height="15" fill="rgb(221,155,16)" fg:x="12154" fg:w="74"/><text x="2.7805%" y="703.50"></text></g><g><title>LinearScan::create_interval (86 samples, 0.02%)</title><rect x="2.5292%" y="709" width="0.0179%" height="15" fill="rgb(215,215,53)" fg:x="12148" fg:w="86"/><text x="2.7792%" y="719.50"></text></g><g><title>LinearScan::add_use (184 samples, 0.04%)</title><rect x="2.5098%" y="725" width="0.0383%" height="15" fill="rgb(223,4,10)" fg:x="12055" fg:w="184"/><text x="2.7598%" y="735.50"></text></g><g><title>LinearScan::build_intervals (923 samples, 0.19%)</title><rect x="2.3768%" y="741" width="0.1922%" height="15" fill="rgb(234,103,6)" fg:x="11416" fg:w="923"/><text x="2.6268%" y="751.50"></text></g><g><title>LinearScan::compute_global_live_sets (78 samples, 0.02%)</title><rect x="2.5690%" y="741" width="0.0162%" height="15" fill="rgb(227,97,0)" fg:x="12339" fg:w="78"/><text x="2.8190%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (94 samples, 0.02%)</title><rect x="2.6152%" y="725" width="0.0196%" height="15" fill="rgb(234,150,53)" fg:x="12561" fg:w="94"/><text x="2.8652%" y="735.50"></text></g><g><title>LinearScan::compute_local_live_sets (292 samples, 0.06%)</title><rect x="2.5852%" y="741" width="0.0608%" height="15" fill="rgb(228,201,54)" fg:x="12417" fg:w="292"/><text x="2.8352%" y="751.50"></text></g><g><title>LinearScan::eliminate_spill_moves (90 samples, 0.02%)</title><rect x="2.6460%" y="741" width="0.0187%" height="15" fill="rgb(222,22,37)" fg:x="12709" fg:w="90"/><text x="2.8960%" y="751.50"></text></g><g><title>LinearScan::number_instructions (51 samples, 0.01%)</title><rect x="2.6647%" y="741" width="0.0106%" height="15" fill="rgb(237,53,32)" fg:x="12799" fg:w="51"/><text x="2.9147%" y="751.50"></text></g><g><title>LinearScan::resolve_collect_mappings (82 samples, 0.02%)</title><rect x="2.6833%" y="725" width="0.0171%" height="15" fill="rgb(233,25,53)" fg:x="12888" fg:w="82"/><text x="2.9333%" y="735.50"></text></g><g><title>LinearScan::resolve_data_flow (135 samples, 0.03%)</title><rect x="2.6762%" y="741" width="0.0281%" height="15" fill="rgb(210,40,34)" fg:x="12854" fg:w="135"/><text x="2.9262%" y="751.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (55 samples, 0.01%)</title><rect x="2.7143%" y="741" width="0.0115%" height="15" fill="rgb(241,220,44)" fg:x="13037" fg:w="55"/><text x="2.9643%" y="751.50"></text></g><g><title>LinearScan::do_linear_scan (3,559 samples, 0.74%)</title><rect x="1.9935%" y="757" width="0.7410%" height="15" fill="rgb(235,28,35)" fg:x="9575" fg:w="3559"/><text x="2.2435%" y="767.50"></text></g><g><title>Compilation::emit_lir (4,615 samples, 0.96%)</title><rect x="1.7749%" y="773" width="0.9608%" height="15" fill="rgb(210,56,17)" fg:x="8525" fg:w="4615"/><text x="2.0249%" y="783.50"></text></g><g><title>Method::build_interpreter_method_data (82 samples, 0.02%)</title><rect x="2.7428%" y="741" width="0.0171%" height="15" fill="rgb(224,130,29)" fg:x="13174" fg:w="82"/><text x="2.9928%" y="751.50"></text></g><g><title>MethodData::allocate (79 samples, 0.02%)</title><rect x="2.7434%" y="725" width="0.0164%" height="15" fill="rgb(235,212,8)" fg:x="13177" fg:w="79"/><text x="2.9934%" y="735.50"></text></g><g><title>ciMethodData::load_data (55 samples, 0.01%)</title><rect x="2.7603%" y="741" width="0.0115%" height="15" fill="rgb(223,33,50)" fg:x="13258" fg:w="55"/><text x="3.0103%" y="751.50"></text></g><g><title>Compilation::compile_java_method (10,841 samples, 2.26%)</title><rect x="0.5172%" y="789" width="2.2571%" height="15" fill="rgb(219,149,13)" fg:x="2484" fg:w="10841"/><text x="0.7672%" y="799.50">C..</text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.03%)</title><rect x="2.7418%" y="773" width="0.0325%" height="15" fill="rgb(250,156,29)" fg:x="13169" fg:w="156"/><text x="2.9918%" y="783.50"></text></g><g><title>ciMethod::ensure_method_data (151 samples, 0.03%)</title><rect x="2.7428%" y="757" width="0.0314%" height="15" fill="rgb(216,193,19)" fg:x="13174" fg:w="151"/><text x="2.9928%" y="767.50"></text></g><g><title>CodeBuffer::finalize_oop_references (88 samples, 0.02%)</title><rect x="2.8013%" y="757" width="0.0183%" height="15" fill="rgb(216,135,14)" fg:x="13455" fg:w="88"/><text x="3.0513%" y="767.50"></text></g><g><title>CodeHeap::allocate (57 samples, 0.01%)</title><rect x="2.8199%" y="741" width="0.0119%" height="15" fill="rgb(241,47,5)" fg:x="13544" fg:w="57"/><text x="3.0699%" y="751.50"></text></g><g><title>CodeCache::allocate (86 samples, 0.02%)</title><rect x="2.8196%" y="757" width="0.0179%" height="15" fill="rgb(233,42,35)" fg:x="13543" fg:w="86"/><text x="3.0696%" y="767.50"></text></g><g><title>___pthread_cond_signal (49 samples, 0.01%)</title><rect x="2.8457%" y="757" width="0.0102%" height="15" fill="rgb(231,13,6)" fg:x="13668" fg:w="49"/><text x="3.0957%" y="767.50"></text></g><g><title>CodeBuffer::relocate_code_to (119 samples, 0.02%)</title><rect x="2.8588%" y="725" width="0.0248%" height="15" fill="rgb(207,181,40)" fg:x="13731" fg:w="119"/><text x="3.1088%" y="735.50"></text></g><g><title>CodeBuffer::copy_code_to (134 samples, 0.03%)</title><rect x="2.8571%" y="741" width="0.0279%" height="15" fill="rgb(254,173,49)" fg:x="13723" fg:w="134"/><text x="3.1071%" y="751.50"></text></g><g><title>G1CollectedHeap::register_nmethod (51 samples, 0.01%)</title><rect x="2.8979%" y="741" width="0.0106%" height="15" fill="rgb(221,1,38)" fg:x="13919" fg:w="51"/><text x="3.1479%" y="751.50"></text></g><g><title>nmethod::oops_do (49 samples, 0.01%)</title><rect x="2.8983%" y="725" width="0.0102%" height="15" fill="rgb(206,124,46)" fg:x="13921" fg:w="49"/><text x="3.1483%" y="735.50"></text></g><g><title>nmethod::nmethod (309 samples, 0.06%)</title><rect x="2.8559%" y="757" width="0.0643%" height="15" fill="rgb(249,21,11)" fg:x="13717" fg:w="309"/><text x="3.1059%" y="767.50"></text></g><g><title>nmethod::new_nmethod (583 samples, 0.12%)</title><rect x="2.7990%" y="773" width="0.1214%" height="15" fill="rgb(222,201,40)" fg:x="13444" fg:w="583"/><text x="3.0490%" y="783.50"></text></g><g><title>ciEnv::register_method (663 samples, 0.14%)</title><rect x="2.7832%" y="789" width="0.1380%" height="15" fill="rgb(235,61,29)" fg:x="13368" fg:w="663"/><text x="3.0332%" y="799.50"></text></g><g><title>Compilation::compile_method (11,551 samples, 2.40%)</title><rect x="0.5165%" y="805" width="2.4049%" height="15" fill="rgb(219,207,3)" fg:x="2481" fg:w="11551"/><text x="0.7665%" y="815.50">Co..</text></g><g><title>Compiler::compile_method (11,582 samples, 2.41%)</title><rect x="0.5113%" y="837" width="2.4114%" height="15" fill="rgb(222,56,46)" fg:x="2456" fg:w="11582"/><text x="0.7613%" y="847.50">Co..</text></g><g><title>Compilation::Compilation (11,563 samples, 2.41%)</title><rect x="0.5153%" y="821" width="2.4074%" height="15" fill="rgb(239,76,54)" fg:x="2475" fg:w="11563"/><text x="0.7653%" y="831.50">Co..</text></g><g><title>ciEnv::ciEnv (94 samples, 0.02%)</title><rect x="2.9323%" y="837" width="0.0196%" height="15" fill="rgb(231,124,27)" fg:x="14084" fg:w="94"/><text x="3.1823%" y="847.50"></text></g><g><title>ciObjectFactory::get (49 samples, 0.01%)</title><rect x="2.9417%" y="821" width="0.0102%" height="15" fill="rgb(249,195,6)" fg:x="14129" fg:w="49"/><text x="3.1917%" y="831.50"></text></g><g><title>ciSignature::ciSignature (114 samples, 0.02%)</title><rect x="2.9562%" y="773" width="0.0237%" height="15" fill="rgb(237,174,47)" fg:x="14199" fg:w="114"/><text x="3.2062%" y="783.50"></text></g><g><title>ciMethod::ciMethod (126 samples, 0.03%)</title><rect x="2.9539%" y="789" width="0.0262%" height="15" fill="rgb(206,201,31)" fg:x="14188" fg:w="126"/><text x="3.2039%" y="799.50"></text></g><g><title>ciEnv::get_method_from_handle (153 samples, 0.03%)</title><rect x="2.9519%" y="837" width="0.0319%" height="15" fill="rgb(231,57,52)" fg:x="14178" fg:w="153"/><text x="3.2019%" y="847.50"></text></g><g><title>ciObjectFactory::get_metadata (153 samples, 0.03%)</title><rect x="2.9519%" y="821" width="0.0319%" height="15" fill="rgb(248,177,22)" fg:x="14178" fg:w="153"/><text x="3.2019%" y="831.50"></text></g><g><title>ciObjectFactory::create_new_metadata (144 samples, 0.03%)</title><rect x="2.9537%" y="805" width="0.0300%" height="15" fill="rgb(215,211,37)" fg:x="14187" fg:w="144"/><text x="3.2037%" y="815.50"></text></g><g><title>ciEnv::~ciEnv (63 samples, 0.01%)</title><rect x="2.9837%" y="837" width="0.0131%" height="15" fill="rgb(241,128,51)" fg:x="14331" fg:w="63"/><text x="3.2337%" y="847.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,197 samples, 2.54%)</title><rect x="0.4578%" y="853" width="2.5394%" height="15" fill="rgb(227,165,31)" fg:x="2199" fg:w="12197"/><text x="0.7078%" y="863.50">Co..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (62 samples, 0.01%)</title><rect x="2.9972%" y="853" width="0.0129%" height="15" fill="rgb(228,167,24)" fg:x="14396" fg:w="62"/><text x="3.2472%" y="863.50"></text></g><g><title>os::available_memory (51 samples, 0.01%)</title><rect x="2.9995%" y="837" width="0.0106%" height="15" fill="rgb(228,143,12)" fg:x="14407" fg:w="51"/><text x="3.2495%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (211 samples, 0.04%)</title><rect x="3.0260%" y="565" width="0.0439%" height="15" fill="rgb(249,149,8)" fg:x="14534" fg:w="211"/><text x="3.2760%" y="575.50"></text></g><g><title>x86_pmu_enable (205 samples, 0.04%)</title><rect x="3.0272%" y="549" width="0.0427%" height="15" fill="rgb(243,35,44)" fg:x="14540" fg:w="205"/><text x="3.2772%" y="559.50"></text></g><g><title>intel_pmu_enable_all (203 samples, 0.04%)</title><rect x="3.0276%" y="533" width="0.0423%" height="15" fill="rgb(246,89,9)" fg:x="14542" fg:w="203"/><text x="3.2776%" y="543.50"></text></g><g><title>native_write_msr (203 samples, 0.04%)</title><rect x="3.0276%" y="517" width="0.0423%" height="15" fill="rgb(233,213,13)" fg:x="14542" fg:w="203"/><text x="3.2776%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (221 samples, 0.05%)</title><rect x="3.0249%" y="581" width="0.0460%" height="15" fill="rgb(233,141,41)" fg:x="14529" fg:w="221"/><text x="3.2749%" y="591.50"></text></g><g><title>__schedule (250 samples, 0.05%)</title><rect x="3.0220%" y="597" width="0.0520%" height="15" fill="rgb(239,167,4)" fg:x="14515" fg:w="250"/><text x="3.2720%" y="607.50"></text></g><g><title>futex_wait_queue_me (262 samples, 0.05%)</title><rect x="3.0197%" y="629" width="0.0545%" height="15" fill="rgb(209,217,16)" fg:x="14504" fg:w="262"/><text x="3.2697%" y="639.50"></text></g><g><title>schedule (251 samples, 0.05%)</title><rect x="3.0220%" y="613" width="0.0523%" height="15" fill="rgb(219,88,35)" fg:x="14515" fg:w="251"/><text x="3.2720%" y="623.50"></text></g><g><title>futex_wait (272 samples, 0.06%)</title><rect x="3.0193%" y="645" width="0.0566%" height="15" fill="rgb(220,193,23)" fg:x="14502" fg:w="272"/><text x="3.2693%" y="655.50"></text></g><g><title>do_futex (273 samples, 0.06%)</title><rect x="3.0193%" y="661" width="0.0568%" height="15" fill="rgb(230,90,52)" fg:x="14502" fg:w="273"/><text x="3.2693%" y="671.50"></text></g><g><title>__x64_sys_futex (276 samples, 0.06%)</title><rect x="3.0189%" y="677" width="0.0575%" height="15" fill="rgb(252,106,19)" fg:x="14500" fg:w="276"/><text x="3.2689%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (286 samples, 0.06%)</title><rect x="3.0189%" y="709" width="0.0595%" height="15" fill="rgb(206,74,20)" fg:x="14500" fg:w="286"/><text x="3.2689%" y="719.50"></text></g><g><title>do_syscall_64 (286 samples, 0.06%)</title><rect x="3.0189%" y="693" width="0.0595%" height="15" fill="rgb(230,138,44)" fg:x="14500" fg:w="286"/><text x="3.2689%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (290 samples, 0.06%)</title><rect x="3.0183%" y="757" width="0.0604%" height="15" fill="rgb(235,182,43)" fg:x="14497" fg:w="290"/><text x="3.2683%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (290 samples, 0.06%)</title><rect x="3.0183%" y="741" width="0.0604%" height="15" fill="rgb(242,16,51)" fg:x="14497" fg:w="290"/><text x="3.2683%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (290 samples, 0.06%)</title><rect x="3.0183%" y="725" width="0.0604%" height="15" fill="rgb(248,9,4)" fg:x="14497" fg:w="290"/><text x="3.2683%" y="735.50"></text></g><g><title>___pthread_cond_timedwait64 (295 samples, 0.06%)</title><rect x="3.0176%" y="789" width="0.0614%" height="15" fill="rgb(210,31,22)" fg:x="14494" fg:w="295"/><text x="3.2676%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (294 samples, 0.06%)</title><rect x="3.0179%" y="773" width="0.0612%" height="15" fill="rgb(239,54,39)" fg:x="14495" fg:w="294"/><text x="3.2679%" y="783.50"></text></g><g><title>Monitor::IWait (313 samples, 0.07%)</title><rect x="3.0166%" y="821" width="0.0652%" height="15" fill="rgb(230,99,41)" fg:x="14489" fg:w="313"/><text x="3.2666%" y="831.50"></text></g><g><title>os::PlatformEvent::park (308 samples, 0.06%)</title><rect x="3.0176%" y="805" width="0.0641%" height="15" fill="rgb(253,106,12)" fg:x="14494" fg:w="308"/><text x="3.2676%" y="815.50"></text></g><g><title>Monitor::wait (320 samples, 0.07%)</title><rect x="3.0158%" y="837" width="0.0666%" height="15" fill="rgb(213,46,41)" fg:x="14485" fg:w="320"/><text x="3.2658%" y="847.50"></text></g><g><title>TieredThresholdPolicy::select_task (81 samples, 0.02%)</title><rect x="3.0824%" y="837" width="0.0169%" height="15" fill="rgb(215,133,35)" fg:x="14805" fg:w="81"/><text x="3.3324%" y="847.50"></text></g><g><title>CompileQueue::get (432 samples, 0.09%)</title><rect x="3.0102%" y="853" width="0.0899%" height="15" fill="rgb(213,28,5)" fg:x="14458" fg:w="432"/><text x="3.2602%" y="863.50"></text></g><g><title>__clone3 (12,751 samples, 2.65%)</title><rect x="0.4485%" y="949" width="2.6548%" height="15" fill="rgb(215,77,49)" fg:x="2154" fg:w="12751"/><text x="0.6985%" y="959.50">__..</text></g><g><title>start_thread (12,728 samples, 2.65%)</title><rect x="0.4533%" y="933" width="2.6500%" height="15" fill="rgb(248,100,22)" fg:x="2177" fg:w="12728"/><text x="0.7033%" y="943.50">st..</text></g><g><title>thread_native_entry (12,726 samples, 2.65%)</title><rect x="0.4537%" y="917" width="2.6495%" height="15" fill="rgb(208,67,9)" fg:x="2179" fg:w="12726"/><text x="0.7037%" y="927.50">th..</text></g><g><title>Thread::call_run (12,723 samples, 2.65%)</title><rect x="0.4543%" y="901" width="2.6489%" height="15" fill="rgb(219,133,21)" fg:x="2182" fg:w="12723"/><text x="0.7043%" y="911.50">Th..</text></g><g><title>JavaThread::thread_main_inner (12,714 samples, 2.65%)</title><rect x="0.4562%" y="885" width="2.6471%" height="15" fill="rgb(246,46,29)" fg:x="2191" fg:w="12714"/><text x="0.7062%" y="895.50">Ja..</text></g><g><title>CompileBroker::compiler_thread_loop (12,714 samples, 2.65%)</title><rect x="0.4562%" y="869" width="2.6471%" height="15" fill="rgb(246,185,52)" fg:x="2191" fg:w="12714"/><text x="0.7062%" y="879.50">Co..</text></g><g><title>C1_CompilerThre (14,698 samples, 3.06%)</title><rect x="0.0548%" y="965" width="3.0601%" height="15" fill="rgb(252,136,11)" fg:x="263" fg:w="14698"/><text x="0.3048%" y="975.50">C1_..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (60 samples, 0.01%)</title><rect x="3.1378%" y="949" width="0.0125%" height="15" fill="rgb(219,138,53)" fg:x="15071" fg:w="60"/><text x="3.3878%" y="959.50"></text></g><g><title>RegMask::is_UP (58 samples, 0.01%)</title><rect x="3.1382%" y="933" width="0.0121%" height="15" fill="rgb(211,51,23)" fg:x="15073" fg:w="58"/><text x="3.3882%" y="943.50"></text></g><g><title>ProjNode::pinned (122 samples, 0.03%)</title><rect x="3.1794%" y="933" width="0.0254%" height="15" fill="rgb(247,221,28)" fg:x="15271" fg:w="122"/><text x="3.4294%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (130 samples, 0.03%)</title><rect x="3.1782%" y="949" width="0.0271%" height="15" fill="rgb(251,222,45)" fg:x="15265" fg:w="130"/><text x="3.4282%" y="959.50"></text></g><g><title>IndexSetIterator::advance_and_next (77 samples, 0.02%)</title><rect x="3.4184%" y="933" width="0.0160%" height="15" fill="rgb(217,162,53)" fg:x="16419" fg:w="77"/><text x="3.6684%" y="943.50"></text></g><g><title>MultiNode::is_CFG (84 samples, 0.02%)</title><rect x="3.5469%" y="933" width="0.0175%" height="15" fill="rgb(229,93,14)" fg:x="17036" fg:w="84"/><text x="3.7969%" y="943.50"></text></g><g><title>Node::is_CFG (78 samples, 0.02%)</title><rect x="3.5806%" y="933" width="0.0162%" height="15" fill="rgb(209,67,49)" fg:x="17198" fg:w="78"/><text x="3.8306%" y="943.50"></text></g><g><title>RegionNode::is_CFG (64 samples, 0.01%)</title><rect x="3.7678%" y="933" width="0.0133%" height="15" fill="rgb(213,87,29)" fg:x="18097" fg:w="64"/><text x="4.0178%" y="943.50"></text></g><g><title>_dl_update_slotinfo (268 samples, 0.06%)</title><rect x="3.9017%" y="933" width="0.0558%" height="15" fill="rgb(205,151,52)" fg:x="18740" fg:w="268"/><text x="4.1517%" y="943.50"></text></g><g><title>find_lowest_bit (76 samples, 0.02%)</title><rect x="4.0126%" y="933" width="0.0158%" height="15" fill="rgb(253,215,39)" fg:x="19273" fg:w="76"/><text x="4.2626%" y="943.50"></text></g><g><title>update_get_addr (123 samples, 0.03%)</title><rect x="4.0992%" y="933" width="0.0256%" height="15" fill="rgb(221,220,41)" fg:x="19689" fg:w="123"/><text x="4.3492%" y="943.50"></text></g><g><title>[anon] (4,382 samples, 0.91%)</title><rect x="3.2146%" y="949" width="0.9123%" height="15" fill="rgb(218,133,21)" fg:x="15440" fg:w="4382"/><text x="3.4646%" y="959.50"></text></g><g><title>Compile::call_generator (51 samples, 0.01%)</title><rect x="4.1434%" y="789" width="0.0106%" height="15" fill="rgb(221,193,43)" fg:x="19901" fg:w="51"/><text x="4.3934%" y="799.50"></text></g><g><title>InlineTree::ok_to_inline (51 samples, 0.01%)</title><rect x="4.1434%" y="773" width="0.0106%" height="15" fill="rgb(240,128,52)" fg:x="19901" fg:w="51"/><text x="4.3934%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (72 samples, 0.01%)</title><rect x="4.1663%" y="677" width="0.0150%" height="15" fill="rgb(253,114,12)" fg:x="20011" fg:w="72"/><text x="4.4163%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (71 samples, 0.01%)</title><rect x="4.1665%" y="661" width="0.0148%" height="15" fill="rgb(215,223,47)" fg:x="20012" fg:w="71"/><text x="4.4165%" y="671.50"></text></g><g><title>ciEnv::get_method_by_index_impl (69 samples, 0.01%)</title><rect x="4.1669%" y="645" width="0.0144%" height="15" fill="rgb(248,225,23)" fg:x="20014" fg:w="69"/><text x="4.4169%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (119 samples, 0.02%)</title><rect x="4.1590%" y="693" width="0.0248%" height="15" fill="rgb(250,108,0)" fg:x="19976" fg:w="119"/><text x="4.4090%" y="703.50"></text></g><g><title>ciTypeFlow::flow_block (136 samples, 0.03%)</title><rect x="4.1561%" y="709" width="0.0283%" height="15" fill="rgb(228,208,7)" fg:x="19962" fg:w="136"/><text x="4.4061%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (138 samples, 0.03%)</title><rect x="4.1559%" y="725" width="0.0287%" height="15" fill="rgb(244,45,10)" fg:x="19961" fg:w="138"/><text x="4.4059%" y="735.50"></text></g><g><title>InlineTree::ok_to_inline (152 samples, 0.03%)</title><rect x="4.1540%" y="789" width="0.0316%" height="15" fill="rgb(207,125,25)" fg:x="19952" fg:w="152"/><text x="4.4040%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (145 samples, 0.03%)</title><rect x="4.1555%" y="773" width="0.0302%" height="15" fill="rgb(210,195,18)" fg:x="19959" fg:w="145"/><text x="4.4055%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (145 samples, 0.03%)</title><rect x="4.1555%" y="757" width="0.0302%" height="15" fill="rgb(249,80,12)" fg:x="19959" fg:w="145"/><text x="4.4055%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (145 samples, 0.03%)</title><rect x="4.1555%" y="741" width="0.0302%" height="15" fill="rgb(221,65,9)" fg:x="19959" fg:w="145"/><text x="4.4055%" y="751.50"></text></g><g><title>Compile::call_generator (207 samples, 0.04%)</title><rect x="4.1434%" y="805" width="0.0431%" height="15" fill="rgb(235,49,36)" fg:x="19901" fg:w="207"/><text x="4.3934%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (77 samples, 0.02%)</title><rect x="4.2158%" y="597" width="0.0160%" height="15" fill="rgb(225,32,20)" fg:x="20249" fg:w="77"/><text x="4.4658%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (94 samples, 0.02%)</title><rect x="4.2129%" y="613" width="0.0196%" height="15" fill="rgb(215,141,46)" fg:x="20235" fg:w="94"/><text x="4.4629%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (100 samples, 0.02%)</title><rect x="4.2119%" y="629" width="0.0208%" height="15" fill="rgb(250,160,47)" fg:x="20230" fg:w="100"/><text x="4.4619%" y="639.50"></text></g><g><title>InlineTree::ok_to_inline (137 samples, 0.03%)</title><rect x="4.2048%" y="693" width="0.0285%" height="15" fill="rgb(216,222,40)" fg:x="20196" fg:w="137"/><text x="4.4548%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (114 samples, 0.02%)</title><rect x="4.2096%" y="677" width="0.0237%" height="15" fill="rgb(234,217,39)" fg:x="20219" fg:w="114"/><text x="4.4596%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (106 samples, 0.02%)</title><rect x="4.2113%" y="661" width="0.0221%" height="15" fill="rgb(207,178,40)" fg:x="20227" fg:w="106"/><text x="4.4613%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (106 samples, 0.02%)</title><rect x="4.2113%" y="645" width="0.0221%" height="15" fill="rgb(221,136,13)" fg:x="20227" fg:w="106"/><text x="4.4613%" y="655.50"></text></g><g><title>Compile::call_generator (172 samples, 0.04%)</title><rect x="4.1990%" y="709" width="0.0358%" height="15" fill="rgb(249,199,10)" fg:x="20168" fg:w="172"/><text x="4.4490%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (85 samples, 0.02%)</title><rect x="4.2716%" y="597" width="0.0177%" height="15" fill="rgb(249,222,13)" fg:x="20517" fg:w="85"/><text x="4.5216%" y="607.50"></text></g><g><title>ciMethod::get_flow_analysis (53 samples, 0.01%)</title><rect x="4.2783%" y="581" width="0.0110%" height="15" fill="rgb(244,185,38)" fg:x="20549" fg:w="53"/><text x="4.5283%" y="591.50"></text></g><g><title>ciTypeFlow::do_flow (49 samples, 0.01%)</title><rect x="4.2791%" y="565" width="0.0102%" height="15" fill="rgb(236,202,9)" fg:x="20553" fg:w="49"/><text x="4.5291%" y="575.50"></text></g><g><title>ciTypeFlow::flow_types (49 samples, 0.01%)</title><rect x="4.2791%" y="549" width="0.0102%" height="15" fill="rgb(250,229,37)" fg:x="20553" fg:w="49"/><text x="4.5291%" y="559.50"></text></g><g><title>Compile::call_generator (95 samples, 0.02%)</title><rect x="4.2704%" y="613" width="0.0198%" height="15" fill="rgb(206,174,23)" fg:x="20511" fg:w="95"/><text x="4.5204%" y="623.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.01%)</title><rect x="4.3358%" y="469" width="0.0129%" height="15" fill="rgb(211,33,43)" fg:x="20825" fg:w="62"/><text x="4.5858%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="4.3370%" y="453" width="0.0117%" height="15" fill="rgb(245,58,50)" fg:x="20831" fg:w="56"/><text x="4.5870%" y="463.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.01%)</title><rect x="4.3353%" y="485" width="0.0137%" height="15" fill="rgb(244,68,36)" fg:x="20823" fg:w="66"/><text x="4.5853%" y="495.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.02%)</title><rect x="4.3314%" y="517" width="0.0225%" height="15" fill="rgb(232,229,15)" fg:x="20804" fg:w="108"/><text x="4.5814%" y="527.50"></text></g><g><title>Parse::Parse (108 samples, 0.02%)</title><rect x="4.3314%" y="501" width="0.0225%" height="15" fill="rgb(254,30,23)" fg:x="20804" fg:w="108"/><text x="4.5814%" y="511.50"></text></g><g><title>Parse::do_call (198 samples, 0.04%)</title><rect x="4.3176%" y="533" width="0.0412%" height="15" fill="rgb(235,160,14)" fg:x="20738" fg:w="198"/><text x="4.5676%" y="543.50"></text></g><g><title>Parse::do_field_access (68 samples, 0.01%)</title><rect x="4.3616%" y="533" width="0.0142%" height="15" fill="rgb(212,155,44)" fg:x="20949" fg:w="68"/><text x="4.6116%" y="543.50"></text></g><g><title>Parse::do_one_block (368 samples, 0.08%)</title><rect x="4.3095%" y="565" width="0.0766%" height="15" fill="rgb(226,2,50)" fg:x="20699" fg:w="368"/><text x="4.5595%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (363 samples, 0.08%)</title><rect x="4.3106%" y="549" width="0.0756%" height="15" fill="rgb(234,177,6)" fg:x="20704" fg:w="363"/><text x="4.5606%" y="559.50"></text></g><g><title>Parse::do_all_blocks (378 samples, 0.08%)</title><rect x="4.3087%" y="581" width="0.0787%" height="15" fill="rgb(217,24,9)" fg:x="20695" fg:w="378"/><text x="4.5587%" y="591.50"></text></g><g><title>ParseGenerator::generate (439 samples, 0.09%)</title><rect x="4.3010%" y="613" width="0.0914%" height="15" fill="rgb(220,13,46)" fg:x="20658" fg:w="439"/><text x="4.5510%" y="623.50"></text></g><g><title>Parse::Parse (439 samples, 0.09%)</title><rect x="4.3010%" y="597" width="0.0914%" height="15" fill="rgb(239,221,27)" fg:x="20658" fg:w="439"/><text x="4.5510%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (68 samples, 0.01%)</title><rect x="4.3924%" y="613" width="0.0142%" height="15" fill="rgb(222,198,25)" fg:x="21097" fg:w="68"/><text x="4.6424%" y="623.50"></text></g><g><title>Parse::do_call (689 samples, 0.14%)</title><rect x="4.2702%" y="629" width="0.1434%" height="15" fill="rgb(211,99,13)" fg:x="20510" fg:w="689"/><text x="4.5202%" y="639.50"></text></g><g><title>Parse::do_field_access (101 samples, 0.02%)</title><rect x="4.4170%" y="629" width="0.0210%" height="15" fill="rgb(232,111,31)" fg:x="21215" fg:w="101"/><text x="4.6670%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (940 samples, 0.20%)</title><rect x="4.2610%" y="645" width="0.1957%" height="15" fill="rgb(245,82,37)" fg:x="20466" fg:w="940"/><text x="4.5110%" y="655.50"></text></g><g><title>Parse::do_one_block (953 samples, 0.20%)</title><rect x="4.2585%" y="661" width="0.1984%" height="15" fill="rgb(227,149,46)" fg:x="20454" fg:w="953"/><text x="4.5085%" y="671.50"></text></g><g><title>Parse::do_all_blocks (968 samples, 0.20%)</title><rect x="4.2579%" y="677" width="0.2015%" height="15" fill="rgb(218,36,50)" fg:x="20451" fg:w="968"/><text x="4.5079%" y="687.50"></text></g><g><title>Parse::Parse (1,056 samples, 0.22%)</title><rect x="4.2491%" y="693" width="0.2199%" height="15" fill="rgb(226,80,48)" fg:x="20409" fg:w="1056"/><text x="4.4991%" y="703.50"></text></g><g><title>ParseGenerator::generate (1,058 samples, 0.22%)</title><rect x="4.2491%" y="709" width="0.2203%" height="15" fill="rgb(238,224,15)" fg:x="20409" fg:w="1058"/><text x="4.4991%" y="719.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="4.4736%" y="613" width="0.0177%" height="15" fill="rgb(241,136,10)" fg:x="21487" fg:w="85"/><text x="4.7236%" y="623.50"></text></g><g><title>Parse::do_one_block (112 samples, 0.02%)</title><rect x="4.4721%" y="645" width="0.0233%" height="15" fill="rgb(208,32,45)" fg:x="21480" fg:w="112"/><text x="4.7221%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (111 samples, 0.02%)</title><rect x="4.4723%" y="629" width="0.0231%" height="15" fill="rgb(207,135,9)" fg:x="21481" fg:w="111"/><text x="4.7223%" y="639.50"></text></g><g><title>Parse::do_all_blocks (115 samples, 0.02%)</title><rect x="4.4719%" y="661" width="0.0239%" height="15" fill="rgb(206,86,44)" fg:x="21479" fg:w="115"/><text x="4.7219%" y="671.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="4.4715%" y="693" width="0.0250%" height="15" fill="rgb(245,177,15)" fg:x="21477" fg:w="120"/><text x="4.7215%" y="703.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="4.4715%" y="677" width="0.0250%" height="15" fill="rgb(206,64,50)" fg:x="21477" fg:w="120"/><text x="4.7215%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (144 samples, 0.03%)</title><rect x="4.4694%" y="709" width="0.0300%" height="15" fill="rgb(234,36,40)" fg:x="21467" fg:w="144"/><text x="4.7194%" y="719.50"></text></g><g><title>Parse::do_call (1,465 samples, 0.31%)</title><rect x="4.1990%" y="725" width="0.3050%" height="15" fill="rgb(213,64,8)" fg:x="20168" fg:w="1465"/><text x="4.4490%" y="735.50"></text></g><g><title>Parse::do_get_xxx (60 samples, 0.01%)</title><rect x="4.5079%" y="709" width="0.0125%" height="15" fill="rgb(210,75,36)" fg:x="21652" fg:w="60"/><text x="4.7579%" y="719.50"></text></g><g><title>GraphKit::access_store_at (62 samples, 0.01%)</title><rect x="4.5215%" y="693" width="0.0129%" height="15" fill="rgb(229,88,21)" fg:x="21717" fg:w="62"/><text x="4.7715%" y="703.50"></text></g><g><title>BarrierSetC2::store_at (62 samples, 0.01%)</title><rect x="4.5215%" y="677" width="0.0129%" height="15" fill="rgb(252,204,47)" fg:x="21717" fg:w="62"/><text x="4.7715%" y="687.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (60 samples, 0.01%)</title><rect x="4.5219%" y="661" width="0.0125%" height="15" fill="rgb(208,77,27)" fg:x="21719" fg:w="60"/><text x="4.7719%" y="671.50"></text></g><g><title>Parse::do_put_xxx (68 samples, 0.01%)</title><rect x="4.5204%" y="709" width="0.0142%" height="15" fill="rgb(221,76,26)" fg:x="21712" fg:w="68"/><text x="4.7704%" y="719.50"></text></g><g><title>Parse::do_field_access (139 samples, 0.03%)</title><rect x="4.5065%" y="725" width="0.0289%" height="15" fill="rgb(225,139,18)" fg:x="21645" fg:w="139"/><text x="4.7565%" y="735.50"></text></g><g><title>Parse::do_all_blocks (1,709 samples, 0.36%)</title><rect x="4.1919%" y="773" width="0.3558%" height="15" fill="rgb(230,137,11)" fg:x="20134" fg:w="1709"/><text x="4.4419%" y="783.50"></text></g><g><title>Parse::do_one_block (1,709 samples, 0.36%)</title><rect x="4.1919%" y="757" width="0.3558%" height="15" fill="rgb(212,28,1)" fg:x="20134" fg:w="1709"/><text x="4.4419%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (1,705 samples, 0.35%)</title><rect x="4.1927%" y="741" width="0.3550%" height="15" fill="rgb(248,164,17)" fg:x="20138" fg:w="1705"/><text x="4.4427%" y="751.50"></text></g><g><title>ParseGenerator::generate (1,728 samples, 0.36%)</title><rect x="4.1886%" y="805" width="0.3598%" height="15" fill="rgb(222,171,42)" fg:x="20118" fg:w="1728"/><text x="4.4386%" y="815.50"></text></g><g><title>Parse::Parse (1,728 samples, 0.36%)</title><rect x="4.1886%" y="789" width="0.3598%" height="15" fill="rgb(243,84,45)" fg:x="20118" fg:w="1728"/><text x="4.4386%" y="799.50"></text></g><g><title>Parse::do_one_block (84 samples, 0.02%)</title><rect x="4.5756%" y="549" width="0.0175%" height="15" fill="rgb(252,49,23)" fg:x="21977" fg:w="84"/><text x="4.8256%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="4.5758%" y="533" width="0.0173%" height="15" fill="rgb(215,19,7)" fg:x="21978" fg:w="83"/><text x="4.8258%" y="543.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.02%)</title><rect x="4.5756%" y="565" width="0.0181%" height="15" fill="rgb(238,81,41)" fg:x="21977" fg:w="87"/><text x="4.8256%" y="575.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.02%)</title><rect x="4.5748%" y="597" width="0.0202%" height="15" fill="rgb(210,199,37)" fg:x="21973" fg:w="97"/><text x="4.8248%" y="607.50"></text></g><g><title>Parse::Parse (97 samples, 0.02%)</title><rect x="4.5748%" y="581" width="0.0202%" height="15" fill="rgb(244,192,49)" fg:x="21973" fg:w="97"/><text x="4.8248%" y="591.50"></text></g><g><title>Parse::do_call (147 samples, 0.03%)</title><rect x="4.5687%" y="613" width="0.0306%" height="15" fill="rgb(226,211,11)" fg:x="21944" fg:w="147"/><text x="4.8187%" y="623.50"></text></g><g><title>Parse::do_one_block (216 samples, 0.04%)</title><rect x="4.5664%" y="645" width="0.0450%" height="15" fill="rgb(236,162,54)" fg:x="21933" fg:w="216"/><text x="4.8164%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.04%)</title><rect x="4.5669%" y="629" width="0.0446%" height="15" fill="rgb(220,229,9)" fg:x="21935" fg:w="214"/><text x="4.8169%" y="639.50"></text></g><g><title>Parse::do_all_blocks (219 samples, 0.05%)</title><rect x="4.5664%" y="661" width="0.0456%" height="15" fill="rgb(250,87,22)" fg:x="21933" fg:w="219"/><text x="4.8164%" y="671.50"></text></g><g><title>ParseGenerator::generate (237 samples, 0.05%)</title><rect x="4.5639%" y="693" width="0.0493%" height="15" fill="rgb(239,43,17)" fg:x="21921" fg:w="237"/><text x="4.8139%" y="703.50"></text></g><g><title>Parse::Parse (237 samples, 0.05%)</title><rect x="4.5639%" y="677" width="0.0493%" height="15" fill="rgb(231,177,25)" fg:x="21921" fg:w="237"/><text x="4.8139%" y="687.50"></text></g><g><title>Parse::do_call (327 samples, 0.07%)</title><rect x="4.5529%" y="709" width="0.0681%" height="15" fill="rgb(219,179,1)" fg:x="21868" fg:w="327"/><text x="4.8029%" y="719.50"></text></g><g><title>Parse::do_one_block (402 samples, 0.08%)</title><rect x="4.5500%" y="741" width="0.0837%" height="15" fill="rgb(238,219,53)" fg:x="21854" fg:w="402"/><text x="4.8000%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (402 samples, 0.08%)</title><rect x="4.5500%" y="725" width="0.0837%" height="15" fill="rgb(232,167,36)" fg:x="21854" fg:w="402"/><text x="4.8000%" y="735.50"></text></g><g><title>Parse::do_all_blocks (403 samples, 0.08%)</title><rect x="4.5500%" y="757" width="0.0839%" height="15" fill="rgb(244,19,51)" fg:x="21854" fg:w="403"/><text x="4.8000%" y="767.50"></text></g><g><title>ParseGenerator::generate (408 samples, 0.08%)</title><rect x="4.5492%" y="789" width="0.0849%" height="15" fill="rgb(224,6,22)" fg:x="21850" fg:w="408"/><text x="4.7992%" y="799.50"></text></g><g><title>Parse::Parse (408 samples, 0.08%)</title><rect x="4.5492%" y="773" width="0.0849%" height="15" fill="rgb(224,145,5)" fg:x="21850" fg:w="408"/><text x="4.7992%" y="783.50"></text></g><g><title>Parse::do_all_blocks (62 samples, 0.01%)</title><rect x="4.6345%" y="741" width="0.0129%" height="15" fill="rgb(234,130,49)" fg:x="22260" fg:w="62"/><text x="4.8845%" y="751.50"></text></g><g><title>Parse::do_one_block (62 samples, 0.01%)</title><rect x="4.6345%" y="725" width="0.0129%" height="15" fill="rgb(254,6,2)" fg:x="22260" fg:w="62"/><text x="4.8845%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (62 samples, 0.01%)</title><rect x="4.6345%" y="709" width="0.0129%" height="15" fill="rgb(208,96,46)" fg:x="22260" fg:w="62"/><text x="4.8845%" y="719.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="4.6343%" y="773" width="0.0139%" height="15" fill="rgb(239,3,39)" fg:x="22259" fg:w="67"/><text x="4.8843%" y="783.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="4.6343%" y="757" width="0.0139%" height="15" fill="rgb(233,210,1)" fg:x="22259" fg:w="67"/><text x="4.8843%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (71 samples, 0.01%)</title><rect x="4.6341%" y="789" width="0.0148%" height="15" fill="rgb(244,137,37)" fg:x="22258" fg:w="71"/><text x="4.8841%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (486 samples, 0.10%)</title><rect x="4.5483%" y="805" width="0.1012%" height="15" fill="rgb(240,136,2)" fg:x="21846" fg:w="486"/><text x="4.7983%" y="815.50"></text></g><g><title>Parse::do_call (2,443 samples, 0.51%)</title><rect x="4.1434%" y="821" width="0.5086%" height="15" fill="rgb(239,18,37)" fg:x="19901" fg:w="2443"/><text x="4.3934%" y="831.50"></text></g><g><title>Parse::do_all_blocks (2,455 samples, 0.51%)</title><rect x="4.1426%" y="869" width="0.5111%" height="15" fill="rgb(218,185,22)" fg:x="19897" fg:w="2455"/><text x="4.3926%" y="879.50"></text></g><g><title>Parse::do_one_block (2,455 samples, 0.51%)</title><rect x="4.1426%" y="853" width="0.5111%" height="15" fill="rgb(225,218,4)" fg:x="19897" fg:w="2455"/><text x="4.3926%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (2,455 samples, 0.51%)</title><rect x="4.1426%" y="837" width="0.5111%" height="15" fill="rgb(230,182,32)" fg:x="19897" fg:w="2455"/><text x="4.3926%" y="847.50"></text></g><g><title>C2Compiler::compile_method (2,499 samples, 0.52%)</title><rect x="4.1340%" y="933" width="0.5203%" height="15" fill="rgb(242,56,43)" fg:x="19856" fg:w="2499"/><text x="4.3840%" y="943.50"></text></g><g><title>Compile::Compile (2,499 samples, 0.52%)</title><rect x="4.1340%" y="917" width="0.5203%" height="15" fill="rgb(233,99,24)" fg:x="19856" fg:w="2499"/><text x="4.3840%" y="927.50"></text></g><g><title>ParseGenerator::generate (2,458 samples, 0.51%)</title><rect x="4.1426%" y="901" width="0.5118%" height="15" fill="rgb(234,209,42)" fg:x="19897" fg:w="2458"/><text x="4.3926%" y="911.50"></text></g><g><title>Parse::Parse (2,458 samples, 0.51%)</title><rect x="4.1426%" y="885" width="0.5118%" height="15" fill="rgb(227,7,12)" fg:x="19897" fg:w="2458"/><text x="4.3926%" y="895.50"></text></g><g><title>MachSpillCopyNode::implementation (62 samples, 0.01%)</title><rect x="4.6589%" y="853" width="0.0129%" height="15" fill="rgb(245,203,43)" fg:x="22377" fg:w="62"/><text x="4.9089%" y="863.50"></text></g><g><title>Compile::Output (84 samples, 0.02%)</title><rect x="4.6549%" y="917" width="0.0175%" height="15" fill="rgb(238,205,33)" fg:x="22358" fg:w="84"/><text x="4.9049%" y="927.50"></text></g><g><title>Compile::init_buffer (84 samples, 0.02%)</title><rect x="4.6549%" y="901" width="0.0175%" height="15" fill="rgb(231,56,7)" fg:x="22358" fg:w="84"/><text x="4.9049%" y="911.50"></text></g><g><title>Compile::shorten_branches (66 samples, 0.01%)</title><rect x="4.6587%" y="885" width="0.0137%" height="15" fill="rgb(244,186,29)" fg:x="22376" fg:w="66"/><text x="4.9087%" y="895.50"></text></g><g><title>Compile::scratch_emit_size (66 samples, 0.01%)</title><rect x="4.6587%" y="869" width="0.0137%" height="15" fill="rgb(234,111,31)" fg:x="22376" fg:w="66"/><text x="4.9087%" y="879.50"></text></g><g><title>PhaseCFG::schedule_late (56 samples, 0.01%)</title><rect x="4.6797%" y="885" width="0.0117%" height="15" fill="rgb(241,149,10)" fg:x="22477" fg:w="56"/><text x="4.9297%" y="895.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (56 samples, 0.01%)</title><rect x="4.6797%" y="869" width="0.0117%" height="15" fill="rgb(249,206,44)" fg:x="22477" fg:w="56"/><text x="4.9297%" y="879.50"></text></g><g><title>PhaseCFG::schedule_local (249 samples, 0.05%)</title><rect x="4.6914%" y="885" width="0.0518%" height="15" fill="rgb(251,153,30)" fg:x="22533" fg:w="249"/><text x="4.9414%" y="895.50"></text></g><g><title>PhaseCFG::sched_call (249 samples, 0.05%)</title><rect x="4.6914%" y="869" width="0.0518%" height="15" fill="rgb(239,152,38)" fg:x="22533" fg:w="249"/><text x="4.9414%" y="879.50"></text></g><g><title>PhaseCFG::do_global_code_motion (319 samples, 0.07%)</title><rect x="4.6789%" y="917" width="0.0664%" height="15" fill="rgb(249,139,47)" fg:x="22473" fg:w="319"/><text x="4.9289%" y="927.50"></text></g><g><title>PhaseCFG::global_code_motion (319 samples, 0.07%)</title><rect x="4.6789%" y="901" width="0.0664%" height="15" fill="rgb(244,64,35)" fg:x="22473" fg:w="319"/><text x="4.9289%" y="911.50"></text></g><g><title>PhaseChaitin::Split (65 samples, 0.01%)</title><rect x="4.7453%" y="901" width="0.0135%" height="15" fill="rgb(216,46,15)" fg:x="22792" fg:w="65"/><text x="4.9953%" y="911.50"></text></g><g><title>Compile::Code_Gen (516 samples, 0.11%)</title><rect x="4.6549%" y="933" width="0.1074%" height="15" fill="rgb(250,74,19)" fg:x="22358" fg:w="516"/><text x="4.9049%" y="943.50"></text></g><g><title>PhaseChaitin::Register_Allocate (82 samples, 0.02%)</title><rect x="4.7453%" y="917" width="0.0171%" height="15" fill="rgb(249,42,33)" fg:x="22792" fg:w="82"/><text x="4.9953%" y="927.50"></text></g><g><title>OopFlow::build_oop_map (147 samples, 0.03%)</title><rect x="4.9416%" y="853" width="0.0306%" height="15" fill="rgb(242,149,17)" fg:x="23735" fg:w="147"/><text x="5.1916%" y="863.50"></text></g><g><title>OopFlow::compute_reach (287 samples, 0.06%)</title><rect x="4.9139%" y="869" width="0.0598%" height="15" fill="rgb(244,29,21)" fg:x="23602" fg:w="287"/><text x="5.1639%" y="879.50"></text></g><g><title>__memmove_sse2_unaligned_erms (106 samples, 0.02%)</title><rect x="4.9778%" y="869" width="0.0221%" height="15" fill="rgb(220,130,37)" fg:x="23909" fg:w="106"/><text x="5.2278%" y="879.50"></text></g><g><title>Compile::BuildOopMaps (1,146 samples, 0.24%)</title><rect x="4.7661%" y="885" width="0.2386%" height="15" fill="rgb(211,67,2)" fg:x="22892" fg:w="1146"/><text x="5.0161%" y="895.50"></text></g><g><title>Compile::init_scratch_buffer_blob (80 samples, 0.02%)</title><rect x="5.0132%" y="869" width="0.0167%" height="15" fill="rgb(235,68,52)" fg:x="24079" fg:w="80"/><text x="5.2632%" y="879.50"></text></g><g><title>BufferBlob::create (80 samples, 0.02%)</title><rect x="5.0132%" y="853" width="0.0167%" height="15" fill="rgb(246,142,3)" fg:x="24079" fg:w="80"/><text x="5.2632%" y="863.50"></text></g><g><title>Compile::scratch_emit_size (194 samples, 0.04%)</title><rect x="5.0732%" y="853" width="0.0404%" height="15" fill="rgb(241,25,7)" fg:x="24367" fg:w="194"/><text x="5.3232%" y="863.50"></text></g><g><title>Compile::shorten_branches (433 samples, 0.09%)</title><rect x="5.0301%" y="869" width="0.0902%" height="15" fill="rgb(242,119,39)" fg:x="24160" fg:w="433"/><text x="5.2801%" y="879.50"></text></g><g><title>Compile::init_buffer (557 samples, 0.12%)</title><rect x="5.0047%" y="885" width="0.1160%" height="15" fill="rgb(241,98,45)" fg:x="24038" fg:w="557"/><text x="5.2547%" y="895.50"></text></g><g><title>Compile::Output (1,721 samples, 0.36%)</title><rect x="4.7632%" y="901" width="0.3583%" height="15" fill="rgb(254,28,30)" fg:x="22878" fg:w="1721"/><text x="5.0132%" y="911.50"></text></g><g><title>Compile::FillLocArray (60 samples, 0.01%)</title><rect x="5.1767%" y="869" width="0.0125%" height="15" fill="rgb(241,142,54)" fg:x="24864" fg:w="60"/><text x="5.4267%" y="879.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (59 samples, 0.01%)</title><rect x="5.1910%" y="869" width="0.0123%" height="15" fill="rgb(222,85,15)" fg:x="24933" fg:w="59"/><text x="5.4410%" y="879.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (51 samples, 0.01%)</title><rect x="5.2071%" y="853" width="0.0106%" height="15" fill="rgb(210,85,47)" fg:x="25010" fg:w="51"/><text x="5.4571%" y="863.50"></text></g><g><title>DebugInformationRecorder::describe_scope (76 samples, 0.02%)</title><rect x="5.2033%" y="869" width="0.0158%" height="15" fill="rgb(224,206,25)" fg:x="24992" fg:w="76"/><text x="5.4533%" y="879.50"></text></g><g><title>Compile::Process_OopMap_Node (299 samples, 0.06%)</title><rect x="5.1688%" y="885" width="0.0623%" height="15" fill="rgb(243,201,19)" fg:x="24826" fg:w="299"/><text x="5.4188%" y="895.50"></text></g><g><title>Compile::valid_bundle_info (100 samples, 0.02%)</title><rect x="5.2335%" y="885" width="0.0208%" height="15" fill="rgb(236,59,4)" fg:x="25137" fg:w="100"/><text x="5.4835%" y="895.50"></text></g><g><title>Compile::fill_buffer (793 samples, 0.17%)</title><rect x="5.1217%" y="901" width="0.1651%" height="15" fill="rgb(254,179,45)" fg:x="24600" fg:w="793"/><text x="5.3717%" y="911.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (50 samples, 0.01%)</title><rect x="5.2981%" y="885" width="0.0104%" height="15" fill="rgb(226,14,10)" fg:x="25447" fg:w="50"/><text x="5.5481%" y="895.50"></text></g><g><title>Matcher::find_shared (453 samples, 0.09%)</title><rect x="5.3085%" y="885" width="0.0943%" height="15" fill="rgb(244,27,41)" fg:x="25497" fg:w="453"/><text x="5.5585%" y="895.50"></text></g><g><title>Arena::contains (746 samples, 0.16%)</title><rect x="5.5056%" y="869" width="0.1553%" height="15" fill="rgb(235,35,32)" fg:x="26444" fg:w="746"/><text x="5.7556%" y="879.50"></text></g><g><title>Matcher::match_tree (136 samples, 0.03%)</title><rect x="5.6793%" y="853" width="0.0283%" height="15" fill="rgb(218,68,31)" fg:x="27278" fg:w="136"/><text x="5.9293%" y="863.50"></text></g><g><title>Matcher::match_sfpt (180 samples, 0.04%)</title><rect x="5.6724%" y="869" width="0.0375%" height="15" fill="rgb(207,120,37)" fg:x="27245" fg:w="180"/><text x="5.9224%" y="879.50"></text></g><g><title>Matcher::Label_Root (83 samples, 0.02%)</title><rect x="5.8129%" y="805" width="0.0173%" height="15" fill="rgb(227,98,0)" fg:x="27920" fg:w="83"/><text x="6.0629%" y="815.50"></text></g><g><title>Matcher::Label_Root (162 samples, 0.03%)</title><rect x="5.8088%" y="821" width="0.0337%" height="15" fill="rgb(207,7,3)" fg:x="27900" fg:w="162"/><text x="6.0588%" y="831.50"></text></g><g><title>State::DFA (86 samples, 0.02%)</title><rect x="5.8450%" y="821" width="0.0179%" height="15" fill="rgb(206,98,19)" fg:x="28074" fg:w="86"/><text x="6.0950%" y="831.50"></text></g><g><title>Matcher::Label_Root (376 samples, 0.08%)</title><rect x="5.7880%" y="837" width="0.0783%" height="15" fill="rgb(217,5,26)" fg:x="27800" fg:w="376"/><text x="6.0380%" y="847.50"></text></g><g><title>Matcher::Label_Root (577 samples, 0.12%)</title><rect x="5.7659%" y="853" width="0.1201%" height="15" fill="rgb(235,190,38)" fg:x="27694" fg:w="577"/><text x="6.0159%" y="863.50"></text></g><g><title>Matcher::ReduceInst_Interior (74 samples, 0.02%)</title><rect x="5.9029%" y="805" width="0.0154%" height="15" fill="rgb(247,86,24)" fg:x="28352" fg:w="74"/><text x="6.1529%" y="815.50"></text></g><g><title>Matcher::ReduceInst (128 samples, 0.03%)</title><rect x="5.8995%" y="821" width="0.0266%" height="15" fill="rgb(205,101,16)" fg:x="28336" fg:w="128"/><text x="6.1495%" y="831.50"></text></g><g><title>Matcher::ReduceInst_Interior (212 samples, 0.04%)</title><rect x="5.8941%" y="837" width="0.0441%" height="15" fill="rgb(246,168,33)" fg:x="28310" fg:w="212"/><text x="6.1441%" y="847.50"></text></g><g><title>State::MachNodeGenerator (78 samples, 0.02%)</title><rect x="5.9466%" y="837" width="0.0162%" height="15" fill="rgb(231,114,1)" fg:x="28562" fg:w="78"/><text x="6.1966%" y="847.50"></text></g><g><title>Matcher::ReduceInst (403 samples, 0.08%)</title><rect x="5.8860%" y="853" width="0.0839%" height="15" fill="rgb(207,184,53)" fg:x="28271" fg:w="403"/><text x="6.1360%" y="863.50"></text></g><g><title>Matcher::match_tree (1,257 samples, 0.26%)</title><rect x="5.7099%" y="869" width="0.2617%" height="15" fill="rgb(224,95,51)" fg:x="27425" fg:w="1257"/><text x="5.9599%" y="879.50"></text></g><g><title>Node::clone (85 samples, 0.02%)</title><rect x="5.9720%" y="869" width="0.0177%" height="15" fill="rgb(212,188,45)" fg:x="28684" fg:w="85"/><text x="6.2220%" y="879.50"></text></g><g><title>Node::out_grow (52 samples, 0.01%)</title><rect x="5.9899%" y="869" width="0.0108%" height="15" fill="rgb(223,154,38)" fg:x="28770" fg:w="52"/><text x="6.2399%" y="879.50"></text></g><g><title>Matcher::xform (2,862 samples, 0.60%)</title><rect x="5.4053%" y="885" width="0.5959%" height="15" fill="rgb(251,22,52)" fg:x="25962" fg:w="2862"/><text x="5.6553%" y="895.50"></text></g><g><title>Matcher::match (3,428 samples, 0.71%)</title><rect x="5.2899%" y="901" width="0.7137%" height="15" fill="rgb(229,209,22)" fg:x="25408" fg:w="3428"/><text x="5.5399%" y="911.50"></text></g><g><title>PhaseBlockLayout::find_edges (77 samples, 0.02%)</title><rect x="6.0043%" y="885" width="0.0160%" height="15" fill="rgb(234,138,34)" fg:x="28839" fg:w="77"/><text x="6.2543%" y="895.50"></text></g><g><title>PhaseBlockLayout::grow_traces (71 samples, 0.01%)</title><rect x="6.0203%" y="885" width="0.0148%" height="15" fill="rgb(212,95,11)" fg:x="28916" fg:w="71"/><text x="6.2703%" y="895.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (201 samples, 0.04%)</title><rect x="6.0036%" y="901" width="0.0418%" height="15" fill="rgb(240,179,47)" fg:x="28836" fg:w="201"/><text x="6.2536%" y="911.50"></text></g><g><title>PhaseCFG::build_cfg (169 samples, 0.04%)</title><rect x="6.0480%" y="885" width="0.0352%" height="15" fill="rgb(240,163,11)" fg:x="29049" fg:w="169"/><text x="6.2980%" y="895.50"></text></g><g><title>PhaseCFG::PhaseCFG (182 samples, 0.04%)</title><rect x="6.0455%" y="901" width="0.0379%" height="15" fill="rgb(236,37,12)" fg:x="29037" fg:w="182"/><text x="6.2955%" y="911.50"></text></g><g><title>PhaseCFG::do_DFS (50 samples, 0.01%)</title><rect x="6.0990%" y="869" width="0.0104%" height="15" fill="rgb(232,164,16)" fg:x="29294" fg:w="50"/><text x="6.3490%" y="879.50"></text></g><g><title>PhaseCFG::build_dominator_tree (131 samples, 0.03%)</title><rect x="6.0834%" y="885" width="0.0273%" height="15" fill="rgb(244,205,15)" fg:x="29219" fg:w="131"/><text x="6.3334%" y="895.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (70 samples, 0.01%)</title><rect x="6.1107%" y="885" width="0.0146%" height="15" fill="rgb(223,117,47)" fg:x="29350" fg:w="70"/><text x="6.3607%" y="895.50"></text></g><g><title>PhaseCFG::implicit_null_check (59 samples, 0.01%)</title><rect x="6.2235%" y="869" width="0.0123%" height="15" fill="rgb(244,107,35)" fg:x="29892" fg:w="59"/><text x="6.4735%" y="879.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (53 samples, 0.01%)</title><rect x="6.2385%" y="869" width="0.0110%" height="15" fill="rgb(205,140,8)" fg:x="29964" fg:w="53"/><text x="6.4885%" y="879.50"></text></g><g><title>Node_Backward_Iterator::next (338 samples, 0.07%)</title><rect x="6.2795%" y="853" width="0.0704%" height="15" fill="rgb(228,84,46)" fg:x="30161" fg:w="338"/><text x="6.5295%" y="863.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (137 samples, 0.03%)</title><rect x="6.3499%" y="853" width="0.0285%" height="15" fill="rgb(254,188,9)" fg:x="30499" fg:w="137"/><text x="6.5999%" y="863.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (172 samples, 0.04%)</title><rect x="6.3784%" y="853" width="0.0358%" height="15" fill="rgb(206,112,54)" fg:x="30636" fg:w="172"/><text x="6.6284%" y="863.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (86 samples, 0.02%)</title><rect x="6.4142%" y="853" width="0.0179%" height="15" fill="rgb(216,84,49)" fg:x="30808" fg:w="86"/><text x="6.6642%" y="863.50"></text></g><g><title>PhaseCFG::schedule_late (893 samples, 0.19%)</title><rect x="6.2495%" y="869" width="0.1859%" height="15" fill="rgb(214,194,35)" fg:x="30017" fg:w="893"/><text x="6.4995%" y="879.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (84 samples, 0.02%)</title><rect x="6.5048%" y="853" width="0.0175%" height="15" fill="rgb(249,28,3)" fg:x="31243" fg:w="84"/><text x="6.7548%" y="863.50"></text></g><g><title>PhaseCFG::select (107 samples, 0.02%)</title><rect x="6.5285%" y="853" width="0.0223%" height="15" fill="rgb(222,56,52)" fg:x="31357" fg:w="107"/><text x="6.7785%" y="863.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (88 samples, 0.02%)</title><rect x="6.5508%" y="853" width="0.0183%" height="15" fill="rgb(245,217,50)" fg:x="31464" fg:w="88"/><text x="6.8008%" y="863.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (67 samples, 0.01%)</title><rect x="6.5691%" y="853" width="0.0139%" height="15" fill="rgb(213,201,24)" fg:x="31552" fg:w="67"/><text x="6.8191%" y="863.50"></text></g><g><title>PhaseCFG::schedule_local (751 samples, 0.16%)</title><rect x="6.4355%" y="869" width="0.1564%" height="15" fill="rgb(248,116,28)" fg:x="30910" fg:w="751"/><text x="6.6855%" y="879.50"></text></g><g><title>RegMask::Size (130 samples, 0.03%)</title><rect x="6.6763%" y="853" width="0.0271%" height="15" fill="rgb(219,72,43)" fg:x="32067" fg:w="130"/><text x="6.9263%" y="863.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (573 samples, 0.12%)</title><rect x="6.6016%" y="869" width="0.1193%" height="15" fill="rgb(209,138,14)" fg:x="31708" fg:w="573"/><text x="6.8516%" y="879.50"></text></g><g><title>PhaseChaitin::mark_ssa (140 samples, 0.03%)</title><rect x="6.7209%" y="869" width="0.0291%" height="15" fill="rgb(222,18,33)" fg:x="32281" fg:w="140"/><text x="6.9709%" y="879.50"></text></g><g><title>IndexSet::initialize (148 samples, 0.03%)</title><rect x="6.7634%" y="853" width="0.0308%" height="15" fill="rgb(213,199,7)" fg:x="32485" fg:w="148"/><text x="7.0134%" y="863.50"></text></g><g><title>PhaseIFG::init (277 samples, 0.06%)</title><rect x="6.7500%" y="869" width="0.0577%" height="15" fill="rgb(250,110,10)" fg:x="32421" fg:w="277"/><text x="7.0000%" y="879.50"></text></g><g><title>[libc.so.6] (65 samples, 0.01%)</title><rect x="6.7942%" y="853" width="0.0135%" height="15" fill="rgb(248,123,6)" fg:x="32633" fg:w="65"/><text x="7.0442%" y="863.50"></text></g><g><title>IndexSet::initialize (80 samples, 0.02%)</title><rect x="6.8808%" y="853" width="0.0167%" height="15" fill="rgb(206,91,31)" fg:x="33049" fg:w="80"/><text x="7.1308%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (85 samples, 0.02%)</title><rect x="6.9289%" y="837" width="0.0177%" height="15" fill="rgb(211,154,13)" fg:x="33280" fg:w="85"/><text x="7.1789%" y="847.50"></text></g><g><title>PhaseLive::add_livein (237 samples, 0.05%)</title><rect x="6.8979%" y="853" width="0.0493%" height="15" fill="rgb(225,148,7)" fg:x="33131" fg:w="237"/><text x="7.1479%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (90 samples, 0.02%)</title><rect x="7.0047%" y="837" width="0.0187%" height="15" fill="rgb(220,160,43)" fg:x="33644" fg:w="90"/><text x="7.2547%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (139 samples, 0.03%)</title><rect x="7.0282%" y="837" width="0.0289%" height="15" fill="rgb(213,52,39)" fg:x="33757" fg:w="139"/><text x="7.2782%" y="847.50"></text></g><g><title>PhaseLive::add_liveout (545 samples, 0.11%)</title><rect x="6.9472%" y="853" width="0.1135%" height="15" fill="rgb(243,137,7)" fg:x="33368" fg:w="545"/><text x="7.1972%" y="863.50"></text></g><g><title>PhaseLive::compute (1,224 samples, 0.25%)</title><rect x="6.8079%" y="869" width="0.2548%" height="15" fill="rgb(230,79,13)" fg:x="32699" fg:w="1224"/><text x="7.0579%" y="879.50"></text></g><g><title>PhaseCFG::global_code_motion (4,521 samples, 0.94%)</title><rect x="6.1252%" y="885" width="0.9413%" height="15" fill="rgb(247,105,23)" fg:x="29420" fg:w="4521"/><text x="6.3752%" y="895.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,725 samples, 0.98%)</title><rect x="6.0834%" y="901" width="0.9837%" height="15" fill="rgb(223,179,41)" fg:x="29219" fg:w="4725"/><text x="6.3334%" y="911.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (116 samples, 0.02%)</title><rect x="7.0742%" y="901" width="0.0242%" height="15" fill="rgb(218,9,34)" fg:x="33978" fg:w="116"/><text x="7.3242%" y="911.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,744 samples, 0.36%)</title><rect x="7.1388%" y="885" width="0.3631%" height="15" fill="rgb(222,106,8)" fg:x="34288" fg:w="1744"/><text x="7.3888%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (389 samples, 0.08%)</title><rect x="7.6720%" y="869" width="0.0810%" height="15" fill="rgb(211,220,0)" fg:x="36849" fg:w="389"/><text x="7.9220%" y="879.50"></text></g><g><title>PhaseChaitin::bias_color (206 samples, 0.04%)</title><rect x="7.7529%" y="869" width="0.0429%" height="15" fill="rgb(229,52,16)" fg:x="37238" fg:w="206"/><text x="8.0029%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (63 samples, 0.01%)</title><rect x="7.9003%" y="853" width="0.0131%" height="15" fill="rgb(212,155,18)" fg:x="37946" fg:w="63"/><text x="8.1503%" y="863.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (109 samples, 0.02%)</title><rect x="7.9135%" y="853" width="0.0227%" height="15" fill="rgb(242,21,14)" fg:x="38009" fg:w="109"/><text x="8.1635%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (494 samples, 0.10%)</title><rect x="7.9362%" y="853" width="0.1029%" height="15" fill="rgb(222,19,48)" fg:x="38118" fg:w="494"/><text x="8.1862%" y="863.50"></text></g><g><title>PhaseIFG::re_insert (1,174 samples, 0.24%)</title><rect x="7.7996%" y="869" width="0.2444%" height="15" fill="rgb(232,45,27)" fg:x="37462" fg:w="1174"/><text x="8.0496%" y="879.50"></text></g><g><title>RegMask::clear_to_sets (215 samples, 0.04%)</title><rect x="8.0440%" y="869" width="0.0448%" height="15" fill="rgb(249,103,42)" fg:x="38636" fg:w="215"/><text x="8.2940%" y="879.50"></text></g><g><title>PhaseChaitin::Select (2,853 samples, 0.59%)</title><rect x="7.5019%" y="885" width="0.5940%" height="15" fill="rgb(246,81,33)" fg:x="36032" fg:w="2853"/><text x="7.7519%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (418 samples, 0.09%)</title><rect x="8.1762%" y="869" width="0.0870%" height="15" fill="rgb(252,33,42)" fg:x="39271" fg:w="418"/><text x="8.4262%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (115 samples, 0.02%)</title><rect x="8.3936%" y="853" width="0.0239%" height="15" fill="rgb(209,212,41)" fg:x="40315" fg:w="115"/><text x="8.6436%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (539 samples, 0.11%)</title><rect x="8.4175%" y="853" width="0.1122%" height="15" fill="rgb(207,154,6)" fg:x="40430" fg:w="539"/><text x="8.6675%" y="863.50"></text></g><g><title>PhaseIFG::remove_node (1,283 samples, 0.27%)</title><rect x="8.2632%" y="869" width="0.2671%" height="15" fill="rgb(223,64,47)" fg:x="39689" fg:w="1283"/><text x="8.5132%" y="879.50"></text></g><g><title>PhaseChaitin::Simplify (2,088 samples, 0.43%)</title><rect x="8.0958%" y="885" width="0.4347%" height="15" fill="rgb(211,161,38)" fg:x="38885" fg:w="2088"/><text x="8.3458%" y="895.50"></text></g><g><title>MachNode::rematerialize (208 samples, 0.04%)</title><rect x="9.2768%" y="869" width="0.0433%" height="15" fill="rgb(219,138,40)" fg:x="44557" fg:w="208"/><text x="9.5268%" y="879.50"></text></g><g><title>Node::rematerialize (238 samples, 0.05%)</title><rect x="9.3307%" y="869" width="0.0496%" height="15" fill="rgb(241,228,46)" fg:x="44816" fg:w="238"/><text x="9.5807%" y="879.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (59 samples, 0.01%)</title><rect x="9.4098%" y="869" width="0.0123%" height="15" fill="rgb(223,209,38)" fg:x="45196" fg:w="59"/><text x="9.6598%" y="879.50"></text></g><g><title>RegMask::is_aligned_pairs (51 samples, 0.01%)</title><rect x="9.4456%" y="837" width="0.0106%" height="15" fill="rgb(236,164,45)" fg:x="45368" fg:w="51"/><text x="9.6956%" y="847.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (103 samples, 0.02%)</title><rect x="9.4371%" y="853" width="0.0214%" height="15" fill="rgb(231,15,5)" fg:x="45327" fg:w="103"/><text x="9.6871%" y="863.50"></text></g><g><title>PhaseChaitin::split_USE (206 samples, 0.04%)</title><rect x="9.4221%" y="869" width="0.0429%" height="15" fill="rgb(252,35,15)" fg:x="45255" fg:w="206"/><text x="9.6721%" y="879.50"></text></g><g><title>PhaseChaitin::Split (4,632 samples, 0.96%)</title><rect x="8.5306%" y="885" width="0.9644%" height="15" fill="rgb(248,181,18)" fg:x="40973" fg:w="4632"/><text x="8.7806%" y="895.50"></text></g><g><title>IndexSet::IndexSet (410 samples, 0.09%)</title><rect x="9.7348%" y="869" width="0.0854%" height="15" fill="rgb(233,39,42)" fg:x="46757" fg:w="410"/><text x="9.9848%" y="879.50"></text></g><g><title>MachNode::rematerialize (89 samples, 0.02%)</title><rect x="9.8233%" y="869" width="0.0185%" height="15" fill="rgb(238,110,33)" fg:x="47182" fg:w="89"/><text x="10.0733%" y="879.50"></text></g><g><title>JVMState::debug_start (50 samples, 0.01%)</title><rect x="9.9813%" y="853" width="0.0104%" height="15" fill="rgb(233,195,10)" fg:x="47941" fg:w="50"/><text x="10.2313%" y="863.50"></text></g><g><title>MachNode::rematerialize (138 samples, 0.03%)</title><rect x="9.9923%" y="853" width="0.0287%" height="15" fill="rgb(254,105,3)" fg:x="47994" fg:w="138"/><text x="10.2423%" y="863.50"></text></g><g><title>PhaseChaitin::raise_pressure (175 samples, 0.04%)</title><rect x="10.0250%" y="853" width="0.0364%" height="15" fill="rgb(221,225,9)" fg:x="48151" fg:w="175"/><text x="10.2750%" y="863.50"></text></g><g><title>RegMask::is_UP (70 samples, 0.01%)</title><rect x="10.0469%" y="837" width="0.0146%" height="15" fill="rgb(224,227,45)" fg:x="48256" fg:w="70"/><text x="10.2969%" y="847.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,043 samples, 0.22%)</title><rect x="9.8458%" y="869" width="0.2172%" height="15" fill="rgb(229,198,43)" fg:x="47290" fg:w="1043"/><text x="10.0958%" y="879.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (68 samples, 0.01%)</title><rect x="10.0723%" y="869" width="0.0142%" height="15" fill="rgb(206,209,35)" fg:x="48378" fg:w="68"/><text x="10.3223%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (212 samples, 0.04%)</title><rect x="10.1641%" y="853" width="0.0441%" height="15" fill="rgb(245,195,53)" fg:x="48819" fg:w="212"/><text x="10.4141%" y="863.50"></text></g><g><title>RegMask::is_UP (102 samples, 0.02%)</title><rect x="10.2082%" y="853" width="0.0212%" height="15" fill="rgb(240,92,26)" fg:x="49031" fg:w="102"/><text x="10.4582%" y="863.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (697 samples, 0.15%)</title><rect x="10.0864%" y="869" width="0.1451%" height="15" fill="rgb(207,40,23)" fg:x="48446" fg:w="697"/><text x="10.3364%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (138 samples, 0.03%)</title><rect x="10.7464%" y="853" width="0.0287%" height="15" fill="rgb(223,111,35)" fg:x="51616" fg:w="138"/><text x="10.9964%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,090 samples, 0.23%)</title><rect x="10.7768%" y="853" width="0.2269%" height="15" fill="rgb(229,147,28)" fg:x="51762" fg:w="1090"/><text x="11.0268%" y="863.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,729 samples, 0.78%)</title><rect x="10.2316%" y="869" width="0.7764%" height="15" fill="rgb(211,29,28)" fg:x="49143" fg:w="3729"/><text x="10.4816%" y="879.50"></text></g><g><title>PhaseChaitin::lower_pressure (145 samples, 0.03%)</title><rect x="11.0079%" y="869" width="0.0302%" height="15" fill="rgb(228,72,33)" fg:x="52872" fg:w="145"/><text x="11.2579%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (282 samples, 0.06%)</title><rect x="11.1626%" y="853" width="0.0587%" height="15" fill="rgb(205,214,31)" fg:x="53615" fg:w="282"/><text x="11.4126%" y="863.50"></text></g><g><title>RegMask::Size (398 samples, 0.08%)</title><rect x="11.2213%" y="853" width="0.0829%" height="15" fill="rgb(224,111,15)" fg:x="53897" fg:w="398"/><text x="11.4713%" y="863.50"></text></g><g><title>RegMask::smear_to_sets (919 samples, 0.19%)</title><rect x="11.3042%" y="853" width="0.1913%" height="15" fill="rgb(253,21,26)" fg:x="54295" fg:w="919"/><text x="11.5542%" y="863.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,217 samples, 0.46%)</title><rect x="11.0383%" y="869" width="0.4616%" height="15" fill="rgb(245,139,43)" fg:x="53018" fg:w="2217"/><text x="11.2883%" y="879.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (55 samples, 0.01%)</title><rect x="11.4999%" y="869" width="0.0115%" height="15" fill="rgb(252,170,7)" fg:x="55235" fg:w="55"/><text x="11.7499%" y="879.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,707 samples, 2.02%)</title><rect x="9.4956%" y="885" width="2.0210%" height="15" fill="rgb(231,118,14)" fg:x="45608" fg:w="9707"/><text x="9.7456%" y="895.50">P..</text></g><g><title>IndexSetIterator::advance_and_next (88 samples, 0.02%)</title><rect x="11.6425%" y="853" width="0.0183%" height="15" fill="rgb(238,83,0)" fg:x="55920" fg:w="88"/><text x="11.8925%" y="863.50"></text></g><g><title>PhaseChaitin::interfere_with_live (485 samples, 0.10%)</title><rect x="11.5622%" y="869" width="0.1010%" height="15" fill="rgb(221,39,39)" fg:x="55534" fg:w="485"/><text x="11.8122%" y="879.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (712 samples, 0.15%)</title><rect x="11.5166%" y="885" width="0.1482%" height="15" fill="rgb(222,119,46)" fg:x="55315" fg:w="712"/><text x="11.7666%" y="895.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (163 samples, 0.03%)</title><rect x="11.6648%" y="885" width="0.0339%" height="15" fill="rgb(222,165,49)" fg:x="56027" fg:w="163"/><text x="11.9148%" y="895.50"></text></g><g><title>PhaseChaitin::compact (51 samples, 0.01%)</title><rect x="11.6990%" y="885" width="0.0106%" height="15" fill="rgb(219,113,52)" fg:x="56191" fg:w="51"/><text x="11.9490%" y="895.50"></text></g><g><title>PhaseChaitin::de_ssa (134 samples, 0.03%)</title><rect x="11.7096%" y="885" width="0.0279%" height="15" fill="rgb(214,7,15)" fg:x="56242" fg:w="134"/><text x="11.9596%" y="895.50"></text></g><g><title>PhaseChaitin::fixup_spills (99 samples, 0.02%)</title><rect x="11.7375%" y="885" width="0.0206%" height="15" fill="rgb(235,32,4)" fg:x="56376" fg:w="99"/><text x="11.9875%" y="895.50"></text></g><g><title>MachCallJavaNode::in_RegMask (73 samples, 0.02%)</title><rect x="12.2099%" y="869" width="0.0152%" height="15" fill="rgb(238,90,54)" fg:x="58645" fg:w="73"/><text x="12.4599%" y="879.50"></text></g><g><title>MachNode::ideal_reg (102 samples, 0.02%)</title><rect x="12.2265%" y="869" width="0.0212%" height="15" fill="rgb(213,208,19)" fg:x="58725" fg:w="102"/><text x="12.4765%" y="879.50"></text></g><g><title>MachNode::in_RegMask (83 samples, 0.02%)</title><rect x="12.2478%" y="869" width="0.0173%" height="15" fill="rgb(233,156,4)" fg:x="58827" fg:w="83"/><text x="12.4978%" y="879.50"></text></g><g><title>RegMask::Size (1,436 samples, 0.30%)</title><rect x="12.2904%" y="869" width="0.2990%" height="15" fill="rgb(207,194,5)" fg:x="59032" fg:w="1436"/><text x="12.5404%" y="879.50"></text></g><g><title>RegMask::clear_to_sets (233 samples, 0.05%)</title><rect x="12.5894%" y="869" width="0.0485%" height="15" fill="rgb(206,111,30)" fg:x="60468" fg:w="233"/><text x="12.8394%" y="879.50"></text></g><g><title>RegMask::is_aligned_pairs (119 samples, 0.02%)</title><rect x="12.6379%" y="869" width="0.0248%" height="15" fill="rgb(243,70,54)" fg:x="60701" fg:w="119"/><text x="12.8879%" y="879.50"></text></g><g><title>RegMask::is_bound1 (166 samples, 0.03%)</title><rect x="12.6627%" y="869" width="0.0346%" height="15" fill="rgb(242,28,8)" fg:x="60820" fg:w="166"/><text x="12.9127%" y="879.50"></text></g><g><title>RegMask::is_bound_pair (91 samples, 0.02%)</title><rect x="12.6973%" y="869" width="0.0189%" height="15" fill="rgb(219,106,18)" fg:x="60986" fg:w="91"/><text x="12.9473%" y="879.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (4,831 samples, 1.01%)</title><rect x="11.7581%" y="885" width="1.0058%" height="15" fill="rgb(244,222,10)" fg:x="56475" fg:w="4831"/><text x="12.0081%" y="895.50"></text></g><g><title>PhaseChaitin::merge_multidefs (679 samples, 0.14%)</title><rect x="12.7639%" y="885" width="0.1414%" height="15" fill="rgb(236,179,52)" fg:x="61306" fg:w="679"/><text x="13.0139%" y="895.50"></text></g><g><title>RegMask::Size (49 samples, 0.01%)</title><rect x="13.9704%" y="837" width="0.0102%" height="15" fill="rgb(213,23,39)" fg:x="67101" fg:w="49"/><text x="14.2204%" y="847.50"></text></g><g><title>PhaseChaitin::use_prior_register (131 samples, 0.03%)</title><rect x="13.9556%" y="853" width="0.0273%" height="15" fill="rgb(238,48,10)" fg:x="67030" fg:w="131"/><text x="14.2056%" y="863.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (56 samples, 0.01%)</title><rect x="13.9829%" y="853" width="0.0117%" height="15" fill="rgb(251,196,23)" fg:x="67161" fg:w="56"/><text x="14.2329%" y="863.50"></text></g><g><title>PhaseChaitin::elide_copy (3,021 samples, 0.63%)</title><rect x="13.3795%" y="869" width="0.6290%" height="15" fill="rgb(250,152,24)" fg:x="64263" fg:w="3021"/><text x="13.6295%" y="879.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (54 samples, 0.01%)</title><rect x="14.0112%" y="869" width="0.0112%" height="15" fill="rgb(209,150,17)" fg:x="67297" fg:w="54"/><text x="14.2612%" y="879.50"></text></g><g><title>[libc.so.6] (113 samples, 0.02%)</title><rect x="14.0250%" y="869" width="0.0235%" height="15" fill="rgb(234,202,34)" fg:x="67363" fg:w="113"/><text x="14.2750%" y="879.50"></text></g><g><title>find_lowest_bit (438 samples, 0.09%)</title><rect x="14.0595%" y="869" width="0.0912%" height="15" fill="rgb(253,148,53)" fg:x="67529" fg:w="438"/><text x="14.3095%" y="879.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,996 samples, 1.25%)</title><rect x="12.9053%" y="885" width="1.2484%" height="15" fill="rgb(218,129,16)" fg:x="61985" fg:w="5996"/><text x="13.1553%" y="895.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (291 samples, 0.06%)</title><rect x="14.1536%" y="885" width="0.0606%" height="15" fill="rgb(216,85,19)" fg:x="67981" fg:w="291"/><text x="14.4036%" y="895.50"></text></g><g><title>PhaseIFG::Union (52 samples, 0.01%)</title><rect x="14.2494%" y="837" width="0.0108%" height="15" fill="rgb(235,228,7)" fg:x="68441" fg:w="52"/><text x="14.4994%" y="847.50"></text></g><g><title>PhaseCoalesce::combine_these_two (88 samples, 0.02%)</title><rect x="14.2434%" y="853" width="0.0183%" height="15" fill="rgb(245,175,0)" fg:x="68412" fg:w="88"/><text x="14.4934%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (231 samples, 0.05%)</title><rect x="14.2155%" y="869" width="0.0481%" height="15" fill="rgb(208,168,36)" fg:x="68278" fg:w="231"/><text x="14.4655%" y="879.50"></text></g><g><title>PhaseCFG::is_uncommon (192 samples, 0.04%)</title><rect x="14.2771%" y="853" width="0.0400%" height="15" fill="rgb(246,171,24)" fg:x="68574" fg:w="192"/><text x="14.5271%" y="863.50"></text></g><g><title>Block::has_uncommon_code (50 samples, 0.01%)</title><rect x="14.3067%" y="837" width="0.0104%" height="15" fill="rgb(215,142,24)" fg:x="68716" fg:w="50"/><text x="14.5567%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (49 samples, 0.01%)</title><rect x="14.4116%" y="821" width="0.0102%" height="15" fill="rgb(250,187,7)" fg:x="69220" fg:w="49"/><text x="14.6616%" y="831.50"></text></g><g><title>IndexSet::lrg_union (449 samples, 0.09%)</title><rect x="14.3314%" y="837" width="0.0935%" height="15" fill="rgb(228,66,33)" fg:x="68835" fg:w="449"/><text x="14.5814%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (55 samples, 0.01%)</title><rect x="14.5367%" y="821" width="0.0115%" height="15" fill="rgb(234,215,21)" fg:x="69821" fg:w="55"/><text x="14.7867%" y="831.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (581 samples, 0.12%)</title><rect x="14.4299%" y="837" width="0.1210%" height="15" fill="rgb(222,191,20)" fg:x="69308" fg:w="581"/><text x="14.6799%" y="847.50"></text></g><g><title>PhaseIFG::effective_degree (143 samples, 0.03%)</title><rect x="14.5509%" y="837" width="0.0298%" height="15" fill="rgb(245,79,54)" fg:x="69889" fg:w="143"/><text x="14.8009%" y="847.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,803 samples, 0.38%)</title><rect x="14.2142%" y="885" width="0.3754%" height="15" fill="rgb(240,10,37)" fg:x="68272" fg:w="1803"/><text x="14.4642%" y="895.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,566 samples, 0.33%)</title><rect x="14.2636%" y="869" width="0.3260%" height="15" fill="rgb(214,192,32)" fg:x="68509" fg:w="1566"/><text x="14.5136%" y="879.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,309 samples, 0.27%)</title><rect x="14.3171%" y="853" width="0.2725%" height="15" fill="rgb(209,36,54)" fg:x="68766" fg:w="1309"/><text x="14.5671%" y="863.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (79 samples, 0.02%)</title><rect x="14.7039%" y="869" width="0.0164%" height="15" fill="rgb(220,10,11)" fg:x="70624" fg:w="79"/><text x="14.9539%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (637 samples, 0.13%)</title><rect x="14.7203%" y="869" width="0.1326%" height="15" fill="rgb(221,106,17)" fg:x="70703" fg:w="637"/><text x="14.9703%" y="879.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,272 samples, 0.26%)</title><rect x="14.5900%" y="885" width="0.2648%" height="15" fill="rgb(251,142,44)" fg:x="70077" fg:w="1272"/><text x="14.8400%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (88 samples, 0.02%)</title><rect x="14.9533%" y="869" width="0.0183%" height="15" fill="rgb(238,13,15)" fg:x="71822" fg:w="88"/><text x="15.2033%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (125 samples, 0.03%)</title><rect x="14.9716%" y="869" width="0.0260%" height="15" fill="rgb(208,107,27)" fg:x="71910" fg:w="125"/><text x="15.2216%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (534 samples, 0.11%)</title><rect x="14.9977%" y="869" width="0.1112%" height="15" fill="rgb(205,136,37)" fg:x="72035" fg:w="534"/><text x="15.2477%" y="879.50"></text></g><g><title>PhaseIFG::SquareUp (1,223 samples, 0.25%)</title><rect x="14.8548%" y="885" width="0.2546%" height="15" fill="rgb(250,205,27)" fg:x="71349" fg:w="1223"/><text x="15.1048%" y="895.50"></text></g><g><title>IndexSet::initialize (242 samples, 0.05%)</title><rect x="15.1420%" y="869" width="0.0504%" height="15" fill="rgb(210,80,43)" fg:x="72728" fg:w="242"/><text x="15.3920%" y="879.50"></text></g><g><title>[libc.so.6] (70 samples, 0.01%)</title><rect x="15.1923%" y="869" width="0.0146%" height="15" fill="rgb(247,160,36)" fg:x="72970" fg:w="70"/><text x="15.4423%" y="879.50"></text></g><g><title>PhaseIFG::init (469 samples, 0.10%)</title><rect x="15.1095%" y="885" width="0.0976%" height="15" fill="rgb(234,13,49)" fg:x="72572" fg:w="469"/><text x="15.3595%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (72 samples, 0.01%)</title><rect x="15.5498%" y="869" width="0.0150%" height="15" fill="rgb(234,122,0)" fg:x="74687" fg:w="72"/><text x="15.7998%" y="879.50"></text></g><g><title>IndexSet::free_block (66 samples, 0.01%)</title><rect x="15.5648%" y="869" width="0.0137%" height="15" fill="rgb(207,146,38)" fg:x="74759" fg:w="66"/><text x="15.8148%" y="879.50"></text></g><g><title>IndexSet::initialize (150 samples, 0.03%)</title><rect x="15.5785%" y="869" width="0.0312%" height="15" fill="rgb(207,177,25)" fg:x="74825" fg:w="150"/><text x="15.8285%" y="879.50"></text></g><g><title>__tls_get_addr (64 samples, 0.01%)</title><rect x="15.8465%" y="837" width="0.0133%" height="15" fill="rgb(211,178,42)" fg:x="76112" fg:w="64"/><text x="16.0965%" y="847.50"></text></g><g><title>IndexSet::alloc_block_containing (278 samples, 0.06%)</title><rect x="15.8051%" y="853" width="0.0579%" height="15" fill="rgb(230,69,54)" fg:x="75913" fg:w="278"/><text x="16.0551%" y="863.50"></text></g><g><title>IndexSet::initialize (57 samples, 0.01%)</title><rect x="15.8629%" y="853" width="0.0119%" height="15" fill="rgb(214,135,41)" fg:x="76191" fg:w="57"/><text x="16.1129%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (366 samples, 0.08%)</title><rect x="15.8769%" y="853" width="0.0762%" height="15" fill="rgb(237,67,25)" fg:x="76258" fg:w="366"/><text x="16.1269%" y="863.50"></text></g><g><title>PhaseLive::add_liveout (1,693 samples, 0.35%)</title><rect x="15.6104%" y="869" width="0.3525%" height="15" fill="rgb(222,189,50)" fg:x="74978" fg:w="1693"/><text x="15.8604%" y="879.50"></text></g><g><title>PhaseLive::compute (3,651 samples, 0.76%)</title><rect x="15.2082%" y="885" width="0.7601%" height="15" fill="rgb(245,148,34)" fg:x="73046" fg:w="3651"/><text x="15.4582%" y="895.50"></text></g><g><title>find_lowest_bit (64 samples, 0.01%)</title><rect x="15.9777%" y="885" width="0.0133%" height="15" fill="rgb(222,29,6)" fg:x="76742" fg:w="64"/><text x="16.2277%" y="895.50"></text></g><g><title>PhaseChaitin::Register_Allocate (42,680 samples, 8.89%)</title><rect x="7.1056%" y="901" width="8.8860%" height="15" fill="rgb(221,189,43)" fg:x="34129" fg:w="42680"/><text x="7.3556%" y="911.50">PhaseChaitin:..</text></g><g><title>Compile::Code_Gen (54,005 samples, 11.24%)</title><rect x="4.7626%" y="917" width="11.2438%" height="15" fill="rgb(207,36,27)" fg:x="22875" fg:w="54005"/><text x="5.0126%" y="927.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (60 samples, 0.01%)</title><rect x="15.9939%" y="901" width="0.0125%" height="15" fill="rgb(217,90,24)" fg:x="76820" fg:w="60"/><text x="16.2439%" y="911.50"></text></g><g><title>Compile::call_generator (54 samples, 0.01%)</title><rect x="16.0303%" y="437" width="0.0112%" height="15" fill="rgb(224,66,35)" fg:x="76995" fg:w="54"/><text x="16.2803%" y="447.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.01%)</title><rect x="16.0751%" y="197" width="0.0131%" height="15" fill="rgb(221,13,50)" fg:x="77210" fg:w="63"/><text x="16.3251%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="16.0761%" y="181" width="0.0121%" height="15" fill="rgb(236,68,49)" fg:x="77215" fg:w="58"/><text x="16.3261%" y="191.50"></text></g><g><title>Parse::do_all_blocks (66 samples, 0.01%)</title><rect x="16.0749%" y="213" width="0.0137%" height="15" fill="rgb(229,146,28)" fg:x="77209" fg:w="66"/><text x="16.3249%" y="223.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.02%)</title><rect x="16.0736%" y="245" width="0.0164%" height="15" fill="rgb(225,31,38)" fg:x="77203" fg:w="79"/><text x="16.3236%" y="255.50"></text></g><g><title>Parse::Parse (79 samples, 0.02%)</title><rect x="16.0736%" y="229" width="0.0164%" height="15" fill="rgb(250,208,3)" fg:x="77203" fg:w="79"/><text x="16.3236%" y="239.50"></text></g><g><title>Parse::do_call (140 samples, 0.03%)</title><rect x="16.0649%" y="261" width="0.0291%" height="15" fill="rgb(246,54,23)" fg:x="77161" fg:w="140"/><text x="16.3149%" y="271.50"></text></g><g><title>Parse::do_one_block (199 samples, 0.04%)</title><rect x="16.0630%" y="293" width="0.0414%" height="15" fill="rgb(243,76,11)" fg:x="77152" fg:w="199"/><text x="16.3130%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (196 samples, 0.04%)</title><rect x="16.0637%" y="277" width="0.0408%" height="15" fill="rgb(245,21,50)" fg:x="77155" fg:w="196"/><text x="16.3137%" y="287.50"></text></g><g><title>Parse::do_all_blocks (200 samples, 0.04%)</title><rect x="16.0630%" y="309" width="0.0416%" height="15" fill="rgb(228,9,43)" fg:x="77152" fg:w="200"/><text x="16.3130%" y="319.50"></text></g><g><title>ParseGenerator::generate (216 samples, 0.04%)</title><rect x="16.0614%" y="341" width="0.0450%" height="15" fill="rgb(208,100,47)" fg:x="77144" fg:w="216"/><text x="16.3114%" y="351.50"></text></g><g><title>Parse::Parse (216 samples, 0.04%)</title><rect x="16.0614%" y="325" width="0.0450%" height="15" fill="rgb(232,26,8)" fg:x="77144" fg:w="216"/><text x="16.3114%" y="335.50"></text></g><g><title>Parse::do_call (270 samples, 0.06%)</title><rect x="16.0545%" y="357" width="0.0562%" height="15" fill="rgb(216,166,38)" fg:x="77111" fg:w="270"/><text x="16.3045%" y="367.50"></text></g><g><title>Parse::do_one_block (372 samples, 0.08%)</title><rect x="16.0499%" y="389" width="0.0775%" height="15" fill="rgb(251,202,51)" fg:x="77089" fg:w="372"/><text x="16.2999%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (365 samples, 0.08%)</title><rect x="16.0514%" y="373" width="0.0760%" height="15" fill="rgb(254,216,34)" fg:x="77096" fg:w="365"/><text x="16.3014%" y="383.50"></text></g><g><title>Parse::do_all_blocks (375 samples, 0.08%)</title><rect x="16.0495%" y="405" width="0.0781%" height="15" fill="rgb(251,32,27)" fg:x="77087" fg:w="375"/><text x="16.2995%" y="415.50"></text></g><g><title>Parse::Parse (401 samples, 0.08%)</title><rect x="16.0462%" y="421" width="0.0835%" height="15" fill="rgb(208,127,28)" fg:x="77071" fg:w="401"/><text x="16.2962%" y="431.50"></text></g><g><title>ParseGenerator::generate (402 samples, 0.08%)</title><rect x="16.0462%" y="437" width="0.0837%" height="15" fill="rgb(224,137,22)" fg:x="77071" fg:w="402"/><text x="16.2962%" y="447.50"></text></g><g><title>Parse::do_call (523 samples, 0.11%)</title><rect x="16.0303%" y="453" width="0.1089%" height="15" fill="rgb(254,70,32)" fg:x="76995" fg:w="523"/><text x="16.2803%" y="463.50"></text></g><g><title>Parse::do_all_blocks (616 samples, 0.13%)</title><rect x="16.0253%" y="501" width="0.1283%" height="15" fill="rgb(229,75,37)" fg:x="76971" fg:w="616"/><text x="16.2753%" y="511.50"></text></g><g><title>Parse::do_one_block (613 samples, 0.13%)</title><rect x="16.0260%" y="485" width="0.1276%" height="15" fill="rgb(252,64,23)" fg:x="76974" fg:w="613"/><text x="16.2760%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (611 samples, 0.13%)</title><rect x="16.0264%" y="469" width="0.1272%" height="15" fill="rgb(232,162,48)" fg:x="76976" fg:w="611"/><text x="16.2764%" y="479.50"></text></g><g><title>ParseGenerator::generate (626 samples, 0.13%)</title><rect x="16.0237%" y="533" width="0.1303%" height="15" fill="rgb(246,160,12)" fg:x="76963" fg:w="626"/><text x="16.2737%" y="543.50"></text></g><g><title>Parse::Parse (626 samples, 0.13%)</title><rect x="16.0237%" y="517" width="0.1303%" height="15" fill="rgb(247,166,0)" fg:x="76963" fg:w="626"/><text x="16.2737%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (63 samples, 0.01%)</title><rect x="16.1540%" y="533" width="0.0131%" height="15" fill="rgb(249,219,21)" fg:x="77589" fg:w="63"/><text x="16.4040%" y="543.50"></text></g><g><title>Parse::do_call (738 samples, 0.15%)</title><rect x="16.0149%" y="549" width="0.1537%" height="15" fill="rgb(205,209,3)" fg:x="76921" fg:w="738"/><text x="16.2649%" y="559.50"></text></g><g><title>ParseGenerator::generate (746 samples, 0.16%)</title><rect x="16.0145%" y="629" width="0.1553%" height="15" fill="rgb(243,44,1)" fg:x="76919" fg:w="746"/><text x="16.2645%" y="639.50"></text></g><g><title>Parse::Parse (746 samples, 0.16%)</title><rect x="16.0145%" y="613" width="0.1553%" height="15" fill="rgb(206,159,16)" fg:x="76919" fg:w="746"/><text x="16.2645%" y="623.50"></text></g><g><title>Parse::do_all_blocks (744 samples, 0.15%)</title><rect x="16.0149%" y="597" width="0.1549%" height="15" fill="rgb(244,77,30)" fg:x="76921" fg:w="744"/><text x="16.2649%" y="607.50"></text></g><g><title>Parse::do_one_block (744 samples, 0.15%)</title><rect x="16.0149%" y="581" width="0.1549%" height="15" fill="rgb(218,69,12)" fg:x="76921" fg:w="744"/><text x="16.2649%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (744 samples, 0.15%)</title><rect x="16.0149%" y="565" width="0.1549%" height="15" fill="rgb(212,87,7)" fg:x="76921" fg:w="744"/><text x="16.2649%" y="575.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.01%)</title><rect x="16.1746%" y="421" width="0.0106%" height="15" fill="rgb(245,114,25)" fg:x="77688" fg:w="51"/><text x="16.4246%" y="431.50"></text></g><g><title>Parse::Parse (51 samples, 0.01%)</title><rect x="16.1746%" y="405" width="0.0106%" height="15" fill="rgb(210,61,42)" fg:x="77688" fg:w="51"/><text x="16.4246%" y="415.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="16.1723%" y="437" width="0.0171%" height="15" fill="rgb(211,52,33)" fg:x="77677" fg:w="82"/><text x="16.4223%" y="447.50"></text></g><g><title>Parse::do_all_blocks (98 samples, 0.02%)</title><rect x="16.1719%" y="485" width="0.0204%" height="15" fill="rgb(234,58,33)" fg:x="77675" fg:w="98"/><text x="16.4219%" y="495.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.02%)</title><rect x="16.1719%" y="469" width="0.0204%" height="15" fill="rgb(220,115,36)" fg:x="77675" fg:w="98"/><text x="16.4219%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (98 samples, 0.02%)</title><rect x="16.1719%" y="453" width="0.0204%" height="15" fill="rgb(243,153,54)" fg:x="77675" fg:w="98"/><text x="16.4219%" y="463.50"></text></g><g><title>ParseGenerator::generate (100 samples, 0.02%)</title><rect x="16.1717%" y="517" width="0.0208%" height="15" fill="rgb(251,47,18)" fg:x="77674" fg:w="100"/><text x="16.4217%" y="527.50"></text></g><g><title>Parse::Parse (100 samples, 0.02%)</title><rect x="16.1717%" y="501" width="0.0208%" height="15" fill="rgb(242,102,42)" fg:x="77674" fg:w="100"/><text x="16.4217%" y="511.50"></text></g><g><title>Parse::do_call (124 samples, 0.03%)</title><rect x="16.1698%" y="533" width="0.0258%" height="15" fill="rgb(234,31,38)" fg:x="77665" fg:w="124"/><text x="16.4198%" y="543.50"></text></g><g><title>ParseGenerator::generate (126 samples, 0.03%)</title><rect x="16.1698%" y="613" width="0.0262%" height="15" fill="rgb(221,117,51)" fg:x="77665" fg:w="126"/><text x="16.4198%" y="623.50"></text></g><g><title>Parse::Parse (126 samples, 0.03%)</title><rect x="16.1698%" y="597" width="0.0262%" height="15" fill="rgb(212,20,18)" fg:x="77665" fg:w="126"/><text x="16.4198%" y="607.50"></text></g><g><title>Parse::do_all_blocks (126 samples, 0.03%)</title><rect x="16.1698%" y="581" width="0.0262%" height="15" fill="rgb(245,133,36)" fg:x="77665" fg:w="126"/><text x="16.4198%" y="591.50"></text></g><g><title>Parse::do_one_block (126 samples, 0.03%)</title><rect x="16.1698%" y="565" width="0.0262%" height="15" fill="rgb(212,6,19)" fg:x="77665" fg:w="126"/><text x="16.4198%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (126 samples, 0.03%)</title><rect x="16.1698%" y="549" width="0.0262%" height="15" fill="rgb(218,1,36)" fg:x="77665" fg:w="126"/><text x="16.4198%" y="559.50"></text></g><g><title>Parse::do_call (913 samples, 0.19%)</title><rect x="16.0087%" y="645" width="0.1901%" height="15" fill="rgb(246,84,54)" fg:x="76891" fg:w="913"/><text x="16.2587%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (139 samples, 0.03%)</title><rect x="16.1698%" y="629" width="0.0289%" height="15" fill="rgb(242,110,6)" fg:x="77665" fg:w="139"/><text x="16.4198%" y="639.50"></text></g><g><title>ParseGenerator::generate (914 samples, 0.19%)</title><rect x="16.0087%" y="725" width="0.1903%" height="15" fill="rgb(214,47,5)" fg:x="76891" fg:w="914"/><text x="16.2587%" y="735.50"></text></g><g><title>Parse::Parse (914 samples, 0.19%)</title><rect x="16.0087%" y="709" width="0.1903%" height="15" fill="rgb(218,159,25)" fg:x="76891" fg:w="914"/><text x="16.2587%" y="719.50"></text></g><g><title>Parse::do_all_blocks (914 samples, 0.19%)</title><rect x="16.0087%" y="693" width="0.1903%" height="15" fill="rgb(215,211,28)" fg:x="76891" fg:w="914"/><text x="16.2587%" y="703.50"></text></g><g><title>Parse::do_one_block (914 samples, 0.19%)</title><rect x="16.0087%" y="677" width="0.1903%" height="15" fill="rgb(238,59,32)" fg:x="76891" fg:w="914"/><text x="16.2587%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (914 samples, 0.19%)</title><rect x="16.0087%" y="661" width="0.1903%" height="15" fill="rgb(226,82,3)" fg:x="76891" fg:w="914"/><text x="16.2587%" y="671.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="16.2027%" y="469" width="0.0117%" height="15" fill="rgb(240,164,32)" fg:x="77823" fg:w="56"/><text x="16.4527%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="16.2027%" y="453" width="0.0117%" height="15" fill="rgb(232,46,7)" fg:x="77823" fg:w="56"/><text x="16.4527%" y="463.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="16.2027%" y="485" width="0.0119%" height="15" fill="rgb(229,129,53)" fg:x="77823" fg:w="57"/><text x="16.4527%" y="495.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="16.2027%" y="517" width="0.0121%" height="15" fill="rgb(234,188,29)" fg:x="77823" fg:w="58"/><text x="16.4527%" y="527.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="16.2027%" y="501" width="0.0121%" height="15" fill="rgb(246,141,4)" fg:x="77823" fg:w="58"/><text x="16.4527%" y="511.50"></text></g><g><title>Parse::do_call (74 samples, 0.02%)</title><rect x="16.2009%" y="533" width="0.0154%" height="15" fill="rgb(229,23,39)" fg:x="77814" fg:w="74"/><text x="16.4509%" y="543.50"></text></g><g><title>ParseGenerator::generate (76 samples, 0.02%)</title><rect x="16.2006%" y="613" width="0.0158%" height="15" fill="rgb(206,12,3)" fg:x="77813" fg:w="76"/><text x="16.4506%" y="623.50"></text></g><g><title>Parse::Parse (76 samples, 0.02%)</title><rect x="16.2006%" y="597" width="0.0158%" height="15" fill="rgb(252,226,20)" fg:x="77813" fg:w="76"/><text x="16.4506%" y="607.50"></text></g><g><title>Parse::do_all_blocks (76 samples, 0.02%)</title><rect x="16.2006%" y="581" width="0.0158%" height="15" fill="rgb(216,123,35)" fg:x="77813" fg:w="76"/><text x="16.4506%" y="591.50"></text></g><g><title>Parse::do_one_block (76 samples, 0.02%)</title><rect x="16.2006%" y="565" width="0.0158%" height="15" fill="rgb(212,68,40)" fg:x="77813" fg:w="76"/><text x="16.4506%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (76 samples, 0.02%)</title><rect x="16.2006%" y="549" width="0.0158%" height="15" fill="rgb(254,125,32)" fg:x="77813" fg:w="76"/><text x="16.4506%" y="559.50"></text></g><g><title>ParseGenerator::generate (103 samples, 0.02%)</title><rect x="16.1990%" y="709" width="0.0214%" height="15" fill="rgb(253,97,22)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="719.50"></text></g><g><title>Parse::Parse (103 samples, 0.02%)</title><rect x="16.1990%" y="693" width="0.0214%" height="15" fill="rgb(241,101,14)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="703.50"></text></g><g><title>Parse::do_all_blocks (103 samples, 0.02%)</title><rect x="16.1990%" y="677" width="0.0214%" height="15" fill="rgb(238,103,29)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="687.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.02%)</title><rect x="16.1990%" y="661" width="0.0214%" height="15" fill="rgb(233,195,47)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.02%)</title><rect x="16.1990%" y="645" width="0.0214%" height="15" fill="rgb(246,218,30)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="655.50"></text></g><g><title>Parse::do_call (103 samples, 0.02%)</title><rect x="16.1990%" y="629" width="0.0214%" height="15" fill="rgb(219,145,47)" fg:x="77805" fg:w="103"/><text x="16.4490%" y="639.50"></text></g><g><title>Parse::do_all_blocks (1,033 samples, 0.22%)</title><rect x="16.0079%" y="789" width="0.2151%" height="15" fill="rgb(243,12,26)" fg:x="76887" fg:w="1033"/><text x="16.2579%" y="799.50"></text></g><g><title>Parse::do_one_block (1,033 samples, 0.22%)</title><rect x="16.0079%" y="773" width="0.2151%" height="15" fill="rgb(214,87,16)" fg:x="76887" fg:w="1033"/><text x="16.2579%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,033 samples, 0.22%)</title><rect x="16.0079%" y="757" width="0.2151%" height="15" fill="rgb(208,99,42)" fg:x="76887" fg:w="1033"/><text x="16.2579%" y="767.50"></text></g><g><title>Parse::do_call (1,033 samples, 0.22%)</title><rect x="16.0079%" y="741" width="0.2151%" height="15" fill="rgb(253,99,2)" fg:x="76887" fg:w="1033"/><text x="16.2579%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (115 samples, 0.02%)</title><rect x="16.1990%" y="725" width="0.0239%" height="15" fill="rgb(220,168,23)" fg:x="77805" fg:w="115"/><text x="16.4490%" y="735.50"></text></g><g><title>ParseGenerator::generate (1,040 samples, 0.22%)</title><rect x="16.0079%" y="821" width="0.2165%" height="15" fill="rgb(242,38,24)" fg:x="76887" fg:w="1040"/><text x="16.2579%" y="831.50"></text></g><g><title>Parse::Parse (1,040 samples, 0.22%)</title><rect x="16.0079%" y="805" width="0.2165%" height="15" fill="rgb(225,182,9)" fg:x="76887" fg:w="1040"/><text x="16.2579%" y="815.50"></text></g><g><title>Parse::do_one_block (66 samples, 0.01%)</title><rect x="16.2383%" y="373" width="0.0137%" height="15" fill="rgb(243,178,37)" fg:x="77994" fg:w="66"/><text x="16.4883%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.01%)</title><rect x="16.2385%" y="357" width="0.0135%" height="15" fill="rgb(232,139,19)" fg:x="77995" fg:w="65"/><text x="16.4885%" y="367.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="16.2381%" y="389" width="0.0142%" height="15" fill="rgb(225,201,24)" fg:x="77993" fg:w="68"/><text x="16.4881%" y="399.50"></text></g><g><title>ParseGenerator::generate (77 samples, 0.02%)</title><rect x="16.2367%" y="421" width="0.0160%" height="15" fill="rgb(221,47,46)" fg:x="77986" fg:w="77"/><text x="16.4867%" y="431.50"></text></g><g><title>Parse::Parse (77 samples, 0.02%)</title><rect x="16.2367%" y="405" width="0.0160%" height="15" fill="rgb(249,23,13)" fg:x="77986" fg:w="77"/><text x="16.4867%" y="415.50"></text></g><g><title>Parse::do_call (107 samples, 0.02%)</title><rect x="16.2331%" y="437" width="0.0223%" height="15" fill="rgb(219,9,5)" fg:x="77969" fg:w="107"/><text x="16.4831%" y="447.50"></text></g><g><title>ParseGenerator::generate (155 samples, 0.03%)</title><rect x="16.2319%" y="517" width="0.0323%" height="15" fill="rgb(254,171,16)" fg:x="77963" fg:w="155"/><text x="16.4819%" y="527.50"></text></g><g><title>Parse::Parse (155 samples, 0.03%)</title><rect x="16.2319%" y="501" width="0.0323%" height="15" fill="rgb(230,171,20)" fg:x="77963" fg:w="155"/><text x="16.4819%" y="511.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.03%)</title><rect x="16.2325%" y="485" width="0.0316%" height="15" fill="rgb(210,71,41)" fg:x="77966" fg:w="152"/><text x="16.4825%" y="495.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="16.2325%" y="469" width="0.0316%" height="15" fill="rgb(206,173,20)" fg:x="77966" fg:w="152"/><text x="16.4825%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.03%)</title><rect x="16.2327%" y="453" width="0.0314%" height="15" fill="rgb(233,88,34)" fg:x="77967" fg:w="151"/><text x="16.4827%" y="463.50"></text></g><g><title>Parse::do_call (218 samples, 0.05%)</title><rect x="16.2254%" y="533" width="0.0454%" height="15" fill="rgb(223,209,46)" fg:x="77932" fg:w="218"/><text x="16.4754%" y="543.50"></text></g><g><title>ParseGenerator::generate (223 samples, 0.05%)</title><rect x="16.2252%" y="613" width="0.0464%" height="15" fill="rgb(250,43,18)" fg:x="77931" fg:w="223"/><text x="16.4752%" y="623.50"></text></g><g><title>Parse::Parse (223 samples, 0.05%)</title><rect x="16.2252%" y="597" width="0.0464%" height="15" fill="rgb(208,13,10)" fg:x="77931" fg:w="223"/><text x="16.4752%" y="607.50"></text></g><g><title>Parse::do_all_blocks (223 samples, 0.05%)</title><rect x="16.2252%" y="581" width="0.0464%" height="15" fill="rgb(212,200,36)" fg:x="77931" fg:w="223"/><text x="16.4752%" y="591.50"></text></g><g><title>Parse::do_one_block (223 samples, 0.05%)</title><rect x="16.2252%" y="565" width="0.0464%" height="15" fill="rgb(225,90,30)" fg:x="77931" fg:w="223"/><text x="16.4752%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (223 samples, 0.05%)</title><rect x="16.2252%" y="549" width="0.0464%" height="15" fill="rgb(236,182,39)" fg:x="77931" fg:w="223"/><text x="16.4752%" y="559.50"></text></g><g><title>Parse::do_call (241 samples, 0.05%)</title><rect x="16.2244%" y="629" width="0.0502%" height="15" fill="rgb(212,144,35)" fg:x="77927" fg:w="241"/><text x="16.4744%" y="639.50"></text></g><g><title>ParseGenerator::generate (242 samples, 0.05%)</title><rect x="16.2244%" y="709" width="0.0504%" height="15" fill="rgb(228,63,44)" fg:x="77927" fg:w="242"/><text x="16.4744%" y="719.50"></text></g><g><title>Parse::Parse (242 samples, 0.05%)</title><rect x="16.2244%" y="693" width="0.0504%" height="15" fill="rgb(228,109,6)" fg:x="77927" fg:w="242"/><text x="16.4744%" y="703.50"></text></g><g><title>Parse::do_all_blocks (242 samples, 0.05%)</title><rect x="16.2244%" y="677" width="0.0504%" height="15" fill="rgb(238,117,24)" fg:x="77927" fg:w="242"/><text x="16.4744%" y="687.50"></text></g><g><title>Parse::do_one_block (242 samples, 0.05%)</title><rect x="16.2244%" y="661" width="0.0504%" height="15" fill="rgb(242,26,26)" fg:x="77927" fg:w="242"/><text x="16.4744%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (242 samples, 0.05%)</title><rect x="16.2244%" y="645" width="0.0504%" height="15" fill="rgb(221,92,48)" fg:x="77927" fg:w="242"/><text x="16.4744%" y="655.50"></text></g><g><title>ParseGenerator::generate (261 samples, 0.05%)</title><rect x="16.2244%" y="805" width="0.0543%" height="15" fill="rgb(209,209,32)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="815.50"></text></g><g><title>Parse::Parse (261 samples, 0.05%)</title><rect x="16.2244%" y="789" width="0.0543%" height="15" fill="rgb(221,70,22)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="799.50"></text></g><g><title>Parse::do_all_blocks (261 samples, 0.05%)</title><rect x="16.2244%" y="773" width="0.0543%" height="15" fill="rgb(248,145,5)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="783.50"></text></g><g><title>Parse::do_one_block (261 samples, 0.05%)</title><rect x="16.2244%" y="757" width="0.0543%" height="15" fill="rgb(226,116,26)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (261 samples, 0.05%)</title><rect x="16.2244%" y="741" width="0.0543%" height="15" fill="rgb(244,5,17)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="751.50"></text></g><g><title>Parse::do_call (261 samples, 0.05%)</title><rect x="16.2244%" y="725" width="0.0543%" height="15" fill="rgb(252,159,33)" fg:x="77927" fg:w="261"/><text x="16.4744%" y="735.50"></text></g><g><title>Parse::do_call (1,345 samples, 0.28%)</title><rect x="16.0079%" y="837" width="0.2800%" height="15" fill="rgb(206,71,0)" fg:x="76887" fg:w="1345"/><text x="16.2579%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (305 samples, 0.06%)</title><rect x="16.2244%" y="821" width="0.0635%" height="15" fill="rgb(233,118,54)" fg:x="77927" fg:w="305"/><text x="16.4744%" y="831.50"></text></g><g><title>ParseGenerator::generate (1,353 samples, 0.28%)</title><rect x="16.0079%" y="917" width="0.2817%" height="15" fill="rgb(234,83,48)" fg:x="76887" fg:w="1353"/><text x="16.2579%" y="927.50"></text></g><g><title>Parse::Parse (1,353 samples, 0.28%)</title><rect x="16.0079%" y="901" width="0.2817%" height="15" fill="rgb(228,3,54)" fg:x="76887" fg:w="1353"/><text x="16.2579%" y="911.50"></text></g><g><title>Parse::do_all_blocks (1,353 samples, 0.28%)</title><rect x="16.0079%" y="885" width="0.2817%" height="15" fill="rgb(226,155,13)" fg:x="76887" fg:w="1353"/><text x="16.2579%" y="895.50"></text></g><g><title>Parse::do_one_block (1,353 samples, 0.28%)</title><rect x="16.0079%" y="869" width="0.2817%" height="15" fill="rgb(241,28,37)" fg:x="76887" fg:w="1353"/><text x="16.2579%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (1,353 samples, 0.28%)</title><rect x="16.0079%" y="853" width="0.2817%" height="15" fill="rgb(233,93,10)" fg:x="76887" fg:w="1353"/><text x="16.2579%" y="863.50"></text></g><g><title>Compile::Compile (55,367 samples, 11.53%)</title><rect x="4.7624%" y="933" width="11.5274%" height="15" fill="rgb(225,113,19)" fg:x="22874" fg:w="55367"/><text x="5.0124%" y="943.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (134 samples, 0.03%)</title><rect x="16.3335%" y="885" width="0.0279%" height="15" fill="rgb(241,2,18)" fg:x="78451" fg:w="134"/><text x="16.5835%" y="895.50"></text></g><g><title>Compile::final_graph_reshaping (366 samples, 0.08%)</title><rect x="16.2902%" y="917" width="0.0762%" height="15" fill="rgb(228,207,21)" fg:x="78243" fg:w="366"/><text x="16.5402%" y="927.50"></text></g><g><title>Compile::final_graph_reshaping_walk (358 samples, 0.07%)</title><rect x="16.2918%" y="901" width="0.0745%" height="15" fill="rgb(213,211,35)" fg:x="78251" fg:w="358"/><text x="16.5418%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (49 samples, 0.01%)</title><rect x="16.4165%" y="901" width="0.0102%" height="15" fill="rgb(209,83,10)" fg:x="78850" fg:w="49"/><text x="16.6665%" y="911.50"></text></g><g><title>Compile::remove_speculative_types (304 samples, 0.06%)</title><rect x="16.3755%" y="917" width="0.0633%" height="15" fill="rgb(209,164,1)" fg:x="78653" fg:w="304"/><text x="16.6255%" y="927.50"></text></g><g><title>ConnectionGraph::add_final_edges (49 samples, 0.01%)</title><rect x="16.4721%" y="885" width="0.0102%" height="15" fill="rgb(213,184,43)" fg:x="79117" fg:w="49"/><text x="16.7221%" y="895.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (112 samples, 0.02%)</title><rect x="16.4838%" y="885" width="0.0233%" height="15" fill="rgb(231,61,34)" fg:x="79173" fg:w="112"/><text x="16.7338%" y="895.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (52 samples, 0.01%)</title><rect x="16.5140%" y="869" width="0.0108%" height="15" fill="rgb(235,75,3)" fg:x="79318" fg:w="52"/><text x="16.7640%" y="879.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (137 samples, 0.03%)</title><rect x="16.5082%" y="885" width="0.0285%" height="15" fill="rgb(220,106,47)" fg:x="79290" fg:w="137"/><text x="16.7582%" y="895.50"></text></g><g><title>ConnectionGraph::find_inst_mem (62 samples, 0.01%)</title><rect x="16.5525%" y="805" width="0.0129%" height="15" fill="rgb(210,196,33)" fg:x="79503" fg:w="62"/><text x="16.8025%" y="815.50"></text></g><g><title>ConnectionGraph::split_memory_phi (70 samples, 0.01%)</title><rect x="16.5513%" y="821" width="0.0146%" height="15" fill="rgb(229,154,42)" fg:x="79497" fg:w="70"/><text x="16.8013%" y="831.50"></text></g><g><title>ConnectionGraph::find_inst_mem (80 samples, 0.02%)</title><rect x="16.5494%" y="837" width="0.0167%" height="15" fill="rgb(228,114,26)" fg:x="79488" fg:w="80"/><text x="16.7994%" y="847.50"></text></g><g><title>ConnectionGraph::split_memory_phi (89 samples, 0.02%)</title><rect x="16.5477%" y="853" width="0.0185%" height="15" fill="rgb(208,144,1)" fg:x="79480" fg:w="89"/><text x="16.7977%" y="863.50"></text></g><g><title>ConnectionGraph::find_inst_mem (108 samples, 0.02%)</title><rect x="16.5442%" y="869" width="0.0225%" height="15" fill="rgb(239,112,37)" fg:x="79463" fg:w="108"/><text x="16.7942%" y="879.50"></text></g><g><title>ConnectionGraph::split_unique_types (148 samples, 0.03%)</title><rect x="16.5411%" y="885" width="0.0308%" height="15" fill="rgb(210,96,50)" fg:x="79448" fg:w="148"/><text x="16.7911%" y="895.50"></text></g><g><title>ConnectionGraph::compute_escape (642 samples, 0.13%)</title><rect x="16.4399%" y="901" width="0.1337%" height="15" fill="rgb(222,178,2)" fg:x="78962" fg:w="642"/><text x="16.6899%" y="911.50"></text></g><g><title>ConnectionGraph::do_analysis (647 samples, 0.13%)</title><rect x="16.4390%" y="917" width="0.1347%" height="15" fill="rgb(226,74,18)" fg:x="78958" fg:w="647"/><text x="16.6890%" y="927.50"></text></g><g><title>TypeInstPtr::add_offset (51 samples, 0.01%)</title><rect x="16.7449%" y="901" width="0.0106%" height="15" fill="rgb(225,67,54)" fg:x="80427" fg:w="51"/><text x="16.9949%" y="911.50"></text></g><g><title>PhaseCCP::analyze (929 samples, 0.19%)</title><rect x="16.5739%" y="917" width="0.1934%" height="15" fill="rgb(251,92,32)" fg:x="79606" fg:w="929"/><text x="16.8239%" y="927.50"></text></g><g><title>PhaseCCP::transform_once (121 samples, 0.03%)</title><rect x="16.7994%" y="885" width="0.0252%" height="15" fill="rgb(228,149,22)" fg:x="80689" fg:w="121"/><text x="17.0494%" y="895.50"></text></g><g><title>PhaseCCP::do_transform (279 samples, 0.06%)</title><rect x="16.7674%" y="917" width="0.0581%" height="15" fill="rgb(243,54,13)" fg:x="80535" fg:w="279"/><text x="17.0174%" y="927.50"></text></g><g><title>PhaseCCP::transform (279 samples, 0.06%)</title><rect x="16.7674%" y="901" width="0.0581%" height="15" fill="rgb(243,180,28)" fg:x="80535" fg:w="279"/><text x="17.0174%" y="911.50"></text></g><g><title>IdealLoopTree::counted_loop (49 samples, 0.01%)</title><rect x="16.8477%" y="869" width="0.0102%" height="15" fill="rgb(208,167,24)" fg:x="80921" fg:w="49"/><text x="17.0977%" y="879.50"></text></g><g><title>IdealLoopTree::counted_loop (60 samples, 0.01%)</title><rect x="16.8477%" y="885" width="0.0125%" height="15" fill="rgb(245,73,45)" fg:x="80921" fg:w="60"/><text x="17.0977%" y="895.50"></text></g><g><title>IdealLoopTree::counted_loop (61 samples, 0.01%)</title><rect x="16.8477%" y="901" width="0.0127%" height="15" fill="rgb(237,203,48)" fg:x="80921" fg:w="61"/><text x="17.0977%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (51 samples, 0.01%)</title><rect x="16.8652%" y="677" width="0.0106%" height="15" fill="rgb(211,197,16)" fg:x="81005" fg:w="51"/><text x="17.1152%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (64 samples, 0.01%)</title><rect x="16.8652%" y="693" width="0.0133%" height="15" fill="rgb(243,99,51)" fg:x="81005" fg:w="64"/><text x="17.1152%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (76 samples, 0.02%)</title><rect x="16.8652%" y="709" width="0.0158%" height="15" fill="rgb(215,123,29)" fg:x="81005" fg:w="76"/><text x="17.1152%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (82 samples, 0.02%)</title><rect x="16.8652%" y="725" width="0.0171%" height="15" fill="rgb(239,186,37)" fg:x="81005" fg:w="82"/><text x="17.1152%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (97 samples, 0.02%)</title><rect x="16.8650%" y="741" width="0.0202%" height="15" fill="rgb(252,136,39)" fg:x="81004" fg:w="97"/><text x="17.1150%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (110 samples, 0.02%)</title><rect x="16.8650%" y="757" width="0.0229%" height="15" fill="rgb(223,213,32)" fg:x="81004" fg:w="110"/><text x="17.1150%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (134 samples, 0.03%)</title><rect x="16.8648%" y="773" width="0.0279%" height="15" fill="rgb(233,115,5)" fg:x="81003" fg:w="134"/><text x="17.1148%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (147 samples, 0.03%)</title><rect x="16.8648%" y="789" width="0.0306%" height="15" fill="rgb(207,226,44)" fg:x="81003" fg:w="147"/><text x="17.1148%" y="799.50"></text></g><g><title>IdealLoopTree::iteration_split (160 samples, 0.03%)</title><rect x="16.8646%" y="805" width="0.0333%" height="15" fill="rgb(208,126,0)" fg:x="81002" fg:w="160"/><text x="17.1146%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (188 samples, 0.04%)</title><rect x="16.8646%" y="821" width="0.0391%" height="15" fill="rgb(244,66,21)" fg:x="81002" fg:w="188"/><text x="17.1146%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (205 samples, 0.04%)</title><rect x="16.8640%" y="837" width="0.0427%" height="15" fill="rgb(222,97,12)" fg:x="80999" fg:w="205"/><text x="17.1140%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (251 samples, 0.05%)</title><rect x="16.8636%" y="853" width="0.0523%" height="15" fill="rgb(219,213,19)" fg:x="80997" fg:w="251"/><text x="17.1136%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (304 samples, 0.06%)</title><rect x="16.8629%" y="869" width="0.0633%" height="15" fill="rgb(252,169,30)" fg:x="80994" fg:w="304"/><text x="17.1129%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (59 samples, 0.01%)</title><rect x="16.9262%" y="869" width="0.0123%" height="15" fill="rgb(206,32,51)" fg:x="81298" fg:w="59"/><text x="17.1762%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split (376 samples, 0.08%)</title><rect x="16.8617%" y="885" width="0.0783%" height="15" fill="rgb(250,172,42)" fg:x="80988" fg:w="376"/><text x="17.1117%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (411 samples, 0.09%)</title><rect x="16.8604%" y="901" width="0.0856%" height="15" fill="rgb(209,34,43)" fg:x="80982" fg:w="411"/><text x="17.1104%" y="911.50"></text></g><g><title>IdealLoopTree::loop_predication (74 samples, 0.02%)</title><rect x="16.9466%" y="869" width="0.0154%" height="15" fill="rgb(223,11,35)" fg:x="81396" fg:w="74"/><text x="17.1966%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (139 samples, 0.03%)</title><rect x="16.9464%" y="885" width="0.0289%" height="15" fill="rgb(251,219,26)" fg:x="81395" fg:w="139"/><text x="17.1964%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (64 samples, 0.01%)</title><rect x="16.9620%" y="869" width="0.0133%" height="15" fill="rgb(231,119,3)" fg:x="81470" fg:w="64"/><text x="17.2120%" y="879.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (116 samples, 0.02%)</title><rect x="16.9891%" y="869" width="0.0242%" height="15" fill="rgb(216,97,11)" fg:x="81600" fg:w="116"/><text x="17.2391%" y="879.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (54 samples, 0.01%)</title><rect x="17.0132%" y="869" width="0.0112%" height="15" fill="rgb(223,59,9)" fg:x="81716" fg:w="54"/><text x="17.2632%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (393 samples, 0.08%)</title><rect x="16.9460%" y="901" width="0.0818%" height="15" fill="rgb(233,93,31)" fg:x="81393" fg:w="393"/><text x="17.1960%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (252 samples, 0.05%)</title><rect x="16.9754%" y="885" width="0.0525%" height="15" fill="rgb(239,81,33)" fg:x="81534" fg:w="252"/><text x="17.2254%" y="895.50"></text></g><g><title>NTarjan::DFS (480 samples, 0.10%)</title><rect x="17.2712%" y="885" width="0.0999%" height="15" fill="rgb(213,120,34)" fg:x="82955" fg:w="480"/><text x="17.5212%" y="895.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,683 samples, 0.35%)</title><rect x="17.0424%" y="901" width="0.3504%" height="15" fill="rgb(243,49,53)" fg:x="81856" fg:w="1683"/><text x="17.2924%" y="911.50"></text></g><g><title>PhaseIdealLoop::dom_depth (111 samples, 0.02%)</title><rect x="17.7705%" y="853" width="0.0231%" height="15" fill="rgb(247,216,33)" fg:x="85353" fg:w="111"/><text x="18.0205%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (280 samples, 0.06%)</title><rect x="17.7936%" y="853" width="0.0583%" height="15" fill="rgb(226,26,14)" fg:x="85464" fg:w="280"/><text x="18.0436%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (594 samples, 0.12%)</title><rect x="17.7290%" y="869" width="0.1237%" height="15" fill="rgb(215,49,53)" fg:x="85154" fg:w="594"/><text x="17.9790%" y="879.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (655 samples, 0.14%)</title><rect x="17.7165%" y="885" width="0.1364%" height="15" fill="rgb(245,162,40)" fg:x="85094" fg:w="655"/><text x="17.9665%" y="895.50"></text></g><g><title>PhiNode::pinned (61 samples, 0.01%)</title><rect x="17.8538%" y="885" width="0.0127%" height="15" fill="rgb(229,68,17)" fg:x="85753" fg:w="61"/><text x="18.1038%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,365 samples, 0.49%)</title><rect x="17.3928%" y="901" width="0.4924%" height="15" fill="rgb(213,182,10)" fg:x="83539" fg:w="2365"/><text x="17.6428%" y="911.50"></text></g><g><title>Node::unique_ctrl_out (96 samples, 0.02%)</title><rect x="18.4380%" y="869" width="0.0200%" height="15" fill="rgb(245,125,30)" fg:x="88559" fg:w="96"/><text x="18.6880%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (141 samples, 0.03%)</title><rect x="18.4582%" y="869" width="0.0294%" height="15" fill="rgb(232,202,2)" fg:x="88656" fg:w="141"/><text x="18.7082%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_depth (90 samples, 0.02%)</title><rect x="18.7324%" y="821" width="0.0187%" height="15" fill="rgb(237,140,51)" fg:x="89973" fg:w="90"/><text x="18.9824%" y="831.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (184 samples, 0.04%)</title><rect x="18.7511%" y="821" width="0.0383%" height="15" fill="rgb(236,157,25)" fg:x="90063" fg:w="184"/><text x="19.0011%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (382 samples, 0.08%)</title><rect x="18.7101%" y="837" width="0.0795%" height="15" fill="rgb(219,209,0)" fg:x="89866" fg:w="382"/><text x="18.9601%" y="847.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (547 samples, 0.11%)</title><rect x="18.6863%" y="853" width="0.1139%" height="15" fill="rgb(240,116,54)" fg:x="89752" fg:w="547"/><text x="18.9363%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (51 samples, 0.01%)</title><rect x="18.7896%" y="837" width="0.0106%" height="15" fill="rgb(216,10,36)" fg:x="90248" fg:w="51"/><text x="19.0396%" y="847.50"></text></g><g><title>PhaseIdealLoop::dom_depth (56 samples, 0.01%)</title><rect x="18.8356%" y="837" width="0.0117%" height="15" fill="rgb(222,72,44)" fg:x="90469" fg:w="56"/><text x="19.0856%" y="847.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (255 samples, 0.05%)</title><rect x="18.8004%" y="853" width="0.0531%" height="15" fill="rgb(232,159,9)" fg:x="90300" fg:w="255"/><text x="19.0504%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_depth (1,096 samples, 0.23%)</title><rect x="19.6418%" y="837" width="0.2282%" height="15" fill="rgb(210,39,32)" fg:x="94341" fg:w="1096"/><text x="19.8918%" y="847.50"></text></g><g><title>PhaseIdealLoop::is_dominator (4,912 samples, 1.02%)</title><rect x="18.8610%" y="853" width="1.0227%" height="15" fill="rgb(216,194,45)" fg:x="90591" fg:w="4912"/><text x="19.1110%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (6,747 samples, 1.40%)</title><rect x="18.4875%" y="869" width="1.4047%" height="15" fill="rgb(218,18,35)" fg:x="88797" fg:w="6747"/><text x="18.7375%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_loop (51 samples, 0.01%)</title><rect x="19.8922%" y="869" width="0.0106%" height="15" fill="rgb(207,83,51)" fg:x="95544" fg:w="51"/><text x="20.1422%" y="879.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (7,980 samples, 1.66%)</title><rect x="18.2575%" y="885" width="1.6614%" height="15" fill="rgb(225,63,43)" fg:x="87692" fg:w="7980"/><text x="18.5075%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_late (9,821 samples, 2.04%)</title><rect x="17.8852%" y="901" width="2.0447%" height="15" fill="rgb(207,57,36)" fg:x="85904" fg:w="9821"/><text x="18.1352%" y="911.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (288 samples, 0.06%)</title><rect x="20.1198%" y="885" width="0.0600%" height="15" fill="rgb(216,99,33)" fg:x="96637" fg:w="288"/><text x="20.3698%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,236 samples, 0.26%)</title><rect x="19.9308%" y="901" width="0.2573%" height="15" fill="rgb(225,42,16)" fg:x="95729" fg:w="1236"/><text x="20.1808%" y="911.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (49 samples, 0.01%)</title><rect x="20.1904%" y="901" width="0.0102%" height="15" fill="rgb(220,201,45)" fg:x="96976" fg:w="49"/><text x="20.4404%" y="911.50"></text></g><g><title>PhaseIdealLoop::do_split_if (128 samples, 0.03%)</title><rect x="20.3467%" y="885" width="0.0266%" height="15" fill="rgb(225,33,4)" fg:x="97727" fg:w="128"/><text x="20.5967%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (359 samples, 0.07%)</title><rect x="20.3748%" y="885" width="0.0747%" height="15" fill="rgb(224,33,50)" fg:x="97862" fg:w="359"/><text x="20.6248%" y="895.50"></text></g><g><title>ConstraintCastNode::dominating_cast (92 samples, 0.02%)</title><rect x="20.4860%" y="869" width="0.0192%" height="15" fill="rgb(246,198,51)" fg:x="98396" fg:w="92"/><text x="20.7360%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (71 samples, 0.01%)</title><rect x="20.5154%" y="869" width="0.0148%" height="15" fill="rgb(205,22,4)" fg:x="98537" fg:w="71"/><text x="20.7654%" y="879.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (107 samples, 0.02%)</title><rect x="20.5302%" y="869" width="0.0223%" height="15" fill="rgb(206,3,8)" fg:x="98608" fg:w="107"/><text x="20.7802%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (78 samples, 0.02%)</title><rect x="20.5882%" y="853" width="0.0162%" height="15" fill="rgb(251,23,15)" fg:x="98887" fg:w="78"/><text x="20.8382%" y="863.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (251 samples, 0.05%)</title><rect x="20.5526%" y="869" width="0.0523%" height="15" fill="rgb(252,88,28)" fg:x="98716" fg:w="251"/><text x="20.8026%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (98 samples, 0.02%)</title><rect x="20.6382%" y="853" width="0.0204%" height="15" fill="rgb(212,127,14)" fg:x="99127" fg:w="98"/><text x="20.8882%" y="863.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (289 samples, 0.06%)</title><rect x="20.6049%" y="869" width="0.0602%" height="15" fill="rgb(247,145,37)" fg:x="98967" fg:w="289"/><text x="20.8549%" y="879.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,093 samples, 0.23%)</title><rect x="20.4496%" y="885" width="0.2276%" height="15" fill="rgb(209,117,53)" fg:x="98221" fg:w="1093"/><text x="20.6996%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,266 samples, 0.47%)</title><rect x="20.2068%" y="901" width="0.4718%" height="15" fill="rgb(212,90,42)" fg:x="97055" fg:w="2266"/><text x="20.4568%" y="911.50"></text></g><g><title>CallNode::Ideal (60 samples, 0.01%)</title><rect x="20.7506%" y="869" width="0.0125%" height="15" fill="rgb(218,164,37)" fg:x="99667" fg:w="60"/><text x="21.0006%" y="879.50"></text></g><g><title>Node::remove_dead_region (57 samples, 0.01%)</title><rect x="20.7513%" y="853" width="0.0119%" height="15" fill="rgb(246,65,34)" fg:x="99670" fg:w="57"/><text x="21.0013%" y="863.50"></text></g><g><title>IfNode::Ideal (52 samples, 0.01%)</title><rect x="20.8006%" y="869" width="0.0108%" height="15" fill="rgb(231,100,33)" fg:x="99907" fg:w="52"/><text x="21.0506%" y="879.50"></text></g><g><title>LoadNode::Ideal (102 samples, 0.02%)</title><rect x="20.8139%" y="869" width="0.0212%" height="15" fill="rgb(228,126,14)" fg:x="99971" fg:w="102"/><text x="21.0639%" y="879.50"></text></g><g><title>NodeHash::grow (51 samples, 0.01%)</title><rect x="20.8731%" y="853" width="0.0106%" height="15" fill="rgb(215,173,21)" fg:x="100255" fg:w="51"/><text x="21.1231%" y="863.50"></text></g><g><title>NodeHash::hash_find_insert (170 samples, 0.04%)</title><rect x="20.8497%" y="869" width="0.0354%" height="15" fill="rgb(210,6,40)" fg:x="100143" fg:w="170"/><text x="21.0997%" y="879.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (94 samples, 0.02%)</title><rect x="20.8856%" y="869" width="0.0196%" height="15" fill="rgb(212,48,18)" fg:x="100315" fg:w="94"/><text x="21.1356%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (73 samples, 0.02%)</title><rect x="20.9178%" y="853" width="0.0152%" height="15" fill="rgb(230,214,11)" fg:x="100470" fg:w="73"/><text x="21.1678%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (151 samples, 0.03%)</title><rect x="20.9051%" y="869" width="0.0314%" height="15" fill="rgb(254,105,39)" fg:x="100409" fg:w="151"/><text x="21.1551%" y="879.50"></text></g><g><title>PhiNode::Ideal (71 samples, 0.01%)</title><rect x="20.9374%" y="869" width="0.0148%" height="15" fill="rgb(245,158,5)" fg:x="100564" fg:w="71"/><text x="21.1874%" y="879.50"></text></g><g><title>RegionNode::Ideal (330 samples, 0.07%)</title><rect x="20.9720%" y="869" width="0.0687%" height="15" fill="rgb(249,208,11)" fg:x="100730" fg:w="330"/><text x="21.2220%" y="879.50"></text></g><g><title>RegionNode::is_unreachable_region (198 samples, 0.04%)</title><rect x="20.9994%" y="853" width="0.0412%" height="15" fill="rgb(210,39,28)" fg:x="100862" fg:w="198"/><text x="21.2494%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (49 samples, 0.01%)</title><rect x="21.0450%" y="725" width="0.0102%" height="15" fill="rgb(211,56,53)" fg:x="101081" fg:w="49"/><text x="21.2950%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (53 samples, 0.01%)</title><rect x="21.0450%" y="741" width="0.0110%" height="15" fill="rgb(226,201,30)" fg:x="101081" fg:w="53"/><text x="21.2950%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (58 samples, 0.01%)</title><rect x="21.0450%" y="757" width="0.0121%" height="15" fill="rgb(239,101,34)" fg:x="101081" fg:w="58"/><text x="21.2950%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (61 samples, 0.01%)</title><rect x="21.0450%" y="773" width="0.0127%" height="15" fill="rgb(226,209,5)" fg:x="101081" fg:w="61"/><text x="21.2950%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (64 samples, 0.01%)</title><rect x="21.0450%" y="789" width="0.0133%" height="15" fill="rgb(250,105,47)" fg:x="101081" fg:w="64"/><text x="21.2950%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (68 samples, 0.01%)</title><rect x="21.0450%" y="805" width="0.0142%" height="15" fill="rgb(230,72,3)" fg:x="101081" fg:w="68"/><text x="21.2950%" y="815.50"></text></g><g><title>InitializeNode::can_capture_store (75 samples, 0.02%)</title><rect x="21.0450%" y="853" width="0.0156%" height="15" fill="rgb(232,218,39)" fg:x="101081" fg:w="75"/><text x="21.2950%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (75 samples, 0.02%)</title><rect x="21.0450%" y="837" width="0.0156%" height="15" fill="rgb(248,166,6)" fg:x="101081" fg:w="75"/><text x="21.2950%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (75 samples, 0.02%)</title><rect x="21.0450%" y="821" width="0.0156%" height="15" fill="rgb(247,89,20)" fg:x="101081" fg:w="75"/><text x="21.2950%" y="831.50"></text></g><g><title>StoreNode::Ideal (92 samples, 0.02%)</title><rect x="21.0448%" y="869" width="0.0192%" height="15" fill="rgb(248,130,54)" fg:x="101080" fg:w="92"/><text x="21.2948%" y="879.50"></text></g><g><title>PhaseIterGVN::transform_old (1,841 samples, 0.38%)</title><rect x="20.6942%" y="885" width="0.3833%" height="15" fill="rgb(234,196,4)" fg:x="99396" fg:w="1841"/><text x="20.9442%" y="895.50"></text></g><g><title>PhaseIterGVN::optimize (1,925 samples, 0.40%)</title><rect x="20.6794%" y="901" width="0.4008%" height="15" fill="rgb(250,143,31)" fg:x="99325" fg:w="1925"/><text x="20.9294%" y="911.50"></text></g><g><title>SuperWord::transform_loop (55 samples, 0.01%)</title><rect x="21.0917%" y="901" width="0.0115%" height="15" fill="rgb(211,110,34)" fg:x="101305" fg:w="55"/><text x="21.3417%" y="911.50"></text></g><g><title>SuperWord::SLP_extract (55 samples, 0.01%)</title><rect x="21.0917%" y="885" width="0.0115%" height="15" fill="rgb(215,124,48)" fg:x="101305" fg:w="55"/><text x="21.3417%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (20,552 samples, 4.28%)</title><rect x="16.8311%" y="917" width="4.2789%" height="15" fill="rgb(216,46,13)" fg:x="80841" fg:w="20552"/><text x="17.0811%" y="927.50">Phase..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (143 samples, 0.03%)</title><rect x="21.1100%" y="917" width="0.0298%" height="15" fill="rgb(205,184,25)" fg:x="101393" fg:w="143"/><text x="21.3600%" y="927.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (85 samples, 0.02%)</title><rect x="21.1221%" y="901" width="0.0177%" height="15" fill="rgb(228,1,10)" fg:x="101451" fg:w="85"/><text x="21.3721%" y="911.50"></text></g><g><title>IfNode::search_identical (59 samples, 0.01%)</title><rect x="21.2520%" y="869" width="0.0123%" height="15" fill="rgb(213,116,27)" fg:x="102075" fg:w="59"/><text x="21.5020%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (97 samples, 0.02%)</title><rect x="21.2751%" y="853" width="0.0202%" height="15" fill="rgb(241,95,50)" fg:x="102186" fg:w="97"/><text x="21.5251%" y="863.50"></text></g><g><title>Unique_Node_List::remove (83 samples, 0.02%)</title><rect x="21.2780%" y="837" width="0.0173%" height="15" fill="rgb(238,48,32)" fg:x="102200" fg:w="83"/><text x="21.5280%" y="847.50"></text></g><g><title>PhaseIterGVN::subsume_node (108 samples, 0.02%)</title><rect x="21.2736%" y="869" width="0.0225%" height="15" fill="rgb(235,113,49)" fg:x="102179" fg:w="108"/><text x="21.5236%" y="879.50"></text></g><g><title>IfNode::Ideal (382 samples, 0.08%)</title><rect x="21.2397%" y="885" width="0.0795%" height="15" fill="rgb(205,127,43)" fg:x="102016" fg:w="382"/><text x="21.4897%" y="895.50"></text></g><g><title>split_if (97 samples, 0.02%)</title><rect x="21.2990%" y="869" width="0.0202%" height="15" fill="rgb(250,162,2)" fg:x="102301" fg:w="97"/><text x="21.5490%" y="879.50"></text></g><g><title>MemNode::Ideal_common (91 samples, 0.02%)</title><rect x="21.3376%" y="869" width="0.0189%" height="15" fill="rgb(220,13,41)" fg:x="102486" fg:w="91"/><text x="21.5876%" y="879.50"></text></g><g><title>MemNode::all_controls_dominate (51 samples, 0.01%)</title><rect x="21.3603%" y="853" width="0.0106%" height="15" fill="rgb(249,221,25)" fg:x="102595" fg:w="51"/><text x="21.6103%" y="863.50"></text></g><g><title>MemNode::find_previous_store (96 samples, 0.02%)</title><rect x="21.3567%" y="869" width="0.0200%" height="15" fill="rgb(215,208,19)" fg:x="102578" fg:w="96"/><text x="21.6067%" y="879.50"></text></g><g><title>LoadNode::Ideal (234 samples, 0.05%)</title><rect x="21.3286%" y="885" width="0.0487%" height="15" fill="rgb(236,175,2)" fg:x="102443" fg:w="234"/><text x="21.5786%" y="895.50"></text></g><g><title>MergeMemNode::Ideal (67 samples, 0.01%)</title><rect x="21.3967%" y="885" width="0.0139%" height="15" fill="rgb(241,52,2)" fg:x="102770" fg:w="67"/><text x="21.6467%" y="895.50"></text></g><g><title>NodeHash::grow (79 samples, 0.02%)</title><rect x="21.4471%" y="869" width="0.0164%" height="15" fill="rgb(248,140,14)" fg:x="103012" fg:w="79"/><text x="21.6971%" y="879.50"></text></g><g><title>NodeHash::hash_find_insert (239 samples, 0.05%)</title><rect x="21.4160%" y="885" width="0.0498%" height="15" fill="rgb(253,22,42)" fg:x="102863" fg:w="239"/><text x="21.6660%" y="895.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (77 samples, 0.02%)</title><rect x="21.4658%" y="885" width="0.0160%" height="15" fill="rgb(234,61,47)" fg:x="103102" fg:w="77"/><text x="21.7158%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (100 samples, 0.02%)</title><rect x="21.5089%" y="869" width="0.0208%" height="15" fill="rgb(208,226,15)" fg:x="103309" fg:w="100"/><text x="21.7589%" y="879.50"></text></g><g><title>PhaseIterGVN::subsume_node (263 samples, 0.05%)</title><rect x="21.4820%" y="885" width="0.0548%" height="15" fill="rgb(217,221,4)" fg:x="103180" fg:w="263"/><text x="21.7320%" y="895.50"></text></g><g><title>PhiNode::Ideal (211 samples, 0.04%)</title><rect x="21.5370%" y="885" width="0.0439%" height="15" fill="rgb(212,174,34)" fg:x="103444" fg:w="211"/><text x="21.7870%" y="895.50"></text></g><g><title>PhiNode::Value (64 samples, 0.01%)</title><rect x="21.5847%" y="885" width="0.0133%" height="15" fill="rgb(253,83,4)" fg:x="103673" fg:w="64"/><text x="21.8347%" y="895.50"></text></g><g><title>Unique_Node_List::remove (146 samples, 0.03%)</title><rect x="21.6428%" y="837" width="0.0304%" height="15" fill="rgb(250,195,49)" fg:x="103952" fg:w="146"/><text x="21.8928%" y="847.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (162 samples, 0.03%)</title><rect x="21.6399%" y="853" width="0.0337%" height="15" fill="rgb(241,192,25)" fg:x="103938" fg:w="162"/><text x="21.8899%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (192 samples, 0.04%)</title><rect x="21.6353%" y="869" width="0.0400%" height="15" fill="rgb(208,124,10)" fg:x="103916" fg:w="192"/><text x="21.8853%" y="879.50"></text></g><g><title>RegionNode::is_unreachable_region (128 samples, 0.03%)</title><rect x="21.6819%" y="869" width="0.0266%" height="15" fill="rgb(222,33,0)" fg:x="104140" fg:w="128"/><text x="21.9319%" y="879.50"></text></g><g><title>RegionNode::Ideal (474 samples, 0.10%)</title><rect x="21.6128%" y="885" width="0.0987%" height="15" fill="rgb(234,209,28)" fg:x="103808" fg:w="474"/><text x="21.8628%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.01%)</title><rect x="21.7171%" y="597" width="0.0108%" height="15" fill="rgb(224,11,23)" fg:x="104309" fg:w="52"/><text x="21.9671%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.01%)</title><rect x="21.7171%" y="613" width="0.0135%" height="15" fill="rgb(232,99,1)" fg:x="104309" fg:w="65"/><text x="21.9671%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (79 samples, 0.02%)</title><rect x="21.7171%" y="629" width="0.0164%" height="15" fill="rgb(237,95,45)" fg:x="104309" fg:w="79"/><text x="21.9671%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (92 samples, 0.02%)</title><rect x="21.7171%" y="645" width="0.0192%" height="15" fill="rgb(208,109,11)" fg:x="104309" fg:w="92"/><text x="21.9671%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (107 samples, 0.02%)</title><rect x="21.7169%" y="661" width="0.0223%" height="15" fill="rgb(216,190,48)" fg:x="104308" fg:w="107"/><text x="21.9669%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (123 samples, 0.03%)</title><rect x="21.7167%" y="677" width="0.0256%" height="15" fill="rgb(251,171,36)" fg:x="104307" fg:w="123"/><text x="21.9667%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (133 samples, 0.03%)</title><rect x="21.7167%" y="693" width="0.0277%" height="15" fill="rgb(230,62,22)" fg:x="104307" fg:w="133"/><text x="21.9667%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (137 samples, 0.03%)</title><rect x="21.7167%" y="709" width="0.0285%" height="15" fill="rgb(225,114,35)" fg:x="104307" fg:w="137"/><text x="21.9667%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (150 samples, 0.03%)</title><rect x="21.7167%" y="725" width="0.0312%" height="15" fill="rgb(215,118,42)" fg:x="104307" fg:w="150"/><text x="21.9667%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (168 samples, 0.03%)</title><rect x="21.7165%" y="741" width="0.0350%" height="15" fill="rgb(243,119,21)" fg:x="104306" fg:w="168"/><text x="21.9665%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (181 samples, 0.04%)</title><rect x="21.7165%" y="757" width="0.0377%" height="15" fill="rgb(252,177,53)" fg:x="104306" fg:w="181"/><text x="21.9665%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (197 samples, 0.04%)</title><rect x="21.7165%" y="773" width="0.0410%" height="15" fill="rgb(237,209,29)" fg:x="104306" fg:w="197"/><text x="21.9665%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (211 samples, 0.04%)</title><rect x="21.7165%" y="789" width="0.0439%" height="15" fill="rgb(212,65,23)" fg:x="104306" fg:w="211"/><text x="21.9665%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (226 samples, 0.05%)</title><rect x="21.7165%" y="805" width="0.0471%" height="15" fill="rgb(230,222,46)" fg:x="104306" fg:w="226"/><text x="21.9665%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (247 samples, 0.05%)</title><rect x="21.7165%" y="821" width="0.0514%" height="15" fill="rgb(215,135,32)" fg:x="104306" fg:w="247"/><text x="21.9665%" y="831.50"></text></g><g><title>InitializeNode::detect_init_independence (280 samples, 0.06%)</title><rect x="21.7165%" y="837" width="0.0583%" height="15" fill="rgb(246,101,22)" fg:x="104306" fg:w="280"/><text x="21.9665%" y="847.50"></text></g><g><title>InitializeNode::can_capture_store (283 samples, 0.06%)</title><rect x="21.7163%" y="869" width="0.0589%" height="15" fill="rgb(206,107,13)" fg:x="104305" fg:w="283"/><text x="21.9663%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (282 samples, 0.06%)</title><rect x="21.7165%" y="853" width="0.0587%" height="15" fill="rgb(250,100,44)" fg:x="104306" fg:w="282"/><text x="21.9665%" y="863.50"></text></g><g><title>StoreNode::Ideal (328 samples, 0.07%)</title><rect x="21.7161%" y="885" width="0.0683%" height="15" fill="rgb(231,147,38)" fg:x="104304" fg:w="328"/><text x="21.9661%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (3,049 samples, 0.63%)</title><rect x="21.1623%" y="901" width="0.6348%" height="15" fill="rgb(229,8,40)" fg:x="101644" fg:w="3049"/><text x="21.4123%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (3,175 samples, 0.66%)</title><rect x="21.1398%" y="917" width="0.6610%" height="15" fill="rgb(221,135,30)" fg:x="101536" fg:w="3175"/><text x="21.3898%" y="927.50"></text></g><g><title>PhaseIterGVN::transform_old (343 samples, 0.07%)</title><rect x="21.8116%" y="885" width="0.0714%" height="15" fill="rgb(249,193,18)" fg:x="104763" fg:w="343"/><text x="22.0616%" y="895.50"></text></g><g><title>PhaseIterGVN::optimize (351 samples, 0.07%)</title><rect x="21.8102%" y="901" width="0.0731%" height="15" fill="rgb(209,133,39)" fg:x="104756" fg:w="351"/><text x="22.0602%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (112 samples, 0.02%)</title><rect x="21.8860%" y="901" width="0.0233%" height="15" fill="rgb(232,100,14)" fg:x="105120" fg:w="112"/><text x="22.1360%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (531 samples, 0.11%)</title><rect x="21.8085%" y="917" width="0.1106%" height="15" fill="rgb(224,185,1)" fg:x="104748" fg:w="531"/><text x="22.0585%" y="927.50"></text></g><g><title>Compile::identify_useful_nodes (93 samples, 0.02%)</title><rect x="21.9257%" y="885" width="0.0194%" height="15" fill="rgb(223,139,8)" fg:x="105311" fg:w="93"/><text x="22.1757%" y="895.50"></text></g><g><title>Compile::remove_useless_nodes (68 samples, 0.01%)</title><rect x="21.9451%" y="885" width="0.0142%" height="15" fill="rgb(232,213,38)" fg:x="105404" fg:w="68"/><text x="22.1951%" y="895.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (197 samples, 0.04%)</title><rect x="21.9216%" y="901" width="0.0410%" height="15" fill="rgb(207,94,22)" fg:x="105291" fg:w="197"/><text x="22.1716%" y="911.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (212 samples, 0.04%)</title><rect x="21.9191%" y="917" width="0.0441%" height="15" fill="rgb(219,183,54)" fg:x="105279" fg:w="212"/><text x="22.1691%" y="927.50"></text></g><g><title>Compile::Optimize (27,257 samples, 5.67%)</title><rect x="16.2898%" y="933" width="5.6749%" height="15" fill="rgb(216,185,54)" fg:x="78241" fg:w="27257"/><text x="16.5398%" y="943.50">Compile..</text></g><g><title>Parse::do_one_block (188 samples, 0.04%)</title><rect x="21.9688%" y="821" width="0.0391%" height="15" fill="rgb(254,217,39)" fg:x="105518" fg:w="188"/><text x="22.2188%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (170 samples, 0.04%)</title><rect x="21.9726%" y="805" width="0.0354%" height="15" fill="rgb(240,178,23)" fg:x="105536" fg:w="170"/><text x="22.2226%" y="815.50"></text></g><g><title>Parse::do_all_blocks (199 samples, 0.04%)</title><rect x="21.9686%" y="837" width="0.0414%" height="15" fill="rgb(218,11,47)" fg:x="105517" fg:w="199"/><text x="22.2186%" y="847.50"></text></g><g><title>ParseGenerator::generate (211 samples, 0.04%)</title><rect x="21.9686%" y="869" width="0.0439%" height="15" fill="rgb(218,51,51)" fg:x="105517" fg:w="211"/><text x="22.2186%" y="879.50"></text></g><g><title>Parse::Parse (211 samples, 0.04%)</title><rect x="21.9686%" y="853" width="0.0439%" height="15" fill="rgb(238,126,27)" fg:x="105517" fg:w="211"/><text x="22.2186%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (239 samples, 0.05%)</title><rect x="21.9657%" y="933" width="0.0498%" height="15" fill="rgb(249,202,22)" fg:x="105503" fg:w="239"/><text x="22.2157%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (239 samples, 0.05%)</title><rect x="21.9657%" y="917" width="0.0498%" height="15" fill="rgb(254,195,49)" fg:x="105503" fg:w="239"/><text x="22.2157%" y="927.50"></text></g><g><title>C2Compiler::compile_method (239 samples, 0.05%)</title><rect x="21.9657%" y="901" width="0.0498%" height="15" fill="rgb(208,123,14)" fg:x="105503" fg:w="239"/><text x="22.2157%" y="911.50"></text></g><g><title>Compile::Compile (239 samples, 0.05%)</title><rect x="21.9657%" y="885" width="0.0498%" height="15" fill="rgb(224,200,8)" fg:x="105503" fg:w="239"/><text x="22.2157%" y="895.50"></text></g><g><title>ciTypeFlow::df_flow_types (77 samples, 0.02%)</title><rect x="22.0159%" y="805" width="0.0160%" height="15" fill="rgb(217,61,36)" fg:x="105744" fg:w="77"/><text x="22.2659%" y="815.50"></text></g><g><title>ciTypeFlow::flow_block (77 samples, 0.02%)</title><rect x="22.0159%" y="789" width="0.0160%" height="15" fill="rgb(206,35,45)" fg:x="105744" fg:w="77"/><text x="22.2659%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (75 samples, 0.02%)</title><rect x="22.0163%" y="773" width="0.0156%" height="15" fill="rgb(217,65,33)" fg:x="105746" fg:w="75"/><text x="22.2663%" y="783.50"></text></g><g><title>CallGenerator::for_inline (80 samples, 0.02%)</title><rect x="22.0155%" y="885" width="0.0167%" height="15" fill="rgb(222,158,48)" fg:x="105742" fg:w="80"/><text x="22.2655%" y="895.50"></text></g><g><title>InlineTree::check_can_parse (80 samples, 0.02%)</title><rect x="22.0155%" y="869" width="0.0167%" height="15" fill="rgb(254,2,54)" fg:x="105742" fg:w="80"/><text x="22.2655%" y="879.50"></text></g><g><title>ciMethod::get_flow_analysis (80 samples, 0.02%)</title><rect x="22.0155%" y="853" width="0.0167%" height="15" fill="rgb(250,143,38)" fg:x="105742" fg:w="80"/><text x="22.2655%" y="863.50"></text></g><g><title>ciTypeFlow::do_flow (80 samples, 0.02%)</title><rect x="22.0155%" y="837" width="0.0167%" height="15" fill="rgb(248,25,0)" fg:x="105742" fg:w="80"/><text x="22.2655%" y="847.50"></text></g><g><title>ciTypeFlow::flow_types (80 samples, 0.02%)</title><rect x="22.0155%" y="821" width="0.0167%" height="15" fill="rgb(206,152,27)" fg:x="105742" fg:w="80"/><text x="22.2655%" y="831.50"></text></g><g><title>InlineTree::ok_to_inline (78 samples, 0.02%)</title><rect x="22.0525%" y="773" width="0.0162%" height="15" fill="rgb(240,77,30)" fg:x="105920" fg:w="78"/><text x="22.3025%" y="783.50"></text></g><g><title>Compile::call_generator (110 samples, 0.02%)</title><rect x="22.0498%" y="789" width="0.0229%" height="15" fill="rgb(231,5,3)" fg:x="105907" fg:w="110"/><text x="22.2998%" y="799.50"></text></g><g><title>Parse::do_one_block (116 samples, 0.02%)</title><rect x="22.1012%" y="741" width="0.0242%" height="15" fill="rgb(207,226,32)" fg:x="106154" fg:w="116"/><text x="22.3512%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (110 samples, 0.02%)</title><rect x="22.1025%" y="725" width="0.0229%" height="15" fill="rgb(222,207,47)" fg:x="106160" fg:w="110"/><text x="22.3525%" y="735.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.03%)</title><rect x="22.1008%" y="757" width="0.0264%" height="15" fill="rgb(229,115,45)" fg:x="106152" fg:w="127"/><text x="22.3508%" y="767.50"></text></g><g><title>ParseGenerator::generate (226 samples, 0.05%)</title><rect x="22.0900%" y="789" width="0.0471%" height="15" fill="rgb(224,191,6)" fg:x="106100" fg:w="226"/><text x="22.3400%" y="799.50"></text></g><g><title>Parse::Parse (225 samples, 0.05%)</title><rect x="22.0902%" y="773" width="0.0468%" height="15" fill="rgb(230,227,24)" fg:x="106101" fg:w="225"/><text x="22.3402%" y="783.50"></text></g><g><title>PredictedCallGenerator::generate (104 samples, 0.02%)</title><rect x="22.1370%" y="789" width="0.0217%" height="15" fill="rgb(228,80,19)" fg:x="106326" fg:w="104"/><text x="22.3870%" y="799.50"></text></g><g><title>Parse::do_call (564 samples, 0.12%)</title><rect x="22.0498%" y="805" width="0.1174%" height="15" fill="rgb(247,229,0)" fg:x="105907" fg:w="564"/><text x="22.2998%" y="815.50"></text></g><g><title>Parse::do_get_xxx (52 samples, 0.01%)</title><rect x="22.1760%" y="789" width="0.0108%" height="15" fill="rgb(237,194,15)" fg:x="106513" fg:w="52"/><text x="22.4260%" y="799.50"></text></g><g><title>Parse::do_field_access (91 samples, 0.02%)</title><rect x="22.1743%" y="805" width="0.0189%" height="15" fill="rgb(219,203,20)" fg:x="106505" fg:w="91"/><text x="22.4243%" y="815.50"></text></g><g><title>Parse::do_one_block (817 samples, 0.17%)</title><rect x="22.0350%" y="837" width="0.1701%" height="15" fill="rgb(234,128,8)" fg:x="105836" fg:w="817"/><text x="22.2850%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (803 samples, 0.17%)</title><rect x="22.0379%" y="821" width="0.1672%" height="15" fill="rgb(248,202,8)" fg:x="105850" fg:w="803"/><text x="22.2879%" y="831.50"></text></g><g><title>Parse::do_all_blocks (818 samples, 0.17%)</title><rect x="22.0350%" y="853" width="0.1703%" height="15" fill="rgb(206,104,37)" fg:x="105836" fg:w="818"/><text x="22.2850%" y="863.50"></text></g><g><title>ParseGenerator::generate (835 samples, 0.17%)</title><rect x="22.0350%" y="885" width="0.1738%" height="15" fill="rgb(223,8,27)" fg:x="105836" fg:w="835"/><text x="22.2850%" y="895.50"></text></g><g><title>Parse::Parse (835 samples, 0.17%)</title><rect x="22.0350%" y="869" width="0.1738%" height="15" fill="rgb(216,217,28)" fg:x="105836" fg:w="835"/><text x="22.2850%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (962 samples, 0.20%)</title><rect x="22.0155%" y="933" width="0.2003%" height="15" fill="rgb(249,199,1)" fg:x="105742" fg:w="962"/><text x="22.2655%" y="943.50"></text></g><g><title>C2Compiler::compile_method (962 samples, 0.20%)</title><rect x="22.0155%" y="917" width="0.2003%" height="15" fill="rgb(240,85,17)" fg:x="105742" fg:w="962"/><text x="22.2655%" y="927.50"></text></g><g><title>Compile::Compile (962 samples, 0.20%)</title><rect x="22.0155%" y="901" width="0.2003%" height="15" fill="rgb(206,108,45)" fg:x="105742" fg:w="962"/><text x="22.2655%" y="911.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="22.2324%" y="805" width="0.0117%" height="15" fill="rgb(245,210,41)" fg:x="106784" fg:w="56"/><text x="22.4824%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="22.2332%" y="789" width="0.0108%" height="15" fill="rgb(206,13,37)" fg:x="106788" fg:w="52"/><text x="22.4832%" y="799.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.01%)</title><rect x="22.2324%" y="821" width="0.0127%" height="15" fill="rgb(250,61,18)" fg:x="106784" fg:w="61"/><text x="22.4824%" y="831.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.02%)</title><rect x="22.2324%" y="853" width="0.0152%" height="15" fill="rgb(235,172,48)" fg:x="106784" fg:w="73"/><text x="22.4824%" y="863.50"></text></g><g><title>Parse::Parse (73 samples, 0.02%)</title><rect x="22.2324%" y="837" width="0.0152%" height="15" fill="rgb(249,201,17)" fg:x="106784" fg:w="73"/><text x="22.4824%" y="847.50"></text></g><g><title>JavaThread::thread_main_inner (91 samples, 0.02%)</title><rect x="22.2299%" y="933" width="0.0189%" height="15" fill="rgb(219,208,6)" fg:x="106772" fg:w="91"/><text x="22.4799%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (91 samples, 0.02%)</title><rect x="22.2299%" y="917" width="0.0189%" height="15" fill="rgb(248,31,23)" fg:x="106772" fg:w="91"/><text x="22.4799%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (91 samples, 0.02%)</title><rect x="22.2299%" y="901" width="0.0189%" height="15" fill="rgb(245,15,42)" fg:x="106772" fg:w="91"/><text x="22.4799%" y="911.50"></text></g><g><title>C2Compiler::compile_method (91 samples, 0.02%)</title><rect x="22.2299%" y="885" width="0.0189%" height="15" fill="rgb(222,217,39)" fg:x="106772" fg:w="91"/><text x="22.4799%" y="895.50"></text></g><g><title>Compile::Compile (91 samples, 0.02%)</title><rect x="22.2299%" y="869" width="0.0189%" height="15" fill="rgb(210,219,27)" fg:x="106772" fg:w="91"/><text x="22.4799%" y="879.50"></text></g><g><title>Parse::Parse (51 samples, 0.01%)</title><rect x="22.2513%" y="933" width="0.0106%" height="15" fill="rgb(252,166,36)" fg:x="106875" fg:w="51"/><text x="22.5013%" y="943.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="22.2513%" y="917" width="0.0106%" height="15" fill="rgb(245,132,34)" fg:x="106875" fg:w="51"/><text x="22.5013%" y="927.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.01%)</title><rect x="22.2513%" y="901" width="0.0106%" height="15" fill="rgb(236,54,3)" fg:x="106875" fg:w="51"/><text x="22.5013%" y="911.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.01%)</title><rect x="22.2513%" y="885" width="0.0106%" height="15" fill="rgb(241,173,43)" fg:x="106875" fg:w="51"/><text x="22.5013%" y="895.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="22.2513%" y="869" width="0.0106%" height="15" fill="rgb(215,190,9)" fg:x="106875" fg:w="51"/><text x="22.5013%" y="879.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="22.2620%" y="581" width="0.0108%" height="15" fill="rgb(242,101,16)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="591.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="22.2620%" y="565" width="0.0108%" height="15" fill="rgb(223,190,21)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="575.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="22.2620%" y="549" width="0.0108%" height="15" fill="rgb(215,228,25)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="559.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="22.2620%" y="533" width="0.0108%" height="15" fill="rgb(225,36,22)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="22.2620%" y="517" width="0.0108%" height="15" fill="rgb(251,106,46)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="527.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="22.2620%" y="501" width="0.0108%" height="15" fill="rgb(208,90,1)" fg:x="106926" fg:w="52"/><text x="22.5120%" y="511.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="22.2620%" y="645" width="0.0115%" height="15" fill="rgb(243,10,4)" fg:x="106926" fg:w="55"/><text x="22.5120%" y="655.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="22.2620%" y="629" width="0.0115%" height="15" fill="rgb(212,137,27)" fg:x="106926" fg:w="55"/><text x="22.5120%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="22.2620%" y="613" width="0.0115%" height="15" fill="rgb(231,220,49)" fg:x="106926" fg:w="55"/><text x="22.5120%" y="623.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="22.2620%" y="597" width="0.0115%" height="15" fill="rgb(237,96,20)" fg:x="106926" fg:w="55"/><text x="22.5120%" y="607.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="22.2620%" y="677" width="0.0117%" height="15" fill="rgb(239,229,30)" fg:x="106926" fg:w="56"/><text x="22.5120%" y="687.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="22.2620%" y="661" width="0.0117%" height="15" fill="rgb(219,65,33)" fg:x="106926" fg:w="56"/><text x="22.5120%" y="671.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="22.2620%" y="773" width="0.0119%" height="15" fill="rgb(243,134,7)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="783.50"></text></g><g><title>Parse::Parse (57 samples, 0.01%)</title><rect x="22.2620%" y="757" width="0.0119%" height="15" fill="rgb(216,177,54)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="767.50"></text></g><g><title>Parse::do_all_blocks (57 samples, 0.01%)</title><rect x="22.2620%" y="741" width="0.0119%" height="15" fill="rgb(211,160,20)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="751.50"></text></g><g><title>Parse::do_one_block (57 samples, 0.01%)</title><rect x="22.2620%" y="725" width="0.0119%" height="15" fill="rgb(239,85,39)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (57 samples, 0.01%)</title><rect x="22.2620%" y="709" width="0.0119%" height="15" fill="rgb(232,125,22)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="719.50"></text></g><g><title>Parse::do_call (57 samples, 0.01%)</title><rect x="22.2620%" y="693" width="0.0119%" height="15" fill="rgb(244,57,34)" fg:x="106926" fg:w="57"/><text x="22.5120%" y="703.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="22.2620%" y="869" width="0.0121%" height="15" fill="rgb(214,203,32)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="879.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="22.2620%" y="853" width="0.0121%" height="15" fill="rgb(207,58,43)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="863.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="22.2620%" y="837" width="0.0121%" height="15" fill="rgb(215,193,15)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="847.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="22.2620%" y="821" width="0.0121%" height="15" fill="rgb(232,15,44)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="22.2620%" y="805" width="0.0121%" height="15" fill="rgb(212,3,48)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="815.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="22.2620%" y="789" width="0.0121%" height="15" fill="rgb(218,128,7)" fg:x="106926" fg:w="58"/><text x="22.5120%" y="799.50"></text></g><g><title>Parse::do_all_blocks (61 samples, 0.01%)</title><rect x="22.2620%" y="933" width="0.0127%" height="15" fill="rgb(226,216,39)" fg:x="106926" fg:w="61"/><text x="22.5120%" y="943.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.01%)</title><rect x="22.2620%" y="917" width="0.0127%" height="15" fill="rgb(243,47,51)" fg:x="106926" fg:w="61"/><text x="22.5120%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.01%)</title><rect x="22.2620%" y="901" width="0.0127%" height="15" fill="rgb(241,183,40)" fg:x="106926" fg:w="61"/><text x="22.5120%" y="911.50"></text></g><g><title>Parse::do_call (61 samples, 0.01%)</title><rect x="22.2620%" y="885" width="0.0127%" height="15" fill="rgb(231,217,32)" fg:x="106926" fg:w="61"/><text x="22.5120%" y="895.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.01%)</title><rect x="22.2761%" y="245" width="0.0110%" height="15" fill="rgb(229,61,38)" fg:x="106994" fg:w="53"/><text x="22.5261%" y="255.50"></text></g><g><title>Parse::Parse (53 samples, 0.01%)</title><rect x="22.2761%" y="229" width="0.0110%" height="15" fill="rgb(225,210,5)" fg:x="106994" fg:w="53"/><text x="22.5261%" y="239.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="22.2763%" y="213" width="0.0108%" height="15" fill="rgb(231,79,45)" fg:x="106995" fg:w="52"/><text x="22.5263%" y="223.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="22.2763%" y="197" width="0.0108%" height="15" fill="rgb(224,100,7)" fg:x="106995" fg:w="52"/><text x="22.5263%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.01%)</title><rect x="22.2767%" y="181" width="0.0104%" height="15" fill="rgb(241,198,18)" fg:x="106997" fg:w="50"/><text x="22.5267%" y="191.50"></text></g><g><title>Parse::do_call (62 samples, 0.01%)</title><rect x="22.2753%" y="261" width="0.0129%" height="15" fill="rgb(252,97,53)" fg:x="106990" fg:w="62"/><text x="22.5253%" y="271.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.01%)</title><rect x="22.2751%" y="341" width="0.0135%" height="15" fill="rgb(220,88,7)" fg:x="106989" fg:w="65"/><text x="22.5251%" y="351.50"></text></g><g><title>Parse::Parse (65 samples, 0.01%)</title><rect x="22.2751%" y="325" width="0.0135%" height="15" fill="rgb(213,176,14)" fg:x="106989" fg:w="65"/><text x="22.5251%" y="335.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.01%)</title><rect x="22.2751%" y="309" width="0.0135%" height="15" fill="rgb(246,73,7)" fg:x="106989" fg:w="65"/><text x="22.5251%" y="319.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.01%)</title><rect x="22.2751%" y="293" width="0.0135%" height="15" fill="rgb(245,64,36)" fg:x="106989" fg:w="65"/><text x="22.5251%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.01%)</title><rect x="22.2751%" y="277" width="0.0135%" height="15" fill="rgb(245,80,10)" fg:x="106989" fg:w="65"/><text x="22.5251%" y="287.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="22.2751%" y="437" width="0.0142%" height="15" fill="rgb(232,107,50)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="447.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="22.2751%" y="421" width="0.0142%" height="15" fill="rgb(253,3,0)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="431.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.01%)</title><rect x="22.2751%" y="405" width="0.0142%" height="15" fill="rgb(212,99,53)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="415.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.01%)</title><rect x="22.2751%" y="389" width="0.0142%" height="15" fill="rgb(249,111,54)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.01%)</title><rect x="22.2751%" y="373" width="0.0142%" height="15" fill="rgb(249,55,30)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="383.50"></text></g><g><title>Parse::do_call (68 samples, 0.01%)</title><rect x="22.2751%" y="357" width="0.0142%" height="15" fill="rgb(237,47,42)" fg:x="106989" fg:w="68"/><text x="22.5251%" y="367.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.02%)</title><rect x="22.2747%" y="533" width="0.0156%" height="15" fill="rgb(211,20,18)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="543.50"></text></g><g><title>Parse::Parse (75 samples, 0.02%)</title><rect x="22.2747%" y="517" width="0.0156%" height="15" fill="rgb(231,203,46)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="527.50"></text></g><g><title>Parse::do_all_blocks (75 samples, 0.02%)</title><rect x="22.2747%" y="501" width="0.0156%" height="15" fill="rgb(237,142,3)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="511.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.02%)</title><rect x="22.2747%" y="485" width="0.0156%" height="15" fill="rgb(241,107,1)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.02%)</title><rect x="22.2747%" y="469" width="0.0156%" height="15" fill="rgb(229,83,13)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="479.50"></text></g><g><title>Parse::do_call (75 samples, 0.02%)</title><rect x="22.2747%" y="453" width="0.0156%" height="15" fill="rgb(241,91,40)" fg:x="106987" fg:w="75"/><text x="22.5247%" y="463.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.02%)</title><rect x="22.2747%" y="629" width="0.0167%" height="15" fill="rgb(225,3,45)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="639.50"></text></g><g><title>Parse::Parse (80 samples, 0.02%)</title><rect x="22.2747%" y="613" width="0.0167%" height="15" fill="rgb(244,223,14)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="623.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.02%)</title><rect x="22.2747%" y="597" width="0.0167%" height="15" fill="rgb(224,124,37)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="607.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.02%)</title><rect x="22.2747%" y="581" width="0.0167%" height="15" fill="rgb(251,171,30)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.02%)</title><rect x="22.2747%" y="565" width="0.0167%" height="15" fill="rgb(236,46,54)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="575.50"></text></g><g><title>Parse::do_call (80 samples, 0.02%)</title><rect x="22.2747%" y="549" width="0.0167%" height="15" fill="rgb(245,213,5)" fg:x="106987" fg:w="80"/><text x="22.5247%" y="559.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="22.2747%" y="725" width="0.0179%" height="15" fill="rgb(230,144,27)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="735.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="22.2747%" y="709" width="0.0179%" height="15" fill="rgb(220,86,6)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="719.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.02%)</title><rect x="22.2747%" y="693" width="0.0179%" height="15" fill="rgb(240,20,13)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="703.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.02%)</title><rect x="22.2747%" y="677" width="0.0179%" height="15" fill="rgb(217,89,34)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.02%)</title><rect x="22.2747%" y="661" width="0.0179%" height="15" fill="rgb(229,13,5)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="671.50"></text></g><g><title>Parse::do_call (86 samples, 0.02%)</title><rect x="22.2747%" y="645" width="0.0179%" height="15" fill="rgb(244,67,35)" fg:x="106987" fg:w="86"/><text x="22.5247%" y="655.50"></text></g><g><title>ParseGenerator::generate (92 samples, 0.02%)</title><rect x="22.2747%" y="821" width="0.0192%" height="15" fill="rgb(221,40,2)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="831.50"></text></g><g><title>Parse::Parse (92 samples, 0.02%)</title><rect x="22.2747%" y="805" width="0.0192%" height="15" fill="rgb(237,157,21)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="815.50"></text></g><g><title>Parse::do_all_blocks (92 samples, 0.02%)</title><rect x="22.2747%" y="789" width="0.0192%" height="15" fill="rgb(222,94,11)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="799.50"></text></g><g><title>Parse::do_one_block (92 samples, 0.02%)</title><rect x="22.2747%" y="773" width="0.0192%" height="15" fill="rgb(249,113,6)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (92 samples, 0.02%)</title><rect x="22.2747%" y="757" width="0.0192%" height="15" fill="rgb(238,137,36)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="767.50"></text></g><g><title>Parse::do_call (92 samples, 0.02%)</title><rect x="22.2747%" y="741" width="0.0192%" height="15" fill="rgb(210,102,26)" fg:x="106987" fg:w="92"/><text x="22.5247%" y="751.50"></text></g><g><title>ParseGenerator::generate (100 samples, 0.02%)</title><rect x="22.2747%" y="917" width="0.0208%" height="15" fill="rgb(218,30,30)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="927.50"></text></g><g><title>Parse::Parse (100 samples, 0.02%)</title><rect x="22.2747%" y="901" width="0.0208%" height="15" fill="rgb(214,67,26)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="911.50"></text></g><g><title>Parse::do_all_blocks (100 samples, 0.02%)</title><rect x="22.2747%" y="885" width="0.0208%" height="15" fill="rgb(251,9,53)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="895.50"></text></g><g><title>Parse::do_one_block (100 samples, 0.02%)</title><rect x="22.2747%" y="869" width="0.0208%" height="15" fill="rgb(228,204,25)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (100 samples, 0.02%)</title><rect x="22.2747%" y="853" width="0.0208%" height="15" fill="rgb(207,153,8)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="863.50"></text></g><g><title>Parse::do_call (100 samples, 0.02%)</title><rect x="22.2747%" y="837" width="0.0208%" height="15" fill="rgb(242,9,16)" fg:x="106987" fg:w="100"/><text x="22.5247%" y="847.50"></text></g><g><title>Parse::do_call (106 samples, 0.02%)</title><rect x="22.2747%" y="933" width="0.0221%" height="15" fill="rgb(217,211,10)" fg:x="106987" fg:w="106"/><text x="22.5247%" y="943.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.01%)</title><rect x="22.2967%" y="885" width="0.0108%" height="15" fill="rgb(219,228,52)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="895.50"></text></g><g><title>Parse::Parse (52 samples, 0.01%)</title><rect x="22.2967%" y="869" width="0.0108%" height="15" fill="rgb(231,92,29)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="879.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.01%)</title><rect x="22.2967%" y="853" width="0.0108%" height="15" fill="rgb(232,8,23)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="863.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.01%)</title><rect x="22.2967%" y="837" width="0.0108%" height="15" fill="rgb(216,211,34)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.01%)</title><rect x="22.2967%" y="821" width="0.0108%" height="15" fill="rgb(236,151,0)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="831.50"></text></g><g><title>Parse::do_call (52 samples, 0.01%)</title><rect x="22.2967%" y="805" width="0.0108%" height="15" fill="rgb(209,168,3)" fg:x="107093" fg:w="52"/><text x="22.5467%" y="815.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="22.2967%" y="933" width="0.0112%" height="15" fill="rgb(208,129,28)" fg:x="107093" fg:w="54"/><text x="22.5467%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="22.2967%" y="917" width="0.0112%" height="15" fill="rgb(229,78,22)" fg:x="107093" fg:w="54"/><text x="22.5467%" y="927.50"></text></g><g><title>Parse::do_call (54 samples, 0.01%)</title><rect x="22.2967%" y="901" width="0.0112%" height="15" fill="rgb(228,187,13)" fg:x="107093" fg:w="54"/><text x="22.5467%" y="911.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.01%)</title><rect x="22.3080%" y="709" width="0.0102%" height="15" fill="rgb(240,119,24)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="719.50"></text></g><g><title>Parse::Parse (49 samples, 0.01%)</title><rect x="22.3080%" y="693" width="0.0102%" height="15" fill="rgb(209,194,42)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="703.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.01%)</title><rect x="22.3080%" y="677" width="0.0102%" height="15" fill="rgb(247,200,46)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="687.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.01%)</title><rect x="22.3080%" y="661" width="0.0102%" height="15" fill="rgb(218,76,16)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.01%)</title><rect x="22.3080%" y="645" width="0.0102%" height="15" fill="rgb(225,21,48)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="655.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="22.3080%" y="629" width="0.0102%" height="15" fill="rgb(239,223,50)" fg:x="107147" fg:w="49"/><text x="22.5580%" y="639.50"></text></g><g><title>ParseGenerator::generate (50 samples, 0.01%)</title><rect x="22.3080%" y="805" width="0.0104%" height="15" fill="rgb(244,45,21)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="815.50"></text></g><g><title>Parse::Parse (50 samples, 0.01%)</title><rect x="22.3080%" y="789" width="0.0104%" height="15" fill="rgb(232,33,43)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="799.50"></text></g><g><title>Parse::do_all_blocks (50 samples, 0.01%)</title><rect x="22.3080%" y="773" width="0.0104%" height="15" fill="rgb(209,8,3)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="783.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.01%)</title><rect x="22.3080%" y="757" width="0.0104%" height="15" fill="rgb(214,25,53)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.01%)</title><rect x="22.3080%" y="741" width="0.0104%" height="15" fill="rgb(254,186,54)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="751.50"></text></g><g><title>Parse::do_call (50 samples, 0.01%)</title><rect x="22.3080%" y="725" width="0.0104%" height="15" fill="rgb(208,174,49)" fg:x="107147" fg:w="50"/><text x="22.5580%" y="735.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.01%)</title><rect x="22.3080%" y="901" width="0.0106%" height="15" fill="rgb(233,191,51)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="911.50"></text></g><g><title>Parse::Parse (51 samples, 0.01%)</title><rect x="22.3080%" y="885" width="0.0106%" height="15" fill="rgb(222,134,10)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="895.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="22.3080%" y="869" width="0.0106%" height="15" fill="rgb(230,226,20)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="879.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.01%)</title><rect x="22.3080%" y="853" width="0.0106%" height="15" fill="rgb(251,111,25)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.01%)</title><rect x="22.3080%" y="837" width="0.0106%" height="15" fill="rgb(224,40,46)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="847.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="22.3080%" y="821" width="0.0106%" height="15" fill="rgb(236,108,47)" fg:x="107147" fg:w="51"/><text x="22.5580%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="22.3080%" y="933" width="0.0112%" height="15" fill="rgb(234,93,0)" fg:x="107147" fg:w="54"/><text x="22.5580%" y="943.50"></text></g><g><title>Parse::do_call (54 samples, 0.01%)</title><rect x="22.3080%" y="917" width="0.0112%" height="15" fill="rgb(224,213,32)" fg:x="107147" fg:w="54"/><text x="22.5580%" y="927.50"></text></g><g><title>Parse::do_call (77 samples, 0.02%)</title><rect x="22.3226%" y="181" width="0.0160%" height="15" fill="rgb(251,11,48)" fg:x="107217" fg:w="77"/><text x="22.5726%" y="191.50"></text></g><g><title>ParseGenerator::generate (104 samples, 0.02%)</title><rect x="22.3215%" y="261" width="0.0217%" height="15" fill="rgb(236,173,5)" fg:x="107212" fg:w="104"/><text x="22.5715%" y="271.50"></text></g><g><title>Parse::Parse (104 samples, 0.02%)</title><rect x="22.3215%" y="245" width="0.0217%" height="15" fill="rgb(230,95,12)" fg:x="107212" fg:w="104"/><text x="22.5715%" y="255.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.02%)</title><rect x="22.3215%" y="229" width="0.0217%" height="15" fill="rgb(232,209,1)" fg:x="107212" fg:w="104"/><text x="22.5715%" y="239.50"></text></g><g><title>Parse::do_one_block (104 samples, 0.02%)</title><rect x="22.3215%" y="213" width="0.0217%" height="15" fill="rgb(232,6,1)" fg:x="107212" fg:w="104"/><text x="22.5715%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (104 samples, 0.02%)</title><rect x="22.3215%" y="197" width="0.0217%" height="15" fill="rgb(210,224,50)" fg:x="107212" fg:w="104"/><text x="22.5715%" y="207.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="22.3203%" y="277" width="0.0250%" height="15" fill="rgb(228,127,35)" fg:x="107206" fg:w="120"/><text x="22.5703%" y="287.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.03%)</title><rect x="22.3203%" y="357" width="0.0271%" height="15" fill="rgb(245,102,45)" fg:x="107206" fg:w="130"/><text x="22.5703%" y="367.50"></text></g><g><title>Parse::Parse (130 samples, 0.03%)</title><rect x="22.3203%" y="341" width="0.0271%" height="15" fill="rgb(214,1,49)" fg:x="107206" fg:w="130"/><text x="22.5703%" y="351.50"></text></g><g><title>Parse::do_all_blocks (130 samples, 0.03%)</title><rect x="22.3203%" y="325" width="0.0271%" height="15" fill="rgb(226,163,40)" fg:x="107206" fg:w="130"/><text x="22.5703%" y="335.50"></text></g><g><title>Parse::do_one_block (130 samples, 0.03%)</title><rect x="22.3203%" y="309" width="0.0271%" height="15" fill="rgb(239,212,28)" fg:x="107206" fg:w="130"/><text x="22.5703%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (130 samples, 0.03%)</title><rect x="22.3203%" y="293" width="0.0271%" height="15" fill="rgb(220,20,13)" fg:x="107206" fg:w="130"/><text x="22.5703%" y="303.50"></text></g><g><title>Parse::do_call (147 samples, 0.03%)</title><rect x="22.3192%" y="373" width="0.0306%" height="15" fill="rgb(210,164,35)" fg:x="107201" fg:w="147"/><text x="22.5692%" y="383.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.03%)</title><rect x="22.3192%" y="453" width="0.0316%" height="15" fill="rgb(248,109,41)" fg:x="107201" fg:w="152"/><text x="22.5692%" y="463.50"></text></g><g><title>Parse::Parse (152 samples, 0.03%)</title><rect x="22.3192%" y="437" width="0.0316%" height="15" fill="rgb(238,23,50)" fg:x="107201" fg:w="152"/><text x="22.5692%" y="447.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.03%)</title><rect x="22.3192%" y="421" width="0.0316%" height="15" fill="rgb(211,48,49)" fg:x="107201" fg:w="152"/><text x="22.5692%" y="431.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.03%)</title><rect x="22.3192%" y="405" width="0.0316%" height="15" fill="rgb(223,36,21)" fg:x="107201" fg:w="152"/><text x="22.5692%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.03%)</title><rect x="22.3192%" y="389" width="0.0316%" height="15" fill="rgb(207,123,46)" fg:x="107201" fg:w="152"/><text x="22.5692%" y="399.50"></text></g><g><title>ParseGenerator::generate (160 samples, 0.03%)</title><rect x="22.3192%" y="549" width="0.0333%" height="15" fill="rgb(240,218,32)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="559.50"></text></g><g><title>Parse::Parse (160 samples, 0.03%)</title><rect x="22.3192%" y="533" width="0.0333%" height="15" fill="rgb(252,5,43)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="543.50"></text></g><g><title>Parse::do_all_blocks (160 samples, 0.03%)</title><rect x="22.3192%" y="517" width="0.0333%" height="15" fill="rgb(252,84,19)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="527.50"></text></g><g><title>Parse::do_one_block (160 samples, 0.03%)</title><rect x="22.3192%" y="501" width="0.0333%" height="15" fill="rgb(243,152,39)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (160 samples, 0.03%)</title><rect x="22.3192%" y="485" width="0.0333%" height="15" fill="rgb(234,160,15)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="495.50"></text></g><g><title>Parse::do_call (160 samples, 0.03%)</title><rect x="22.3192%" y="469" width="0.0333%" height="15" fill="rgb(237,34,20)" fg:x="107201" fg:w="160"/><text x="22.5692%" y="479.50"></text></g><g><title>ParseGenerator::generate (172 samples, 0.04%)</title><rect x="22.3192%" y="645" width="0.0358%" height="15" fill="rgb(229,97,13)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="655.50"></text></g><g><title>Parse::Parse (172 samples, 0.04%)</title><rect x="22.3192%" y="629" width="0.0358%" height="15" fill="rgb(234,71,50)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="639.50"></text></g><g><title>Parse::do_all_blocks (172 samples, 0.04%)</title><rect x="22.3192%" y="613" width="0.0358%" height="15" fill="rgb(253,155,4)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="623.50"></text></g><g><title>Parse::do_one_block (172 samples, 0.04%)</title><rect x="22.3192%" y="597" width="0.0358%" height="15" fill="rgb(222,185,37)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (172 samples, 0.04%)</title><rect x="22.3192%" y="581" width="0.0358%" height="15" fill="rgb(251,177,13)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="591.50"></text></g><g><title>Parse::do_call (172 samples, 0.04%)</title><rect x="22.3192%" y="565" width="0.0358%" height="15" fill="rgb(250,179,40)" fg:x="107201" fg:w="172"/><text x="22.5692%" y="575.50"></text></g><g><title>ParseGenerator::generate (179 samples, 0.04%)</title><rect x="22.3192%" y="741" width="0.0373%" height="15" fill="rgb(242,44,2)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="751.50"></text></g><g><title>Parse::Parse (179 samples, 0.04%)</title><rect x="22.3192%" y="725" width="0.0373%" height="15" fill="rgb(216,177,13)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="735.50"></text></g><g><title>Parse::do_all_blocks (179 samples, 0.04%)</title><rect x="22.3192%" y="709" width="0.0373%" height="15" fill="rgb(216,106,43)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="719.50"></text></g><g><title>Parse::do_one_block (179 samples, 0.04%)</title><rect x="22.3192%" y="693" width="0.0373%" height="15" fill="rgb(216,183,2)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (179 samples, 0.04%)</title><rect x="22.3192%" y="677" width="0.0373%" height="15" fill="rgb(249,75,3)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="687.50"></text></g><g><title>Parse::do_call (179 samples, 0.04%)</title><rect x="22.3192%" y="661" width="0.0373%" height="15" fill="rgb(219,67,39)" fg:x="107201" fg:w="179"/><text x="22.5692%" y="671.50"></text></g><g><title>ParseGenerator::generate (198 samples, 0.04%)</title><rect x="22.3192%" y="837" width="0.0412%" height="15" fill="rgb(253,228,2)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="847.50"></text></g><g><title>Parse::Parse (198 samples, 0.04%)</title><rect x="22.3192%" y="821" width="0.0412%" height="15" fill="rgb(235,138,27)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="831.50"></text></g><g><title>Parse::do_all_blocks (198 samples, 0.04%)</title><rect x="22.3192%" y="805" width="0.0412%" height="15" fill="rgb(236,97,51)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="815.50"></text></g><g><title>Parse::do_one_block (198 samples, 0.04%)</title><rect x="22.3192%" y="789" width="0.0412%" height="15" fill="rgb(240,80,30)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (198 samples, 0.04%)</title><rect x="22.3192%" y="773" width="0.0412%" height="15" fill="rgb(230,178,19)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="783.50"></text></g><g><title>Parse::do_call (198 samples, 0.04%)</title><rect x="22.3192%" y="757" width="0.0412%" height="15" fill="rgb(210,190,27)" fg:x="107201" fg:w="198"/><text x="22.5692%" y="767.50"></text></g><g><title>ParseGenerator::generate (224 samples, 0.05%)</title><rect x="22.3192%" y="933" width="0.0466%" height="15" fill="rgb(222,107,31)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="943.50"></text></g><g><title>Parse::Parse (224 samples, 0.05%)</title><rect x="22.3192%" y="917" width="0.0466%" height="15" fill="rgb(216,127,34)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="927.50"></text></g><g><title>Parse::do_all_blocks (224 samples, 0.05%)</title><rect x="22.3192%" y="901" width="0.0466%" height="15" fill="rgb(234,116,52)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="911.50"></text></g><g><title>Parse::do_one_block (224 samples, 0.05%)</title><rect x="22.3192%" y="885" width="0.0466%" height="15" fill="rgb(222,124,15)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (224 samples, 0.05%)</title><rect x="22.3192%" y="869" width="0.0466%" height="15" fill="rgb(231,179,28)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="879.50"></text></g><g><title>Parse::do_call (224 samples, 0.05%)</title><rect x="22.3192%" y="853" width="0.0466%" height="15" fill="rgb(226,93,45)" fg:x="107201" fg:w="224"/><text x="22.5692%" y="863.50"></text></g><g><title>Thread::call_run (85 samples, 0.02%)</title><rect x="22.3763%" y="933" width="0.0177%" height="15" fill="rgb(215,8,51)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="943.50"></text></g><g><title>JavaThread::thread_main_inner (85 samples, 0.02%)</title><rect x="22.3763%" y="917" width="0.0177%" height="15" fill="rgb(223,106,5)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="927.50"></text></g><g><title>CompileBroker::compiler_thread_loop (85 samples, 0.02%)</title><rect x="22.3763%" y="901" width="0.0177%" height="15" fill="rgb(250,191,5)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="911.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (85 samples, 0.02%)</title><rect x="22.3763%" y="885" width="0.0177%" height="15" fill="rgb(242,132,44)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="895.50"></text></g><g><title>C2Compiler::compile_method (85 samples, 0.02%)</title><rect x="22.3763%" y="869" width="0.0177%" height="15" fill="rgb(251,152,29)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="879.50"></text></g><g><title>Compile::Compile (85 samples, 0.02%)</title><rect x="22.3763%" y="853" width="0.0177%" height="15" fill="rgb(218,179,5)" fg:x="107475" fg:w="85"/><text x="22.6263%" y="863.50"></text></g><g><title>_dl_update_slotinfo (55 samples, 0.01%)</title><rect x="22.4015%" y="933" width="0.0115%" height="15" fill="rgb(227,67,19)" fg:x="107596" fg:w="55"/><text x="22.6515%" y="943.50"></text></g><g><title>start_thread (64 samples, 0.01%)</title><rect x="22.4156%" y="933" width="0.0133%" height="15" fill="rgb(233,119,31)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="943.50"></text></g><g><title>thread_native_entry (64 samples, 0.01%)</title><rect x="22.4156%" y="917" width="0.0133%" height="15" fill="rgb(241,120,22)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="927.50"></text></g><g><title>Thread::call_run (64 samples, 0.01%)</title><rect x="22.4156%" y="901" width="0.0133%" height="15" fill="rgb(224,102,30)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (64 samples, 0.01%)</title><rect x="22.4156%" y="885" width="0.0133%" height="15" fill="rgb(210,164,37)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="895.50"></text></g><g><title>CompileBroker::compiler_thread_loop (64 samples, 0.01%)</title><rect x="22.4156%" y="869" width="0.0133%" height="15" fill="rgb(226,191,16)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (64 samples, 0.01%)</title><rect x="22.4156%" y="853" width="0.0133%" height="15" fill="rgb(214,40,45)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="863.50"></text></g><g><title>C2Compiler::compile_method (64 samples, 0.01%)</title><rect x="22.4156%" y="837" width="0.0133%" height="15" fill="rgb(244,29,26)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="847.50"></text></g><g><title>Compile::Compile (64 samples, 0.01%)</title><rect x="22.4156%" y="821" width="0.0133%" height="15" fill="rgb(216,16,5)" fg:x="107664" fg:w="64"/><text x="22.6656%" y="831.50"></text></g><g><title>[unknown] (87,906 samples, 18.30%)</title><rect x="4.1330%" y="949" width="18.3020%" height="15" fill="rgb(249,76,35)" fg:x="19851" fg:w="87906"/><text x="4.3830%" y="959.50">[unknown]</text></g><g><title>Dict::Insert (72 samples, 0.01%)</title><rect x="22.4666%" y="773" width="0.0150%" height="15" fill="rgb(207,11,44)" fg:x="107909" fg:w="72"/><text x="22.7166%" y="783.50"></text></g><g><title>Type::Initialize (87 samples, 0.02%)</title><rect x="22.4660%" y="789" width="0.0181%" height="15" fill="rgb(228,190,49)" fg:x="107906" fg:w="87"/><text x="22.7160%" y="799.50"></text></g><g><title>CompileWrapper::CompileWrapper (89 samples, 0.02%)</title><rect x="22.4658%" y="805" width="0.0185%" height="15" fill="rgb(214,173,12)" fg:x="107905" fg:w="89"/><text x="22.7158%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (211 samples, 0.04%)</title><rect x="22.4943%" y="789" width="0.0439%" height="15" fill="rgb(218,26,35)" fg:x="108042" fg:w="211"/><text x="22.7443%" y="799.50"></text></g><g><title>Compile::remove_useless_nodes (240 samples, 0.05%)</title><rect x="22.5382%" y="789" width="0.0500%" height="15" fill="rgb(220,200,19)" fg:x="108253" fg:w="240"/><text x="22.7882%" y="799.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (535 samples, 0.11%)</title><rect x="22.4868%" y="805" width="0.1114%" height="15" fill="rgb(239,95,49)" fg:x="108006" fg:w="535"/><text x="22.7368%" y="815.50"></text></g><g><title>C2Compiler::compile_method (825 samples, 0.17%)</title><rect x="22.4418%" y="837" width="0.1718%" height="15" fill="rgb(235,85,53)" fg:x="107790" fg:w="825"/><text x="22.6918%" y="847.50"></text></g><g><title>Compile::Compile (812 samples, 0.17%)</title><rect x="22.4446%" y="821" width="0.1691%" height="15" fill="rgb(233,133,31)" fg:x="107803" fg:w="812"/><text x="22.6946%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,008 samples, 0.21%)</title><rect x="22.4410%" y="853" width="0.2099%" height="15" fill="rgb(218,25,20)" fg:x="107786" fg:w="1008"/><text x="22.6910%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (360 samples, 0.07%)</title><rect x="22.6736%" y="565" width="0.0750%" height="15" fill="rgb(252,210,38)" fg:x="108903" fg:w="360"/><text x="22.9236%" y="575.50"></text></g><g><title>x86_pmu_enable (350 samples, 0.07%)</title><rect x="22.6757%" y="549" width="0.0729%" height="15" fill="rgb(242,134,21)" fg:x="108913" fg:w="350"/><text x="22.9257%" y="559.50"></text></g><g><title>intel_pmu_enable_all (347 samples, 0.07%)</title><rect x="22.6763%" y="533" width="0.0722%" height="15" fill="rgb(213,28,48)" fg:x="108916" fg:w="347"/><text x="22.9263%" y="543.50"></text></g><g><title>native_write_msr (344 samples, 0.07%)</title><rect x="22.6769%" y="517" width="0.0716%" height="15" fill="rgb(250,196,2)" fg:x="108919" fg:w="344"/><text x="22.9269%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (367 samples, 0.08%)</title><rect x="22.6730%" y="581" width="0.0764%" height="15" fill="rgb(227,5,17)" fg:x="108900" fg:w="367"/><text x="22.9230%" y="591.50"></text></g><g><title>futex_wait_queue_me (419 samples, 0.09%)</title><rect x="22.6663%" y="629" width="0.0872%" height="15" fill="rgb(221,226,24)" fg:x="108868" fg:w="419"/><text x="22.9163%" y="639.50"></text></g><g><title>schedule (406 samples, 0.08%)</title><rect x="22.6690%" y="613" width="0.0845%" height="15" fill="rgb(211,5,48)" fg:x="108881" fg:w="406"/><text x="22.9190%" y="623.50"></text></g><g><title>__schedule (402 samples, 0.08%)</title><rect x="22.6698%" y="597" width="0.0837%" height="15" fill="rgb(219,150,6)" fg:x="108885" fg:w="402"/><text x="22.9198%" y="607.50"></text></g><g><title>do_futex (438 samples, 0.09%)</title><rect x="22.6657%" y="661" width="0.0912%" height="15" fill="rgb(251,46,16)" fg:x="108865" fg:w="438"/><text x="22.9157%" y="671.50"></text></g><g><title>futex_wait (438 samples, 0.09%)</title><rect x="22.6657%" y="645" width="0.0912%" height="15" fill="rgb(220,204,40)" fg:x="108865" fg:w="438"/><text x="22.9157%" y="655.50"></text></g><g><title>__x64_sys_futex (442 samples, 0.09%)</title><rect x="22.6652%" y="677" width="0.0920%" height="15" fill="rgb(211,85,2)" fg:x="108863" fg:w="442"/><text x="22.9152%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (460 samples, 0.10%)</title><rect x="22.6636%" y="757" width="0.0958%" height="15" fill="rgb(229,17,7)" fg:x="108855" fg:w="460"/><text x="22.9136%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (458 samples, 0.10%)</title><rect x="22.6640%" y="741" width="0.0954%" height="15" fill="rgb(239,72,28)" fg:x="108857" fg:w="458"/><text x="22.9140%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (458 samples, 0.10%)</title><rect x="22.6640%" y="725" width="0.0954%" height="15" fill="rgb(230,47,54)" fg:x="108857" fg:w="458"/><text x="22.9140%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.09%)</title><rect x="22.6652%" y="709" width="0.0941%" height="15" fill="rgb(214,50,8)" fg:x="108863" fg:w="452"/><text x="22.9152%" y="719.50"></text></g><g><title>do_syscall_64 (452 samples, 0.09%)</title><rect x="22.6652%" y="693" width="0.0941%" height="15" fill="rgb(216,198,43)" fg:x="108863" fg:w="452"/><text x="22.9152%" y="703.50"></text></g><g><title>___pthread_cond_timedwait64 (465 samples, 0.10%)</title><rect x="22.6632%" y="789" width="0.0968%" height="15" fill="rgb(234,20,35)" fg:x="108853" fg:w="465"/><text x="22.9132%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (465 samples, 0.10%)</title><rect x="22.6632%" y="773" width="0.0968%" height="15" fill="rgb(254,45,19)" fg:x="108853" fg:w="465"/><text x="22.9132%" y="783.50"></text></g><g><title>os::PlatformEvent::park (494 samples, 0.10%)</title><rect x="22.6623%" y="805" width="0.1029%" height="15" fill="rgb(219,14,44)" fg:x="108849" fg:w="494"/><text x="22.9123%" y="815.50"></text></g><g><title>Monitor::IWait (514 samples, 0.11%)</title><rect x="22.6586%" y="821" width="0.1070%" height="15" fill="rgb(217,220,26)" fg:x="108831" fg:w="514"/><text x="22.9086%" y="831.50"></text></g><g><title>Monitor::wait (527 samples, 0.11%)</title><rect x="22.6575%" y="837" width="0.1097%" height="15" fill="rgb(213,158,28)" fg:x="108826" fg:w="527"/><text x="22.9075%" y="847.50"></text></g><g><title>CompileQueue::get (576 samples, 0.12%)</title><rect x="22.6563%" y="853" width="0.1199%" height="15" fill="rgb(252,51,52)" fg:x="108820" fg:w="576"/><text x="22.9063%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,623 samples, 0.34%)</title><rect x="22.4402%" y="869" width="0.3379%" height="15" fill="rgb(246,89,16)" fg:x="107782" fg:w="1623"/><text x="22.6902%" y="879.50"></text></g><g><title>Thread::call_run (1,627 samples, 0.34%)</title><rect x="22.4400%" y="901" width="0.3387%" height="15" fill="rgb(216,158,49)" fg:x="107781" fg:w="1627"/><text x="22.6900%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (1,626 samples, 0.34%)</title><rect x="22.4402%" y="885" width="0.3385%" height="15" fill="rgb(236,107,19)" fg:x="107782" fg:w="1626"/><text x="22.6902%" y="895.50"></text></g><g><title>__clone3 (1,642 samples, 0.34%)</title><rect x="22.4373%" y="949" width="0.3419%" height="15" fill="rgb(228,185,30)" fg:x="107768" fg:w="1642"/><text x="22.6873%" y="959.50"></text></g><g><title>start_thread (1,631 samples, 0.34%)</title><rect x="22.4396%" y="933" width="0.3396%" height="15" fill="rgb(246,134,8)" fg:x="107779" fg:w="1631"/><text x="22.6896%" y="943.50"></text></g><g><title>thread_native_entry (1,629 samples, 0.34%)</title><rect x="22.4400%" y="917" width="0.3392%" height="15" fill="rgb(214,143,50)" fg:x="107781" fg:w="1629"/><text x="22.6900%" y="927.50"></text></g><g><title>asm_exc_page_fault (107 samples, 0.02%)</title><rect x="22.7810%" y="949" width="0.0223%" height="15" fill="rgb(228,75,8)" fg:x="109419" fg:w="107"/><text x="23.0310%" y="959.50"></text></g><g><title>C2_CompilerThre (94,655 samples, 19.71%)</title><rect x="3.1149%" y="965" width="19.7071%" height="15" fill="rgb(207,175,4)" fg:x="14961" fg:w="94655"/><text x="3.3649%" y="975.50">C2_CompilerThre</text></g><g><title>___pthread_cond_timedwait64 (49 samples, 0.01%)</title><rect x="22.8406%" y="901" width="0.0102%" height="15" fill="rgb(205,108,24)" fg:x="109705" fg:w="49"/><text x="23.0906%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (49 samples, 0.01%)</title><rect x="22.8406%" y="885" width="0.0102%" height="15" fill="rgb(244,120,49)" fg:x="109705" fg:w="49"/><text x="23.0906%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (49 samples, 0.01%)</title><rect x="22.8406%" y="869" width="0.0102%" height="15" fill="rgb(223,47,38)" fg:x="109705" fg:w="49"/><text x="23.0906%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (49 samples, 0.01%)</title><rect x="22.8406%" y="853" width="0.0102%" height="15" fill="rgb(229,179,11)" fg:x="109705" fg:w="49"/><text x="23.0906%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (49 samples, 0.01%)</title><rect x="22.8406%" y="837" width="0.0102%" height="15" fill="rgb(231,122,1)" fg:x="109705" fg:w="49"/><text x="23.0906%" y="847.50"></text></g><g><title>Unsafe_Park (52 samples, 0.01%)</title><rect x="22.8403%" y="933" width="0.0108%" height="15" fill="rgb(245,119,9)" fg:x="109704" fg:w="52"/><text x="23.0903%" y="943.50"></text></g><g><title>Parker::park (52 samples, 0.01%)</title><rect x="22.8403%" y="917" width="0.0108%" height="15" fill="rgb(241,163,25)" fg:x="109704" fg:w="52"/><text x="23.0903%" y="927.50"></text></g><g><title>[perf-712021.map] (146 samples, 0.03%)</title><rect x="22.8226%" y="949" width="0.0304%" height="15" fill="rgb(217,214,3)" fg:x="109619" fg:w="146"/><text x="23.0726%" y="959.50"></text></g><g><title>Command-Accumul (198 samples, 0.04%)</title><rect x="22.8220%" y="965" width="0.0412%" height="15" fill="rgb(240,86,28)" fg:x="109616" fg:w="198"/><text x="23.0720%" y="975.50"></text></g><g><title>[unknown] (49 samples, 0.01%)</title><rect x="22.8530%" y="949" width="0.0102%" height="15" fill="rgb(215,47,9)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="959.50"></text></g><g><title>readBytes (49 samples, 0.01%)</title><rect x="22.8530%" y="933" width="0.0102%" height="15" fill="rgb(252,25,45)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="943.50"></text></g><g><title>handleRead (49 samples, 0.01%)</title><rect x="22.8530%" y="917" width="0.0102%" height="15" fill="rgb(251,164,9)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="927.50"></text></g><g><title>__GI___libc_read (49 samples, 0.01%)</title><rect x="22.8530%" y="901" width="0.0102%" height="15" fill="rgb(233,194,0)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="911.50"></text></g><g><title>__GI___libc_read (49 samples, 0.01%)</title><rect x="22.8530%" y="885" width="0.0102%" height="15" fill="rgb(249,111,24)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="22.8530%" y="869" width="0.0102%" height="15" fill="rgb(250,223,3)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="879.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="22.8530%" y="853" width="0.0102%" height="15" fill="rgb(236,178,37)" fg:x="109765" fg:w="49"/><text x="23.1030%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (321 samples, 0.07%)</title><rect x="22.9447%" y="677" width="0.0668%" height="15" fill="rgb(241,158,50)" fg:x="110205" fg:w="321"/><text x="23.1947%" y="687.50"></text></g><g><title>x86_pmu_enable (315 samples, 0.07%)</title><rect x="22.9459%" y="661" width="0.0656%" height="15" fill="rgb(213,121,41)" fg:x="110211" fg:w="315"/><text x="23.1959%" y="671.50"></text></g><g><title>intel_pmu_enable_all (313 samples, 0.07%)</title><rect x="22.9463%" y="645" width="0.0652%" height="15" fill="rgb(240,92,3)" fg:x="110213" fg:w="313"/><text x="23.1963%" y="655.50"></text></g><g><title>native_write_msr (312 samples, 0.06%)</title><rect x="22.9465%" y="629" width="0.0650%" height="15" fill="rgb(205,123,3)" fg:x="110214" fg:w="312"/><text x="23.1965%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (339 samples, 0.07%)</title><rect x="22.9428%" y="693" width="0.0706%" height="15" fill="rgb(205,97,47)" fg:x="110196" fg:w="339"/><text x="23.1928%" y="703.50"></text></g><g><title>futex_wait_queue_me (377 samples, 0.08%)</title><rect x="22.9378%" y="741" width="0.0785%" height="15" fill="rgb(247,152,14)" fg:x="110172" fg:w="377"/><text x="23.1878%" y="751.50"></text></g><g><title>schedule (371 samples, 0.08%)</title><rect x="22.9390%" y="725" width="0.0772%" height="15" fill="rgb(248,195,53)" fg:x="110178" fg:w="371"/><text x="23.1890%" y="735.50"></text></g><g><title>__schedule (369 samples, 0.08%)</title><rect x="22.9394%" y="709" width="0.0768%" height="15" fill="rgb(226,201,16)" fg:x="110180" fg:w="369"/><text x="23.1894%" y="719.50"></text></g><g><title>futex_wait (388 samples, 0.08%)</title><rect x="22.9374%" y="757" width="0.0808%" height="15" fill="rgb(205,98,0)" fg:x="110170" fg:w="388"/><text x="23.1874%" y="767.50"></text></g><g><title>__x64_sys_futex (396 samples, 0.08%)</title><rect x="22.9369%" y="789" width="0.0824%" height="15" fill="rgb(214,191,48)" fg:x="110168" fg:w="396"/><text x="23.1869%" y="799.50"></text></g><g><title>do_futex (396 samples, 0.08%)</title><rect x="22.9369%" y="773" width="0.0824%" height="15" fill="rgb(237,112,39)" fg:x="110168" fg:w="396"/><text x="23.1869%" y="783.50"></text></g><g><title>do_syscall_64 (412 samples, 0.09%)</title><rect x="22.9363%" y="805" width="0.0858%" height="15" fill="rgb(247,203,27)" fg:x="110165" fg:w="412"/><text x="23.1863%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (414 samples, 0.09%)</title><rect x="22.9361%" y="821" width="0.0862%" height="15" fill="rgb(235,124,28)" fg:x="110164" fg:w="414"/><text x="23.1861%" y="831.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (419 samples, 0.09%)</title><rect x="22.9355%" y="869" width="0.0872%" height="15" fill="rgb(208,207,46)" fg:x="110161" fg:w="419"/><text x="23.1855%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (419 samples, 0.09%)</title><rect x="22.9355%" y="853" width="0.0872%" height="15" fill="rgb(234,176,4)" fg:x="110161" fg:w="419"/><text x="23.1855%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (417 samples, 0.09%)</title><rect x="22.9359%" y="837" width="0.0868%" height="15" fill="rgb(230,133,28)" fg:x="110163" fg:w="417"/><text x="23.1859%" y="847.50"></text></g><g><title>___pthread_cond_timedwait64 (423 samples, 0.09%)</title><rect x="22.9355%" y="901" width="0.0881%" height="15" fill="rgb(211,137,40)" fg:x="110161" fg:w="423"/><text x="23.1855%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (423 samples, 0.09%)</title><rect x="22.9355%" y="885" width="0.0881%" height="15" fill="rgb(254,35,13)" fg:x="110161" fg:w="423"/><text x="23.1855%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="23.0263%" y="677" width="0.0167%" height="15" fill="rgb(225,49,51)" fg:x="110597" fg:w="80"/><text x="23.2763%" y="687.50"></text></g><g><title>x86_pmu_enable (80 samples, 0.02%)</title><rect x="23.0263%" y="661" width="0.0167%" height="15" fill="rgb(251,10,15)" fg:x="110597" fg:w="80"/><text x="23.2763%" y="671.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.02%)</title><rect x="23.0265%" y="645" width="0.0164%" height="15" fill="rgb(228,207,15)" fg:x="110598" fg:w="79"/><text x="23.2765%" y="655.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="23.0267%" y="629" width="0.0162%" height="15" fill="rgb(241,99,19)" fg:x="110599" fg:w="78"/><text x="23.2767%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (87 samples, 0.02%)</title><rect x="23.0256%" y="693" width="0.0181%" height="15" fill="rgb(207,104,49)" fg:x="110594" fg:w="87"/><text x="23.2756%" y="703.50"></text></g><g><title>__x64_sys_futex (103 samples, 0.02%)</title><rect x="23.0238%" y="789" width="0.0214%" height="15" fill="rgb(234,99,18)" fg:x="110585" fg:w="103"/><text x="23.2738%" y="799.50"></text></g><g><title>do_futex (103 samples, 0.02%)</title><rect x="23.0238%" y="773" width="0.0214%" height="15" fill="rgb(213,191,49)" fg:x="110585" fg:w="103"/><text x="23.2738%" y="783.50"></text></g><g><title>futex_wait (103 samples, 0.02%)</title><rect x="23.0238%" y="757" width="0.0214%" height="15" fill="rgb(210,226,19)" fg:x="110585" fg:w="103"/><text x="23.2738%" y="767.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.02%)</title><rect x="23.0240%" y="741" width="0.0212%" height="15" fill="rgb(229,97,18)" fg:x="110586" fg:w="102"/><text x="23.2740%" y="751.50"></text></g><g><title>schedule (102 samples, 0.02%)</title><rect x="23.0240%" y="725" width="0.0212%" height="15" fill="rgb(211,167,15)" fg:x="110586" fg:w="102"/><text x="23.2740%" y="735.50"></text></g><g><title>__schedule (102 samples, 0.02%)</title><rect x="23.0240%" y="709" width="0.0212%" height="15" fill="rgb(210,169,34)" fg:x="110586" fg:w="102"/><text x="23.2740%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (107 samples, 0.02%)</title><rect x="23.0238%" y="821" width="0.0223%" height="15" fill="rgb(241,121,31)" fg:x="110585" fg:w="107"/><text x="23.2738%" y="831.50"></text></g><g><title>do_syscall_64 (107 samples, 0.02%)</title><rect x="23.0238%" y="805" width="0.0223%" height="15" fill="rgb(232,40,11)" fg:x="110585" fg:w="107"/><text x="23.2738%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (109 samples, 0.02%)</title><rect x="23.0236%" y="869" width="0.0227%" height="15" fill="rgb(205,86,26)" fg:x="110584" fg:w="109"/><text x="23.2736%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (109 samples, 0.02%)</title><rect x="23.0236%" y="853" width="0.0227%" height="15" fill="rgb(231,126,28)" fg:x="110584" fg:w="109"/><text x="23.2736%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (109 samples, 0.02%)</title><rect x="23.0236%" y="837" width="0.0227%" height="15" fill="rgb(219,221,18)" fg:x="110584" fg:w="109"/><text x="23.2736%" y="847.50"></text></g><g><title>___pthread_cond_wait (110 samples, 0.02%)</title><rect x="23.0236%" y="901" width="0.0229%" height="15" fill="rgb(211,40,0)" fg:x="110584" fg:w="110"/><text x="23.2736%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (110 samples, 0.02%)</title><rect x="23.0236%" y="885" width="0.0229%" height="15" fill="rgb(239,85,43)" fg:x="110584" fg:w="110"/><text x="23.2736%" y="895.50"></text></g><g><title>Parker::park (559 samples, 0.12%)</title><rect x="22.9330%" y="917" width="0.1164%" height="15" fill="rgb(231,55,21)" fg:x="110149" fg:w="559"/><text x="23.1830%" y="927.50"></text></g><g><title>Unsafe_Park (566 samples, 0.12%)</title><rect x="22.9324%" y="933" width="0.1178%" height="15" fill="rgb(225,184,43)" fg:x="110146" fg:w="566"/><text x="23.1824%" y="943.50"></text></g><g><title>[perf-712021.map] (853 samples, 0.18%)</title><rect x="22.8755%" y="949" width="0.1776%" height="15" fill="rgb(251,158,41)" fg:x="109873" fg:w="853"/><text x="23.1255%" y="959.50"></text></g><g><title>ForkJoinPool.co (865 samples, 0.18%)</title><rect x="22.8743%" y="965" width="0.1801%" height="15" fill="rgb(234,159,37)" fg:x="109867" fg:w="865"/><text x="23.1243%" y="975.50"></text></g><g><title>G1_Conc#0 (50 samples, 0.01%)</title><rect x="23.0544%" y="965" width="0.0104%" height="15" fill="rgb(216,204,22)" fg:x="110732" fg:w="50"/><text x="23.3044%" y="975.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (59 samples, 0.01%)</title><rect x="23.0796%" y="853" width="0.0123%" height="15" fill="rgb(214,17,3)" fg:x="110853" fg:w="59"/><text x="23.3296%" y="863.50"></text></g><g><title>G1RemSet::refine_card_concurrently (58 samples, 0.01%)</title><rect x="23.0798%" y="837" width="0.0121%" height="15" fill="rgb(212,111,17)" fg:x="110854" fg:w="58"/><text x="23.3298%" y="847.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (91 samples, 0.02%)</title><rect x="23.0796%" y="869" width="0.0189%" height="15" fill="rgb(221,157,24)" fg:x="110853" fg:w="91"/><text x="23.3296%" y="879.50"></text></g><g><title>__clone3 (101 samples, 0.02%)</title><rect x="23.0794%" y="949" width="0.0210%" height="15" fill="rgb(252,16,13)" fg:x="110852" fg:w="101"/><text x="23.3294%" y="959.50"></text></g><g><title>start_thread (100 samples, 0.02%)</title><rect x="23.0796%" y="933" width="0.0208%" height="15" fill="rgb(221,62,2)" fg:x="110853" fg:w="100"/><text x="23.3296%" y="943.50"></text></g><g><title>thread_native_entry (100 samples, 0.02%)</title><rect x="23.0796%" y="917" width="0.0208%" height="15" fill="rgb(247,87,22)" fg:x="110853" fg:w="100"/><text x="23.3296%" y="927.50"></text></g><g><title>Thread::call_run (100 samples, 0.02%)</title><rect x="23.0796%" y="901" width="0.0208%" height="15" fill="rgb(215,73,9)" fg:x="110853" fg:w="100"/><text x="23.3296%" y="911.50"></text></g><g><title>ConcurrentGCThread::run (100 samples, 0.02%)</title><rect x="23.0796%" y="885" width="0.0208%" height="15" fill="rgb(207,175,33)" fg:x="110853" fg:w="100"/><text x="23.3296%" y="895.50"></text></g><g><title>G1_Refine#0 (110 samples, 0.02%)</title><rect x="23.0777%" y="965" width="0.0229%" height="15" fill="rgb(243,129,54)" fg:x="110844" fg:w="110"/><text x="23.3277%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="23.1143%" y="581" width="0.0146%" height="15" fill="rgb(227,119,45)" fg:x="111020" fg:w="70"/><text x="23.3643%" y="591.50"></text></g><g><title>x86_pmu_enable (69 samples, 0.01%)</title><rect x="23.1145%" y="565" width="0.0144%" height="15" fill="rgb(205,109,36)" fg:x="111021" fg:w="69"/><text x="23.3645%" y="575.50"></text></g><g><title>intel_pmu_enable_all (68 samples, 0.01%)</title><rect x="23.1148%" y="549" width="0.0142%" height="15" fill="rgb(205,6,39)" fg:x="111022" fg:w="68"/><text x="23.3648%" y="559.50"></text></g><g><title>native_write_msr (68 samples, 0.01%)</title><rect x="23.1148%" y="533" width="0.0142%" height="15" fill="rgb(221,32,16)" fg:x="111022" fg:w="68"/><text x="23.3648%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (75 samples, 0.02%)</title><rect x="23.1143%" y="597" width="0.0156%" height="15" fill="rgb(228,144,50)" fg:x="111020" fg:w="75"/><text x="23.3643%" y="607.50"></text></g><g><title>futex_wait_queue_me (78 samples, 0.02%)</title><rect x="23.1139%" y="645" width="0.0162%" height="15" fill="rgb(229,201,53)" fg:x="111018" fg:w="78"/><text x="23.3639%" y="655.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="23.1143%" y="629" width="0.0158%" height="15" fill="rgb(249,153,27)" fg:x="111020" fg:w="76"/><text x="23.3643%" y="639.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="23.1143%" y="613" width="0.0158%" height="15" fill="rgb(227,106,25)" fg:x="111020" fg:w="76"/><text x="23.3643%" y="623.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (80 samples, 0.02%)</title><rect x="23.1137%" y="773" width="0.0167%" height="15" fill="rgb(230,65,29)" fg:x="111017" fg:w="80"/><text x="23.3637%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (80 samples, 0.02%)</title><rect x="23.1137%" y="757" width="0.0167%" height="15" fill="rgb(221,57,46)" fg:x="111017" fg:w="80"/><text x="23.3637%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (80 samples, 0.02%)</title><rect x="23.1137%" y="741" width="0.0167%" height="15" fill="rgb(229,161,17)" fg:x="111017" fg:w="80"/><text x="23.3637%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="23.1139%" y="725" width="0.0164%" height="15" fill="rgb(222,213,11)" fg:x="111018" fg:w="79"/><text x="23.3639%" y="735.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="23.1139%" y="709" width="0.0164%" height="15" fill="rgb(235,35,13)" fg:x="111018" fg:w="79"/><text x="23.3639%" y="719.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="23.1139%" y="693" width="0.0164%" height="15" fill="rgb(233,158,34)" fg:x="111018" fg:w="79"/><text x="23.3639%" y="703.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="23.1139%" y="677" width="0.0164%" height="15" fill="rgb(215,151,48)" fg:x="111018" fg:w="79"/><text x="23.3639%" y="687.50"></text></g><g><title>futex_wait (79 samples, 0.02%)</title><rect x="23.1139%" y="661" width="0.0164%" height="15" fill="rgb(229,84,14)" fg:x="111018" fg:w="79"/><text x="23.3639%" y="671.50"></text></g><g><title>___pthread_cond_timedwait64 (82 samples, 0.02%)</title><rect x="23.1137%" y="805" width="0.0171%" height="15" fill="rgb(229,68,14)" fg:x="111017" fg:w="82"/><text x="23.3637%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.02%)</title><rect x="23.1137%" y="789" width="0.0171%" height="15" fill="rgb(243,106,26)" fg:x="111017" fg:w="82"/><text x="23.3637%" y="799.50"></text></g><g><title>Monitor::wait (84 samples, 0.02%)</title><rect x="23.1137%" y="853" width="0.0175%" height="15" fill="rgb(206,45,38)" fg:x="111017" fg:w="84"/><text x="23.3637%" y="863.50"></text></g><g><title>Monitor::IWait (84 samples, 0.02%)</title><rect x="23.1137%" y="837" width="0.0175%" height="15" fill="rgb(226,6,15)" fg:x="111017" fg:w="84"/><text x="23.3637%" y="847.50"></text></g><g><title>os::PlatformEvent::park (84 samples, 0.02%)</title><rect x="23.1137%" y="821" width="0.0175%" height="15" fill="rgb(232,22,54)" fg:x="111017" fg:w="84"/><text x="23.3637%" y="831.50"></text></g><g><title>G1_Young_RemSet (115 samples, 0.02%)</title><rect x="23.1081%" y="965" width="0.0239%" height="15" fill="rgb(229,222,32)" fg:x="110990" fg:w="115"/><text x="23.3581%" y="975.50"></text></g><g><title>__clone3 (110 samples, 0.02%)</title><rect x="23.1091%" y="949" width="0.0229%" height="15" fill="rgb(228,62,29)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="959.50"></text></g><g><title>start_thread (110 samples, 0.02%)</title><rect x="23.1091%" y="933" width="0.0229%" height="15" fill="rgb(251,103,34)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="943.50"></text></g><g><title>thread_native_entry (110 samples, 0.02%)</title><rect x="23.1091%" y="917" width="0.0229%" height="15" fill="rgb(233,12,30)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="927.50"></text></g><g><title>Thread::call_run (110 samples, 0.02%)</title><rect x="23.1091%" y="901" width="0.0229%" height="15" fill="rgb(238,52,0)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="911.50"></text></g><g><title>ConcurrentGCThread::run (110 samples, 0.02%)</title><rect x="23.1091%" y="885" width="0.0229%" height="15" fill="rgb(223,98,5)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="895.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (110 samples, 0.02%)</title><rect x="23.1091%" y="869" width="0.0229%" height="15" fill="rgb(228,75,37)" fg:x="110995" fg:w="110"/><text x="23.3591%" y="879.50"></text></g><g><title>G1ParScanThreadState::trim_queue (59 samples, 0.01%)</title><rect x="23.1364%" y="837" width="0.0123%" height="15" fill="rgb(205,115,49)" fg:x="111126" fg:w="59"/><text x="23.3864%" y="847.50"></text></g><g><title>SpinPause (82 samples, 0.02%)</title><rect x="23.1506%" y="837" width="0.0171%" height="15" fill="rgb(250,154,43)" fg:x="111194" fg:w="82"/><text x="23.4006%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (152 samples, 0.03%)</title><rect x="23.1362%" y="853" width="0.0316%" height="15" fill="rgb(226,43,29)" fg:x="111125" fg:w="152"/><text x="23.3862%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (77 samples, 0.02%)</title><rect x="23.1697%" y="757" width="0.0160%" height="15" fill="rgb(249,228,39)" fg:x="111286" fg:w="77"/><text x="23.4197%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (87 samples, 0.02%)</title><rect x="23.1681%" y="773" width="0.0181%" height="15" fill="rgb(216,79,43)" fg:x="111278" fg:w="87"/><text x="23.4181%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (97 samples, 0.02%)</title><rect x="23.1681%" y="853" width="0.0202%" height="15" fill="rgb(228,95,12)" fg:x="111278" fg:w="97"/><text x="23.4181%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (97 samples, 0.02%)</title><rect x="23.1681%" y="837" width="0.0202%" height="15" fill="rgb(249,221,15)" fg:x="111278" fg:w="97"/><text x="23.4181%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (97 samples, 0.02%)</title><rect x="23.1681%" y="821" width="0.0202%" height="15" fill="rgb(233,34,13)" fg:x="111278" fg:w="97"/><text x="23.4181%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (97 samples, 0.02%)</title><rect x="23.1681%" y="805" width="0.0202%" height="15" fill="rgb(214,103,39)" fg:x="111278" fg:w="97"/><text x="23.4181%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (97 samples, 0.02%)</title><rect x="23.1681%" y="789" width="0.0202%" height="15" fill="rgb(251,126,39)" fg:x="111278" fg:w="97"/><text x="23.4181%" y="799.50"></text></g><g><title>G1ParTask::work (341 samples, 0.07%)</title><rect x="23.1362%" y="869" width="0.0710%" height="15" fill="rgb(214,216,36)" fg:x="111125" fg:w="341"/><text x="23.3862%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (81 samples, 0.02%)</title><rect x="23.2086%" y="869" width="0.0169%" height="15" fill="rgb(220,221,8)" fg:x="111473" fg:w="81"/><text x="23.4586%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (115 samples, 0.02%)</title><rect x="23.2343%" y="629" width="0.0239%" height="15" fill="rgb(240,216,3)" fg:x="111596" fg:w="115"/><text x="23.4843%" y="639.50"></text></g><g><title>x86_pmu_enable (112 samples, 0.02%)</title><rect x="23.2349%" y="613" width="0.0233%" height="15" fill="rgb(232,218,17)" fg:x="111599" fg:w="112"/><text x="23.4849%" y="623.50"></text></g><g><title>intel_pmu_enable_all (112 samples, 0.02%)</title><rect x="23.2349%" y="597" width="0.0233%" height="15" fill="rgb(229,163,45)" fg:x="111599" fg:w="112"/><text x="23.4849%" y="607.50"></text></g><g><title>native_write_msr (110 samples, 0.02%)</title><rect x="23.2353%" y="581" width="0.0229%" height="15" fill="rgb(231,110,42)" fg:x="111601" fg:w="110"/><text x="23.4853%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (121 samples, 0.03%)</title><rect x="23.2338%" y="645" width="0.0252%" height="15" fill="rgb(208,170,48)" fg:x="111594" fg:w="121"/><text x="23.4838%" y="655.50"></text></g><g><title>futex_wait_queue_me (130 samples, 0.03%)</title><rect x="23.2330%" y="693" width="0.0271%" height="15" fill="rgb(239,116,25)" fg:x="111590" fg:w="130"/><text x="23.4830%" y="703.50"></text></g><g><title>schedule (129 samples, 0.03%)</title><rect x="23.2332%" y="677" width="0.0269%" height="15" fill="rgb(219,200,50)" fg:x="111591" fg:w="129"/><text x="23.4832%" y="687.50"></text></g><g><title>__schedule (129 samples, 0.03%)</title><rect x="23.2332%" y="661" width="0.0269%" height="15" fill="rgb(245,200,0)" fg:x="111591" fg:w="129"/><text x="23.4832%" y="671.50"></text></g><g><title>do_futex (131 samples, 0.03%)</title><rect x="23.2330%" y="725" width="0.0273%" height="15" fill="rgb(245,119,33)" fg:x="111590" fg:w="131"/><text x="23.4830%" y="735.50"></text></g><g><title>futex_wait (131 samples, 0.03%)</title><rect x="23.2330%" y="709" width="0.0273%" height="15" fill="rgb(231,125,12)" fg:x="111590" fg:w="131"/><text x="23.4830%" y="719.50"></text></g><g><title>__x64_sys_futex (132 samples, 0.03%)</title><rect x="23.2330%" y="741" width="0.0275%" height="15" fill="rgb(216,96,41)" fg:x="111590" fg:w="132"/><text x="23.4830%" y="751.50"></text></g><g><title>__clone3 (611 samples, 0.13%)</title><rect x="23.1337%" y="949" width="0.1272%" height="15" fill="rgb(248,43,45)" fg:x="111113" fg:w="611"/><text x="23.3837%" y="959.50"></text></g><g><title>start_thread (611 samples, 0.13%)</title><rect x="23.1337%" y="933" width="0.1272%" height="15" fill="rgb(217,222,7)" fg:x="111113" fg:w="611"/><text x="23.3837%" y="943.50"></text></g><g><title>thread_native_entry (611 samples, 0.13%)</title><rect x="23.1337%" y="917" width="0.1272%" height="15" fill="rgb(233,28,6)" fg:x="111113" fg:w="611"/><text x="23.3837%" y="927.50"></text></g><g><title>Thread::call_run (611 samples, 0.13%)</title><rect x="23.1337%" y="901" width="0.1272%" height="15" fill="rgb(231,218,15)" fg:x="111113" fg:w="611"/><text x="23.3837%" y="911.50"></text></g><g><title>GangWorker::loop (611 samples, 0.13%)</title><rect x="23.1337%" y="885" width="0.1272%" height="15" fill="rgb(226,171,48)" fg:x="111113" fg:w="611"/><text x="23.3837%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (138 samples, 0.03%)</title><rect x="23.2322%" y="869" width="0.0287%" height="15" fill="rgb(235,201,9)" fg:x="111586" fg:w="138"/><text x="23.4822%" y="879.50"></text></g><g><title>PosixSemaphore::wait (138 samples, 0.03%)</title><rect x="23.2322%" y="853" width="0.0287%" height="15" fill="rgb(217,80,15)" fg:x="111586" fg:w="138"/><text x="23.4822%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (138 samples, 0.03%)</title><rect x="23.2322%" y="837" width="0.0287%" height="15" fill="rgb(219,152,8)" fg:x="111586" fg:w="138"/><text x="23.4822%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (136 samples, 0.03%)</title><rect x="23.2326%" y="821" width="0.0283%" height="15" fill="rgb(243,107,38)" fg:x="111588" fg:w="136"/><text x="23.4826%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (136 samples, 0.03%)</title><rect x="23.2326%" y="805" width="0.0283%" height="15" fill="rgb(231,17,5)" fg:x="111588" fg:w="136"/><text x="23.4826%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (136 samples, 0.03%)</title><rect x="23.2326%" y="789" width="0.0283%" height="15" fill="rgb(209,25,54)" fg:x="111588" fg:w="136"/><text x="23.4826%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (134 samples, 0.03%)</title><rect x="23.2330%" y="773" width="0.0279%" height="15" fill="rgb(219,0,2)" fg:x="111590" fg:w="134"/><text x="23.4830%" y="783.50"></text></g><g><title>do_syscall_64 (134 samples, 0.03%)</title><rect x="23.2330%" y="757" width="0.0279%" height="15" fill="rgb(246,9,5)" fg:x="111590" fg:w="134"/><text x="23.4830%" y="767.50"></text></g><g><title>GC_Thread#0 (623 samples, 0.13%)</title><rect x="23.1320%" y="965" width="0.1297%" height="15" fill="rgb(226,159,4)" fg:x="111105" fg:w="623"/><text x="23.3820%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (57 samples, 0.01%)</title><rect x="23.2694%" y="837" width="0.0119%" height="15" fill="rgb(219,175,34)" fg:x="111765" fg:w="57"/><text x="23.5194%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (117 samples, 0.02%)</title><rect x="23.2678%" y="853" width="0.0244%" height="15" fill="rgb(236,10,46)" fg:x="111757" fg:w="117"/><text x="23.5178%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (50 samples, 0.01%)</title><rect x="23.3127%" y="725" width="0.0104%" height="15" fill="rgb(240,211,16)" fg:x="111973" fg:w="50"/><text x="23.5627%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (64 samples, 0.01%)</title><rect x="23.3103%" y="757" width="0.0133%" height="15" fill="rgb(205,3,43)" fg:x="111961" fg:w="64"/><text x="23.5603%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (63 samples, 0.01%)</title><rect x="23.3105%" y="741" width="0.0131%" height="15" fill="rgb(245,7,22)" fg:x="111962" fg:w="63"/><text x="23.5605%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (73 samples, 0.02%)</title><rect x="23.3100%" y="773" width="0.0152%" height="15" fill="rgb(239,132,32)" fg:x="111960" fg:w="73"/><text x="23.5600%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (74 samples, 0.02%)</title><rect x="23.3100%" y="837" width="0.0154%" height="15" fill="rgb(228,202,34)" fg:x="111960" fg:w="74"/><text x="23.5600%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (74 samples, 0.02%)</title><rect x="23.3100%" y="821" width="0.0154%" height="15" fill="rgb(254,200,22)" fg:x="111960" fg:w="74"/><text x="23.5600%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (74 samples, 0.02%)</title><rect x="23.3100%" y="805" width="0.0154%" height="15" fill="rgb(219,10,39)" fg:x="111960" fg:w="74"/><text x="23.5600%" y="815.50"></text></g><g><title>JavaThread::oops_do (74 samples, 0.02%)</title><rect x="23.3100%" y="789" width="0.0154%" height="15" fill="rgb(226,210,39)" fg:x="111960" fg:w="74"/><text x="23.5600%" y="799.50"></text></g><g><title>G1ParTask::work (286 samples, 0.06%)</title><rect x="23.2678%" y="869" width="0.0595%" height="15" fill="rgb(208,219,16)" fg:x="111757" fg:w="286"/><text x="23.5178%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (84 samples, 0.02%)</title><rect x="23.3098%" y="853" width="0.0175%" height="15" fill="rgb(216,158,51)" fg:x="111959" fg:w="84"/><text x="23.5598%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.01%)</title><rect x="23.3282%" y="869" width="0.0131%" height="15" fill="rgb(233,14,44)" fg:x="112047" fg:w="63"/><text x="23.5782%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.02%)</title><rect x="23.3529%" y="629" width="0.0229%" height="15" fill="rgb(237,97,39)" fg:x="112166" fg:w="110"/><text x="23.6029%" y="639.50"></text></g><g><title>x86_pmu_enable (105 samples, 0.02%)</title><rect x="23.3540%" y="613" width="0.0219%" height="15" fill="rgb(218,198,43)" fg:x="112171" fg:w="105"/><text x="23.6040%" y="623.50"></text></g><g><title>intel_pmu_enable_all (104 samples, 0.02%)</title><rect x="23.3542%" y="597" width="0.0217%" height="15" fill="rgb(231,104,20)" fg:x="112172" fg:w="104"/><text x="23.6042%" y="607.50"></text></g><g><title>native_write_msr (104 samples, 0.02%)</title><rect x="23.3542%" y="581" width="0.0217%" height="15" fill="rgb(254,36,13)" fg:x="112172" fg:w="104"/><text x="23.6042%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (114 samples, 0.02%)</title><rect x="23.3527%" y="645" width="0.0237%" height="15" fill="rgb(248,14,50)" fg:x="112165" fg:w="114"/><text x="23.6027%" y="655.50"></text></g><g><title>__x64_sys_futex (133 samples, 0.03%)</title><rect x="23.3498%" y="741" width="0.0277%" height="15" fill="rgb(217,107,29)" fg:x="112151" fg:w="133"/><text x="23.5998%" y="751.50"></text></g><g><title>do_futex (133 samples, 0.03%)</title><rect x="23.3498%" y="725" width="0.0277%" height="15" fill="rgb(251,169,33)" fg:x="112151" fg:w="133"/><text x="23.5998%" y="735.50"></text></g><g><title>futex_wait (133 samples, 0.03%)</title><rect x="23.3498%" y="709" width="0.0277%" height="15" fill="rgb(217,108,32)" fg:x="112151" fg:w="133"/><text x="23.5998%" y="719.50"></text></g><g><title>futex_wait_queue_me (131 samples, 0.03%)</title><rect x="23.3502%" y="693" width="0.0273%" height="15" fill="rgb(219,66,42)" fg:x="112153" fg:w="131"/><text x="23.6002%" y="703.50"></text></g><g><title>schedule (128 samples, 0.03%)</title><rect x="23.3508%" y="677" width="0.0266%" height="15" fill="rgb(206,180,7)" fg:x="112156" fg:w="128"/><text x="23.6008%" y="687.50"></text></g><g><title>__schedule (127 samples, 0.03%)</title><rect x="23.3511%" y="661" width="0.0264%" height="15" fill="rgb(208,226,31)" fg:x="112157" fg:w="127"/><text x="23.6011%" y="671.50"></text></g><g><title>do_syscall_64 (137 samples, 0.03%)</title><rect x="23.3498%" y="757" width="0.0285%" height="15" fill="rgb(218,26,49)" fg:x="112151" fg:w="137"/><text x="23.5998%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (138 samples, 0.03%)</title><rect x="23.3498%" y="773" width="0.0287%" height="15" fill="rgb(233,197,48)" fg:x="112151" fg:w="138"/><text x="23.5998%" y="783.50"></text></g><g><title>GC_Thread#1 (562 samples, 0.12%)</title><rect x="23.2617%" y="965" width="0.1170%" height="15" fill="rgb(252,181,51)" fg:x="111728" fg:w="562"/><text x="23.5117%" y="975.50"></text></g><g><title>__clone3 (548 samples, 0.11%)</title><rect x="23.2647%" y="949" width="0.1141%" height="15" fill="rgb(253,90,19)" fg:x="111742" fg:w="548"/><text x="23.5147%" y="959.50"></text></g><g><title>start_thread (548 samples, 0.11%)</title><rect x="23.2647%" y="933" width="0.1141%" height="15" fill="rgb(215,171,30)" fg:x="111742" fg:w="548"/><text x="23.5147%" y="943.50"></text></g><g><title>thread_native_entry (548 samples, 0.11%)</title><rect x="23.2647%" y="917" width="0.1141%" height="15" fill="rgb(214,222,9)" fg:x="111742" fg:w="548"/><text x="23.5147%" y="927.50"></text></g><g><title>Thread::call_run (548 samples, 0.11%)</title><rect x="23.2647%" y="901" width="0.1141%" height="15" fill="rgb(223,3,22)" fg:x="111742" fg:w="548"/><text x="23.5147%" y="911.50"></text></g><g><title>GangWorker::loop (548 samples, 0.11%)</title><rect x="23.2647%" y="885" width="0.1141%" height="15" fill="rgb(225,196,46)" fg:x="111742" fg:w="548"/><text x="23.5147%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (142 samples, 0.03%)</title><rect x="23.3492%" y="869" width="0.0296%" height="15" fill="rgb(209,110,37)" fg:x="112148" fg:w="142"/><text x="23.5992%" y="879.50"></text></g><g><title>PosixSemaphore::wait (142 samples, 0.03%)</title><rect x="23.3492%" y="853" width="0.0296%" height="15" fill="rgb(249,89,12)" fg:x="112148" fg:w="142"/><text x="23.5992%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (142 samples, 0.03%)</title><rect x="23.3492%" y="837" width="0.0296%" height="15" fill="rgb(226,27,33)" fg:x="112148" fg:w="142"/><text x="23.5992%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (141 samples, 0.03%)</title><rect x="23.3494%" y="821" width="0.0294%" height="15" fill="rgb(213,82,22)" fg:x="112149" fg:w="141"/><text x="23.5994%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (140 samples, 0.03%)</title><rect x="23.3496%" y="805" width="0.0291%" height="15" fill="rgb(248,140,0)" fg:x="112150" fg:w="140"/><text x="23.5996%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (140 samples, 0.03%)</title><rect x="23.3496%" y="789" width="0.0291%" height="15" fill="rgb(228,106,3)" fg:x="112150" fg:w="140"/><text x="23.5996%" y="799.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (128 samples, 0.03%)</title><rect x="23.3885%" y="853" width="0.0266%" height="15" fill="rgb(209,23,37)" fg:x="112337" fg:w="128"/><text x="23.6385%" y="863.50"></text></g><g><title>SpinPause (75 samples, 0.02%)</title><rect x="23.3996%" y="837" width="0.0156%" height="15" fill="rgb(241,93,50)" fg:x="112390" fg:w="75"/><text x="23.6496%" y="847.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.01%)</title><rect x="23.4177%" y="757" width="0.0112%" height="15" fill="rgb(253,46,43)" fg:x="112477" fg:w="54"/><text x="23.6677%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.01%)</title><rect x="23.4152%" y="773" width="0.0139%" height="15" fill="rgb(226,206,43)" fg:x="112465" fg:w="67"/><text x="23.6652%" y="783.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (78 samples, 0.02%)</title><rect x="23.4152%" y="789" width="0.0162%" height="15" fill="rgb(217,54,7)" fg:x="112465" fg:w="78"/><text x="23.6652%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (79 samples, 0.02%)</title><rect x="23.4152%" y="853" width="0.0164%" height="15" fill="rgb(223,5,52)" fg:x="112465" fg:w="79"/><text x="23.6652%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (79 samples, 0.02%)</title><rect x="23.4152%" y="837" width="0.0164%" height="15" fill="rgb(206,52,46)" fg:x="112465" fg:w="79"/><text x="23.6652%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (79 samples, 0.02%)</title><rect x="23.4152%" y="821" width="0.0164%" height="15" fill="rgb(253,136,11)" fg:x="112465" fg:w="79"/><text x="23.6652%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (79 samples, 0.02%)</title><rect x="23.4152%" y="805" width="0.0164%" height="15" fill="rgb(208,106,33)" fg:x="112465" fg:w="79"/><text x="23.6652%" y="815.50"></text></g><g><title>G1ParTask::work (293 samples, 0.06%)</title><rect x="23.3885%" y="869" width="0.0610%" height="15" fill="rgb(206,54,4)" fg:x="112337" fg:w="293"/><text x="23.6385%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (55 samples, 0.01%)</title><rect x="23.4381%" y="853" width="0.0115%" height="15" fill="rgb(213,3,15)" fg:x="112575" fg:w="55"/><text x="23.6881%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (55 samples, 0.01%)</title><rect x="23.4504%" y="869" width="0.0115%" height="15" fill="rgb(252,211,39)" fg:x="112634" fg:w="55"/><text x="23.7004%" y="879.50"></text></g><g><title>finish_task_switch.isra.0 (106 samples, 0.02%)</title><rect x="23.4716%" y="645" width="0.0221%" height="15" fill="rgb(223,6,36)" fg:x="112736" fg:w="106"/><text x="23.7216%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (104 samples, 0.02%)</title><rect x="23.4720%" y="629" width="0.0217%" height="15" fill="rgb(252,169,45)" fg:x="112738" fg:w="104"/><text x="23.7220%" y="639.50"></text></g><g><title>x86_pmu_enable (102 samples, 0.02%)</title><rect x="23.4724%" y="613" width="0.0212%" height="15" fill="rgb(212,48,26)" fg:x="112740" fg:w="102"/><text x="23.7224%" y="623.50"></text></g><g><title>intel_pmu_enable_all (102 samples, 0.02%)</title><rect x="23.4724%" y="597" width="0.0212%" height="15" fill="rgb(251,102,48)" fg:x="112740" fg:w="102"/><text x="23.7224%" y="607.50"></text></g><g><title>native_write_msr (102 samples, 0.02%)</title><rect x="23.4724%" y="581" width="0.0212%" height="15" fill="rgb(243,208,16)" fg:x="112740" fg:w="102"/><text x="23.7224%" y="591.50"></text></g><g><title>__schedule (113 samples, 0.02%)</title><rect x="23.4706%" y="661" width="0.0235%" height="15" fill="rgb(219,96,24)" fg:x="112731" fg:w="113"/><text x="23.7206%" y="671.50"></text></g><g><title>futex_wait_queue_me (115 samples, 0.02%)</title><rect x="23.4704%" y="693" width="0.0239%" height="15" fill="rgb(219,33,29)" fg:x="112730" fg:w="115"/><text x="23.7204%" y="703.50"></text></g><g><title>schedule (114 samples, 0.02%)</title><rect x="23.4706%" y="677" width="0.0237%" height="15" fill="rgb(223,176,5)" fg:x="112731" fg:w="114"/><text x="23.7206%" y="687.50"></text></g><g><title>__x64_sys_futex (116 samples, 0.02%)</title><rect x="23.4704%" y="741" width="0.0242%" height="15" fill="rgb(228,140,14)" fg:x="112730" fg:w="116"/><text x="23.7204%" y="751.50"></text></g><g><title>do_futex (116 samples, 0.02%)</title><rect x="23.4704%" y="725" width="0.0242%" height="15" fill="rgb(217,179,31)" fg:x="112730" fg:w="116"/><text x="23.7204%" y="735.50"></text></g><g><title>futex_wait (116 samples, 0.02%)</title><rect x="23.4704%" y="709" width="0.0242%" height="15" fill="rgb(230,9,30)" fg:x="112730" fg:w="116"/><text x="23.7204%" y="719.50"></text></g><g><title>do_syscall_64 (120 samples, 0.02%)</title><rect x="23.4704%" y="757" width="0.0250%" height="15" fill="rgb(230,136,20)" fg:x="112730" fg:w="120"/><text x="23.7204%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.03%)</title><rect x="23.4704%" y="773" width="0.0252%" height="15" fill="rgb(215,210,22)" fg:x="112730" fg:w="121"/><text x="23.7204%" y="783.50"></text></g><g><title>__clone3 (546 samples, 0.11%)</title><rect x="23.3821%" y="949" width="0.1137%" height="15" fill="rgb(218,43,5)" fg:x="112306" fg:w="546"/><text x="23.6321%" y="959.50"></text></g><g><title>start_thread (546 samples, 0.11%)</title><rect x="23.3821%" y="933" width="0.1137%" height="15" fill="rgb(216,11,5)" fg:x="112306" fg:w="546"/><text x="23.6321%" y="943.50"></text></g><g><title>thread_native_entry (546 samples, 0.11%)</title><rect x="23.3821%" y="917" width="0.1137%" height="15" fill="rgb(209,82,29)" fg:x="112306" fg:w="546"/><text x="23.6321%" y="927.50"></text></g><g><title>Thread::call_run (546 samples, 0.11%)</title><rect x="23.3821%" y="901" width="0.1137%" height="15" fill="rgb(244,115,12)" fg:x="112306" fg:w="546"/><text x="23.6321%" y="911.50"></text></g><g><title>GangWorker::loop (546 samples, 0.11%)</title><rect x="23.3821%" y="885" width="0.1137%" height="15" fill="rgb(222,82,18)" fg:x="112306" fg:w="546"/><text x="23.6321%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (125 samples, 0.03%)</title><rect x="23.4697%" y="869" width="0.0260%" height="15" fill="rgb(249,227,8)" fg:x="112727" fg:w="125"/><text x="23.7197%" y="879.50"></text></g><g><title>PosixSemaphore::wait (124 samples, 0.03%)</title><rect x="23.4699%" y="853" width="0.0258%" height="15" fill="rgb(253,141,45)" fg:x="112728" fg:w="124"/><text x="23.7199%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (123 samples, 0.03%)</title><rect x="23.4701%" y="837" width="0.0256%" height="15" fill="rgb(234,184,4)" fg:x="112729" fg:w="123"/><text x="23.7201%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (123 samples, 0.03%)</title><rect x="23.4701%" y="821" width="0.0256%" height="15" fill="rgb(218,194,23)" fg:x="112729" fg:w="123"/><text x="23.7201%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (122 samples, 0.03%)</title><rect x="23.4704%" y="805" width="0.0254%" height="15" fill="rgb(235,66,41)" fg:x="112730" fg:w="122"/><text x="23.7204%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (122 samples, 0.03%)</title><rect x="23.4704%" y="789" width="0.0254%" height="15" fill="rgb(245,217,1)" fg:x="112730" fg:w="122"/><text x="23.7204%" y="799.50"></text></g><g><title>GC_Thread#2 (566 samples, 0.12%)</title><rect x="23.3787%" y="965" width="0.1178%" height="15" fill="rgb(229,91,1)" fg:x="112290" fg:w="566"/><text x="23.6287%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (75 samples, 0.02%)</title><rect x="23.5043%" y="837" width="0.0156%" height="15" fill="rgb(207,101,30)" fg:x="112893" fg:w="75"/><text x="23.7543%" y="847.50"></text></g><g><title>SpinPause (59 samples, 0.01%)</title><rect x="23.5207%" y="837" width="0.0123%" height="15" fill="rgb(223,82,49)" fg:x="112972" fg:w="59"/><text x="23.7707%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (140 samples, 0.03%)</title><rect x="23.5041%" y="853" width="0.0291%" height="15" fill="rgb(218,167,17)" fg:x="112892" fg:w="140"/><text x="23.7541%" y="863.50"></text></g><g><title>G1ParTask::work (249 samples, 0.05%)</title><rect x="23.5041%" y="869" width="0.0518%" height="15" fill="rgb(208,103,14)" fg:x="112892" fg:w="249"/><text x="23.7541%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (67 samples, 0.01%)</title><rect x="23.5580%" y="869" width="0.0139%" height="15" fill="rgb(238,20,8)" fg:x="113151" fg:w="67"/><text x="23.8080%" y="879.50"></text></g><g><title>__clone3 (429 samples, 0.09%)</title><rect x="23.4987%" y="949" width="0.0893%" height="15" fill="rgb(218,80,54)" fg:x="112866" fg:w="429"/><text x="23.7487%" y="959.50"></text></g><g><title>start_thread (429 samples, 0.09%)</title><rect x="23.4987%" y="933" width="0.0893%" height="15" fill="rgb(240,144,17)" fg:x="112866" fg:w="429"/><text x="23.7487%" y="943.50"></text></g><g><title>thread_native_entry (429 samples, 0.09%)</title><rect x="23.4987%" y="917" width="0.0893%" height="15" fill="rgb(245,27,50)" fg:x="112866" fg:w="429"/><text x="23.7487%" y="927.50"></text></g><g><title>Thread::call_run (429 samples, 0.09%)</title><rect x="23.4987%" y="901" width="0.0893%" height="15" fill="rgb(251,51,7)" fg:x="112866" fg:w="429"/><text x="23.7487%" y="911.50"></text></g><g><title>GangWorker::loop (429 samples, 0.09%)</title><rect x="23.4987%" y="885" width="0.0893%" height="15" fill="rgb(245,217,29)" fg:x="112866" fg:w="429"/><text x="23.7487%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.01%)</title><rect x="23.5770%" y="869" width="0.0110%" height="15" fill="rgb(221,176,29)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="879.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.01%)</title><rect x="23.5770%" y="853" width="0.0110%" height="15" fill="rgb(212,180,24)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (53 samples, 0.01%)</title><rect x="23.5770%" y="837" width="0.0110%" height="15" fill="rgb(254,24,2)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (53 samples, 0.01%)</title><rect x="23.5770%" y="821" width="0.0110%" height="15" fill="rgb(230,100,2)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (53 samples, 0.01%)</title><rect x="23.5770%" y="805" width="0.0110%" height="15" fill="rgb(219,142,25)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (53 samples, 0.01%)</title><rect x="23.5770%" y="789" width="0.0110%" height="15" fill="rgb(240,73,43)" fg:x="113242" fg:w="53"/><text x="23.8270%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="23.5772%" y="773" width="0.0108%" height="15" fill="rgb(214,114,15)" fg:x="113243" fg:w="52"/><text x="23.8272%" y="783.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="23.5772%" y="757" width="0.0108%" height="15" fill="rgb(207,130,4)" fg:x="113243" fg:w="52"/><text x="23.8272%" y="767.50"></text></g><g><title>GC_Thread#3 (440 samples, 0.09%)</title><rect x="23.4966%" y="965" width="0.0916%" height="15" fill="rgb(221,25,40)" fg:x="112856" fg:w="440"/><text x="23.7466%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (80 samples, 0.02%)</title><rect x="23.5949%" y="837" width="0.0167%" height="15" fill="rgb(241,184,7)" fg:x="113328" fg:w="80"/><text x="23.8449%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (166 samples, 0.03%)</title><rect x="23.5942%" y="853" width="0.0346%" height="15" fill="rgb(235,159,4)" fg:x="113325" fg:w="166"/><text x="23.8442%" y="863.50"></text></g><g><title>SpinPause (77 samples, 0.02%)</title><rect x="23.6128%" y="837" width="0.0160%" height="15" fill="rgb(214,87,48)" fg:x="113414" fg:w="77"/><text x="23.8628%" y="847.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (58 samples, 0.01%)</title><rect x="23.6288%" y="773" width="0.0121%" height="15" fill="rgb(246,198,24)" fg:x="113491" fg:w="58"/><text x="23.8788%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (66 samples, 0.01%)</title><rect x="23.6288%" y="853" width="0.0137%" height="15" fill="rgb(209,66,40)" fg:x="113491" fg:w="66"/><text x="23.8788%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (66 samples, 0.01%)</title><rect x="23.6288%" y="837" width="0.0137%" height="15" fill="rgb(233,147,39)" fg:x="113491" fg:w="66"/><text x="23.8788%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (66 samples, 0.01%)</title><rect x="23.6288%" y="821" width="0.0137%" height="15" fill="rgb(231,145,52)" fg:x="113491" fg:w="66"/><text x="23.8788%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (66 samples, 0.01%)</title><rect x="23.6288%" y="805" width="0.0137%" height="15" fill="rgb(206,20,26)" fg:x="113491" fg:w="66"/><text x="23.8788%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (66 samples, 0.01%)</title><rect x="23.6288%" y="789" width="0.0137%" height="15" fill="rgb(238,220,4)" fg:x="113491" fg:w="66"/><text x="23.8788%" y="799.50"></text></g><g><title>G1ParTask::work (320 samples, 0.07%)</title><rect x="23.5942%" y="869" width="0.0666%" height="15" fill="rgb(252,195,42)" fg:x="113325" fg:w="320"/><text x="23.8442%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (54 samples, 0.01%)</title><rect x="23.6496%" y="853" width="0.0112%" height="15" fill="rgb(209,10,6)" fg:x="113591" fg:w="54"/><text x="23.8996%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.02%)</title><rect x="23.6833%" y="629" width="0.0189%" height="15" fill="rgb(229,3,52)" fg:x="113753" fg:w="91"/><text x="23.9333%" y="639.50"></text></g><g><title>x86_pmu_enable (89 samples, 0.02%)</title><rect x="23.6838%" y="613" width="0.0185%" height="15" fill="rgb(253,49,37)" fg:x="113755" fg:w="89"/><text x="23.9338%" y="623.50"></text></g><g><title>intel_pmu_enable_all (89 samples, 0.02%)</title><rect x="23.6838%" y="597" width="0.0185%" height="15" fill="rgb(240,103,49)" fg:x="113755" fg:w="89"/><text x="23.9338%" y="607.50"></text></g><g><title>native_write_msr (88 samples, 0.02%)</title><rect x="23.6840%" y="581" width="0.0183%" height="15" fill="rgb(250,182,30)" fg:x="113756" fg:w="88"/><text x="23.9340%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (93 samples, 0.02%)</title><rect x="23.6831%" y="645" width="0.0194%" height="15" fill="rgb(248,8,30)" fg:x="113752" fg:w="93"/><text x="23.9331%" y="655.50"></text></g><g><title>__x64_sys_futex (103 samples, 0.02%)</title><rect x="23.6821%" y="741" width="0.0214%" height="15" fill="rgb(237,120,30)" fg:x="113747" fg:w="103"/><text x="23.9321%" y="751.50"></text></g><g><title>do_futex (102 samples, 0.02%)</title><rect x="23.6823%" y="725" width="0.0212%" height="15" fill="rgb(221,146,34)" fg:x="113748" fg:w="102"/><text x="23.9323%" y="735.50"></text></g><g><title>futex_wait (102 samples, 0.02%)</title><rect x="23.6823%" y="709" width="0.0212%" height="15" fill="rgb(242,55,13)" fg:x="113748" fg:w="102"/><text x="23.9323%" y="719.50"></text></g><g><title>futex_wait_queue_me (102 samples, 0.02%)</title><rect x="23.6823%" y="693" width="0.0212%" height="15" fill="rgb(242,112,31)" fg:x="113748" fg:w="102"/><text x="23.9323%" y="703.50"></text></g><g><title>schedule (101 samples, 0.02%)</title><rect x="23.6825%" y="677" width="0.0210%" height="15" fill="rgb(249,192,27)" fg:x="113749" fg:w="101"/><text x="23.9325%" y="687.50"></text></g><g><title>__schedule (101 samples, 0.02%)</title><rect x="23.6825%" y="661" width="0.0210%" height="15" fill="rgb(208,204,44)" fg:x="113749" fg:w="101"/><text x="23.9325%" y="671.50"></text></g><g><title>__clone3 (544 samples, 0.11%)</title><rect x="23.5917%" y="949" width="0.1133%" height="15" fill="rgb(208,93,54)" fg:x="113313" fg:w="544"/><text x="23.8417%" y="959.50"></text></g><g><title>start_thread (544 samples, 0.11%)</title><rect x="23.5917%" y="933" width="0.1133%" height="15" fill="rgb(242,1,31)" fg:x="113313" fg:w="544"/><text x="23.8417%" y="943.50"></text></g><g><title>thread_native_entry (544 samples, 0.11%)</title><rect x="23.5917%" y="917" width="0.1133%" height="15" fill="rgb(241,83,25)" fg:x="113313" fg:w="544"/><text x="23.8417%" y="927.50"></text></g><g><title>Thread::call_run (544 samples, 0.11%)</title><rect x="23.5917%" y="901" width="0.1133%" height="15" fill="rgb(205,169,50)" fg:x="113313" fg:w="544"/><text x="23.8417%" y="911.50"></text></g><g><title>GangWorker::loop (544 samples, 0.11%)</title><rect x="23.5917%" y="885" width="0.1133%" height="15" fill="rgb(239,186,37)" fg:x="113313" fg:w="544"/><text x="23.8417%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (113 samples, 0.02%)</title><rect x="23.6815%" y="869" width="0.0235%" height="15" fill="rgb(205,221,10)" fg:x="113744" fg:w="113"/><text x="23.9315%" y="879.50"></text></g><g><title>PosixSemaphore::wait (112 samples, 0.02%)</title><rect x="23.6817%" y="853" width="0.0233%" height="15" fill="rgb(218,196,15)" fg:x="113745" fg:w="112"/><text x="23.9317%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (112 samples, 0.02%)</title><rect x="23.6817%" y="837" width="0.0233%" height="15" fill="rgb(218,196,35)" fg:x="113745" fg:w="112"/><text x="23.9317%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (112 samples, 0.02%)</title><rect x="23.6817%" y="821" width="0.0233%" height="15" fill="rgb(233,63,24)" fg:x="113745" fg:w="112"/><text x="23.9317%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (112 samples, 0.02%)</title><rect x="23.6817%" y="805" width="0.0233%" height="15" fill="rgb(225,8,4)" fg:x="113745" fg:w="112"/><text x="23.9317%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (112 samples, 0.02%)</title><rect x="23.6817%" y="789" width="0.0233%" height="15" fill="rgb(234,105,35)" fg:x="113745" fg:w="112"/><text x="23.9317%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (111 samples, 0.02%)</title><rect x="23.6819%" y="773" width="0.0231%" height="15" fill="rgb(236,21,32)" fg:x="113746" fg:w="111"/><text x="23.9319%" y="783.50"></text></g><g><title>do_syscall_64 (110 samples, 0.02%)</title><rect x="23.6821%" y="757" width="0.0229%" height="15" fill="rgb(228,109,6)" fg:x="113747" fg:w="110"/><text x="23.9321%" y="767.50"></text></g><g><title>GC_Thread#4 (563 samples, 0.12%)</title><rect x="23.5882%" y="965" width="0.1172%" height="15" fill="rgb(229,215,31)" fg:x="113296" fg:w="563"/><text x="23.8382%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (70 samples, 0.01%)</title><rect x="23.7108%" y="837" width="0.0146%" height="15" fill="rgb(221,52,54)" fg:x="113885" fg:w="70"/><text x="23.9608%" y="847.50"></text></g><g><title>SpinPause (90 samples, 0.02%)</title><rect x="23.7264%" y="837" width="0.0187%" height="15" fill="rgb(252,129,43)" fg:x="113960" fg:w="90"/><text x="23.9764%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (173 samples, 0.04%)</title><rect x="23.7094%" y="853" width="0.0360%" height="15" fill="rgb(248,183,27)" fg:x="113878" fg:w="173"/><text x="23.9594%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.01%)</title><rect x="23.7477%" y="757" width="0.0123%" height="15" fill="rgb(250,0,22)" fg:x="114062" fg:w="59"/><text x="23.9977%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (72 samples, 0.01%)</title><rect x="23.7456%" y="773" width="0.0150%" height="15" fill="rgb(213,166,10)" fg:x="114052" fg:w="72"/><text x="23.9956%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (84 samples, 0.02%)</title><rect x="23.7454%" y="853" width="0.0175%" height="15" fill="rgb(207,163,36)" fg:x="114051" fg:w="84"/><text x="23.9954%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (84 samples, 0.02%)</title><rect x="23.7454%" y="837" width="0.0175%" height="15" fill="rgb(208,122,22)" fg:x="114051" fg:w="84"/><text x="23.9954%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (84 samples, 0.02%)</title><rect x="23.7454%" y="821" width="0.0175%" height="15" fill="rgb(207,104,49)" fg:x="114051" fg:w="84"/><text x="23.9954%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (84 samples, 0.02%)</title><rect x="23.7454%" y="805" width="0.0175%" height="15" fill="rgb(248,211,50)" fg:x="114051" fg:w="84"/><text x="23.9954%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (84 samples, 0.02%)</title><rect x="23.7454%" y="789" width="0.0175%" height="15" fill="rgb(217,13,45)" fg:x="114051" fg:w="84"/><text x="23.9954%" y="799.50"></text></g><g><title>G1RemSet::scan_rem_set (53 samples, 0.01%)</title><rect x="23.7629%" y="853" width="0.0110%" height="15" fill="rgb(211,216,49)" fg:x="114135" fg:w="53"/><text x="24.0129%" y="863.50"></text></g><g><title>G1CollectionSet::iterate_from (53 samples, 0.01%)</title><rect x="23.7629%" y="837" width="0.0110%" height="15" fill="rgb(221,58,53)" fg:x="114135" fg:w="53"/><text x="24.0129%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (53 samples, 0.01%)</title><rect x="23.7629%" y="821" width="0.0110%" height="15" fill="rgb(220,112,41)" fg:x="114135" fg:w="53"/><text x="24.0129%" y="831.50"></text></g><g><title>InterpreterOopMap::iterate_oop (54 samples, 0.01%)</title><rect x="23.7802%" y="757" width="0.0112%" height="15" fill="rgb(236,38,28)" fg:x="114218" fg:w="54"/><text x="24.0302%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (54 samples, 0.01%)</title><rect x="23.7802%" y="741" width="0.0112%" height="15" fill="rgb(227,195,22)" fg:x="114218" fg:w="54"/><text x="24.0302%" y="751.50"></text></g><g><title>G1RootProcessor::process_java_roots (89 samples, 0.02%)</title><rect x="23.7741%" y="837" width="0.0185%" height="15" fill="rgb(214,55,33)" fg:x="114189" fg:w="89"/><text x="24.0241%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (62 samples, 0.01%)</title><rect x="23.7797%" y="821" width="0.0129%" height="15" fill="rgb(248,80,13)" fg:x="114216" fg:w="62"/><text x="24.0297%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (62 samples, 0.01%)</title><rect x="23.7797%" y="805" width="0.0129%" height="15" fill="rgb(238,52,6)" fg:x="114216" fg:w="62"/><text x="24.0297%" y="815.50"></text></g><g><title>JavaThread::oops_do (62 samples, 0.01%)</title><rect x="23.7797%" y="789" width="0.0129%" height="15" fill="rgb(224,198,47)" fg:x="114216" fg:w="62"/><text x="24.0297%" y="799.50"></text></g><g><title>frame::oops_interpreted_do (60 samples, 0.01%)</title><rect x="23.7802%" y="773" width="0.0125%" height="15" fill="rgb(233,171,20)" fg:x="114218" fg:w="60"/><text x="24.0302%" y="783.50"></text></g><g><title>G1ParTask::work (406 samples, 0.08%)</title><rect x="23.7094%" y="869" width="0.0845%" height="15" fill="rgb(241,30,25)" fg:x="113878" fg:w="406"/><text x="23.9594%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (96 samples, 0.02%)</title><rect x="23.7739%" y="853" width="0.0200%" height="15" fill="rgb(207,171,38)" fg:x="114188" fg:w="96"/><text x="24.0239%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (70 samples, 0.01%)</title><rect x="23.7945%" y="869" width="0.0146%" height="15" fill="rgb(234,70,1)" fg:x="114287" fg:w="70"/><text x="24.0445%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.02%)</title><rect x="23.8189%" y="629" width="0.0229%" height="15" fill="rgb(232,178,18)" fg:x="114404" fg:w="110"/><text x="24.0689%" y="639.50"></text></g><g><title>x86_pmu_enable (108 samples, 0.02%)</title><rect x="23.8193%" y="613" width="0.0225%" height="15" fill="rgb(241,78,40)" fg:x="114406" fg:w="108"/><text x="24.0693%" y="623.50"></text></g><g><title>intel_pmu_enable_all (106 samples, 0.02%)</title><rect x="23.8197%" y="597" width="0.0221%" height="15" fill="rgb(222,35,25)" fg:x="114408" fg:w="106"/><text x="24.0697%" y="607.50"></text></g><g><title>native_write_msr (106 samples, 0.02%)</title><rect x="23.8197%" y="581" width="0.0221%" height="15" fill="rgb(207,92,16)" fg:x="114408" fg:w="106"/><text x="24.0697%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (116 samples, 0.02%)</title><rect x="23.8183%" y="645" width="0.0242%" height="15" fill="rgb(216,59,51)" fg:x="114401" fg:w="116"/><text x="24.0683%" y="655.50"></text></g><g><title>futex_wait_queue_me (125 samples, 0.03%)</title><rect x="23.8172%" y="693" width="0.0260%" height="15" fill="rgb(213,80,28)" fg:x="114396" fg:w="125"/><text x="24.0672%" y="703.50"></text></g><g><title>schedule (124 samples, 0.03%)</title><rect x="23.8174%" y="677" width="0.0258%" height="15" fill="rgb(220,93,7)" fg:x="114397" fg:w="124"/><text x="24.0674%" y="687.50"></text></g><g><title>__schedule (124 samples, 0.03%)</title><rect x="23.8174%" y="661" width="0.0258%" height="15" fill="rgb(225,24,44)" fg:x="114397" fg:w="124"/><text x="24.0674%" y="671.50"></text></g><g><title>__x64_sys_futex (131 samples, 0.03%)</title><rect x="23.8164%" y="741" width="0.0273%" height="15" fill="rgb(243,74,40)" fg:x="114392" fg:w="131"/><text x="24.0664%" y="751.50"></text></g><g><title>do_futex (130 samples, 0.03%)</title><rect x="23.8166%" y="725" width="0.0271%" height="15" fill="rgb(228,39,7)" fg:x="114393" fg:w="130"/><text x="24.0666%" y="735.50"></text></g><g><title>futex_wait (129 samples, 0.03%)</title><rect x="23.8168%" y="709" width="0.0269%" height="15" fill="rgb(227,79,8)" fg:x="114394" fg:w="129"/><text x="24.0668%" y="719.50"></text></g><g><title>__clone3 (652 samples, 0.14%)</title><rect x="23.7087%" y="949" width="0.1357%" height="15" fill="rgb(236,58,11)" fg:x="113875" fg:w="652"/><text x="23.9587%" y="959.50"></text></g><g><title>start_thread (652 samples, 0.14%)</title><rect x="23.7087%" y="933" width="0.1357%" height="15" fill="rgb(249,63,35)" fg:x="113875" fg:w="652"/><text x="23.9587%" y="943.50"></text></g><g><title>thread_native_entry (652 samples, 0.14%)</title><rect x="23.7087%" y="917" width="0.1357%" height="15" fill="rgb(252,114,16)" fg:x="113875" fg:w="652"/><text x="23.9587%" y="927.50"></text></g><g><title>Thread::call_run (652 samples, 0.14%)</title><rect x="23.7087%" y="901" width="0.1357%" height="15" fill="rgb(254,151,24)" fg:x="113875" fg:w="652"/><text x="23.9587%" y="911.50"></text></g><g><title>GangWorker::loop (652 samples, 0.14%)</title><rect x="23.7087%" y="885" width="0.1357%" height="15" fill="rgb(253,54,39)" fg:x="113875" fg:w="652"/><text x="23.9587%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (136 samples, 0.03%)</title><rect x="23.8162%" y="869" width="0.0283%" height="15" fill="rgb(243,25,45)" fg:x="114391" fg:w="136"/><text x="24.0662%" y="879.50"></text></g><g><title>PosixSemaphore::wait (136 samples, 0.03%)</title><rect x="23.8162%" y="853" width="0.0283%" height="15" fill="rgb(234,134,9)" fg:x="114391" fg:w="136"/><text x="24.0662%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (135 samples, 0.03%)</title><rect x="23.8164%" y="837" width="0.0281%" height="15" fill="rgb(227,166,31)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (135 samples, 0.03%)</title><rect x="23.8164%" y="821" width="0.0281%" height="15" fill="rgb(245,143,41)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (135 samples, 0.03%)</title><rect x="23.8164%" y="805" width="0.0281%" height="15" fill="rgb(238,181,32)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (135 samples, 0.03%)</title><rect x="23.8164%" y="789" width="0.0281%" height="15" fill="rgb(224,113,18)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="23.8164%" y="773" width="0.0281%" height="15" fill="rgb(240,229,28)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="783.50"></text></g><g><title>do_syscall_64 (135 samples, 0.03%)</title><rect x="23.8164%" y="757" width="0.0281%" height="15" fill="rgb(250,185,3)" fg:x="114392" fg:w="135"/><text x="24.0664%" y="767.50"></text></g><g><title>GC_Thread#5 (675 samples, 0.14%)</title><rect x="23.7054%" y="965" width="0.1405%" height="15" fill="rgb(212,59,25)" fg:x="113859" fg:w="675"/><text x="23.9554%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (49 samples, 0.01%)</title><rect x="23.8514%" y="837" width="0.0102%" height="15" fill="rgb(221,87,20)" fg:x="114560" fg:w="49"/><text x="24.1014%" y="847.50"></text></g><g><title>SpinPause (57 samples, 0.01%)</title><rect x="23.8620%" y="837" width="0.0119%" height="15" fill="rgb(213,74,28)" fg:x="114611" fg:w="57"/><text x="24.1120%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (113 samples, 0.02%)</title><rect x="23.8509%" y="853" width="0.0235%" height="15" fill="rgb(224,132,34)" fg:x="114558" fg:w="113"/><text x="24.1009%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (54 samples, 0.01%)</title><rect x="23.8763%" y="757" width="0.0112%" height="15" fill="rgb(222,101,24)" fg:x="114680" fg:w="54"/><text x="24.1263%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (65 samples, 0.01%)</title><rect x="23.8747%" y="773" width="0.0135%" height="15" fill="rgb(254,142,4)" fg:x="114672" fg:w="65"/><text x="24.1247%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (88 samples, 0.02%)</title><rect x="23.8747%" y="853" width="0.0183%" height="15" fill="rgb(230,229,49)" fg:x="114672" fg:w="88"/><text x="24.1247%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (88 samples, 0.02%)</title><rect x="23.8747%" y="837" width="0.0183%" height="15" fill="rgb(238,70,47)" fg:x="114672" fg:w="88"/><text x="24.1247%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (88 samples, 0.02%)</title><rect x="23.8747%" y="821" width="0.0183%" height="15" fill="rgb(231,160,17)" fg:x="114672" fg:w="88"/><text x="24.1247%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (88 samples, 0.02%)</title><rect x="23.8747%" y="805" width="0.0183%" height="15" fill="rgb(218,68,53)" fg:x="114672" fg:w="88"/><text x="24.1247%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (88 samples, 0.02%)</title><rect x="23.8747%" y="789" width="0.0183%" height="15" fill="rgb(236,111,10)" fg:x="114672" fg:w="88"/><text x="24.1247%" y="799.50"></text></g><g><title>G1RemSet::scan_rem_set (49 samples, 0.01%)</title><rect x="23.8930%" y="853" width="0.0102%" height="15" fill="rgb(224,34,41)" fg:x="114760" fg:w="49"/><text x="24.1430%" y="863.50"></text></g><g><title>G1CollectionSet::iterate_from (49 samples, 0.01%)</title><rect x="23.8930%" y="837" width="0.0102%" height="15" fill="rgb(241,118,19)" fg:x="114760" fg:w="49"/><text x="24.1430%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (49 samples, 0.01%)</title><rect x="23.8930%" y="821" width="0.0102%" height="15" fill="rgb(238,129,25)" fg:x="114760" fg:w="49"/><text x="24.1430%" y="831.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (54 samples, 0.01%)</title><rect x="23.9038%" y="821" width="0.0112%" height="15" fill="rgb(238,22,31)" fg:x="114812" fg:w="54"/><text x="24.1538%" y="831.50"></text></g><g><title>G1CLDScanClosure::do_cld (53 samples, 0.01%)</title><rect x="23.9040%" y="805" width="0.0110%" height="15" fill="rgb(222,174,48)" fg:x="114813" fg:w="53"/><text x="24.1540%" y="815.50"></text></g><g><title>ClassLoaderData::oops_do (53 samples, 0.01%)</title><rect x="23.9040%" y="789" width="0.0110%" height="15" fill="rgb(206,152,40)" fg:x="114813" fg:w="53"/><text x="24.1540%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (78 samples, 0.02%)</title><rect x="23.9038%" y="837" width="0.0162%" height="15" fill="rgb(218,99,54)" fg:x="114812" fg:w="78"/><text x="24.1538%" y="847.50"></text></g><g><title>G1RootProcessor::evacuate_roots (85 samples, 0.02%)</title><rect x="23.9032%" y="853" width="0.0177%" height="15" fill="rgb(220,174,26)" fg:x="114809" fg:w="85"/><text x="24.1532%" y="863.50"></text></g><g><title>G1ParTask::work (337 samples, 0.07%)</title><rect x="23.8509%" y="869" width="0.0702%" height="15" fill="rgb(245,116,9)" fg:x="114558" fg:w="337"/><text x="24.1009%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (75 samples, 0.02%)</title><rect x="23.9236%" y="869" width="0.0156%" height="15" fill="rgb(209,72,35)" fg:x="114907" fg:w="75"/><text x="24.1736%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.02%)</title><rect x="23.9484%" y="629" width="0.0244%" height="15" fill="rgb(226,126,21)" fg:x="115026" fg:w="117"/><text x="24.1984%" y="639.50"></text></g><g><title>x86_pmu_enable (116 samples, 0.02%)</title><rect x="23.9486%" y="613" width="0.0242%" height="15" fill="rgb(227,192,1)" fg:x="115027" fg:w="116"/><text x="24.1986%" y="623.50"></text></g><g><title>intel_pmu_enable_all (116 samples, 0.02%)</title><rect x="23.9486%" y="597" width="0.0242%" height="15" fill="rgb(237,180,29)" fg:x="115027" fg:w="116"/><text x="24.1986%" y="607.50"></text></g><g><title>native_write_msr (114 samples, 0.02%)</title><rect x="23.9490%" y="581" width="0.0237%" height="15" fill="rgb(230,197,35)" fg:x="115029" fg:w="114"/><text x="24.1990%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (120 samples, 0.02%)</title><rect x="23.9482%" y="645" width="0.0250%" height="15" fill="rgb(246,193,31)" fg:x="115025" fg:w="120"/><text x="24.1982%" y="655.50"></text></g><g><title>__x64_sys_futex (137 samples, 0.03%)</title><rect x="23.9463%" y="741" width="0.0285%" height="15" fill="rgb(241,36,4)" fg:x="115016" fg:w="137"/><text x="24.1963%" y="751.50"></text></g><g><title>do_futex (137 samples, 0.03%)</title><rect x="23.9463%" y="725" width="0.0285%" height="15" fill="rgb(241,130,17)" fg:x="115016" fg:w="137"/><text x="24.1963%" y="735.50"></text></g><g><title>futex_wait (136 samples, 0.03%)</title><rect x="23.9465%" y="709" width="0.0283%" height="15" fill="rgb(206,137,32)" fg:x="115017" fg:w="136"/><text x="24.1965%" y="719.50"></text></g><g><title>futex_wait_queue_me (135 samples, 0.03%)</title><rect x="23.9467%" y="693" width="0.0281%" height="15" fill="rgb(237,228,51)" fg:x="115018" fg:w="135"/><text x="24.1967%" y="703.50"></text></g><g><title>schedule (134 samples, 0.03%)</title><rect x="23.9469%" y="677" width="0.0279%" height="15" fill="rgb(243,6,42)" fg:x="115019" fg:w="134"/><text x="24.1969%" y="687.50"></text></g><g><title>__schedule (134 samples, 0.03%)</title><rect x="23.9469%" y="661" width="0.0279%" height="15" fill="rgb(251,74,28)" fg:x="115019" fg:w="134"/><text x="24.1969%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (143 samples, 0.03%)</title><rect x="23.9461%" y="773" width="0.0298%" height="15" fill="rgb(218,20,49)" fg:x="115015" fg:w="143"/><text x="24.1961%" y="783.50"></text></g><g><title>do_syscall_64 (143 samples, 0.03%)</title><rect x="23.9461%" y="757" width="0.0298%" height="15" fill="rgb(238,28,14)" fg:x="115015" fg:w="143"/><text x="24.1961%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (146 samples, 0.03%)</title><rect x="23.9457%" y="821" width="0.0304%" height="15" fill="rgb(229,40,46)" fg:x="115013" fg:w="146"/><text x="24.1957%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (146 samples, 0.03%)</title><rect x="23.9457%" y="805" width="0.0304%" height="15" fill="rgb(244,195,20)" fg:x="115013" fg:w="146"/><text x="24.1957%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (146 samples, 0.03%)</title><rect x="23.9457%" y="789" width="0.0304%" height="15" fill="rgb(253,56,35)" fg:x="115013" fg:w="146"/><text x="24.1957%" y="799.50"></text></g><g><title>__clone3 (613 samples, 0.13%)</title><rect x="23.8487%" y="949" width="0.1276%" height="15" fill="rgb(210,149,44)" fg:x="114547" fg:w="613"/><text x="24.0987%" y="959.50"></text></g><g><title>start_thread (613 samples, 0.13%)</title><rect x="23.8487%" y="933" width="0.1276%" height="15" fill="rgb(240,135,12)" fg:x="114547" fg:w="613"/><text x="24.0987%" y="943.50"></text></g><g><title>thread_native_entry (613 samples, 0.13%)</title><rect x="23.8487%" y="917" width="0.1276%" height="15" fill="rgb(251,24,50)" fg:x="114547" fg:w="613"/><text x="24.0987%" y="927.50"></text></g><g><title>Thread::call_run (613 samples, 0.13%)</title><rect x="23.8487%" y="901" width="0.1276%" height="15" fill="rgb(243,200,47)" fg:x="114547" fg:w="613"/><text x="24.0987%" y="911.50"></text></g><g><title>GangWorker::loop (613 samples, 0.13%)</title><rect x="23.8487%" y="885" width="0.1276%" height="15" fill="rgb(224,166,26)" fg:x="114547" fg:w="613"/><text x="24.0987%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (149 samples, 0.03%)</title><rect x="23.9453%" y="869" width="0.0310%" height="15" fill="rgb(233,0,47)" fg:x="115011" fg:w="149"/><text x="24.1953%" y="879.50"></text></g><g><title>PosixSemaphore::wait (149 samples, 0.03%)</title><rect x="23.9453%" y="853" width="0.0310%" height="15" fill="rgb(253,80,5)" fg:x="115011" fg:w="149"/><text x="24.1953%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (149 samples, 0.03%)</title><rect x="23.9453%" y="837" width="0.0310%" height="15" fill="rgb(214,133,25)" fg:x="115011" fg:w="149"/><text x="24.1953%" y="847.50"></text></g><g><title>GC_Thread#6 (629 samples, 0.13%)</title><rect x="23.8459%" y="965" width="0.1310%" height="15" fill="rgb(209,27,14)" fg:x="114534" fg:w="629"/><text x="24.0959%" y="975.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (51 samples, 0.01%)</title><rect x="23.9877%" y="821" width="0.0106%" height="15" fill="rgb(219,102,51)" fg:x="115215" fg:w="51"/><text x="24.2377%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue (90 samples, 0.02%)</title><rect x="23.9804%" y="837" width="0.0187%" height="15" fill="rgb(237,18,16)" fg:x="115180" fg:w="90"/><text x="24.2304%" y="847.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="23.9996%" y="837" width="0.0144%" height="15" fill="rgb(241,85,17)" fg:x="115272" fg:w="69"/><text x="24.2496%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (170 samples, 0.04%)</title><rect x="23.9792%" y="853" width="0.0354%" height="15" fill="rgb(236,90,42)" fg:x="115174" fg:w="170"/><text x="24.2292%" y="863.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (55 samples, 0.01%)</title><rect x="24.0146%" y="853" width="0.0115%" height="15" fill="rgb(249,57,21)" fg:x="115344" fg:w="55"/><text x="24.2646%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (55 samples, 0.01%)</title><rect x="24.0146%" y="837" width="0.0115%" height="15" fill="rgb(243,12,36)" fg:x="115344" fg:w="55"/><text x="24.2646%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (55 samples, 0.01%)</title><rect x="24.0146%" y="821" width="0.0115%" height="15" fill="rgb(253,128,47)" fg:x="115344" fg:w="55"/><text x="24.2646%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (55 samples, 0.01%)</title><rect x="24.0146%" y="805" width="0.0115%" height="15" fill="rgb(207,33,20)" fg:x="115344" fg:w="55"/><text x="24.2646%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (54 samples, 0.01%)</title><rect x="24.0148%" y="789" width="0.0112%" height="15" fill="rgb(233,215,35)" fg:x="115345" fg:w="54"/><text x="24.2648%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (70 samples, 0.01%)</title><rect x="24.0312%" y="837" width="0.0146%" height="15" fill="rgb(249,188,52)" fg:x="115424" fg:w="70"/><text x="24.2812%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (70 samples, 0.01%)</title><rect x="24.0312%" y="821" width="0.0146%" height="15" fill="rgb(225,12,32)" fg:x="115424" fg:w="70"/><text x="24.2812%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (70 samples, 0.01%)</title><rect x="24.0312%" y="805" width="0.0146%" height="15" fill="rgb(247,98,14)" fg:x="115424" fg:w="70"/><text x="24.2812%" y="815.50"></text></g><g><title>JavaThread::oops_do (70 samples, 0.01%)</title><rect x="24.0312%" y="789" width="0.0146%" height="15" fill="rgb(247,219,48)" fg:x="115424" fg:w="70"/><text x="24.2812%" y="799.50"></text></g><g><title>G1ParTask::work (325 samples, 0.07%)</title><rect x="23.9792%" y="869" width="0.0677%" height="15" fill="rgb(253,60,48)" fg:x="115174" fg:w="325"/><text x="24.2292%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (75 samples, 0.02%)</title><rect x="24.0312%" y="853" width="0.0156%" height="15" fill="rgb(245,15,52)" fg:x="115424" fg:w="75"/><text x="24.2812%" y="863.50"></text></g><g><title>RefProcPhase2Task::work (49 samples, 0.01%)</title><rect x="24.0498%" y="853" width="0.0102%" height="15" fill="rgb(220,133,28)" fg:x="115513" fg:w="49"/><text x="24.2998%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (77 samples, 0.02%)</title><rect x="24.0496%" y="869" width="0.0160%" height="15" fill="rgb(217,180,4)" fg:x="115512" fg:w="77"/><text x="24.2996%" y="879.50"></text></g><g><title>finish_task_switch.isra.0 (69 samples, 0.01%)</title><rect x="24.0706%" y="645" width="0.0144%" height="15" fill="rgb(251,24,1)" fg:x="115613" fg:w="69"/><text x="24.3206%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (67 samples, 0.01%)</title><rect x="24.0710%" y="629" width="0.0139%" height="15" fill="rgb(212,185,49)" fg:x="115615" fg:w="67"/><text x="24.3210%" y="639.50"></text></g><g><title>x86_pmu_enable (66 samples, 0.01%)</title><rect x="24.0712%" y="613" width="0.0137%" height="15" fill="rgb(215,175,22)" fg:x="115616" fg:w="66"/><text x="24.3212%" y="623.50"></text></g><g><title>intel_pmu_enable_all (66 samples, 0.01%)</title><rect x="24.0712%" y="597" width="0.0137%" height="15" fill="rgb(250,205,14)" fg:x="115616" fg:w="66"/><text x="24.3212%" y="607.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="24.0712%" y="581" width="0.0137%" height="15" fill="rgb(225,211,22)" fg:x="115616" fg:w="66"/><text x="24.3212%" y="591.50"></text></g><g><title>do_futex (75 samples, 0.02%)</title><rect x="24.0704%" y="725" width="0.0156%" height="15" fill="rgb(251,179,42)" fg:x="115612" fg:w="75"/><text x="24.3204%" y="735.50"></text></g><g><title>futex_wait (75 samples, 0.02%)</title><rect x="24.0704%" y="709" width="0.0156%" height="15" fill="rgb(208,216,51)" fg:x="115612" fg:w="75"/><text x="24.3204%" y="719.50"></text></g><g><title>futex_wait_queue_me (75 samples, 0.02%)</title><rect x="24.0704%" y="693" width="0.0156%" height="15" fill="rgb(235,36,11)" fg:x="115612" fg:w="75"/><text x="24.3204%" y="703.50"></text></g><g><title>schedule (75 samples, 0.02%)</title><rect x="24.0704%" y="677" width="0.0156%" height="15" fill="rgb(213,189,28)" fg:x="115612" fg:w="75"/><text x="24.3204%" y="687.50"></text></g><g><title>__schedule (74 samples, 0.02%)</title><rect x="24.0706%" y="661" width="0.0154%" height="15" fill="rgb(227,203,42)" fg:x="115613" fg:w="74"/><text x="24.3206%" y="671.50"></text></g><g><title>__x64_sys_futex (76 samples, 0.02%)</title><rect x="24.0704%" y="741" width="0.0158%" height="15" fill="rgb(244,72,36)" fg:x="115612" fg:w="76"/><text x="24.3204%" y="751.50"></text></g><g><title>__clone3 (528 samples, 0.11%)</title><rect x="23.9775%" y="949" width="0.1099%" height="15" fill="rgb(213,53,17)" fg:x="115166" fg:w="528"/><text x="24.2275%" y="959.50"></text></g><g><title>start_thread (528 samples, 0.11%)</title><rect x="23.9775%" y="933" width="0.1099%" height="15" fill="rgb(207,167,3)" fg:x="115166" fg:w="528"/><text x="24.2275%" y="943.50"></text></g><g><title>thread_native_entry (528 samples, 0.11%)</title><rect x="23.9775%" y="917" width="0.1099%" height="15" fill="rgb(216,98,30)" fg:x="115166" fg:w="528"/><text x="24.2275%" y="927.50"></text></g><g><title>Thread::call_run (528 samples, 0.11%)</title><rect x="23.9775%" y="901" width="0.1099%" height="15" fill="rgb(236,123,15)" fg:x="115166" fg:w="528"/><text x="24.2275%" y="911.50"></text></g><g><title>GangWorker::loop (528 samples, 0.11%)</title><rect x="23.9775%" y="885" width="0.1099%" height="15" fill="rgb(248,81,50)" fg:x="115166" fg:w="528"/><text x="24.2275%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (83 samples, 0.02%)</title><rect x="24.0702%" y="869" width="0.0173%" height="15" fill="rgb(214,120,4)" fg:x="115611" fg:w="83"/><text x="24.3202%" y="879.50"></text></g><g><title>PosixSemaphore::wait (83 samples, 0.02%)</title><rect x="24.0702%" y="853" width="0.0173%" height="15" fill="rgb(208,179,34)" fg:x="115611" fg:w="83"/><text x="24.3202%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (82 samples, 0.02%)</title><rect x="24.0704%" y="837" width="0.0171%" height="15" fill="rgb(227,140,7)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (82 samples, 0.02%)</title><rect x="24.0704%" y="821" width="0.0171%" height="15" fill="rgb(214,22,6)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (82 samples, 0.02%)</title><rect x="24.0704%" y="805" width="0.0171%" height="15" fill="rgb(207,137,27)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (82 samples, 0.02%)</title><rect x="24.0704%" y="789" width="0.0171%" height="15" fill="rgb(210,8,46)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="24.0704%" y="773" width="0.0171%" height="15" fill="rgb(240,16,54)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="783.50"></text></g><g><title>do_syscall_64 (82 samples, 0.02%)</title><rect x="24.0704%" y="757" width="0.0171%" height="15" fill="rgb(211,209,29)" fg:x="115612" fg:w="82"/><text x="24.3204%" y="767.50"></text></g><g><title>GC_Thread#7 (532 samples, 0.11%)</title><rect x="23.9769%" y="965" width="0.1108%" height="15" fill="rgb(226,228,24)" fg:x="115163" fg:w="532"/><text x="24.2269%" y="975.50"></text></g><g><title>[perf-712021.map] (105 samples, 0.02%)</title><rect x="24.0989%" y="949" width="0.0219%" height="15" fill="rgb(222,84,9)" fg:x="115749" fg:w="105"/><text x="24.3489%" y="959.50"></text></g><g><title>Service_Thread (131 samples, 0.03%)</title><rect x="24.0979%" y="965" width="0.0273%" height="15" fill="rgb(234,203,30)" fg:x="115744" fg:w="131"/><text x="24.3479%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (370 samples, 0.08%)</title><rect x="24.1458%" y="581" width="0.0770%" height="15" fill="rgb(238,109,14)" fg:x="115974" fg:w="370"/><text x="24.3958%" y="591.50"></text></g><g><title>x86_pmu_enable (358 samples, 0.07%)</title><rect x="24.1483%" y="565" width="0.0745%" height="15" fill="rgb(233,206,34)" fg:x="115986" fg:w="358"/><text x="24.3983%" y="575.50"></text></g><g><title>intel_pmu_enable_all (356 samples, 0.07%)</title><rect x="24.1487%" y="549" width="0.0741%" height="15" fill="rgb(220,167,47)" fg:x="115988" fg:w="356"/><text x="24.3987%" y="559.50"></text></g><g><title>native_write_msr (355 samples, 0.07%)</title><rect x="24.1489%" y="533" width="0.0739%" height="15" fill="rgb(238,105,10)" fg:x="115989" fg:w="355"/><text x="24.3989%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (380 samples, 0.08%)</title><rect x="24.1451%" y="597" width="0.0791%" height="15" fill="rgb(213,227,17)" fg:x="115971" fg:w="380"/><text x="24.3951%" y="607.50"></text></g><g><title>futex_wait_queue_me (438 samples, 0.09%)</title><rect x="24.1389%" y="645" width="0.0912%" height="15" fill="rgb(217,132,38)" fg:x="115941" fg:w="438"/><text x="24.3889%" y="655.50"></text></g><g><title>schedule (426 samples, 0.09%)</title><rect x="24.1414%" y="629" width="0.0887%" height="15" fill="rgb(242,146,4)" fg:x="115953" fg:w="426"/><text x="24.3914%" y="639.50"></text></g><g><title>__schedule (426 samples, 0.09%)</title><rect x="24.1414%" y="613" width="0.0887%" height="15" fill="rgb(212,61,9)" fg:x="115953" fg:w="426"/><text x="24.3914%" y="623.50"></text></g><g><title>futex_wait (464 samples, 0.10%)</title><rect x="24.1378%" y="661" width="0.0966%" height="15" fill="rgb(247,126,22)" fg:x="115936" fg:w="464"/><text x="24.3878%" y="671.50"></text></g><g><title>do_futex (469 samples, 0.10%)</title><rect x="24.1372%" y="677" width="0.0976%" height="15" fill="rgb(220,196,2)" fg:x="115933" fg:w="469"/><text x="24.3872%" y="687.50"></text></g><g><title>__x64_sys_futex (479 samples, 0.10%)</title><rect x="24.1353%" y="693" width="0.0997%" height="15" fill="rgb(208,46,4)" fg:x="115924" fg:w="479"/><text x="24.3853%" y="703.50"></text></g><g><title>do_syscall_64 (500 samples, 0.10%)</title><rect x="24.1351%" y="709" width="0.1041%" height="15" fill="rgb(252,104,46)" fg:x="115923" fg:w="500"/><text x="24.3851%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (503 samples, 0.10%)</title><rect x="24.1347%" y="725" width="0.1047%" height="15" fill="rgb(237,152,48)" fg:x="115921" fg:w="503"/><text x="24.3847%" y="735.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (508 samples, 0.11%)</title><rect x="24.1341%" y="773" width="0.1058%" height="15" fill="rgb(221,59,37)" fg:x="115918" fg:w="508"/><text x="24.3841%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (508 samples, 0.11%)</title><rect x="24.1341%" y="757" width="0.1058%" height="15" fill="rgb(209,202,51)" fg:x="115918" fg:w="508"/><text x="24.3841%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (507 samples, 0.11%)</title><rect x="24.1343%" y="741" width="0.1056%" height="15" fill="rgb(228,81,30)" fg:x="115919" fg:w="507"/><text x="24.3843%" y="751.50"></text></g><g><title>___pthread_cond_timedwait64 (514 samples, 0.11%)</title><rect x="24.1341%" y="805" width="0.1070%" height="15" fill="rgb(227,42,39)" fg:x="115918" fg:w="514"/><text x="24.3841%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (514 samples, 0.11%)</title><rect x="24.1341%" y="789" width="0.1070%" height="15" fill="rgb(221,26,2)" fg:x="115918" fg:w="514"/><text x="24.3841%" y="799.50"></text></g><g><title>Monitor::wait (546 samples, 0.11%)</title><rect x="24.1308%" y="853" width="0.1137%" height="15" fill="rgb(254,61,31)" fg:x="115902" fg:w="546"/><text x="24.3808%" y="863.50"></text></g><g><title>Monitor::IWait (542 samples, 0.11%)</title><rect x="24.1316%" y="837" width="0.1128%" height="15" fill="rgb(222,173,38)" fg:x="115906" fg:w="542"/><text x="24.3816%" y="847.50"></text></g><g><title>os::PlatformEvent::park (533 samples, 0.11%)</title><rect x="24.1335%" y="821" width="0.1110%" height="15" fill="rgb(218,50,12)" fg:x="115915" fg:w="533"/><text x="24.3835%" y="831.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (100 samples, 0.02%)</title><rect x="24.2492%" y="805" width="0.0208%" height="15" fill="rgb(223,88,40)" fg:x="116471" fg:w="100"/><text x="24.4992%" y="815.50"></text></g><g><title>NMethodSweeper::process_compiled_method (128 samples, 0.03%)</title><rect x="24.2492%" y="821" width="0.0266%" height="15" fill="rgb(237,54,19)" fg:x="116471" fg:w="128"/><text x="24.4992%" y="831.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (143 samples, 0.03%)</title><rect x="24.2465%" y="837" width="0.0298%" height="15" fill="rgb(251,129,25)" fg:x="116458" fg:w="143"/><text x="24.4965%" y="847.50"></text></g><g><title>NMethodSweeper::possibly_sweep (154 samples, 0.03%)</title><rect x="24.2444%" y="853" width="0.0321%" height="15" fill="rgb(238,97,19)" fg:x="116448" fg:w="154"/><text x="24.4944%" y="863.50"></text></g><g><title>__clone3 (713 samples, 0.15%)</title><rect x="24.1295%" y="949" width="0.1484%" height="15" fill="rgb(240,169,18)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="959.50"></text></g><g><title>start_thread (713 samples, 0.15%)</title><rect x="24.1295%" y="933" width="0.1484%" height="15" fill="rgb(230,187,49)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="943.50"></text></g><g><title>thread_native_entry (713 samples, 0.15%)</title><rect x="24.1295%" y="917" width="0.1484%" height="15" fill="rgb(209,44,26)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="927.50"></text></g><g><title>Thread::call_run (713 samples, 0.15%)</title><rect x="24.1295%" y="901" width="0.1484%" height="15" fill="rgb(244,0,6)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (713 samples, 0.15%)</title><rect x="24.1295%" y="885" width="0.1484%" height="15" fill="rgb(248,18,21)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="895.50"></text></g><g><title>NMethodSweeper::sweeper_loop (713 samples, 0.15%)</title><rect x="24.1295%" y="869" width="0.1484%" height="15" fill="rgb(245,180,19)" fg:x="115896" fg:w="713"/><text x="24.3795%" y="879.50"></text></g><g><title>Sweeper_thread (737 samples, 0.15%)</title><rect x="24.1251%" y="965" width="0.1534%" height="15" fill="rgb(252,118,36)" fg:x="115875" fg:w="737"/><text x="24.3751%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="24.3181%" y="661" width="0.0135%" height="15" fill="rgb(210,224,19)" fg:x="116802" fg:w="65"/><text x="24.5681%" y="671.50"></text></g><g><title>x86_pmu_enable (63 samples, 0.01%)</title><rect x="24.3186%" y="645" width="0.0131%" height="15" fill="rgb(218,30,24)" fg:x="116804" fg:w="63"/><text x="24.5686%" y="655.50"></text></g><g><title>intel_pmu_enable_all (63 samples, 0.01%)</title><rect x="24.3186%" y="629" width="0.0131%" height="15" fill="rgb(219,75,50)" fg:x="116804" fg:w="63"/><text x="24.5686%" y="639.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="24.3186%" y="613" width="0.0131%" height="15" fill="rgb(234,72,50)" fg:x="116804" fg:w="63"/><text x="24.5686%" y="623.50"></text></g><g><title>finish_task_switch.isra.0 (68 samples, 0.01%)</title><rect x="24.3179%" y="677" width="0.0142%" height="15" fill="rgb(219,100,48)" fg:x="116801" fg:w="68"/><text x="24.5679%" y="687.50"></text></g><g><title>__schedule (72 samples, 0.01%)</title><rect x="24.3173%" y="693" width="0.0150%" height="15" fill="rgb(253,5,41)" fg:x="116798" fg:w="72"/><text x="24.5673%" y="703.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.02%)</title><rect x="24.3167%" y="725" width="0.0158%" height="15" fill="rgb(247,181,11)" fg:x="116795" fg:w="76"/><text x="24.5667%" y="735.50"></text></g><g><title>schedule (73 samples, 0.02%)</title><rect x="24.3173%" y="709" width="0.0152%" height="15" fill="rgb(222,223,25)" fg:x="116798" fg:w="73"/><text x="24.5673%" y="719.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.02%)</title><rect x="24.3163%" y="773" width="0.0167%" height="15" fill="rgb(214,198,28)" fg:x="116793" fg:w="80"/><text x="24.5663%" y="783.50"></text></g><g><title>do_futex (80 samples, 0.02%)</title><rect x="24.3163%" y="757" width="0.0167%" height="15" fill="rgb(230,46,43)" fg:x="116793" fg:w="80"/><text x="24.5663%" y="767.50"></text></g><g><title>futex_wait (78 samples, 0.02%)</title><rect x="24.3167%" y="741" width="0.0162%" height="15" fill="rgb(233,65,53)" fg:x="116795" fg:w="78"/><text x="24.5667%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (84 samples, 0.02%)</title><rect x="24.3159%" y="869" width="0.0175%" height="15" fill="rgb(221,121,27)" fg:x="116791" fg:w="84"/><text x="24.5659%" y="879.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (83 samples, 0.02%)</title><rect x="24.3161%" y="853" width="0.0173%" height="15" fill="rgb(247,70,47)" fg:x="116792" fg:w="83"/><text x="24.5661%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common (83 samples, 0.02%)</title><rect x="24.3161%" y="837" width="0.0173%" height="15" fill="rgb(228,85,35)" fg:x="116792" fg:w="83"/><text x="24.5661%" y="847.50"></text></g><g><title>__futex_abstimed_wait_common64 (83 samples, 0.02%)</title><rect x="24.3161%" y="821" width="0.0173%" height="15" fill="rgb(209,50,18)" fg:x="116792" fg:w="83"/><text x="24.5661%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="24.3161%" y="805" width="0.0173%" height="15" fill="rgb(250,19,35)" fg:x="116792" fg:w="83"/><text x="24.5661%" y="815.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="24.3161%" y="789" width="0.0173%" height="15" fill="rgb(253,107,29)" fg:x="116792" fg:w="83"/><text x="24.5661%" y="799.50"></text></g><g><title>___pthread_cond_timedwait64 (85 samples, 0.02%)</title><rect x="24.3159%" y="885" width="0.0177%" height="15" fill="rgb(252,179,29)" fg:x="116791" fg:w="85"/><text x="24.5659%" y="895.50"></text></g><g><title>os::PlatformEvent::park (87 samples, 0.02%)</title><rect x="24.3159%" y="901" width="0.0181%" height="15" fill="rgb(238,194,6)" fg:x="116791" fg:w="87"/><text x="24.5659%" y="911.50"></text></g><g><title>JVM_Sleep (92 samples, 0.02%)</title><rect x="24.3150%" y="933" width="0.0192%" height="15" fill="rgb(238,164,29)" fg:x="116787" fg:w="92"/><text x="24.5650%" y="943.50"></text></g><g><title>os::sleep (92 samples, 0.02%)</title><rect x="24.3150%" y="917" width="0.0192%" height="15" fill="rgb(224,25,9)" fg:x="116787" fg:w="92"/><text x="24.5650%" y="927.50"></text></g><g><title>[perf-712021.map] (347 samples, 0.07%)</title><rect x="24.2811%" y="949" width="0.0722%" height="15" fill="rgb(244,153,23)" fg:x="116624" fg:w="347"/><text x="24.5311%" y="959.50"></text></g><g><title>Thread-0 (394 samples, 0.08%)</title><rect x="24.2786%" y="965" width="0.0820%" height="15" fill="rgb(212,203,14)" fg:x="116612" fg:w="394"/><text x="24.5286%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (144 samples, 0.03%)</title><rect x="24.3708%" y="581" width="0.0300%" height="15" fill="rgb(220,164,20)" fg:x="117055" fg:w="144"/><text x="24.6208%" y="591.50"></text></g><g><title>x86_pmu_enable (139 samples, 0.03%)</title><rect x="24.3719%" y="565" width="0.0289%" height="15" fill="rgb(222,203,48)" fg:x="117060" fg:w="139"/><text x="24.6219%" y="575.50"></text></g><g><title>intel_pmu_enable_all (136 samples, 0.03%)</title><rect x="24.3725%" y="549" width="0.0283%" height="15" fill="rgb(215,159,22)" fg:x="117063" fg:w="136"/><text x="24.6225%" y="559.50"></text></g><g><title>native_write_msr (136 samples, 0.03%)</title><rect x="24.3725%" y="533" width="0.0283%" height="15" fill="rgb(216,183,47)" fg:x="117063" fg:w="136"/><text x="24.6225%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (149 samples, 0.03%)</title><rect x="24.3700%" y="597" width="0.0310%" height="15" fill="rgb(229,195,25)" fg:x="117051" fg:w="149"/><text x="24.6200%" y="607.50"></text></g><g><title>futex_wait_queue_me (161 samples, 0.03%)</title><rect x="24.3681%" y="645" width="0.0335%" height="15" fill="rgb(224,132,51)" fg:x="117042" fg:w="161"/><text x="24.6181%" y="655.50"></text></g><g><title>schedule (158 samples, 0.03%)</title><rect x="24.3687%" y="629" width="0.0329%" height="15" fill="rgb(240,63,7)" fg:x="117045" fg:w="158"/><text x="24.6187%" y="639.50"></text></g><g><title>__schedule (156 samples, 0.03%)</title><rect x="24.3692%" y="613" width="0.0325%" height="15" fill="rgb(249,182,41)" fg:x="117047" fg:w="156"/><text x="24.6192%" y="623.50"></text></g><g><title>futex_wait (164 samples, 0.03%)</title><rect x="24.3681%" y="661" width="0.0341%" height="15" fill="rgb(243,47,26)" fg:x="117042" fg:w="164"/><text x="24.6181%" y="671.50"></text></g><g><title>do_futex (167 samples, 0.03%)</title><rect x="24.3677%" y="677" width="0.0348%" height="15" fill="rgb(233,48,2)" fg:x="117040" fg:w="167"/><text x="24.6177%" y="687.50"></text></g><g><title>__x64_sys_futex (170 samples, 0.04%)</title><rect x="24.3673%" y="693" width="0.0354%" height="15" fill="rgb(244,165,34)" fg:x="117038" fg:w="170"/><text x="24.6173%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (175 samples, 0.04%)</title><rect x="24.3669%" y="773" width="0.0364%" height="15" fill="rgb(207,89,7)" fg:x="117036" fg:w="175"/><text x="24.6169%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (175 samples, 0.04%)</title><rect x="24.3669%" y="757" width="0.0364%" height="15" fill="rgb(244,117,36)" fg:x="117036" fg:w="175"/><text x="24.6169%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (175 samples, 0.04%)</title><rect x="24.3669%" y="741" width="0.0364%" height="15" fill="rgb(226,144,34)" fg:x="117036" fg:w="175"/><text x="24.6169%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (174 samples, 0.04%)</title><rect x="24.3671%" y="725" width="0.0362%" height="15" fill="rgb(213,23,19)" fg:x="117037" fg:w="174"/><text x="24.6171%" y="735.50"></text></g><g><title>do_syscall_64 (173 samples, 0.04%)</title><rect x="24.3673%" y="709" width="0.0360%" height="15" fill="rgb(217,75,12)" fg:x="117038" fg:w="173"/><text x="24.6173%" y="719.50"></text></g><g><title>___pthread_cond_timedwait64 (180 samples, 0.04%)</title><rect x="24.3669%" y="805" width="0.0375%" height="15" fill="rgb(224,159,17)" fg:x="117036" fg:w="180"/><text x="24.6169%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (180 samples, 0.04%)</title><rect x="24.3669%" y="789" width="0.0375%" height="15" fill="rgb(217,118,1)" fg:x="117036" fg:w="180"/><text x="24.6169%" y="799.50"></text></g><g><title>Monitor::wait (198 samples, 0.04%)</title><rect x="24.3660%" y="853" width="0.0412%" height="15" fill="rgb(232,180,48)" fg:x="117032" fg:w="198"/><text x="24.6160%" y="863.50"></text></g><g><title>Monitor::IWait (196 samples, 0.04%)</title><rect x="24.3664%" y="837" width="0.0408%" height="15" fill="rgb(230,27,33)" fg:x="117034" fg:w="196"/><text x="24.6164%" y="847.50"></text></g><g><title>os::PlatformEvent::park (194 samples, 0.04%)</title><rect x="24.3669%" y="821" width="0.0404%" height="15" fill="rgb(205,31,21)" fg:x="117036" fg:w="194"/><text x="24.6169%" y="831.50"></text></g><g><title>__clone3 (221 samples, 0.05%)</title><rect x="24.3617%" y="949" width="0.0460%" height="15" fill="rgb(253,59,4)" fg:x="117011" fg:w="221"/><text x="24.6117%" y="959.50"></text></g><g><title>start_thread (221 samples, 0.05%)</title><rect x="24.3617%" y="933" width="0.0460%" height="15" fill="rgb(224,201,9)" fg:x="117011" fg:w="221"/><text x="24.6117%" y="943.50"></text></g><g><title>thread_native_entry (221 samples, 0.05%)</title><rect x="24.3617%" y="917" width="0.0460%" height="15" fill="rgb(229,206,30)" fg:x="117011" fg:w="221"/><text x="24.6117%" y="927.50"></text></g><g><title>Thread::call_run (221 samples, 0.05%)</title><rect x="24.3617%" y="901" width="0.0460%" height="15" fill="rgb(212,67,47)" fg:x="117011" fg:w="221"/><text x="24.6117%" y="911.50"></text></g><g><title>WatcherThread::run (221 samples, 0.05%)</title><rect x="24.3617%" y="885" width="0.0460%" height="15" fill="rgb(211,96,50)" fg:x="117011" fg:w="221"/><text x="24.6117%" y="895.50"></text></g><g><title>WatcherThread::sleep (201 samples, 0.04%)</title><rect x="24.3658%" y="869" width="0.0418%" height="15" fill="rgb(252,114,18)" fg:x="117031" fg:w="201"/><text x="24.6158%" y="879.50"></text></g><g><title>VM_Periodic_Tas (228 samples, 0.05%)</title><rect x="24.3606%" y="965" width="0.0475%" height="15" fill="rgb(223,58,37)" fg:x="117006" fg:w="228"/><text x="24.6106%" y="975.50"></text></g><g><title>[unknown] (94 samples, 0.02%)</title><rect x="24.4125%" y="949" width="0.0196%" height="15" fill="rgb(237,70,4)" fg:x="117255" fg:w="94"/><text x="24.6625%" y="959.50"></text></g><g><title>vframe::sender (90 samples, 0.02%)</title><rect x="24.4133%" y="933" width="0.0187%" height="15" fill="rgb(244,85,46)" fg:x="117259" fg:w="90"/><text x="24.6633%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.02%)</title><rect x="24.4410%" y="581" width="0.0152%" height="15" fill="rgb(223,39,52)" fg:x="117392" fg:w="73"/><text x="24.6910%" y="591.50"></text></g><g><title>x86_pmu_enable (70 samples, 0.01%)</title><rect x="24.4416%" y="565" width="0.0146%" height="15" fill="rgb(218,200,14)" fg:x="117395" fg:w="70"/><text x="24.6916%" y="575.50"></text></g><g><title>intel_pmu_enable_all (68 samples, 0.01%)</title><rect x="24.4420%" y="549" width="0.0142%" height="15" fill="rgb(208,171,16)" fg:x="117397" fg:w="68"/><text x="24.6920%" y="559.50"></text></g><g><title>native_write_msr (68 samples, 0.01%)</title><rect x="24.4420%" y="533" width="0.0142%" height="15" fill="rgb(234,200,18)" fg:x="117397" fg:w="68"/><text x="24.6920%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (78 samples, 0.02%)</title><rect x="24.4406%" y="597" width="0.0162%" height="15" fill="rgb(228,45,11)" fg:x="117390" fg:w="78"/><text x="24.6906%" y="607.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.02%)</title><rect x="24.4399%" y="645" width="0.0177%" height="15" fill="rgb(237,182,11)" fg:x="117387" fg:w="85"/><text x="24.6899%" y="655.50"></text></g><g><title>schedule (84 samples, 0.02%)</title><rect x="24.4402%" y="629" width="0.0175%" height="15" fill="rgb(241,175,49)" fg:x="117388" fg:w="84"/><text x="24.6902%" y="639.50"></text></g><g><title>__schedule (84 samples, 0.02%)</title><rect x="24.4402%" y="613" width="0.0175%" height="15" fill="rgb(247,38,35)" fg:x="117388" fg:w="84"/><text x="24.6902%" y="623.50"></text></g><g><title>futex_wait (86 samples, 0.02%)</title><rect x="24.4399%" y="661" width="0.0179%" height="15" fill="rgb(228,39,49)" fg:x="117387" fg:w="86"/><text x="24.6899%" y="671.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="24.4399%" y="677" width="0.0181%" height="15" fill="rgb(226,101,26)" fg:x="117387" fg:w="87"/><text x="24.6899%" y="687.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.02%)</title><rect x="24.4399%" y="693" width="0.0183%" height="15" fill="rgb(206,141,19)" fg:x="117387" fg:w="88"/><text x="24.6899%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (93 samples, 0.02%)</title><rect x="24.4395%" y="773" width="0.0194%" height="15" fill="rgb(211,200,13)" fg:x="117385" fg:w="93"/><text x="24.6895%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (93 samples, 0.02%)</title><rect x="24.4395%" y="757" width="0.0194%" height="15" fill="rgb(241,121,6)" fg:x="117385" fg:w="93"/><text x="24.6895%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (93 samples, 0.02%)</title><rect x="24.4395%" y="741" width="0.0194%" height="15" fill="rgb(234,221,29)" fg:x="117385" fg:w="93"/><text x="24.6895%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.02%)</title><rect x="24.4397%" y="725" width="0.0192%" height="15" fill="rgb(229,136,5)" fg:x="117386" fg:w="92"/><text x="24.6897%" y="735.50"></text></g><g><title>do_syscall_64 (91 samples, 0.02%)</title><rect x="24.4399%" y="709" width="0.0189%" height="15" fill="rgb(238,36,11)" fg:x="117387" fg:w="91"/><text x="24.6899%" y="719.50"></text></g><g><title>___pthread_cond_timedwait64 (94 samples, 0.02%)</title><rect x="24.4395%" y="805" width="0.0196%" height="15" fill="rgb(251,55,41)" fg:x="117385" fg:w="94"/><text x="24.6895%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (94 samples, 0.02%)</title><rect x="24.4395%" y="789" width="0.0196%" height="15" fill="rgb(242,34,40)" fg:x="117385" fg:w="94"/><text x="24.6895%" y="799.50"></text></g><g><title>Monitor::wait (99 samples, 0.02%)</title><rect x="24.4389%" y="853" width="0.0206%" height="15" fill="rgb(215,42,17)" fg:x="117382" fg:w="99"/><text x="24.6889%" y="863.50"></text></g><g><title>Monitor::IWait (99 samples, 0.02%)</title><rect x="24.4389%" y="837" width="0.0206%" height="15" fill="rgb(207,44,46)" fg:x="117382" fg:w="99"/><text x="24.6889%" y="847.50"></text></g><g><title>os::PlatformEvent::park (96 samples, 0.02%)</title><rect x="24.4395%" y="821" width="0.0200%" height="15" fill="rgb(211,206,28)" fg:x="117385" fg:w="96"/><text x="24.6895%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (59 samples, 0.01%)</title><rect x="24.5007%" y="565" width="0.0123%" height="15" fill="rgb(237,167,16)" fg:x="117679" fg:w="59"/><text x="24.7507%" y="575.50"></text></g><g><title>x86_pmu_enable (57 samples, 0.01%)</title><rect x="24.5012%" y="549" width="0.0119%" height="15" fill="rgb(233,66,6)" fg:x="117681" fg:w="57"/><text x="24.7512%" y="559.50"></text></g><g><title>intel_pmu_enable_all (57 samples, 0.01%)</title><rect x="24.5012%" y="533" width="0.0119%" height="15" fill="rgb(246,123,29)" fg:x="117681" fg:w="57"/><text x="24.7512%" y="543.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="24.5012%" y="517" width="0.0119%" height="15" fill="rgb(209,62,40)" fg:x="117681" fg:w="57"/><text x="24.7512%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (62 samples, 0.01%)</title><rect x="24.5005%" y="581" width="0.0129%" height="15" fill="rgb(218,4,25)" fg:x="117678" fg:w="62"/><text x="24.7505%" y="591.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="24.5003%" y="677" width="0.0135%" height="15" fill="rgb(253,91,49)" fg:x="117677" fg:w="65"/><text x="24.7503%" y="687.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="24.5003%" y="661" width="0.0135%" height="15" fill="rgb(228,155,29)" fg:x="117677" fg:w="65"/><text x="24.7503%" y="671.50"></text></g><g><title>futex_wait (65 samples, 0.01%)</title><rect x="24.5003%" y="645" width="0.0135%" height="15" fill="rgb(243,57,37)" fg:x="117677" fg:w="65"/><text x="24.7503%" y="655.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="24.5003%" y="629" width="0.0135%" height="15" fill="rgb(244,167,17)" fg:x="117677" fg:w="65"/><text x="24.7503%" y="639.50"></text></g><g><title>schedule (64 samples, 0.01%)</title><rect x="24.5005%" y="613" width="0.0133%" height="15" fill="rgb(207,181,38)" fg:x="117678" fg:w="64"/><text x="24.7505%" y="623.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="24.5005%" y="597" width="0.0133%" height="15" fill="rgb(211,8,23)" fg:x="117678" fg:w="64"/><text x="24.7505%" y="607.50"></text></g><g><title>Monitor::wait (72 samples, 0.01%)</title><rect x="24.4999%" y="837" width="0.0150%" height="15" fill="rgb(235,11,44)" fg:x="117675" fg:w="72"/><text x="24.7499%" y="847.50"></text></g><g><title>Monitor::IWait (72 samples, 0.01%)</title><rect x="24.4999%" y="821" width="0.0150%" height="15" fill="rgb(248,18,52)" fg:x="117675" fg:w="72"/><text x="24.7499%" y="831.50"></text></g><g><title>os::PlatformEvent::park (70 samples, 0.01%)</title><rect x="24.5003%" y="805" width="0.0146%" height="15" fill="rgb(208,4,7)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="815.50"></text></g><g><title>___pthread_cond_wait (70 samples, 0.01%)</title><rect x="24.5003%" y="789" width="0.0146%" height="15" fill="rgb(240,17,39)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (70 samples, 0.01%)</title><rect x="24.5003%" y="773" width="0.0146%" height="15" fill="rgb(207,170,3)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (70 samples, 0.01%)</title><rect x="24.5003%" y="757" width="0.0146%" height="15" fill="rgb(236,100,52)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (70 samples, 0.01%)</title><rect x="24.5003%" y="741" width="0.0146%" height="15" fill="rgb(246,78,51)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (70 samples, 0.01%)</title><rect x="24.5003%" y="725" width="0.0146%" height="15" fill="rgb(211,17,15)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="24.5003%" y="709" width="0.0146%" height="15" fill="rgb(209,59,46)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="24.5003%" y="693" width="0.0146%" height="15" fill="rgb(210,92,25)" fg:x="117677" fg:w="70"/><text x="24.7503%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (119 samples, 0.02%)</title><rect x="24.5278%" y="565" width="0.0248%" height="15" fill="rgb(238,174,52)" fg:x="117809" fg:w="119"/><text x="24.7778%" y="575.50"></text></g><g><title>x86_pmu_enable (118 samples, 0.02%)</title><rect x="24.5280%" y="549" width="0.0246%" height="15" fill="rgb(230,73,7)" fg:x="117810" fg:w="118"/><text x="24.7780%" y="559.50"></text></g><g><title>intel_pmu_enable_all (118 samples, 0.02%)</title><rect x="24.5280%" y="533" width="0.0246%" height="15" fill="rgb(243,124,40)" fg:x="117810" fg:w="118"/><text x="24.7780%" y="543.50"></text></g><g><title>native_write_msr (117 samples, 0.02%)</title><rect x="24.5282%" y="517" width="0.0244%" height="15" fill="rgb(244,170,11)" fg:x="117811" fg:w="117"/><text x="24.7782%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (122 samples, 0.03%)</title><rect x="24.5278%" y="581" width="0.0254%" height="15" fill="rgb(207,114,54)" fg:x="117809" fg:w="122"/><text x="24.7778%" y="591.50"></text></g><g><title>futex_wait_queue_me (133 samples, 0.03%)</title><rect x="24.5263%" y="629" width="0.0277%" height="15" fill="rgb(205,42,20)" fg:x="117802" fg:w="133"/><text x="24.7763%" y="639.50"></text></g><g><title>schedule (131 samples, 0.03%)</title><rect x="24.5268%" y="613" width="0.0273%" height="15" fill="rgb(230,30,28)" fg:x="117804" fg:w="131"/><text x="24.7768%" y="623.50"></text></g><g><title>__schedule (129 samples, 0.03%)</title><rect x="24.5272%" y="597" width="0.0269%" height="15" fill="rgb(205,73,54)" fg:x="117806" fg:w="129"/><text x="24.7772%" y="607.50"></text></g><g><title>__x64_sys_futex (134 samples, 0.03%)</title><rect x="24.5263%" y="677" width="0.0279%" height="15" fill="rgb(254,227,23)" fg:x="117802" fg:w="134"/><text x="24.7763%" y="687.50"></text></g><g><title>do_futex (134 samples, 0.03%)</title><rect x="24.5263%" y="661" width="0.0279%" height="15" fill="rgb(228,202,34)" fg:x="117802" fg:w="134"/><text x="24.7763%" y="671.50"></text></g><g><title>futex_wait (134 samples, 0.03%)</title><rect x="24.5263%" y="645" width="0.0279%" height="15" fill="rgb(222,225,37)" fg:x="117802" fg:w="134"/><text x="24.7763%" y="655.50"></text></g><g><title>do_syscall_64 (137 samples, 0.03%)</title><rect x="24.5261%" y="693" width="0.0285%" height="15" fill="rgb(221,14,54)" fg:x="117801" fg:w="137"/><text x="24.7761%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (139 samples, 0.03%)</title><rect x="24.5259%" y="709" width="0.0289%" height="15" fill="rgb(254,102,2)" fg:x="117800" fg:w="139"/><text x="24.7759%" y="719.50"></text></g><g><title>__new_sem_wait_slow64 (144 samples, 0.03%)</title><rect x="24.5251%" y="773" width="0.0300%" height="15" fill="rgb(232,104,17)" fg:x="117796" fg:w="144"/><text x="24.7751%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (144 samples, 0.03%)</title><rect x="24.5251%" y="757" width="0.0300%" height="15" fill="rgb(250,220,14)" fg:x="117796" fg:w="144"/><text x="24.7751%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (144 samples, 0.03%)</title><rect x="24.5251%" y="741" width="0.0300%" height="15" fill="rgb(241,158,9)" fg:x="117796" fg:w="144"/><text x="24.7751%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (144 samples, 0.03%)</title><rect x="24.5251%" y="725" width="0.0300%" height="15" fill="rgb(246,9,43)" fg:x="117796" fg:w="144"/><text x="24.7751%" y="735.50"></text></g><g><title>WorkGang::run_task (184 samples, 0.04%)</title><rect x="24.5170%" y="821" width="0.0383%" height="15" fill="rgb(206,73,33)" fg:x="117757" fg:w="184"/><text x="24.7670%" y="831.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (183 samples, 0.04%)</title><rect x="24.5172%" y="805" width="0.0381%" height="15" fill="rgb(222,79,8)" fg:x="117758" fg:w="183"/><text x="24.7672%" y="815.50"></text></g><g><title>PosixSemaphore::wait (145 samples, 0.03%)</title><rect x="24.5251%" y="789" width="0.0302%" height="15" fill="rgb(234,8,54)" fg:x="117796" fg:w="145"/><text x="24.7751%" y="799.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (196 samples, 0.04%)</title><rect x="24.5153%" y="837" width="0.0408%" height="15" fill="rgb(209,134,38)" fg:x="117749" fg:w="196"/><text x="24.7653%" y="847.50"></text></g><g><title>SafepointSynchronize::begin (522 samples, 0.11%)</title><rect x="24.4595%" y="853" width="0.1087%" height="15" fill="rgb(230,127,29)" fg:x="117481" fg:w="522"/><text x="24.7095%" y="863.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (52 samples, 0.01%)</title><rect x="24.5799%" y="805" width="0.0108%" height="15" fill="rgb(242,44,41)" fg:x="118059" fg:w="52"/><text x="24.8299%" y="815.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (50 samples, 0.01%)</title><rect x="24.5803%" y="789" width="0.0104%" height="15" fill="rgb(222,56,43)" fg:x="118061" fg:w="50"/><text x="24.8303%" y="799.50"></text></g><g><title>VM_Deoptimize::doit (59 samples, 0.01%)</title><rect x="24.5796%" y="821" width="0.0123%" height="15" fill="rgb(238,39,47)" fg:x="118058" fg:w="59"/><text x="24.8296%" y="831.50"></text></g><g><title>VM_Operation::evaluate (133 samples, 0.03%)</title><rect x="24.5769%" y="837" width="0.0277%" height="15" fill="rgb(226,79,43)" fg:x="118045" fg:w="133"/><text x="24.8269%" y="847.50"></text></g><g><title>__clone3 (831 samples, 0.17%)</title><rect x="24.4320%" y="949" width="0.1730%" height="15" fill="rgb(242,105,53)" fg:x="117349" fg:w="831"/><text x="24.6820%" y="959.50"></text></g><g><title>start_thread (830 samples, 0.17%)</title><rect x="24.4322%" y="933" width="0.1728%" height="15" fill="rgb(251,132,46)" fg:x="117350" fg:w="830"/><text x="24.6822%" y="943.50"></text></g><g><title>thread_native_entry (830 samples, 0.17%)</title><rect x="24.4322%" y="917" width="0.1728%" height="15" fill="rgb(231,77,14)" fg:x="117350" fg:w="830"/><text x="24.6822%" y="927.50"></text></g><g><title>Thread::call_run (830 samples, 0.17%)</title><rect x="24.4322%" y="901" width="0.1728%" height="15" fill="rgb(240,135,9)" fg:x="117350" fg:w="830"/><text x="24.6822%" y="911.50"></text></g><g><title>VMThread::run (830 samples, 0.17%)</title><rect x="24.4322%" y="885" width="0.1728%" height="15" fill="rgb(248,109,14)" fg:x="117350" fg:w="830"/><text x="24.6822%" y="895.50"></text></g><g><title>VMThread::loop (829 samples, 0.17%)</title><rect x="24.4324%" y="869" width="0.1726%" height="15" fill="rgb(227,146,52)" fg:x="117351" fg:w="829"/><text x="24.6824%" y="879.50"></text></g><g><title>VMThread::evaluate_operation (135 samples, 0.03%)</title><rect x="24.5769%" y="853" width="0.0281%" height="15" fill="rgb(232,54,3)" fg:x="118045" fg:w="135"/><text x="24.8269%" y="863.50"></text></g><g><title>VM_Thread (954 samples, 0.20%)</title><rect x="24.4081%" y="965" width="0.1986%" height="15" fill="rgb(229,201,43)" fg:x="117234" fg:w="954"/><text x="24.6581%" y="975.50"></text></g><g><title>do_epoll_pwait.part.0 (49 samples, 0.01%)</title><rect x="24.6521%" y="885" width="0.0102%" height="15" fill="rgb(252,161,33)" fg:x="118406" fg:w="49"/><text x="24.9021%" y="895.50"></text></g><g><title>do_epoll_wait (49 samples, 0.01%)</title><rect x="24.6521%" y="869" width="0.0102%" height="15" fill="rgb(226,146,40)" fg:x="118406" fg:w="49"/><text x="24.9021%" y="879.50"></text></g><g><title>__x64_sys_epoll_pwait (50 samples, 0.01%)</title><rect x="24.6521%" y="901" width="0.0104%" height="15" fill="rgb(219,47,25)" fg:x="118406" fg:w="50"/><text x="24.9021%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="24.6663%" y="789" width="0.0208%" height="15" fill="rgb(250,135,13)" fg:x="118474" fg:w="100"/><text x="24.9163%" y="799.50"></text></g><g><title>x86_pmu_enable (95 samples, 0.02%)</title><rect x="24.6673%" y="773" width="0.0198%" height="15" fill="rgb(219,229,18)" fg:x="118479" fg:w="95"/><text x="24.9173%" y="783.50"></text></g><g><title>intel_pmu_enable_all (94 samples, 0.02%)</title><rect x="24.6675%" y="757" width="0.0196%" height="15" fill="rgb(217,152,27)" fg:x="118480" fg:w="94"/><text x="24.9175%" y="767.50"></text></g><g><title>native_write_msr (94 samples, 0.02%)</title><rect x="24.6675%" y="741" width="0.0196%" height="15" fill="rgb(225,71,47)" fg:x="118480" fg:w="94"/><text x="24.9175%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (108 samples, 0.02%)</title><rect x="24.6656%" y="805" width="0.0225%" height="15" fill="rgb(220,139,14)" fg:x="118471" fg:w="108"/><text x="24.9156%" y="815.50"></text></g><g><title>futex_wait_queue_me (129 samples, 0.03%)</title><rect x="24.6635%" y="853" width="0.0269%" height="15" fill="rgb(247,54,32)" fg:x="118461" fg:w="129"/><text x="24.9135%" y="863.50"></text></g><g><title>schedule (129 samples, 0.03%)</title><rect x="24.6635%" y="837" width="0.0269%" height="15" fill="rgb(252,131,39)" fg:x="118461" fg:w="129"/><text x="24.9135%" y="847.50"></text></g><g><title>__schedule (129 samples, 0.03%)</title><rect x="24.6635%" y="821" width="0.0269%" height="15" fill="rgb(210,108,39)" fg:x="118461" fg:w="129"/><text x="24.9135%" y="831.50"></text></g><g><title>futex_wait (131 samples, 0.03%)</title><rect x="24.6633%" y="869" width="0.0273%" height="15" fill="rgb(205,23,29)" fg:x="118460" fg:w="131"/><text x="24.9133%" y="879.50"></text></g><g><title>__x64_sys_futex (135 samples, 0.03%)</title><rect x="24.6633%" y="901" width="0.0281%" height="15" fill="rgb(246,139,46)" fg:x="118460" fg:w="135"/><text x="24.9133%" y="911.50"></text></g><g><title>do_futex (135 samples, 0.03%)</title><rect x="24.6633%" y="885" width="0.0281%" height="15" fill="rgb(250,81,26)" fg:x="118460" fg:w="135"/><text x="24.9133%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.05%)</title><rect x="24.6508%" y="933" width="0.0518%" height="15" fill="rgb(214,104,7)" fg:x="118400" fg:w="249"/><text x="24.9008%" y="943.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="24.6513%" y="917" width="0.0514%" height="15" fill="rgb(233,189,8)" fg:x="118402" fg:w="247"/><text x="24.9013%" y="927.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (470 samples, 0.10%)</title><rect x="24.6148%" y="949" width="0.0979%" height="15" fill="rgb(228,141,17)" fg:x="118227" fg:w="470"/><text x="24.8648%" y="959.50"></text></g><g><title>bazel (522 samples, 0.11%)</title><rect x="24.6144%" y="965" width="0.1087%" height="15" fill="rgb(247,157,1)" fg:x="118225" fg:w="522"/><text x="24.8644%" y="975.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (75 samples, 0.02%)</title><rect x="24.7393%" y="885" width="0.0156%" height="15" fill="rgb(249,225,5)" fg:x="118825" fg:w="75"/><text x="24.9893%" y="895.50"></text></g><g><title>__libc_start_main_impl (100 samples, 0.02%)</title><rect x="24.7375%" y="933" width="0.0208%" height="15" fill="rgb(242,55,13)" fg:x="118816" fg:w="100"/><text x="24.9875%" y="943.50"></text></g><g><title>__libc_start_call_main (100 samples, 0.02%)</title><rect x="24.7375%" y="917" width="0.0208%" height="15" fill="rgb(230,49,50)" fg:x="118816" fg:w="100"/><text x="24.9875%" y="927.50"></text></g><g><title>main (91 samples, 0.02%)</title><rect x="24.7393%" y="901" width="0.0189%" height="15" fill="rgb(241,111,38)" fg:x="118825" fg:w="91"/><text x="24.9893%" y="911.50"></text></g><g><title>_dl_map_object_from_fd (56 samples, 0.01%)</title><rect x="24.7641%" y="805" width="0.0117%" height="15" fill="rgb(252,155,4)" fg:x="118944" fg:w="56"/><text x="25.0141%" y="815.50"></text></g><g><title>_dl_map_object_deps (84 samples, 0.02%)</title><rect x="24.7616%" y="869" width="0.0175%" height="15" fill="rgb(212,69,32)" fg:x="118932" fg:w="84"/><text x="25.0116%" y="879.50"></text></g><g><title>_dl_catch_exception (83 samples, 0.02%)</title><rect x="24.7618%" y="853" width="0.0173%" height="15" fill="rgb(243,107,47)" fg:x="118933" fg:w="83"/><text x="25.0118%" y="863.50"></text></g><g><title>openaux (82 samples, 0.02%)</title><rect x="24.7620%" y="837" width="0.0171%" height="15" fill="rgb(247,130,12)" fg:x="118934" fg:w="82"/><text x="25.0120%" y="847.50"></text></g><g><title>_dl_map_object (82 samples, 0.02%)</title><rect x="24.7620%" y="821" width="0.0171%" height="15" fill="rgb(233,74,16)" fg:x="118934" fg:w="82"/><text x="25.0120%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (131 samples, 0.03%)</title><rect x="24.7908%" y="821" width="0.0273%" height="15" fill="rgb(208,58,18)" fg:x="119072" fg:w="131"/><text x="25.0408%" y="831.50"></text></g><g><title>do_lookup_x (77 samples, 0.02%)</title><rect x="24.8020%" y="805" width="0.0160%" height="15" fill="rgb(242,225,1)" fg:x="119126" fg:w="77"/><text x="25.0520%" y="815.50"></text></g><g><title>elf_machine_rela (158 samples, 0.03%)</title><rect x="24.7862%" y="837" width="0.0329%" height="15" fill="rgb(249,39,40)" fg:x="119050" fg:w="158"/><text x="25.0362%" y="847.50"></text></g><g><title>elf_dynamic_do_Rela (188 samples, 0.04%)</title><rect x="24.7822%" y="853" width="0.0391%" height="15" fill="rgb(207,72,44)" fg:x="119031" fg:w="188"/><text x="25.0322%" y="863.50"></text></g><g><title>_dl_relocate_object (199 samples, 0.04%)</title><rect x="24.7801%" y="869" width="0.0414%" height="15" fill="rgb(215,193,12)" fg:x="119021" fg:w="199"/><text x="25.0301%" y="879.50"></text></g><g><title>dl_main (312 samples, 0.06%)</title><rect x="24.7593%" y="885" width="0.0650%" height="15" fill="rgb(248,41,39)" fg:x="118921" fg:w="312"/><text x="25.0093%" y="895.50"></text></g><g><title>_dl_start_final (321 samples, 0.07%)</title><rect x="24.7583%" y="917" width="0.0668%" height="15" fill="rgb(253,85,4)" fg:x="118916" fg:w="321"/><text x="25.0083%" y="927.50"></text></g><g><title>_dl_sysdep_start (319 samples, 0.07%)</title><rect x="24.7587%" y="901" width="0.0664%" height="15" fill="rgb(243,70,31)" fg:x="118918" fg:w="319"/><text x="25.0087%" y="911.50"></text></g><g><title>_dl_start (327 samples, 0.07%)</title><rect x="24.7583%" y="933" width="0.0681%" height="15" fill="rgb(253,195,26)" fg:x="118916" fg:w="327"/><text x="25.0083%" y="943.50"></text></g><g><title>_start (432 samples, 0.09%)</title><rect x="24.7375%" y="949" width="0.0899%" height="15" fill="rgb(243,42,11)" fg:x="118816" fg:w="432"/><text x="24.9875%" y="959.50"></text></g><g><title>build-runfiles (589 samples, 0.12%)</title><rect x="24.7235%" y="965" width="0.1226%" height="15" fill="rgb(239,66,17)" fg:x="118749" fg:w="589"/><text x="24.9735%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="24.8289%" y="949" width="0.0173%" height="15" fill="rgb(217,132,21)" fg:x="119255" fg:w="83"/><text x="25.0789%" y="959.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="24.8289%" y="933" width="0.0173%" height="15" fill="rgb(252,202,21)" fg:x="119255" fg:w="83"/><text x="25.0789%" y="943.50"></text></g><g><title>__x64_sys_exit_group (61 samples, 0.01%)</title><rect x="24.8334%" y="917" width="0.0127%" height="15" fill="rgb(233,98,36)" fg:x="119277" fg:w="61"/><text x="25.0834%" y="927.50"></text></g><g><title>do_group_exit (61 samples, 0.01%)</title><rect x="24.8334%" y="901" width="0.0127%" height="15" fill="rgb(216,153,54)" fg:x="119277" fg:w="61"/><text x="25.0834%" y="911.50"></text></g><g><title>do_exit (61 samples, 0.01%)</title><rect x="24.8334%" y="885" width="0.0127%" height="15" fill="rgb(250,99,7)" fg:x="119277" fg:w="61"/><text x="25.0834%" y="895.50"></text></g><g><title>[dash] (97 samples, 0.02%)</title><rect x="24.9671%" y="629" width="0.0202%" height="15" fill="rgb(207,56,50)" fg:x="119919" fg:w="97"/><text x="25.2171%" y="639.50"></text></g><g><title>filemap_map_pages (68 samples, 0.01%)</title><rect x="24.9960%" y="469" width="0.0142%" height="15" fill="rgb(244,61,34)" fg:x="120058" fg:w="68"/><text x="25.2460%" y="479.50"></text></g><g><title>do_fault (78 samples, 0.02%)</title><rect x="24.9958%" y="517" width="0.0162%" height="15" fill="rgb(241,50,38)" fg:x="120057" fg:w="78"/><text x="25.2458%" y="527.50"></text></g><g><title>do_read_fault (78 samples, 0.02%)</title><rect x="24.9958%" y="501" width="0.0162%" height="15" fill="rgb(212,166,30)" fg:x="120057" fg:w="78"/><text x="25.2458%" y="511.50"></text></g><g><title>xfs_filemap_map_pages (78 samples, 0.02%)</title><rect x="24.9958%" y="485" width="0.0162%" height="15" fill="rgb(249,127,32)" fg:x="120057" fg:w="78"/><text x="25.2458%" y="495.50"></text></g><g><title>__handle_mm_fault (93 samples, 0.02%)</title><rect x="24.9954%" y="549" width="0.0194%" height="15" fill="rgb(209,103,0)" fg:x="120055" fg:w="93"/><text x="25.2454%" y="559.50"></text></g><g><title>handle_pte_fault (92 samples, 0.02%)</title><rect x="24.9956%" y="533" width="0.0192%" height="15" fill="rgb(238,209,51)" fg:x="120056" fg:w="92"/><text x="25.2456%" y="543.50"></text></g><g><title>handle_mm_fault (96 samples, 0.02%)</title><rect x="24.9952%" y="565" width="0.0200%" height="15" fill="rgb(237,56,23)" fg:x="120054" fg:w="96"/><text x="25.2452%" y="575.50"></text></g><g><title>do_user_addr_fault (107 samples, 0.02%)</title><rect x="24.9933%" y="581" width="0.0223%" height="15" fill="rgb(215,153,46)" fg:x="120045" fg:w="107"/><text x="25.2433%" y="591.50"></text></g><g><title>asm_exc_page_fault (108 samples, 0.02%)</title><rect x="24.9933%" y="613" width="0.0225%" height="15" fill="rgb(224,49,31)" fg:x="120045" fg:w="108"/><text x="25.2433%" y="623.50"></text></g><g><title>exc_page_fault (108 samples, 0.02%)</title><rect x="24.9933%" y="597" width="0.0225%" height="15" fill="rgb(250,18,42)" fg:x="120045" fg:w="108"/><text x="25.2433%" y="607.50"></text></g><g><title>[libc.so.6] (145 samples, 0.03%)</title><rect x="24.9873%" y="629" width="0.0302%" height="15" fill="rgb(215,176,39)" fg:x="120016" fg:w="145"/><text x="25.2373%" y="639.50"></text></g><g><title>do_filp_open (58 samples, 0.01%)</title><rect x="25.0310%" y="501" width="0.0121%" height="15" fill="rgb(223,77,29)" fg:x="120226" fg:w="58"/><text x="25.2810%" y="511.50"></text></g><g><title>path_openat (57 samples, 0.01%)</title><rect x="25.0312%" y="485" width="0.0119%" height="15" fill="rgb(234,94,52)" fg:x="120227" fg:w="57"/><text x="25.2812%" y="495.50"></text></g><g><title>do_open_execat (60 samples, 0.01%)</title><rect x="25.0308%" y="517" width="0.0125%" height="15" fill="rgb(220,154,50)" fg:x="120225" fg:w="60"/><text x="25.2808%" y="527.50"></text></g><g><title>kernel_read (84 samples, 0.02%)</title><rect x="25.0446%" y="485" width="0.0175%" height="15" fill="rgb(212,11,10)" fg:x="120291" fg:w="84"/><text x="25.2946%" y="495.50"></text></g><g><title>do_open_execat (77 samples, 0.02%)</title><rect x="25.0806%" y="453" width="0.0160%" height="15" fill="rgb(205,166,19)" fg:x="120464" fg:w="77"/><text x="25.3306%" y="463.50"></text></g><g><title>do_filp_open (76 samples, 0.02%)</title><rect x="25.0808%" y="437" width="0.0158%" height="15" fill="rgb(244,198,16)" fg:x="120465" fg:w="76"/><text x="25.3308%" y="447.50"></text></g><g><title>path_openat (74 samples, 0.02%)</title><rect x="25.0812%" y="421" width="0.0154%" height="15" fill="rgb(219,69,12)" fg:x="120467" fg:w="74"/><text x="25.3312%" y="431.50"></text></g><g><title>open_exec (83 samples, 0.02%)</title><rect x="25.0804%" y="469" width="0.0173%" height="15" fill="rgb(245,30,7)" fg:x="120463" fg:w="83"/><text x="25.3304%" y="479.50"></text></g><g><title>load_elf_binary (172 samples, 0.04%)</title><rect x="25.0620%" y="485" width="0.0358%" height="15" fill="rgb(218,221,48)" fg:x="120375" fg:w="172"/><text x="25.3120%" y="495.50"></text></g><g><title>[[falcon_kal]] (69 samples, 0.01%)</title><rect x="25.1101%" y="421" width="0.0144%" height="15" fill="rgb(216,66,15)" fg:x="120606" fg:w="69"/><text x="25.3601%" y="431.50"></text></g><g><title>_ZdlPv (259 samples, 0.05%)</title><rect x="25.2376%" y="261" width="0.0539%" height="15" fill="rgb(226,122,50)" fg:x="121218" fg:w="259"/><text x="25.4876%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (251 samples, 0.05%)</title><rect x="25.2392%" y="245" width="0.0523%" height="15" fill="rgb(239,156,16)" fg:x="121226" fg:w="251"/><text x="25.4892%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (198 samples, 0.04%)</title><rect x="25.2503%" y="229" width="0.0412%" height="15" fill="rgb(224,27,38)" fg:x="121279" fg:w="198"/><text x="25.5003%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (63 samples, 0.01%)</title><rect x="25.2784%" y="213" width="0.0131%" height="15" fill="rgb(224,39,27)" fg:x="121414" fg:w="63"/><text x="25.5284%" y="223.50"></text></g><g><title>_ZdlPv (285 samples, 0.06%)</title><rect x="25.2324%" y="277" width="0.0593%" height="15" fill="rgb(215,92,29)" fg:x="121193" fg:w="285"/><text x="25.4824%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (304 samples, 0.06%)</title><rect x="25.2292%" y="293" width="0.0633%" height="15" fill="rgb(207,159,16)" fg:x="121178" fg:w="304"/><text x="25.4792%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (153 samples, 0.03%)</title><rect x="25.3383%" y="213" width="0.0319%" height="15" fill="rgb(238,163,47)" fg:x="121702" fg:w="153"/><text x="25.5883%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (115 samples, 0.02%)</title><rect x="25.3462%" y="197" width="0.0239%" height="15" fill="rgb(219,91,49)" fg:x="121740" fg:w="115"/><text x="25.5962%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (113 samples, 0.02%)</title><rect x="25.3467%" y="181" width="0.0235%" height="15" fill="rgb(227,167,31)" fg:x="121742" fg:w="113"/><text x="25.5967%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.02%)</title><rect x="25.3469%" y="165" width="0.0233%" height="15" fill="rgb(234,80,54)" fg:x="121743" fg:w="112"/><text x="25.5969%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (106 samples, 0.02%)</title><rect x="25.3481%" y="149" width="0.0221%" height="15" fill="rgb(212,114,2)" fg:x="121749" fg:w="106"/><text x="25.5981%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (105 samples, 0.02%)</title><rect x="25.3483%" y="133" width="0.0219%" height="15" fill="rgb(234,50,24)" fg:x="121750" fg:w="105"/><text x="25.5983%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (85 samples, 0.02%)</title><rect x="25.3525%" y="117" width="0.0177%" height="15" fill="rgb(221,68,8)" fg:x="121770" fg:w="85"/><text x="25.6025%" y="127.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (85 samples, 0.02%)</title><rect x="25.3525%" y="101" width="0.0177%" height="15" fill="rgb(254,180,31)" fg:x="121770" fg:w="85"/><text x="25.6025%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (84 samples, 0.02%)</title><rect x="25.3527%" y="85" width="0.0175%" height="15" fill="rgb(247,130,50)" fg:x="121771" fg:w="84"/><text x="25.6027%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (219 samples, 0.05%)</title><rect x="25.3248%" y="229" width="0.0456%" height="15" fill="rgb(211,109,4)" fg:x="121637" fg:w="219"/><text x="25.5748%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (255 samples, 0.05%)</title><rect x="25.3185%" y="245" width="0.0531%" height="15" fill="rgb(238,50,21)" fg:x="121607" fg:w="255"/><text x="25.5685%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (307 samples, 0.06%)</title><rect x="25.3098%" y="261" width="0.0639%" height="15" fill="rgb(225,57,45)" fg:x="121565" fg:w="307"/><text x="25.5598%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (336 samples, 0.07%)</title><rect x="25.3042%" y="293" width="0.0700%" height="15" fill="rgb(209,196,50)" fg:x="121538" fg:w="336"/><text x="25.5542%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (330 samples, 0.07%)</title><rect x="25.3054%" y="277" width="0.0687%" height="15" fill="rgb(242,140,13)" fg:x="121544" fg:w="330"/><text x="25.5554%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (769 samples, 0.16%)</title><rect x="25.2147%" y="309" width="0.1601%" height="15" fill="rgb(217,111,7)" fg:x="121108" fg:w="769"/><text x="25.4647%" y="319.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (932 samples, 0.19%)</title><rect x="25.1865%" y="325" width="0.1940%" height="15" fill="rgb(253,193,51)" fg:x="120973" fg:w="932"/><text x="25.4365%" y="335.50"></text></g><g><title>cshook_security_inode_free_security (88 samples, 0.02%)</title><rect x="25.4653%" y="181" width="0.0183%" height="15" fill="rgb(252,70,29)" fg:x="122312" fg:w="88"/><text x="25.7153%" y="191.50"></text></g><g><title>_ZdlPv (168 samples, 0.03%)</title><rect x="25.4537%" y="197" width="0.0350%" height="15" fill="rgb(232,127,12)" fg:x="122256" fg:w="168"/><text x="25.7037%" y="207.50"></text></g><g><title>_ZdlPv (237 samples, 0.05%)</title><rect x="25.4497%" y="213" width="0.0493%" height="15" fill="rgb(211,180,21)" fg:x="122237" fg:w="237"/><text x="25.6997%" y="223.50"></text></g><g><title>_ZdlPv (308 samples, 0.06%)</title><rect x="25.4416%" y="229" width="0.0641%" height="15" fill="rgb(229,72,13)" fg:x="122198" fg:w="308"/><text x="25.6916%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (75 samples, 0.02%)</title><rect x="25.5228%" y="197" width="0.0156%" height="15" fill="rgb(240,211,49)" fg:x="122588" fg:w="75"/><text x="25.7728%" y="207.50"></text></g><g><title>_ZdlPv (59 samples, 0.01%)</title><rect x="25.5261%" y="181" width="0.0123%" height="15" fill="rgb(219,149,40)" fg:x="122604" fg:w="59"/><text x="25.7761%" y="191.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (178 samples, 0.04%)</title><rect x="25.5126%" y="213" width="0.0371%" height="15" fill="rgb(210,127,46)" fg:x="122539" fg:w="178"/><text x="25.7626%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (54 samples, 0.01%)</title><rect x="25.5384%" y="197" width="0.0112%" height="15" fill="rgb(220,106,7)" fg:x="122663" fg:w="54"/><text x="25.7884%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (215 samples, 0.04%)</title><rect x="25.5059%" y="229" width="0.0448%" height="15" fill="rgb(249,31,22)" fg:x="122507" fg:w="215"/><text x="25.7559%" y="239.50"></text></g><g><title>_ZdlPv (577 samples, 0.12%)</title><rect x="25.4316%" y="245" width="0.1201%" height="15" fill="rgb(253,1,49)" fg:x="122150" fg:w="577"/><text x="25.6816%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (71 samples, 0.01%)</title><rect x="25.5524%" y="245" width="0.0148%" height="15" fill="rgb(227,144,33)" fg:x="122730" fg:w="71"/><text x="25.8024%" y="255.50"></text></g><g><title>_ZdlPv (686 samples, 0.14%)</title><rect x="25.4251%" y="261" width="0.1428%" height="15" fill="rgb(249,163,44)" fg:x="122119" fg:w="686"/><text x="25.6751%" y="271.50"></text></g><g><title>cshook_security_inode_free_security (79 samples, 0.02%)</title><rect x="25.5721%" y="261" width="0.0164%" height="15" fill="rgb(234,15,39)" fg:x="122825" fg:w="79"/><text x="25.8221%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (50 samples, 0.01%)</title><rect x="25.5886%" y="261" width="0.0104%" height="15" fill="rgb(207,66,16)" fg:x="122904" fg:w="50"/><text x="25.8386%" y="271.50"></text></g><g><title>_ZdlPv (889 samples, 0.19%)</title><rect x="25.4145%" y="277" width="0.1851%" height="15" fill="rgb(233,112,24)" fg:x="122068" fg:w="889"/><text x="25.6645%" y="287.50"></text></g><g><title>_ZdlPv (958 samples, 0.20%)</title><rect x="25.4077%" y="293" width="0.1995%" height="15" fill="rgb(230,90,22)" fg:x="122035" fg:w="958"/><text x="25.6577%" y="303.50"></text></g><g><title>_ZdlPv (1,070 samples, 0.22%)</title><rect x="25.3922%" y="309" width="0.2228%" height="15" fill="rgb(229,61,13)" fg:x="121961" fg:w="1070"/><text x="25.6422%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (108 samples, 0.02%)</title><rect x="25.6156%" y="309" width="0.0225%" height="15" fill="rgb(225,57,24)" fg:x="123034" fg:w="108"/><text x="25.8656%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (92 samples, 0.02%)</title><rect x="25.6190%" y="293" width="0.0192%" height="15" fill="rgb(208,169,48)" fg:x="123050" fg:w="92"/><text x="25.8690%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.01%)</title><rect x="25.6267%" y="277" width="0.0115%" height="15" fill="rgb(244,218,51)" fg:x="123087" fg:w="55"/><text x="25.8767%" y="287.50"></text></g><g><title>cshook_security_inode_free_security (52 samples, 0.01%)</title><rect x="25.6381%" y="309" width="0.0108%" height="15" fill="rgb(214,148,10)" fg:x="123142" fg:w="52"/><text x="25.8881%" y="319.50"></text></g><g><title>_ZdlPv (1,271 samples, 0.26%)</title><rect x="25.3845%" y="325" width="0.2646%" height="15" fill="rgb(225,174,27)" fg:x="121924" fg:w="1271"/><text x="25.6345%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (56 samples, 0.01%)</title><rect x="25.6502%" y="325" width="0.0117%" height="15" fill="rgb(230,96,26)" fg:x="123200" fg:w="56"/><text x="25.9002%" y="335.50"></text></g><g><title>_ZdlPv (107 samples, 0.02%)</title><rect x="25.6775%" y="293" width="0.0223%" height="15" fill="rgb(232,10,30)" fg:x="123331" fg:w="107"/><text x="25.9275%" y="303.50"></text></g><g><title>_ZdlPv (131 samples, 0.03%)</title><rect x="25.6760%" y="309" width="0.0273%" height="15" fill="rgb(222,8,50)" fg:x="123324" fg:w="131"/><text x="25.9260%" y="319.50"></text></g><g><title>__vfree (50 samples, 0.01%)</title><rect x="25.7279%" y="261" width="0.0104%" height="15" fill="rgb(213,81,27)" fg:x="123573" fg:w="50"/><text x="25.9779%" y="271.50"></text></g><g><title>[[falcon_kal]] (84 samples, 0.02%)</title><rect x="25.7210%" y="293" width="0.0175%" height="15" fill="rgb(245,50,10)" fg:x="123540" fg:w="84"/><text x="25.9710%" y="303.50"></text></g><g><title>vfree (51 samples, 0.01%)</title><rect x="25.7279%" y="277" width="0.0106%" height="15" fill="rgb(216,100,18)" fg:x="123573" fg:w="51"/><text x="25.9779%" y="287.50"></text></g><g><title>_ZdlPv (69 samples, 0.01%)</title><rect x="25.7429%" y="277" width="0.0144%" height="15" fill="rgb(236,147,54)" fg:x="123645" fg:w="69"/><text x="25.9929%" y="287.50"></text></g><g><title>_ZdlPv (106 samples, 0.02%)</title><rect x="25.7385%" y="293" width="0.0221%" height="15" fill="rgb(205,143,26)" fg:x="123624" fg:w="106"/><text x="25.9885%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (51 samples, 0.01%)</title><rect x="25.7733%" y="277" width="0.0106%" height="15" fill="rgb(236,26,9)" fg:x="123791" fg:w="51"/><text x="26.0233%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (120 samples, 0.02%)</title><rect x="25.7608%" y="293" width="0.0250%" height="15" fill="rgb(221,165,53)" fg:x="123731" fg:w="120"/><text x="26.0108%" y="303.50"></text></g><g><title>_ZdlPv (73 samples, 0.02%)</title><rect x="25.8172%" y="261" width="0.0152%" height="15" fill="rgb(214,110,17)" fg:x="124002" fg:w="73"/><text x="26.0672%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.01%)</title><rect x="25.8209%" y="245" width="0.0115%" height="15" fill="rgb(237,197,12)" fg:x="124020" fg:w="55"/><text x="26.0709%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (49 samples, 0.01%)</title><rect x="25.8222%" y="229" width="0.0102%" height="15" fill="rgb(205,84,17)" fg:x="124026" fg:w="49"/><text x="26.0722%" y="239.50"></text></g><g><title>_ZdlPv (143 samples, 0.03%)</title><rect x="25.8141%" y="277" width="0.0298%" height="15" fill="rgb(237,18,45)" fg:x="123987" fg:w="143"/><text x="26.0641%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (54 samples, 0.01%)</title><rect x="25.8326%" y="261" width="0.0112%" height="15" fill="rgb(221,87,14)" fg:x="124076" fg:w="54"/><text x="26.0826%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (58 samples, 0.01%)</title><rect x="25.8732%" y="245" width="0.0121%" height="15" fill="rgb(238,186,15)" fg:x="124271" fg:w="58"/><text x="26.1232%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (149 samples, 0.03%)</title><rect x="25.8545%" y="261" width="0.0310%" height="15" fill="rgb(208,115,11)" fg:x="124181" fg:w="149"/><text x="26.1045%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (203 samples, 0.04%)</title><rect x="25.8440%" y="277" width="0.0423%" height="15" fill="rgb(254,175,0)" fg:x="124131" fg:w="203"/><text x="26.0940%" y="287.50"></text></g><g><title>alloc_vmap_area (49 samples, 0.01%)</title><rect x="25.9127%" y="181" width="0.0102%" height="15" fill="rgb(227,24,42)" fg:x="124461" fg:w="49"/><text x="26.1627%" y="191.50"></text></g><g><title>__get_vm_area_node.constprop.0 (55 samples, 0.01%)</title><rect x="25.9121%" y="197" width="0.0115%" height="15" fill="rgb(223,211,37)" fg:x="124458" fg:w="55"/><text x="26.1621%" y="207.50"></text></g><g><title>alloc_pages (57 samples, 0.01%)</title><rect x="25.9244%" y="181" width="0.0119%" height="15" fill="rgb(235,49,27)" fg:x="124517" fg:w="57"/><text x="26.1744%" y="191.50"></text></g><g><title>__alloc_pages (55 samples, 0.01%)</title><rect x="25.9248%" y="165" width="0.0115%" height="15" fill="rgb(254,97,51)" fg:x="124519" fg:w="55"/><text x="26.1748%" y="175.50"></text></g><g><title>[[falcon_kal]] (153 samples, 0.03%)</title><rect x="25.9053%" y="261" width="0.0319%" height="15" fill="rgb(249,51,40)" fg:x="124425" fg:w="153"/><text x="26.1553%" y="271.50"></text></g><g><title>vmalloc (120 samples, 0.02%)</title><rect x="25.9121%" y="245" width="0.0250%" height="15" fill="rgb(210,128,45)" fg:x="124458" fg:w="120"/><text x="26.1621%" y="255.50"></text></g><g><title>__vmalloc_node (120 samples, 0.02%)</title><rect x="25.9121%" y="229" width="0.0250%" height="15" fill="rgb(224,137,50)" fg:x="124458" fg:w="120"/><text x="26.1621%" y="239.50"></text></g><g><title>__vmalloc_node_range (120 samples, 0.02%)</title><rect x="25.9121%" y="213" width="0.0250%" height="15" fill="rgb(242,15,9)" fg:x="124458" fg:w="120"/><text x="26.1621%" y="223.50"></text></g><g><title>__vmalloc_area_node.constprop.0 (65 samples, 0.01%)</title><rect x="25.9236%" y="197" width="0.0135%" height="15" fill="rgb(233,187,41)" fg:x="124513" fg:w="65"/><text x="26.1736%" y="207.50"></text></g><g><title>__kmalloc (52 samples, 0.01%)</title><rect x="25.9998%" y="213" width="0.0108%" height="15" fill="rgb(227,2,29)" fg:x="124879" fg:w="52"/><text x="26.2498%" y="223.50"></text></g><g><title>[[falcon_kal]] (65 samples, 0.01%)</title><rect x="25.9996%" y="229" width="0.0135%" height="15" fill="rgb(222,70,3)" fg:x="124878" fg:w="65"/><text x="26.2496%" y="239.50"></text></g><g><title>__kmalloc (54 samples, 0.01%)</title><rect x="26.0404%" y="197" width="0.0112%" height="15" fill="rgb(213,11,42)" fg:x="125074" fg:w="54"/><text x="26.2904%" y="207.50"></text></g><g><title>[[falcon_kal]] (75 samples, 0.02%)</title><rect x="26.0402%" y="213" width="0.0156%" height="15" fill="rgb(225,150,9)" fg:x="125073" fg:w="75"/><text x="26.2902%" y="223.50"></text></g><g><title>__kmalloc (53 samples, 0.01%)</title><rect x="26.0860%" y="181" width="0.0110%" height="15" fill="rgb(230,162,45)" fg:x="125293" fg:w="53"/><text x="26.3360%" y="191.50"></text></g><g><title>[[falcon_kal]] (79 samples, 0.02%)</title><rect x="26.0851%" y="197" width="0.0164%" height="15" fill="rgb(222,14,52)" fg:x="125289" fg:w="79"/><text x="26.3351%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (133 samples, 0.03%)</title><rect x="26.1676%" y="149" width="0.0277%" height="15" fill="rgb(254,198,14)" fg:x="125685" fg:w="133"/><text x="26.4176%" y="159.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (130 samples, 0.03%)</title><rect x="26.1682%" y="133" width="0.0271%" height="15" fill="rgb(220,217,30)" fg:x="125688" fg:w="130"/><text x="26.4182%" y="143.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (271 samples, 0.06%)</title><rect x="26.2065%" y="117" width="0.0564%" height="15" fill="rgb(215,146,41)" fg:x="125872" fg:w="271"/><text x="26.4565%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (92 samples, 0.02%)</title><rect x="26.2438%" y="101" width="0.0192%" height="15" fill="rgb(217,27,36)" fg:x="126051" fg:w="92"/><text x="26.4938%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (85 samples, 0.02%)</title><rect x="26.2452%" y="85" width="0.0177%" height="15" fill="rgb(219,218,39)" fg:x="126058" fg:w="85"/><text x="26.4952%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (82 samples, 0.02%)</title><rect x="26.2459%" y="69" width="0.0171%" height="15" fill="rgb(219,4,42)" fg:x="126061" fg:w="82"/><text x="26.4959%" y="79.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (79 samples, 0.02%)</title><rect x="26.2465%" y="53" width="0.0164%" height="15" fill="rgb(249,119,36)" fg:x="126064" fg:w="79"/><text x="26.4965%" y="63.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (275 samples, 0.06%)</title><rect x="26.2059%" y="133" width="0.0573%" height="15" fill="rgb(209,23,33)" fg:x="125869" fg:w="275"/><text x="26.4559%" y="143.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (286 samples, 0.06%)</title><rect x="26.2856%" y="101" width="0.0595%" height="15" fill="rgb(211,10,0)" fg:x="126252" fg:w="286"/><text x="26.5356%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (274 samples, 0.06%)</title><rect x="26.2881%" y="85" width="0.0570%" height="15" fill="rgb(208,99,37)" fg:x="126264" fg:w="274"/><text x="26.5381%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (446 samples, 0.09%)</title><rect x="26.2773%" y="117" width="0.0929%" height="15" fill="rgb(213,132,31)" fg:x="126212" fg:w="446"/><text x="26.5273%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (120 samples, 0.02%)</title><rect x="26.3452%" y="101" width="0.0250%" height="15" fill="rgb(243,129,40)" fg:x="126538" fg:w="120"/><text x="26.5952%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (111 samples, 0.02%)</title><rect x="26.3471%" y="85" width="0.0231%" height="15" fill="rgb(210,66,33)" fg:x="126547" fg:w="111"/><text x="26.5971%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (104 samples, 0.02%)</title><rect x="26.3485%" y="69" width="0.0217%" height="15" fill="rgb(209,189,4)" fg:x="126554" fg:w="104"/><text x="26.5985%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (515 samples, 0.11%)</title><rect x="26.2631%" y="133" width="0.1072%" height="15" fill="rgb(214,107,37)" fg:x="126144" fg:w="515"/><text x="26.5131%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (854 samples, 0.18%)</title><rect x="26.1953%" y="149" width="0.1778%" height="15" fill="rgb(245,88,54)" fg:x="125818" fg:w="854"/><text x="26.4453%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,058 samples, 0.22%)</title><rect x="26.1530%" y="165" width="0.2203%" height="15" fill="rgb(205,146,20)" fg:x="125615" fg:w="1058"/><text x="26.4030%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,136 samples, 0.24%)</title><rect x="26.1386%" y="181" width="0.2365%" height="15" fill="rgb(220,161,25)" fg:x="125546" fg:w="1136"/><text x="26.3886%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,258 samples, 0.26%)</title><rect x="26.1166%" y="197" width="0.2619%" height="15" fill="rgb(215,152,15)" fg:x="125440" fg:w="1258"/><text x="26.3666%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,510 samples, 0.31%)</title><rect x="26.0654%" y="213" width="0.3144%" height="15" fill="rgb(233,192,44)" fg:x="125194" fg:w="1510"/><text x="26.3154%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,754 samples, 0.37%)</title><rect x="26.0168%" y="229" width="0.3652%" height="15" fill="rgb(240,170,46)" fg:x="124961" fg:w="1754"/><text x="26.2668%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,989 samples, 0.41%)</title><rect x="25.9779%" y="245" width="0.4141%" height="15" fill="rgb(207,104,33)" fg:x="124774" fg:w="1989"/><text x="26.2279%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,167 samples, 0.45%)</title><rect x="25.9490%" y="261" width="0.4512%" height="15" fill="rgb(219,21,39)" fg:x="124635" fg:w="2167"/><text x="26.1990%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,481 samples, 0.52%)</title><rect x="25.8863%" y="277" width="0.5165%" height="15" fill="rgb(214,133,29)" fg:x="124334" fg:w="2481"/><text x="26.1363%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (3,050 samples, 0.64%)</title><rect x="25.7857%" y="293" width="0.6350%" height="15" fill="rgb(226,93,6)" fg:x="123851" fg:w="3050"/><text x="26.0357%" y="303.50"></text></g><g><title>memcmp (85 samples, 0.02%)</title><rect x="26.4031%" y="277" width="0.0177%" height="15" fill="rgb(252,222,34)" fg:x="126816" fg:w="85"/><text x="26.6531%" y="287.50"></text></g><g><title>memcmp (73 samples, 0.02%)</title><rect x="26.4208%" y="293" width="0.0152%" height="15" fill="rgb(252,92,48)" fg:x="126901" fg:w="73"/><text x="26.6708%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (3,504 samples, 0.73%)</title><rect x="25.7081%" y="309" width="0.7295%" height="15" fill="rgb(245,223,24)" fg:x="123478" fg:w="3504"/><text x="25.9581%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (3,720 samples, 0.77%)</title><rect x="25.6637%" y="325" width="0.7745%" height="15" fill="rgb(205,176,3)" fg:x="123265" fg:w="3720"/><text x="25.9137%" y="335.50"></text></g><g><title>_ZdlPv (6,199 samples, 1.29%)</title><rect x="25.1487%" y="341" width="1.2906%" height="15" fill="rgb(235,151,15)" fg:x="120791" fg:w="6199"/><text x="25.3987%" y="351.50"></text></g><g><title>_ZdlPv (6,283 samples, 1.31%)</title><rect x="25.1385%" y="357" width="1.3081%" height="15" fill="rgb(237,209,11)" fg:x="120742" fg:w="6283"/><text x="25.3885%" y="367.50"></text></g><g><title>_ZdlPv (6,287 samples, 1.31%)</title><rect x="25.1378%" y="373" width="1.3090%" height="15" fill="rgb(243,227,24)" fg:x="120739" fg:w="6287"/><text x="25.3878%" y="383.50"></text></g><g><title>cshook_security_inode_free_security (93 samples, 0.02%)</title><rect x="26.4487%" y="373" width="0.0194%" height="15" fill="rgb(239,193,16)" fg:x="127035" fg:w="93"/><text x="26.6987%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (92 samples, 0.02%)</title><rect x="26.4489%" y="357" width="0.0192%" height="15" fill="rgb(231,27,9)" fg:x="127036" fg:w="92"/><text x="26.6989%" y="367.50"></text></g><g><title>_ZdlPv (49 samples, 0.01%)</title><rect x="26.5190%" y="245" width="0.0102%" height="15" fill="rgb(219,169,10)" fg:x="127373" fg:w="49"/><text x="26.7690%" y="255.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (58 samples, 0.01%)</title><rect x="26.5174%" y="261" width="0.0121%" height="15" fill="rgb(244,229,43)" fg:x="127365" fg:w="58"/><text x="26.7674%" y="271.50"></text></g><g><title>_ZdlPv (60 samples, 0.01%)</title><rect x="26.5296%" y="245" width="0.0125%" height="15" fill="rgb(254,38,20)" fg:x="127424" fg:w="60"/><text x="26.7796%" y="255.50"></text></g><g><title>_ZdlPv (73 samples, 0.02%)</title><rect x="26.5294%" y="261" width="0.0152%" height="15" fill="rgb(250,47,30)" fg:x="127423" fg:w="73"/><text x="26.7794%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (108 samples, 0.02%)</title><rect x="26.5952%" y="101" width="0.0225%" height="15" fill="rgb(224,124,36)" fg:x="127739" fg:w="108"/><text x="26.8452%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (91 samples, 0.02%)</title><rect x="26.5988%" y="85" width="0.0189%" height="15" fill="rgb(246,68,51)" fg:x="127756" fg:w="91"/><text x="26.8488%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (86 samples, 0.02%)</title><rect x="26.5998%" y="69" width="0.0179%" height="15" fill="rgb(253,43,49)" fg:x="127761" fg:w="86"/><text x="26.8498%" y="79.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (85 samples, 0.02%)</title><rect x="26.6000%" y="53" width="0.0177%" height="15" fill="rgb(219,54,36)" fg:x="127762" fg:w="85"/><text x="26.8500%" y="63.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (243 samples, 0.05%)</title><rect x="26.5673%" y="197" width="0.0506%" height="15" fill="rgb(227,133,34)" fg:x="127605" fg:w="243"/><text x="26.8173%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (177 samples, 0.04%)</title><rect x="26.5811%" y="181" width="0.0369%" height="15" fill="rgb(247,227,15)" fg:x="127671" fg:w="177"/><text x="26.8311%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (126 samples, 0.03%)</title><rect x="26.5917%" y="165" width="0.0262%" height="15" fill="rgb(229,96,14)" fg:x="127722" fg:w="126"/><text x="26.8417%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (120 samples, 0.02%)</title><rect x="26.5929%" y="149" width="0.0250%" height="15" fill="rgb(220,79,17)" fg:x="127728" fg:w="120"/><text x="26.8429%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.02%)</title><rect x="26.5936%" y="133" width="0.0244%" height="15" fill="rgb(205,131,53)" fg:x="127731" fg:w="117"/><text x="26.8436%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.02%)</title><rect x="26.5946%" y="117" width="0.0233%" height="15" fill="rgb(209,50,29)" fg:x="127736" fg:w="112"/><text x="26.8446%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (274 samples, 0.06%)</title><rect x="26.5627%" y="213" width="0.0570%" height="15" fill="rgb(245,86,46)" fg:x="127583" fg:w="274"/><text x="26.8127%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (352 samples, 0.07%)</title><rect x="26.5492%" y="229" width="0.0733%" height="15" fill="rgb(235,66,46)" fg:x="127518" fg:w="352"/><text x="26.7992%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (557 samples, 0.12%)</title><rect x="26.5099%" y="277" width="0.1160%" height="15" fill="rgb(232,148,31)" fg:x="127329" fg:w="557"/><text x="26.7599%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (388 samples, 0.08%)</title><rect x="26.5451%" y="261" width="0.0808%" height="15" fill="rgb(217,149,8)" fg:x="127498" fg:w="388"/><text x="26.7951%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (383 samples, 0.08%)</title><rect x="26.5461%" y="245" width="0.0797%" height="15" fill="rgb(209,183,11)" fg:x="127503" fg:w="383"/><text x="26.7961%" y="255.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (607 samples, 0.13%)</title><rect x="26.5009%" y="293" width="0.1264%" height="15" fill="rgb(208,55,20)" fg:x="127286" fg:w="607"/><text x="26.7509%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (61 samples, 0.01%)</title><rect x="26.6598%" y="197" width="0.0127%" height="15" fill="rgb(218,39,14)" fg:x="128049" fg:w="61"/><text x="26.9098%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (60 samples, 0.01%)</title><rect x="26.6600%" y="181" width="0.0125%" height="15" fill="rgb(216,169,33)" fg:x="128050" fg:w="60"/><text x="26.9100%" y="191.50"></text></g><g><title>_ZdlPv (104 samples, 0.02%)</title><rect x="26.6527%" y="213" width="0.0217%" height="15" fill="rgb(233,80,24)" fg:x="128015" fg:w="104"/><text x="26.9027%" y="223.50"></text></g><g><title>_ZdlPv (171 samples, 0.04%)</title><rect x="26.6500%" y="229" width="0.0356%" height="15" fill="rgb(213,179,31)" fg:x="128002" fg:w="171"/><text x="26.9000%" y="239.50"></text></g><g><title>cshook_security_inode_free_security (59 samples, 0.01%)</title><rect x="26.6868%" y="229" width="0.0123%" height="15" fill="rgb(209,19,5)" fg:x="128179" fg:w="59"/><text x="26.9368%" y="239.50"></text></g><g><title>_ZdlPv (316 samples, 0.07%)</title><rect x="26.6431%" y="245" width="0.0658%" height="15" fill="rgb(219,18,35)" fg:x="127969" fg:w="316"/><text x="26.8931%" y="255.50"></text></g><g><title>_ZdlPv (393 samples, 0.08%)</title><rect x="26.6369%" y="261" width="0.0818%" height="15" fill="rgb(209,169,16)" fg:x="127939" fg:w="393"/><text x="26.8869%" y="271.50"></text></g><g><title>_ZdlPv (458 samples, 0.10%)</title><rect x="26.6315%" y="277" width="0.0954%" height="15" fill="rgb(245,90,51)" fg:x="127913" fg:w="458"/><text x="26.8815%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (49 samples, 0.01%)</title><rect x="26.7268%" y="277" width="0.0102%" height="15" fill="rgb(220,99,45)" fg:x="128371" fg:w="49"/><text x="26.9768%" y="287.50"></text></g><g><title>_ZdlPv (556 samples, 0.12%)</title><rect x="26.6275%" y="293" width="0.1158%" height="15" fill="rgb(249,89,25)" fg:x="127894" fg:w="556"/><text x="26.8775%" y="303.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="26.7657%" y="277" width="0.0108%" height="15" fill="rgb(239,193,0)" fg:x="128558" fg:w="52"/><text x="27.0157%" y="287.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="26.7930%" y="165" width="0.0167%" height="15" fill="rgb(231,126,1)" fg:x="128689" fg:w="80"/><text x="27.0430%" y="175.50"></text></g><g><title>x86_pmu_enable (79 samples, 0.02%)</title><rect x="26.7932%" y="149" width="0.0164%" height="15" fill="rgb(243,166,3)" fg:x="128690" fg:w="79"/><text x="27.0432%" y="159.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.02%)</title><rect x="26.7932%" y="133" width="0.0164%" height="15" fill="rgb(223,22,34)" fg:x="128690" fg:w="79"/><text x="27.0432%" y="143.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="26.7934%" y="117" width="0.0162%" height="15" fill="rgb(251,52,51)" fg:x="128691" fg:w="78"/><text x="27.0434%" y="127.50"></text></g><g><title>finish_task_switch.isra.0 (86 samples, 0.02%)</title><rect x="26.7926%" y="181" width="0.0179%" height="15" fill="rgb(221,165,28)" fg:x="128687" fg:w="86"/><text x="27.0426%" y="191.50"></text></g><g><title>down_write (96 samples, 0.02%)</title><rect x="26.7907%" y="245" width="0.0200%" height="15" fill="rgb(218,121,47)" fg:x="128678" fg:w="96"/><text x="27.0407%" y="255.50"></text></g><g><title>rwsem_down_write_slowpath (96 samples, 0.02%)</title><rect x="26.7907%" y="229" width="0.0200%" height="15" fill="rgb(209,120,9)" fg:x="128678" fg:w="96"/><text x="27.0407%" y="239.50"></text></g><g><title>schedule (89 samples, 0.02%)</title><rect x="26.7922%" y="213" width="0.0185%" height="15" fill="rgb(236,68,12)" fg:x="128685" fg:w="89"/><text x="27.0422%" y="223.50"></text></g><g><title>__schedule (88 samples, 0.02%)</title><rect x="26.7924%" y="197" width="0.0183%" height="15" fill="rgb(225,194,26)" fg:x="128686" fg:w="88"/><text x="27.0424%" y="207.50"></text></g><g><title>[[falcon_kal]] (134 samples, 0.03%)</title><rect x="26.7839%" y="261" width="0.0279%" height="15" fill="rgb(231,84,39)" fg:x="128645" fg:w="134"/><text x="27.0339%" y="271.50"></text></g><g><title>_ZdlPv (71 samples, 0.01%)</title><rect x="26.8118%" y="261" width="0.0148%" height="15" fill="rgb(210,11,45)" fg:x="128779" fg:w="71"/><text x="27.0618%" y="271.50"></text></g><g><title>[[falcon_lsm_serviceable]] (67 samples, 0.01%)</title><rect x="26.8596%" y="181" width="0.0139%" height="15" fill="rgb(224,54,52)" fg:x="129009" fg:w="67"/><text x="27.1096%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (66 samples, 0.01%)</title><rect x="26.8598%" y="165" width="0.0137%" height="15" fill="rgb(238,102,14)" fg:x="129010" fg:w="66"/><text x="27.1098%" y="175.50"></text></g><g><title>[[falcon_kal]] (53 samples, 0.01%)</title><rect x="26.8626%" y="149" width="0.0110%" height="15" fill="rgb(243,160,52)" fg:x="129023" fg:w="53"/><text x="27.1126%" y="159.50"></text></g><g><title>_ZdlPv (90 samples, 0.02%)</title><rect x="26.8565%" y="229" width="0.0187%" height="15" fill="rgb(216,114,19)" fg:x="128994" fg:w="90"/><text x="27.1065%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (83 samples, 0.02%)</title><rect x="26.8580%" y="213" width="0.0173%" height="15" fill="rgb(244,166,37)" fg:x="129001" fg:w="83"/><text x="27.1080%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (76 samples, 0.02%)</title><rect x="26.8594%" y="197" width="0.0158%" height="15" fill="rgb(246,29,44)" fg:x="129008" fg:w="76"/><text x="27.1094%" y="207.50"></text></g><g><title>_ZdlPv (145 samples, 0.03%)</title><rect x="26.8546%" y="245" width="0.0302%" height="15" fill="rgb(215,56,53)" fg:x="128985" fg:w="145"/><text x="27.1046%" y="255.50"></text></g><g><title>[[falcon_kal]] (58 samples, 0.01%)</title><rect x="26.9517%" y="197" width="0.0121%" height="15" fill="rgb(217,60,2)" fg:x="129451" fg:w="58"/><text x="27.2017%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (63 samples, 0.01%)</title><rect x="27.0964%" y="101" width="0.0131%" height="15" fill="rgb(207,26,24)" fg:x="130146" fg:w="63"/><text x="27.3464%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (64 samples, 0.01%)</title><rect x="27.0964%" y="117" width="0.0133%" height="15" fill="rgb(252,210,15)" fg:x="130146" fg:w="64"/><text x="27.3464%" y="127.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (81 samples, 0.02%)</title><rect x="27.1386%" y="53" width="0.0169%" height="15" fill="rgb(253,209,26)" fg:x="130349" fg:w="81"/><text x="27.3886%" y="63.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (72 samples, 0.01%)</title><rect x="27.1405%" y="37" width="0.0150%" height="15" fill="rgb(238,170,14)" fg:x="130358" fg:w="72"/><text x="27.3905%" y="47.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (100 samples, 0.02%)</title><rect x="27.1368%" y="69" width="0.0208%" height="15" fill="rgb(216,178,15)" fg:x="130340" fg:w="100"/><text x="27.3868%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (160 samples, 0.03%)</title><rect x="27.1247%" y="85" width="0.0333%" height="15" fill="rgb(250,197,2)" fg:x="130282" fg:w="160"/><text x="27.3747%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (346 samples, 0.07%)</title><rect x="27.0862%" y="133" width="0.0720%" height="15" fill="rgb(212,70,42)" fg:x="130097" fg:w="346"/><text x="27.3362%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (233 samples, 0.05%)</title><rect x="27.1097%" y="117" width="0.0485%" height="15" fill="rgb(227,213,9)" fg:x="130210" fg:w="233"/><text x="27.3597%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (184 samples, 0.04%)</title><rect x="27.1199%" y="101" width="0.0383%" height="15" fill="rgb(245,99,25)" fg:x="130259" fg:w="184"/><text x="27.3699%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (431 samples, 0.09%)</title><rect x="27.0716%" y="149" width="0.0897%" height="15" fill="rgb(250,82,29)" fg:x="130027" fg:w="431"/><text x="27.3216%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (607 samples, 0.13%)</title><rect x="27.0364%" y="165" width="0.1264%" height="15" fill="rgb(241,226,54)" fg:x="129858" fg:w="607"/><text x="27.2864%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (813 samples, 0.17%)</title><rect x="26.9952%" y="181" width="0.1693%" height="15" fill="rgb(221,99,41)" fg:x="129660" fg:w="813"/><text x="27.2452%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (996 samples, 0.21%)</title><rect x="26.9646%" y="197" width="0.2074%" height="15" fill="rgb(213,90,21)" fg:x="129513" fg:w="996"/><text x="27.2146%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,167 samples, 0.24%)</title><rect x="26.9383%" y="213" width="0.2430%" height="15" fill="rgb(205,208,24)" fg:x="129387" fg:w="1167"/><text x="27.1883%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,259 samples, 0.26%)</title><rect x="26.9215%" y="229" width="0.2621%" height="15" fill="rgb(246,31,12)" fg:x="129306" fg:w="1259"/><text x="27.1715%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,395 samples, 0.29%)</title><rect x="26.8936%" y="245" width="0.2904%" height="15" fill="rgb(213,154,6)" fg:x="129172" fg:w="1395"/><text x="27.1436%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,689 samples, 0.35%)</title><rect x="26.8344%" y="261" width="0.3516%" height="15" fill="rgb(222,163,29)" fg:x="128888" fg:w="1689"/><text x="27.0844%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,975 samples, 0.41%)</title><rect x="26.7782%" y="277" width="0.4112%" height="15" fill="rgb(227,201,8)" fg:x="128618" fg:w="1975"/><text x="27.0282%" y="287.50"></text></g><g><title>_ZdlPv (3,430 samples, 0.71%)</title><rect x="26.4755%" y="309" width="0.7141%" height="15" fill="rgb(233,9,32)" fg:x="127164" fg:w="3430"/><text x="26.7255%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,084 samples, 0.43%)</title><rect x="26.7557%" y="293" width="0.4339%" height="15" fill="rgb(217,54,24)" fg:x="128510" fg:w="2084"/><text x="27.0057%" y="303.50"></text></g><g><title>_ZdlPv (3,468 samples, 0.72%)</title><rect x="26.4701%" y="325" width="0.7220%" height="15" fill="rgb(235,192,0)" fg:x="127138" fg:w="3468"/><text x="26.7201%" y="335.50"></text></g><g><title>_ZdlPv (3,477 samples, 0.72%)</title><rect x="26.4701%" y="341" width="0.7239%" height="15" fill="rgb(235,45,9)" fg:x="127138" fg:w="3477"/><text x="26.7201%" y="351.50"></text></g><g><title>_ZdlPv (3,483 samples, 0.73%)</title><rect x="26.4691%" y="357" width="0.7252%" height="15" fill="rgb(246,42,40)" fg:x="127133" fg:w="3483"/><text x="26.7191%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (89 samples, 0.02%)</title><rect x="27.1990%" y="325" width="0.0185%" height="15" fill="rgb(248,111,24)" fg:x="130639" fg:w="89"/><text x="27.4490%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (100 samples, 0.02%)</title><rect x="27.1969%" y="341" width="0.0208%" height="15" fill="rgb(249,65,22)" fg:x="130629" fg:w="100"/><text x="27.4469%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (117 samples, 0.02%)</title><rect x="27.1942%" y="357" width="0.0244%" height="15" fill="rgb(238,111,51)" fg:x="130616" fg:w="117"/><text x="27.4442%" y="367.50"></text></g><g><title>__perf_event_task_sched_in (151 samples, 0.03%)</title><rect x="27.2342%" y="229" width="0.0314%" height="15" fill="rgb(250,118,22)" fg:x="130808" fg:w="151"/><text x="27.4842%" y="239.50"></text></g><g><title>x86_pmu_enable (149 samples, 0.03%)</title><rect x="27.2346%" y="213" width="0.0310%" height="15" fill="rgb(234,84,26)" fg:x="130810" fg:w="149"/><text x="27.4846%" y="223.50"></text></g><g><title>intel_pmu_enable_all (148 samples, 0.03%)</title><rect x="27.2348%" y="197" width="0.0308%" height="15" fill="rgb(243,172,12)" fg:x="130811" fg:w="148"/><text x="27.4848%" y="207.50"></text></g><g><title>native_write_msr (148 samples, 0.03%)</title><rect x="27.2348%" y="181" width="0.0308%" height="15" fill="rgb(236,150,49)" fg:x="130811" fg:w="148"/><text x="27.4848%" y="191.50"></text></g><g><title>finish_task_switch.isra.0 (157 samples, 0.03%)</title><rect x="27.2340%" y="245" width="0.0327%" height="15" fill="rgb(225,197,26)" fg:x="130807" fg:w="157"/><text x="27.4840%" y="255.50"></text></g><g><title>down_write (163 samples, 0.03%)</title><rect x="27.2332%" y="309" width="0.0339%" height="15" fill="rgb(214,17,42)" fg:x="130803" fg:w="163"/><text x="27.4832%" y="319.50"></text></g><g><title>rwsem_down_write_slowpath (163 samples, 0.03%)</title><rect x="27.2332%" y="293" width="0.0339%" height="15" fill="rgb(224,165,40)" fg:x="130803" fg:w="163"/><text x="27.4832%" y="303.50"></text></g><g><title>schedule (160 samples, 0.03%)</title><rect x="27.2338%" y="277" width="0.0333%" height="15" fill="rgb(246,100,4)" fg:x="130806" fg:w="160"/><text x="27.4838%" y="287.50"></text></g><g><title>__schedule (159 samples, 0.03%)</title><rect x="27.2340%" y="261" width="0.0331%" height="15" fill="rgb(222,103,0)" fg:x="130807" fg:w="159"/><text x="27.4840%" y="271.50"></text></g><g><title>[[falcon_kal]] (220 samples, 0.05%)</title><rect x="27.2242%" y="325" width="0.0458%" height="15" fill="rgb(227,189,26)" fg:x="130760" fg:w="220"/><text x="27.4742%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (305 samples, 0.06%)</title><rect x="27.2223%" y="341" width="0.0635%" height="15" fill="rgb(214,202,17)" fg:x="130751" fg:w="305"/><text x="27.4723%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.01%)</title><rect x="27.2744%" y="325" width="0.0115%" height="15" fill="rgb(229,111,3)" fg:x="131001" fg:w="55"/><text x="27.5244%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (55 samples, 0.01%)</title><rect x="27.2744%" y="309" width="0.0115%" height="15" fill="rgb(229,172,15)" fg:x="131001" fg:w="55"/><text x="27.5244%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (324 samples, 0.07%)</title><rect x="27.2186%" y="357" width="0.0675%" height="15" fill="rgb(230,224,35)" fg:x="130733" fg:w="324"/><text x="27.4686%" y="367.50"></text></g><g><title>cshook_security_sb_free_security (3,935 samples, 0.82%)</title><rect x="26.4680%" y="373" width="0.8193%" height="15" fill="rgb(251,141,6)" fg:x="127128" fg:w="3935"/><text x="26.7180%" y="383.50"></text></g><g><title>cshook_security_sb_free_security (10,358 samples, 2.16%)</title><rect x="25.1339%" y="405" width="2.1565%" height="15" fill="rgb(225,208,6)" fg:x="120720" fg:w="10358"/><text x="25.3839%" y="415.50">c..</text></g><g><title>cshook_security_sb_free_security (10,348 samples, 2.15%)</title><rect x="25.1360%" y="389" width="2.1545%" height="15" fill="rgb(246,181,16)" fg:x="120730" fg:w="10348"/><text x="25.3860%" y="399.50">c..</text></g><g><title>cshook_security_file_permission (10,371 samples, 2.16%)</title><rect x="25.1314%" y="421" width="2.1592%" height="15" fill="rgb(227,129,36)" fg:x="120708" fg:w="10371"/><text x="25.3814%" y="431.50">c..</text></g><g><title>cshook_security_file_permission (10,515 samples, 2.19%)</title><rect x="25.1089%" y="437" width="2.1892%" height="15" fill="rgb(248,117,24)" fg:x="120600" fg:w="10515"/><text x="25.3589%" y="447.50">c..</text></g><g><title>pinnedhook_security_bprm_check_security (10,527 samples, 2.19%)</title><rect x="25.1070%" y="469" width="2.1917%" height="15" fill="rgb(214,185,35)" fg:x="120591" fg:w="10527"/><text x="25.3570%" y="479.50">p..</text></g><g><title>cshook_security_bprm_check_security (10,525 samples, 2.19%)</title><rect x="25.1074%" y="453" width="2.1913%" height="15" fill="rgb(236,150,34)" fg:x="120593" fg:w="10525"/><text x="25.3574%" y="463.50">c..</text></g><g><title>search_binary_handler (10,830 samples, 2.25%)</title><rect x="25.0441%" y="501" width="2.2548%" height="15" fill="rgb(243,228,27)" fg:x="120289" fg:w="10830"/><text x="25.2941%" y="511.50">s..</text></g><g><title>security_bprm_check (10,534 samples, 2.19%)</title><rect x="25.1058%" y="485" width="2.1932%" height="15" fill="rgb(245,77,44)" fg:x="120585" fg:w="10534"/><text x="25.3558%" y="495.50">s..</text></g><g><title>exec_binprm (10,840 samples, 2.26%)</title><rect x="25.0433%" y="517" width="2.2569%" height="15" fill="rgb(235,214,42)" fg:x="120285" fg:w="10840"/><text x="25.2933%" y="527.50">e..</text></g><g><title>__perf_event_task_sched_in (1,384 samples, 0.29%)</title><rect x="27.3179%" y="437" width="0.2881%" height="15" fill="rgb(221,74,3)" fg:x="131210" fg:w="1384"/><text x="27.5679%" y="447.50"></text></g><g><title>x86_pmu_enable (1,353 samples, 0.28%)</title><rect x="27.3243%" y="421" width="0.2817%" height="15" fill="rgb(206,121,29)" fg:x="131241" fg:w="1353"/><text x="27.5743%" y="431.50"></text></g><g><title>intel_pmu_enable_all (1,339 samples, 0.28%)</title><rect x="27.3273%" y="405" width="0.2788%" height="15" fill="rgb(249,131,53)" fg:x="131255" fg:w="1339"/><text x="27.5773%" y="415.50"></text></g><g><title>native_write_msr (1,332 samples, 0.28%)</title><rect x="27.3287%" y="389" width="0.2773%" height="15" fill="rgb(236,170,29)" fg:x="131262" fg:w="1332"/><text x="27.5787%" y="399.50"></text></g><g><title>finish_task_switch.isra.0 (1,472 samples, 0.31%)</title><rect x="27.3083%" y="453" width="0.3065%" height="15" fill="rgb(247,96,15)" fg:x="131164" fg:w="1472"/><text x="27.5583%" y="463.50"></text></g><g><title>__cond_resched (1,496 samples, 0.31%)</title><rect x="27.3050%" y="485" width="0.3115%" height="15" fill="rgb(211,210,7)" fg:x="131148" fg:w="1496"/><text x="27.5550%" y="495.50"></text></g><g><title>__schedule (1,492 samples, 0.31%)</title><rect x="27.3058%" y="469" width="0.3106%" height="15" fill="rgb(240,88,50)" fg:x="131152" fg:w="1492"/><text x="27.5558%" y="479.50"></text></g><g><title>stop_one_cpu (1,513 samples, 0.32%)</title><rect x="27.3033%" y="501" width="0.3150%" height="15" fill="rgb(209,229,26)" fg:x="131140" fg:w="1513"/><text x="27.5533%" y="511.50"></text></g><g><title>sched_exec (1,529 samples, 0.32%)</title><rect x="27.3002%" y="517" width="0.3183%" height="15" fill="rgb(210,68,23)" fg:x="131125" fg:w="1529"/><text x="27.5502%" y="527.50"></text></g><g><title>aa_dfa_leftmatch (52 samples, 0.01%)</title><rect x="27.6452%" y="453" width="0.0108%" height="15" fill="rgb(229,180,13)" fg:x="132782" fg:w="52"/><text x="27.8952%" y="463.50"></text></g><g><title>leftmatch_fb (49 samples, 0.01%)</title><rect x="27.6458%" y="437" width="0.0102%" height="15" fill="rgb(236,53,44)" fg:x="132785" fg:w="49"/><text x="27.8958%" y="447.50"></text></g><g><title>find_attach (109 samples, 0.02%)</title><rect x="27.6366%" y="469" width="0.0227%" height="15" fill="rgb(244,214,29)" fg:x="132741" fg:w="109"/><text x="27.8866%" y="479.50"></text></g><g><title>apparmor_bprm_creds_for_exec (235 samples, 0.05%)</title><rect x="27.6198%" y="501" width="0.0489%" height="15" fill="rgb(220,75,29)" fg:x="132660" fg:w="235"/><text x="27.8698%" y="511.50"></text></g><g><title>profile_transition (191 samples, 0.04%)</title><rect x="27.6289%" y="485" width="0.0398%" height="15" fill="rgb(214,183,37)" fg:x="132704" fg:w="191"/><text x="27.8789%" y="495.50"></text></g><g><title>security_bprm_creds_for_exec (245 samples, 0.05%)</title><rect x="27.6185%" y="517" width="0.0510%" height="15" fill="rgb(239,117,29)" fg:x="132654" fg:w="245"/><text x="27.8685%" y="527.50"></text></g><g><title>bprm_execve.part.0 (12,692 samples, 2.64%)</title><rect x="25.0277%" y="533" width="2.6425%" height="15" fill="rgb(237,171,35)" fg:x="120210" fg:w="12692"/><text x="25.2777%" y="543.50">bp..</text></g><g><title>bprm_execve (12,704 samples, 2.64%)</title><rect x="25.0273%" y="549" width="2.6450%" height="15" fill="rgb(229,178,53)" fg:x="120208" fg:w="12704"/><text x="25.2773%" y="559.50">bp..</text></g><g><title>copy_string_kernel (62 samples, 0.01%)</title><rect x="27.6722%" y="549" width="0.0129%" height="15" fill="rgb(210,102,19)" fg:x="132912" fg:w="62"/><text x="27.9222%" y="559.50"></text></g><g><title>get_arg_page (61 samples, 0.01%)</title><rect x="27.6725%" y="533" width="0.0127%" height="15" fill="rgb(235,127,22)" fg:x="132913" fg:w="61"/><text x="27.9225%" y="543.50"></text></g><g><title>get_user_pages_remote (59 samples, 0.01%)</title><rect x="27.6729%" y="517" width="0.0123%" height="15" fill="rgb(244,31,31)" fg:x="132915" fg:w="59"/><text x="27.9229%" y="527.50"></text></g><g><title>__get_user_pages_remote (58 samples, 0.01%)</title><rect x="27.6731%" y="501" width="0.0121%" height="15" fill="rgb(231,43,21)" fg:x="132916" fg:w="58"/><text x="27.9231%" y="511.50"></text></g><g><title>__get_user_pages (57 samples, 0.01%)</title><rect x="27.6733%" y="485" width="0.0119%" height="15" fill="rgb(217,131,35)" fg:x="132917" fg:w="57"/><text x="27.9233%" y="495.50"></text></g><g><title>do_execveat_common.isra.0 (12,839 samples, 2.67%)</title><rect x="25.0181%" y="565" width="2.6731%" height="15" fill="rgb(221,149,4)" fg:x="120164" fg:w="12839"/><text x="25.2681%" y="575.50">do..</text></g><g><title>__x64_sys_execve (12,842 samples, 2.67%)</title><rect x="25.0177%" y="581" width="2.6737%" height="15" fill="rgb(232,170,28)" fg:x="120162" fg:w="12842"/><text x="25.2677%" y="591.50">__..</text></g><g><title>entry_SYSCALL_64_after_hwframe (12,844 samples, 2.67%)</title><rect x="25.0175%" y="613" width="2.6741%" height="15" fill="rgb(238,56,10)" fg:x="120161" fg:w="12844"/><text x="25.2675%" y="623.50">en..</text></g><g><title>do_syscall_64 (12,844 samples, 2.67%)</title><rect x="25.0175%" y="597" width="2.6741%" height="15" fill="rgb(235,196,14)" fg:x="120161" fg:w="12844"/><text x="25.2675%" y="607.50">do..</text></g><g><title>__GI_execve (12,845 samples, 2.67%)</title><rect x="25.0175%" y="629" width="2.6743%" height="15" fill="rgb(216,45,48)" fg:x="120161" fg:w="12845"/><text x="25.2675%" y="639.50">__..</text></g><g><title>[dash] (13,122 samples, 2.73%)</title><rect x="24.9604%" y="645" width="2.7320%" height="15" fill="rgb(238,213,17)" fg:x="119887" fg:w="13122"/><text x="25.2104%" y="655.50">[d..</text></g><g><title>__GI___libc_write (56 samples, 0.01%)</title><rect x="27.6926%" y="645" width="0.0117%" height="15" fill="rgb(212,13,2)" fg:x="133010" fg:w="56"/><text x="27.9426%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="27.6933%" y="629" width="0.0110%" height="15" fill="rgb(240,114,20)" fg:x="133013" fg:w="53"/><text x="27.9433%" y="639.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="27.6933%" y="613" width="0.0110%" height="15" fill="rgb(228,41,40)" fg:x="133013" fg:w="53"/><text x="27.9433%" y="623.50"></text></g><g><title>[dash] (13,267 samples, 2.76%)</title><rect x="24.9536%" y="661" width="2.7622%" height="15" fill="rgb(244,132,35)" fg:x="119854" fg:w="13267"/><text x="25.2036%" y="671.50">[d..</text></g><g><title>do_wp_page (50 samples, 0.01%)</title><rect x="27.7457%" y="517" width="0.0104%" height="15" fill="rgb(253,189,4)" fg:x="133265" fg:w="50"/><text x="27.9957%" y="527.50"></text></g><g><title>handle_pte_fault (54 samples, 0.01%)</title><rect x="27.7453%" y="533" width="0.0112%" height="15" fill="rgb(224,37,19)" fg:x="133263" fg:w="54"/><text x="27.9953%" y="543.50"></text></g><g><title>__handle_mm_fault (69 samples, 0.01%)</title><rect x="27.7424%" y="549" width="0.0144%" height="15" fill="rgb(235,223,18)" fg:x="133249" fg:w="69"/><text x="27.9924%" y="559.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.02%)</title><rect x="27.7382%" y="581" width="0.0192%" height="15" fill="rgb(235,163,25)" fg:x="133229" fg:w="92"/><text x="27.9882%" y="591.50"></text></g><g><title>handle_mm_fault (78 samples, 0.02%)</title><rect x="27.7412%" y="565" width="0.0162%" height="15" fill="rgb(217,145,28)" fg:x="133243" fg:w="78"/><text x="27.9912%" y="575.50"></text></g><g><title>asm_exc_page_fault (97 samples, 0.02%)</title><rect x="27.7376%" y="613" width="0.0202%" height="15" fill="rgb(223,223,32)" fg:x="133226" fg:w="97"/><text x="27.9876%" y="623.50"></text></g><g><title>exc_page_fault (95 samples, 0.02%)</title><rect x="27.7380%" y="597" width="0.0198%" height="15" fill="rgb(227,189,39)" fg:x="133228" fg:w="95"/><text x="27.9880%" y="607.50"></text></g><g><title>_int_free (157 samples, 0.03%)</title><rect x="27.7276%" y="645" width="0.0327%" height="15" fill="rgb(248,10,22)" fg:x="133178" fg:w="157"/><text x="27.9776%" y="655.50"></text></g><g><title>tcache_put (120 samples, 0.02%)</title><rect x="27.7353%" y="629" width="0.0250%" height="15" fill="rgb(248,46,39)" fg:x="133215" fg:w="120"/><text x="27.9853%" y="639.50"></text></g><g><title>filemap_map_pages (68 samples, 0.01%)</title><rect x="27.7618%" y="501" width="0.0142%" height="15" fill="rgb(248,113,48)" fg:x="133342" fg:w="68"/><text x="28.0118%" y="511.50"></text></g><g><title>handle_pte_fault (79 samples, 0.02%)</title><rect x="27.7614%" y="565" width="0.0164%" height="15" fill="rgb(245,16,25)" fg:x="133340" fg:w="79"/><text x="28.0114%" y="575.50"></text></g><g><title>do_fault (77 samples, 0.02%)</title><rect x="27.7618%" y="549" width="0.0160%" height="15" fill="rgb(249,152,16)" fg:x="133342" fg:w="77"/><text x="28.0118%" y="559.50"></text></g><g><title>do_read_fault (77 samples, 0.02%)</title><rect x="27.7618%" y="533" width="0.0160%" height="15" fill="rgb(250,16,1)" fg:x="133342" fg:w="77"/><text x="28.0118%" y="543.50"></text></g><g><title>xfs_filemap_map_pages (77 samples, 0.02%)</title><rect x="27.7618%" y="517" width="0.0160%" height="15" fill="rgb(249,138,3)" fg:x="133342" fg:w="77"/><text x="28.0118%" y="527.50"></text></g><g><title>handle_mm_fault (82 samples, 0.02%)</title><rect x="27.7609%" y="597" width="0.0171%" height="15" fill="rgb(227,71,41)" fg:x="133338" fg:w="82"/><text x="28.0109%" y="607.50"></text></g><g><title>__handle_mm_fault (81 samples, 0.02%)</title><rect x="27.7611%" y="581" width="0.0169%" height="15" fill="rgb(209,184,23)" fg:x="133339" fg:w="81"/><text x="28.0111%" y="591.50"></text></g><g><title>do_user_addr_fault (86 samples, 0.02%)</title><rect x="27.7603%" y="613" width="0.0179%" height="15" fill="rgb(223,215,31)" fg:x="133335" fg:w="86"/><text x="28.0103%" y="623.50"></text></g><g><title>asm_exc_page_fault (88 samples, 0.02%)</title><rect x="27.7603%" y="645" width="0.0183%" height="15" fill="rgb(210,146,28)" fg:x="133335" fg:w="88"/><text x="28.0103%" y="655.50"></text></g><g><title>exc_page_fault (88 samples, 0.02%)</title><rect x="27.7603%" y="629" width="0.0183%" height="15" fill="rgb(209,183,41)" fg:x="133335" fg:w="88"/><text x="28.0103%" y="639.50"></text></g><g><title>__GI___libc_free (284 samples, 0.06%)</title><rect x="27.7205%" y="661" width="0.0591%" height="15" fill="rgb(209,224,45)" fg:x="133144" fg:w="284"/><text x="27.9705%" y="671.50"></text></g><g><title>_int_malloc (60 samples, 0.01%)</title><rect x="27.7799%" y="645" width="0.0125%" height="15" fill="rgb(224,209,51)" fg:x="133429" fg:w="60"/><text x="28.0299%" y="655.50"></text></g><g><title>__GI___libc_malloc (70 samples, 0.01%)</title><rect x="27.7797%" y="661" width="0.0146%" height="15" fill="rgb(223,17,39)" fg:x="133428" fg:w="70"/><text x="28.0297%" y="671.50"></text></g><g><title>__GI___sigaction (91 samples, 0.02%)</title><rect x="27.7965%" y="645" width="0.0189%" height="15" fill="rgb(234,204,37)" fg:x="133509" fg:w="91"/><text x="28.0465%" y="655.50"></text></g><g><title>[dash] (91 samples, 0.02%)</title><rect x="27.7965%" y="629" width="0.0189%" height="15" fill="rgb(236,120,5)" fg:x="133509" fg:w="91"/><text x="28.0465%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="27.8042%" y="613" width="0.0112%" height="15" fill="rgb(248,97,27)" fg:x="133546" fg:w="54"/><text x="28.0542%" y="623.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="27.8047%" y="597" width="0.0108%" height="15" fill="rgb(240,66,17)" fg:x="133548" fg:w="52"/><text x="28.0547%" y="607.50"></text></g><g><title>syscall_exit_to_user_mode (52 samples, 0.01%)</title><rect x="27.8047%" y="581" width="0.0108%" height="15" fill="rgb(210,79,3)" fg:x="133548" fg:w="52"/><text x="28.0547%" y="591.50"></text></g><g><title>exit_to_user_mode_prepare (52 samples, 0.01%)</title><rect x="27.8047%" y="565" width="0.0108%" height="15" fill="rgb(214,176,27)" fg:x="133548" fg:w="52"/><text x="28.0547%" y="575.50"></text></g><g><title>asm_sysvec_irq_work (69 samples, 0.01%)</title><rect x="27.8644%" y="517" width="0.0144%" height="15" fill="rgb(235,185,3)" fg:x="133835" fg:w="69"/><text x="28.1144%" y="527.50"></text></g><g><title>kmem_cache_free (57 samples, 0.01%)</title><rect x="27.9340%" y="485" width="0.0119%" height="15" fill="rgb(227,24,12)" fg:x="134169" fg:w="57"/><text x="28.1840%" y="495.50"></text></g><g><title>__free_pages (87 samples, 0.02%)</title><rect x="27.9519%" y="453" width="0.0181%" height="15" fill="rgb(252,169,48)" fg:x="134255" fg:w="87"/><text x="28.2019%" y="463.50"></text></g><g><title>free_unref_page (73 samples, 0.02%)</title><rect x="27.9548%" y="437" width="0.0152%" height="15" fill="rgb(212,65,1)" fg:x="134269" fg:w="73"/><text x="28.2048%" y="447.50"></text></g><g><title>__mmdrop (223 samples, 0.05%)</title><rect x="27.9237%" y="501" width="0.0464%" height="15" fill="rgb(242,39,24)" fg:x="134120" fg:w="223"/><text x="28.1737%" y="511.50"></text></g><g><title>pgd_free (116 samples, 0.02%)</title><rect x="27.9460%" y="485" width="0.0242%" height="15" fill="rgb(249,32,23)" fg:x="134227" fg:w="116"/><text x="28.1960%" y="495.50"></text></g><g><title>free_pages (88 samples, 0.02%)</title><rect x="27.9519%" y="469" width="0.0183%" height="15" fill="rgb(251,195,23)" fg:x="134255" fg:w="88"/><text x="28.2019%" y="479.50"></text></g><g><title>intel_pmu_enable_all (63 samples, 0.01%)</title><rect x="28.0029%" y="485" width="0.0131%" height="15" fill="rgb(236,174,8)" fg:x="134500" fg:w="63"/><text x="28.2529%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (78 samples, 0.02%)</title><rect x="28.0333%" y="453" width="0.0162%" height="15" fill="rgb(220,197,8)" fg:x="134646" fg:w="78"/><text x="28.2833%" y="463.50"></text></g><g><title>__perf_event_task_sched_in (8,575 samples, 1.79%)</title><rect x="27.9702%" y="501" width="1.7853%" height="15" fill="rgb(240,108,37)" fg:x="134343" fg:w="8575"/><text x="28.2202%" y="511.50">_..</text></g><g><title>x86_pmu_enable (8,355 samples, 1.74%)</title><rect x="28.0160%" y="485" width="1.7395%" height="15" fill="rgb(232,176,24)" fg:x="134563" fg:w="8355"/><text x="28.2660%" y="495.50"></text></g><g><title>intel_pmu_enable_all (8,275 samples, 1.72%)</title><rect x="28.0326%" y="469" width="1.7229%" height="15" fill="rgb(243,35,29)" fg:x="134643" fg:w="8275"/><text x="28.2826%" y="479.50"></text></g><g><title>native_write_msr (8,194 samples, 1.71%)</title><rect x="28.0495%" y="453" width="1.7060%" height="15" fill="rgb(210,37,18)" fg:x="134724" fg:w="8194"/><text x="28.2995%" y="463.50"></text></g><g><title>__wake_up_common (64 samples, 0.01%)</title><rect x="29.7694%" y="341" width="0.0133%" height="15" fill="rgb(224,184,40)" fg:x="142985" fg:w="64"/><text x="30.0194%" y="351.50"></text></g><g><title>pollwake (62 samples, 0.01%)</title><rect x="29.7699%" y="325" width="0.0129%" height="15" fill="rgb(236,39,29)" fg:x="142987" fg:w="62"/><text x="30.0199%" y="335.50"></text></g><g><title>default_wake_function (61 samples, 0.01%)</title><rect x="29.7701%" y="309" width="0.0127%" height="15" fill="rgb(232,48,39)" fg:x="142988" fg:w="61"/><text x="30.0201%" y="319.50"></text></g><g><title>try_to_wake_up (60 samples, 0.01%)</title><rect x="29.7703%" y="293" width="0.0125%" height="15" fill="rgb(236,34,42)" fg:x="142989" fg:w="60"/><text x="30.0203%" y="303.50"></text></g><g><title>irq_work_single (72 samples, 0.01%)</title><rect x="29.7680%" y="421" width="0.0150%" height="15" fill="rgb(243,106,37)" fg:x="142978" fg:w="72"/><text x="30.0180%" y="431.50"></text></g><g><title>perf_pending_event (69 samples, 0.01%)</title><rect x="29.7686%" y="405" width="0.0144%" height="15" fill="rgb(218,96,6)" fg:x="142981" fg:w="69"/><text x="30.0186%" y="415.50"></text></g><g><title>perf_event_wakeup (68 samples, 0.01%)</title><rect x="29.7688%" y="389" width="0.0142%" height="15" fill="rgb(235,130,12)" fg:x="142982" fg:w="68"/><text x="30.0188%" y="399.50"></text></g><g><title>__wake_up (65 samples, 0.01%)</title><rect x="29.7694%" y="373" width="0.0135%" height="15" fill="rgb(231,95,0)" fg:x="142985" fg:w="65"/><text x="30.0194%" y="383.50"></text></g><g><title>__wake_up_common_lock (65 samples, 0.01%)</title><rect x="29.7694%" y="357" width="0.0135%" height="15" fill="rgb(228,12,23)" fg:x="142985" fg:w="65"/><text x="30.0194%" y="367.50"></text></g><g><title>__sysvec_irq_work (77 samples, 0.02%)</title><rect x="29.7674%" y="469" width="0.0160%" height="15" fill="rgb(216,12,1)" fg:x="142975" fg:w="77"/><text x="30.0174%" y="479.50"></text></g><g><title>irq_work_run (76 samples, 0.02%)</title><rect x="29.7676%" y="453" width="0.0158%" height="15" fill="rgb(219,59,3)" fg:x="142976" fg:w="76"/><text x="30.0176%" y="463.50"></text></g><g><title>irq_work_run_list (76 samples, 0.02%)</title><rect x="29.7676%" y="437" width="0.0158%" height="15" fill="rgb(215,208,46)" fg:x="142976" fg:w="76"/><text x="30.0176%" y="447.50"></text></g><g><title>asm_sysvec_irq_work (99 samples, 0.02%)</title><rect x="29.7647%" y="501" width="0.0206%" height="15" fill="rgb(254,224,29)" fg:x="142962" fg:w="99"/><text x="30.0147%" y="511.50"></text></g><g><title>sysvec_irq_work (97 samples, 0.02%)</title><rect x="29.7651%" y="485" width="0.0202%" height="15" fill="rgb(232,14,29)" fg:x="142964" fg:w="97"/><text x="30.0151%" y="495.50"></text></g><g><title>__mod_lruvec_page_state (83 samples, 0.02%)</title><rect x="29.8098%" y="469" width="0.0173%" height="15" fill="rgb(208,45,52)" fg:x="143179" fg:w="83"/><text x="30.0598%" y="479.50"></text></g><g><title>account_kernel_stack.isra.0 (137 samples, 0.03%)</title><rect x="29.7990%" y="485" width="0.0285%" height="15" fill="rgb(234,191,28)" fg:x="143127" fg:w="137"/><text x="30.0490%" y="495.50"></text></g><g><title>put_task_stack (218 samples, 0.05%)</title><rect x="29.7907%" y="501" width="0.0454%" height="15" fill="rgb(244,67,43)" fg:x="143087" fg:w="218"/><text x="30.0407%" y="511.50"></text></g><g><title>finish_task_switch.isra.0 (9,399 samples, 1.96%)</title><rect x="27.8886%" y="517" width="1.9569%" height="15" fill="rgb(236,189,24)" fg:x="133951" fg:w="9399"/><text x="28.1386%" y="527.50">f..</text></g><g><title>load_balance (56 samples, 0.01%)</title><rect x="29.8515%" y="469" width="0.0117%" height="15" fill="rgb(239,214,33)" fg:x="143379" fg:w="56"/><text x="30.1015%" y="479.50"></text></g><g><title>newidle_balance (75 samples, 0.02%)</title><rect x="29.8515%" y="485" width="0.0156%" height="15" fill="rgb(226,176,41)" fg:x="143379" fg:w="75"/><text x="30.1015%" y="495.50"></text></g><g><title>pick_next_task_fair (105 samples, 0.02%)</title><rect x="29.8500%" y="501" width="0.0219%" height="15" fill="rgb(248,47,8)" fg:x="143372" fg:w="105"/><text x="30.1000%" y="511.50"></text></g><g><title>pick_next_task (110 samples, 0.02%)</title><rect x="29.8496%" y="517" width="0.0229%" height="15" fill="rgb(218,81,44)" fg:x="143370" fg:w="110"/><text x="30.0996%" y="527.50"></text></g><g><title>__schedule (9,780 samples, 2.04%)</title><rect x="27.8486%" y="533" width="2.0362%" height="15" fill="rgb(213,98,6)" fg:x="133759" fg:w="9780"/><text x="28.0986%" y="543.50">_..</text></g><g><title>schedule (9,800 samples, 2.04%)</title><rect x="27.8457%" y="549" width="2.0404%" height="15" fill="rgb(222,85,22)" fg:x="133745" fg:w="9800"/><text x="28.0957%" y="559.50">s..</text></g><g><title>__cleanup_sighand (53 samples, 0.01%)</title><rect x="29.9181%" y="485" width="0.0110%" height="15" fill="rgb(239,46,39)" fg:x="143699" fg:w="53"/><text x="30.1681%" y="495.50"></text></g><g><title>kmem_cache_free (49 samples, 0.01%)</title><rect x="29.9189%" y="469" width="0.0102%" height="15" fill="rgb(237,12,29)" fg:x="143703" fg:w="49"/><text x="30.1689%" y="479.50"></text></g><g><title>free_pid (86 samples, 0.02%)</title><rect x="29.9441%" y="453" width="0.0179%" height="15" fill="rgb(214,77,8)" fg:x="143824" fg:w="86"/><text x="30.1941%" y="463.50"></text></g><g><title>idr_remove (70 samples, 0.01%)</title><rect x="29.9475%" y="437" width="0.0146%" height="15" fill="rgb(217,168,37)" fg:x="143840" fg:w="70"/><text x="30.1975%" y="447.50"></text></g><g><title>radix_tree_delete_item (66 samples, 0.01%)</title><rect x="29.9483%" y="421" width="0.0137%" height="15" fill="rgb(221,217,23)" fg:x="143844" fg:w="66"/><text x="30.1983%" y="431.50"></text></g><g><title>__change_pid (113 samples, 0.02%)</title><rect x="29.9387%" y="469" width="0.0235%" height="15" fill="rgb(243,229,36)" fg:x="143798" fg:w="113"/><text x="30.1887%" y="479.50"></text></g><g><title>detach_pid (116 samples, 0.02%)</title><rect x="29.9387%" y="485" width="0.0242%" height="15" fill="rgb(251,163,40)" fg:x="143798" fg:w="116"/><text x="30.1887%" y="495.50"></text></g><g><title>__exit_signal (249 samples, 0.05%)</title><rect x="29.9143%" y="501" width="0.0518%" height="15" fill="rgb(237,222,12)" fg:x="143681" fg:w="249"/><text x="30.1643%" y="511.50"></text></g><g><title>cgroup_release (76 samples, 0.02%)</title><rect x="29.9722%" y="501" width="0.0158%" height="15" fill="rgb(248,132,6)" fg:x="143959" fg:w="76"/><text x="30.2222%" y="511.50"></text></g><g><title>pids_release (52 samples, 0.01%)</title><rect x="29.9772%" y="485" width="0.0108%" height="15" fill="rgb(227,167,50)" fg:x="143983" fg:w="52"/><text x="30.2272%" y="495.50"></text></g><g><title>release_task (440 samples, 0.09%)</title><rect x="29.9118%" y="517" width="0.0916%" height="15" fill="rgb(242,84,37)" fg:x="143669" fg:w="440"/><text x="30.1618%" y="527.50"></text></g><g><title>wait_consider_task (601 samples, 0.13%)</title><rect x="29.8860%" y="549" width="0.1251%" height="15" fill="rgb(212,4,50)" fg:x="143545" fg:w="601"/><text x="30.1360%" y="559.50"></text></g><g><title>wait_task_zombie (561 samples, 0.12%)</title><rect x="29.8944%" y="533" width="0.1168%" height="15" fill="rgb(230,228,32)" fg:x="143585" fg:w="561"/><text x="30.1444%" y="543.50"></text></g><g><title>do_wait (10,477 samples, 2.18%)</title><rect x="27.8305%" y="565" width="2.1813%" height="15" fill="rgb(248,217,23)" fg:x="133672" fg:w="10477"/><text x="28.0805%" y="575.50">d..</text></g><g><title>kernel_wait4 (10,494 samples, 2.18%)</title><rect x="27.8282%" y="581" width="2.1848%" height="15" fill="rgb(238,197,32)" fg:x="133661" fg:w="10494"/><text x="28.0782%" y="591.50">k..</text></g><g><title>__do_sys_wait4 (10,502 samples, 2.19%)</title><rect x="27.8267%" y="597" width="2.1865%" height="15" fill="rgb(236,106,1)" fg:x="133654" fg:w="10502"/><text x="28.0767%" y="607.50">_..</text></g><g><title>__x64_sys_wait4 (10,505 samples, 2.19%)</title><rect x="27.8267%" y="613" width="2.1871%" height="15" fill="rgb(219,228,13)" fg:x="133654" fg:w="10505"/><text x="28.0767%" y="623.50">_..</text></g><g><title>get_signal (61 samples, 0.01%)</title><rect x="30.0182%" y="549" width="0.0127%" height="15" fill="rgb(238,30,35)" fg:x="144180" fg:w="61"/><text x="30.2682%" y="559.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="30.0326%" y="469" width="0.0117%" height="15" fill="rgb(236,70,23)" fg:x="144249" fg:w="56"/><text x="30.2826%" y="479.50"></text></g><g><title>__put_user_nocheck_8 (61 samples, 0.01%)</title><rect x="30.0318%" y="517" width="0.0127%" height="15" fill="rgb(249,104,48)" fg:x="144245" fg:w="61"/><text x="30.2818%" y="527.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="30.0324%" y="501" width="0.0121%" height="15" fill="rgb(254,117,50)" fg:x="144248" fg:w="58"/><text x="30.2824%" y="511.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="30.0324%" y="485" width="0.0121%" height="15" fill="rgb(223,152,4)" fg:x="144248" fg:w="58"/><text x="30.2824%" y="495.50"></text></g><g><title>__rseq_handle_notify_resume (91 samples, 0.02%)</title><rect x="30.0314%" y="533" width="0.0189%" height="15" fill="rgb(245,6,2)" fg:x="144243" fg:w="91"/><text x="30.2814%" y="543.50"></text></g><g><title>copy_fpstate_to_sigframe (51 samples, 0.01%)</title><rect x="30.0593%" y="501" width="0.0106%" height="15" fill="rgb(249,150,24)" fg:x="144377" fg:w="51"/><text x="30.3093%" y="511.50"></text></g><g><title>__setup_rt_frame (99 samples, 0.02%)</title><rect x="30.0503%" y="533" width="0.0206%" height="15" fill="rgb(228,185,42)" fg:x="144334" fg:w="99"/><text x="30.3003%" y="543.50"></text></g><g><title>get_sigframe.constprop.0.isra.0 (63 samples, 0.01%)</title><rect x="30.0578%" y="517" width="0.0131%" height="15" fill="rgb(226,39,33)" fg:x="144370" fg:w="63"/><text x="30.3078%" y="527.50"></text></g><g><title>handle_signal (195 samples, 0.04%)</title><rect x="30.0309%" y="549" width="0.0406%" height="15" fill="rgb(221,166,19)" fg:x="144241" fg:w="195"/><text x="30.2809%" y="559.50"></text></g><g><title>arch_do_signal_or_restart (267 samples, 0.06%)</title><rect x="30.0174%" y="565" width="0.0556%" height="15" fill="rgb(209,109,2)" fg:x="144176" fg:w="267"/><text x="30.2674%" y="575.50"></text></g><g><title>exit_to_user_mode_prepare (282 samples, 0.06%)</title><rect x="30.0159%" y="597" width="0.0587%" height="15" fill="rgb(252,216,26)" fg:x="144169" fg:w="282"/><text x="30.2659%" y="607.50"></text></g><g><title>exit_to_user_mode_loop (276 samples, 0.06%)</title><rect x="30.0172%" y="581" width="0.0575%" height="15" fill="rgb(227,173,36)" fg:x="144175" fg:w="276"/><text x="30.2672%" y="591.50"></text></g><g><title>do_syscall_64 (10,842 samples, 2.26%)</title><rect x="27.8176%" y="629" width="2.2573%" height="15" fill="rgb(209,90,7)" fg:x="133610" fg:w="10842"/><text x="28.0676%" y="639.50">d..</text></g><g><title>syscall_exit_to_user_mode (285 samples, 0.06%)</title><rect x="30.0155%" y="613" width="0.0593%" height="15" fill="rgb(250,194,11)" fg:x="144167" fg:w="285"/><text x="30.2655%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (10,849 samples, 2.26%)</title><rect x="27.8165%" y="645" width="2.2588%" height="15" fill="rgb(220,72,50)" fg:x="133605" fg:w="10849"/><text x="28.0665%" y="655.50">e..</text></g><g><title>__GI___wait4 (10,959 samples, 2.28%)</title><rect x="27.7942%" y="661" width="2.2817%" height="15" fill="rgb(222,106,48)" fg:x="133498" fg:w="10959"/><text x="28.0442%" y="671.50">_..</text></g><g><title>__longjmp_chk (54 samples, 0.01%)</title><rect x="30.0763%" y="661" width="0.0112%" height="15" fill="rgb(216,220,45)" fg:x="144459" fg:w="54"/><text x="30.3263%" y="671.50"></text></g><g><title>do_user_addr_fault (75 samples, 0.02%)</title><rect x="30.0880%" y="629" width="0.0156%" height="15" fill="rgb(234,112,18)" fg:x="144515" fg:w="75"/><text x="30.3380%" y="639.50"></text></g><g><title>handle_mm_fault (66 samples, 0.01%)</title><rect x="30.0899%" y="613" width="0.0137%" height="15" fill="rgb(206,179,9)" fg:x="144524" fg:w="66"/><text x="30.3399%" y="623.50"></text></g><g><title>__handle_mm_fault (65 samples, 0.01%)</title><rect x="30.0901%" y="597" width="0.0135%" height="15" fill="rgb(215,115,40)" fg:x="144525" fg:w="65"/><text x="30.3401%" y="607.50"></text></g><g><title>handle_pte_fault (63 samples, 0.01%)</title><rect x="30.0905%" y="581" width="0.0131%" height="15" fill="rgb(222,69,34)" fg:x="144527" fg:w="63"/><text x="30.3405%" y="591.50"></text></g><g><title>asm_exc_page_fault (76 samples, 0.02%)</title><rect x="30.0880%" y="661" width="0.0158%" height="15" fill="rgb(209,161,10)" fg:x="144515" fg:w="76"/><text x="30.3380%" y="671.50"></text></g><g><title>exc_page_fault (76 samples, 0.02%)</title><rect x="30.0880%" y="645" width="0.0158%" height="15" fill="rgb(217,6,38)" fg:x="144515" fg:w="76"/><text x="30.3380%" y="655.50"></text></g><g><title>[dash] (24,803 samples, 5.16%)</title><rect x="24.9409%" y="677" width="5.1640%" height="15" fill="rgb(229,229,48)" fg:x="119793" fg:w="24803"/><text x="25.1909%" y="687.50">[dash]</text></g><g><title>lookup_fast (69 samples, 0.01%)</title><rect x="30.1275%" y="501" width="0.0144%" height="15" fill="rgb(225,21,28)" fg:x="144705" fg:w="69"/><text x="30.3775%" y="511.50"></text></g><g><title>__d_lookup_rcu (61 samples, 0.01%)</title><rect x="30.1292%" y="485" width="0.0127%" height="15" fill="rgb(206,33,13)" fg:x="144713" fg:w="61"/><text x="30.3792%" y="495.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (146 samples, 0.03%)</title><rect x="30.1130%" y="533" width="0.0304%" height="15" fill="rgb(242,178,17)" fg:x="144635" fg:w="146"/><text x="30.3630%" y="543.50"></text></g><g><title>walk_component (77 samples, 0.02%)</title><rect x="30.1273%" y="517" width="0.0160%" height="15" fill="rgb(220,162,5)" fg:x="144704" fg:w="77"/><text x="30.3773%" y="527.50"></text></g><g><title>filename_lookup (191 samples, 0.04%)</title><rect x="30.1117%" y="565" width="0.0398%" height="15" fill="rgb(210,33,43)" fg:x="144629" fg:w="191"/><text x="30.3617%" y="575.50"></text></g><g><title>path_lookupat (189 samples, 0.04%)</title><rect x="30.1121%" y="549" width="0.0393%" height="15" fill="rgb(216,116,54)" fg:x="144631" fg:w="189"/><text x="30.3621%" y="559.50"></text></g><g><title>user_path_at_empty (229 samples, 0.05%)</title><rect x="30.1117%" y="581" width="0.0477%" height="15" fill="rgb(249,92,24)" fg:x="144629" fg:w="229"/><text x="30.3617%" y="591.50"></text></g><g><title>__x64_sys_newfstatat (241 samples, 0.05%)</title><rect x="30.1109%" y="629" width="0.0502%" height="15" fill="rgb(231,189,14)" fg:x="144625" fg:w="241"/><text x="30.3609%" y="639.50"></text></g><g><title>__do_sys_newfstatat (241 samples, 0.05%)</title><rect x="30.1109%" y="613" width="0.0502%" height="15" fill="rgb(230,8,41)" fg:x="144625" fg:w="241"/><text x="30.3609%" y="623.50"></text></g><g><title>vfs_statx (239 samples, 0.05%)</title><rect x="30.1113%" y="597" width="0.0498%" height="15" fill="rgb(249,7,27)" fg:x="144627" fg:w="239"/><text x="30.3613%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (259 samples, 0.05%)</title><rect x="30.1103%" y="661" width="0.0539%" height="15" fill="rgb(232,86,5)" fg:x="144622" fg:w="259"/><text x="30.3603%" y="671.50"></text></g><g><title>do_syscall_64 (257 samples, 0.05%)</title><rect x="30.1107%" y="645" width="0.0535%" height="15" fill="rgb(224,175,18)" fg:x="144624" fg:w="257"/><text x="30.3607%" y="655.50"></text></g><g><title>__GI___fstatat64 (285 samples, 0.06%)</title><rect x="30.1061%" y="677" width="0.0593%" height="15" fill="rgb(220,129,12)" fg:x="144602" fg:w="285"/><text x="30.3561%" y="687.50"></text></g><g><title>handle_pte_fault (78 samples, 0.02%)</title><rect x="30.1811%" y="597" width="0.0162%" height="15" fill="rgb(210,19,36)" fg:x="144962" fg:w="78"/><text x="30.4311%" y="607.50"></text></g><g><title>__handle_mm_fault (85 samples, 0.02%)</title><rect x="30.1798%" y="613" width="0.0177%" height="15" fill="rgb(219,96,14)" fg:x="144956" fg:w="85"/><text x="30.4298%" y="623.50"></text></g><g><title>handle_mm_fault (94 samples, 0.02%)</title><rect x="30.1788%" y="629" width="0.0196%" height="15" fill="rgb(249,106,1)" fg:x="144951" fg:w="94"/><text x="30.4288%" y="639.50"></text></g><g><title>do_user_addr_fault (122 samples, 0.03%)</title><rect x="30.1731%" y="645" width="0.0254%" height="15" fill="rgb(249,155,20)" fg:x="144924" fg:w="122"/><text x="30.4231%" y="655.50"></text></g><g><title>asm_exc_page_fault (139 samples, 0.03%)</title><rect x="30.1723%" y="677" width="0.0289%" height="15" fill="rgb(244,168,9)" fg:x="144920" fg:w="139"/><text x="30.4223%" y="687.50"></text></g><g><title>exc_page_fault (137 samples, 0.03%)</title><rect x="30.1727%" y="661" width="0.0285%" height="15" fill="rgb(216,23,50)" fg:x="144922" fg:w="137"/><text x="30.4227%" y="671.50"></text></g><g><title>[dash] (25,349 samples, 5.28%)</title><rect x="24.9250%" y="693" width="5.2777%" height="15" fill="rgb(224,219,20)" fg:x="119717" fg:w="25349"/><text x="25.1750%" y="703.50">[dash]</text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="30.2044%" y="645" width="0.0112%" height="15" fill="rgb(222,156,15)" fg:x="145074" fg:w="54"/><text x="30.4544%" y="655.50"></text></g><g><title>handle_mm_fault (52 samples, 0.01%)</title><rect x="30.2048%" y="629" width="0.0108%" height="15" fill="rgb(231,97,17)" fg:x="145076" fg:w="52"/><text x="30.4548%" y="639.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="30.2044%" y="677" width="0.0115%" height="15" fill="rgb(218,70,48)" fg:x="145074" fg:w="55"/><text x="30.4544%" y="687.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="30.2044%" y="661" width="0.0115%" height="15" fill="rgb(212,196,52)" fg:x="145074" fg:w="55"/><text x="30.4544%" y="671.50"></text></g><g><title>do_syscall_64 (55 samples, 0.01%)</title><rect x="30.2158%" y="661" width="0.0115%" height="15" fill="rgb(243,203,18)" fg:x="145129" fg:w="55"/><text x="30.4658%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.01%)</title><rect x="30.2158%" y="677" width="0.0119%" height="15" fill="rgb(252,125,41)" fg:x="145129" fg:w="57"/><text x="30.4658%" y="687.50"></text></g><g><title>__GI___close (123 samples, 0.03%)</title><rect x="30.2029%" y="693" width="0.0256%" height="15" fill="rgb(223,180,33)" fg:x="145067" fg:w="123"/><text x="30.4529%" y="703.50"></text></g><g><title>__GI___dup2 (57 samples, 0.01%)</title><rect x="30.2285%" y="693" width="0.0119%" height="15" fill="rgb(254,159,46)" fg:x="145190" fg:w="57"/><text x="30.4785%" y="703.50"></text></g><g><title>create_pipe_files (50 samples, 0.01%)</title><rect x="30.2423%" y="613" width="0.0104%" height="15" fill="rgb(254,38,10)" fg:x="145256" fg:w="50"/><text x="30.4923%" y="623.50"></text></g><g><title>__GI___pipe (61 samples, 0.01%)</title><rect x="30.2404%" y="693" width="0.0127%" height="15" fill="rgb(208,217,32)" fg:x="145247" fg:w="61"/><text x="30.4904%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="30.2408%" y="677" width="0.0123%" height="15" fill="rgb(221,120,13)" fg:x="145249" fg:w="59"/><text x="30.4908%" y="687.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="30.2408%" y="661" width="0.0123%" height="15" fill="rgb(246,54,52)" fg:x="145249" fg:w="59"/><text x="30.4908%" y="671.50"></text></g><g><title>__x64_sys_pipe2 (58 samples, 0.01%)</title><rect x="30.2410%" y="645" width="0.0121%" height="15" fill="rgb(242,34,25)" fg:x="145250" fg:w="58"/><text x="30.4910%" y="655.50"></text></g><g><title>do_pipe2 (56 samples, 0.01%)</title><rect x="30.2414%" y="629" width="0.0117%" height="15" fill="rgb(247,209,9)" fg:x="145252" fg:w="56"/><text x="30.4914%" y="639.50"></text></g><g><title>filemap_map_pages (96 samples, 0.02%)</title><rect x="30.2764%" y="501" width="0.0200%" height="15" fill="rgb(228,71,26)" fg:x="145420" fg:w="96"/><text x="30.5264%" y="511.50"></text></g><g><title>xfs_filemap_map_pages (118 samples, 0.02%)</title><rect x="30.2754%" y="517" width="0.0246%" height="15" fill="rgb(222,145,49)" fg:x="145415" fg:w="118"/><text x="30.5254%" y="527.50"></text></g><g><title>do_read_fault (128 samples, 0.03%)</title><rect x="30.2741%" y="533" width="0.0266%" height="15" fill="rgb(218,121,17)" fg:x="145409" fg:w="128"/><text x="30.5241%" y="543.50"></text></g><g><title>do_fault (134 samples, 0.03%)</title><rect x="30.2733%" y="549" width="0.0279%" height="15" fill="rgb(244,50,7)" fg:x="145405" fg:w="134"/><text x="30.5233%" y="559.50"></text></g><g><title>__handle_mm_fault (145 samples, 0.03%)</title><rect x="30.2712%" y="581" width="0.0302%" height="15" fill="rgb(246,229,37)" fg:x="145395" fg:w="145"/><text x="30.5212%" y="591.50"></text></g><g><title>handle_pte_fault (136 samples, 0.03%)</title><rect x="30.2731%" y="565" width="0.0283%" height="15" fill="rgb(225,18,5)" fg:x="145404" fg:w="136"/><text x="30.5231%" y="575.50"></text></g><g><title>do_user_addr_fault (158 samples, 0.03%)</title><rect x="30.2687%" y="613" width="0.0329%" height="15" fill="rgb(213,204,8)" fg:x="145383" fg:w="158"/><text x="30.5187%" y="623.50"></text></g><g><title>handle_mm_fault (149 samples, 0.03%)</title><rect x="30.2706%" y="597" width="0.0310%" height="15" fill="rgb(238,103,6)" fg:x="145392" fg:w="149"/><text x="30.5206%" y="607.50"></text></g><g><title>asm_exc_page_fault (162 samples, 0.03%)</title><rect x="30.2685%" y="645" width="0.0337%" height="15" fill="rgb(222,25,35)" fg:x="145382" fg:w="162"/><text x="30.5185%" y="655.50"></text></g><g><title>exc_page_fault (161 samples, 0.03%)</title><rect x="30.2687%" y="629" width="0.0335%" height="15" fill="rgb(213,203,35)" fg:x="145383" fg:w="161"/><text x="30.5187%" y="639.50"></text></g><g><title>anon_vma_clone (123 samples, 0.03%)</title><rect x="30.3507%" y="501" width="0.0256%" height="15" fill="rgb(221,79,53)" fg:x="145777" fg:w="123"/><text x="30.6007%" y="511.50"></text></g><g><title>kmem_cache_alloc (60 samples, 0.01%)</title><rect x="30.3778%" y="501" width="0.0125%" height="15" fill="rgb(243,200,35)" fg:x="145907" fg:w="60"/><text x="30.6278%" y="511.50"></text></g><g><title>anon_vma_fork (201 samples, 0.04%)</title><rect x="30.3501%" y="517" width="0.0418%" height="15" fill="rgb(248,60,25)" fg:x="145774" fg:w="201"/><text x="30.6001%" y="527.50"></text></g><g><title>__pte_alloc (57 samples, 0.01%)</title><rect x="30.4303%" y="453" width="0.0119%" height="15" fill="rgb(227,53,46)" fg:x="146159" fg:w="57"/><text x="30.6803%" y="463.50"></text></g><g><title>pte_alloc_one (54 samples, 0.01%)</title><rect x="30.4309%" y="437" width="0.0112%" height="15" fill="rgb(216,120,32)" fg:x="146162" fg:w="54"/><text x="30.6809%" y="447.50"></text></g><g><title>copy_pte_range (113 samples, 0.02%)</title><rect x="30.4190%" y="469" width="0.0235%" height="15" fill="rgb(220,134,1)" fg:x="146105" fg:w="113"/><text x="30.6690%" y="479.50"></text></g><g><title>copy_pmd_range (173 samples, 0.04%)</title><rect x="30.4067%" y="485" width="0.0360%" height="15" fill="rgb(237,168,5)" fg:x="146046" fg:w="173"/><text x="30.6567%" y="495.50"></text></g><g><title>copy_p4d_range (232 samples, 0.05%)</title><rect x="30.3957%" y="501" width="0.0483%" height="15" fill="rgb(231,100,33)" fg:x="145993" fg:w="232"/><text x="30.6457%" y="511.50"></text></g><g><title>copy_page_range (249 samples, 0.05%)</title><rect x="30.3924%" y="517" width="0.0518%" height="15" fill="rgb(236,177,47)" fg:x="145977" fg:w="249"/><text x="30.6424%" y="527.50"></text></g><g><title>kmem_cache_alloc (67 samples, 0.01%)</title><rect x="30.4640%" y="501" width="0.0139%" height="15" fill="rgb(235,7,49)" fg:x="146321" fg:w="67"/><text x="30.7140%" y="511.50"></text></g><g><title>vm_area_dup (138 samples, 0.03%)</title><rect x="30.4517%" y="517" width="0.0287%" height="15" fill="rgb(232,119,22)" fg:x="146262" fg:w="138"/><text x="30.7017%" y="527.50"></text></g><g><title>dup_mmap (710 samples, 0.15%)</title><rect x="30.3389%" y="533" width="0.1478%" height="15" fill="rgb(254,73,53)" fg:x="145720" fg:w="710"/><text x="30.5889%" y="543.50"></text></g><g><title>dup_mm (755 samples, 0.16%)</title><rect x="30.3372%" y="549" width="0.1572%" height="15" fill="rgb(251,35,20)" fg:x="145712" fg:w="755"/><text x="30.5872%" y="559.50"></text></g><g><title>__vmalloc_node_range (64 samples, 0.01%)</title><rect x="30.4983%" y="517" width="0.0133%" height="15" fill="rgb(241,119,20)" fg:x="146486" fg:w="64"/><text x="30.7483%" y="527.50"></text></g><g><title>alloc_thread_stack_node (68 samples, 0.01%)</title><rect x="30.4979%" y="533" width="0.0142%" height="15" fill="rgb(207,102,14)" fg:x="146484" fg:w="68"/><text x="30.7479%" y="543.50"></text></g><g><title>dup_task_struct (122 samples, 0.03%)</title><rect x="30.4944%" y="549" width="0.0254%" height="15" fill="rgb(248,201,50)" fg:x="146467" fg:w="122"/><text x="30.7444%" y="559.50"></text></g><g><title>allocate_fake_cpuc (57 samples, 0.01%)</title><rect x="30.5491%" y="421" width="0.0119%" height="15" fill="rgb(222,185,44)" fg:x="146730" fg:w="57"/><text x="30.7991%" y="431.50"></text></g><g><title>perf_init_event (99 samples, 0.02%)</title><rect x="30.5471%" y="469" width="0.0206%" height="15" fill="rgb(218,107,18)" fg:x="146720" fg:w="99"/><text x="30.7971%" y="479.50"></text></g><g><title>perf_try_init_event (94 samples, 0.02%)</title><rect x="30.5481%" y="453" width="0.0196%" height="15" fill="rgb(237,177,39)" fg:x="146725" fg:w="94"/><text x="30.7981%" y="463.50"></text></g><g><title>x86_pmu_event_init (91 samples, 0.02%)</title><rect x="30.5487%" y="437" width="0.0189%" height="15" fill="rgb(246,69,6)" fg:x="146728" fg:w="91"/><text x="30.7987%" y="447.50"></text></g><g><title>perf_event_alloc (166 samples, 0.03%)</title><rect x="30.5339%" y="485" width="0.0346%" height="15" fill="rgb(234,208,37)" fg:x="146657" fg:w="166"/><text x="30.7839%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (201 samples, 0.04%)</title><rect x="30.5271%" y="501" width="0.0418%" height="15" fill="rgb(225,4,6)" fg:x="146624" fg:w="201"/><text x="30.7771%" y="511.50"></text></g><g><title>perf_event_init_context (228 samples, 0.05%)</title><rect x="30.5240%" y="533" width="0.0475%" height="15" fill="rgb(233,45,0)" fg:x="146609" fg:w="228"/><text x="30.7740%" y="543.50"></text></g><g><title>inherit_task_group.isra.0 (221 samples, 0.05%)</title><rect x="30.5254%" y="517" width="0.0460%" height="15" fill="rgb(226,136,5)" fg:x="146616" fg:w="221"/><text x="30.7754%" y="527.50"></text></g><g><title>perf_event_init_task (237 samples, 0.05%)</title><rect x="30.5235%" y="549" width="0.0493%" height="15" fill="rgb(211,91,47)" fg:x="146607" fg:w="237"/><text x="30.7735%" y="559.50"></text></g><g><title>copy_process (1,322 samples, 0.28%)</title><rect x="30.3043%" y="565" width="0.2752%" height="15" fill="rgb(242,88,51)" fg:x="145554" fg:w="1322"/><text x="30.5543%" y="575.50"></text></g><g><title>__do_sys_clone (1,454 samples, 0.30%)</title><rect x="30.3022%" y="597" width="0.3027%" height="15" fill="rgb(230,91,28)" fg:x="145544" fg:w="1454"/><text x="30.5522%" y="607.50"></text></g><g><title>kernel_clone (1,453 samples, 0.30%)</title><rect x="30.3024%" y="581" width="0.3025%" height="15" fill="rgb(254,186,29)" fg:x="145545" fg:w="1453"/><text x="30.5524%" y="591.50"></text></g><g><title>wake_up_new_task (91 samples, 0.02%)</title><rect x="30.5860%" y="565" width="0.0189%" height="15" fill="rgb(238,6,4)" fg:x="146907" fg:w="91"/><text x="30.8360%" y="575.50"></text></g><g><title>__x64_sys_clone (1,455 samples, 0.30%)</title><rect x="30.3022%" y="613" width="0.3029%" height="15" fill="rgb(221,151,16)" fg:x="145544" fg:w="1455"/><text x="30.5522%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,477 samples, 0.31%)</title><rect x="30.3022%" y="645" width="0.3075%" height="15" fill="rgb(251,143,52)" fg:x="145544" fg:w="1477"/><text x="30.5522%" y="655.50"></text></g><g><title>do_syscall_64 (1,477 samples, 0.31%)</title><rect x="30.3022%" y="629" width="0.3075%" height="15" fill="rgb(206,90,15)" fg:x="145544" fg:w="1477"/><text x="30.5522%" y="639.50"></text></g><g><title>__cond_resched (66 samples, 0.01%)</title><rect x="30.6253%" y="565" width="0.0137%" height="15" fill="rgb(218,35,8)" fg:x="147096" fg:w="66"/><text x="30.8753%" y="575.50"></text></g><g><title>__schedule (64 samples, 0.01%)</title><rect x="30.6258%" y="549" width="0.0133%" height="15" fill="rgb(239,215,6)" fg:x="147098" fg:w="64"/><text x="30.8758%" y="559.50"></text></g><g><title>wp_page_copy (57 samples, 0.01%)</title><rect x="30.6828%" y="501" width="0.0119%" height="15" fill="rgb(245,116,39)" fg:x="147372" fg:w="57"/><text x="30.9328%" y="511.50"></text></g><g><title>do_wp_page (100 samples, 0.02%)</title><rect x="30.6768%" y="517" width="0.0208%" height="15" fill="rgb(242,65,28)" fg:x="147343" fg:w="100"/><text x="30.9268%" y="527.50"></text></g><g><title>handle_pte_fault (128 samples, 0.03%)</title><rect x="30.6732%" y="533" width="0.0266%" height="15" fill="rgb(252,132,53)" fg:x="147326" fg:w="128"/><text x="30.9232%" y="543.50"></text></g><g><title>__handle_mm_fault (200 samples, 0.04%)</title><rect x="30.6587%" y="549" width="0.0416%" height="15" fill="rgb(224,159,50)" fg:x="147256" fg:w="200"/><text x="30.9087%" y="559.50"></text></g><g><title>handle_mm_fault (248 samples, 0.05%)</title><rect x="30.6510%" y="565" width="0.0516%" height="15" fill="rgb(224,93,4)" fg:x="147219" fg:w="248"/><text x="30.9010%" y="575.50"></text></g><g><title>do_user_addr_fault (409 samples, 0.09%)</title><rect x="30.6204%" y="581" width="0.0852%" height="15" fill="rgb(208,81,34)" fg:x="147072" fg:w="409"/><text x="30.8704%" y="591.50"></text></g><g><title>exc_page_fault (427 samples, 0.09%)</title><rect x="30.6185%" y="597" width="0.0889%" height="15" fill="rgb(233,92,54)" fg:x="147063" fg:w="427"/><text x="30.8685%" y="607.50"></text></g><g><title>__put_user_nocheck_4 (464 samples, 0.10%)</title><rect x="30.6110%" y="629" width="0.0966%" height="15" fill="rgb(237,21,14)" fg:x="147027" fg:w="464"/><text x="30.8610%" y="639.50"></text></g><g><title>asm_exc_page_fault (428 samples, 0.09%)</title><rect x="30.6185%" y="613" width="0.0891%" height="15" fill="rgb(249,128,51)" fg:x="147063" fg:w="428"/><text x="30.8685%" y="623.50"></text></g><g><title>asm_exc_page_fault (169 samples, 0.04%)</title><rect x="30.7078%" y="629" width="0.0352%" height="15" fill="rgb(223,129,24)" fg:x="147492" fg:w="169"/><text x="30.9578%" y="639.50"></text></g><g><title>asm_sysvec_irq_work (72 samples, 0.01%)</title><rect x="30.7578%" y="613" width="0.0150%" height="15" fill="rgb(231,168,25)" fg:x="147732" fg:w="72"/><text x="31.0078%" y="623.50"></text></g><g><title>__mmdrop (146 samples, 0.03%)</title><rect x="30.8094%" y="597" width="0.0304%" height="15" fill="rgb(224,39,20)" fg:x="147980" fg:w="146"/><text x="31.0594%" y="607.50"></text></g><g><title>pgd_free (76 samples, 0.02%)</title><rect x="30.8240%" y="581" width="0.0158%" height="15" fill="rgb(225,152,53)" fg:x="148050" fg:w="76"/><text x="31.0740%" y="591.50"></text></g><g><title>free_pages (58 samples, 0.01%)</title><rect x="30.8277%" y="565" width="0.0121%" height="15" fill="rgb(252,17,24)" fg:x="148068" fg:w="58"/><text x="31.0777%" y="575.50"></text></g><g><title>__free_pages (58 samples, 0.01%)</title><rect x="30.8277%" y="549" width="0.0121%" height="15" fill="rgb(250,114,30)" fg:x="148068" fg:w="58"/><text x="31.0777%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (58 samples, 0.01%)</title><rect x="30.8950%" y="549" width="0.0121%" height="15" fill="rgb(229,5,4)" fg:x="148391" fg:w="58"/><text x="31.1450%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (8,742 samples, 1.82%)</title><rect x="30.8398%" y="597" width="1.8201%" height="15" fill="rgb(225,176,49)" fg:x="148126" fg:w="8742"/><text x="31.0898%" y="607.50">_..</text></g><g><title>x86_pmu_enable (8,535 samples, 1.78%)</title><rect x="30.8829%" y="581" width="1.7770%" height="15" fill="rgb(224,221,49)" fg:x="148333" fg:w="8535"/><text x="31.1329%" y="591.50">x..</text></g><g><title>intel_pmu_enable_all (8,477 samples, 1.76%)</title><rect x="30.8950%" y="565" width="1.7649%" height="15" fill="rgb(253,169,27)" fg:x="148391" fg:w="8477"/><text x="31.1450%" y="575.50"></text></g><g><title>native_write_msr (8,419 samples, 1.75%)</title><rect x="30.9070%" y="549" width="1.7528%" height="15" fill="rgb(211,206,16)" fg:x="148449" fg:w="8419"/><text x="31.1570%" y="559.50"></text></g><g><title>enqueue_task (50 samples, 0.01%)</title><rect x="32.6780%" y="357" width="0.0104%" height="15" fill="rgb(244,87,35)" fg:x="156955" fg:w="50"/><text x="32.9280%" y="367.50"></text></g><g><title>ttwu_do_activate (62 samples, 0.01%)</title><rect x="32.6778%" y="373" width="0.0129%" height="15" fill="rgb(246,28,10)" fg:x="156954" fg:w="62"/><text x="32.9278%" y="383.50"></text></g><g><title>__wake_up_common (88 samples, 0.02%)</title><rect x="32.6726%" y="437" width="0.0183%" height="15" fill="rgb(229,12,44)" fg:x="156929" fg:w="88"/><text x="32.9226%" y="447.50"></text></g><g><title>pollwake (86 samples, 0.02%)</title><rect x="32.6730%" y="421" width="0.0179%" height="15" fill="rgb(210,145,37)" fg:x="156931" fg:w="86"/><text x="32.9230%" y="431.50"></text></g><g><title>default_wake_function (86 samples, 0.02%)</title><rect x="32.6730%" y="405" width="0.0179%" height="15" fill="rgb(227,112,52)" fg:x="156931" fg:w="86"/><text x="32.9230%" y="415.50"></text></g><g><title>try_to_wake_up (84 samples, 0.02%)</title><rect x="32.6734%" y="389" width="0.0175%" height="15" fill="rgb(238,155,34)" fg:x="156933" fg:w="84"/><text x="32.9234%" y="399.50"></text></g><g><title>__wake_up_common_lock (92 samples, 0.02%)</title><rect x="32.6724%" y="453" width="0.0192%" height="15" fill="rgb(239,226,36)" fg:x="156928" fg:w="92"/><text x="32.9224%" y="463.50"></text></g><g><title>irq_work_single (98 samples, 0.02%)</title><rect x="32.6713%" y="517" width="0.0204%" height="15" fill="rgb(230,16,23)" fg:x="156923" fg:w="98"/><text x="32.9213%" y="527.50"></text></g><g><title>perf_pending_event (95 samples, 0.02%)</title><rect x="32.6720%" y="501" width="0.0198%" height="15" fill="rgb(236,171,36)" fg:x="156926" fg:w="95"/><text x="32.9220%" y="511.50"></text></g><g><title>perf_event_wakeup (94 samples, 0.02%)</title><rect x="32.6722%" y="485" width="0.0196%" height="15" fill="rgb(221,22,14)" fg:x="156927" fg:w="94"/><text x="32.9222%" y="495.50"></text></g><g><title>__wake_up (93 samples, 0.02%)</title><rect x="32.6724%" y="469" width="0.0194%" height="15" fill="rgb(242,43,11)" fg:x="156928" fg:w="93"/><text x="32.9224%" y="479.50"></text></g><g><title>irq_work_run (104 samples, 0.02%)</title><rect x="32.6703%" y="549" width="0.0217%" height="15" fill="rgb(232,69,23)" fg:x="156918" fg:w="104"/><text x="32.9203%" y="559.50"></text></g><g><title>irq_work_run_list (103 samples, 0.02%)</title><rect x="32.6705%" y="533" width="0.0214%" height="15" fill="rgb(216,180,54)" fg:x="156919" fg:w="103"/><text x="32.9205%" y="543.50"></text></g><g><title>__sysvec_irq_work (107 samples, 0.02%)</title><rect x="32.6699%" y="565" width="0.0223%" height="15" fill="rgb(216,5,24)" fg:x="156916" fg:w="107"/><text x="32.9199%" y="575.50"></text></g><g><title>asm_sysvec_irq_work (129 samples, 0.03%)</title><rect x="32.6670%" y="597" width="0.0269%" height="15" fill="rgb(225,89,9)" fg:x="156902" fg:w="129"/><text x="32.9170%" y="607.50"></text></g><g><title>sysvec_irq_work (127 samples, 0.03%)</title><rect x="32.6674%" y="581" width="0.0264%" height="15" fill="rgb(243,75,33)" fg:x="156904" fg:w="127"/><text x="32.9174%" y="591.50"></text></g><g><title>put_task_stack (72 samples, 0.01%)</title><rect x="32.6957%" y="597" width="0.0150%" height="15" fill="rgb(247,141,45)" fg:x="157040" fg:w="72"/><text x="32.9457%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (9,281 samples, 1.93%)</title><rect x="30.7800%" y="613" width="1.9323%" height="15" fill="rgb(232,177,36)" fg:x="147839" fg:w="9281"/><text x="31.0300%" y="623.50">f..</text></g><g><title>schedule_tail (9,461 samples, 1.97%)</title><rect x="30.7455%" y="629" width="1.9698%" height="15" fill="rgb(219,125,36)" fg:x="147673" fg:w="9461"/><text x="30.9955%" y="639.50">s..</text></g><g><title>alloc_pages_vma (50 samples, 0.01%)</title><rect x="32.7423%" y="421" width="0.0104%" height="15" fill="rgb(227,94,9)" fg:x="157264" fg:w="50"/><text x="32.9923%" y="431.50"></text></g><g><title>wp_page_copy (126 samples, 0.03%)</title><rect x="32.7377%" y="437" width="0.0262%" height="15" fill="rgb(240,34,52)" fg:x="157242" fg:w="126"/><text x="32.9877%" y="447.50"></text></g><g><title>do_wp_page (154 samples, 0.03%)</title><rect x="32.7325%" y="453" width="0.0321%" height="15" fill="rgb(216,45,12)" fg:x="157217" fg:w="154"/><text x="32.9825%" y="463.50"></text></g><g><title>handle_pte_fault (161 samples, 0.03%)</title><rect x="32.7319%" y="469" width="0.0335%" height="15" fill="rgb(246,21,19)" fg:x="157214" fg:w="161"/><text x="32.9819%" y="479.50"></text></g><g><title>__handle_mm_fault (177 samples, 0.04%)</title><rect x="32.7288%" y="485" width="0.0369%" height="15" fill="rgb(213,98,42)" fg:x="157199" fg:w="177"/><text x="32.9788%" y="495.50"></text></g><g><title>handle_mm_fault (190 samples, 0.04%)</title><rect x="32.7267%" y="501" width="0.0396%" height="15" fill="rgb(250,136,47)" fg:x="157189" fg:w="190"/><text x="32.9767%" y="511.50"></text></g><g><title>do_user_addr_fault (209 samples, 0.04%)</title><rect x="32.7230%" y="517" width="0.0435%" height="15" fill="rgb(251,124,27)" fg:x="157171" fg:w="209"/><text x="32.9730%" y="527.50"></text></g><g><title>__put_user_nocheck_8 (223 samples, 0.05%)</title><rect x="32.7205%" y="565" width="0.0464%" height="15" fill="rgb(229,180,14)" fg:x="157159" fg:w="223"/><text x="32.9705%" y="575.50"></text></g><g><title>asm_exc_page_fault (214 samples, 0.04%)</title><rect x="32.7223%" y="549" width="0.0446%" height="15" fill="rgb(245,216,25)" fg:x="157168" fg:w="214"/><text x="32.9723%" y="559.50"></text></g><g><title>exc_page_fault (214 samples, 0.04%)</title><rect x="32.7223%" y="533" width="0.0446%" height="15" fill="rgb(251,43,5)" fg:x="157168" fg:w="214"/><text x="32.9723%" y="543.50"></text></g><g><title>__rseq_handle_notify_resume (320 samples, 0.07%)</title><rect x="32.7194%" y="581" width="0.0666%" height="15" fill="rgb(250,128,24)" fg:x="157154" fg:w="320"/><text x="32.9694%" y="591.50"></text></g><g><title>rseq_ip_fixup (57 samples, 0.01%)</title><rect x="32.7742%" y="565" width="0.0119%" height="15" fill="rgb(217,117,27)" fg:x="157417" fg:w="57"/><text x="33.0242%" y="575.50"></text></g><g><title>__get_user_8 (56 samples, 0.01%)</title><rect x="32.7744%" y="549" width="0.0117%" height="15" fill="rgb(245,147,4)" fg:x="157418" fg:w="56"/><text x="33.0244%" y="559.50"></text></g><g><title>exit_to_user_mode_loop (367 samples, 0.08%)</title><rect x="32.7167%" y="597" width="0.0764%" height="15" fill="rgb(242,201,35)" fg:x="157141" fg:w="367"/><text x="32.9667%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (393 samples, 0.08%)</title><rect x="32.7157%" y="613" width="0.0818%" height="15" fill="rgb(218,181,1)" fg:x="157136" fg:w="393"/><text x="32.9657%" y="623.50"></text></g><g><title>ret_from_fork (10,507 samples, 2.19%)</title><rect x="30.6104%" y="645" width="2.1876%" height="15" fill="rgb(222,6,29)" fg:x="147024" fg:w="10507"/><text x="30.8604%" y="655.50">r..</text></g><g><title>syscall_exit_to_user_mode (397 samples, 0.08%)</title><rect x="32.7153%" y="629" width="0.0827%" height="15" fill="rgb(208,186,3)" fg:x="157134" fg:w="397"/><text x="32.9653%" y="639.50"></text></g><g><title>arch_fork (12,203 samples, 2.54%)</title><rect x="30.2595%" y="661" width="2.5407%" height="15" fill="rgb(216,36,26)" fg:x="145339" fg:w="12203"/><text x="30.5095%" y="671.50">ar..</text></g><g><title>__GI__Fork (12,215 samples, 2.54%)</title><rect x="30.2585%" y="677" width="2.5432%" height="15" fill="rgb(248,201,23)" fg:x="145334" fg:w="12215"/><text x="30.5085%" y="687.50">__..</text></g><g><title>wp_page_copy (111 samples, 0.02%)</title><rect x="32.8246%" y="565" width="0.0231%" height="15" fill="rgb(251,170,31)" fg:x="157659" fg:w="111"/><text x="33.0746%" y="575.50"></text></g><g><title>do_wp_page (129 samples, 0.03%)</title><rect x="32.8210%" y="581" width="0.0269%" height="15" fill="rgb(207,110,25)" fg:x="157642" fg:w="129"/><text x="33.0710%" y="591.50"></text></g><g><title>handle_pte_fault (136 samples, 0.03%)</title><rect x="32.8198%" y="597" width="0.0283%" height="15" fill="rgb(250,54,15)" fg:x="157636" fg:w="136"/><text x="33.0698%" y="607.50"></text></g><g><title>__handle_mm_fault (164 samples, 0.03%)</title><rect x="32.8146%" y="613" width="0.0341%" height="15" fill="rgb(227,68,33)" fg:x="157611" fg:w="164"/><text x="33.0646%" y="623.50"></text></g><g><title>do_user_addr_fault (208 samples, 0.04%)</title><rect x="32.8060%" y="645" width="0.0433%" height="15" fill="rgb(238,34,41)" fg:x="157570" fg:w="208"/><text x="33.0560%" y="655.50"></text></g><g><title>handle_mm_fault (175 samples, 0.04%)</title><rect x="32.8129%" y="629" width="0.0364%" height="15" fill="rgb(220,11,15)" fg:x="157603" fg:w="175"/><text x="33.0629%" y="639.50"></text></g><g><title>exc_page_fault (225 samples, 0.05%)</title><rect x="32.8060%" y="661" width="0.0468%" height="15" fill="rgb(246,111,35)" fg:x="157570" fg:w="225"/><text x="33.0560%" y="671.50"></text></g><g><title>asm_exc_page_fault (226 samples, 0.05%)</title><rect x="32.8060%" y="677" width="0.0471%" height="15" fill="rgb(209,88,53)" fg:x="157570" fg:w="226"/><text x="33.0560%" y="687.50"></text></g><g><title>handle_pte_fault (107 samples, 0.02%)</title><rect x="32.8622%" y="581" width="0.0223%" height="15" fill="rgb(231,185,47)" fg:x="157840" fg:w="107"/><text x="33.1122%" y="591.50"></text></g><g><title>do_wp_page (100 samples, 0.02%)</title><rect x="32.8637%" y="565" width="0.0208%" height="15" fill="rgb(233,154,1)" fg:x="157847" fg:w="100"/><text x="33.1137%" y="575.50"></text></g><g><title>wp_page_copy (94 samples, 0.02%)</title><rect x="32.8650%" y="549" width="0.0196%" height="15" fill="rgb(225,15,46)" fg:x="157853" fg:w="94"/><text x="33.1150%" y="559.50"></text></g><g><title>__handle_mm_fault (111 samples, 0.02%)</title><rect x="32.8616%" y="597" width="0.0231%" height="15" fill="rgb(211,135,41)" fg:x="157837" fg:w="111"/><text x="33.1116%" y="607.50"></text></g><g><title>do_user_addr_fault (127 samples, 0.03%)</title><rect x="32.8587%" y="629" width="0.0264%" height="15" fill="rgb(208,54,0)" fg:x="157823" fg:w="127"/><text x="33.1087%" y="639.50"></text></g><g><title>handle_mm_fault (120 samples, 0.02%)</title><rect x="32.8602%" y="613" width="0.0250%" height="15" fill="rgb(244,136,14)" fg:x="157830" fg:w="120"/><text x="33.1102%" y="623.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="32.8579%" y="661" width="0.0281%" height="15" fill="rgb(241,56,14)" fg:x="157819" fg:w="135"/><text x="33.1079%" y="671.50"></text></g><g><title>exc_page_fault (132 samples, 0.03%)</title><rect x="32.8585%" y="645" width="0.0275%" height="15" fill="rgb(205,80,24)" fg:x="157822" fg:w="132"/><text x="33.1085%" y="655.50"></text></g><g><title>fork_system_setup (152 samples, 0.03%)</title><rect x="32.8552%" y="677" width="0.0316%" height="15" fill="rgb(220,57,4)" fg:x="157806" fg:w="152"/><text x="33.1052%" y="687.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="32.8914%" y="597" width="0.0146%" height="15" fill="rgb(226,193,50)" fg:x="157980" fg:w="70"/><text x="33.1414%" y="607.50"></text></g><g><title>__handle_mm_fault (68 samples, 0.01%)</title><rect x="32.8918%" y="581" width="0.0142%" height="15" fill="rgb(231,168,22)" fg:x="157982" fg:w="68"/><text x="33.1418%" y="591.50"></text></g><g><title>handle_pte_fault (63 samples, 0.01%)</title><rect x="32.8929%" y="565" width="0.0131%" height="15" fill="rgb(254,215,14)" fg:x="157987" fg:w="63"/><text x="33.1429%" y="575.50"></text></g><g><title>do_wp_page (63 samples, 0.01%)</title><rect x="32.8929%" y="549" width="0.0131%" height="15" fill="rgb(211,115,16)" fg:x="157987" fg:w="63"/><text x="33.1429%" y="559.50"></text></g><g><title>wp_page_copy (56 samples, 0.01%)</title><rect x="32.8943%" y="533" width="0.0117%" height="15" fill="rgb(236,210,16)" fg:x="157994" fg:w="56"/><text x="33.1443%" y="543.50"></text></g><g><title>do_user_addr_fault (73 samples, 0.02%)</title><rect x="32.8910%" y="613" width="0.0152%" height="15" fill="rgb(221,94,12)" fg:x="157978" fg:w="73"/><text x="33.1410%" y="623.50"></text></g><g><title>asm_exc_page_fault (75 samples, 0.02%)</title><rect x="32.8910%" y="645" width="0.0156%" height="15" fill="rgb(235,218,49)" fg:x="157978" fg:w="75"/><text x="33.1410%" y="655.50"></text></g><g><title>exc_page_fault (75 samples, 0.02%)</title><rect x="32.8910%" y="629" width="0.0156%" height="15" fill="rgb(217,114,14)" fg:x="157978" fg:w="75"/><text x="33.1410%" y="639.50"></text></g><g><title>reclaim_stacks (105 samples, 0.02%)</title><rect x="32.8868%" y="677" width="0.0219%" height="15" fill="rgb(216,145,22)" fg:x="157958" fg:w="105"/><text x="33.1368%" y="687.50"></text></g><g><title>list_del (96 samples, 0.02%)</title><rect x="32.8887%" y="661" width="0.0200%" height="15" fill="rgb(217,112,39)" fg:x="157967" fg:w="96"/><text x="33.1387%" y="671.50"></text></g><g><title>__libc_fork (12,764 samples, 2.66%)</title><rect x="30.2531%" y="693" width="2.6575%" height="15" fill="rgb(225,85,32)" fg:x="145308" fg:w="12764"/><text x="30.5031%" y="703.50">__..</text></g><g><title>filemap_map_pages (76 samples, 0.02%)</title><rect x="32.9193%" y="549" width="0.0158%" height="15" fill="rgb(245,209,47)" fg:x="158114" fg:w="76"/><text x="33.1693%" y="559.50"></text></g><g><title>do_fault (98 samples, 0.02%)</title><rect x="32.9174%" y="597" width="0.0204%" height="15" fill="rgb(218,220,15)" fg:x="158105" fg:w="98"/><text x="33.1674%" y="607.50"></text></g><g><title>do_read_fault (97 samples, 0.02%)</title><rect x="32.9176%" y="581" width="0.0202%" height="15" fill="rgb(222,202,31)" fg:x="158106" fg:w="97"/><text x="33.1676%" y="591.50"></text></g><g><title>xfs_filemap_map_pages (93 samples, 0.02%)</title><rect x="32.9185%" y="565" width="0.0194%" height="15" fill="rgb(243,203,4)" fg:x="158110" fg:w="93"/><text x="33.1685%" y="575.50"></text></g><g><title>do_user_addr_fault (129 samples, 0.03%)</title><rect x="32.9112%" y="661" width="0.0269%" height="15" fill="rgb(237,92,17)" fg:x="158075" fg:w="129"/><text x="33.1612%" y="671.50"></text></g><g><title>handle_mm_fault (110 samples, 0.02%)</title><rect x="32.9151%" y="645" width="0.0229%" height="15" fill="rgb(231,119,7)" fg:x="158094" fg:w="110"/><text x="33.1651%" y="655.50"></text></g><g><title>__handle_mm_fault (110 samples, 0.02%)</title><rect x="32.9151%" y="629" width="0.0229%" height="15" fill="rgb(237,82,41)" fg:x="158094" fg:w="110"/><text x="33.1651%" y="639.50"></text></g><g><title>handle_pte_fault (100 samples, 0.02%)</title><rect x="32.9172%" y="613" width="0.0208%" height="15" fill="rgb(226,81,48)" fg:x="158104" fg:w="100"/><text x="33.1672%" y="623.50"></text></g><g><title>asm_exc_page_fault (134 samples, 0.03%)</title><rect x="32.9105%" y="693" width="0.0279%" height="15" fill="rgb(234,70,51)" fg:x="158072" fg:w="134"/><text x="33.1605%" y="703.50"></text></g><g><title>exc_page_fault (132 samples, 0.03%)</title><rect x="32.9110%" y="677" width="0.0275%" height="15" fill="rgb(251,86,4)" fg:x="158074" fg:w="132"/><text x="33.1610%" y="687.50"></text></g><g><title>[dash] (38,516 samples, 8.02%)</title><rect x="24.9209%" y="709" width="8.0190%" height="15" fill="rgb(244,144,28)" fg:x="119697" fg:w="38516"/><text x="25.1709%" y="719.50">[dash]</text></g><g><title>asm_exc_page_fault (54 samples, 0.01%)</title><rect x="32.9434%" y="693" width="0.0112%" height="15" fill="rgb(232,161,39)" fg:x="158230" fg:w="54"/><text x="33.1934%" y="703.50"></text></g><g><title>exc_page_fault (54 samples, 0.01%)</title><rect x="32.9434%" y="677" width="0.0112%" height="15" fill="rgb(247,34,51)" fg:x="158230" fg:w="54"/><text x="33.1934%" y="687.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="32.9434%" y="661" width="0.0112%" height="15" fill="rgb(225,132,2)" fg:x="158230" fg:w="54"/><text x="33.1934%" y="671.50"></text></g><g><title>handle_mm_fault (49 samples, 0.01%)</title><rect x="32.9445%" y="645" width="0.0102%" height="15" fill="rgb(209,159,44)" fg:x="158235" fg:w="49"/><text x="33.1945%" y="655.50"></text></g><g><title>[libc.so.6] (74 samples, 0.02%)</title><rect x="32.9399%" y="709" width="0.0154%" height="15" fill="rgb(251,214,1)" fg:x="158213" fg:w="74"/><text x="33.1899%" y="719.50"></text></g><g><title>[dash] (38,626 samples, 8.04%)</title><rect x="24.9151%" y="725" width="8.0419%" height="15" fill="rgb(247,84,47)" fg:x="119669" fg:w="38626"/><text x="25.1651%" y="735.50">[dash]</text></g><g><title>[dash] (38,750 samples, 8.07%)</title><rect x="24.9069%" y="741" width="8.0677%" height="15" fill="rgb(240,111,43)" fg:x="119630" fg:w="38750"/><text x="25.1569%" y="751.50">[dash]</text></g><g><title>__GI___close (83 samples, 0.02%)</title><rect x="32.9753%" y="741" width="0.0173%" height="15" fill="rgb(215,214,35)" fg:x="158383" fg:w="83"/><text x="33.2253%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (416 samples, 0.09%)</title><rect x="33.0126%" y="581" width="0.0866%" height="15" fill="rgb(248,207,23)" fg:x="158562" fg:w="416"/><text x="33.2626%" y="591.50"></text></g><g><title>x86_pmu_enable (397 samples, 0.08%)</title><rect x="33.0165%" y="565" width="0.0827%" height="15" fill="rgb(214,186,4)" fg:x="158581" fg:w="397"/><text x="33.2665%" y="575.50"></text></g><g><title>intel_pmu_enable_all (396 samples, 0.08%)</title><rect x="33.0167%" y="549" width="0.0824%" height="15" fill="rgb(220,133,22)" fg:x="158582" fg:w="396"/><text x="33.2667%" y="559.50"></text></g><g><title>native_write_msr (392 samples, 0.08%)</title><rect x="33.0176%" y="533" width="0.0816%" height="15" fill="rgb(239,134,19)" fg:x="158586" fg:w="392"/><text x="33.2676%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (457 samples, 0.10%)</title><rect x="33.0109%" y="597" width="0.0951%" height="15" fill="rgb(250,140,9)" fg:x="158554" fg:w="457"/><text x="33.2609%" y="607.50"></text></g><g><title>schedule (478 samples, 0.10%)</title><rect x="33.0088%" y="629" width="0.0995%" height="15" fill="rgb(225,59,14)" fg:x="158544" fg:w="478"/><text x="33.2588%" y="639.50"></text></g><g><title>__schedule (475 samples, 0.10%)</title><rect x="33.0094%" y="613" width="0.0989%" height="15" fill="rgb(214,152,51)" fg:x="158547" fg:w="475"/><text x="33.2594%" y="623.50"></text></g><g><title>__exit_signal (69 samples, 0.01%)</title><rect x="33.1125%" y="581" width="0.0144%" height="15" fill="rgb(251,227,43)" fg:x="159042" fg:w="69"/><text x="33.3625%" y="591.50"></text></g><g><title>release_task (90 samples, 0.02%)</title><rect x="33.1125%" y="597" width="0.0187%" height="15" fill="rgb(241,96,17)" fg:x="159042" fg:w="90"/><text x="33.3625%" y="607.50"></text></g><g><title>do_wait (602 samples, 0.13%)</title><rect x="33.0065%" y="645" width="0.1253%" height="15" fill="rgb(234,198,43)" fg:x="158533" fg:w="602"/><text x="33.2565%" y="655.50"></text></g><g><title>wait_consider_task (113 samples, 0.02%)</title><rect x="33.1083%" y="629" width="0.0235%" height="15" fill="rgb(220,108,29)" fg:x="159022" fg:w="113"/><text x="33.3583%" y="639.50"></text></g><g><title>wait_task_zombie (104 samples, 0.02%)</title><rect x="33.1102%" y="613" width="0.0217%" height="15" fill="rgb(226,163,33)" fg:x="159031" fg:w="104"/><text x="33.3602%" y="623.50"></text></g><g><title>__x64_sys_wait4 (607 samples, 0.13%)</title><rect x="33.0061%" y="693" width="0.1264%" height="15" fill="rgb(205,194,45)" fg:x="158531" fg:w="607"/><text x="33.2561%" y="703.50"></text></g><g><title>__do_sys_wait4 (607 samples, 0.13%)</title><rect x="33.0061%" y="677" width="0.1264%" height="15" fill="rgb(206,143,44)" fg:x="158531" fg:w="607"/><text x="33.2561%" y="687.50"></text></g><g><title>kernel_wait4 (607 samples, 0.13%)</title><rect x="33.0061%" y="661" width="0.1264%" height="15" fill="rgb(236,136,36)" fg:x="158531" fg:w="607"/><text x="33.2561%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (626 samples, 0.13%)</title><rect x="33.0051%" y="725" width="0.1303%" height="15" fill="rgb(249,172,42)" fg:x="158526" fg:w="626"/><text x="33.2551%" y="735.50"></text></g><g><title>do_syscall_64 (625 samples, 0.13%)</title><rect x="33.0053%" y="709" width="0.1301%" height="15" fill="rgb(216,139,23)" fg:x="158527" fg:w="625"/><text x="33.2553%" y="719.50"></text></g><g><title>__GI___wait4 (662 samples, 0.14%)</title><rect x="32.9986%" y="741" width="0.1378%" height="15" fill="rgb(207,166,20)" fg:x="158495" fg:w="662"/><text x="33.2486%" y="751.50"></text></g><g><title>filemap_map_pages (63 samples, 0.01%)</title><rect x="33.1525%" y="581" width="0.0131%" height="15" fill="rgb(210,209,22)" fg:x="159234" fg:w="63"/><text x="33.4025%" y="591.50"></text></g><g><title>handle_mm_fault (89 samples, 0.02%)</title><rect x="33.1485%" y="677" width="0.0185%" height="15" fill="rgb(232,118,20)" fg:x="159215" fg:w="89"/><text x="33.3985%" y="687.50"></text></g><g><title>__handle_mm_fault (88 samples, 0.02%)</title><rect x="33.1487%" y="661" width="0.0183%" height="15" fill="rgb(238,113,42)" fg:x="159216" fg:w="88"/><text x="33.3987%" y="671.50"></text></g><g><title>handle_pte_fault (79 samples, 0.02%)</title><rect x="33.1506%" y="645" width="0.0164%" height="15" fill="rgb(231,42,5)" fg:x="159225" fg:w="79"/><text x="33.4006%" y="655.50"></text></g><g><title>do_fault (78 samples, 0.02%)</title><rect x="33.1508%" y="629" width="0.0162%" height="15" fill="rgb(243,166,24)" fg:x="159226" fg:w="78"/><text x="33.4008%" y="639.50"></text></g><g><title>do_read_fault (76 samples, 0.02%)</title><rect x="33.1512%" y="613" width="0.0158%" height="15" fill="rgb(237,226,12)" fg:x="159228" fg:w="76"/><text x="33.4012%" y="623.50"></text></g><g><title>xfs_filemap_map_pages (76 samples, 0.02%)</title><rect x="33.1512%" y="597" width="0.0158%" height="15" fill="rgb(229,133,24)" fg:x="159228" fg:w="76"/><text x="33.4012%" y="607.50"></text></g><g><title>do_user_addr_fault (96 samples, 0.02%)</title><rect x="33.1473%" y="693" width="0.0200%" height="15" fill="rgb(238,33,43)" fg:x="159209" fg:w="96"/><text x="33.3973%" y="703.50"></text></g><g><title>asm_exc_page_fault (97 samples, 0.02%)</title><rect x="33.1473%" y="725" width="0.0202%" height="15" fill="rgb(227,59,38)" fg:x="159209" fg:w="97"/><text x="33.3973%" y="735.50"></text></g><g><title>exc_page_fault (97 samples, 0.02%)</title><rect x="33.1473%" y="709" width="0.0202%" height="15" fill="rgb(230,97,0)" fg:x="159209" fg:w="97"/><text x="33.3973%" y="719.50"></text></g><g><title>__longjmp_chk (152 samples, 0.03%)</title><rect x="33.1364%" y="741" width="0.0316%" height="15" fill="rgb(250,173,50)" fg:x="159157" fg:w="152"/><text x="33.3864%" y="751.50"></text></g><g><title>[dash] (39,755 samples, 8.28%)</title><rect x="24.8953%" y="757" width="8.2770%" height="15" fill="rgb(240,15,50)" fg:x="119574" fg:w="39755"/><text x="25.1453%" y="767.50">[dash]</text></g><g><title>handle_pte_fault (58 samples, 0.01%)</title><rect x="33.1770%" y="677" width="0.0121%" height="15" fill="rgb(221,93,22)" fg:x="159352" fg:w="58"/><text x="33.4270%" y="687.50"></text></g><g><title>__handle_mm_fault (66 samples, 0.01%)</title><rect x="33.1756%" y="693" width="0.0137%" height="15" fill="rgb(245,180,53)" fg:x="159345" fg:w="66"/><text x="33.4256%" y="703.50"></text></g><g><title>do_user_addr_fault (79 samples, 0.02%)</title><rect x="33.1733%" y="725" width="0.0164%" height="15" fill="rgb(231,88,51)" fg:x="159334" fg:w="79"/><text x="33.4233%" y="735.50"></text></g><g><title>handle_mm_fault (71 samples, 0.01%)</title><rect x="33.1750%" y="709" width="0.0148%" height="15" fill="rgb(240,58,21)" fg:x="159342" fg:w="71"/><text x="33.4250%" y="719.50"></text></g><g><title>asm_exc_page_fault (85 samples, 0.02%)</title><rect x="33.1731%" y="757" width="0.0177%" height="15" fill="rgb(237,21,10)" fg:x="159333" fg:w="85"/><text x="33.4231%" y="767.50"></text></g><g><title>exc_page_fault (85 samples, 0.02%)</title><rect x="33.1731%" y="741" width="0.0177%" height="15" fill="rgb(218,43,11)" fg:x="159333" fg:w="85"/><text x="33.4231%" y="751.50"></text></g><g><title>[dash] (39,915 samples, 8.31%)</title><rect x="24.8824%" y="773" width="8.3103%" height="15" fill="rgb(218,221,29)" fg:x="119512" fg:w="39915"/><text x="25.1324%" y="783.50">[dash]</text></g><g><title>destroy_inode (57 samples, 0.01%)</title><rect x="33.2131%" y="533" width="0.0119%" height="15" fill="rgb(214,118,42)" fg:x="159525" fg:w="57"/><text x="33.4631%" y="543.50"></text></g><g><title>evict (69 samples, 0.01%)</title><rect x="33.2118%" y="549" width="0.0144%" height="15" fill="rgb(251,200,26)" fg:x="159519" fg:w="69"/><text x="33.4618%" y="559.50"></text></g><g><title>__dentry_kill (85 samples, 0.02%)</title><rect x="33.2093%" y="597" width="0.0177%" height="15" fill="rgb(237,101,39)" fg:x="159507" fg:w="85"/><text x="33.4593%" y="607.50"></text></g><g><title>dentry_unlink_inode (76 samples, 0.02%)</title><rect x="33.2112%" y="581" width="0.0158%" height="15" fill="rgb(251,117,11)" fg:x="159516" fg:w="76"/><text x="33.4612%" y="591.50"></text></g><g><title>iput (74 samples, 0.02%)</title><rect x="33.2116%" y="565" width="0.0154%" height="15" fill="rgb(216,223,23)" fg:x="159518" fg:w="74"/><text x="33.4616%" y="575.50"></text></g><g><title>dentry_kill (90 samples, 0.02%)</title><rect x="33.2089%" y="613" width="0.0187%" height="15" fill="rgb(251,54,12)" fg:x="159505" fg:w="90"/><text x="33.4589%" y="623.50"></text></g><g><title>dput (92 samples, 0.02%)</title><rect x="33.2087%" y="629" width="0.0192%" height="15" fill="rgb(254,176,54)" fg:x="159504" fg:w="92"/><text x="33.4587%" y="639.50"></text></g><g><title>pipe_release (51 samples, 0.01%)</title><rect x="33.2295%" y="629" width="0.0106%" height="15" fill="rgb(210,32,8)" fg:x="159604" fg:w="51"/><text x="33.4795%" y="639.50"></text></g><g><title>free_pipe_info (49 samples, 0.01%)</title><rect x="33.2299%" y="613" width="0.0102%" height="15" fill="rgb(235,52,38)" fg:x="159606" fg:w="49"/><text x="33.4799%" y="623.50"></text></g><g><title>__fput (188 samples, 0.04%)</title><rect x="33.2058%" y="645" width="0.0391%" height="15" fill="rgb(231,4,44)" fg:x="159490" fg:w="188"/><text x="33.4558%" y="655.50"></text></g><g><title>____fput (189 samples, 0.04%)</title><rect x="33.2058%" y="661" width="0.0393%" height="15" fill="rgb(249,2,32)" fg:x="159490" fg:w="189"/><text x="33.4558%" y="671.50"></text></g><g><title>exit_to_user_mode_loop (201 samples, 0.04%)</title><rect x="33.2037%" y="693" width="0.0418%" height="15" fill="rgb(224,65,26)" fg:x="159480" fg:w="201"/><text x="33.4537%" y="703.50"></text></g><g><title>task_work_run (192 samples, 0.04%)</title><rect x="33.2056%" y="677" width="0.0400%" height="15" fill="rgb(250,73,40)" fg:x="159489" fg:w="192"/><text x="33.4556%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (205 samples, 0.04%)</title><rect x="33.2033%" y="725" width="0.0427%" height="15" fill="rgb(253,177,16)" fg:x="159478" fg:w="205"/><text x="33.4533%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (203 samples, 0.04%)</title><rect x="33.2037%" y="709" width="0.0423%" height="15" fill="rgb(217,32,34)" fg:x="159480" fg:w="203"/><text x="33.4537%" y="719.50"></text></g><g><title>do_syscall_64 (264 samples, 0.05%)</title><rect x="33.2018%" y="741" width="0.0550%" height="15" fill="rgb(212,7,10)" fg:x="159471" fg:w="264"/><text x="33.4518%" y="751.50"></text></g><g><title>unload_network_ops_symbols (52 samples, 0.01%)</title><rect x="33.2460%" y="725" width="0.0108%" height="15" fill="rgb(245,89,8)" fg:x="159683" fg:w="52"/><text x="33.4960%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (265 samples, 0.06%)</title><rect x="33.2018%" y="757" width="0.0552%" height="15" fill="rgb(237,16,53)" fg:x="159471" fg:w="265"/><text x="33.4518%" y="767.50"></text></g><g><title>__GI___close (279 samples, 0.06%)</title><rect x="33.1993%" y="773" width="0.0581%" height="15" fill="rgb(250,204,30)" fg:x="159459" fg:w="279"/><text x="33.4493%" y="783.50"></text></g><g><title>__rseq_handle_notify_resume (50 samples, 0.01%)</title><rect x="33.2778%" y="677" width="0.0104%" height="15" fill="rgb(208,77,27)" fg:x="159836" fg:w="50"/><text x="33.5278%" y="687.50"></text></g><g><title>arch_do_signal_or_restart (109 samples, 0.02%)</title><rect x="33.2882%" y="677" width="0.0227%" height="15" fill="rgb(250,204,28)" fg:x="159886" fg:w="109"/><text x="33.5382%" y="687.50"></text></g><g><title>handle_signal (63 samples, 0.01%)</title><rect x="33.2978%" y="661" width="0.0131%" height="15" fill="rgb(244,63,21)" fg:x="159932" fg:w="63"/><text x="33.5478%" y="671.50"></text></g><g><title>exit_to_user_mode_loop (173 samples, 0.04%)</title><rect x="33.2764%" y="693" width="0.0360%" height="15" fill="rgb(236,85,44)" fg:x="159829" fg:w="173"/><text x="33.5264%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (187 samples, 0.04%)</title><rect x="33.2747%" y="725" width="0.0389%" height="15" fill="rgb(215,98,4)" fg:x="159821" fg:w="187"/><text x="33.5247%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (184 samples, 0.04%)</title><rect x="33.2753%" y="709" width="0.0383%" height="15" fill="rgb(235,38,11)" fg:x="159824" fg:w="184"/><text x="33.5253%" y="719.50"></text></g><g><title>kmem_cache_free (50 samples, 0.01%)</title><rect x="33.3909%" y="565" width="0.0104%" height="15" fill="rgb(254,186,25)" fg:x="160379" fg:w="50"/><text x="33.6409%" y="575.50"></text></g><g><title>__mmdrop (181 samples, 0.04%)</title><rect x="33.3825%" y="581" width="0.0377%" height="15" fill="rgb(225,55,31)" fg:x="160339" fg:w="181"/><text x="33.6325%" y="591.50"></text></g><g><title>pgd_free (91 samples, 0.02%)</title><rect x="33.4013%" y="565" width="0.0189%" height="15" fill="rgb(211,15,21)" fg:x="160429" fg:w="91"/><text x="33.6513%" y="575.50"></text></g><g><title>free_pages (62 samples, 0.01%)</title><rect x="33.4073%" y="549" width="0.0129%" height="15" fill="rgb(215,187,41)" fg:x="160458" fg:w="62"/><text x="33.6573%" y="559.50"></text></g><g><title>__free_pages (62 samples, 0.01%)</title><rect x="33.4073%" y="533" width="0.0129%" height="15" fill="rgb(248,69,32)" fg:x="160458" fg:w="62"/><text x="33.6573%" y="543.50"></text></g><g><title>free_unref_page (50 samples, 0.01%)</title><rect x="33.4098%" y="517" width="0.0104%" height="15" fill="rgb(252,102,52)" fg:x="160470" fg:w="50"/><text x="33.6598%" y="527.50"></text></g><g><title>__perf_event_task_sched_in (5,176 samples, 1.08%)</title><rect x="33.4202%" y="581" width="1.0776%" height="15" fill="rgb(253,140,32)" fg:x="160520" fg:w="5176"/><text x="33.6702%" y="591.50"></text></g><g><title>x86_pmu_enable (5,077 samples, 1.06%)</title><rect x="33.4408%" y="565" width="1.0570%" height="15" fill="rgb(216,56,42)" fg:x="160619" fg:w="5077"/><text x="33.6908%" y="575.50"></text></g><g><title>intel_pmu_enable_all (5,024 samples, 1.05%)</title><rect x="33.4519%" y="549" width="1.0460%" height="15" fill="rgb(216,184,14)" fg:x="160672" fg:w="5024"/><text x="33.7019%" y="559.50"></text></g><g><title>native_write_msr (4,986 samples, 1.04%)</title><rect x="33.4598%" y="533" width="1.0381%" height="15" fill="rgb(237,187,27)" fg:x="160710" fg:w="4986"/><text x="33.7098%" y="543.50"></text></g><g><title>asm_sysvec_irq_work (63 samples, 0.01%)</title><rect x="34.5006%" y="581" width="0.0131%" height="15" fill="rgb(219,65,3)" fg:x="165709" fg:w="63"/><text x="34.7506%" y="591.50"></text></g><g><title>sysvec_irq_work (62 samples, 0.01%)</title><rect x="34.5008%" y="565" width="0.0129%" height="15" fill="rgb(245,83,25)" fg:x="165710" fg:w="62"/><text x="34.7508%" y="575.50"></text></g><g><title>__mod_lruvec_page_state (69 samples, 0.01%)</title><rect x="34.5303%" y="549" width="0.0144%" height="15" fill="rgb(214,205,45)" fg:x="165852" fg:w="69"/><text x="34.7803%" y="559.50"></text></g><g><title>account_kernel_stack.isra.0 (103 samples, 0.02%)</title><rect x="34.5241%" y="565" width="0.0214%" height="15" fill="rgb(241,20,18)" fg:x="165822" fg:w="103"/><text x="34.7741%" y="575.50"></text></g><g><title>__queue_work (53 samples, 0.01%)</title><rect x="34.5478%" y="533" width="0.0110%" height="15" fill="rgb(232,163,23)" fg:x="165936" fg:w="53"/><text x="34.7978%" y="543.50"></text></g><g><title>put_task_stack (207 samples, 0.04%)</title><rect x="34.5179%" y="581" width="0.0431%" height="15" fill="rgb(214,5,46)" fg:x="165792" fg:w="207"/><text x="34.7679%" y="591.50"></text></g><g><title>vfree_atomic (70 samples, 0.01%)</title><rect x="34.5464%" y="565" width="0.0146%" height="15" fill="rgb(229,78,17)" fg:x="165929" fg:w="70"/><text x="34.7964%" y="575.50"></text></g><g><title>queue_work_on (65 samples, 0.01%)</title><rect x="34.5474%" y="549" width="0.0135%" height="15" fill="rgb(248,89,10)" fg:x="165934" fg:w="65"/><text x="34.7974%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (5,771 samples, 1.20%)</title><rect x="33.3623%" y="597" width="1.2015%" height="15" fill="rgb(248,54,15)" fg:x="160242" fg:w="5771"/><text x="33.6123%" y="607.50"></text></g><g><title>schedule (5,983 samples, 1.25%)</title><rect x="33.3353%" y="629" width="1.2457%" height="15" fill="rgb(223,116,6)" fg:x="160112" fg:w="5983"/><text x="33.5853%" y="639.50"></text></g><g><title>__schedule (5,982 samples, 1.25%)</title><rect x="33.3355%" y="613" width="1.2455%" height="15" fill="rgb(205,125,38)" fg:x="160113" fg:w="5982"/><text x="33.5855%" y="623.50"></text></g><g><title>pipe_read (6,063 samples, 1.26%)</title><rect x="33.3228%" y="645" width="1.2623%" height="15" fill="rgb(251,78,38)" fg:x="160052" fg:w="6063"/><text x="33.5728%" y="655.50"></text></g><g><title>new_sync_read (6,090 samples, 1.27%)</title><rect x="33.3184%" y="661" width="1.2679%" height="15" fill="rgb(253,78,28)" fg:x="160031" fg:w="6090"/><text x="33.5684%" y="671.50"></text></g><g><title>__x64_sys_read (6,114 samples, 1.27%)</title><rect x="33.3159%" y="709" width="1.2729%" height="15" fill="rgb(209,120,3)" fg:x="160019" fg:w="6114"/><text x="33.5659%" y="719.50"></text></g><g><title>ksys_read (6,114 samples, 1.27%)</title><rect x="33.3159%" y="693" width="1.2729%" height="15" fill="rgb(238,229,9)" fg:x="160019" fg:w="6114"/><text x="33.5659%" y="703.50"></text></g><g><title>vfs_read (6,111 samples, 1.27%)</title><rect x="33.3165%" y="677" width="1.2723%" height="15" fill="rgb(253,159,18)" fg:x="160022" fg:w="6111"/><text x="33.5665%" y="687.50"></text></g><g><title>do_syscall_64 (6,355 samples, 1.32%)</title><rect x="33.2680%" y="741" width="1.3231%" height="15" fill="rgb(244,42,34)" fg:x="159789" fg:w="6355"/><text x="33.5180%" y="751.50"></text></g><g><title>unload_network_ops_symbols (6,136 samples, 1.28%)</title><rect x="33.3136%" y="725" width="1.2775%" height="15" fill="rgb(224,8,7)" fg:x="160008" fg:w="6136"/><text x="33.5636%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (6,358 samples, 1.32%)</title><rect x="33.2678%" y="757" width="1.3237%" height="15" fill="rgb(210,201,45)" fg:x="159788" fg:w="6358"/><text x="33.5178%" y="767.50"></text></g><g><title>__GI___libc_read (6,402 samples, 1.33%)</title><rect x="33.2593%" y="773" width="1.3329%" height="15" fill="rgb(252,185,21)" fg:x="159747" fg:w="6402"/><text x="33.5093%" y="783.50"></text></g><g><title>create_pipe_files (52 samples, 0.01%)</title><rect x="34.5941%" y="693" width="0.0108%" height="15" fill="rgb(223,131,1)" fg:x="166158" fg:w="52"/><text x="34.8441%" y="703.50"></text></g><g><title>__x64_sys_pipe2 (61 samples, 0.01%)</title><rect x="34.5930%" y="725" width="0.0127%" height="15" fill="rgb(245,141,16)" fg:x="166153" fg:w="61"/><text x="34.8430%" y="735.50"></text></g><g><title>do_pipe2 (58 samples, 0.01%)</title><rect x="34.5936%" y="709" width="0.0121%" height="15" fill="rgb(229,55,45)" fg:x="166156" fg:w="58"/><text x="34.8436%" y="719.50"></text></g><g><title>__GI___pipe (66 samples, 0.01%)</title><rect x="34.5922%" y="773" width="0.0137%" height="15" fill="rgb(208,92,15)" fg:x="166149" fg:w="66"/><text x="34.8422%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.01%)</title><rect x="34.5926%" y="757" width="0.0133%" height="15" fill="rgb(234,185,47)" fg:x="166151" fg:w="64"/><text x="34.8426%" y="767.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="34.5928%" y="741" width="0.0131%" height="15" fill="rgb(253,104,50)" fg:x="166152" fg:w="63"/><text x="34.8428%" y="751.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (88 samples, 0.02%)</title><rect x="34.6211%" y="437" width="0.0183%" height="15" fill="rgb(205,70,7)" fg:x="166288" fg:w="88"/><text x="34.8711%" y="447.50"></text></g><g><title>_ZdlPv (87 samples, 0.02%)</title><rect x="34.6213%" y="421" width="0.0181%" height="15" fill="rgb(240,178,43)" fg:x="166289" fg:w="87"/><text x="34.8713%" y="431.50"></text></g><g><title>_ZdlPv (87 samples, 0.02%)</title><rect x="34.6213%" y="405" width="0.0181%" height="15" fill="rgb(214,112,2)" fg:x="166289" fg:w="87"/><text x="34.8713%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (87 samples, 0.02%)</title><rect x="34.6213%" y="389" width="0.0181%" height="15" fill="rgb(206,46,17)" fg:x="166289" fg:w="87"/><text x="34.8713%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (74 samples, 0.02%)</title><rect x="34.6240%" y="373" width="0.0154%" height="15" fill="rgb(225,220,16)" fg:x="166302" fg:w="74"/><text x="34.8740%" y="383.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (118 samples, 0.02%)</title><rect x="34.6178%" y="469" width="0.0246%" height="15" fill="rgb(238,65,40)" fg:x="166272" fg:w="118"/><text x="34.8678%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (107 samples, 0.02%)</title><rect x="34.6201%" y="453" width="0.0223%" height="15" fill="rgb(230,151,21)" fg:x="166283" fg:w="107"/><text x="34.8701%" y="463.50"></text></g><g><title>_ZdlPv (56 samples, 0.01%)</title><rect x="34.6469%" y="405" width="0.0117%" height="15" fill="rgb(218,58,49)" fg:x="166412" fg:w="56"/><text x="34.8969%" y="415.50"></text></g><g><title>_ZdlPv (67 samples, 0.01%)</title><rect x="34.6457%" y="421" width="0.0139%" height="15" fill="rgb(219,179,14)" fg:x="166406" fg:w="67"/><text x="34.8957%" y="431.50"></text></g><g><title>_ZdlPv (77 samples, 0.02%)</title><rect x="34.6442%" y="437" width="0.0160%" height="15" fill="rgb(223,72,1)" fg:x="166399" fg:w="77"/><text x="34.8942%" y="447.50"></text></g><g><title>_ZdlPv (85 samples, 0.02%)</title><rect x="34.6432%" y="453" width="0.0177%" height="15" fill="rgb(238,126,10)" fg:x="166394" fg:w="85"/><text x="34.8932%" y="463.50"></text></g><g><title>_ZdlPv (109 samples, 0.02%)</title><rect x="34.6424%" y="469" width="0.0227%" height="15" fill="rgb(224,206,38)" fg:x="166390" fg:w="109"/><text x="34.8924%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (88 samples, 0.02%)</title><rect x="34.7036%" y="309" width="0.0183%" height="15" fill="rgb(212,201,54)" fg:x="166684" fg:w="88"/><text x="34.9536%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (68 samples, 0.01%)</title><rect x="34.7077%" y="293" width="0.0142%" height="15" fill="rgb(218,154,48)" fg:x="166704" fg:w="68"/><text x="34.9577%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (93 samples, 0.02%)</title><rect x="34.7027%" y="325" width="0.0194%" height="15" fill="rgb(232,93,24)" fg:x="166680" fg:w="93"/><text x="34.9527%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.02%)</title><rect x="34.7011%" y="341" width="0.0212%" height="15" fill="rgb(245,30,21)" fg:x="166672" fg:w="102"/><text x="34.9511%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (131 samples, 0.03%)</title><rect x="34.6952%" y="357" width="0.0273%" height="15" fill="rgb(242,148,29)" fg:x="166644" fg:w="131"/><text x="34.9452%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (146 samples, 0.03%)</title><rect x="34.6925%" y="373" width="0.0304%" height="15" fill="rgb(244,153,54)" fg:x="166631" fg:w="146"/><text x="34.9425%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (155 samples, 0.03%)</title><rect x="34.6909%" y="389" width="0.0323%" height="15" fill="rgb(252,87,22)" fg:x="166623" fg:w="155"/><text x="34.9409%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (166 samples, 0.03%)</title><rect x="34.6894%" y="405" width="0.0346%" height="15" fill="rgb(210,51,29)" fg:x="166616" fg:w="166"/><text x="34.9394%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (185 samples, 0.04%)</title><rect x="34.6857%" y="421" width="0.0385%" height="15" fill="rgb(242,136,47)" fg:x="166598" fg:w="185"/><text x="34.9357%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (216 samples, 0.04%)</title><rect x="34.6800%" y="437" width="0.0450%" height="15" fill="rgb(238,68,4)" fg:x="166571" fg:w="216"/><text x="34.9300%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (243 samples, 0.05%)</title><rect x="34.6755%" y="453" width="0.0506%" height="15" fill="rgb(242,161,30)" fg:x="166549" fg:w="243"/><text x="34.9255%" y="463.50"></text></g><g><title>_ZdlPv (541 samples, 0.11%)</title><rect x="34.6140%" y="485" width="0.1126%" height="15" fill="rgb(218,58,44)" fg:x="166254" fg:w="541"/><text x="34.8640%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (294 samples, 0.06%)</title><rect x="34.6655%" y="469" width="0.0612%" height="15" fill="rgb(252,125,32)" fg:x="166501" fg:w="294"/><text x="34.9155%" y="479.50"></text></g><g><title>_ZdlPv (547 samples, 0.11%)</title><rect x="34.6132%" y="517" width="0.1139%" height="15" fill="rgb(219,178,0)" fg:x="166250" fg:w="547"/><text x="34.8632%" y="527.50"></text></g><g><title>_ZdlPv (547 samples, 0.11%)</title><rect x="34.6132%" y="501" width="0.1139%" height="15" fill="rgb(213,152,7)" fg:x="166250" fg:w="547"/><text x="34.8632%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (67 samples, 0.01%)</title><rect x="34.7302%" y="421" width="0.0139%" height="15" fill="rgb(249,109,34)" fg:x="166812" fg:w="67"/><text x="34.9802%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (72 samples, 0.01%)</title><rect x="34.7294%" y="437" width="0.0150%" height="15" fill="rgb(232,96,21)" fg:x="166808" fg:w="72"/><text x="34.9794%" y="447.50"></text></g><g><title>_ZdlPv (54 samples, 0.01%)</title><rect x="34.7448%" y="421" width="0.0112%" height="15" fill="rgb(228,27,39)" fg:x="166882" fg:w="54"/><text x="34.9948%" y="431.50"></text></g><g><title>_ZdlPv (62 samples, 0.01%)</title><rect x="34.7444%" y="437" width="0.0129%" height="15" fill="rgb(211,182,52)" fg:x="166880" fg:w="62"/><text x="34.9944%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (67 samples, 0.01%)</title><rect x="34.7835%" y="325" width="0.0139%" height="15" fill="rgb(234,178,38)" fg:x="167068" fg:w="67"/><text x="35.0335%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (50 samples, 0.01%)</title><rect x="34.7871%" y="309" width="0.0104%" height="15" fill="rgb(221,111,3)" fg:x="167085" fg:w="50"/><text x="35.0371%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (73 samples, 0.02%)</title><rect x="34.7825%" y="341" width="0.0152%" height="15" fill="rgb(228,175,21)" fg:x="167063" fg:w="73"/><text x="35.0325%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (76 samples, 0.02%)</title><rect x="34.7821%" y="357" width="0.0158%" height="15" fill="rgb(228,174,43)" fg:x="167061" fg:w="76"/><text x="35.0321%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.02%)</title><rect x="34.7771%" y="389" width="0.0212%" height="15" fill="rgb(211,191,0)" fg:x="167037" fg:w="102"/><text x="35.0271%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (89 samples, 0.02%)</title><rect x="34.7798%" y="373" width="0.0185%" height="15" fill="rgb(253,117,3)" fg:x="167050" fg:w="89"/><text x="35.0298%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (123 samples, 0.03%)</title><rect x="34.7731%" y="405" width="0.0256%" height="15" fill="rgb(241,127,19)" fg:x="167018" fg:w="123"/><text x="35.0231%" y="415.50"></text></g><g><title>_ZdlPv (344 samples, 0.07%)</title><rect x="34.7277%" y="453" width="0.0716%" height="15" fill="rgb(218,103,12)" fg:x="166800" fg:w="344"/><text x="34.9777%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (198 samples, 0.04%)</title><rect x="34.7581%" y="437" width="0.0412%" height="15" fill="rgb(236,214,43)" fg:x="166946" fg:w="198"/><text x="35.0081%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (143 samples, 0.03%)</title><rect x="34.7696%" y="421" width="0.0298%" height="15" fill="rgb(244,144,19)" fg:x="167001" fg:w="143"/><text x="35.0196%" y="431.50"></text></g><g><title>_ZdlPv (346 samples, 0.07%)</title><rect x="34.7277%" y="469" width="0.0720%" height="15" fill="rgb(246,188,10)" fg:x="166800" fg:w="346"/><text x="34.9777%" y="479.50"></text></g><g><title>_ZdlPv (347 samples, 0.07%)</title><rect x="34.7277%" y="501" width="0.0722%" height="15" fill="rgb(212,193,33)" fg:x="166800" fg:w="347"/><text x="34.9777%" y="511.50"></text></g><g><title>_ZdlPv (347 samples, 0.07%)</title><rect x="34.7277%" y="485" width="0.0722%" height="15" fill="rgb(241,51,29)" fg:x="166800" fg:w="347"/><text x="34.9777%" y="495.50"></text></g><g><title>cshook_security_sb_free_security (376 samples, 0.08%)</title><rect x="34.7275%" y="517" width="0.0783%" height="15" fill="rgb(211,58,19)" fg:x="166799" fg:w="376"/><text x="34.9775%" y="527.50"></text></g><g><title>cshook_security_file_permission (935 samples, 0.19%)</title><rect x="34.6130%" y="565" width="0.1947%" height="15" fill="rgb(229,111,26)" fg:x="166249" fg:w="935"/><text x="34.8630%" y="575.50"></text></g><g><title>cshook_security_sb_free_security (935 samples, 0.19%)</title><rect x="34.6130%" y="549" width="0.1947%" height="15" fill="rgb(213,115,40)" fg:x="166249" fg:w="935"/><text x="34.8630%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (934 samples, 0.19%)</title><rect x="34.6132%" y="533" width="0.1945%" height="15" fill="rgb(209,56,44)" fg:x="166250" fg:w="934"/><text x="34.8632%" y="543.50"></text></g><g><title>exec_binprm (953 samples, 0.20%)</title><rect x="34.6095%" y="661" width="0.1984%" height="15" fill="rgb(230,108,32)" fg:x="166232" fg:w="953"/><text x="34.8595%" y="671.50"></text></g><g><title>search_binary_handler (953 samples, 0.20%)</title><rect x="34.6095%" y="645" width="0.1984%" height="15" fill="rgb(216,165,31)" fg:x="166232" fg:w="953"/><text x="34.8595%" y="655.50"></text></g><g><title>security_bprm_check (943 samples, 0.20%)</title><rect x="34.6115%" y="629" width="0.1963%" height="15" fill="rgb(218,122,21)" fg:x="166242" fg:w="943"/><text x="34.8615%" y="639.50"></text></g><g><title>pinnedhook_security_bprm_check_security (942 samples, 0.20%)</title><rect x="34.6117%" y="613" width="0.1961%" height="15" fill="rgb(223,224,47)" fg:x="166243" fg:w="942"/><text x="34.8617%" y="623.50"></text></g><g><title>cshook_security_bprm_check_security (942 samples, 0.20%)</title><rect x="34.6117%" y="597" width="0.1961%" height="15" fill="rgb(238,102,44)" fg:x="166243" fg:w="942"/><text x="34.8617%" y="607.50"></text></g><g><title>cshook_security_file_permission (942 samples, 0.20%)</title><rect x="34.6117%" y="581" width="0.1961%" height="15" fill="rgb(236,46,40)" fg:x="166243" fg:w="942"/><text x="34.8617%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (97 samples, 0.02%)</title><rect x="34.8089%" y="581" width="0.0202%" height="15" fill="rgb(247,202,50)" fg:x="167190" fg:w="97"/><text x="35.0589%" y="591.50"></text></g><g><title>x86_pmu_enable (95 samples, 0.02%)</title><rect x="34.8093%" y="565" width="0.0198%" height="15" fill="rgb(209,99,20)" fg:x="167192" fg:w="95"/><text x="35.0593%" y="575.50"></text></g><g><title>intel_pmu_enable_all (94 samples, 0.02%)</title><rect x="34.8095%" y="549" width="0.0196%" height="15" fill="rgb(252,27,34)" fg:x="167193" fg:w="94"/><text x="35.0595%" y="559.50"></text></g><g><title>native_write_msr (94 samples, 0.02%)</title><rect x="34.8095%" y="533" width="0.0196%" height="15" fill="rgb(215,206,23)" fg:x="167193" fg:w="94"/><text x="35.0595%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (103 samples, 0.02%)</title><rect x="34.8085%" y="597" width="0.0214%" height="15" fill="rgb(212,135,36)" fg:x="167188" fg:w="103"/><text x="35.0585%" y="607.50"></text></g><g><title>stop_one_cpu (106 samples, 0.02%)</title><rect x="34.8083%" y="645" width="0.0221%" height="15" fill="rgb(240,189,1)" fg:x="167187" fg:w="106"/><text x="35.0583%" y="655.50"></text></g><g><title>__cond_resched (106 samples, 0.02%)</title><rect x="34.8083%" y="629" width="0.0221%" height="15" fill="rgb(242,56,20)" fg:x="167187" fg:w="106"/><text x="35.0583%" y="639.50"></text></g><g><title>__schedule (105 samples, 0.02%)</title><rect x="34.8085%" y="613" width="0.0219%" height="15" fill="rgb(247,132,33)" fg:x="167188" fg:w="105"/><text x="35.0585%" y="623.50"></text></g><g><title>sched_exec (109 samples, 0.02%)</title><rect x="34.8079%" y="661" width="0.0227%" height="15" fill="rgb(208,149,11)" fg:x="167185" fg:w="109"/><text x="35.0579%" y="671.50"></text></g><g><title>bprm_execve (1,090 samples, 0.23%)</title><rect x="34.6074%" y="693" width="0.2269%" height="15" fill="rgb(211,33,11)" fg:x="166222" fg:w="1090"/><text x="34.8574%" y="703.50"></text></g><g><title>bprm_execve.part.0 (1,090 samples, 0.23%)</title><rect x="34.6074%" y="677" width="0.2269%" height="15" fill="rgb(221,29,38)" fg:x="166222" fg:w="1090"/><text x="34.8574%" y="687.50"></text></g><g><title>__GI_execve (1,103 samples, 0.23%)</title><rect x="34.6059%" y="773" width="0.2296%" height="15" fill="rgb(206,182,49)" fg:x="166215" fg:w="1103"/><text x="34.8559%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,103 samples, 0.23%)</title><rect x="34.6059%" y="757" width="0.2296%" height="15" fill="rgb(216,140,1)" fg:x="166215" fg:w="1103"/><text x="34.8559%" y="767.50"></text></g><g><title>do_syscall_64 (1,102 samples, 0.23%)</title><rect x="34.6061%" y="741" width="0.2294%" height="15" fill="rgb(232,57,40)" fg:x="166216" fg:w="1102"/><text x="34.8561%" y="751.50"></text></g><g><title>__x64_sys_execve (1,102 samples, 0.23%)</title><rect x="34.6061%" y="725" width="0.2294%" height="15" fill="rgb(224,186,18)" fg:x="166216" fg:w="1102"/><text x="34.8561%" y="735.50"></text></g><g><title>do_execveat_common.isra.0 (1,102 samples, 0.23%)</title><rect x="34.6061%" y="709" width="0.2294%" height="15" fill="rgb(215,121,11)" fg:x="166216" fg:w="1102"/><text x="34.8561%" y="719.50"></text></g><g><title>filemap_map_pages (58 samples, 0.01%)</title><rect x="34.8435%" y="581" width="0.0121%" height="15" fill="rgb(245,147,10)" fg:x="167356" fg:w="58"/><text x="35.0935%" y="591.50"></text></g><g><title>xfs_filemap_map_pages (66 samples, 0.01%)</title><rect x="34.8433%" y="597" width="0.0137%" height="15" fill="rgb(238,153,13)" fg:x="167355" fg:w="66"/><text x="35.0933%" y="607.50"></text></g><g><title>do_read_fault (69 samples, 0.01%)</title><rect x="34.8433%" y="613" width="0.0144%" height="15" fill="rgb(233,108,0)" fg:x="167355" fg:w="69"/><text x="35.0933%" y="623.50"></text></g><g><title>handle_mm_fault (77 samples, 0.02%)</title><rect x="34.8420%" y="677" width="0.0160%" height="15" fill="rgb(212,157,17)" fg:x="167349" fg:w="77"/><text x="35.0920%" y="687.50"></text></g><g><title>__handle_mm_fault (77 samples, 0.02%)</title><rect x="34.8420%" y="661" width="0.0160%" height="15" fill="rgb(225,213,38)" fg:x="167349" fg:w="77"/><text x="35.0920%" y="671.50"></text></g><g><title>handle_pte_fault (74 samples, 0.02%)</title><rect x="34.8426%" y="645" width="0.0154%" height="15" fill="rgb(248,16,11)" fg:x="167352" fg:w="74"/><text x="35.0926%" y="655.50"></text></g><g><title>do_fault (73 samples, 0.02%)</title><rect x="34.8429%" y="629" width="0.0152%" height="15" fill="rgb(241,33,4)" fg:x="167353" fg:w="73"/><text x="35.0929%" y="639.50"></text></g><g><title>do_user_addr_fault (83 samples, 0.02%)</title><rect x="34.8410%" y="693" width="0.0173%" height="15" fill="rgb(222,26,43)" fg:x="167344" fg:w="83"/><text x="35.0910%" y="703.50"></text></g><g><title>asm_exc_page_fault (93 samples, 0.02%)</title><rect x="34.8410%" y="725" width="0.0194%" height="15" fill="rgb(243,29,36)" fg:x="167344" fg:w="93"/><text x="35.0910%" y="735.50"></text></g><g><title>exc_page_fault (93 samples, 0.02%)</title><rect x="34.8410%" y="709" width="0.0194%" height="15" fill="rgb(241,9,27)" fg:x="167344" fg:w="93"/><text x="35.0910%" y="719.50"></text></g><g><title>anon_vma_fork (75 samples, 0.02%)</title><rect x="34.8968%" y="597" width="0.0156%" height="15" fill="rgb(205,117,26)" fg:x="167612" fg:w="75"/><text x="35.1468%" y="607.50"></text></g><g><title>copy_pte_range (74 samples, 0.02%)</title><rect x="34.9253%" y="549" width="0.0154%" height="15" fill="rgb(209,80,39)" fg:x="167749" fg:w="74"/><text x="35.1753%" y="559.50"></text></g><g><title>copy_pmd_range (102 samples, 0.02%)</title><rect x="34.9201%" y="565" width="0.0212%" height="15" fill="rgb(239,155,6)" fg:x="167724" fg:w="102"/><text x="35.1701%" y="575.50"></text></g><g><title>copy_p4d_range (133 samples, 0.03%)</title><rect x="34.9141%" y="581" width="0.0277%" height="15" fill="rgb(212,104,12)" fg:x="167695" fg:w="133"/><text x="35.1641%" y="591.50"></text></g><g><title>copy_page_range (141 samples, 0.03%)</title><rect x="34.9128%" y="597" width="0.0294%" height="15" fill="rgb(234,204,3)" fg:x="167689" fg:w="141"/><text x="35.1628%" y="607.50"></text></g><g><title>vm_area_dup (71 samples, 0.01%)</title><rect x="34.9459%" y="597" width="0.0148%" height="15" fill="rgb(251,218,7)" fg:x="167848" fg:w="71"/><text x="35.1959%" y="607.50"></text></g><g><title>dup_mmap (357 samples, 0.07%)</title><rect x="34.8887%" y="613" width="0.0743%" height="15" fill="rgb(221,81,32)" fg:x="167573" fg:w="357"/><text x="35.1387%" y="623.50"></text></g><g><title>dup_mm (387 samples, 0.08%)</title><rect x="34.8872%" y="629" width="0.0806%" height="15" fill="rgb(214,152,26)" fg:x="167566" fg:w="387"/><text x="35.1372%" y="639.50"></text></g><g><title>inherit_event.constprop.0 (119 samples, 0.02%)</title><rect x="34.9817%" y="581" width="0.0248%" height="15" fill="rgb(223,22,3)" fg:x="168020" fg:w="119"/><text x="35.2317%" y="591.50"></text></g><g><title>perf_event_alloc (94 samples, 0.02%)</title><rect x="34.9869%" y="565" width="0.0196%" height="15" fill="rgb(207,174,7)" fg:x="168045" fg:w="94"/><text x="35.2369%" y="575.50"></text></g><g><title>perf_init_event (61 samples, 0.01%)</title><rect x="34.9938%" y="549" width="0.0127%" height="15" fill="rgb(224,19,52)" fg:x="168078" fg:w="61"/><text x="35.2438%" y="559.50"></text></g><g><title>perf_try_init_event (59 samples, 0.01%)</title><rect x="34.9942%" y="533" width="0.0123%" height="15" fill="rgb(228,24,14)" fg:x="168080" fg:w="59"/><text x="35.2442%" y="543.50"></text></g><g><title>x86_pmu_event_init (57 samples, 0.01%)</title><rect x="34.9946%" y="517" width="0.0119%" height="15" fill="rgb(230,153,43)" fg:x="168082" fg:w="57"/><text x="35.2446%" y="527.50"></text></g><g><title>perf_event_init_context (136 samples, 0.03%)</title><rect x="34.9790%" y="613" width="0.0283%" height="15" fill="rgb(231,106,12)" fg:x="168007" fg:w="136"/><text x="35.2290%" y="623.50"></text></g><g><title>inherit_task_group.isra.0 (133 samples, 0.03%)</title><rect x="34.9796%" y="597" width="0.0277%" height="15" fill="rgb(215,92,2)" fg:x="168010" fg:w="133"/><text x="35.2296%" y="607.50"></text></g><g><title>perf_event_init_task (141 samples, 0.03%)</title><rect x="34.9790%" y="629" width="0.0294%" height="15" fill="rgb(249,143,25)" fg:x="168007" fg:w="141"/><text x="35.2290%" y="639.50"></text></g><g><title>copy_process (718 samples, 0.15%)</title><rect x="34.8626%" y="645" width="0.1495%" height="15" fill="rgb(252,7,35)" fg:x="167448" fg:w="718"/><text x="35.1126%" y="655.50"></text></g><g><title>__x64_sys_clone (779 samples, 0.16%)</title><rect x="34.8610%" y="693" width="0.1622%" height="15" fill="rgb(216,69,40)" fg:x="167440" fg:w="779"/><text x="35.1110%" y="703.50"></text></g><g><title>__do_sys_clone (779 samples, 0.16%)</title><rect x="34.8610%" y="677" width="0.1622%" height="15" fill="rgb(240,36,33)" fg:x="167440" fg:w="779"/><text x="35.1110%" y="687.50"></text></g><g><title>kernel_clone (778 samples, 0.16%)</title><rect x="34.8612%" y="661" width="0.1620%" height="15" fill="rgb(231,128,14)" fg:x="167441" fg:w="778"/><text x="35.1112%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (784 samples, 0.16%)</title><rect x="34.8603%" y="725" width="0.1632%" height="15" fill="rgb(245,143,14)" fg:x="167437" fg:w="784"/><text x="35.1103%" y="735.50"></text></g><g><title>do_syscall_64 (781 samples, 0.16%)</title><rect x="34.8610%" y="709" width="0.1626%" height="15" fill="rgb(222,130,28)" fg:x="167440" fg:w="781"/><text x="35.1110%" y="719.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.01%)</title><rect x="35.0771%" y="533" width="0.0106%" height="15" fill="rgb(212,10,48)" fg:x="168478" fg:w="51"/><text x="35.3271%" y="543.50"></text></g><g><title>__alloc_pages (64 samples, 0.01%)</title><rect x="35.0748%" y="549" width="0.0133%" height="15" fill="rgb(254,118,45)" fg:x="168467" fg:w="64"/><text x="35.3248%" y="559.50"></text></g><g><title>alloc_pages_vma (74 samples, 0.02%)</title><rect x="35.0733%" y="565" width="0.0154%" height="15" fill="rgb(228,6,45)" fg:x="168460" fg:w="74"/><text x="35.3233%" y="575.50"></text></g><g><title>copy_page (49 samples, 0.01%)</title><rect x="35.0887%" y="565" width="0.0102%" height="15" fill="rgb(241,18,35)" fg:x="168534" fg:w="49"/><text x="35.3387%" y="575.50"></text></g><g><title>do_wp_page (268 samples, 0.06%)</title><rect x="35.0535%" y="597" width="0.0558%" height="15" fill="rgb(227,214,53)" fg:x="168365" fg:w="268"/><text x="35.3035%" y="607.50"></text></g><g><title>wp_page_copy (241 samples, 0.05%)</title><rect x="35.0592%" y="581" width="0.0502%" height="15" fill="rgb(224,107,51)" fg:x="168392" fg:w="241"/><text x="35.3092%" y="591.50"></text></g><g><title>handle_pte_fault (280 samples, 0.06%)</title><rect x="35.0519%" y="613" width="0.0583%" height="15" fill="rgb(248,60,28)" fg:x="168357" fg:w="280"/><text x="35.3019%" y="623.50"></text></g><g><title>__handle_mm_fault (320 samples, 0.07%)</title><rect x="35.0440%" y="629" width="0.0666%" height="15" fill="rgb(249,101,23)" fg:x="168319" fg:w="320"/><text x="35.2940%" y="639.50"></text></g><g><title>handle_mm_fault (346 samples, 0.07%)</title><rect x="35.0394%" y="645" width="0.0720%" height="15" fill="rgb(228,51,19)" fg:x="168297" fg:w="346"/><text x="35.2894%" y="655.50"></text></g><g><title>do_user_addr_fault (404 samples, 0.08%)</title><rect x="35.0284%" y="661" width="0.0841%" height="15" fill="rgb(213,20,6)" fg:x="168244" fg:w="404"/><text x="35.2784%" y="671.50"></text></g><g><title>exc_page_fault (418 samples, 0.09%)</title><rect x="35.0273%" y="677" width="0.0870%" height="15" fill="rgb(212,124,10)" fg:x="168239" fg:w="418"/><text x="35.2773%" y="687.50"></text></g><g><title>asm_exc_page_fault (419 samples, 0.09%)</title><rect x="35.0273%" y="693" width="0.0872%" height="15" fill="rgb(248,3,40)" fg:x="168239" fg:w="419"/><text x="35.2773%" y="703.50"></text></g><g><title>__put_user_nocheck_4 (432 samples, 0.09%)</title><rect x="35.0248%" y="709" width="0.0899%" height="15" fill="rgb(223,178,23)" fg:x="168227" fg:w="432"/><text x="35.2748%" y="719.50"></text></g><g><title>asm_exc_page_fault (96 samples, 0.02%)</title><rect x="35.1152%" y="709" width="0.0200%" height="15" fill="rgb(240,132,45)" fg:x="168661" fg:w="96"/><text x="35.3652%" y="719.50"></text></g><g><title>__mmdrop (81 samples, 0.02%)</title><rect x="35.1772%" y="677" width="0.0169%" height="15" fill="rgb(245,164,36)" fg:x="168959" fg:w="81"/><text x="35.4272%" y="687.50"></text></g><g><title>pgd_free (54 samples, 0.01%)</title><rect x="35.1828%" y="661" width="0.0112%" height="15" fill="rgb(231,188,53)" fg:x="168986" fg:w="54"/><text x="35.4328%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (4,959 samples, 1.03%)</title><rect x="35.1941%" y="677" width="1.0325%" height="15" fill="rgb(237,198,39)" fg:x="169040" fg:w="4959"/><text x="35.4441%" y="687.50"></text></g><g><title>x86_pmu_enable (4,840 samples, 1.01%)</title><rect x="35.2189%" y="661" width="1.0077%" height="15" fill="rgb(223,120,35)" fg:x="169159" fg:w="4840"/><text x="35.4689%" y="671.50"></text></g><g><title>intel_pmu_enable_all (4,812 samples, 1.00%)</title><rect x="35.2247%" y="645" width="1.0019%" height="15" fill="rgb(253,107,49)" fg:x="169187" fg:w="4812"/><text x="35.4747%" y="655.50"></text></g><g><title>native_write_msr (4,780 samples, 1.00%)</title><rect x="35.2314%" y="629" width="0.9952%" height="15" fill="rgb(216,44,31)" fg:x="169219" fg:w="4780"/><text x="35.4814%" y="639.50"></text></g><g><title>__sysvec_irq_work (49 samples, 0.01%)</title><rect x="36.2326%" y="645" width="0.0102%" height="15" fill="rgb(253,87,21)" fg:x="174028" fg:w="49"/><text x="36.4826%" y="655.50"></text></g><g><title>irq_work_run (49 samples, 0.01%)</title><rect x="36.2326%" y="629" width="0.0102%" height="15" fill="rgb(226,18,2)" fg:x="174028" fg:w="49"/><text x="36.4826%" y="639.50"></text></g><g><title>irq_work_run_list (49 samples, 0.01%)</title><rect x="36.2326%" y="613" width="0.0102%" height="15" fill="rgb(216,8,46)" fg:x="174028" fg:w="49"/><text x="36.4826%" y="623.50"></text></g><g><title>asm_sysvec_irq_work (61 samples, 0.01%)</title><rect x="36.2305%" y="677" width="0.0127%" height="15" fill="rgb(226,140,39)" fg:x="174018" fg:w="61"/><text x="36.4805%" y="687.50"></text></g><g><title>sysvec_irq_work (60 samples, 0.01%)</title><rect x="36.2307%" y="661" width="0.0125%" height="15" fill="rgb(221,194,54)" fg:x="174019" fg:w="60"/><text x="36.4807%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (5,265 samples, 1.10%)</title><rect x="35.1568%" y="693" width="1.0962%" height="15" fill="rgb(213,92,11)" fg:x="168861" fg:w="5265"/><text x="35.4068%" y="703.50"></text></g><g><title>schedule_tail (5,369 samples, 1.12%)</title><rect x="35.1368%" y="709" width="1.1178%" height="15" fill="rgb(229,162,46)" fg:x="168765" fg:w="5369"/><text x="35.3868%" y="719.50"></text></g><g><title>do_user_addr_fault (56 samples, 0.01%)</title><rect x="36.2572%" y="597" width="0.0117%" height="15" fill="rgb(214,111,36)" fg:x="174146" fg:w="56"/><text x="36.5072%" y="607.50"></text></g><g><title>handle_mm_fault (53 samples, 0.01%)</title><rect x="36.2578%" y="581" width="0.0110%" height="15" fill="rgb(207,6,21)" fg:x="174149" fg:w="53"/><text x="36.5078%" y="591.50"></text></g><g><title>__put_user_nocheck_8 (61 samples, 0.01%)</title><rect x="36.2563%" y="645" width="0.0127%" height="15" fill="rgb(213,127,38)" fg:x="174142" fg:w="61"/><text x="36.5063%" y="655.50"></text></g><g><title>asm_exc_page_fault (57 samples, 0.01%)</title><rect x="36.2572%" y="629" width="0.0119%" height="15" fill="rgb(238,118,32)" fg:x="174146" fg:w="57"/><text x="36.5072%" y="639.50"></text></g><g><title>exc_page_fault (57 samples, 0.01%)</title><rect x="36.2572%" y="613" width="0.0119%" height="15" fill="rgb(240,139,39)" fg:x="174146" fg:w="57"/><text x="36.5072%" y="623.50"></text></g><g><title>__rseq_handle_notify_resume (82 samples, 0.02%)</title><rect x="36.2563%" y="661" width="0.0171%" height="15" fill="rgb(235,10,37)" fg:x="174142" fg:w="82"/><text x="36.5063%" y="671.50"></text></g><g><title>exit_to_user_mode_loop (120 samples, 0.02%)</title><rect x="36.2557%" y="677" width="0.0250%" height="15" fill="rgb(249,171,38)" fg:x="174139" fg:w="120"/><text x="36.5057%" y="687.50"></text></g><g><title>ret_from_fork (6,038 samples, 1.26%)</title><rect x="35.0242%" y="725" width="1.2571%" height="15" fill="rgb(242,144,32)" fg:x="168224" fg:w="6038"/><text x="35.2742%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (128 samples, 0.03%)</title><rect x="36.2547%" y="709" width="0.0266%" height="15" fill="rgb(217,117,21)" fg:x="174134" fg:w="128"/><text x="36.5047%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (124 samples, 0.03%)</title><rect x="36.2555%" y="693" width="0.0258%" height="15" fill="rgb(249,87,1)" fg:x="174138" fg:w="124"/><text x="36.5055%" y="703.50"></text></g><g><title>arch_fork (6,939 samples, 1.44%)</title><rect x="34.8376%" y="741" width="1.4447%" height="15" fill="rgb(248,196,48)" fg:x="167328" fg:w="6939"/><text x="35.0876%" y="751.50"></text></g><g><title>__GI__Fork (6,947 samples, 1.45%)</title><rect x="34.8376%" y="757" width="1.4464%" height="15" fill="rgb(251,206,33)" fg:x="167328" fg:w="6947"/><text x="35.0876%" y="767.50"></text></g><g><title>do_wp_page (57 samples, 0.01%)</title><rect x="36.2940%" y="661" width="0.0119%" height="15" fill="rgb(232,141,28)" fg:x="174323" fg:w="57"/><text x="36.5440%" y="671.50"></text></g><g><title>handle_pte_fault (63 samples, 0.01%)</title><rect x="36.2938%" y="677" width="0.0131%" height="15" fill="rgb(209,167,14)" fg:x="174322" fg:w="63"/><text x="36.5438%" y="687.50"></text></g><g><title>__handle_mm_fault (77 samples, 0.02%)</title><rect x="36.2911%" y="693" width="0.0160%" height="15" fill="rgb(225,11,50)" fg:x="174309" fg:w="77"/><text x="36.5411%" y="703.50"></text></g><g><title>do_user_addr_fault (95 samples, 0.02%)</title><rect x="36.2878%" y="725" width="0.0198%" height="15" fill="rgb(209,50,20)" fg:x="174293" fg:w="95"/><text x="36.5378%" y="735.50"></text></g><g><title>handle_mm_fault (81 samples, 0.02%)</title><rect x="36.2907%" y="709" width="0.0169%" height="15" fill="rgb(212,17,46)" fg:x="174307" fg:w="81"/><text x="36.5407%" y="719.50"></text></g><g><title>asm_exc_page_fault (100 samples, 0.02%)</title><rect x="36.2871%" y="757" width="0.0208%" height="15" fill="rgb(216,101,39)" fg:x="174290" fg:w="100"/><text x="36.5371%" y="767.50"></text></g><g><title>exc_page_fault (98 samples, 0.02%)</title><rect x="36.2875%" y="741" width="0.0204%" height="15" fill="rgb(212,228,48)" fg:x="174292" fg:w="98"/><text x="36.5375%" y="751.50"></text></g><g><title>asm_exc_page_fault (56 samples, 0.01%)</title><rect x="36.3088%" y="741" width="0.0117%" height="15" fill="rgb(250,6,50)" fg:x="174394" fg:w="56"/><text x="36.5588%" y="751.50"></text></g><g><title>exc_page_fault (56 samples, 0.01%)</title><rect x="36.3088%" y="725" width="0.0117%" height="15" fill="rgb(250,160,48)" fg:x="174394" fg:w="56"/><text x="36.5588%" y="735.50"></text></g><g><title>do_user_addr_fault (55 samples, 0.01%)</title><rect x="36.3090%" y="709" width="0.0115%" height="15" fill="rgb(244,216,33)" fg:x="174395" fg:w="55"/><text x="36.5590%" y="719.50"></text></g><g><title>fork_system_setup (63 samples, 0.01%)</title><rect x="36.3080%" y="757" width="0.0131%" height="15" fill="rgb(207,157,5)" fg:x="174390" fg:w="63"/><text x="36.5580%" y="767.50"></text></g><g><title>reclaim_stacks (67 samples, 0.01%)</title><rect x="36.3211%" y="757" width="0.0139%" height="15" fill="rgb(228,199,8)" fg:x="174453" fg:w="67"/><text x="36.5711%" y="767.50"></text></g><g><title>list_del (55 samples, 0.01%)</title><rect x="36.3236%" y="741" width="0.0115%" height="15" fill="rgb(227,80,20)" fg:x="174465" fg:w="55"/><text x="36.5736%" y="751.50"></text></g><g><title>__libc_fork (7,209 samples, 1.50%)</title><rect x="34.8356%" y="773" width="1.5009%" height="15" fill="rgb(222,9,33)" fg:x="167318" fg:w="7209"/><text x="35.0856%" y="783.50"></text></g><g><title>do_fault (54 samples, 0.01%)</title><rect x="36.3411%" y="677" width="0.0112%" height="15" fill="rgb(239,44,28)" fg:x="174549" fg:w="54"/><text x="36.5911%" y="687.50"></text></g><g><title>do_read_fault (54 samples, 0.01%)</title><rect x="36.3411%" y="661" width="0.0112%" height="15" fill="rgb(249,187,43)" fg:x="174549" fg:w="54"/><text x="36.5911%" y="671.50"></text></g><g><title>xfs_filemap_map_pages (53 samples, 0.01%)</title><rect x="36.3413%" y="645" width="0.0110%" height="15" fill="rgb(216,141,28)" fg:x="174550" fg:w="53"/><text x="36.5913%" y="655.50"></text></g><g><title>handle_pte_fault (59 samples, 0.01%)</title><rect x="36.3402%" y="693" width="0.0123%" height="15" fill="rgb(230,154,53)" fg:x="174545" fg:w="59"/><text x="36.5902%" y="703.50"></text></g><g><title>handle_mm_fault (66 samples, 0.01%)</title><rect x="36.3390%" y="725" width="0.0137%" height="15" fill="rgb(227,82,4)" fg:x="174539" fg:w="66"/><text x="36.5890%" y="735.50"></text></g><g><title>__handle_mm_fault (66 samples, 0.01%)</title><rect x="36.3390%" y="709" width="0.0137%" height="15" fill="rgb(220,107,16)" fg:x="174539" fg:w="66"/><text x="36.5890%" y="719.50"></text></g><g><title>asm_exc_page_fault (79 samples, 0.02%)</title><rect x="36.3365%" y="773" width="0.0164%" height="15" fill="rgb(207,187,2)" fg:x="174527" fg:w="79"/><text x="36.5865%" y="783.50"></text></g><g><title>exc_page_fault (79 samples, 0.02%)</title><rect x="36.3365%" y="757" width="0.0164%" height="15" fill="rgb(210,162,52)" fg:x="174527" fg:w="79"/><text x="36.5865%" y="767.50"></text></g><g><title>do_user_addr_fault (79 samples, 0.02%)</title><rect x="36.3365%" y="741" width="0.0164%" height="15" fill="rgb(217,216,49)" fg:x="174527" fg:w="79"/><text x="36.5865%" y="751.50"></text></g><g><title>[dash] (55,149 samples, 11.48%)</title><rect x="24.8720%" y="789" width="11.4820%" height="15" fill="rgb(218,146,49)" fg:x="119462" fg:w="55149"/><text x="25.1220%" y="799.50">[dash]</text></g><g><title>[dash] (55,225 samples, 11.50%)</title><rect x="24.8668%" y="805" width="11.4978%" height="15" fill="rgb(216,55,40)" fg:x="119437" fg:w="55225"/><text x="25.1168%" y="815.50">[dash]</text></g><g><title>[dash] (55,250 samples, 11.50%)</title><rect x="24.8634%" y="821" width="11.5030%" height="15" fill="rgb(208,196,21)" fg:x="119421" fg:w="55250"/><text x="25.1134%" y="831.50">[dash]</text></g><g><title>[dash] (55,264 samples, 11.51%)</title><rect x="24.8620%" y="837" width="11.5060%" height="15" fill="rgb(242,117,42)" fg:x="119414" fg:w="55264"/><text x="25.1120%" y="847.50">[dash]</text></g><g><title>[dash] (55,286 samples, 11.51%)</title><rect x="24.8605%" y="853" width="11.5105%" height="15" fill="rgb(210,11,23)" fg:x="119407" fg:w="55286"/><text x="25.1105%" y="863.50">[dash]</text></g><g><title>[dash] (55,309 samples, 11.52%)</title><rect x="24.8593%" y="869" width="11.5153%" height="15" fill="rgb(217,110,2)" fg:x="119401" fg:w="55309"/><text x="25.1093%" y="879.50">[dash]</text></g><g><title>taskstats_exit (95 samples, 0.02%)</title><rect x="36.3892%" y="773" width="0.0198%" height="15" fill="rgb(229,77,54)" fg:x="174780" fg:w="95"/><text x="36.6392%" y="783.50"></text></g><g><title>__GI__exit (155 samples, 0.03%)</title><rect x="36.3771%" y="869" width="0.0323%" height="15" fill="rgb(218,53,16)" fg:x="174722" fg:w="155"/><text x="36.6271%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (154 samples, 0.03%)</title><rect x="36.3773%" y="853" width="0.0321%" height="15" fill="rgb(215,38,13)" fg:x="174723" fg:w="154"/><text x="36.6273%" y="863.50"></text></g><g><title>do_syscall_64 (153 samples, 0.03%)</title><rect x="36.3775%" y="837" width="0.0319%" height="15" fill="rgb(235,42,18)" fg:x="174724" fg:w="153"/><text x="36.6275%" y="847.50"></text></g><g><title>__x64_sys_exit_group (153 samples, 0.03%)</title><rect x="36.3775%" y="821" width="0.0319%" height="15" fill="rgb(219,66,54)" fg:x="174724" fg:w="153"/><text x="36.6275%" y="831.50"></text></g><g><title>do_group_exit (153 samples, 0.03%)</title><rect x="36.3775%" y="805" width="0.0319%" height="15" fill="rgb(222,205,4)" fg:x="174724" fg:w="153"/><text x="36.6275%" y="815.50"></text></g><g><title>do_exit (152 samples, 0.03%)</title><rect x="36.3777%" y="789" width="0.0316%" height="15" fill="rgb(227,213,46)" fg:x="174725" fg:w="152"/><text x="36.6277%" y="799.50"></text></g><g><title>[dash] (55,482 samples, 11.55%)</title><rect x="24.8586%" y="885" width="11.5513%" height="15" fill="rgb(250,145,42)" fg:x="119398" fg:w="55482"/><text x="25.1086%" y="895.50">[dash]</text></g><g><title>__libc_start_call_main (55,501 samples, 11.56%)</title><rect x="24.8576%" y="917" width="11.5553%" height="15" fill="rgb(219,15,2)" fg:x="119393" fg:w="55501"/><text x="25.1076%" y="927.50">__libc_start_call..</text></g><g><title>[dash] (55,501 samples, 11.56%)</title><rect x="24.8576%" y="901" width="11.5553%" height="15" fill="rgb(231,181,52)" fg:x="119393" fg:w="55501"/><text x="25.1076%" y="911.50">[dash]</text></g><g><title>__libc_start_main_impl (55,503 samples, 11.56%)</title><rect x="24.8574%" y="933" width="11.5557%" height="15" fill="rgb(235,1,42)" fg:x="119392" fg:w="55503"/><text x="25.1074%" y="943.50">__libc_start_main..</text></g><g><title>[dash] (55,521 samples, 11.56%)</title><rect x="24.8538%" y="949" width="11.5595%" height="15" fill="rgb(249,88,27)" fg:x="119375" fg:w="55521"/><text x="25.1038%" y="959.50">[dash]</text></g><g><title>[unknown] (56 samples, 0.01%)</title><rect x="36.4150%" y="949" width="0.0117%" height="15" fill="rgb(235,145,16)" fg:x="174904" fg:w="56"/><text x="36.6650%" y="959.50"></text></g><g><title>_dl_map_object_deps (59 samples, 0.01%)</title><rect x="36.4333%" y="869" width="0.0123%" height="15" fill="rgb(237,114,19)" fg:x="174992" fg:w="59"/><text x="36.6833%" y="879.50"></text></g><g><title>_dl_catch_exception (58 samples, 0.01%)</title><rect x="36.4335%" y="853" width="0.0121%" height="15" fill="rgb(238,51,50)" fg:x="174993" fg:w="58"/><text x="36.6835%" y="863.50"></text></g><g><title>openaux (58 samples, 0.01%)</title><rect x="36.4335%" y="837" width="0.0121%" height="15" fill="rgb(205,194,25)" fg:x="174993" fg:w="58"/><text x="36.6835%" y="847.50"></text></g><g><title>_dl_map_object (58 samples, 0.01%)</title><rect x="36.4335%" y="821" width="0.0121%" height="15" fill="rgb(215,203,17)" fg:x="174993" fg:w="58"/><text x="36.6835%" y="831.50"></text></g><g><title>elf_dynamic_do_Rela (53 samples, 0.01%)</title><rect x="36.4487%" y="853" width="0.0110%" height="15" fill="rgb(233,112,49)" fg:x="175066" fg:w="53"/><text x="36.6987%" y="863.50"></text></g><g><title>_dl_relocate_object (67 samples, 0.01%)</title><rect x="36.4462%" y="869" width="0.0139%" height="15" fill="rgb(241,130,26)" fg:x="175054" fg:w="67"/><text x="36.6962%" y="879.50"></text></g><g><title>dl_main (181 samples, 0.04%)</title><rect x="36.4304%" y="885" width="0.0377%" height="15" fill="rgb(252,223,19)" fg:x="174978" fg:w="181"/><text x="36.6804%" y="895.50"></text></g><g><title>_dl_start_final (191 samples, 0.04%)</title><rect x="36.4295%" y="917" width="0.0398%" height="15" fill="rgb(211,95,25)" fg:x="174974" fg:w="191"/><text x="36.6795%" y="927.50"></text></g><g><title>_dl_sysdep_start (189 samples, 0.04%)</title><rect x="36.4300%" y="901" width="0.0393%" height="15" fill="rgb(251,182,27)" fg:x="174976" fg:w="189"/><text x="36.6800%" y="911.50"></text></g><g><title>_dl_start (200 samples, 0.04%)</title><rect x="36.4293%" y="933" width="0.0416%" height="15" fill="rgb(238,24,4)" fg:x="174973" fg:w="200"/><text x="36.6793%" y="943.50"></text></g><g><title>_start (217 samples, 0.05%)</title><rect x="36.4293%" y="949" width="0.0452%" height="15" fill="rgb(224,220,25)" fg:x="174973" fg:w="217"/><text x="36.6793%" y="959.50"></text></g><g><title>asm_exc_page_fault (422 samples, 0.09%)</title><rect x="36.4745%" y="949" width="0.0879%" height="15" fill="rgb(239,133,26)" fg:x="175190" fg:w="422"/><text x="36.7245%" y="959.50"></text></g><g><title>unlink_anon_vmas (114 samples, 0.02%)</title><rect x="36.5730%" y="725" width="0.0237%" height="15" fill="rgb(211,94,48)" fg:x="175663" fg:w="114"/><text x="36.8230%" y="735.50"></text></g><g><title>free_pgtables (158 samples, 0.03%)</title><rect x="36.5686%" y="741" width="0.0329%" height="15" fill="rgb(239,87,6)" fg:x="175642" fg:w="158"/><text x="36.8186%" y="751.50"></text></g><g><title>remove_vma (62 samples, 0.01%)</title><rect x="36.6055%" y="741" width="0.0129%" height="15" fill="rgb(227,62,0)" fg:x="175819" fg:w="62"/><text x="36.8555%" y="751.50"></text></g><g><title>tlb_finish_mmu (63 samples, 0.01%)</title><rect x="36.6184%" y="741" width="0.0131%" height="15" fill="rgb(211,226,4)" fg:x="175881" fg:w="63"/><text x="36.8684%" y="751.50"></text></g><g><title>unmap_single_vma (205 samples, 0.04%)</title><rect x="36.6344%" y="725" width="0.0427%" height="15" fill="rgb(253,38,52)" fg:x="175958" fg:w="205"/><text x="36.8844%" y="735.50"></text></g><g><title>unmap_page_range (202 samples, 0.04%)</title><rect x="36.6350%" y="709" width="0.0421%" height="15" fill="rgb(229,126,40)" fg:x="175961" fg:w="202"/><text x="36.8850%" y="719.50"></text></g><g><title>zap_pmd_range.isra.0 (190 samples, 0.04%)</title><rect x="36.6375%" y="693" width="0.0396%" height="15" fill="rgb(229,165,44)" fg:x="175973" fg:w="190"/><text x="36.8875%" y="703.50"></text></g><g><title>zap_pte_range (166 samples, 0.03%)</title><rect x="36.6425%" y="677" width="0.0346%" height="15" fill="rgb(247,95,47)" fg:x="175997" fg:w="166"/><text x="36.8925%" y="687.50"></text></g><g><title>exit_mmap (526 samples, 0.11%)</title><rect x="36.5678%" y="757" width="0.1095%" height="15" fill="rgb(216,140,30)" fg:x="175638" fg:w="526"/><text x="36.8178%" y="767.50"></text></g><g><title>unmap_vmas (217 samples, 0.05%)</title><rect x="36.6321%" y="741" width="0.0452%" height="15" fill="rgb(246,214,8)" fg:x="175947" fg:w="217"/><text x="36.8821%" y="751.50"></text></g><g><title>mmput (537 samples, 0.11%)</title><rect x="36.5657%" y="773" width="0.1118%" height="15" fill="rgb(227,224,15)" fg:x="175628" fg:w="537"/><text x="36.8157%" y="783.50"></text></g><g><title>exec_mmap (545 samples, 0.11%)</title><rect x="36.5649%" y="789" width="0.1135%" height="15" fill="rgb(233,175,4)" fg:x="175624" fg:w="545"/><text x="36.8149%" y="799.50"></text></g><g><title>begin_new_exec (573 samples, 0.12%)</title><rect x="36.5626%" y="805" width="0.1193%" height="15" fill="rgb(221,66,45)" fg:x="175613" fg:w="573"/><text x="36.8126%" y="815.50"></text></g><g><title>load_elf_binary (619 samples, 0.13%)</title><rect x="36.5624%" y="821" width="0.1289%" height="15" fill="rgb(221,178,18)" fg:x="175612" fg:w="619"/><text x="36.8124%" y="831.50"></text></g><g><title>__x64_sys_execve (622 samples, 0.13%)</title><rect x="36.5624%" y="917" width="0.1295%" height="15" fill="rgb(213,81,29)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (622 samples, 0.13%)</title><rect x="36.5624%" y="901" width="0.1295%" height="15" fill="rgb(220,89,49)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="911.50"></text></g><g><title>bprm_execve (622 samples, 0.13%)</title><rect x="36.5624%" y="885" width="0.1295%" height="15" fill="rgb(227,60,33)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="895.50"></text></g><g><title>bprm_execve.part.0 (622 samples, 0.13%)</title><rect x="36.5624%" y="869" width="0.1295%" height="15" fill="rgb(205,113,12)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="879.50"></text></g><g><title>exec_binprm (622 samples, 0.13%)</title><rect x="36.5624%" y="853" width="0.1295%" height="15" fill="rgb(211,32,1)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="863.50"></text></g><g><title>search_binary_handler (622 samples, 0.13%)</title><rect x="36.5624%" y="837" width="0.1295%" height="15" fill="rgb(246,2,12)" fg:x="175612" fg:w="622"/><text x="36.8124%" y="847.50"></text></g><g><title>do_acct_process (50 samples, 0.01%)</title><rect x="36.6937%" y="853" width="0.0104%" height="15" fill="rgb(243,37,27)" fg:x="176243" fg:w="50"/><text x="36.9437%" y="863.50"></text></g><g><title>acct_process (55 samples, 0.01%)</title><rect x="36.6937%" y="869" width="0.0115%" height="15" fill="rgb(248,211,31)" fg:x="176243" fg:w="55"/><text x="36.9437%" y="879.50"></text></g><g><title>__put_anon_vma (50 samples, 0.01%)</title><rect x="36.7379%" y="789" width="0.0104%" height="15" fill="rgb(242,146,47)" fg:x="176455" fg:w="50"/><text x="36.9879%" y="799.50"></text></g><g><title>kmem_cache_free (67 samples, 0.01%)</title><rect x="36.7566%" y="789" width="0.0139%" height="15" fill="rgb(206,70,20)" fg:x="176545" fg:w="67"/><text x="37.0066%" y="799.50"></text></g><g><title>unlink_anon_vmas (183 samples, 0.04%)</title><rect x="36.7329%" y="805" width="0.0381%" height="15" fill="rgb(215,10,51)" fg:x="176431" fg:w="183"/><text x="36.9829%" y="815.50"></text></g><g><title>unlink_file_vma (49 samples, 0.01%)</title><rect x="36.7710%" y="805" width="0.0102%" height="15" fill="rgb(243,178,53)" fg:x="176614" fg:w="49"/><text x="37.0210%" y="815.50"></text></g><g><title>free_pgtables (294 samples, 0.06%)</title><rect x="36.7221%" y="821" width="0.0612%" height="15" fill="rgb(233,221,20)" fg:x="176379" fg:w="294"/><text x="36.9721%" y="831.50"></text></g><g><title>memcg_slab_free_hook (50 samples, 0.01%)</title><rect x="36.7995%" y="773" width="0.0104%" height="15" fill="rgb(218,95,35)" fg:x="176751" fg:w="50"/><text x="37.0495%" y="783.50"></text></g><g><title>kmem_cache_free (90 samples, 0.02%)</title><rect x="36.7924%" y="789" width="0.0187%" height="15" fill="rgb(229,13,5)" fg:x="176717" fg:w="90"/><text x="37.0424%" y="799.50"></text></g><g><title>vm_area_free (91 samples, 0.02%)</title><rect x="36.7924%" y="805" width="0.0189%" height="15" fill="rgb(252,164,30)" fg:x="176717" fg:w="91"/><text x="37.0424%" y="815.50"></text></g><g><title>remove_vma (107 samples, 0.02%)</title><rect x="36.7904%" y="821" width="0.0223%" height="15" fill="rgb(232,68,36)" fg:x="176707" fg:w="107"/><text x="37.0404%" y="831.50"></text></g><g><title>free_unref_page_list (54 samples, 0.01%)</title><rect x="36.8393%" y="773" width="0.0112%" height="15" fill="rgb(219,59,54)" fg:x="176942" fg:w="54"/><text x="37.0893%" y="783.50"></text></g><g><title>free_pages_and_swap_cache (177 samples, 0.04%)</title><rect x="36.8160%" y="805" width="0.0369%" height="15" fill="rgb(250,92,33)" fg:x="176830" fg:w="177"/><text x="37.0660%" y="815.50"></text></g><g><title>release_pages (168 samples, 0.03%)</title><rect x="36.8178%" y="789" width="0.0350%" height="15" fill="rgb(229,162,54)" fg:x="176839" fg:w="168"/><text x="37.0678%" y="799.50"></text></g><g><title>tlb_finish_mmu (225 samples, 0.05%)</title><rect x="36.8126%" y="821" width="0.0468%" height="15" fill="rgb(244,114,52)" fg:x="176814" fg:w="225"/><text x="37.0626%" y="831.50"></text></g><g><title>page_remove_rmap (82 samples, 0.02%)</title><rect x="36.9234%" y="741" width="0.0171%" height="15" fill="rgb(212,211,43)" fg:x="177346" fg:w="82"/><text x="37.1734%" y="751.50"></text></g><g><title>unmap_page_range (382 samples, 0.08%)</title><rect x="36.8649%" y="789" width="0.0795%" height="15" fill="rgb(226,147,8)" fg:x="177065" fg:w="382"/><text x="37.1149%" y="799.50"></text></g><g><title>zap_pmd_range.isra.0 (367 samples, 0.08%)</title><rect x="36.8680%" y="773" width="0.0764%" height="15" fill="rgb(226,23,13)" fg:x="177080" fg:w="367"/><text x="37.1180%" y="783.50"></text></g><g><title>zap_pte_range (329 samples, 0.07%)</title><rect x="36.8759%" y="757" width="0.0685%" height="15" fill="rgb(240,63,4)" fg:x="177118" fg:w="329"/><text x="37.1259%" y="767.50"></text></g><g><title>unmap_single_vma (396 samples, 0.08%)</title><rect x="36.8622%" y="805" width="0.0824%" height="15" fill="rgb(221,1,32)" fg:x="177052" fg:w="396"/><text x="37.1122%" y="815.50"></text></g><g><title>unmap_vmas (405 samples, 0.08%)</title><rect x="36.8605%" y="821" width="0.0843%" height="15" fill="rgb(242,117,10)" fg:x="177044" fg:w="405"/><text x="37.1105%" y="831.50"></text></g><g><title>exit_mmap (1,084 samples, 0.23%)</title><rect x="36.7196%" y="837" width="0.2257%" height="15" fill="rgb(249,172,44)" fg:x="176367" fg:w="1084"/><text x="36.9696%" y="847.50"></text></g><g><title>exit_mm (1,095 samples, 0.23%)</title><rect x="36.7181%" y="869" width="0.2280%" height="15" fill="rgb(244,46,45)" fg:x="176360" fg:w="1095"/><text x="36.9681%" y="879.50"></text></g><g><title>mmput (1,091 samples, 0.23%)</title><rect x="36.7189%" y="853" width="0.2271%" height="15" fill="rgb(206,43,17)" fg:x="176364" fg:w="1091"/><text x="36.9689%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (138 samples, 0.03%)</title><rect x="36.9542%" y="757" width="0.0287%" height="15" fill="rgb(239,218,39)" fg:x="177494" fg:w="138"/><text x="37.2042%" y="767.50"></text></g><g><title>x86_pmu_enable (132 samples, 0.03%)</title><rect x="36.9555%" y="741" width="0.0275%" height="15" fill="rgb(208,169,54)" fg:x="177500" fg:w="132"/><text x="37.2055%" y="751.50"></text></g><g><title>intel_pmu_enable_all (132 samples, 0.03%)</title><rect x="36.9555%" y="725" width="0.0275%" height="15" fill="rgb(247,25,42)" fg:x="177500" fg:w="132"/><text x="37.2055%" y="735.50"></text></g><g><title>native_write_msr (132 samples, 0.03%)</title><rect x="36.9555%" y="709" width="0.0275%" height="15" fill="rgb(226,23,31)" fg:x="177500" fg:w="132"/><text x="37.2055%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (146 samples, 0.03%)</title><rect x="36.9540%" y="773" width="0.0304%" height="15" fill="rgb(247,16,28)" fg:x="177493" fg:w="146"/><text x="37.2040%" y="783.50"></text></g><g><title>__cond_resched (154 samples, 0.03%)</title><rect x="36.9536%" y="805" width="0.0321%" height="15" fill="rgb(231,147,38)" fg:x="177491" fg:w="154"/><text x="37.2036%" y="815.50"></text></g><g><title>__schedule (154 samples, 0.03%)</title><rect x="36.9536%" y="789" width="0.0321%" height="15" fill="rgb(253,81,48)" fg:x="177491" fg:w="154"/><text x="37.2036%" y="799.50"></text></g><g><title>dput (174 samples, 0.04%)</title><rect x="36.9532%" y="821" width="0.0362%" height="15" fill="rgb(249,222,43)" fg:x="177489" fg:w="174"/><text x="37.2032%" y="831.50"></text></g><g><title>pipe_release (51 samples, 0.01%)</title><rect x="36.9904%" y="821" width="0.0106%" height="15" fill="rgb(221,3,27)" fg:x="177668" fg:w="51"/><text x="37.2404%" y="831.50"></text></g><g><title>__fput (275 samples, 0.06%)</title><rect x="36.9505%" y="837" width="0.0573%" height="15" fill="rgb(228,180,5)" fg:x="177476" fg:w="275"/><text x="37.2005%" y="847.50"></text></g><g><title>do_exit (1,519 samples, 0.32%)</title><rect x="36.6923%" y="885" width="0.3163%" height="15" fill="rgb(227,131,42)" fg:x="176236" fg:w="1519"/><text x="36.9423%" y="895.50"></text></g><g><title>task_work_run (279 samples, 0.06%)</title><rect x="36.9505%" y="869" width="0.0581%" height="15" fill="rgb(212,3,39)" fg:x="177476" fg:w="279"/><text x="37.2005%" y="879.50"></text></g><g><title>____fput (279 samples, 0.06%)</title><rect x="36.9505%" y="853" width="0.0581%" height="15" fill="rgb(226,45,5)" fg:x="177476" fg:w="279"/><text x="37.2005%" y="863.50"></text></g><g><title>__x64_sys_exit_group (1,524 samples, 0.32%)</title><rect x="36.6919%" y="917" width="0.3173%" height="15" fill="rgb(215,167,45)" fg:x="176234" fg:w="1524"/><text x="36.9419%" y="927.50"></text></g><g><title>do_group_exit (1,524 samples, 0.32%)</title><rect x="36.6919%" y="901" width="0.3173%" height="15" fill="rgb(250,218,53)" fg:x="176234" fg:w="1524"/><text x="36.9419%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,152 samples, 0.45%)</title><rect x="36.5624%" y="949" width="0.4480%" height="15" fill="rgb(207,140,0)" fg:x="175612" fg:w="2152"/><text x="36.8124%" y="959.50"></text></g><g><title>do_syscall_64 (2,152 samples, 0.45%)</title><rect x="36.5624%" y="933" width="0.4480%" height="15" fill="rgb(238,133,51)" fg:x="175612" fg:w="2152"/><text x="36.8124%" y="943.50"></text></g><g><title>c++ (58,432 samples, 12.17%)</title><rect x="24.8461%" y="965" width="12.1655%" height="15" fill="rgb(218,203,53)" fg:x="119338" fg:w="58432"/><text x="25.0961%" y="975.50">c++</text></g><g><title>[perf-712021.map] (102 samples, 0.02%)</title><rect x="37.0158%" y="949" width="0.0212%" height="15" fill="rgb(226,184,25)" fg:x="177790" fg:w="102"/><text x="37.2658%" y="959.50"></text></g><g><title>find-action-loo (144 samples, 0.03%)</title><rect x="37.0158%" y="965" width="0.0300%" height="15" fill="rgb(231,121,21)" fg:x="177790" fg:w="144"/><text x="37.2658%" y="975.50"></text></g><g><title>globbing_pool-0 (65 samples, 0.01%)</title><rect x="37.0458%" y="965" width="0.0135%" height="15" fill="rgb(251,14,34)" fg:x="177934" fg:w="65"/><text x="37.2958%" y="975.50"></text></g><g><title>[libunix_jni.so] (64 samples, 0.01%)</title><rect x="37.0604%" y="949" width="0.0133%" height="15" fill="rgb(249,193,11)" fg:x="178004" fg:w="64"/><text x="37.3104%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="37.1233%" y="677" width="0.0127%" height="15" fill="rgb(220,172,37)" fg:x="178306" fg:w="61"/><text x="37.3733%" y="687.50"></text></g><g><title>x86_pmu_enable (58 samples, 0.01%)</title><rect x="37.1239%" y="661" width="0.0121%" height="15" fill="rgb(231,229,43)" fg:x="178309" fg:w="58"/><text x="37.3739%" y="671.50"></text></g><g><title>intel_pmu_enable_all (58 samples, 0.01%)</title><rect x="37.1239%" y="645" width="0.0121%" height="15" fill="rgb(250,161,5)" fg:x="178309" fg:w="58"/><text x="37.3739%" y="655.50"></text></g><g><title>native_write_msr (58 samples, 0.01%)</title><rect x="37.1239%" y="629" width="0.0121%" height="15" fill="rgb(218,225,18)" fg:x="178309" fg:w="58"/><text x="37.3739%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (63 samples, 0.01%)</title><rect x="37.1233%" y="693" width="0.0131%" height="15" fill="rgb(245,45,42)" fg:x="178306" fg:w="63"/><text x="37.3733%" y="703.50"></text></g><g><title>__x64_sys_futex (70 samples, 0.01%)</title><rect x="37.1224%" y="789" width="0.0146%" height="15" fill="rgb(211,115,1)" fg:x="178302" fg:w="70"/><text x="37.3724%" y="799.50"></text></g><g><title>do_futex (70 samples, 0.01%)</title><rect x="37.1224%" y="773" width="0.0146%" height="15" fill="rgb(248,133,52)" fg:x="178302" fg:w="70"/><text x="37.3724%" y="783.50"></text></g><g><title>futex_wait (68 samples, 0.01%)</title><rect x="37.1228%" y="757" width="0.0142%" height="15" fill="rgb(238,100,21)" fg:x="178304" fg:w="68"/><text x="37.3728%" y="767.50"></text></g><g><title>futex_wait_queue_me (68 samples, 0.01%)</title><rect x="37.1228%" y="741" width="0.0142%" height="15" fill="rgb(247,144,11)" fg:x="178304" fg:w="68"/><text x="37.3728%" y="751.50"></text></g><g><title>schedule (68 samples, 0.01%)</title><rect x="37.1228%" y="725" width="0.0142%" height="15" fill="rgb(206,164,16)" fg:x="178304" fg:w="68"/><text x="37.3728%" y="735.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="37.1228%" y="709" width="0.0142%" height="15" fill="rgb(222,34,3)" fg:x="178304" fg:w="68"/><text x="37.3728%" y="719.50"></text></g><g><title>___pthread_cond_wait (76 samples, 0.02%)</title><rect x="37.1222%" y="901" width="0.0158%" height="15" fill="rgb(248,82,4)" fg:x="178301" fg:w="76"/><text x="37.3722%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (76 samples, 0.02%)</title><rect x="37.1222%" y="885" width="0.0158%" height="15" fill="rgb(228,81,46)" fg:x="178301" fg:w="76"/><text x="37.3722%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (75 samples, 0.02%)</title><rect x="37.1224%" y="869" width="0.0156%" height="15" fill="rgb(227,67,47)" fg:x="178302" fg:w="75"/><text x="37.3724%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (75 samples, 0.02%)</title><rect x="37.1224%" y="853" width="0.0156%" height="15" fill="rgb(215,93,53)" fg:x="178302" fg:w="75"/><text x="37.3724%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (75 samples, 0.02%)</title><rect x="37.1224%" y="837" width="0.0156%" height="15" fill="rgb(248,194,39)" fg:x="178302" fg:w="75"/><text x="37.3724%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.02%)</title><rect x="37.1224%" y="821" width="0.0156%" height="15" fill="rgb(215,5,19)" fg:x="178302" fg:w="75"/><text x="37.3724%" y="831.50"></text></g><g><title>do_syscall_64 (75 samples, 0.02%)</title><rect x="37.1224%" y="805" width="0.0156%" height="15" fill="rgb(226,215,51)" fg:x="178302" fg:w="75"/><text x="37.3724%" y="815.50"></text></g><g><title>Unsafe_Park (81 samples, 0.02%)</title><rect x="37.1214%" y="933" width="0.0169%" height="15" fill="rgb(225,56,26)" fg:x="178297" fg:w="81"/><text x="37.3714%" y="943.50"></text></g><g><title>Parker::park (80 samples, 0.02%)</title><rect x="37.1216%" y="917" width="0.0167%" height="15" fill="rgb(222,75,29)" fg:x="178298" fg:w="80"/><text x="37.3716%" y="927.50"></text></g><g><title>[perf-712021.map] (322 samples, 0.07%)</title><rect x="37.0737%" y="949" width="0.0670%" height="15" fill="rgb(236,139,6)" fg:x="178068" fg:w="322"/><text x="37.3237%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.02%)</title><rect x="37.1455%" y="901" width="0.0167%" height="15" fill="rgb(223,137,36)" fg:x="178413" fg:w="80"/><text x="37.3955%" y="911.50"></text></g><g><title>x86_pmu_enable (77 samples, 0.02%)</title><rect x="37.1462%" y="885" width="0.0160%" height="15" fill="rgb(226,99,2)" fg:x="178416" fg:w="77"/><text x="37.3962%" y="895.50"></text></g><g><title>intel_pmu_enable_all (77 samples, 0.02%)</title><rect x="37.1462%" y="869" width="0.0160%" height="15" fill="rgb(206,133,23)" fg:x="178416" fg:w="77"/><text x="37.3962%" y="879.50"></text></g><g><title>native_write_msr (76 samples, 0.02%)</title><rect x="37.1464%" y="853" width="0.0158%" height="15" fill="rgb(243,173,15)" fg:x="178417" fg:w="76"/><text x="37.3964%" y="863.50"></text></g><g><title>schedule_tail (83 samples, 0.02%)</title><rect x="37.1451%" y="933" width="0.0173%" height="15" fill="rgb(228,69,28)" fg:x="178411" fg:w="83"/><text x="37.3951%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (82 samples, 0.02%)</title><rect x="37.1453%" y="917" width="0.0171%" height="15" fill="rgb(212,51,22)" fg:x="178412" fg:w="82"/><text x="37.3953%" y="927.50"></text></g><g><title>globbing_pool-1 (496 samples, 0.10%)</title><rect x="37.0593%" y="965" width="0.1033%" height="15" fill="rgb(227,113,0)" fg:x="177999" fg:w="496"/><text x="37.3093%" y="975.50"></text></g><g><title>ret_from_fork (84 samples, 0.02%)</title><rect x="37.1451%" y="949" width="0.0175%" height="15" fill="rgb(252,84,27)" fg:x="178411" fg:w="84"/><text x="37.3951%" y="959.50"></text></g><g><title>[libunix_jni.so] (80 samples, 0.02%)</title><rect x="37.1634%" y="949" width="0.0167%" height="15" fill="rgb(223,145,39)" fg:x="178499" fg:w="80"/><text x="37.4134%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.02%)</title><rect x="37.2253%" y="677" width="0.0171%" height="15" fill="rgb(239,219,30)" fg:x="178796" fg:w="82"/><text x="37.4753%" y="687.50"></text></g><g><title>x86_pmu_enable (80 samples, 0.02%)</title><rect x="37.2257%" y="661" width="0.0167%" height="15" fill="rgb(224,196,39)" fg:x="178798" fg:w="80"/><text x="37.4757%" y="671.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.02%)</title><rect x="37.2259%" y="645" width="0.0164%" height="15" fill="rgb(205,35,43)" fg:x="178799" fg:w="79"/><text x="37.4759%" y="655.50"></text></g><g><title>native_write_msr (79 samples, 0.02%)</title><rect x="37.2259%" y="629" width="0.0164%" height="15" fill="rgb(228,201,21)" fg:x="178799" fg:w="79"/><text x="37.4759%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (86 samples, 0.02%)</title><rect x="37.2251%" y="693" width="0.0179%" height="15" fill="rgb(237,118,16)" fg:x="178795" fg:w="86"/><text x="37.4751%" y="703.50"></text></g><g><title>__x64_sys_futex (95 samples, 0.02%)</title><rect x="37.2242%" y="789" width="0.0198%" height="15" fill="rgb(241,17,19)" fg:x="178791" fg:w="95"/><text x="37.4742%" y="799.50"></text></g><g><title>do_futex (94 samples, 0.02%)</title><rect x="37.2244%" y="773" width="0.0196%" height="15" fill="rgb(214,10,25)" fg:x="178792" fg:w="94"/><text x="37.4744%" y="783.50"></text></g><g><title>futex_wait (94 samples, 0.02%)</title><rect x="37.2244%" y="757" width="0.0196%" height="15" fill="rgb(238,37,29)" fg:x="178792" fg:w="94"/><text x="37.4744%" y="767.50"></text></g><g><title>futex_wait_queue_me (94 samples, 0.02%)</title><rect x="37.2244%" y="741" width="0.0196%" height="15" fill="rgb(253,83,25)" fg:x="178792" fg:w="94"/><text x="37.4744%" y="751.50"></text></g><g><title>schedule (94 samples, 0.02%)</title><rect x="37.2244%" y="725" width="0.0196%" height="15" fill="rgb(234,192,12)" fg:x="178792" fg:w="94"/><text x="37.4744%" y="735.50"></text></g><g><title>__schedule (93 samples, 0.02%)</title><rect x="37.2247%" y="709" width="0.0194%" height="15" fill="rgb(241,216,45)" fg:x="178793" fg:w="93"/><text x="37.4747%" y="719.50"></text></g><g><title>Parker::park (101 samples, 0.02%)</title><rect x="37.2234%" y="917" width="0.0210%" height="15" fill="rgb(242,22,33)" fg:x="178787" fg:w="101"/><text x="37.4734%" y="927.50"></text></g><g><title>___pthread_cond_wait (98 samples, 0.02%)</title><rect x="37.2240%" y="901" width="0.0204%" height="15" fill="rgb(231,105,49)" fg:x="178790" fg:w="98"/><text x="37.4740%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (98 samples, 0.02%)</title><rect x="37.2240%" y="885" width="0.0204%" height="15" fill="rgb(218,204,15)" fg:x="178790" fg:w="98"/><text x="37.4740%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (98 samples, 0.02%)</title><rect x="37.2240%" y="869" width="0.0204%" height="15" fill="rgb(235,138,41)" fg:x="178790" fg:w="98"/><text x="37.4740%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (98 samples, 0.02%)</title><rect x="37.2240%" y="853" width="0.0204%" height="15" fill="rgb(246,0,9)" fg:x="178790" fg:w="98"/><text x="37.4740%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (98 samples, 0.02%)</title><rect x="37.2240%" y="837" width="0.0204%" height="15" fill="rgb(210,74,4)" fg:x="178790" fg:w="98"/><text x="37.4740%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.02%)</title><rect x="37.2242%" y="821" width="0.0202%" height="15" fill="rgb(250,60,41)" fg:x="178791" fg:w="97"/><text x="37.4742%" y="831.50"></text></g><g><title>do_syscall_64 (97 samples, 0.02%)</title><rect x="37.2242%" y="805" width="0.0202%" height="15" fill="rgb(220,115,12)" fg:x="178791" fg:w="97"/><text x="37.4742%" y="815.50"></text></g><g><title>Unsafe_Park (104 samples, 0.02%)</title><rect x="37.2232%" y="933" width="0.0217%" height="15" fill="rgb(237,100,13)" fg:x="178786" fg:w="104"/><text x="37.4732%" y="943.50"></text></g><g><title>[perf-712021.map] (355 samples, 0.07%)</title><rect x="37.1801%" y="949" width="0.0739%" height="15" fill="rgb(213,55,26)" fg:x="178579" fg:w="355"/><text x="37.4301%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="37.2621%" y="901" width="0.0169%" height="15" fill="rgb(216,17,4)" fg:x="178973" fg:w="81"/><text x="37.5121%" y="911.50"></text></g><g><title>x86_pmu_enable (78 samples, 0.02%)</title><rect x="37.2628%" y="885" width="0.0162%" height="15" fill="rgb(220,153,47)" fg:x="178976" fg:w="78"/><text x="37.5128%" y="895.50"></text></g><g><title>intel_pmu_enable_all (78 samples, 0.02%)</title><rect x="37.2628%" y="869" width="0.0162%" height="15" fill="rgb(215,131,9)" fg:x="178976" fg:w="78"/><text x="37.5128%" y="879.50"></text></g><g><title>native_write_msr (78 samples, 0.02%)</title><rect x="37.2628%" y="853" width="0.0162%" height="15" fill="rgb(233,46,42)" fg:x="178976" fg:w="78"/><text x="37.5128%" y="863.50"></text></g><g><title>schedule_tail (87 samples, 0.02%)</title><rect x="37.2613%" y="933" width="0.0181%" height="15" fill="rgb(226,86,7)" fg:x="178969" fg:w="87"/><text x="37.5113%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (84 samples, 0.02%)</title><rect x="37.2619%" y="917" width="0.0175%" height="15" fill="rgb(239,226,21)" fg:x="178972" fg:w="84"/><text x="37.5119%" y="927.50"></text></g><g><title>globbing_pool-2 (562 samples, 0.12%)</title><rect x="37.1626%" y="965" width="0.1170%" height="15" fill="rgb(244,137,22)" fg:x="178495" fg:w="562"/><text x="37.4126%" y="975.50"></text></g><g><title>ret_from_fork (88 samples, 0.02%)</title><rect x="37.2613%" y="949" width="0.0183%" height="15" fill="rgb(211,139,35)" fg:x="178969" fg:w="88"/><text x="37.5113%" y="959.50"></text></g><g><title>Unsafe_Park (55 samples, 0.01%)</title><rect x="37.3142%" y="933" width="0.0115%" height="15" fill="rgb(214,62,50)" fg:x="179223" fg:w="55"/><text x="37.5642%" y="943.50"></text></g><g><title>Parker::park (55 samples, 0.01%)</title><rect x="37.3142%" y="917" width="0.0115%" height="15" fill="rgb(212,113,44)" fg:x="179223" fg:w="55"/><text x="37.5642%" y="927.50"></text></g><g><title>[perf-712021.map] (205 samples, 0.04%)</title><rect x="37.2850%" y="949" width="0.0427%" height="15" fill="rgb(226,150,43)" fg:x="179083" fg:w="205"/><text x="37.5350%" y="959.50"></text></g><g><title>globbing_pool-3 (302 samples, 0.06%)</title><rect x="37.2796%" y="965" width="0.0629%" height="15" fill="rgb(250,71,37)" fg:x="179057" fg:w="302"/><text x="37.5296%" y="975.50"></text></g><g><title>ret_from_fork (49 samples, 0.01%)</title><rect x="37.3323%" y="949" width="0.0102%" height="15" fill="rgb(219,76,19)" fg:x="179310" fg:w="49"/><text x="37.5823%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (58 samples, 0.01%)</title><rect x="37.4016%" y="677" width="0.0121%" height="15" fill="rgb(250,39,11)" fg:x="179643" fg:w="58"/><text x="37.6516%" y="687.50"></text></g><g><title>x86_pmu_enable (57 samples, 0.01%)</title><rect x="37.4018%" y="661" width="0.0119%" height="15" fill="rgb(230,64,31)" fg:x="179644" fg:w="57"/><text x="37.6518%" y="671.50"></text></g><g><title>intel_pmu_enable_all (57 samples, 0.01%)</title><rect x="37.4018%" y="645" width="0.0119%" height="15" fill="rgb(208,222,23)" fg:x="179644" fg:w="57"/><text x="37.6518%" y="655.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="37.4018%" y="629" width="0.0119%" height="15" fill="rgb(227,125,18)" fg:x="179644" fg:w="57"/><text x="37.6518%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (60 samples, 0.01%)</title><rect x="37.4014%" y="693" width="0.0125%" height="15" fill="rgb(234,210,9)" fg:x="179642" fg:w="60"/><text x="37.6514%" y="703.50"></text></g><g><title>__x64_sys_futex (69 samples, 0.01%)</title><rect x="37.4000%" y="789" width="0.0144%" height="15" fill="rgb(217,127,24)" fg:x="179635" fg:w="69"/><text x="37.6500%" y="799.50"></text></g><g><title>do_futex (68 samples, 0.01%)</title><rect x="37.4002%" y="773" width="0.0142%" height="15" fill="rgb(239,141,48)" fg:x="179636" fg:w="68"/><text x="37.6502%" y="783.50"></text></g><g><title>futex_wait (68 samples, 0.01%)</title><rect x="37.4002%" y="757" width="0.0142%" height="15" fill="rgb(227,109,8)" fg:x="179636" fg:w="68"/><text x="37.6502%" y="767.50"></text></g><g><title>futex_wait_queue_me (67 samples, 0.01%)</title><rect x="37.4004%" y="741" width="0.0139%" height="15" fill="rgb(235,184,23)" fg:x="179637" fg:w="67"/><text x="37.6504%" y="751.50"></text></g><g><title>schedule (66 samples, 0.01%)</title><rect x="37.4006%" y="725" width="0.0137%" height="15" fill="rgb(227,226,48)" fg:x="179638" fg:w="66"/><text x="37.6506%" y="735.50"></text></g><g><title>__schedule (66 samples, 0.01%)</title><rect x="37.4006%" y="709" width="0.0137%" height="15" fill="rgb(206,150,11)" fg:x="179638" fg:w="66"/><text x="37.6506%" y="719.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (71 samples, 0.01%)</title><rect x="37.3998%" y="869" width="0.0148%" height="15" fill="rgb(254,2,33)" fg:x="179634" fg:w="71"/><text x="37.6498%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (71 samples, 0.01%)</title><rect x="37.3998%" y="853" width="0.0148%" height="15" fill="rgb(243,160,20)" fg:x="179634" fg:w="71"/><text x="37.6498%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (71 samples, 0.01%)</title><rect x="37.3998%" y="837" width="0.0148%" height="15" fill="rgb(218,208,30)" fg:x="179634" fg:w="71"/><text x="37.6498%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.01%)</title><rect x="37.4000%" y="821" width="0.0146%" height="15" fill="rgb(224,120,49)" fg:x="179635" fg:w="70"/><text x="37.6500%" y="831.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="37.4000%" y="805" width="0.0146%" height="15" fill="rgb(246,12,2)" fg:x="179635" fg:w="70"/><text x="37.6500%" y="815.50"></text></g><g><title>___pthread_cond_wait (72 samples, 0.01%)</title><rect x="37.3998%" y="901" width="0.0150%" height="15" fill="rgb(236,117,3)" fg:x="179634" fg:w="72"/><text x="37.6498%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (72 samples, 0.01%)</title><rect x="37.3998%" y="885" width="0.0150%" height="15" fill="rgb(216,128,52)" fg:x="179634" fg:w="72"/><text x="37.6498%" y="895.50"></text></g><g><title>Unsafe_Park (75 samples, 0.02%)</title><rect x="37.3995%" y="933" width="0.0156%" height="15" fill="rgb(246,145,19)" fg:x="179633" fg:w="75"/><text x="37.6495%" y="943.50"></text></g><g><title>Parker::park (75 samples, 0.02%)</title><rect x="37.3995%" y="917" width="0.0156%" height="15" fill="rgb(222,11,46)" fg:x="179633" fg:w="75"/><text x="37.6495%" y="927.50"></text></g><g><title>[perf-712021.map] (308 samples, 0.06%)</title><rect x="37.3533%" y="949" width="0.0641%" height="15" fill="rgb(245,82,36)" fg:x="179411" fg:w="308"/><text x="37.6033%" y="959.50"></text></g><g><title>free_unref_page_list (92 samples, 0.02%)</title><rect x="37.4499%" y="629" width="0.0192%" height="15" fill="rgb(250,73,51)" fg:x="179875" fg:w="92"/><text x="37.6999%" y="639.50"></text></g><g><title>free_unref_page_commit.constprop.0 (69 samples, 0.01%)</title><rect x="37.4547%" y="613" width="0.0144%" height="15" fill="rgb(221,189,23)" fg:x="179898" fg:w="69"/><text x="37.7047%" y="623.50"></text></g><g><title>free_pcppages_bulk (60 samples, 0.01%)</title><rect x="37.4566%" y="597" width="0.0125%" height="15" fill="rgb(210,33,7)" fg:x="179907" fg:w="60"/><text x="37.7066%" y="607.50"></text></g><g><title>free_pages_and_swap_cache (153 samples, 0.03%)</title><rect x="37.4389%" y="661" width="0.0319%" height="15" fill="rgb(210,107,22)" fg:x="179822" fg:w="153"/><text x="37.6889%" y="671.50"></text></g><g><title>release_pages (150 samples, 0.03%)</title><rect x="37.4395%" y="645" width="0.0312%" height="15" fill="rgb(222,116,37)" fg:x="179825" fg:w="150"/><text x="37.6895%" y="655.50"></text></g><g><title>tlb_flush_mmu (159 samples, 0.03%)</title><rect x="37.4389%" y="677" width="0.0331%" height="15" fill="rgb(254,17,48)" fg:x="179822" fg:w="159"/><text x="37.6889%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (258 samples, 0.05%)</title><rect x="37.4189%" y="949" width="0.0537%" height="15" fill="rgb(224,36,32)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="959.50"></text></g><g><title>do_syscall_64 (258 samples, 0.05%)</title><rect x="37.4189%" y="933" width="0.0537%" height="15" fill="rgb(232,90,46)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="943.50"></text></g><g><title>syscall_exit_to_user_mode (258 samples, 0.05%)</title><rect x="37.4189%" y="917" width="0.0537%" height="15" fill="rgb(241,66,40)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="927.50"></text></g><g><title>exit_to_user_mode_prepare (258 samples, 0.05%)</title><rect x="37.4189%" y="901" width="0.0537%" height="15" fill="rgb(249,184,29)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (258 samples, 0.05%)</title><rect x="37.4189%" y="885" width="0.0537%" height="15" fill="rgb(231,181,1)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="895.50"></text></g><g><title>arch_do_signal_or_restart (258 samples, 0.05%)</title><rect x="37.4189%" y="869" width="0.0537%" height="15" fill="rgb(224,94,2)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="879.50"></text></g><g><title>get_signal (258 samples, 0.05%)</title><rect x="37.4189%" y="853" width="0.0537%" height="15" fill="rgb(229,170,15)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="863.50"></text></g><g><title>do_group_exit (258 samples, 0.05%)</title><rect x="37.4189%" y="837" width="0.0537%" height="15" fill="rgb(240,127,35)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="847.50"></text></g><g><title>do_exit (258 samples, 0.05%)</title><rect x="37.4189%" y="821" width="0.0537%" height="15" fill="rgb(248,196,34)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="831.50"></text></g><g><title>exit_mm (258 samples, 0.05%)</title><rect x="37.4189%" y="805" width="0.0537%" height="15" fill="rgb(236,137,7)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="815.50"></text></g><g><title>mmput (258 samples, 0.05%)</title><rect x="37.4189%" y="789" width="0.0537%" height="15" fill="rgb(235,127,16)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="799.50"></text></g><g><title>exit_mmap (258 samples, 0.05%)</title><rect x="37.4189%" y="773" width="0.0537%" height="15" fill="rgb(250,192,54)" fg:x="179726" fg:w="258"/><text x="37.6689%" y="783.50"></text></g><g><title>unmap_vmas (255 samples, 0.05%)</title><rect x="37.4195%" y="757" width="0.0531%" height="15" fill="rgb(218,98,20)" fg:x="179729" fg:w="255"/><text x="37.6695%" y="767.50"></text></g><g><title>unmap_single_vma (255 samples, 0.05%)</title><rect x="37.4195%" y="741" width="0.0531%" height="15" fill="rgb(230,176,47)" fg:x="179729" fg:w="255"/><text x="37.6695%" y="751.50"></text></g><g><title>unmap_page_range (255 samples, 0.05%)</title><rect x="37.4195%" y="725" width="0.0531%" height="15" fill="rgb(244,2,33)" fg:x="179729" fg:w="255"/><text x="37.6695%" y="735.50"></text></g><g><title>zap_pmd_range.isra.0 (255 samples, 0.05%)</title><rect x="37.4195%" y="709" width="0.0531%" height="15" fill="rgb(231,100,17)" fg:x="179729" fg:w="255"/><text x="37.6695%" y="719.50"></text></g><g><title>zap_pte_range (253 samples, 0.05%)</title><rect x="37.4199%" y="693" width="0.0527%" height="15" fill="rgb(245,23,12)" fg:x="179731" fg:w="253"/><text x="37.6699%" y="703.50"></text></g><g><title>globbing_pool-4 (639 samples, 0.13%)</title><rect x="37.3425%" y="965" width="0.1330%" height="15" fill="rgb(249,55,22)" fg:x="179359" fg:w="639"/><text x="37.5925%" y="975.50"></text></g><g><title>Unsafe_Park (50 samples, 0.01%)</title><rect x="37.5107%" y="933" width="0.0104%" height="15" fill="rgb(207,134,9)" fg:x="180167" fg:w="50"/><text x="37.7607%" y="943.50"></text></g><g><title>Parker::park (50 samples, 0.01%)</title><rect x="37.5107%" y="917" width="0.0104%" height="15" fill="rgb(218,134,0)" fg:x="180167" fg:w="50"/><text x="37.7607%" y="927.50"></text></g><g><title>[perf-712021.map] (187 samples, 0.04%)</title><rect x="37.4832%" y="949" width="0.0389%" height="15" fill="rgb(213,212,33)" fg:x="180035" fg:w="187"/><text x="37.7332%" y="959.50"></text></g><g><title>schedule_tail (49 samples, 0.01%)</title><rect x="37.5255%" y="933" width="0.0102%" height="15" fill="rgb(252,106,18)" fg:x="180238" fg:w="49"/><text x="37.7755%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (49 samples, 0.01%)</title><rect x="37.5255%" y="917" width="0.0102%" height="15" fill="rgb(208,126,42)" fg:x="180238" fg:w="49"/><text x="37.7755%" y="927.50"></text></g><g><title>globbing_pool-5 (291 samples, 0.06%)</title><rect x="37.4755%" y="965" width="0.0606%" height="15" fill="rgb(246,175,29)" fg:x="179998" fg:w="291"/><text x="37.7255%" y="975.50"></text></g><g><title>ret_from_fork (52 samples, 0.01%)</title><rect x="37.5253%" y="949" width="0.0108%" height="15" fill="rgb(215,13,50)" fg:x="180237" fg:w="52"/><text x="37.7753%" y="959.50"></text></g><g><title>[perf-712021.map] (153 samples, 0.03%)</title><rect x="37.5395%" y="949" width="0.0319%" height="15" fill="rgb(216,172,15)" fg:x="180305" fg:w="153"/><text x="37.7895%" y="959.50"></text></g><g><title>globbing_pool-6 (227 samples, 0.05%)</title><rect x="37.5361%" y="965" width="0.0473%" height="15" fill="rgb(212,103,13)" fg:x="180289" fg:w="227"/><text x="37.7861%" y="975.50"></text></g><g><title>[perf-712021.map] (143 samples, 0.03%)</title><rect x="37.5844%" y="949" width="0.0298%" height="15" fill="rgb(231,171,36)" fg:x="180521" fg:w="143"/><text x="37.8344%" y="959.50"></text></g><g><title>globbing_pool-7 (200 samples, 0.04%)</title><rect x="37.5834%" y="965" width="0.0416%" height="15" fill="rgb(250,123,20)" fg:x="180516" fg:w="200"/><text x="37.8334%" y="975.50"></text></g><g><title>[perf-712021.map] (94 samples, 0.02%)</title><rect x="37.6273%" y="949" width="0.0196%" height="15" fill="rgb(212,53,50)" fg:x="180727" fg:w="94"/><text x="37.8773%" y="959.50"></text></g><g><title>globbing_pool-8 (154 samples, 0.03%)</title><rect x="37.6250%" y="965" width="0.0321%" height="15" fill="rgb(243,54,12)" fg:x="180716" fg:w="154"/><text x="37.8750%" y="975.50"></text></g><g><title>[perf-712021.map] (244 samples, 0.05%)</title><rect x="37.6669%" y="949" width="0.0508%" height="15" fill="rgb(234,101,34)" fg:x="180917" fg:w="244"/><text x="37.9169%" y="959.50"></text></g><g><title>globbing_pool-9 (332 samples, 0.07%)</title><rect x="37.6571%" y="965" width="0.0691%" height="15" fill="rgb(254,67,22)" fg:x="180870" fg:w="332"/><text x="37.9071%" y="975.50"></text></g><g><title>[anon] (206 samples, 0.04%)</title><rect x="37.7306%" y="949" width="0.0429%" height="15" fill="rgb(250,35,47)" fg:x="181223" fg:w="206"/><text x="37.9806%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (65 samples, 0.01%)</title><rect x="38.2146%" y="821" width="0.0135%" height="15" fill="rgb(226,126,38)" fg:x="183548" fg:w="65"/><text x="38.4646%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (65 samples, 0.01%)</title><rect x="38.2146%" y="805" width="0.0135%" height="15" fill="rgb(216,138,53)" fg:x="183548" fg:w="65"/><text x="38.4646%" y="815.50"></text></g><g><title>KlassFactory::create_from_stream (107 samples, 0.02%)</title><rect x="38.2146%" y="837" width="0.0223%" height="15" fill="rgb(246,199,43)" fg:x="183548" fg:w="107"/><text x="38.4646%" y="847.50"></text></g><g><title>ClassLoader::load_class (124 samples, 0.03%)</title><rect x="38.2113%" y="853" width="0.0258%" height="15" fill="rgb(232,125,11)" fg:x="183532" fg:w="124"/><text x="38.4613%" y="863.50"></text></g><g><title>SystemDictionary::load_instance_class (143 samples, 0.03%)</title><rect x="38.2113%" y="869" width="0.0298%" height="15" fill="rgb(218,219,45)" fg:x="183532" fg:w="143"/><text x="38.4613%" y="879.50"></text></g><g><title>ConstantPool::klass_at_impl (155 samples, 0.03%)</title><rect x="38.2090%" y="917" width="0.0323%" height="15" fill="rgb(216,102,54)" fg:x="183521" fg:w="155"/><text x="38.4590%" y="927.50"></text></g><g><title>SystemDictionary::resolve_or_fail (154 samples, 0.03%)</title><rect x="38.2092%" y="901" width="0.0321%" height="15" fill="rgb(250,228,7)" fg:x="183522" fg:w="154"/><text x="38.4592%" y="911.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (154 samples, 0.03%)</title><rect x="38.2092%" y="885" width="0.0321%" height="15" fill="rgb(226,125,25)" fg:x="183522" fg:w="154"/><text x="38.4592%" y="895.50"></text></g><g><title>Rewriter::Rewriter (58 samples, 0.01%)</title><rect x="38.2542%" y="869" width="0.0121%" height="15" fill="rgb(224,165,27)" fg:x="183738" fg:w="58"/><text x="38.5042%" y="879.50"></text></g><g><title>Rewriter::rewrite (63 samples, 0.01%)</title><rect x="38.2534%" y="885" width="0.0131%" height="15" fill="rgb(233,86,3)" fg:x="183734" fg:w="63"/><text x="38.5034%" y="895.50"></text></g><g><title>InstanceKlass::initialize_impl (141 samples, 0.03%)</title><rect x="38.2419%" y="917" width="0.0294%" height="15" fill="rgb(228,116,20)" fg:x="183679" fg:w="141"/><text x="38.4919%" y="927.50"></text></g><g><title>InstanceKlass::link_class_impl (139 samples, 0.03%)</title><rect x="38.2423%" y="901" width="0.0289%" height="15" fill="rgb(209,192,17)" fg:x="183681" fg:w="139"/><text x="38.4923%" y="911.50"></text></g><g><title>InterpreterRuntime::_new (301 samples, 0.06%)</title><rect x="38.2088%" y="933" width="0.0627%" height="15" fill="rgb(224,88,34)" fg:x="183520" fg:w="301"/><text x="38.4588%" y="943.50"></text></g><g><title>LinkResolver::resolve_field_access (72 samples, 0.01%)</title><rect x="38.3035%" y="901" width="0.0150%" height="15" fill="rgb(233,38,6)" fg:x="183975" fg:w="72"/><text x="38.5535%" y="911.50"></text></g><g><title>LinkResolver::resolve_field (50 samples, 0.01%)</title><rect x="38.3081%" y="885" width="0.0104%" height="15" fill="rgb(212,59,30)" fg:x="183997" fg:w="50"/><text x="38.5581%" y="895.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (84 samples, 0.02%)</title><rect x="38.3013%" y="917" width="0.0175%" height="15" fill="rgb(213,80,3)" fg:x="183964" fg:w="84"/><text x="38.5513%" y="927.50"></text></g><g><title>ClassFileParser::ClassFileParser (50 samples, 0.01%)</title><rect x="38.3292%" y="789" width="0.0104%" height="15" fill="rgb(251,178,7)" fg:x="184098" fg:w="50"/><text x="38.5792%" y="799.50"></text></g><g><title>ClassFileParser::parse_stream (50 samples, 0.01%)</title><rect x="38.3292%" y="773" width="0.0104%" height="15" fill="rgb(213,154,26)" fg:x="184098" fg:w="50"/><text x="38.5792%" y="783.50"></text></g><g><title>ClassLoader::load_class (69 samples, 0.01%)</title><rect x="38.3273%" y="821" width="0.0144%" height="15" fill="rgb(238,165,49)" fg:x="184089" fg:w="69"/><text x="38.5773%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (60 samples, 0.01%)</title><rect x="38.3292%" y="805" width="0.0125%" height="15" fill="rgb(248,91,46)" fg:x="184098" fg:w="60"/><text x="38.5792%" y="815.50"></text></g><g><title>SystemDictionary::load_instance_class (75 samples, 0.02%)</title><rect x="38.3273%" y="837" width="0.0156%" height="15" fill="rgb(244,21,52)" fg:x="184089" fg:w="75"/><text x="38.5773%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (86 samples, 0.02%)</title><rect x="38.3252%" y="869" width="0.0179%" height="15" fill="rgb(247,122,20)" fg:x="184079" fg:w="86"/><text x="38.5752%" y="879.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (84 samples, 0.02%)</title><rect x="38.3256%" y="853" width="0.0175%" height="15" fill="rgb(218,27,9)" fg:x="184081" fg:w="84"/><text x="38.5756%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (91 samples, 0.02%)</title><rect x="38.3244%" y="885" width="0.0189%" height="15" fill="rgb(246,7,6)" fg:x="184075" fg:w="91"/><text x="38.5744%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (81 samples, 0.02%)</title><rect x="38.3552%" y="853" width="0.0169%" height="15" fill="rgb(227,135,54)" fg:x="184223" fg:w="81"/><text x="38.6052%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (83 samples, 0.02%)</title><rect x="38.3550%" y="869" width="0.0173%" height="15" fill="rgb(247,14,11)" fg:x="184222" fg:w="83"/><text x="38.6050%" y="879.50"></text></g><g><title>LinkResolver::resolve_static_call (106 samples, 0.02%)</title><rect x="38.3546%" y="885" width="0.0221%" height="15" fill="rgb(206,149,34)" fg:x="184220" fg:w="106"/><text x="38.6046%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (254 samples, 0.05%)</title><rect x="38.3242%" y="901" width="0.0529%" height="15" fill="rgb(227,228,4)" fg:x="184074" fg:w="254"/><text x="38.5742%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (296 samples, 0.06%)</title><rect x="38.3187%" y="917" width="0.0616%" height="15" fill="rgb(238,218,28)" fg:x="184048" fg:w="296"/><text x="38.5687%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (436 samples, 0.09%)</title><rect x="38.2998%" y="933" width="0.0908%" height="15" fill="rgb(252,86,40)" fg:x="183957" fg:w="436"/><text x="38.5498%" y="943.50"></text></g><g><title>JVM_GetClassDeclaredMethods (57 samples, 0.01%)</title><rect x="38.4218%" y="933" width="0.0119%" height="15" fill="rgb(251,225,11)" fg:x="184543" fg:w="57"/><text x="38.6718%" y="943.50"></text></g><g><title>get_class_declared_methods_helper (56 samples, 0.01%)</title><rect x="38.4220%" y="917" width="0.0117%" height="15" fill="rgb(206,46,49)" fg:x="184544" fg:w="56"/><text x="38.6720%" y="927.50"></text></g><g><title>SymbolTable::lookup_only (423 samples, 0.09%)</title><rect x="38.4863%" y="789" width="0.0881%" height="15" fill="rgb(245,128,24)" fg:x="184853" fg:w="423"/><text x="38.7363%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (498 samples, 0.10%)</title><rect x="38.4709%" y="805" width="0.1037%" height="15" fill="rgb(219,177,34)" fg:x="184779" fg:w="498"/><text x="38.7209%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool (518 samples, 0.11%)</title><rect x="38.4670%" y="821" width="0.1078%" height="15" fill="rgb(218,60,48)" fg:x="184760" fg:w="518"/><text x="38.7170%" y="831.50"></text></g><g><title>ClassFileParser::parse_method (127 samples, 0.03%)</title><rect x="38.5786%" y="805" width="0.0264%" height="15" fill="rgb(221,11,5)" fg:x="185296" fg:w="127"/><text x="38.8286%" y="815.50"></text></g><g><title>ClassFileParser::parse_methods (130 samples, 0.03%)</title><rect x="38.5784%" y="821" width="0.0271%" height="15" fill="rgb(220,148,13)" fg:x="185295" fg:w="130"/><text x="38.8284%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (688 samples, 0.14%)</title><rect x="38.4651%" y="837" width="0.1432%" height="15" fill="rgb(210,16,3)" fg:x="184751" fg:w="688"/><text x="38.7151%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (691 samples, 0.14%)</title><rect x="38.4647%" y="853" width="0.1439%" height="15" fill="rgb(236,80,2)" fg:x="184749" fg:w="691"/><text x="38.7147%" y="863.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (83 samples, 0.02%)</title><rect x="38.6113%" y="805" width="0.0173%" height="15" fill="rgb(239,129,19)" fg:x="185453" fg:w="83"/><text x="38.8613%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (106 samples, 0.02%)</title><rect x="38.6094%" y="821" width="0.0221%" height="15" fill="rgb(220,106,35)" fg:x="185444" fg:w="106"/><text x="38.8594%" y="831.50"></text></g><g><title>ClassFileParser::fill_instance_klass (146 samples, 0.03%)</title><rect x="38.6086%" y="837" width="0.0304%" height="15" fill="rgb(252,139,45)" fg:x="185440" fg:w="146"/><text x="38.8586%" y="847.50"></text></g><g><title>ClassFileParser::create_instance_klass (157 samples, 0.03%)</title><rect x="38.6086%" y="853" width="0.0327%" height="15" fill="rgb(229,8,36)" fg:x="185440" fg:w="157"/><text x="38.8586%" y="863.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (51 samples, 0.01%)</title><rect x="38.6412%" y="853" width="0.0106%" height="15" fill="rgb(230,126,33)" fg:x="185597" fg:w="51"/><text x="38.8912%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (902 samples, 0.19%)</title><rect x="38.4643%" y="869" width="0.1878%" height="15" fill="rgb(239,140,21)" fg:x="184747" fg:w="902"/><text x="38.7143%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (950 samples, 0.20%)</title><rect x="38.4609%" y="917" width="0.1978%" height="15" fill="rgb(254,104,9)" fg:x="184731" fg:w="950"/><text x="38.7109%" y="927.50"></text></g><g><title>jvm_define_class_common (949 samples, 0.20%)</title><rect x="38.4612%" y="901" width="0.1976%" height="15" fill="rgb(239,52,14)" fg:x="184732" fg:w="949"/><text x="38.7112%" y="911.50"></text></g><g><title>SystemDictionary::resolve_from_stream (934 samples, 0.19%)</title><rect x="38.4643%" y="885" width="0.1945%" height="15" fill="rgb(208,227,44)" fg:x="184747" fg:w="934"/><text x="38.7143%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (983 samples, 0.20%)</title><rect x="38.4607%" y="933" width="0.2047%" height="15" fill="rgb(246,18,19)" fg:x="184730" fg:w="983"/><text x="38.7107%" y="943.50"></text></g><g><title>JVM_FindClassFromBootLoader (55 samples, 0.01%)</title><rect x="38.6654%" y="917" width="0.0115%" height="15" fill="rgb(235,228,25)" fg:x="185713" fg:w="55"/><text x="38.9154%" y="927.50"></text></g><g><title>SystemDictionary::resolve_or_null (53 samples, 0.01%)</title><rect x="38.6658%" y="901" width="0.0110%" height="15" fill="rgb(240,156,20)" fg:x="185715" fg:w="53"/><text x="38.9158%" y="911.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (53 samples, 0.01%)</title><rect x="38.6658%" y="885" width="0.0110%" height="15" fill="rgb(224,8,20)" fg:x="185715" fg:w="53"/><text x="38.9158%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (73 samples, 0.02%)</title><rect x="38.6654%" y="933" width="0.0152%" height="15" fill="rgb(214,12,52)" fg:x="185713" fg:w="73"/><text x="38.9154%" y="943.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (69 samples, 0.01%)</title><rect x="38.7022%" y="933" width="0.0144%" height="15" fill="rgb(211,220,47)" fg:x="185890" fg:w="69"/><text x="38.9522%" y="943.50"></text></g><g><title>SystemDictionary::parse_stream (68 samples, 0.01%)</title><rect x="38.7025%" y="917" width="0.0142%" height="15" fill="rgb(250,173,5)" fg:x="185891" fg:w="68"/><text x="38.9525%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (49 samples, 0.01%)</title><rect x="38.7064%" y="901" width="0.0102%" height="15" fill="rgb(250,125,52)" fg:x="185910" fg:w="49"/><text x="38.9564%" y="911.50"></text></g><g><title>[perf-712021.map] (4,605 samples, 0.96%)</title><rect x="37.7818%" y="949" width="0.9588%" height="15" fill="rgb(209,133,18)" fg:x="181469" fg:w="4605"/><text x="38.0318%" y="959.50"></text></g><g><title>do_syscall_64 (61 samples, 0.01%)</title><rect x="38.7643%" y="853" width="0.0127%" height="15" fill="rgb(216,173,22)" fg:x="186188" fg:w="61"/><text x="39.0143%" y="863.50"></text></g><g><title>unload_network_ops_symbols (55 samples, 0.01%)</title><rect x="38.7655%" y="837" width="0.0115%" height="15" fill="rgb(205,3,22)" fg:x="186194" fg:w="55"/><text x="39.0155%" y="847.50"></text></g><g><title>__x64_sys_read (55 samples, 0.01%)</title><rect x="38.7655%" y="821" width="0.0115%" height="15" fill="rgb(248,22,20)" fg:x="186194" fg:w="55"/><text x="39.0155%" y="831.50"></text></g><g><title>ksys_read (54 samples, 0.01%)</title><rect x="38.7658%" y="805" width="0.0112%" height="15" fill="rgb(233,6,29)" fg:x="186195" fg:w="54"/><text x="39.0158%" y="815.50"></text></g><g><title>vfs_read (53 samples, 0.01%)</title><rect x="38.7660%" y="789" width="0.0110%" height="15" fill="rgb(240,22,54)" fg:x="186196" fg:w="53"/><text x="39.0160%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.01%)</title><rect x="38.7643%" y="869" width="0.0129%" height="15" fill="rgb(231,133,32)" fg:x="186188" fg:w="62"/><text x="39.0143%" y="879.50"></text></g><g><title>handleRead (65 samples, 0.01%)</title><rect x="38.7639%" y="917" width="0.0135%" height="15" fill="rgb(248,193,4)" fg:x="186186" fg:w="65"/><text x="39.0139%" y="927.50"></text></g><g><title>__GI___libc_read (65 samples, 0.01%)</title><rect x="38.7639%" y="901" width="0.0135%" height="15" fill="rgb(211,178,46)" fg:x="186186" fg:w="65"/><text x="39.0139%" y="911.50"></text></g><g><title>__GI___libc_read (65 samples, 0.01%)</title><rect x="38.7639%" y="885" width="0.0135%" height="15" fill="rgb(224,5,42)" fg:x="186186" fg:w="65"/><text x="39.0139%" y="895.50"></text></g><g><title>readBytes (86 samples, 0.02%)</title><rect x="38.7637%" y="933" width="0.0179%" height="15" fill="rgb(239,176,25)" fg:x="186185" fg:w="86"/><text x="39.0137%" y="943.50"></text></g><g><title>[unknown] (203 samples, 0.04%)</title><rect x="38.7406%" y="949" width="0.0423%" height="15" fill="rgb(245,187,50)" fg:x="186074" fg:w="203"/><text x="38.9906%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (145 samples, 0.03%)</title><rect x="38.7864%" y="885" width="0.0302%" height="15" fill="rgb(248,24,15)" fg:x="186294" fg:w="145"/><text x="39.0364%" y="895.50"></text></g><g><title>x86_pmu_enable (140 samples, 0.03%)</title><rect x="38.7874%" y="869" width="0.0291%" height="15" fill="rgb(205,166,13)" fg:x="186299" fg:w="140"/><text x="39.0374%" y="879.50"></text></g><g><title>intel_pmu_enable_all (140 samples, 0.03%)</title><rect x="38.7874%" y="853" width="0.0291%" height="15" fill="rgb(208,114,23)" fg:x="186299" fg:w="140"/><text x="39.0374%" y="863.50"></text></g><g><title>native_write_msr (140 samples, 0.03%)</title><rect x="38.7874%" y="837" width="0.0291%" height="15" fill="rgb(239,127,18)" fg:x="186299" fg:w="140"/><text x="39.0374%" y="847.50"></text></g><g><title>schedule_tail (150 samples, 0.03%)</title><rect x="38.7857%" y="917" width="0.0312%" height="15" fill="rgb(219,154,28)" fg:x="186291" fg:w="150"/><text x="39.0357%" y="927.50"></text></g><g><title>finish_task_switch.isra.0 (148 samples, 0.03%)</title><rect x="38.7862%" y="901" width="0.0308%" height="15" fill="rgb(225,157,23)" fg:x="186293" fg:w="148"/><text x="39.0362%" y="911.50"></text></g><g><title>ret_from_fork (157 samples, 0.03%)</title><rect x="38.7849%" y="933" width="0.0327%" height="15" fill="rgb(219,8,6)" fg:x="186287" fg:w="157"/><text x="39.0349%" y="943.50"></text></g><g><title>init_globals (56 samples, 0.01%)</title><rect x="38.8197%" y="869" width="0.0117%" height="15" fill="rgb(212,47,6)" fg:x="186454" fg:w="56"/><text x="39.0697%" y="879.50"></text></g><g><title>JNI_CreateJavaVM (73 samples, 0.02%)</title><rect x="38.8176%" y="901" width="0.0152%" height="15" fill="rgb(224,190,4)" fg:x="186444" fg:w="73"/><text x="39.0676%" y="911.50"></text></g><g><title>Threads::create_vm (73 samples, 0.02%)</title><rect x="38.8176%" y="885" width="0.0152%" height="15" fill="rgb(239,183,29)" fg:x="186444" fg:w="73"/><text x="39.0676%" y="895.50"></text></g><g><title>JavaMain (74 samples, 0.02%)</title><rect x="38.8176%" y="917" width="0.0154%" height="15" fill="rgb(213,57,7)" fg:x="186444" fg:w="74"/><text x="39.0676%" y="927.50"></text></g><g><title>__clone3 (322 samples, 0.07%)</title><rect x="38.7828%" y="949" width="0.0670%" height="15" fill="rgb(216,148,1)" fg:x="186277" fg:w="322"/><text x="39.0328%" y="959.50"></text></g><g><title>start_thread (155 samples, 0.03%)</title><rect x="38.8176%" y="933" width="0.0323%" height="15" fill="rgb(236,182,29)" fg:x="186444" fg:w="155"/><text x="39.0676%" y="943.50"></text></g><g><title>thread_native_entry (76 samples, 0.02%)</title><rect x="38.8340%" y="917" width="0.0158%" height="15" fill="rgb(244,120,48)" fg:x="186523" fg:w="76"/><text x="39.0840%" y="927.50"></text></g><g><title>schedule_tail (99 samples, 0.02%)</title><rect x="38.8590%" y="933" width="0.0206%" height="15" fill="rgb(206,71,34)" fg:x="186643" fg:w="99"/><text x="39.1090%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (96 samples, 0.02%)</title><rect x="38.8596%" y="917" width="0.0200%" height="15" fill="rgb(242,32,6)" fg:x="186646" fg:w="96"/><text x="39.1096%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.02%)</title><rect x="38.8603%" y="901" width="0.0194%" height="15" fill="rgb(241,35,3)" fg:x="186649" fg:w="93"/><text x="39.1103%" y="911.50"></text></g><g><title>x86_pmu_enable (92 samples, 0.02%)</title><rect x="38.8605%" y="885" width="0.0192%" height="15" fill="rgb(222,62,19)" fg:x="186650" fg:w="92"/><text x="39.1105%" y="895.50"></text></g><g><title>intel_pmu_enable_all (91 samples, 0.02%)</title><rect x="38.8607%" y="869" width="0.0189%" height="15" fill="rgb(223,110,41)" fg:x="186651" fg:w="91"/><text x="39.1107%" y="879.50"></text></g><g><title>native_write_msr (91 samples, 0.02%)</title><rect x="38.8607%" y="853" width="0.0189%" height="15" fill="rgb(208,224,4)" fg:x="186651" fg:w="91"/><text x="39.1107%" y="863.50"></text></g><g><title>java (5,541 samples, 1.15%)</title><rect x="37.7262%" y="965" width="1.1536%" height="15" fill="rgb(241,137,19)" fg:x="181202" fg:w="5541"/><text x="37.9762%" y="975.50"></text></g><g><title>ret_from_fork (101 samples, 0.02%)</title><rect x="38.8588%" y="949" width="0.0210%" height="15" fill="rgb(244,24,17)" fg:x="186642" fg:w="101"/><text x="39.1088%" y="959.50"></text></g><g><title>shell_execve (49 samples, 0.01%)</title><rect x="38.9113%" y="453" width="0.0102%" height="15" fill="rgb(245,178,49)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="463.50"></text></g><g><title>__GI_execve (49 samples, 0.01%)</title><rect x="38.9113%" y="437" width="0.0102%" height="15" fill="rgb(219,160,38)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="447.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (49 samples, 0.01%)</title><rect x="38.9113%" y="421" width="0.0102%" height="15" fill="rgb(228,137,14)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="431.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="38.9113%" y="405" width="0.0102%" height="15" fill="rgb(237,134,11)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="415.50"></text></g><g><title>__x64_sys_execve (49 samples, 0.01%)</title><rect x="38.9113%" y="389" width="0.0102%" height="15" fill="rgb(211,126,44)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="399.50"></text></g><g><title>do_execveat_common.isra.0 (49 samples, 0.01%)</title><rect x="38.9113%" y="373" width="0.0102%" height="15" fill="rgb(226,171,33)" fg:x="186894" fg:w="49"/><text x="39.1613%" y="383.50"></text></g><g><title>[bash] (59 samples, 0.01%)</title><rect x="38.9094%" y="485" width="0.0123%" height="15" fill="rgb(253,99,13)" fg:x="186885" fg:w="59"/><text x="39.1594%" y="495.50"></text></g><g><title>[bash] (59 samples, 0.01%)</title><rect x="38.9094%" y="469" width="0.0123%" height="15" fill="rgb(244,48,7)" fg:x="186885" fg:w="59"/><text x="39.1594%" y="479.50"></text></g><g><title>[bash] (182 samples, 0.04%)</title><rect x="38.8886%" y="933" width="0.0379%" height="15" fill="rgb(244,217,54)" fg:x="186785" fg:w="182"/><text x="39.1386%" y="943.50"></text></g><g><title>execute_command_internal (112 samples, 0.02%)</title><rect x="38.9032%" y="917" width="0.0233%" height="15" fill="rgb(224,15,18)" fg:x="186855" fg:w="112"/><text x="39.1532%" y="927.50"></text></g><g><title>execute_command_internal (112 samples, 0.02%)</title><rect x="38.9032%" y="901" width="0.0233%" height="15" fill="rgb(244,99,12)" fg:x="186855" fg:w="112"/><text x="39.1532%" y="911.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="885" width="0.0171%" height="15" fill="rgb(233,226,8)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="895.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="869" width="0.0171%" height="15" fill="rgb(229,211,3)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="879.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="853" width="0.0171%" height="15" fill="rgb(216,140,21)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="863.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="837" width="0.0171%" height="15" fill="rgb(234,122,30)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="847.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="821" width="0.0171%" height="15" fill="rgb(236,25,46)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="831.50"></text></g><g><title>execute_command (82 samples, 0.02%)</title><rect x="38.9094%" y="805" width="0.0171%" height="15" fill="rgb(217,52,54)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="815.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="789" width="0.0171%" height="15" fill="rgb(222,29,26)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="799.50"></text></g><g><title>execute_command (82 samples, 0.02%)</title><rect x="38.9094%" y="773" width="0.0171%" height="15" fill="rgb(216,177,29)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="783.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="757" width="0.0171%" height="15" fill="rgb(247,136,51)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="767.50"></text></g><g><title>execute_command (82 samples, 0.02%)</title><rect x="38.9094%" y="741" width="0.0171%" height="15" fill="rgb(231,47,47)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="751.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="725" width="0.0171%" height="15" fill="rgb(211,192,36)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="735.50"></text></g><g><title>execute_command (82 samples, 0.02%)</title><rect x="38.9094%" y="709" width="0.0171%" height="15" fill="rgb(229,156,32)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="719.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="693" width="0.0171%" height="15" fill="rgb(248,213,20)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="703.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="677" width="0.0171%" height="15" fill="rgb(217,64,7)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="687.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="661" width="0.0171%" height="15" fill="rgb(232,142,8)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="671.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="645" width="0.0171%" height="15" fill="rgb(224,92,44)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="655.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="629" width="0.0171%" height="15" fill="rgb(214,169,17)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="639.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="613" width="0.0171%" height="15" fill="rgb(210,59,37)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="623.50"></text></g><g><title>expand_string_assignment (82 samples, 0.02%)</title><rect x="38.9094%" y="597" width="0.0171%" height="15" fill="rgb(214,116,48)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="607.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="581" width="0.0171%" height="15" fill="rgb(244,191,6)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="591.50"></text></g><g><title>command_substitute (82 samples, 0.02%)</title><rect x="38.9094%" y="565" width="0.0171%" height="15" fill="rgb(241,50,52)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="575.50"></text></g><g><title>parse_and_execute (82 samples, 0.02%)</title><rect x="38.9094%" y="549" width="0.0171%" height="15" fill="rgb(236,75,39)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="559.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="533" width="0.0171%" height="15" fill="rgb(236,99,0)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="543.50"></text></g><g><title>[bash] (82 samples, 0.02%)</title><rect x="38.9094%" y="517" width="0.0171%" height="15" fill="rgb(207,202,15)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="527.50"></text></g><g><title>execute_command_internal (82 samples, 0.02%)</title><rect x="38.9094%" y="501" width="0.0171%" height="15" fill="rgb(233,207,14)" fg:x="186885" fg:w="82"/><text x="39.1594%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (57 samples, 0.01%)</title><rect x="38.9471%" y="389" width="0.0119%" height="15" fill="rgb(226,27,51)" fg:x="187066" fg:w="57"/><text x="39.1971%" y="399.50"></text></g><g><title>x86_pmu_enable (57 samples, 0.01%)</title><rect x="38.9471%" y="373" width="0.0119%" height="15" fill="rgb(206,104,42)" fg:x="187066" fg:w="57"/><text x="39.1971%" y="383.50"></text></g><g><title>intel_pmu_enable_all (57 samples, 0.01%)</title><rect x="38.9471%" y="357" width="0.0119%" height="15" fill="rgb(212,225,4)" fg:x="187066" fg:w="57"/><text x="39.1971%" y="367.50"></text></g><g><title>native_write_msr (57 samples, 0.01%)</title><rect x="38.9471%" y="341" width="0.0119%" height="15" fill="rgb(233,96,42)" fg:x="187066" fg:w="57"/><text x="39.1971%" y="351.50"></text></g><g><title>schedule_tail (58 samples, 0.01%)</title><rect x="38.9471%" y="421" width="0.0121%" height="15" fill="rgb(229,21,32)" fg:x="187066" fg:w="58"/><text x="39.1971%" y="431.50"></text></g><g><title>finish_task_switch.isra.0 (58 samples, 0.01%)</title><rect x="38.9471%" y="405" width="0.0121%" height="15" fill="rgb(226,216,24)" fg:x="187066" fg:w="58"/><text x="39.1971%" y="415.50"></text></g><g><title>ret_from_fork (66 samples, 0.01%)</title><rect x="38.9456%" y="437" width="0.0137%" height="15" fill="rgb(221,163,17)" fg:x="187059" fg:w="66"/><text x="39.1956%" y="447.50"></text></g><g><title>__GI__Fork (73 samples, 0.02%)</title><rect x="38.9444%" y="469" width="0.0152%" height="15" fill="rgb(216,216,42)" fg:x="187053" fg:w="73"/><text x="39.1944%" y="479.50"></text></g><g><title>arch_fork (73 samples, 0.02%)</title><rect x="38.9444%" y="453" width="0.0152%" height="15" fill="rgb(240,118,7)" fg:x="187053" fg:w="73"/><text x="39.1944%" y="463.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="38.9444%" y="837" width="0.0156%" height="15" fill="rgb(221,67,37)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="847.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="821" width="0.0156%" height="15" fill="rgb(241,32,44)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="831.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="38.9444%" y="805" width="0.0156%" height="15" fill="rgb(235,204,43)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="815.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="789" width="0.0156%" height="15" fill="rgb(213,116,10)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="799.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="38.9444%" y="773" width="0.0156%" height="15" fill="rgb(239,15,48)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="783.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="757" width="0.0156%" height="15" fill="rgb(207,123,36)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="767.50"></text></g><g><title>execute_command (75 samples, 0.02%)</title><rect x="38.9444%" y="741" width="0.0156%" height="15" fill="rgb(209,103,30)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="751.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="725" width="0.0156%" height="15" fill="rgb(238,100,19)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="735.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="709" width="0.0156%" height="15" fill="rgb(244,30,14)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="719.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="693" width="0.0156%" height="15" fill="rgb(249,174,6)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="703.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="677" width="0.0156%" height="15" fill="rgb(235,213,41)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="687.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="661" width="0.0156%" height="15" fill="rgb(213,118,6)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="671.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="645" width="0.0156%" height="15" fill="rgb(235,44,51)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="655.50"></text></g><g><title>expand_string_assignment (75 samples, 0.02%)</title><rect x="38.9444%" y="629" width="0.0156%" height="15" fill="rgb(217,9,53)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="639.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="613" width="0.0156%" height="15" fill="rgb(237,172,34)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="623.50"></text></g><g><title>command_substitute (75 samples, 0.02%)</title><rect x="38.9444%" y="597" width="0.0156%" height="15" fill="rgb(206,206,11)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="607.50"></text></g><g><title>parse_and_execute (75 samples, 0.02%)</title><rect x="38.9444%" y="581" width="0.0156%" height="15" fill="rgb(214,149,29)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="591.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="565" width="0.0156%" height="15" fill="rgb(208,123,3)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="575.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="549" width="0.0156%" height="15" fill="rgb(229,126,4)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="559.50"></text></g><g><title>execute_command_internal (75 samples, 0.02%)</title><rect x="38.9444%" y="533" width="0.0156%" height="15" fill="rgb(222,92,36)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="543.50"></text></g><g><title>[bash] (75 samples, 0.02%)</title><rect x="38.9444%" y="517" width="0.0156%" height="15" fill="rgb(216,39,41)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="527.50"></text></g><g><title>make_child (75 samples, 0.02%)</title><rect x="38.9444%" y="501" width="0.0156%" height="15" fill="rgb(253,127,28)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="511.50"></text></g><g><title>__libc_fork (75 samples, 0.02%)</title><rect x="38.9444%" y="485" width="0.0156%" height="15" fill="rgb(249,152,51)" fg:x="187053" fg:w="75"/><text x="39.1944%" y="495.50"></text></g><g><title>__GI__Fork (56 samples, 0.01%)</title><rect x="38.9600%" y="469" width="0.0117%" height="15" fill="rgb(209,123,42)" fg:x="187128" fg:w="56"/><text x="39.2100%" y="479.50"></text></g><g><title>arch_fork (56 samples, 0.01%)</title><rect x="38.9600%" y="453" width="0.0117%" height="15" fill="rgb(241,118,22)" fg:x="187128" fg:w="56"/><text x="39.2100%" y="463.50"></text></g><g><title>[bash] (132 samples, 0.03%)</title><rect x="38.9444%" y="885" width="0.0275%" height="15" fill="rgb(208,25,7)" fg:x="187053" fg:w="132"/><text x="39.1944%" y="895.50"></text></g><g><title>execute_command_internal (132 samples, 0.03%)</title><rect x="38.9444%" y="869" width="0.0275%" height="15" fill="rgb(243,144,39)" fg:x="187053" fg:w="132"/><text x="39.1944%" y="879.50"></text></g><g><title>execute_command_internal (132 samples, 0.03%)</title><rect x="38.9444%" y="853" width="0.0275%" height="15" fill="rgb(250,50,5)" fg:x="187053" fg:w="132"/><text x="39.1944%" y="863.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="837" width="0.0119%" height="15" fill="rgb(207,67,11)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="847.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="821" width="0.0119%" height="15" fill="rgb(245,204,40)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="831.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="805" width="0.0119%" height="15" fill="rgb(238,228,24)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="815.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="789" width="0.0119%" height="15" fill="rgb(217,116,22)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="799.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="773" width="0.0119%" height="15" fill="rgb(234,98,12)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="783.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="38.9600%" y="757" width="0.0119%" height="15" fill="rgb(242,170,50)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="767.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="741" width="0.0119%" height="15" fill="rgb(235,7,5)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="751.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="38.9600%" y="725" width="0.0119%" height="15" fill="rgb(241,114,28)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="735.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="709" width="0.0119%" height="15" fill="rgb(246,112,42)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="719.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="38.9600%" y="693" width="0.0119%" height="15" fill="rgb(248,228,14)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="703.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="677" width="0.0119%" height="15" fill="rgb(208,133,18)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="687.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="38.9600%" y="661" width="0.0119%" height="15" fill="rgb(207,35,49)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="671.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="645" width="0.0119%" height="15" fill="rgb(205,68,36)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="655.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="38.9600%" y="629" width="0.0119%" height="15" fill="rgb(245,62,40)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="639.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="613" width="0.0119%" height="15" fill="rgb(228,27,24)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="623.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="597" width="0.0119%" height="15" fill="rgb(253,19,12)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="607.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="581" width="0.0119%" height="15" fill="rgb(232,28,20)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="591.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="565" width="0.0119%" height="15" fill="rgb(218,35,51)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="575.50"></text></g><g><title>expand_string_assignment (57 samples, 0.01%)</title><rect x="38.9600%" y="549" width="0.0119%" height="15" fill="rgb(212,90,40)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="559.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="38.9600%" y="533" width="0.0119%" height="15" fill="rgb(220,172,12)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="543.50"></text></g><g><title>command_substitute (57 samples, 0.01%)</title><rect x="38.9600%" y="517" width="0.0119%" height="15" fill="rgb(226,159,20)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="527.50"></text></g><g><title>make_child (57 samples, 0.01%)</title><rect x="38.9600%" y="501" width="0.0119%" height="15" fill="rgb(234,205,16)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="511.50"></text></g><g><title>__libc_fork (57 samples, 0.01%)</title><rect x="38.9600%" y="485" width="0.0119%" height="15" fill="rgb(207,9,39)" fg:x="187128" fg:w="57"/><text x="39.2100%" y="495.50"></text></g><g><title>[bash] (133 samples, 0.03%)</title><rect x="38.9444%" y="901" width="0.0277%" height="15" fill="rgb(249,143,15)" fg:x="187053" fg:w="133"/><text x="39.1944%" y="911.50"></text></g><g><title>execute_command_internal (192 samples, 0.04%)</title><rect x="38.9367%" y="933" width="0.0400%" height="15" fill="rgb(253,133,29)" fg:x="187016" fg:w="192"/><text x="39.1867%" y="943.50"></text></g><g><title>execute_command_internal (155 samples, 0.03%)</title><rect x="38.9444%" y="917" width="0.0323%" height="15" fill="rgb(221,187,0)" fg:x="187053" fg:w="155"/><text x="39.1944%" y="927.50"></text></g><g><title>[unknown] (443 samples, 0.09%)</title><rect x="38.8886%" y="949" width="0.0922%" height="15" fill="rgb(205,204,26)" fg:x="186785" fg:w="443"/><text x="39.1386%" y="959.50"></text></g><g><title>make_child (51 samples, 0.01%)</title><rect x="38.9954%" y="725" width="0.0106%" height="15" fill="rgb(224,68,54)" fg:x="187298" fg:w="51"/><text x="39.2454%" y="735.50"></text></g><g><title>shell_execve (53 samples, 0.01%)</title><rect x="39.0104%" y="629" width="0.0110%" height="15" fill="rgb(209,67,4)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="639.50"></text></g><g><title>__GI_execve (53 samples, 0.01%)</title><rect x="39.0104%" y="613" width="0.0110%" height="15" fill="rgb(228,229,18)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (53 samples, 0.01%)</title><rect x="39.0104%" y="597" width="0.0110%" height="15" fill="rgb(231,89,13)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="607.50"></text></g><g><title>do_syscall_64 (53 samples, 0.01%)</title><rect x="39.0104%" y="581" width="0.0110%" height="15" fill="rgb(210,182,18)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="591.50"></text></g><g><title>__x64_sys_execve (53 samples, 0.01%)</title><rect x="39.0104%" y="565" width="0.0110%" height="15" fill="rgb(240,105,2)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="575.50"></text></g><g><title>do_execveat_common.isra.0 (53 samples, 0.01%)</title><rect x="39.0104%" y="549" width="0.0110%" height="15" fill="rgb(207,170,50)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="559.50"></text></g><g><title>bprm_execve (53 samples, 0.01%)</title><rect x="39.0104%" y="533" width="0.0110%" height="15" fill="rgb(232,133,24)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="543.50"></text></g><g><title>bprm_execve.part.0 (53 samples, 0.01%)</title><rect x="39.0104%" y="517" width="0.0110%" height="15" fill="rgb(235,166,27)" fg:x="187370" fg:w="53"/><text x="39.2604%" y="527.50"></text></g><g><title>[bash] (73 samples, 0.02%)</title><rect x="39.0066%" y="645" width="0.0152%" height="15" fill="rgb(209,19,13)" fg:x="187352" fg:w="73"/><text x="39.2566%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (130 samples, 0.03%)</title><rect x="39.0304%" y="533" width="0.0271%" height="15" fill="rgb(226,79,39)" fg:x="187466" fg:w="130"/><text x="39.2804%" y="543.50"></text></g><g><title>x86_pmu_enable (129 samples, 0.03%)</title><rect x="39.0306%" y="517" width="0.0269%" height="15" fill="rgb(222,163,10)" fg:x="187467" fg:w="129"/><text x="39.2806%" y="527.50"></text></g><g><title>intel_pmu_enable_all (129 samples, 0.03%)</title><rect x="39.0306%" y="501" width="0.0269%" height="15" fill="rgb(214,44,19)" fg:x="187467" fg:w="129"/><text x="39.2806%" y="511.50"></text></g><g><title>native_write_msr (129 samples, 0.03%)</title><rect x="39.0306%" y="485" width="0.0269%" height="15" fill="rgb(210,217,13)" fg:x="187467" fg:w="129"/><text x="39.2806%" y="495.50"></text></g><g><title>schedule_tail (137 samples, 0.03%)</title><rect x="39.0291%" y="565" width="0.0285%" height="15" fill="rgb(237,61,54)" fg:x="187460" fg:w="137"/><text x="39.2791%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (136 samples, 0.03%)</title><rect x="39.0293%" y="549" width="0.0283%" height="15" fill="rgb(226,184,24)" fg:x="187461" fg:w="136"/><text x="39.2793%" y="559.50"></text></g><g><title>ret_from_fork (157 samples, 0.03%)</title><rect x="39.0256%" y="581" width="0.0327%" height="15" fill="rgb(223,226,4)" fg:x="187443" fg:w="157"/><text x="39.2756%" y="591.50"></text></g><g><title>__GI__Fork (170 samples, 0.04%)</title><rect x="39.0233%" y="613" width="0.0354%" height="15" fill="rgb(210,26,41)" fg:x="187432" fg:w="170"/><text x="39.2733%" y="623.50"></text></g><g><title>arch_fork (170 samples, 0.04%)</title><rect x="39.0233%" y="597" width="0.0354%" height="15" fill="rgb(220,221,6)" fg:x="187432" fg:w="170"/><text x="39.2733%" y="607.50"></text></g><g><title>__libc_fork (172 samples, 0.04%)</title><rect x="39.0233%" y="629" width="0.0358%" height="15" fill="rgb(225,89,49)" fg:x="187432" fg:w="172"/><text x="39.2733%" y="639.50"></text></g><g><title>[bash] (255 samples, 0.05%)</title><rect x="39.0066%" y="661" width="0.0531%" height="15" fill="rgb(218,70,45)" fg:x="187352" fg:w="255"/><text x="39.2566%" y="671.50"></text></g><g><title>make_child (180 samples, 0.04%)</title><rect x="39.0223%" y="645" width="0.0375%" height="15" fill="rgb(238,166,21)" fg:x="187427" fg:w="180"/><text x="39.2723%" y="655.50"></text></g><g><title>parse_and_execute (301 samples, 0.06%)</title><rect x="39.0060%" y="725" width="0.0627%" height="15" fill="rgb(224,141,44)" fg:x="187349" fg:w="301"/><text x="39.2560%" y="735.50"></text></g><g><title>execute_command_internal (299 samples, 0.06%)</title><rect x="39.0064%" y="709" width="0.0623%" height="15" fill="rgb(230,12,49)" fg:x="187351" fg:w="299"/><text x="39.2564%" y="719.50"></text></g><g><title>[bash] (299 samples, 0.06%)</title><rect x="39.0064%" y="693" width="0.0623%" height="15" fill="rgb(212,174,12)" fg:x="187351" fg:w="299"/><text x="39.2564%" y="703.50"></text></g><g><title>execute_command_internal (298 samples, 0.06%)</title><rect x="39.0066%" y="677" width="0.0620%" height="15" fill="rgb(246,67,9)" fg:x="187352" fg:w="298"/><text x="39.2566%" y="687.50"></text></g><g><title>command_substitute (372 samples, 0.08%)</title><rect x="38.9948%" y="741" width="0.0775%" height="15" fill="rgb(239,35,23)" fg:x="187295" fg:w="372"/><text x="39.2448%" y="751.50"></text></g><g><title>[bash] (374 samples, 0.08%)</title><rect x="38.9946%" y="757" width="0.0779%" height="15" fill="rgb(211,167,0)" fg:x="187294" fg:w="374"/><text x="39.2446%" y="767.50"></text></g><g><title>expand_string_assignment (375 samples, 0.08%)</title><rect x="38.9946%" y="773" width="0.0781%" height="15" fill="rgb(225,119,45)" fg:x="187294" fg:w="375"/><text x="39.2446%" y="783.50"></text></g><g><title>[bash] (388 samples, 0.08%)</title><rect x="38.9923%" y="789" width="0.0808%" height="15" fill="rgb(210,162,6)" fg:x="187283" fg:w="388"/><text x="39.2423%" y="799.50"></text></g><g><title>[bash] (393 samples, 0.08%)</title><rect x="38.9923%" y="805" width="0.0818%" height="15" fill="rgb(208,118,35)" fg:x="187283" fg:w="393"/><text x="39.2423%" y="815.50"></text></g><g><title>[bash] (411 samples, 0.09%)</title><rect x="38.9923%" y="821" width="0.0856%" height="15" fill="rgb(239,4,53)" fg:x="187283" fg:w="411"/><text x="39.2423%" y="831.50"></text></g><g><title>[bash] (415 samples, 0.09%)</title><rect x="38.9923%" y="837" width="0.0864%" height="15" fill="rgb(213,130,21)" fg:x="187283" fg:w="415"/><text x="39.2423%" y="847.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="39.0814%" y="677" width="0.0108%" height="15" fill="rgb(235,148,0)" fg:x="187711" fg:w="52"/><text x="39.3314%" y="687.50"></text></g><g><title>copy_command (55 samples, 0.01%)</title><rect x="39.0814%" y="693" width="0.0115%" height="15" fill="rgb(244,224,18)" fg:x="187711" fg:w="55"/><text x="39.3314%" y="703.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="39.0795%" y="741" width="0.0135%" height="15" fill="rgb(211,214,4)" fg:x="187702" fg:w="65"/><text x="39.3295%" y="751.50"></text></g><g><title>copy_command (59 samples, 0.01%)</title><rect x="39.0808%" y="725" width="0.0123%" height="15" fill="rgb(206,119,25)" fg:x="187708" fg:w="59"/><text x="39.3308%" y="735.50"></text></g><g><title>copy_command (56 samples, 0.01%)</title><rect x="39.0814%" y="709" width="0.0117%" height="15" fill="rgb(243,93,47)" fg:x="187711" fg:w="56"/><text x="39.3314%" y="719.50"></text></g><g><title>copy_command (69 samples, 0.01%)</title><rect x="39.0789%" y="773" width="0.0144%" height="15" fill="rgb(224,194,6)" fg:x="187699" fg:w="69"/><text x="39.3289%" y="783.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="39.0793%" y="757" width="0.0139%" height="15" fill="rgb(243,229,6)" fg:x="187701" fg:w="67"/><text x="39.3293%" y="767.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="39.0787%" y="821" width="0.0148%" height="15" fill="rgb(207,23,50)" fg:x="187698" fg:w="71"/><text x="39.3287%" y="831.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="39.0787%" y="805" width="0.0148%" height="15" fill="rgb(253,192,32)" fg:x="187698" fg:w="71"/><text x="39.3287%" y="815.50"></text></g><g><title>copy_command (71 samples, 0.01%)</title><rect x="39.0787%" y="789" width="0.0148%" height="15" fill="rgb(213,21,6)" fg:x="187698" fg:w="71"/><text x="39.3287%" y="799.50"></text></g><g><title>bind_function (72 samples, 0.01%)</title><rect x="39.0787%" y="837" width="0.0150%" height="15" fill="rgb(243,151,13)" fg:x="187698" fg:w="72"/><text x="39.3287%" y="847.50"></text></g><g><title>copy_command (49 samples, 0.01%)</title><rect x="39.0955%" y="709" width="0.0102%" height="15" fill="rgb(233,165,41)" fg:x="187779" fg:w="49"/><text x="39.3455%" y="719.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="39.0951%" y="725" width="0.0108%" height="15" fill="rgb(246,176,45)" fg:x="187777" fg:w="52"/><text x="39.3451%" y="735.50"></text></g><g><title>copy_command (60 samples, 0.01%)</title><rect x="39.0943%" y="741" width="0.0125%" height="15" fill="rgb(217,170,52)" fg:x="187773" fg:w="60"/><text x="39.3443%" y="751.50"></text></g><g><title>copy_command (61 samples, 0.01%)</title><rect x="39.0943%" y="757" width="0.0127%" height="15" fill="rgb(214,203,54)" fg:x="187773" fg:w="61"/><text x="39.3443%" y="767.50"></text></g><g><title>copy_function_def_contents (65 samples, 0.01%)</title><rect x="39.0937%" y="837" width="0.0135%" height="15" fill="rgb(248,215,49)" fg:x="187770" fg:w="65"/><text x="39.3437%" y="847.50"></text></g><g><title>copy_command (64 samples, 0.01%)</title><rect x="39.0939%" y="821" width="0.0133%" height="15" fill="rgb(208,46,10)" fg:x="187771" fg:w="64"/><text x="39.3439%" y="831.50"></text></g><g><title>copy_command (64 samples, 0.01%)</title><rect x="39.0939%" y="805" width="0.0133%" height="15" fill="rgb(254,5,31)" fg:x="187771" fg:w="64"/><text x="39.3439%" y="815.50"></text></g><g><title>copy_command (64 samples, 0.01%)</title><rect x="39.0939%" y="789" width="0.0133%" height="15" fill="rgb(222,104,33)" fg:x="187771" fg:w="64"/><text x="39.3439%" y="799.50"></text></g><g><title>copy_command (63 samples, 0.01%)</title><rect x="39.0941%" y="773" width="0.0131%" height="15" fill="rgb(248,49,16)" fg:x="187772" fg:w="63"/><text x="39.3441%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (61 samples, 0.01%)</title><rect x="39.1370%" y="613" width="0.0127%" height="15" fill="rgb(232,198,41)" fg:x="187978" fg:w="61"/><text x="39.3870%" y="623.50"></text></g><g><title>x86_pmu_enable (60 samples, 0.01%)</title><rect x="39.1372%" y="597" width="0.0125%" height="15" fill="rgb(214,125,3)" fg:x="187979" fg:w="60"/><text x="39.3872%" y="607.50"></text></g><g><title>intel_pmu_enable_all (60 samples, 0.01%)</title><rect x="39.1372%" y="581" width="0.0125%" height="15" fill="rgb(229,220,28)" fg:x="187979" fg:w="60"/><text x="39.3872%" y="591.50"></text></g><g><title>native_write_msr (60 samples, 0.01%)</title><rect x="39.1372%" y="565" width="0.0125%" height="15" fill="rgb(222,64,37)" fg:x="187979" fg:w="60"/><text x="39.3872%" y="575.50"></text></g><g><title>schedule_tail (67 samples, 0.01%)</title><rect x="39.1361%" y="645" width="0.0139%" height="15" fill="rgb(249,184,13)" fg:x="187974" fg:w="67"/><text x="39.3861%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (66 samples, 0.01%)</title><rect x="39.1363%" y="629" width="0.0137%" height="15" fill="rgb(252,176,6)" fg:x="187975" fg:w="66"/><text x="39.3863%" y="639.50"></text></g><g><title>make_child (89 samples, 0.02%)</title><rect x="39.1320%" y="725" width="0.0185%" height="15" fill="rgb(228,153,7)" fg:x="187954" fg:w="89"/><text x="39.3820%" y="735.50"></text></g><g><title>__libc_fork (86 samples, 0.02%)</title><rect x="39.1326%" y="709" width="0.0179%" height="15" fill="rgb(242,193,5)" fg:x="187957" fg:w="86"/><text x="39.3826%" y="719.50"></text></g><g><title>__GI__Fork (86 samples, 0.02%)</title><rect x="39.1326%" y="693" width="0.0179%" height="15" fill="rgb(232,140,9)" fg:x="187957" fg:w="86"/><text x="39.3826%" y="703.50"></text></g><g><title>arch_fork (86 samples, 0.02%)</title><rect x="39.1326%" y="677" width="0.0179%" height="15" fill="rgb(213,222,16)" fg:x="187957" fg:w="86"/><text x="39.3826%" y="687.50"></text></g><g><title>ret_from_fork (78 samples, 0.02%)</title><rect x="39.1343%" y="661" width="0.0162%" height="15" fill="rgb(222,75,50)" fg:x="187965" fg:w="78"/><text x="39.3843%" y="671.50"></text></g><g><title>parse_and_execute (133 samples, 0.03%)</title><rect x="39.1293%" y="757" width="0.0277%" height="15" fill="rgb(205,180,2)" fg:x="187941" fg:w="133"/><text x="39.3793%" y="767.50"></text></g><g><title>execute_command_internal (133 samples, 0.03%)</title><rect x="39.1293%" y="741" width="0.0277%" height="15" fill="rgb(216,34,7)" fg:x="187941" fg:w="133"/><text x="39.3793%" y="751.50"></text></g><g><title>expand_word_leave_quoted (207 samples, 0.04%)</title><rect x="39.1184%" y="805" width="0.0431%" height="15" fill="rgb(253,16,32)" fg:x="187889" fg:w="207"/><text x="39.3684%" y="815.50"></text></g><g><title>[bash] (207 samples, 0.04%)</title><rect x="39.1184%" y="789" width="0.0431%" height="15" fill="rgb(208,97,28)" fg:x="187889" fg:w="207"/><text x="39.3684%" y="799.50"></text></g><g><title>command_substitute (207 samples, 0.04%)</title><rect x="39.1184%" y="773" width="0.0431%" height="15" fill="rgb(225,92,11)" fg:x="187889" fg:w="207"/><text x="39.3684%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (60 samples, 0.01%)</title><rect x="39.1647%" y="693" width="0.0125%" height="15" fill="rgb(243,38,12)" fg:x="188111" fg:w="60"/><text x="39.4147%" y="703.50"></text></g><g><title>x86_pmu_enable (60 samples, 0.01%)</title><rect x="39.1647%" y="677" width="0.0125%" height="15" fill="rgb(208,139,16)" fg:x="188111" fg:w="60"/><text x="39.4147%" y="687.50"></text></g><g><title>intel_pmu_enable_all (60 samples, 0.01%)</title><rect x="39.1647%" y="661" width="0.0125%" height="15" fill="rgb(227,24,9)" fg:x="188111" fg:w="60"/><text x="39.4147%" y="671.50"></text></g><g><title>native_write_msr (59 samples, 0.01%)</title><rect x="39.1649%" y="645" width="0.0123%" height="15" fill="rgb(206,62,11)" fg:x="188112" fg:w="59"/><text x="39.4149%" y="655.50"></text></g><g><title>schedule_tail (65 samples, 0.01%)</title><rect x="39.1638%" y="725" width="0.0135%" height="15" fill="rgb(228,134,27)" fg:x="188107" fg:w="65"/><text x="39.4138%" y="735.50"></text></g><g><title>finish_task_switch.isra.0 (64 samples, 0.01%)</title><rect x="39.1640%" y="709" width="0.0133%" height="15" fill="rgb(205,55,33)" fg:x="188108" fg:w="64"/><text x="39.4140%" y="719.50"></text></g><g><title>__GI__Fork (75 samples, 0.02%)</title><rect x="39.1620%" y="773" width="0.0156%" height="15" fill="rgb(243,75,43)" fg:x="188098" fg:w="75"/><text x="39.4120%" y="783.50"></text></g><g><title>arch_fork (75 samples, 0.02%)</title><rect x="39.1620%" y="757" width="0.0156%" height="15" fill="rgb(223,27,42)" fg:x="188098" fg:w="75"/><text x="39.4120%" y="767.50"></text></g><g><title>ret_from_fork (71 samples, 0.01%)</title><rect x="39.1628%" y="741" width="0.0148%" height="15" fill="rgb(232,189,33)" fg:x="188102" fg:w="71"/><text x="39.4128%" y="751.50"></text></g><g><title>__libc_fork (76 samples, 0.02%)</title><rect x="39.1620%" y="789" width="0.0158%" height="15" fill="rgb(210,9,39)" fg:x="188098" fg:w="76"/><text x="39.4120%" y="799.50"></text></g><g><title>make_child (84 samples, 0.02%)</title><rect x="39.1615%" y="805" width="0.0175%" height="15" fill="rgb(242,85,26)" fg:x="188096" fg:w="84"/><text x="39.4115%" y="815.50"></text></g><g><title>execute_command (914 samples, 0.19%)</title><rect x="38.9906%" y="869" width="0.1903%" height="15" fill="rgb(248,44,4)" fg:x="187275" fg:w="914"/><text x="39.2406%" y="879.50"></text></g><g><title>execute_command_internal (911 samples, 0.19%)</title><rect x="38.9912%" y="853" width="0.1897%" height="15" fill="rgb(250,96,46)" fg:x="187278" fg:w="911"/><text x="39.2412%" y="863.50"></text></g><g><title>execute_command (354 samples, 0.07%)</title><rect x="39.1072%" y="837" width="0.0737%" height="15" fill="rgb(229,116,26)" fg:x="187835" fg:w="354"/><text x="39.3572%" y="847.50"></text></g><g><title>execute_command_internal (353 samples, 0.07%)</title><rect x="39.1074%" y="821" width="0.0735%" height="15" fill="rgb(246,94,34)" fg:x="187836" fg:w="353"/><text x="39.3574%" y="831.50"></text></g><g><title>[bash] (221 samples, 0.05%)</title><rect x="39.2094%" y="805" width="0.0460%" height="15" fill="rgb(251,73,21)" fg:x="188326" fg:w="221"/><text x="39.4594%" y="815.50"></text></g><g><title>buffered_getchar (61 samples, 0.01%)</title><rect x="39.2427%" y="789" width="0.0127%" height="15" fill="rgb(254,121,25)" fg:x="188486" fg:w="61"/><text x="39.4927%" y="799.50"></text></g><g><title>[bash] (380 samples, 0.08%)</title><rect x="39.1921%" y="821" width="0.0791%" height="15" fill="rgb(215,161,49)" fg:x="188243" fg:w="380"/><text x="39.4421%" y="831.50"></text></g><g><title>reader_loop (1,413 samples, 0.29%)</title><rect x="38.9831%" y="885" width="0.2942%" height="15" fill="rgb(221,43,13)" fg:x="187239" fg:w="1413"/><text x="39.2331%" y="895.50"></text></g><g><title>read_command (463 samples, 0.10%)</title><rect x="39.1809%" y="869" width="0.0964%" height="15" fill="rgb(249,5,37)" fg:x="188189" fg:w="463"/><text x="39.4309%" y="879.50"></text></g><g><title>parse_command (463 samples, 0.10%)</title><rect x="39.1809%" y="853" width="0.0964%" height="15" fill="rgb(226,25,44)" fg:x="188189" fg:w="463"/><text x="39.4309%" y="863.50"></text></g><g><title>yyparse (463 samples, 0.10%)</title><rect x="39.1809%" y="837" width="0.0964%" height="15" fill="rgb(238,189,16)" fg:x="188189" fg:w="463"/><text x="39.4309%" y="847.50"></text></g><g><title>__libc_start_main_impl (1,428 samples, 0.30%)</title><rect x="38.9810%" y="933" width="0.2973%" height="15" fill="rgb(251,186,8)" fg:x="187229" fg:w="1428"/><text x="39.2310%" y="943.50"></text></g><g><title>__libc_start_call_main (1,428 samples, 0.30%)</title><rect x="38.9810%" y="917" width="0.2973%" height="15" fill="rgb(254,34,31)" fg:x="187229" fg:w="1428"/><text x="39.2310%" y="927.50"></text></g><g><title>main (1,428 samples, 0.30%)</title><rect x="38.9810%" y="901" width="0.2973%" height="15" fill="rgb(225,215,27)" fg:x="187229" fg:w="1428"/><text x="39.2310%" y="911.50"></text></g><g><title>_start (1,445 samples, 0.30%)</title><rect x="38.9810%" y="949" width="0.3008%" height="15" fill="rgb(221,192,48)" fg:x="187229" fg:w="1445"/><text x="39.2310%" y="959.50"></text></g><g><title>libtool (2,012 samples, 0.42%)</title><rect x="38.8798%" y="965" width="0.4189%" height="15" fill="rgb(219,137,20)" fg:x="186743" fg:w="2012"/><text x="39.1298%" y="975.50"></text></g><g><title>std::locale::_Impl::_Impl (50 samples, 0.01%)</title><rect x="39.3281%" y="837" width="0.0104%" height="15" fill="rgb(219,84,11)" fg:x="188896" fg:w="50"/><text x="39.5781%" y="847.50"></text></g><g><title>_GLOBAL__sub_I__Z12SwitchToEuidv (67 samples, 0.01%)</title><rect x="39.3248%" y="901" width="0.0139%" height="15" fill="rgb(224,10,23)" fg:x="188880" fg:w="67"/><text x="39.5748%" y="911.50"></text></g><g><title>std::ios_base::Init::Init (67 samples, 0.01%)</title><rect x="39.3248%" y="885" width="0.0139%" height="15" fill="rgb(248,22,39)" fg:x="188880" fg:w="67"/><text x="39.5748%" y="895.50"></text></g><g><title>std::locale::locale (52 samples, 0.01%)</title><rect x="39.3279%" y="869" width="0.0108%" height="15" fill="rgb(212,154,20)" fg:x="188895" fg:w="52"/><text x="39.5779%" y="879.50"></text></g><g><title>[libstdc++.so.6.0.30] (52 samples, 0.01%)</title><rect x="39.3279%" y="853" width="0.0108%" height="15" fill="rgb(236,199,50)" fg:x="188895" fg:w="52"/><text x="39.5779%" y="863.50"></text></g><g><title>__libc_csu_init (73 samples, 0.02%)</title><rect x="39.3248%" y="917" width="0.0152%" height="15" fill="rgb(211,9,17)" fg:x="188880" fg:w="73"/><text x="39.5748%" y="927.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (60 samples, 0.01%)</title><rect x="39.3670%" y="501" width="0.0125%" height="15" fill="rgb(243,216,36)" fg:x="189083" fg:w="60"/><text x="39.6170%" y="511.50"></text></g><g><title>_ZdlPv (60 samples, 0.01%)</title><rect x="39.3670%" y="485" width="0.0125%" height="15" fill="rgb(250,2,10)" fg:x="189083" fg:w="60"/><text x="39.6170%" y="495.50"></text></g><g><title>_ZdlPv (55 samples, 0.01%)</title><rect x="39.3681%" y="469" width="0.0115%" height="15" fill="rgb(226,50,48)" fg:x="189088" fg:w="55"/><text x="39.6181%" y="479.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (54 samples, 0.01%)</title><rect x="39.3683%" y="453" width="0.0112%" height="15" fill="rgb(243,81,16)" fg:x="189089" fg:w="54"/><text x="39.6183%" y="463.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (111 samples, 0.02%)</title><rect x="39.3631%" y="533" width="0.0231%" height="15" fill="rgb(250,14,2)" fg:x="189064" fg:w="111"/><text x="39.6131%" y="543.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (101 samples, 0.02%)</title><rect x="39.3652%" y="517" width="0.0210%" height="15" fill="rgb(233,135,29)" fg:x="189074" fg:w="101"/><text x="39.6152%" y="527.50"></text></g><g><title>_ZdlPv (50 samples, 0.01%)</title><rect x="39.3914%" y="453" width="0.0104%" height="15" fill="rgb(224,64,43)" fg:x="189200" fg:w="50"/><text x="39.6414%" y="463.50"></text></g><g><title>_ZdlPv (62 samples, 0.01%)</title><rect x="39.3910%" y="469" width="0.0129%" height="15" fill="rgb(238,84,13)" fg:x="189198" fg:w="62"/><text x="39.6410%" y="479.50"></text></g><g><title>_ZdlPv (90 samples, 0.02%)</title><rect x="39.3895%" y="485" width="0.0187%" height="15" fill="rgb(253,48,26)" fg:x="189191" fg:w="90"/><text x="39.6395%" y="495.50"></text></g><g><title>_ZdlPv (99 samples, 0.02%)</title><rect x="39.3891%" y="501" width="0.0206%" height="15" fill="rgb(205,223,31)" fg:x="189189" fg:w="99"/><text x="39.6391%" y="511.50"></text></g><g><title>_ZdlPv (114 samples, 0.02%)</title><rect x="39.3862%" y="517" width="0.0237%" height="15" fill="rgb(221,41,32)" fg:x="189175" fg:w="114"/><text x="39.6362%" y="527.50"></text></g><g><title>_ZdlPv (128 samples, 0.03%)</title><rect x="39.3862%" y="533" width="0.0266%" height="15" fill="rgb(213,158,31)" fg:x="189175" fg:w="128"/><text x="39.6362%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (67 samples, 0.01%)</title><rect x="39.4507%" y="373" width="0.0139%" height="15" fill="rgb(245,126,43)" fg:x="189485" fg:w="67"/><text x="39.7007%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (53 samples, 0.01%)</title><rect x="39.4536%" y="357" width="0.0110%" height="15" fill="rgb(227,7,22)" fg:x="189499" fg:w="53"/><text x="39.7036%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (77 samples, 0.02%)</title><rect x="39.4491%" y="389" width="0.0160%" height="15" fill="rgb(252,90,44)" fg:x="189477" fg:w="77"/><text x="39.6991%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (84 samples, 0.02%)</title><rect x="39.4480%" y="405" width="0.0175%" height="15" fill="rgb(253,91,0)" fg:x="189472" fg:w="84"/><text x="39.6980%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (100 samples, 0.02%)</title><rect x="39.4449%" y="421" width="0.0208%" height="15" fill="rgb(252,175,49)" fg:x="189457" fg:w="100"/><text x="39.6949%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.02%)</title><rect x="39.4418%" y="437" width="0.0244%" height="15" fill="rgb(246,150,1)" fg:x="189442" fg:w="117"/><text x="39.6918%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (136 samples, 0.03%)</title><rect x="39.4380%" y="453" width="0.0283%" height="15" fill="rgb(241,192,25)" fg:x="189424" fg:w="136"/><text x="39.6880%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (164 samples, 0.03%)</title><rect x="39.4324%" y="485" width="0.0341%" height="15" fill="rgb(239,187,11)" fg:x="189397" fg:w="164"/><text x="39.6824%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (145 samples, 0.03%)</title><rect x="39.4364%" y="469" width="0.0302%" height="15" fill="rgb(218,202,51)" fg:x="189416" fg:w="145"/><text x="39.6864%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (189 samples, 0.04%)</title><rect x="39.4285%" y="501" width="0.0393%" height="15" fill="rgb(225,176,8)" fg:x="189378" fg:w="189"/><text x="39.6785%" y="511.50"></text></g><g><title>_ZdlPv (534 samples, 0.11%)</title><rect x="39.3583%" y="549" width="0.1112%" height="15" fill="rgb(219,122,41)" fg:x="189041" fg:w="534"/><text x="39.6083%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (269 samples, 0.06%)</title><rect x="39.4135%" y="533" width="0.0560%" height="15" fill="rgb(248,140,20)" fg:x="189306" fg:w="269"/><text x="39.6635%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (232 samples, 0.05%)</title><rect x="39.4212%" y="517" width="0.0483%" height="15" fill="rgb(245,41,37)" fg:x="189343" fg:w="232"/><text x="39.6712%" y="527.50"></text></g><g><title>_ZdlPv (546 samples, 0.11%)</title><rect x="39.3570%" y="581" width="0.1137%" height="15" fill="rgb(235,82,39)" fg:x="189035" fg:w="546"/><text x="39.6070%" y="591.50"></text></g><g><title>_ZdlPv (546 samples, 0.11%)</title><rect x="39.3570%" y="565" width="0.1137%" height="15" fill="rgb(230,108,42)" fg:x="189035" fg:w="546"/><text x="39.6070%" y="575.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (61 samples, 0.01%)</title><rect x="39.4751%" y="501" width="0.0127%" height="15" fill="rgb(215,150,50)" fg:x="189602" fg:w="61"/><text x="39.7251%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (61 samples, 0.01%)</title><rect x="39.4751%" y="485" width="0.0127%" height="15" fill="rgb(233,212,5)" fg:x="189602" fg:w="61"/><text x="39.7251%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (63 samples, 0.01%)</title><rect x="39.5255%" y="389" width="0.0131%" height="15" fill="rgb(245,80,22)" fg:x="189844" fg:w="63"/><text x="39.7755%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (51 samples, 0.01%)</title><rect x="39.5280%" y="373" width="0.0106%" height="15" fill="rgb(238,129,16)" fg:x="189856" fg:w="51"/><text x="39.7780%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (75 samples, 0.02%)</title><rect x="39.5234%" y="405" width="0.0156%" height="15" fill="rgb(240,19,0)" fg:x="189834" fg:w="75"/><text x="39.7734%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (94 samples, 0.02%)</title><rect x="39.5207%" y="421" width="0.0196%" height="15" fill="rgb(232,42,35)" fg:x="189821" fg:w="94"/><text x="39.7707%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (127 samples, 0.03%)</title><rect x="39.5140%" y="453" width="0.0264%" height="15" fill="rgb(223,130,24)" fg:x="189789" fg:w="127"/><text x="39.7640%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (103 samples, 0.02%)</title><rect x="39.5190%" y="437" width="0.0214%" height="15" fill="rgb(237,16,22)" fg:x="189813" fg:w="103"/><text x="39.7690%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.03%)</title><rect x="39.5113%" y="469" width="0.0294%" height="15" fill="rgb(248,192,20)" fg:x="189776" fg:w="141"/><text x="39.7613%" y="479.50"></text></g><g><title>_ZdlPv (331 samples, 0.07%)</title><rect x="39.4720%" y="517" width="0.0689%" height="15" fill="rgb(233,167,2)" fg:x="189587" fg:w="331"/><text x="39.7220%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (205 samples, 0.04%)</title><rect x="39.4982%" y="501" width="0.0427%" height="15" fill="rgb(252,71,44)" fg:x="189713" fg:w="205"/><text x="39.7482%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (162 samples, 0.03%)</title><rect x="39.5071%" y="485" width="0.0337%" height="15" fill="rgb(238,37,47)" fg:x="189756" fg:w="162"/><text x="39.7571%" y="495.50"></text></g><g><title>_ZdlPv (354 samples, 0.07%)</title><rect x="39.4713%" y="533" width="0.0737%" height="15" fill="rgb(214,202,54)" fg:x="189584" fg:w="354"/><text x="39.7213%" y="543.50"></text></g><g><title>_ZdlPv (356 samples, 0.07%)</title><rect x="39.4713%" y="565" width="0.0741%" height="15" fill="rgb(254,165,40)" fg:x="189584" fg:w="356"/><text x="39.7213%" y="575.50"></text></g><g><title>_ZdlPv (356 samples, 0.07%)</title><rect x="39.4713%" y="549" width="0.0741%" height="15" fill="rgb(246,173,38)" fg:x="189584" fg:w="356"/><text x="39.7213%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (391 samples, 0.08%)</title><rect x="39.4711%" y="581" width="0.0814%" height="15" fill="rgb(215,3,27)" fg:x="189583" fg:w="391"/><text x="39.7211%" y="591.50"></text></g><g><title>cshook_security_file_permission (944 samples, 0.20%)</title><rect x="39.3566%" y="629" width="0.1965%" height="15" fill="rgb(239,169,51)" fg:x="189033" fg:w="944"/><text x="39.6066%" y="639.50"></text></g><g><title>cshook_security_sb_free_security (944 samples, 0.20%)</title><rect x="39.3566%" y="613" width="0.1965%" height="15" fill="rgb(212,5,25)" fg:x="189033" fg:w="944"/><text x="39.6066%" y="623.50"></text></g><g><title>cshook_security_sb_free_security (942 samples, 0.20%)</title><rect x="39.3570%" y="597" width="0.1961%" height="15" fill="rgb(243,45,17)" fg:x="189035" fg:w="942"/><text x="39.6070%" y="607.50"></text></g><g><title>pinnedhook_security_bprm_check_security (954 samples, 0.20%)</title><rect x="39.3550%" y="677" width="0.1986%" height="15" fill="rgb(242,97,9)" fg:x="189025" fg:w="954"/><text x="39.6050%" y="687.50"></text></g><g><title>cshook_security_bprm_check_security (954 samples, 0.20%)</title><rect x="39.3550%" y="661" width="0.1986%" height="15" fill="rgb(228,71,31)" fg:x="189025" fg:w="954"/><text x="39.6050%" y="671.50"></text></g><g><title>cshook_security_file_permission (953 samples, 0.20%)</title><rect x="39.3552%" y="645" width="0.1984%" height="15" fill="rgb(252,184,16)" fg:x="189026" fg:w="953"/><text x="39.6052%" y="655.50"></text></g><g><title>security_bprm_check (956 samples, 0.20%)</title><rect x="39.3547%" y="693" width="0.1990%" height="15" fill="rgb(236,169,46)" fg:x="189024" fg:w="956"/><text x="39.6047%" y="703.50"></text></g><g><title>search_binary_handler (991 samples, 0.21%)</title><rect x="39.3477%" y="709" width="0.2063%" height="15" fill="rgb(207,17,47)" fg:x="188990" fg:w="991"/><text x="39.5977%" y="719.50"></text></g><g><title>exec_binprm (994 samples, 0.21%)</title><rect x="39.3473%" y="725" width="0.2070%" height="15" fill="rgb(206,201,28)" fg:x="188988" fg:w="994"/><text x="39.5973%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="39.5555%" y="645" width="0.0175%" height="15" fill="rgb(224,184,23)" fg:x="189988" fg:w="84"/><text x="39.8055%" y="655.50"></text></g><g><title>x86_pmu_enable (82 samples, 0.02%)</title><rect x="39.5559%" y="629" width="0.0171%" height="15" fill="rgb(208,139,48)" fg:x="189990" fg:w="82"/><text x="39.8059%" y="639.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.02%)</title><rect x="39.5565%" y="613" width="0.0164%" height="15" fill="rgb(208,130,10)" fg:x="189993" fg:w="79"/><text x="39.8065%" y="623.50"></text></g><g><title>native_write_msr (79 samples, 0.02%)</title><rect x="39.5565%" y="597" width="0.0164%" height="15" fill="rgb(211,213,45)" fg:x="189993" fg:w="79"/><text x="39.8065%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (87 samples, 0.02%)</title><rect x="39.5550%" y="661" width="0.0181%" height="15" fill="rgb(235,100,30)" fg:x="189986" fg:w="87"/><text x="39.8050%" y="671.50"></text></g><g><title>__cond_resched (90 samples, 0.02%)</title><rect x="39.5548%" y="693" width="0.0187%" height="15" fill="rgb(206,144,31)" fg:x="189985" fg:w="90"/><text x="39.8048%" y="703.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="39.5548%" y="677" width="0.0187%" height="15" fill="rgb(224,200,26)" fg:x="189985" fg:w="90"/><text x="39.8048%" y="687.50"></text></g><g><title>stop_one_cpu (92 samples, 0.02%)</title><rect x="39.5546%" y="709" width="0.0192%" height="15" fill="rgb(247,104,53)" fg:x="189984" fg:w="92"/><text x="39.8046%" y="719.50"></text></g><g><title>sched_exec (95 samples, 0.02%)</title><rect x="39.5542%" y="725" width="0.0198%" height="15" fill="rgb(220,14,17)" fg:x="189982" fg:w="95"/><text x="39.8042%" y="735.50"></text></g><g><title>bprm_execve.part.0 (1,111 samples, 0.23%)</title><rect x="39.3456%" y="741" width="0.2313%" height="15" fill="rgb(230,140,40)" fg:x="188980" fg:w="1111"/><text x="39.5956%" y="751.50"></text></g><g><title>bprm_execve (1,115 samples, 0.23%)</title><rect x="39.3456%" y="757" width="0.2321%" height="15" fill="rgb(229,2,41)" fg:x="188980" fg:w="1115"/><text x="39.5956%" y="767.50"></text></g><g><title>do_execveat_common.isra.0 (1,130 samples, 0.24%)</title><rect x="39.3445%" y="773" width="0.2353%" height="15" fill="rgb(232,89,16)" fg:x="188975" fg:w="1130"/><text x="39.5945%" y="783.50"></text></g><g><title>[libc.so.6] (1,132 samples, 0.24%)</title><rect x="39.3443%" y="853" width="0.2357%" height="15" fill="rgb(247,59,52)" fg:x="188974" fg:w="1132"/><text x="39.5943%" y="863.50"></text></g><g><title>__GI_execve (1,132 samples, 0.24%)</title><rect x="39.3443%" y="837" width="0.2357%" height="15" fill="rgb(226,110,21)" fg:x="188974" fg:w="1132"/><text x="39.5943%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,132 samples, 0.24%)</title><rect x="39.3443%" y="821" width="0.2357%" height="15" fill="rgb(224,176,43)" fg:x="188974" fg:w="1132"/><text x="39.5943%" y="831.50"></text></g><g><title>do_syscall_64 (1,131 samples, 0.24%)</title><rect x="39.3445%" y="805" width="0.2355%" height="15" fill="rgb(221,73,6)" fg:x="188975" fg:w="1131"/><text x="39.5945%" y="815.50"></text></g><g><title>__x64_sys_execve (1,131 samples, 0.24%)</title><rect x="39.3445%" y="789" width="0.2355%" height="15" fill="rgb(232,78,19)" fg:x="188975" fg:w="1131"/><text x="39.5945%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.02%)</title><rect x="39.5846%" y="709" width="0.0194%" height="15" fill="rgb(233,112,48)" fg:x="190128" fg:w="93"/><text x="39.8346%" y="719.50"></text></g><g><title>x86_pmu_enable (88 samples, 0.02%)</title><rect x="39.5856%" y="693" width="0.0183%" height="15" fill="rgb(243,131,47)" fg:x="190133" fg:w="88"/><text x="39.8356%" y="703.50"></text></g><g><title>intel_pmu_enable_all (87 samples, 0.02%)</title><rect x="39.5858%" y="677" width="0.0181%" height="15" fill="rgb(226,51,1)" fg:x="190134" fg:w="87"/><text x="39.8358%" y="687.50"></text></g><g><title>native_write_msr (86 samples, 0.02%)</title><rect x="39.5861%" y="661" width="0.0179%" height="15" fill="rgb(247,58,7)" fg:x="190135" fg:w="86"/><text x="39.8361%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (95 samples, 0.02%)</title><rect x="39.5846%" y="725" width="0.0198%" height="15" fill="rgb(209,7,32)" fg:x="190128" fg:w="95"/><text x="39.8346%" y="735.50"></text></g><g><title>__schedule (97 samples, 0.02%)</title><rect x="39.5844%" y="741" width="0.0202%" height="15" fill="rgb(209,39,41)" fg:x="190127" fg:w="97"/><text x="39.8344%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (113 samples, 0.02%)</title><rect x="39.5813%" y="837" width="0.0235%" height="15" fill="rgb(226,182,46)" fg:x="190112" fg:w="113"/><text x="39.8313%" y="847.50"></text></g><g><title>do_syscall_64 (113 samples, 0.02%)</title><rect x="39.5813%" y="821" width="0.0235%" height="15" fill="rgb(230,219,10)" fg:x="190112" fg:w="113"/><text x="39.8313%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (101 samples, 0.02%)</title><rect x="39.5838%" y="805" width="0.0210%" height="15" fill="rgb(227,175,30)" fg:x="190124" fg:w="101"/><text x="39.8338%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (101 samples, 0.02%)</title><rect x="39.5838%" y="789" width="0.0210%" height="15" fill="rgb(217,2,50)" fg:x="190124" fg:w="101"/><text x="39.8338%" y="799.50"></text></g><g><title>exit_to_user_mode_loop (101 samples, 0.02%)</title><rect x="39.5838%" y="773" width="0.0210%" height="15" fill="rgb(229,160,0)" fg:x="190124" fg:w="101"/><text x="39.8338%" y="783.50"></text></g><g><title>schedule (98 samples, 0.02%)</title><rect x="39.5844%" y="757" width="0.0204%" height="15" fill="rgb(207,78,37)" fg:x="190127" fg:w="98"/><text x="39.8344%" y="767.50"></text></g><g><title>__GI_setsid (114 samples, 0.02%)</title><rect x="39.5813%" y="853" width="0.0237%" height="15" fill="rgb(225,57,0)" fg:x="190112" fg:w="114"/><text x="39.8313%" y="863.50"></text></g><g><title>copy_process (60 samples, 0.01%)</title><rect x="39.6094%" y="725" width="0.0125%" height="15" fill="rgb(232,154,2)" fg:x="190247" fg:w="60"/><text x="39.8594%" y="735.50"></text></g><g><title>__x64_sys_clone (62 samples, 0.01%)</title><rect x="39.6094%" y="773" width="0.0129%" height="15" fill="rgb(241,212,25)" fg:x="190247" fg:w="62"/><text x="39.8594%" y="783.50"></text></g><g><title>__do_sys_clone (62 samples, 0.01%)</title><rect x="39.6094%" y="757" width="0.0129%" height="15" fill="rgb(226,69,20)" fg:x="190247" fg:w="62"/><text x="39.8594%" y="767.50"></text></g><g><title>kernel_clone (62 samples, 0.01%)</title><rect x="39.6094%" y="741" width="0.0129%" height="15" fill="rgb(247,184,54)" fg:x="190247" fg:w="62"/><text x="39.8594%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (63 samples, 0.01%)</title><rect x="39.6094%" y="805" width="0.0131%" height="15" fill="rgb(210,145,0)" fg:x="190247" fg:w="63"/><text x="39.8594%" y="815.50"></text></g><g><title>do_syscall_64 (63 samples, 0.01%)</title><rect x="39.6094%" y="789" width="0.0131%" height="15" fill="rgb(253,82,12)" fg:x="190247" fg:w="63"/><text x="39.8594%" y="799.50"></text></g><g><title>do_user_addr_fault (49 samples, 0.01%)</title><rect x="39.6229%" y="741" width="0.0102%" height="15" fill="rgb(245,42,11)" fg:x="190312" fg:w="49"/><text x="39.8729%" y="751.50"></text></g><g><title>__put_user_nocheck_4 (53 samples, 0.01%)</title><rect x="39.6225%" y="789" width="0.0110%" height="15" fill="rgb(219,147,32)" fg:x="190310" fg:w="53"/><text x="39.8725%" y="799.50"></text></g><g><title>asm_exc_page_fault (51 samples, 0.01%)</title><rect x="39.6229%" y="773" width="0.0106%" height="15" fill="rgb(246,12,7)" fg:x="190312" fg:w="51"/><text x="39.8729%" y="783.50"></text></g><g><title>exc_page_fault (51 samples, 0.01%)</title><rect x="39.6229%" y="757" width="0.0106%" height="15" fill="rgb(243,50,9)" fg:x="190312" fg:w="51"/><text x="39.8729%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (395 samples, 0.08%)</title><rect x="39.6371%" y="757" width="0.0822%" height="15" fill="rgb(219,149,6)" fg:x="190380" fg:w="395"/><text x="39.8871%" y="767.50"></text></g><g><title>x86_pmu_enable (383 samples, 0.08%)</title><rect x="39.6396%" y="741" width="0.0797%" height="15" fill="rgb(241,51,42)" fg:x="190392" fg:w="383"/><text x="39.8896%" y="751.50"></text></g><g><title>intel_pmu_enable_all (382 samples, 0.08%)</title><rect x="39.6398%" y="725" width="0.0795%" height="15" fill="rgb(226,128,27)" fg:x="190393" fg:w="382"/><text x="39.8898%" y="735.50"></text></g><g><title>native_write_msr (378 samples, 0.08%)</title><rect x="39.6406%" y="709" width="0.0787%" height="15" fill="rgb(244,144,4)" fg:x="190397" fg:w="378"/><text x="39.8906%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (409 samples, 0.09%)</title><rect x="39.6356%" y="773" width="0.0852%" height="15" fill="rgb(221,4,13)" fg:x="190373" fg:w="409"/><text x="39.8856%" y="783.50"></text></g><g><title>schedule_tail (415 samples, 0.09%)</title><rect x="39.6346%" y="789" width="0.0864%" height="15" fill="rgb(208,170,28)" fg:x="190368" fg:w="415"/><text x="39.8846%" y="799.50"></text></g><g><title>arch_fork (573 samples, 0.12%)</title><rect x="39.6056%" y="821" width="0.1193%" height="15" fill="rgb(226,131,13)" fg:x="190229" fg:w="573"/><text x="39.8556%" y="831.50"></text></g><g><title>ret_from_fork (492 samples, 0.10%)</title><rect x="39.6225%" y="805" width="0.1024%" height="15" fill="rgb(215,72,41)" fg:x="190310" fg:w="492"/><text x="39.8725%" y="815.50"></text></g><g><title>__GI__Fork (574 samples, 0.12%)</title><rect x="39.6056%" y="837" width="0.1195%" height="15" fill="rgb(243,108,20)" fg:x="190229" fg:w="574"/><text x="39.8556%" y="847.50"></text></g><g><title>__libc_fork (595 samples, 0.12%)</title><rect x="39.6054%" y="853" width="0.1239%" height="15" fill="rgb(230,189,17)" fg:x="190228" fg:w="595"/><text x="39.8554%" y="863.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (1,881 samples, 0.39%)</title><rect x="39.3400%" y="885" width="0.3916%" height="15" fill="rgb(220,50,17)" fg:x="188953" fg:w="1881"/><text x="39.5900%" y="895.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (1,881 samples, 0.39%)</title><rect x="39.3400%" y="869" width="0.3916%" height="15" fill="rgb(248,152,48)" fg:x="188953" fg:w="1881"/><text x="39.5900%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (345 samples, 0.07%)</title><rect x="39.7395%" y="693" width="0.0718%" height="15" fill="rgb(244,91,11)" fg:x="190872" fg:w="345"/><text x="39.9895%" y="703.50"></text></g><g><title>x86_pmu_enable (338 samples, 0.07%)</title><rect x="39.7410%" y="677" width="0.0704%" height="15" fill="rgb(220,157,5)" fg:x="190879" fg:w="338"/><text x="39.9910%" y="687.50"></text></g><g><title>intel_pmu_enable_all (337 samples, 0.07%)</title><rect x="39.7412%" y="661" width="0.0702%" height="15" fill="rgb(253,137,8)" fg:x="190880" fg:w="337"/><text x="39.9912%" y="671.50"></text></g><g><title>native_write_msr (336 samples, 0.07%)</title><rect x="39.7414%" y="645" width="0.0700%" height="15" fill="rgb(217,137,51)" fg:x="190881" fg:w="336"/><text x="39.9914%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (386 samples, 0.08%)</title><rect x="39.7358%" y="709" width="0.0804%" height="15" fill="rgb(218,209,53)" fg:x="190854" fg:w="386"/><text x="39.9858%" y="719.50"></text></g><g><title>schedule (398 samples, 0.08%)</title><rect x="39.7341%" y="741" width="0.0829%" height="15" fill="rgb(249,137,25)" fg:x="190846" fg:w="398"/><text x="39.9841%" y="751.50"></text></g><g><title>__schedule (396 samples, 0.08%)</title><rect x="39.7345%" y="725" width="0.0824%" height="15" fill="rgb(239,155,26)" fg:x="190848" fg:w="396"/><text x="39.9845%" y="735.50"></text></g><g><title>__x64_sys_wait4 (442 samples, 0.09%)</title><rect x="39.7333%" y="805" width="0.0920%" height="15" fill="rgb(227,85,46)" fg:x="190842" fg:w="442"/><text x="39.9833%" y="815.50"></text></g><g><title>__do_sys_wait4 (442 samples, 0.09%)</title><rect x="39.7333%" y="789" width="0.0920%" height="15" fill="rgb(251,107,43)" fg:x="190842" fg:w="442"/><text x="39.9833%" y="799.50"></text></g><g><title>kernel_wait4 (442 samples, 0.09%)</title><rect x="39.7333%" y="773" width="0.0920%" height="15" fill="rgb(234,170,33)" fg:x="190842" fg:w="442"/><text x="39.9833%" y="783.50"></text></g><g><title>do_wait (442 samples, 0.09%)</title><rect x="39.7333%" y="757" width="0.0920%" height="15" fill="rgb(206,29,35)" fg:x="190842" fg:w="442"/><text x="39.9833%" y="767.50"></text></g><g><title>WaitChild (453 samples, 0.09%)</title><rect x="39.7326%" y="869" width="0.0943%" height="15" fill="rgb(227,138,25)" fg:x="190839" fg:w="453"/><text x="39.9826%" y="879.50"></text></g><g><title>__GI___wait4 (450 samples, 0.09%)</title><rect x="39.7333%" y="853" width="0.0937%" height="15" fill="rgb(249,131,35)" fg:x="190842" fg:w="450"/><text x="39.9833%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (450 samples, 0.09%)</title><rect x="39.7333%" y="837" width="0.0937%" height="15" fill="rgb(239,6,40)" fg:x="190842" fg:w="450"/><text x="39.9833%" y="847.50"></text></g><g><title>do_syscall_64 (450 samples, 0.09%)</title><rect x="39.7333%" y="821" width="0.0937%" height="15" fill="rgb(246,136,47)" fg:x="190842" fg:w="450"/><text x="39.9833%" y="831.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (517 samples, 0.11%)</title><rect x="39.7316%" y="885" width="0.1076%" height="15" fill="rgb(253,58,26)" fg:x="190834" fg:w="517"/><text x="39.9816%" y="895.50"></text></g><g><title>__GI_exit (59 samples, 0.01%)</title><rect x="39.8269%" y="869" width="0.0123%" height="15" fill="rgb(237,141,10)" fg:x="191292" fg:w="59"/><text x="40.0769%" y="879.50"></text></g><g><title>__run_exit_handlers (58 samples, 0.01%)</title><rect x="39.8272%" y="853" width="0.0121%" height="15" fill="rgb(234,156,12)" fg:x="191293" fg:w="58"/><text x="40.0772%" y="863.50"></text></g><g><title>__libc_start_main_impl (2,495 samples, 0.52%)</title><rect x="39.3248%" y="933" width="0.5195%" height="15" fill="rgb(243,224,36)" fg:x="188880" fg:w="2495"/><text x="39.5748%" y="943.50"></text></g><g><title>__libc_start_call_main (2,422 samples, 0.50%)</title><rect x="39.3400%" y="917" width="0.5043%" height="15" fill="rgb(205,229,51)" fg:x="188953" fg:w="2422"/><text x="39.5900%" y="927.50"></text></g><g><title>main (2,422 samples, 0.50%)</title><rect x="39.3400%" y="901" width="0.5043%" height="15" fill="rgb(223,189,4)" fg:x="188953" fg:w="2422"/><text x="39.5900%" y="911.50"></text></g><g><title>mmap_region (67 samples, 0.01%)</title><rect x="39.8646%" y="629" width="0.0139%" height="15" fill="rgb(249,167,54)" fg:x="191473" fg:w="67"/><text x="40.1146%" y="639.50"></text></g><g><title>__x64_sys_mmap (68 samples, 0.01%)</title><rect x="39.8646%" y="693" width="0.0142%" height="15" fill="rgb(218,34,28)" fg:x="191473" fg:w="68"/><text x="40.1146%" y="703.50"></text></g><g><title>ksys_mmap_pgoff (68 samples, 0.01%)</title><rect x="39.8646%" y="677" width="0.0142%" height="15" fill="rgb(232,109,42)" fg:x="191473" fg:w="68"/><text x="40.1146%" y="687.50"></text></g><g><title>vm_mmap_pgoff (68 samples, 0.01%)</title><rect x="39.8646%" y="661" width="0.0142%" height="15" fill="rgb(248,214,46)" fg:x="191473" fg:w="68"/><text x="40.1146%" y="671.50"></text></g><g><title>do_mmap (68 samples, 0.01%)</title><rect x="39.8646%" y="645" width="0.0142%" height="15" fill="rgb(244,216,40)" fg:x="191473" fg:w="68"/><text x="40.1146%" y="655.50"></text></g><g><title>__mmap64 (79 samples, 0.02%)</title><rect x="39.8640%" y="773" width="0.0164%" height="15" fill="rgb(231,226,31)" fg:x="191470" fg:w="79"/><text x="40.1140%" y="783.50"></text></g><g><title>__mmap64 (79 samples, 0.02%)</title><rect x="39.8640%" y="757" width="0.0164%" height="15" fill="rgb(238,38,43)" fg:x="191470" fg:w="79"/><text x="40.1140%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (78 samples, 0.02%)</title><rect x="39.8642%" y="741" width="0.0162%" height="15" fill="rgb(208,88,43)" fg:x="191471" fg:w="78"/><text x="40.1142%" y="751.50"></text></g><g><title>do_syscall_64 (78 samples, 0.02%)</title><rect x="39.8642%" y="725" width="0.0162%" height="15" fill="rgb(205,136,37)" fg:x="191471" fg:w="78"/><text x="40.1142%" y="735.50"></text></g><g><title>unload_network_ops_symbols (76 samples, 0.02%)</title><rect x="39.8646%" y="709" width="0.0158%" height="15" fill="rgb(237,34,14)" fg:x="191473" fg:w="76"/><text x="40.1146%" y="719.50"></text></g><g><title>_dl_map_segments (120 samples, 0.02%)</title><rect x="39.8605%" y="789" width="0.0250%" height="15" fill="rgb(236,193,44)" fg:x="191453" fg:w="120"/><text x="40.1105%" y="799.50"></text></g><g><title>_dl_map_object_from_fd (187 samples, 0.04%)</title><rect x="39.8540%" y="805" width="0.0389%" height="15" fill="rgb(231,48,10)" fg:x="191422" fg:w="187"/><text x="40.1040%" y="815.50"></text></g><g><title>_dl_catch_exception (261 samples, 0.05%)</title><rect x="39.8494%" y="853" width="0.0543%" height="15" fill="rgb(213,141,34)" fg:x="191400" fg:w="261"/><text x="40.0994%" y="863.50"></text></g><g><title>openaux (261 samples, 0.05%)</title><rect x="39.8494%" y="837" width="0.0543%" height="15" fill="rgb(249,130,34)" fg:x="191400" fg:w="261"/><text x="40.0994%" y="847.50"></text></g><g><title>_dl_map_object (260 samples, 0.05%)</title><rect x="39.8496%" y="821" width="0.0541%" height="15" fill="rgb(219,42,41)" fg:x="191401" fg:w="260"/><text x="40.0996%" y="831.50"></text></g><g><title>_dl_map_object_deps (267 samples, 0.06%)</title><rect x="39.8490%" y="869" width="0.0556%" height="15" fill="rgb(224,100,54)" fg:x="191398" fg:w="267"/><text x="40.0990%" y="879.50"></text></g><g><title>dl_new_hash (97 samples, 0.02%)</title><rect x="39.9492%" y="805" width="0.0202%" height="15" fill="rgb(229,200,27)" fg:x="191879" fg:w="97"/><text x="40.1992%" y="815.50"></text></g><g><title>_dl_lookup_symbol_x (318 samples, 0.07%)</title><rect x="39.9417%" y="821" width="0.0662%" height="15" fill="rgb(217,118,10)" fg:x="191843" fg:w="318"/><text x="40.1917%" y="831.50"></text></g><g><title>do_lookup_x (185 samples, 0.04%)</title><rect x="39.9694%" y="805" width="0.0385%" height="15" fill="rgb(206,22,3)" fg:x="191976" fg:w="185"/><text x="40.2194%" y="815.50"></text></g><g><title>elf_machine_rela (392 samples, 0.08%)</title><rect x="39.9275%" y="837" width="0.0816%" height="15" fill="rgb(232,163,46)" fg:x="191775" fg:w="392"/><text x="40.1775%" y="847.50"></text></g><g><title>elf_dynamic_do_Rela (484 samples, 0.10%)</title><rect x="39.9150%" y="853" width="0.1008%" height="15" fill="rgb(206,95,13)" fg:x="191715" fg:w="484"/><text x="40.1650%" y="863.50"></text></g><g><title>_dl_relocate_object (531 samples, 0.11%)</title><rect x="39.9067%" y="869" width="0.1106%" height="15" fill="rgb(253,154,18)" fg:x="191675" fg:w="531"/><text x="40.1567%" y="879.50"></text></g><g><title>dl_main (866 samples, 0.18%)</title><rect x="39.8453%" y="885" width="0.1803%" height="15" fill="rgb(219,32,23)" fg:x="191380" fg:w="866"/><text x="40.0953%" y="895.50"></text></g><g><title>_dl_start_final (890 samples, 0.19%)</title><rect x="39.8444%" y="917" width="0.1853%" height="15" fill="rgb(230,191,45)" fg:x="191376" fg:w="890"/><text x="40.0944%" y="927.50"></text></g><g><title>_dl_sysdep_start (888 samples, 0.18%)</title><rect x="39.8448%" y="901" width="0.1849%" height="15" fill="rgb(229,64,36)" fg:x="191378" fg:w="888"/><text x="40.0948%" y="911.50"></text></g><g><title>_dl_start (899 samples, 0.19%)</title><rect x="39.8442%" y="933" width="0.1872%" height="15" fill="rgb(205,129,25)" fg:x="191375" fg:w="899"/><text x="40.0942%" y="943.50"></text></g><g><title>_start (3,421 samples, 0.71%)</title><rect x="39.3246%" y="949" width="0.7123%" height="15" fill="rgb(254,112,7)" fg:x="188879" fg:w="3421"/><text x="39.5746%" y="959.50"></text></g><g><title>exec_mmap (51 samples, 0.01%)</title><rect x="40.0468%" y="789" width="0.0106%" height="15" fill="rgb(226,53,48)" fg:x="192348" fg:w="51"/><text x="40.2968%" y="799.50"></text></g><g><title>mmput (51 samples, 0.01%)</title><rect x="40.0468%" y="773" width="0.0106%" height="15" fill="rgb(214,153,38)" fg:x="192348" fg:w="51"/><text x="40.2968%" y="783.50"></text></g><g><title>exit_mmap (49 samples, 0.01%)</title><rect x="40.0472%" y="757" width="0.0102%" height="15" fill="rgb(243,101,7)" fg:x="192350" fg:w="49"/><text x="40.2972%" y="767.50"></text></g><g><title>begin_new_exec (53 samples, 0.01%)</title><rect x="40.0468%" y="805" width="0.0110%" height="15" fill="rgb(240,140,22)" fg:x="192348" fg:w="53"/><text x="40.2968%" y="815.50"></text></g><g><title>load_elf_binary (94 samples, 0.02%)</title><rect x="40.0466%" y="821" width="0.0196%" height="15" fill="rgb(235,114,2)" fg:x="192347" fg:w="94"/><text x="40.2966%" y="831.50"></text></g><g><title>__x64_sys_execve (96 samples, 0.02%)</title><rect x="40.0464%" y="917" width="0.0200%" height="15" fill="rgb(242,59,12)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (96 samples, 0.02%)</title><rect x="40.0464%" y="901" width="0.0200%" height="15" fill="rgb(252,134,9)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="911.50"></text></g><g><title>bprm_execve (96 samples, 0.02%)</title><rect x="40.0464%" y="885" width="0.0200%" height="15" fill="rgb(236,4,44)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="895.50"></text></g><g><title>bprm_execve.part.0 (96 samples, 0.02%)</title><rect x="40.0464%" y="869" width="0.0200%" height="15" fill="rgb(254,172,41)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="879.50"></text></g><g><title>exec_binprm (96 samples, 0.02%)</title><rect x="40.0464%" y="853" width="0.0200%" height="15" fill="rgb(244,63,20)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="863.50"></text></g><g><title>search_binary_handler (96 samples, 0.02%)</title><rect x="40.0464%" y="837" width="0.0200%" height="15" fill="rgb(250,73,31)" fg:x="192346" fg:w="96"/><text x="40.2964%" y="847.50"></text></g><g><title>exit_mmap (122 samples, 0.03%)</title><rect x="40.0676%" y="837" width="0.0254%" height="15" fill="rgb(241,38,36)" fg:x="192448" fg:w="122"/><text x="40.3176%" y="847.50"></text></g><g><title>unmap_vmas (84 samples, 0.02%)</title><rect x="40.0755%" y="821" width="0.0175%" height="15" fill="rgb(245,211,2)" fg:x="192486" fg:w="84"/><text x="40.3255%" y="831.50"></text></g><g><title>unmap_single_vma (84 samples, 0.02%)</title><rect x="40.0755%" y="805" width="0.0175%" height="15" fill="rgb(206,120,28)" fg:x="192486" fg:w="84"/><text x="40.3255%" y="815.50"></text></g><g><title>unmap_page_range (83 samples, 0.02%)</title><rect x="40.0757%" y="789" width="0.0173%" height="15" fill="rgb(211,59,34)" fg:x="192487" fg:w="83"/><text x="40.3257%" y="799.50"></text></g><g><title>zap_pmd_range.isra.0 (83 samples, 0.02%)</title><rect x="40.0757%" y="773" width="0.0173%" height="15" fill="rgb(233,168,5)" fg:x="192487" fg:w="83"/><text x="40.3257%" y="783.50"></text></g><g><title>zap_pte_range (78 samples, 0.02%)</title><rect x="40.0768%" y="757" width="0.0162%" height="15" fill="rgb(234,33,13)" fg:x="192492" fg:w="78"/><text x="40.3268%" y="767.50"></text></g><g><title>exit_mm (123 samples, 0.03%)</title><rect x="40.0676%" y="869" width="0.0256%" height="15" fill="rgb(231,150,26)" fg:x="192448" fg:w="123"/><text x="40.3176%" y="879.50"></text></g><g><title>mmput (123 samples, 0.03%)</title><rect x="40.0676%" y="853" width="0.0256%" height="15" fill="rgb(217,191,4)" fg:x="192448" fg:w="123"/><text x="40.3176%" y="863.50"></text></g><g><title>__x64_sys_exit_group (150 samples, 0.03%)</title><rect x="40.0664%" y="917" width="0.0312%" height="15" fill="rgb(246,198,38)" fg:x="192442" fg:w="150"/><text x="40.3164%" y="927.50"></text></g><g><title>do_group_exit (150 samples, 0.03%)</title><rect x="40.0664%" y="901" width="0.0312%" height="15" fill="rgb(245,64,37)" fg:x="192442" fg:w="150"/><text x="40.3164%" y="911.50"></text></g><g><title>do_exit (150 samples, 0.03%)</title><rect x="40.0664%" y="885" width="0.0312%" height="15" fill="rgb(250,30,36)" fg:x="192442" fg:w="150"/><text x="40.3164%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (247 samples, 0.05%)</title><rect x="40.0464%" y="949" width="0.0514%" height="15" fill="rgb(217,86,53)" fg:x="192346" fg:w="247"/><text x="40.2964%" y="959.50"></text></g><g><title>do_syscall_64 (247 samples, 0.05%)</title><rect x="40.0464%" y="933" width="0.0514%" height="15" fill="rgb(228,157,16)" fg:x="192346" fg:w="247"/><text x="40.2964%" y="943.50"></text></g><g><title>process-wrapper (3,804 samples, 0.79%)</title><rect x="39.3060%" y="965" width="0.7920%" height="15" fill="rgb(217,59,31)" fg:x="188790" fg:w="3804"/><text x="39.5560%" y="975.50"></text></g><g><title>InterpreterRuntime::monitorenter (55 samples, 0.01%)</title><rect x="40.1113%" y="933" width="0.0115%" height="15" fill="rgb(237,138,41)" fg:x="192658" fg:w="55"/><text x="40.3613%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (460 samples, 0.10%)</title><rect x="40.1330%" y="757" width="0.0958%" height="15" fill="rgb(227,91,49)" fg:x="192762" fg:w="460"/><text x="40.3830%" y="767.50"></text></g><g><title>x86_pmu_enable (455 samples, 0.09%)</title><rect x="40.1340%" y="741" width="0.0947%" height="15" fill="rgb(247,21,44)" fg:x="192767" fg:w="455"/><text x="40.3840%" y="751.50"></text></g><g><title>intel_pmu_enable_all (448 samples, 0.09%)</title><rect x="40.1355%" y="725" width="0.0933%" height="15" fill="rgb(219,210,51)" fg:x="192774" fg:w="448"/><text x="40.3855%" y="735.50"></text></g><g><title>native_write_msr (442 samples, 0.09%)</title><rect x="40.1367%" y="709" width="0.0920%" height="15" fill="rgb(209,140,6)" fg:x="192780" fg:w="442"/><text x="40.3867%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (529 samples, 0.11%)</title><rect x="40.1280%" y="773" width="0.1101%" height="15" fill="rgb(221,188,24)" fg:x="192738" fg:w="529"/><text x="40.3780%" y="783.50"></text></g><g><title>schedule (543 samples, 0.11%)</title><rect x="40.1257%" y="805" width="0.1131%" height="15" fill="rgb(232,154,20)" fg:x="192727" fg:w="543"/><text x="40.3757%" y="815.50"></text></g><g><title>__schedule (543 samples, 0.11%)</title><rect x="40.1257%" y="789" width="0.1131%" height="15" fill="rgb(244,137,50)" fg:x="192727" fg:w="543"/><text x="40.3757%" y="799.50"></text></g><g><title>proc_flush_pid (58 samples, 0.01%)</title><rect x="40.2423%" y="757" width="0.0121%" height="15" fill="rgb(225,185,43)" fg:x="193287" fg:w="58"/><text x="40.4923%" y="767.50"></text></g><g><title>proc_invalidate_siblings_dcache (58 samples, 0.01%)</title><rect x="40.2423%" y="741" width="0.0121%" height="15" fill="rgb(213,205,38)" fg:x="193287" fg:w="58"/><text x="40.4923%" y="751.50"></text></g><g><title>d_invalidate (56 samples, 0.01%)</title><rect x="40.2427%" y="725" width="0.0117%" height="15" fill="rgb(236,73,12)" fg:x="193289" fg:w="56"/><text x="40.4927%" y="735.50"></text></g><g><title>shrink_dcache_parent (56 samples, 0.01%)</title><rect x="40.2427%" y="709" width="0.0117%" height="15" fill="rgb(235,219,13)" fg:x="193289" fg:w="56"/><text x="40.4927%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (621 samples, 0.13%)</title><rect x="40.1253%" y="901" width="0.1293%" height="15" fill="rgb(218,59,36)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="911.50"></text></g><g><title>do_syscall_64 (621 samples, 0.13%)</title><rect x="40.1253%" y="885" width="0.1293%" height="15" fill="rgb(205,110,39)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="895.50"></text></g><g><title>__x64_sys_wait4 (621 samples, 0.13%)</title><rect x="40.1253%" y="869" width="0.1293%" height="15" fill="rgb(218,206,42)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="879.50"></text></g><g><title>__do_sys_wait4 (621 samples, 0.13%)</title><rect x="40.1253%" y="853" width="0.1293%" height="15" fill="rgb(248,125,24)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="863.50"></text></g><g><title>kernel_wait4 (621 samples, 0.13%)</title><rect x="40.1253%" y="837" width="0.1293%" height="15" fill="rgb(242,28,27)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="847.50"></text></g><g><title>do_wait (621 samples, 0.13%)</title><rect x="40.1253%" y="821" width="0.1293%" height="15" fill="rgb(216,228,15)" fg:x="192725" fg:w="621"/><text x="40.3753%" y="831.50"></text></g><g><title>wait_consider_task (76 samples, 0.02%)</title><rect x="40.2388%" y="805" width="0.0158%" height="15" fill="rgb(235,116,46)" fg:x="193270" fg:w="76"/><text x="40.4888%" y="815.50"></text></g><g><title>wait_task_zombie (76 samples, 0.02%)</title><rect x="40.2388%" y="789" width="0.0158%" height="15" fill="rgb(224,18,32)" fg:x="193270" fg:w="76"/><text x="40.4888%" y="799.50"></text></g><g><title>release_task (74 samples, 0.02%)</title><rect x="40.2392%" y="773" width="0.0154%" height="15" fill="rgb(252,5,12)" fg:x="193272" fg:w="74"/><text x="40.4892%" y="783.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (623 samples, 0.13%)</title><rect x="40.1251%" y="933" width="0.1297%" height="15" fill="rgb(251,36,5)" fg:x="192724" fg:w="623"/><text x="40.3751%" y="943.50"></text></g><g><title>__GI___wait4 (623 samples, 0.13%)</title><rect x="40.1251%" y="917" width="0.1297%" height="15" fill="rgb(217,53,14)" fg:x="192724" fg:w="623"/><text x="40.3751%" y="927.50"></text></g><g><title>Unsafe_Park (51 samples, 0.01%)</title><rect x="40.2550%" y="933" width="0.0106%" height="15" fill="rgb(215,86,45)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="943.50"></text></g><g><title>Parker::park (51 samples, 0.01%)</title><rect x="40.2550%" y="917" width="0.0106%" height="15" fill="rgb(242,169,11)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="927.50"></text></g><g><title>___pthread_cond_timedwait64 (51 samples, 0.01%)</title><rect x="40.2550%" y="901" width="0.0106%" height="15" fill="rgb(211,213,45)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.01%)</title><rect x="40.2550%" y="885" width="0.0106%" height="15" fill="rgb(205,88,11)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (51 samples, 0.01%)</title><rect x="40.2550%" y="869" width="0.0106%" height="15" fill="rgb(252,69,26)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (51 samples, 0.01%)</title><rect x="40.2550%" y="853" width="0.0106%" height="15" fill="rgb(246,123,37)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (51 samples, 0.01%)</title><rect x="40.2550%" y="837" width="0.0106%" height="15" fill="rgb(212,205,5)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="40.2550%" y="821" width="0.0106%" height="15" fill="rgb(253,148,0)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="831.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="40.2550%" y="805" width="0.0106%" height="15" fill="rgb(239,22,4)" fg:x="193348" fg:w="51"/><text x="40.5050%" y="815.50"></text></g><g><title>[perf-712021.map] (804 samples, 0.17%)</title><rect x="40.0986%" y="949" width="0.1674%" height="15" fill="rgb(226,26,53)" fg:x="192597" fg:w="804"/><text x="40.3486%" y="959.50"></text></g><g><title>process_reaper (809 samples, 0.17%)</title><rect x="40.0980%" y="965" width="0.1684%" height="15" fill="rgb(225,229,45)" fg:x="192594" fg:w="809"/><text x="40.3480%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (419 samples, 0.09%)</title><rect x="40.3526%" y="677" width="0.0872%" height="15" fill="rgb(220,60,37)" fg:x="193817" fg:w="419"/><text x="40.6026%" y="687.50"></text></g><g><title>x86_pmu_enable (407 samples, 0.08%)</title><rect x="40.3551%" y="661" width="0.0847%" height="15" fill="rgb(217,180,35)" fg:x="193829" fg:w="407"/><text x="40.6051%" y="671.50"></text></g><g><title>intel_pmu_enable_all (399 samples, 0.08%)</title><rect x="40.3568%" y="645" width="0.0831%" height="15" fill="rgb(229,7,53)" fg:x="193837" fg:w="399"/><text x="40.6068%" y="655.50"></text></g><g><title>native_write_msr (395 samples, 0.08%)</title><rect x="40.3576%" y="629" width="0.0822%" height="15" fill="rgb(254,137,3)" fg:x="193841" fg:w="395"/><text x="40.6076%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (431 samples, 0.09%)</title><rect x="40.3514%" y="693" width="0.0897%" height="15" fill="rgb(215,140,41)" fg:x="193811" fg:w="431"/><text x="40.6014%" y="703.50"></text></g><g><title>futex_wait_queue_me (462 samples, 0.10%)</title><rect x="40.3472%" y="741" width="0.0962%" height="15" fill="rgb(250,80,15)" fg:x="193791" fg:w="462"/><text x="40.5972%" y="751.50"></text></g><g><title>schedule (461 samples, 0.10%)</title><rect x="40.3474%" y="725" width="0.0960%" height="15" fill="rgb(252,191,6)" fg:x="193792" fg:w="461"/><text x="40.5974%" y="735.50"></text></g><g><title>__schedule (456 samples, 0.09%)</title><rect x="40.3485%" y="709" width="0.0949%" height="15" fill="rgb(246,217,18)" fg:x="193797" fg:w="456"/><text x="40.5985%" y="719.50"></text></g><g><title>__x64_sys_futex (470 samples, 0.10%)</title><rect x="40.3458%" y="789" width="0.0979%" height="15" fill="rgb(223,93,7)" fg:x="193784" fg:w="470"/><text x="40.5958%" y="799.50"></text></g><g><title>do_futex (468 samples, 0.10%)</title><rect x="40.3462%" y="773" width="0.0974%" height="15" fill="rgb(225,55,52)" fg:x="193786" fg:w="468"/><text x="40.5962%" y="783.50"></text></g><g><title>futex_wait (468 samples, 0.10%)</title><rect x="40.3462%" y="757" width="0.0974%" height="15" fill="rgb(240,31,24)" fg:x="193786" fg:w="468"/><text x="40.5962%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (483 samples, 0.10%)</title><rect x="40.3456%" y="821" width="0.1006%" height="15" fill="rgb(205,56,52)" fg:x="193783" fg:w="483"/><text x="40.5956%" y="831.50"></text></g><g><title>do_syscall_64 (483 samples, 0.10%)</title><rect x="40.3456%" y="805" width="0.1006%" height="15" fill="rgb(246,146,12)" fg:x="193783" fg:w="483"/><text x="40.5956%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (493 samples, 0.10%)</title><rect x="40.3437%" y="869" width="0.1026%" height="15" fill="rgb(239,84,36)" fg:x="193774" fg:w="493"/><text x="40.5937%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (493 samples, 0.10%)</title><rect x="40.3437%" y="853" width="0.1026%" height="15" fill="rgb(207,41,40)" fg:x="193774" fg:w="493"/><text x="40.5937%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (493 samples, 0.10%)</title><rect x="40.3437%" y="837" width="0.1026%" height="15" fill="rgb(241,179,25)" fg:x="193774" fg:w="493"/><text x="40.5937%" y="847.50"></text></g><g><title>___pthread_cond_wait (501 samples, 0.10%)</title><rect x="40.3429%" y="901" width="0.1043%" height="15" fill="rgb(210,0,34)" fg:x="193770" fg:w="501"/><text x="40.5929%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (501 samples, 0.10%)</title><rect x="40.3429%" y="885" width="0.1043%" height="15" fill="rgb(225,217,29)" fg:x="193770" fg:w="501"/><text x="40.5929%" y="895.50"></text></g><g><title>Parker::park (529 samples, 0.11%)</title><rect x="40.3406%" y="917" width="0.1101%" height="15" fill="rgb(216,191,38)" fg:x="193759" fg:w="529"/><text x="40.5906%" y="927.50"></text></g><g><title>Unsafe_Park (533 samples, 0.11%)</title><rect x="40.3399%" y="933" width="0.1110%" height="15" fill="rgb(232,140,52)" fg:x="193756" fg:w="533"/><text x="40.5899%" y="943.50"></text></g><g><title>[perf-712021.map] (895 samples, 0.19%)</title><rect x="40.2696%" y="949" width="0.1863%" height="15" fill="rgb(223,158,51)" fg:x="193418" fg:w="895"/><text x="40.5196%" y="959.50"></text></g><g><title>profile-writer- (923 samples, 0.19%)</title><rect x="40.2665%" y="965" width="0.1922%" height="15" fill="rgb(235,29,51)" fg:x="193403" fg:w="923"/><text x="40.5165%" y="975.50"></text></g><g><title>[python3.10] (63 samples, 0.01%)</title><rect x="40.4892%" y="933" width="0.0131%" height="15" fill="rgb(215,181,18)" fg:x="194473" fg:w="63"/><text x="40.7392%" y="943.50"></text></g><g><title>PyEval_EvalCode (49 samples, 0.01%)</title><rect x="40.5252%" y="757" width="0.0102%" height="15" fill="rgb(227,125,34)" fg:x="194646" fg:w="49"/><text x="40.7752%" y="767.50"></text></g><g><title>[python3.10] (49 samples, 0.01%)</title><rect x="40.5252%" y="741" width="0.0102%" height="15" fill="rgb(230,197,49)" fg:x="194646" fg:w="49"/><text x="40.7752%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.01%)</title><rect x="40.5252%" y="725" width="0.0102%" height="15" fill="rgb(239,141,16)" fg:x="194646" fg:w="49"/><text x="40.7752%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (121 samples, 0.03%)</title><rect x="40.5111%" y="917" width="0.0252%" height="15" fill="rgb(225,105,43)" fg:x="194578" fg:w="121"/><text x="40.7611%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (121 samples, 0.03%)</title><rect x="40.5111%" y="901" width="0.0252%" height="15" fill="rgb(214,131,14)" fg:x="194578" fg:w="121"/><text x="40.7611%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (100 samples, 0.02%)</title><rect x="40.5155%" y="885" width="0.0208%" height="15" fill="rgb(229,177,11)" fg:x="194599" fg:w="100"/><text x="40.7655%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (100 samples, 0.02%)</title><rect x="40.5155%" y="869" width="0.0208%" height="15" fill="rgb(231,180,14)" fg:x="194599" fg:w="100"/><text x="40.7655%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (81 samples, 0.02%)</title><rect x="40.5194%" y="853" width="0.0169%" height="15" fill="rgb(232,88,2)" fg:x="194618" fg:w="81"/><text x="40.7694%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (81 samples, 0.02%)</title><rect x="40.5194%" y="837" width="0.0169%" height="15" fill="rgb(205,220,8)" fg:x="194618" fg:w="81"/><text x="40.7694%" y="847.50"></text></g><g><title>_PyFunction_Vectorcall (53 samples, 0.01%)</title><rect x="40.5252%" y="821" width="0.0110%" height="15" fill="rgb(225,23,53)" fg:x="194646" fg:w="53"/><text x="40.7752%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (53 samples, 0.01%)</title><rect x="40.5252%" y="805" width="0.0110%" height="15" fill="rgb(213,62,29)" fg:x="194646" fg:w="53"/><text x="40.7752%" y="815.50"></text></g><g><title>[python3.10] (53 samples, 0.01%)</title><rect x="40.5252%" y="789" width="0.0110%" height="15" fill="rgb(227,75,7)" fg:x="194646" fg:w="53"/><text x="40.7752%" y="799.50"></text></g><g><title>[python3.10] (53 samples, 0.01%)</title><rect x="40.5252%" y="773" width="0.0110%" height="15" fill="rgb(207,105,14)" fg:x="194646" fg:w="53"/><text x="40.7752%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (164 samples, 0.03%)</title><rect x="40.5026%" y="933" width="0.0341%" height="15" fill="rgb(245,62,29)" fg:x="194537" fg:w="164"/><text x="40.7526%" y="943.50"></text></g><g><title>[unknown] (386 samples, 0.08%)</title><rect x="40.4692%" y="949" width="0.0804%" height="15" fill="rgb(236,202,4)" fg:x="194377" fg:w="386"/><text x="40.7192%" y="959.50"></text></g><g><title>Py_RunMain (94 samples, 0.02%)</title><rect x="40.5496%" y="885" width="0.0196%" height="15" fill="rgb(250,67,1)" fg:x="194763" fg:w="94"/><text x="40.7996%" y="895.50"></text></g><g><title>Py_FinalizeEx (69 samples, 0.01%)</title><rect x="40.5548%" y="869" width="0.0144%" height="15" fill="rgb(253,115,44)" fg:x="194788" fg:w="69"/><text x="40.8048%" y="879.50"></text></g><g><title>[python3.10] (49 samples, 0.01%)</title><rect x="40.5590%" y="853" width="0.0102%" height="15" fill="rgb(251,139,18)" fg:x="194808" fg:w="49"/><text x="40.8090%" y="863.50"></text></g><g><title>Py_InitializeFromConfig (83 samples, 0.02%)</title><rect x="40.5692%" y="853" width="0.0173%" height="15" fill="rgb(218,22,32)" fg:x="194857" fg:w="83"/><text x="40.8192%" y="863.50"></text></g><g><title>[python3.10] (83 samples, 0.02%)</title><rect x="40.5692%" y="837" width="0.0173%" height="15" fill="rgb(243,53,5)" fg:x="194857" fg:w="83"/><text x="40.8192%" y="847.50"></text></g><g><title>[python3.10] (83 samples, 0.02%)</title><rect x="40.5692%" y="821" width="0.0173%" height="15" fill="rgb(227,56,16)" fg:x="194857" fg:w="83"/><text x="40.8192%" y="831.50"></text></g><g><title>__libc_start_main_impl (179 samples, 0.04%)</title><rect x="40.5496%" y="933" width="0.0373%" height="15" fill="rgb(245,53,0)" fg:x="194763" fg:w="179"/><text x="40.7996%" y="943.50"></text></g><g><title>__libc_start_call_main (179 samples, 0.04%)</title><rect x="40.5496%" y="917" width="0.0373%" height="15" fill="rgb(216,170,35)" fg:x="194763" fg:w="179"/><text x="40.7996%" y="927.50"></text></g><g><title>Py_BytesMain (179 samples, 0.04%)</title><rect x="40.5496%" y="901" width="0.0373%" height="15" fill="rgb(211,200,8)" fg:x="194763" fg:w="179"/><text x="40.7996%" y="911.50"></text></g><g><title>[python3.10] (85 samples, 0.02%)</title><rect x="40.5692%" y="885" width="0.0177%" height="15" fill="rgb(228,204,44)" fg:x="194857" fg:w="85"/><text x="40.8192%" y="895.50"></text></g><g><title>[python3.10] (85 samples, 0.02%)</title><rect x="40.5692%" y="869" width="0.0177%" height="15" fill="rgb(214,121,17)" fg:x="194857" fg:w="85"/><text x="40.8192%" y="879.50"></text></g><g><title>_start (195 samples, 0.04%)</title><rect x="40.5496%" y="949" width="0.0406%" height="15" fill="rgb(233,64,38)" fg:x="194763" fg:w="195"/><text x="40.7996%" y="959.50"></text></g><g><title>python3 (625 samples, 0.13%)</title><rect x="40.4628%" y="965" width="0.1301%" height="15" fill="rgb(253,54,19)" fg:x="194346" fg:w="625"/><text x="40.7128%" y="975.50"></text></g><g><title>[[stack]] (55 samples, 0.01%)</title><rect x="40.5946%" y="949" width="0.0115%" height="15" fill="rgb(253,94,18)" fg:x="194979" fg:w="55"/><text x="40.8446%" y="959.50"></text></g><g><title>[libpcre2-8.so.0.11.0] (49 samples, 0.01%)</title><rect x="40.6200%" y="949" width="0.0102%" height="15" fill="rgb(227,57,52)" fg:x="195101" fg:w="49"/><text x="40.8700%" y="959.50"></text></g><g><title>[libselinux.so.1] (53 samples, 0.01%)</title><rect x="40.6302%" y="949" width="0.0110%" height="15" fill="rgb(230,228,50)" fg:x="195150" fg:w="53"/><text x="40.8802%" y="959.50"></text></g><g><title>[sed] (57 samples, 0.01%)</title><rect x="40.6795%" y="821" width="0.0119%" height="15" fill="rgb(217,205,27)" fg:x="195387" fg:w="57"/><text x="40.9295%" y="831.50"></text></g><g><title>[sed] (227 samples, 0.05%)</title><rect x="40.6666%" y="837" width="0.0473%" height="15" fill="rgb(252,71,50)" fg:x="195325" fg:w="227"/><text x="40.9166%" y="847.50"></text></g><g><title>__GI_fwrite_unlocked (51 samples, 0.01%)</title><rect x="40.7139%" y="837" width="0.0106%" height="15" fill="rgb(209,86,4)" fg:x="195552" fg:w="51"/><text x="40.9639%" y="847.50"></text></g><g><title>[sed] (299 samples, 0.06%)</title><rect x="40.6627%" y="853" width="0.0623%" height="15" fill="rgb(229,94,0)" fg:x="195306" fg:w="299"/><text x="40.9127%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (174 samples, 0.04%)</title><rect x="40.7314%" y="613" width="0.0362%" height="15" fill="rgb(252,223,21)" fg:x="195636" fg:w="174"/><text x="40.9814%" y="623.50"></text></g><g><title>x86_pmu_enable (172 samples, 0.04%)</title><rect x="40.7318%" y="597" width="0.0358%" height="15" fill="rgb(230,210,4)" fg:x="195638" fg:w="172"/><text x="40.9818%" y="607.50"></text></g><g><title>intel_pmu_enable_all (171 samples, 0.04%)</title><rect x="40.7320%" y="581" width="0.0356%" height="15" fill="rgb(240,149,38)" fg:x="195639" fg:w="171"/><text x="40.9820%" y="591.50"></text></g><g><title>native_write_msr (170 samples, 0.04%)</title><rect x="40.7322%" y="565" width="0.0354%" height="15" fill="rgb(254,105,20)" fg:x="195640" fg:w="170"/><text x="40.9822%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (187 samples, 0.04%)</title><rect x="40.7297%" y="629" width="0.0389%" height="15" fill="rgb(253,87,46)" fg:x="195628" fg:w="187"/><text x="40.9797%" y="639.50"></text></g><g><title>exit_to_user_mode_loop (216 samples, 0.04%)</title><rect x="40.7264%" y="677" width="0.0450%" height="15" fill="rgb(253,116,33)" fg:x="195612" fg:w="216"/><text x="40.9764%" y="687.50"></text></g><g><title>schedule (206 samples, 0.04%)</title><rect x="40.7284%" y="661" width="0.0429%" height="15" fill="rgb(229,198,5)" fg:x="195622" fg:w="206"/><text x="40.9784%" y="671.50"></text></g><g><title>__schedule (203 samples, 0.04%)</title><rect x="40.7291%" y="645" width="0.0423%" height="15" fill="rgb(242,38,37)" fg:x="195625" fg:w="203"/><text x="40.9791%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (219 samples, 0.05%)</title><rect x="40.7262%" y="709" width="0.0456%" height="15" fill="rgb(242,69,53)" fg:x="195611" fg:w="219"/><text x="40.9762%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (218 samples, 0.05%)</title><rect x="40.7264%" y="693" width="0.0454%" height="15" fill="rgb(249,80,16)" fg:x="195612" fg:w="218"/><text x="40.9764%" y="703.50"></text></g><g><title>__x64_sys_write (52 samples, 0.01%)</title><rect x="40.7718%" y="693" width="0.0108%" height="15" fill="rgb(206,128,11)" fg:x="195830" fg:w="52"/><text x="41.0218%" y="703.50"></text></g><g><title>ksys_write (51 samples, 0.01%)</title><rect x="40.7720%" y="677" width="0.0106%" height="15" fill="rgb(212,35,20)" fg:x="195831" fg:w="51"/><text x="41.0220%" y="687.50"></text></g><g><title>vfs_write (50 samples, 0.01%)</title><rect x="40.7722%" y="661" width="0.0104%" height="15" fill="rgb(236,79,13)" fg:x="195832" fg:w="50"/><text x="41.0222%" y="671.50"></text></g><g><title>do_syscall_64 (284 samples, 0.06%)</title><rect x="40.7262%" y="725" width="0.0591%" height="15" fill="rgb(233,123,3)" fg:x="195611" fg:w="284"/><text x="40.9762%" y="735.50"></text></g><g><title>unload_network_ops_symbols (65 samples, 0.01%)</title><rect x="40.7718%" y="709" width="0.0135%" height="15" fill="rgb(214,93,52)" fg:x="195830" fg:w="65"/><text x="41.0218%" y="719.50"></text></g><g><title>__GI___fflush_unlocked (292 samples, 0.06%)</title><rect x="40.7249%" y="853" width="0.0608%" height="15" fill="rgb(251,37,40)" fg:x="195605" fg:w="292"/><text x="40.9749%" y="863.50"></text></g><g><title>_IO_new_file_sync (292 samples, 0.06%)</title><rect x="40.7249%" y="837" width="0.0608%" height="15" fill="rgb(227,80,54)" fg:x="195605" fg:w="292"/><text x="40.9749%" y="847.50"></text></g><g><title>_IO_new_do_write (291 samples, 0.06%)</title><rect x="40.7251%" y="821" width="0.0606%" height="15" fill="rgb(254,48,11)" fg:x="195606" fg:w="291"/><text x="40.9751%" y="831.50"></text></g><g><title>_IO_new_do_write (291 samples, 0.06%)</title><rect x="40.7251%" y="805" width="0.0606%" height="15" fill="rgb(235,193,26)" fg:x="195606" fg:w="291"/><text x="40.9751%" y="815.50"></text></g><g><title>new_do_write (291 samples, 0.06%)</title><rect x="40.7251%" y="789" width="0.0606%" height="15" fill="rgb(229,99,21)" fg:x="195606" fg:w="291"/><text x="40.9751%" y="799.50"></text></g><g><title>_IO_new_file_write (290 samples, 0.06%)</title><rect x="40.7253%" y="773" width="0.0604%" height="15" fill="rgb(211,140,41)" fg:x="195607" fg:w="290"/><text x="40.9753%" y="783.50"></text></g><g><title>__GI___libc_write (287 samples, 0.06%)</title><rect x="40.7260%" y="757" width="0.0598%" height="15" fill="rgb(240,227,30)" fg:x="195610" fg:w="287"/><text x="40.9760%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (286 samples, 0.06%)</title><rect x="40.7262%" y="741" width="0.0595%" height="15" fill="rgb(215,224,45)" fg:x="195611" fg:w="286"/><text x="40.9762%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (248 samples, 0.05%)</title><rect x="40.8047%" y="629" width="0.0516%" height="15" fill="rgb(206,123,31)" fg:x="195988" fg:w="248"/><text x="41.0547%" y="639.50"></text></g><g><title>x86_pmu_enable (241 samples, 0.05%)</title><rect x="40.8061%" y="613" width="0.0502%" height="15" fill="rgb(210,138,16)" fg:x="195995" fg:w="241"/><text x="41.0561%" y="623.50"></text></g><g><title>intel_pmu_enable_all (239 samples, 0.05%)</title><rect x="40.8065%" y="597" width="0.0498%" height="15" fill="rgb(228,57,28)" fg:x="195997" fg:w="239"/><text x="41.0565%" y="607.50"></text></g><g><title>native_write_msr (235 samples, 0.05%)</title><rect x="40.8074%" y="581" width="0.0489%" height="15" fill="rgb(242,170,10)" fg:x="196001" fg:w="235"/><text x="41.0574%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (264 samples, 0.05%)</title><rect x="40.8030%" y="645" width="0.0550%" height="15" fill="rgb(228,214,39)" fg:x="195980" fg:w="264"/><text x="41.0530%" y="655.50"></text></g><g><title>schedule (279 samples, 0.06%)</title><rect x="40.8022%" y="677" width="0.0581%" height="15" fill="rgb(218,179,33)" fg:x="195976" fg:w="279"/><text x="41.0522%" y="687.50"></text></g><g><title>__schedule (279 samples, 0.06%)</title><rect x="40.8022%" y="661" width="0.0581%" height="15" fill="rgb(235,193,39)" fg:x="195976" fg:w="279"/><text x="41.0522%" y="671.50"></text></g><g><title>pipe_read (298 samples, 0.06%)</title><rect x="40.7994%" y="693" width="0.0620%" height="15" fill="rgb(219,221,36)" fg:x="195963" fg:w="298"/><text x="41.0494%" y="703.50"></text></g><g><title>new_sync_read (301 samples, 0.06%)</title><rect x="40.7990%" y="709" width="0.0627%" height="15" fill="rgb(248,218,19)" fg:x="195961" fg:w="301"/><text x="41.0490%" y="719.50"></text></g><g><title>__x64_sys_read (306 samples, 0.06%)</title><rect x="40.7986%" y="757" width="0.0637%" height="15" fill="rgb(205,50,9)" fg:x="195959" fg:w="306"/><text x="41.0486%" y="767.50"></text></g><g><title>ksys_read (306 samples, 0.06%)</title><rect x="40.7986%" y="741" width="0.0637%" height="15" fill="rgb(238,81,28)" fg:x="195959" fg:w="306"/><text x="41.0486%" y="751.50"></text></g><g><title>vfs_read (305 samples, 0.06%)</title><rect x="40.7988%" y="725" width="0.0635%" height="15" fill="rgb(235,110,19)" fg:x="195960" fg:w="305"/><text x="41.0488%" y="735.50"></text></g><g><title>__GI___getdelim (371 samples, 0.08%)</title><rect x="40.7857%" y="853" width="0.0772%" height="15" fill="rgb(214,7,14)" fg:x="195897" fg:w="371"/><text x="41.0357%" y="863.50"></text></g><g><title>_IO_new_file_underflow (365 samples, 0.08%)</title><rect x="40.7870%" y="837" width="0.0760%" height="15" fill="rgb(211,77,3)" fg:x="195903" fg:w="365"/><text x="41.0370%" y="847.50"></text></g><g><title>__GI___libc_read (324 samples, 0.07%)</title><rect x="40.7955%" y="821" width="0.0675%" height="15" fill="rgb(229,5,9)" fg:x="195944" fg:w="324"/><text x="41.0455%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (324 samples, 0.07%)</title><rect x="40.7955%" y="805" width="0.0675%" height="15" fill="rgb(225,90,11)" fg:x="195944" fg:w="324"/><text x="41.0455%" y="815.50"></text></g><g><title>do_syscall_64 (324 samples, 0.07%)</title><rect x="40.7955%" y="789" width="0.0675%" height="15" fill="rgb(242,56,8)" fg:x="195944" fg:w="324"/><text x="41.0455%" y="799.50"></text></g><g><title>unload_network_ops_symbols (311 samples, 0.06%)</title><rect x="40.7982%" y="773" width="0.0648%" height="15" fill="rgb(249,212,39)" fg:x="195957" fg:w="311"/><text x="41.0482%" y="783.50"></text></g><g><title>[sed] (989 samples, 0.21%)</title><rect x="40.6587%" y="869" width="0.2059%" height="15" fill="rgb(236,90,9)" fg:x="195287" fg:w="989"/><text x="40.9087%" y="879.50"></text></g><g><title>[sed] (1,070 samples, 0.22%)</title><rect x="40.6516%" y="885" width="0.2228%" height="15" fill="rgb(206,88,35)" fg:x="195253" fg:w="1070"/><text x="40.9016%" y="895.50"></text></g><g><title>__GI___mbrtowc (74 samples, 0.02%)</title><rect x="40.8748%" y="885" width="0.0154%" height="15" fill="rgb(205,126,30)" fg:x="196325" fg:w="74"/><text x="41.1248%" y="895.50"></text></g><g><title>__GI_setlocale (58 samples, 0.01%)</title><rect x="40.8938%" y="885" width="0.0121%" height="15" fill="rgb(230,176,12)" fg:x="196416" fg:w="58"/><text x="41.1438%" y="895.50"></text></g><g><title>[sed] (1,295 samples, 0.27%)</title><rect x="40.6431%" y="901" width="0.2696%" height="15" fill="rgb(243,19,9)" fg:x="195212" fg:w="1295"/><text x="40.8931%" y="911.50"></text></g><g><title>do_exit (50 samples, 0.01%)</title><rect x="40.9158%" y="789" width="0.0104%" height="15" fill="rgb(245,171,17)" fg:x="196522" fg:w="50"/><text x="41.1658%" y="799.50"></text></g><g><title>__GI__exit (55 samples, 0.01%)</title><rect x="40.9152%" y="869" width="0.0115%" height="15" fill="rgb(227,52,21)" fg:x="196519" fg:w="55"/><text x="41.1652%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="40.9152%" y="853" width="0.0115%" height="15" fill="rgb(238,69,14)" fg:x="196519" fg:w="55"/><text x="41.1652%" y="863.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="40.9154%" y="837" width="0.0112%" height="15" fill="rgb(241,156,39)" fg:x="196520" fg:w="54"/><text x="41.1654%" y="847.50"></text></g><g><title>__x64_sys_exit_group (54 samples, 0.01%)</title><rect x="40.9154%" y="821" width="0.0112%" height="15" fill="rgb(212,227,28)" fg:x="196520" fg:w="54"/><text x="41.1654%" y="831.50"></text></g><g><title>do_group_exit (54 samples, 0.01%)</title><rect x="40.9154%" y="805" width="0.0112%" height="15" fill="rgb(209,118,27)" fg:x="196520" fg:w="54"/><text x="41.1654%" y="815.50"></text></g><g><title>[libselinux.so.1] (53 samples, 0.01%)</title><rect x="40.9294%" y="853" width="0.0110%" height="15" fill="rgb(226,102,5)" fg:x="196587" fg:w="53"/><text x="41.1794%" y="863.50"></text></g><g><title>__libc_start_call_main (1,441 samples, 0.30%)</title><rect x="40.6429%" y="917" width="0.3000%" height="15" fill="rgb(223,34,3)" fg:x="195211" fg:w="1441"/><text x="40.8929%" y="927.50"></text></g><g><title>__GI_exit (144 samples, 0.03%)</title><rect x="40.9129%" y="901" width="0.0300%" height="15" fill="rgb(221,81,38)" fg:x="196508" fg:w="144"/><text x="41.1629%" y="911.50"></text></g><g><title>__run_exit_handlers (144 samples, 0.03%)</title><rect x="40.9129%" y="885" width="0.0300%" height="15" fill="rgb(236,219,28)" fg:x="196508" fg:w="144"/><text x="41.1629%" y="895.50"></text></g><g><title>_dl_fini (78 samples, 0.02%)</title><rect x="40.9267%" y="869" width="0.0162%" height="15" fill="rgb(213,200,14)" fg:x="196574" fg:w="78"/><text x="41.1767%" y="879.50"></text></g><g><title>__libc_start_main_impl (1,452 samples, 0.30%)</title><rect x="40.6423%" y="933" width="0.3023%" height="15" fill="rgb(240,33,19)" fg:x="195208" fg:w="1452"/><text x="40.8923%" y="943.50"></text></g><g><title>[sed] (1,458 samples, 0.30%)</title><rect x="40.6412%" y="949" width="0.3036%" height="15" fill="rgb(233,113,27)" fg:x="195203" fg:w="1458"/><text x="40.8912%" y="959.50"></text></g><g><title>[unknown] (119 samples, 0.02%)</title><rect x="40.9448%" y="949" width="0.0248%" height="15" fill="rgb(220,221,18)" fg:x="196661" fg:w="119"/><text x="41.1948%" y="959.50"></text></g><g><title>__do_sys_statfs (57 samples, 0.01%)</title><rect x="40.9772%" y="789" width="0.0119%" height="15" fill="rgb(238,92,8)" fg:x="196817" fg:w="57"/><text x="41.2272%" y="799.50"></text></g><g><title>user_statfs (57 samples, 0.01%)</title><rect x="40.9772%" y="773" width="0.0119%" height="15" fill="rgb(222,164,16)" fg:x="196817" fg:w="57"/><text x="41.2272%" y="783.50"></text></g><g><title>user_path_at_empty (56 samples, 0.01%)</title><rect x="40.9775%" y="757" width="0.0117%" height="15" fill="rgb(241,119,3)" fg:x="196818" fg:w="56"/><text x="41.2275%" y="767.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="40.9770%" y="821" width="0.0123%" height="15" fill="rgb(241,44,8)" fg:x="196816" fg:w="59"/><text x="41.2270%" y="831.50"></text></g><g><title>__x64_sys_statfs (58 samples, 0.01%)</title><rect x="40.9772%" y="805" width="0.0121%" height="15" fill="rgb(230,36,40)" fg:x="196817" fg:w="58"/><text x="41.2272%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (60 samples, 0.01%)</title><rect x="40.9770%" y="837" width="0.0125%" height="15" fill="rgb(243,16,36)" fg:x="196816" fg:w="60"/><text x="41.2270%" y="847.50"></text></g><g><title>[libselinux.so.1] (79 samples, 0.02%)</title><rect x="40.9735%" y="869" width="0.0164%" height="15" fill="rgb(231,4,26)" fg:x="196799" fg:w="79"/><text x="41.2235%" y="879.50"></text></g><g><title>__statfs64 (77 samples, 0.02%)</title><rect x="40.9739%" y="853" width="0.0160%" height="15" fill="rgb(240,9,31)" fg:x="196801" fg:w="77"/><text x="41.2239%" y="863.50"></text></g><g><title>_IO_new_file_close_it (49 samples, 0.01%)</title><rect x="41.0095%" y="837" width="0.0102%" height="15" fill="rgb(207,173,15)" fg:x="196972" fg:w="49"/><text x="41.2595%" y="847.50"></text></g><g><title>_IO_new_fclose (53 samples, 0.01%)</title><rect x="41.0093%" y="853" width="0.0110%" height="15" fill="rgb(224,192,53)" fg:x="196971" fg:w="53"/><text x="41.2593%" y="863.50"></text></g><g><title>do_filp_open (52 samples, 0.01%)</title><rect x="41.0237%" y="693" width="0.0108%" height="15" fill="rgb(223,67,28)" fg:x="197040" fg:w="52"/><text x="41.2737%" y="703.50"></text></g><g><title>path_openat (52 samples, 0.01%)</title><rect x="41.0237%" y="677" width="0.0108%" height="15" fill="rgb(211,20,47)" fg:x="197040" fg:w="52"/><text x="41.2737%" y="687.50"></text></g><g><title>do_sys_openat2 (61 samples, 0.01%)</title><rect x="41.0237%" y="709" width="0.0127%" height="15" fill="rgb(240,228,2)" fg:x="197040" fg:w="61"/><text x="41.2737%" y="719.50"></text></g><g><title>__x64_sys_openat (63 samples, 0.01%)</title><rect x="41.0237%" y="725" width="0.0131%" height="15" fill="rgb(248,151,12)" fg:x="197040" fg:w="63"/><text x="41.2737%" y="735.50"></text></g><g><title>__GI__IO_file_open (81 samples, 0.02%)</title><rect x="41.0224%" y="805" width="0.0169%" height="15" fill="rgb(244,8,39)" fg:x="197034" fg:w="81"/><text x="41.2724%" y="815.50"></text></g><g><title>__libc_open64 (79 samples, 0.02%)</title><rect x="41.0228%" y="789" width="0.0164%" height="15" fill="rgb(222,26,8)" fg:x="197036" fg:w="79"/><text x="41.2728%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="41.0228%" y="773" width="0.0164%" height="15" fill="rgb(213,106,44)" fg:x="197036" fg:w="79"/><text x="41.2728%" y="783.50"></text></g><g><title>do_syscall_64 (78 samples, 0.02%)</title><rect x="41.0231%" y="757" width="0.0162%" height="15" fill="rgb(214,129,20)" fg:x="197037" fg:w="78"/><text x="41.2731%" y="767.50"></text></g><g><title>unload_network_ops_symbols (76 samples, 0.02%)</title><rect x="41.0235%" y="741" width="0.0158%" height="15" fill="rgb(212,32,13)" fg:x="197039" fg:w="76"/><text x="41.2735%" y="751.50"></text></g><g><title>_IO_new_file_fopen (107 samples, 0.02%)</title><rect x="41.0203%" y="821" width="0.0223%" height="15" fill="rgb(208,168,33)" fg:x="197024" fg:w="107"/><text x="41.2703%" y="831.50"></text></g><g><title>__glibc_morecore (52 samples, 0.01%)</title><rect x="41.0553%" y="741" width="0.0108%" height="15" fill="rgb(231,207,8)" fg:x="197192" fg:w="52"/><text x="41.3053%" y="751.50"></text></g><g><title>__GI___sbrk (52 samples, 0.01%)</title><rect x="41.0553%" y="725" width="0.0108%" height="15" fill="rgb(235,219,23)" fg:x="197192" fg:w="52"/><text x="41.3053%" y="735.50"></text></g><g><title>__fopen_internal (246 samples, 0.05%)</title><rect x="41.0203%" y="837" width="0.0512%" height="15" fill="rgb(226,216,26)" fg:x="197024" fg:w="246"/><text x="41.2703%" y="847.50"></text></g><g><title>__GI___libc_malloc (115 samples, 0.02%)</title><rect x="41.0476%" y="821" width="0.0239%" height="15" fill="rgb(239,137,16)" fg:x="197155" fg:w="115"/><text x="41.2976%" y="831.50"></text></g><g><title>tcache_init (83 samples, 0.02%)</title><rect x="41.0543%" y="805" width="0.0173%" height="15" fill="rgb(207,12,36)" fg:x="197187" fg:w="83"/><text x="41.3043%" y="815.50"></text></g><g><title>tcache_init (83 samples, 0.02%)</title><rect x="41.0543%" y="789" width="0.0173%" height="15" fill="rgb(210,214,24)" fg:x="197187" fg:w="83"/><text x="41.3043%" y="799.50"></text></g><g><title>_int_malloc (82 samples, 0.02%)</title><rect x="41.0545%" y="773" width="0.0171%" height="15" fill="rgb(206,56,30)" fg:x="197188" fg:w="82"/><text x="41.3045%" y="783.50"></text></g><g><title>sysmalloc (80 samples, 0.02%)</title><rect x="41.0549%" y="757" width="0.0167%" height="15" fill="rgb(228,143,26)" fg:x="197190" fg:w="80"/><text x="41.3049%" y="767.50"></text></g><g><title>_IO_new_fopen (268 samples, 0.06%)</title><rect x="41.0203%" y="853" width="0.0558%" height="15" fill="rgb(216,218,46)" fg:x="197024" fg:w="268"/><text x="41.2703%" y="863.50"></text></g><g><title>filesystems_proc_show (111 samples, 0.02%)</title><rect x="41.0926%" y="661" width="0.0231%" height="15" fill="rgb(206,6,19)" fg:x="197371" fg:w="111"/><text x="41.3426%" y="671.50"></text></g><g><title>seq_printf (79 samples, 0.02%)</title><rect x="41.0993%" y="645" width="0.0164%" height="15" fill="rgb(239,177,51)" fg:x="197403" fg:w="79"/><text x="41.3493%" y="655.50"></text></g><g><title>vsnprintf (64 samples, 0.01%)</title><rect x="41.1024%" y="629" width="0.0133%" height="15" fill="rgb(216,55,25)" fg:x="197418" fg:w="64"/><text x="41.3524%" y="639.50"></text></g><g><title>new_sync_read (135 samples, 0.03%)</title><rect x="41.0909%" y="709" width="0.0281%" height="15" fill="rgb(231,163,29)" fg:x="197363" fg:w="135"/><text x="41.3409%" y="719.50"></text></g><g><title>proc_reg_read_iter (135 samples, 0.03%)</title><rect x="41.0909%" y="693" width="0.0281%" height="15" fill="rgb(232,149,50)" fg:x="197363" fg:w="135"/><text x="41.3409%" y="703.50"></text></g><g><title>seq_read_iter (133 samples, 0.03%)</title><rect x="41.0913%" y="677" width="0.0277%" height="15" fill="rgb(223,142,48)" fg:x="197365" fg:w="133"/><text x="41.3413%" y="687.50"></text></g><g><title>__GI___getdelim (211 samples, 0.04%)</title><rect x="41.0761%" y="853" width="0.0439%" height="15" fill="rgb(245,83,23)" fg:x="197292" fg:w="211"/><text x="41.3261%" y="863.50"></text></g><g><title>_IO_new_file_underflow (181 samples, 0.04%)</title><rect x="41.0824%" y="837" width="0.0377%" height="15" fill="rgb(224,63,2)" fg:x="197322" fg:w="181"/><text x="41.3324%" y="847.50"></text></g><g><title>__GI___libc_read (159 samples, 0.03%)</title><rect x="41.0870%" y="821" width="0.0331%" height="15" fill="rgb(218,65,53)" fg:x="197344" fg:w="159"/><text x="41.3370%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (157 samples, 0.03%)</title><rect x="41.0874%" y="805" width="0.0327%" height="15" fill="rgb(221,84,29)" fg:x="197346" fg:w="157"/><text x="41.3374%" y="815.50"></text></g><g><title>do_syscall_64 (157 samples, 0.03%)</title><rect x="41.0874%" y="789" width="0.0327%" height="15" fill="rgb(234,0,32)" fg:x="197346" fg:w="157"/><text x="41.3374%" y="799.50"></text></g><g><title>unload_network_ops_symbols (145 samples, 0.03%)</title><rect x="41.0899%" y="773" width="0.0302%" height="15" fill="rgb(206,20,16)" fg:x="197358" fg:w="145"/><text x="41.3399%" y="783.50"></text></g><g><title>__x64_sys_read (144 samples, 0.03%)</title><rect x="41.0901%" y="757" width="0.0300%" height="15" fill="rgb(244,172,18)" fg:x="197359" fg:w="144"/><text x="41.3401%" y="767.50"></text></g><g><title>ksys_read (144 samples, 0.03%)</title><rect x="41.0901%" y="741" width="0.0300%" height="15" fill="rgb(254,133,1)" fg:x="197359" fg:w="144"/><text x="41.3401%" y="751.50"></text></g><g><title>vfs_read (140 samples, 0.03%)</title><rect x="41.0909%" y="725" width="0.0291%" height="15" fill="rgb(222,206,41)" fg:x="197363" fg:w="140"/><text x="41.3409%" y="735.50"></text></g><g><title>[libselinux.so.1] (715 samples, 0.15%)</title><rect x="40.9733%" y="885" width="0.1489%" height="15" fill="rgb(212,3,42)" fg:x="196798" fg:w="715"/><text x="41.2233%" y="895.50"></text></g><g><title>selinuxfs_exists (549 samples, 0.11%)</title><rect x="41.0079%" y="869" width="0.1143%" height="15" fill="rgb(241,11,4)" fg:x="196964" fg:w="549"/><text x="41.2579%" y="879.50"></text></g><g><title>_dl_start_user (750 samples, 0.16%)</title><rect x="40.9720%" y="949" width="0.1561%" height="15" fill="rgb(205,19,26)" fg:x="196792" fg:w="750"/><text x="41.2220%" y="959.50"></text></g><g><title>_dl_init (748 samples, 0.16%)</title><rect x="40.9725%" y="933" width="0.1557%" height="15" fill="rgb(210,179,32)" fg:x="196794" fg:w="748"/><text x="41.2225%" y="943.50"></text></g><g><title>call_init (747 samples, 0.16%)</title><rect x="40.9727%" y="917" width="0.1555%" height="15" fill="rgb(227,116,49)" fg:x="196795" fg:w="747"/><text x="41.2227%" y="927.50"></text></g><g><title>call_init (747 samples, 0.16%)</title><rect x="40.9727%" y="901" width="0.1555%" height="15" fill="rgb(211,146,6)" fg:x="196795" fg:w="747"/><text x="41.2227%" y="911.50"></text></g><g><title>__access (52 samples, 0.01%)</title><rect x="41.1511%" y="869" width="0.0108%" height="15" fill="rgb(219,44,39)" fg:x="197652" fg:w="52"/><text x="41.4011%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="41.1513%" y="853" width="0.0106%" height="15" fill="rgb(234,128,11)" fg:x="197653" fg:w="51"/><text x="41.4013%" y="863.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="41.1515%" y="837" width="0.0104%" height="15" fill="rgb(220,183,53)" fg:x="197654" fg:w="50"/><text x="41.4015%" y="847.50"></text></g><g><title>__pthread_tunables_init (51 samples, 0.01%)</title><rect x="41.1732%" y="837" width="0.0106%" height="15" fill="rgb(213,219,32)" fg:x="197758" fg:w="51"/><text x="41.4232%" y="847.50"></text></g><g><title>__pthread_early_init (92 samples, 0.02%)</title><rect x="41.1663%" y="853" width="0.0192%" height="15" fill="rgb(232,156,16)" fg:x="197725" fg:w="92"/><text x="41.4163%" y="863.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.01%)</title><rect x="41.1854%" y="853" width="0.0102%" height="15" fill="rgb(246,135,34)" fg:x="197817" fg:w="49"/><text x="41.4354%" y="863.50"></text></g><g><title>__libc_early_init (164 samples, 0.03%)</title><rect x="41.1619%" y="869" width="0.0341%" height="15" fill="rgb(241,99,0)" fg:x="197704" fg:w="164"/><text x="41.4119%" y="879.50"></text></g><g><title>__x64_sys_openat (58 samples, 0.01%)</title><rect x="41.2294%" y="709" width="0.0121%" height="15" fill="rgb(222,103,45)" fg:x="198028" fg:w="58"/><text x="41.4794%" y="719.50"></text></g><g><title>do_sys_openat2 (54 samples, 0.01%)</title><rect x="41.2302%" y="693" width="0.0112%" height="15" fill="rgb(212,57,4)" fg:x="198032" fg:w="54"/><text x="41.4802%" y="703.50"></text></g><g><title>__GI___open64_nocancel (111 samples, 0.02%)</title><rect x="41.2279%" y="773" width="0.0231%" height="15" fill="rgb(215,68,47)" fg:x="198021" fg:w="111"/><text x="41.4779%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.02%)</title><rect x="41.2283%" y="757" width="0.0227%" height="15" fill="rgb(230,84,2)" fg:x="198023" fg:w="109"/><text x="41.4783%" y="767.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="41.2283%" y="741" width="0.0227%" height="15" fill="rgb(220,102,14)" fg:x="198023" fg:w="109"/><text x="41.4783%" y="751.50"></text></g><g><title>unload_network_ops_symbols (105 samples, 0.02%)</title><rect x="41.2292%" y="725" width="0.0219%" height="15" fill="rgb(240,10,32)" fg:x="198027" fg:w="105"/><text x="41.4792%" y="735.50"></text></g><g><title>_dl_sysdep_read_whole_file (190 samples, 0.04%)</title><rect x="41.2217%" y="789" width="0.0396%" height="15" fill="rgb(215,47,27)" fg:x="197991" fg:w="190"/><text x="41.4717%" y="799.50"></text></g><g><title>[ld-linux-x86-64.so.2] (64 samples, 0.01%)</title><rect x="41.2712%" y="773" width="0.0133%" height="15" fill="rgb(233,188,43)" fg:x="198229" fg:w="64"/><text x="41.5212%" y="783.50"></text></g><g><title>search_cache (89 samples, 0.02%)</title><rect x="41.2675%" y="789" width="0.0185%" height="15" fill="rgb(253,190,1)" fg:x="198211" fg:w="89"/><text x="41.5175%" y="799.50"></text></g><g><title>_dl_load_cache_lookup (322 samples, 0.07%)</title><rect x="41.2196%" y="805" width="0.0670%" height="15" fill="rgb(206,114,52)" fg:x="197981" fg:w="322"/><text x="41.4696%" y="815.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (52 samples, 0.01%)</title><rect x="41.2983%" y="709" width="0.0108%" height="15" fill="rgb(233,120,37)" fg:x="198359" fg:w="52"/><text x="41.5483%" y="719.50"></text></g><g><title>do_syscall_64 (70 samples, 0.01%)</title><rect x="41.2950%" y="757" width="0.0146%" height="15" fill="rgb(214,52,39)" fg:x="198343" fg:w="70"/><text x="41.5450%" y="767.50"></text></g><g><title>unload_network_ops_symbols (64 samples, 0.01%)</title><rect x="41.2962%" y="741" width="0.0133%" height="15" fill="rgb(223,80,29)" fg:x="198349" fg:w="64"/><text x="41.5462%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_close (54 samples, 0.01%)</title><rect x="41.2983%" y="725" width="0.0112%" height="15" fill="rgb(230,101,40)" fg:x="198359" fg:w="54"/><text x="41.5483%" y="735.50"></text></g><g><title>__GI___close_nocancel (73 samples, 0.02%)</title><rect x="41.2945%" y="789" width="0.0152%" height="15" fill="rgb(219,211,8)" fg:x="198341" fg:w="73"/><text x="41.5445%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="41.2948%" y="773" width="0.0150%" height="15" fill="rgb(252,126,28)" fg:x="198342" fg:w="72"/><text x="41.5448%" y="783.50"></text></g><g><title>__x64_sys_newfstatat (49 samples, 0.01%)</title><rect x="41.3141%" y="725" width="0.0102%" height="15" fill="rgb(215,56,38)" fg:x="198435" fg:w="49"/><text x="41.5641%" y="735.50"></text></g><g><title>__do_sys_newfstatat (49 samples, 0.01%)</title><rect x="41.3141%" y="709" width="0.0102%" height="15" fill="rgb(249,55,44)" fg:x="198435" fg:w="49"/><text x="41.5641%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.01%)</title><rect x="41.3137%" y="757" width="0.0123%" height="15" fill="rgb(220,221,32)" fg:x="198433" fg:w="59"/><text x="41.5637%" y="767.50"></text></g><g><title>do_syscall_64 (59 samples, 0.01%)</title><rect x="41.3137%" y="741" width="0.0123%" height="15" fill="rgb(212,216,41)" fg:x="198433" fg:w="59"/><text x="41.5637%" y="751.50"></text></g><g><title>_dl_get_file_id (67 samples, 0.01%)</title><rect x="41.3127%" y="789" width="0.0139%" height="15" fill="rgb(228,213,43)" fg:x="198428" fg:w="67"/><text x="41.5627%" y="799.50"></text></g><g><title>__GI___fstatat64 (62 samples, 0.01%)</title><rect x="41.3137%" y="773" width="0.0129%" height="15" fill="rgb(211,31,26)" fg:x="198433" fg:w="62"/><text x="41.5637%" y="783.50"></text></g><g><title>do_fault (86 samples, 0.02%)</title><rect x="41.3347%" y="661" width="0.0179%" height="15" fill="rgb(229,202,19)" fg:x="198534" fg:w="86"/><text x="41.5847%" y="671.50"></text></g><g><title>handle_pte_fault (92 samples, 0.02%)</title><rect x="41.3337%" y="677" width="0.0192%" height="15" fill="rgb(229,105,46)" fg:x="198529" fg:w="92"/><text x="41.5837%" y="687.50"></text></g><g><title>handle_mm_fault (106 samples, 0.02%)</title><rect x="41.3310%" y="709" width="0.0221%" height="15" fill="rgb(235,108,1)" fg:x="198516" fg:w="106"/><text x="41.5810%" y="719.50"></text></g><g><title>__handle_mm_fault (98 samples, 0.02%)</title><rect x="41.3326%" y="693" width="0.0204%" height="15" fill="rgb(245,111,35)" fg:x="198524" fg:w="98"/><text x="41.5826%" y="703.50"></text></g><g><title>do_user_addr_fault (115 samples, 0.02%)</title><rect x="41.3295%" y="725" width="0.0239%" height="15" fill="rgb(219,185,31)" fg:x="198509" fg:w="115"/><text x="41.5795%" y="735.50"></text></g><g><title>asm_exc_page_fault (121 samples, 0.03%)</title><rect x="41.3293%" y="757" width="0.0252%" height="15" fill="rgb(214,4,43)" fg:x="198508" fg:w="121"/><text x="41.5793%" y="767.50"></text></g><g><title>exc_page_fault (121 samples, 0.03%)</title><rect x="41.3293%" y="741" width="0.0252%" height="15" fill="rgb(235,227,40)" fg:x="198508" fg:w="121"/><text x="41.5793%" y="751.50"></text></g><g><title>[ld-linux-x86-64.so.2] (132 samples, 0.03%)</title><rect x="41.3281%" y="773" width="0.0275%" height="15" fill="rgb(230,88,30)" fg:x="198502" fg:w="132"/><text x="41.5781%" y="783.50"></text></g><g><title>__vma_adjust (133 samples, 0.03%)</title><rect x="41.3718%" y="581" width="0.0277%" height="15" fill="rgb(216,217,1)" fg:x="198712" fg:w="133"/><text x="41.6218%" y="591.50"></text></g><g><title>__split_vma (182 samples, 0.04%)</title><rect x="41.3714%" y="597" width="0.0379%" height="15" fill="rgb(248,139,50)" fg:x="198710" fg:w="182"/><text x="41.6214%" y="607.50"></text></g><g><title>unmap_region (117 samples, 0.02%)</title><rect x="41.4178%" y="597" width="0.0244%" height="15" fill="rgb(233,1,21)" fg:x="198933" fg:w="117"/><text x="41.6678%" y="607.50"></text></g><g><title>__do_munmap (358 samples, 0.07%)</title><rect x="41.3695%" y="613" width="0.0745%" height="15" fill="rgb(215,183,12)" fg:x="198701" fg:w="358"/><text x="41.6195%" y="623.50"></text></g><g><title>perf_event_mmap_event (107 samples, 0.02%)</title><rect x="41.4461%" y="597" width="0.0223%" height="15" fill="rgb(229,104,42)" fg:x="199069" fg:w="107"/><text x="41.6961%" y="607.50"></text></g><g><title>perf_iterate_sb (56 samples, 0.01%)</title><rect x="41.4567%" y="581" width="0.0117%" height="15" fill="rgb(243,34,48)" fg:x="199120" fg:w="56"/><text x="41.7067%" y="591.50"></text></g><g><title>perf_iterate_ctx (52 samples, 0.01%)</title><rect x="41.4576%" y="565" width="0.0108%" height="15" fill="rgb(239,11,44)" fg:x="199124" fg:w="52"/><text x="41.7076%" y="575.50"></text></g><g><title>perf_event_mmap (123 samples, 0.03%)</title><rect x="41.4455%" y="613" width="0.0256%" height="15" fill="rgb(231,98,35)" fg:x="199066" fg:w="123"/><text x="41.6955%" y="623.50"></text></g><g><title>mmap_region (577 samples, 0.12%)</title><rect x="41.3662%" y="629" width="0.1201%" height="15" fill="rgb(233,28,25)" fg:x="198685" fg:w="577"/><text x="41.6162%" y="639.50"></text></g><g><title>do_mmap (594 samples, 0.12%)</title><rect x="41.3628%" y="645" width="0.1237%" height="15" fill="rgb(234,123,11)" fg:x="198669" fg:w="594"/><text x="41.6128%" y="655.50"></text></g><g><title>__x64_sys_mmap (631 samples, 0.13%)</title><rect x="41.3603%" y="693" width="0.1314%" height="15" fill="rgb(220,69,3)" fg:x="198657" fg:w="631"/><text x="41.6103%" y="703.50"></text></g><g><title>ksys_mmap_pgoff (630 samples, 0.13%)</title><rect x="41.3605%" y="677" width="0.1312%" height="15" fill="rgb(214,64,36)" fg:x="198658" fg:w="630"/><text x="41.6105%" y="687.50"></text></g><g><title>vm_mmap_pgoff (620 samples, 0.13%)</title><rect x="41.3626%" y="661" width="0.1291%" height="15" fill="rgb(211,138,32)" fg:x="198668" fg:w="620"/><text x="41.6126%" y="671.50"></text></g><g><title>do_syscall_64 (711 samples, 0.15%)</title><rect x="41.3572%" y="725" width="0.1480%" height="15" fill="rgb(213,118,47)" fg:x="198642" fg:w="711"/><text x="41.6072%" y="735.50"></text></g><g><title>unload_network_ops_symbols (699 samples, 0.15%)</title><rect x="41.3597%" y="709" width="0.1455%" height="15" fill="rgb(243,124,49)" fg:x="198654" fg:w="699"/><text x="41.6097%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (714 samples, 0.15%)</title><rect x="41.3570%" y="741" width="0.1487%" height="15" fill="rgb(221,30,28)" fg:x="198641" fg:w="714"/><text x="41.6070%" y="751.50"></text></g><g><title>__mmap64 (724 samples, 0.15%)</title><rect x="41.3555%" y="773" width="0.1507%" height="15" fill="rgb(246,37,13)" fg:x="198634" fg:w="724"/><text x="41.6055%" y="783.50"></text></g><g><title>__mmap64 (724 samples, 0.15%)</title><rect x="41.3555%" y="757" width="0.1507%" height="15" fill="rgb(249,66,14)" fg:x="198634" fg:w="724"/><text x="41.6055%" y="767.50"></text></g><g><title>__vma_adjust (51 samples, 0.01%)</title><rect x="41.5136%" y="645" width="0.0106%" height="15" fill="rgb(213,166,5)" fg:x="199393" fg:w="51"/><text x="41.7636%" y="655.50"></text></g><g><title>mprotect_fixup (94 samples, 0.02%)</title><rect x="41.5075%" y="693" width="0.0196%" height="15" fill="rgb(221,66,24)" fg:x="199364" fg:w="94"/><text x="41.7575%" y="703.50"></text></g><g><title>split_vma (68 samples, 0.01%)</title><rect x="41.5129%" y="677" width="0.0142%" height="15" fill="rgb(210,132,17)" fg:x="199390" fg:w="68"/><text x="41.7629%" y="687.50"></text></g><g><title>__split_vma (68 samples, 0.01%)</title><rect x="41.5129%" y="661" width="0.0142%" height="15" fill="rgb(243,202,5)" fg:x="199390" fg:w="68"/><text x="41.7629%" y="671.50"></text></g><g><title>__mprotect (104 samples, 0.02%)</title><rect x="41.5063%" y="773" width="0.0217%" height="15" fill="rgb(233,70,48)" fg:x="199358" fg:w="104"/><text x="41.7563%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="41.5063%" y="757" width="0.0217%" height="15" fill="rgb(238,41,26)" fg:x="199358" fg:w="104"/><text x="41.7563%" y="767.50"></text></g><g><title>do_syscall_64 (104 samples, 0.02%)</title><rect x="41.5063%" y="741" width="0.0217%" height="15" fill="rgb(241,19,31)" fg:x="199358" fg:w="104"/><text x="41.7563%" y="751.50"></text></g><g><title>__x64_sys_mprotect (104 samples, 0.02%)</title><rect x="41.5063%" y="725" width="0.0217%" height="15" fill="rgb(214,76,10)" fg:x="199358" fg:w="104"/><text x="41.7563%" y="735.50"></text></g><g><title>do_mprotect_pkey (104 samples, 0.02%)</title><rect x="41.5063%" y="709" width="0.0217%" height="15" fill="rgb(254,202,22)" fg:x="199358" fg:w="104"/><text x="41.7563%" y="719.50"></text></g><g><title>perf_event_mmap_event (50 samples, 0.01%)</title><rect x="41.5369%" y="581" width="0.0104%" height="15" fill="rgb(214,72,24)" fg:x="199505" fg:w="50"/><text x="41.7869%" y="591.50"></text></g><g><title>perf_event_mmap (54 samples, 0.01%)</title><rect x="41.5365%" y="597" width="0.0112%" height="15" fill="rgb(221,92,46)" fg:x="199503" fg:w="54"/><text x="41.7865%" y="607.50"></text></g><g><title>__vma_link_file (51 samples, 0.01%)</title><rect x="41.5538%" y="581" width="0.0106%" height="15" fill="rgb(246,13,50)" fg:x="199586" fg:w="51"/><text x="41.8038%" y="591.50"></text></g><g><title>vma_interval_tree_insert (51 samples, 0.01%)</title><rect x="41.5538%" y="565" width="0.0106%" height="15" fill="rgb(240,165,38)" fg:x="199586" fg:w="51"/><text x="41.8038%" y="575.50"></text></g><g><title>vma_link (68 samples, 0.01%)</title><rect x="41.5506%" y="597" width="0.0142%" height="15" fill="rgb(241,24,51)" fg:x="199571" fg:w="68"/><text x="41.8006%" y="607.50"></text></g><g><title>mmap_region (148 samples, 0.03%)</title><rect x="41.5350%" y="613" width="0.0308%" height="15" fill="rgb(227,51,44)" fg:x="199496" fg:w="148"/><text x="41.7850%" y="623.50"></text></g><g><title>do_mmap (166 samples, 0.03%)</title><rect x="41.5315%" y="629" width="0.0346%" height="15" fill="rgb(231,121,3)" fg:x="199479" fg:w="166"/><text x="41.7815%" y="639.50"></text></g><g><title>__x64_sys_mmap (181 samples, 0.04%)</title><rect x="41.5298%" y="677" width="0.0377%" height="15" fill="rgb(245,3,41)" fg:x="199471" fg:w="181"/><text x="41.7798%" y="687.50"></text></g><g><title>ksys_mmap_pgoff (180 samples, 0.04%)</title><rect x="41.5300%" y="661" width="0.0375%" height="15" fill="rgb(214,13,26)" fg:x="199472" fg:w="180"/><text x="41.7800%" y="671.50"></text></g><g><title>vm_mmap_pgoff (175 samples, 0.04%)</title><rect x="41.5311%" y="645" width="0.0364%" height="15" fill="rgb(252,75,11)" fg:x="199477" fg:w="175"/><text x="41.7811%" y="655.50"></text></g><g><title>_dl_map_segment (222 samples, 0.05%)</title><rect x="41.5279%" y="773" width="0.0462%" height="15" fill="rgb(218,226,17)" fg:x="199462" fg:w="222"/><text x="41.7779%" y="783.50"></text></g><g><title>__mmap64 (222 samples, 0.05%)</title><rect x="41.5279%" y="757" width="0.0462%" height="15" fill="rgb(248,89,38)" fg:x="199462" fg:w="222"/><text x="41.7779%" y="767.50"></text></g><g><title>__mmap64 (222 samples, 0.05%)</title><rect x="41.5279%" y="741" width="0.0462%" height="15" fill="rgb(237,73,46)" fg:x="199462" fg:w="222"/><text x="41.7779%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (221 samples, 0.05%)</title><rect x="41.5281%" y="725" width="0.0460%" height="15" fill="rgb(242,78,33)" fg:x="199463" fg:w="221"/><text x="41.7781%" y="735.50"></text></g><g><title>do_syscall_64 (221 samples, 0.05%)</title><rect x="41.5281%" y="709" width="0.0460%" height="15" fill="rgb(235,60,3)" fg:x="199463" fg:w="221"/><text x="41.7781%" y="719.50"></text></g><g><title>unload_network_ops_symbols (215 samples, 0.04%)</title><rect x="41.5294%" y="693" width="0.0448%" height="15" fill="rgb(216,172,19)" fg:x="199469" fg:w="215"/><text x="41.7794%" y="703.50"></text></g><g><title>_dl_map_segments (1,192 samples, 0.25%)</title><rect x="41.3266%" y="789" width="0.2482%" height="15" fill="rgb(227,6,42)" fg:x="198495" fg:w="1192"/><text x="41.5766%" y="799.50"></text></g><g><title>asm_exc_page_fault (58 samples, 0.01%)</title><rect x="41.5827%" y="789" width="0.0121%" height="15" fill="rgb(223,207,42)" fg:x="199725" fg:w="58"/><text x="41.8327%" y="799.50"></text></g><g><title>exc_page_fault (58 samples, 0.01%)</title><rect x="41.5827%" y="773" width="0.0121%" height="15" fill="rgb(246,138,30)" fg:x="199725" fg:w="58"/><text x="41.8327%" y="783.50"></text></g><g><title>do_wp_page (62 samples, 0.01%)</title><rect x="41.6118%" y="677" width="0.0129%" height="15" fill="rgb(251,199,47)" fg:x="199865" fg:w="62"/><text x="41.8618%" y="687.50"></text></g><g><title>wp_page_copy (56 samples, 0.01%)</title><rect x="41.6131%" y="661" width="0.0117%" height="15" fill="rgb(228,218,44)" fg:x="199871" fg:w="56"/><text x="41.8631%" y="671.50"></text></g><g><title>do_user_addr_fault (123 samples, 0.03%)</title><rect x="41.6002%" y="741" width="0.0256%" height="15" fill="rgb(220,68,6)" fg:x="199809" fg:w="123"/><text x="41.8502%" y="751.50"></text></g><g><title>handle_mm_fault (114 samples, 0.02%)</title><rect x="41.6021%" y="725" width="0.0237%" height="15" fill="rgb(240,60,26)" fg:x="199818" fg:w="114"/><text x="41.8521%" y="735.50"></text></g><g><title>__handle_mm_fault (113 samples, 0.02%)</title><rect x="41.6023%" y="709" width="0.0235%" height="15" fill="rgb(211,200,19)" fg:x="199819" fg:w="113"/><text x="41.8523%" y="719.50"></text></g><g><title>handle_pte_fault (106 samples, 0.02%)</title><rect x="41.6037%" y="693" width="0.0221%" height="15" fill="rgb(242,145,30)" fg:x="199826" fg:w="106"/><text x="41.8537%" y="703.50"></text></g><g><title>asm_exc_page_fault (125 samples, 0.03%)</title><rect x="41.6002%" y="773" width="0.0260%" height="15" fill="rgb(225,64,13)" fg:x="199809" fg:w="125"/><text x="41.8502%" y="783.50"></text></g><g><title>exc_page_fault (125 samples, 0.03%)</title><rect x="41.6002%" y="757" width="0.0260%" height="15" fill="rgb(218,103,35)" fg:x="199809" fg:w="125"/><text x="41.8502%" y="767.50"></text></g><g><title>elf_get_dynamic_info (163 samples, 0.03%)</title><rect x="41.5948%" y="789" width="0.0339%" height="15" fill="rgb(216,93,46)" fg:x="199783" fg:w="163"/><text x="41.8448%" y="799.50"></text></g><g><title>_dl_map_object_from_fd (1,676 samples, 0.35%)</title><rect x="41.2866%" y="805" width="0.3489%" height="15" fill="rgb(225,159,27)" fg:x="198303" fg:w="1676"/><text x="41.5366%" y="815.50"></text></g><g><title>do_dentry_open (63 samples, 0.01%)</title><rect x="41.6535%" y="629" width="0.0131%" height="15" fill="rgb(225,204,11)" fg:x="200065" fg:w="63"/><text x="41.9035%" y="639.50"></text></g><g><title>security_file_open (53 samples, 0.01%)</title><rect x="41.6556%" y="613" width="0.0110%" height="15" fill="rgb(205,56,4)" fg:x="200075" fg:w="53"/><text x="41.9056%" y="623.50"></text></g><g><title>do_open (82 samples, 0.02%)</title><rect x="41.6499%" y="661" width="0.0171%" height="15" fill="rgb(206,6,35)" fg:x="200048" fg:w="82"/><text x="41.8999%" y="671.50"></text></g><g><title>vfs_open (65 samples, 0.01%)</title><rect x="41.6535%" y="645" width="0.0135%" height="15" fill="rgb(247,73,52)" fg:x="200065" fg:w="65"/><text x="41.9035%" y="655.50"></text></g><g><title>path_openat (154 samples, 0.03%)</title><rect x="41.6470%" y="677" width="0.0321%" height="15" fill="rgb(246,97,4)" fg:x="200034" fg:w="154"/><text x="41.8970%" y="687.50"></text></g><g><title>do_filp_open (156 samples, 0.03%)</title><rect x="41.6468%" y="693" width="0.0325%" height="15" fill="rgb(212,37,15)" fg:x="200033" fg:w="156"/><text x="41.8968%" y="703.50"></text></g><g><title>__x64_sys_openat (183 samples, 0.04%)</title><rect x="41.6458%" y="725" width="0.0381%" height="15" fill="rgb(208,130,40)" fg:x="200028" fg:w="183"/><text x="41.8958%" y="735.50"></text></g><g><title>do_sys_openat2 (179 samples, 0.04%)</title><rect x="41.6466%" y="709" width="0.0373%" height="15" fill="rgb(236,55,29)" fg:x="200032" fg:w="179"/><text x="41.8966%" y="719.50"></text></g><g><title>_ZdlPv (50 samples, 0.01%)</title><rect x="41.6916%" y="693" width="0.0104%" height="15" fill="rgb(209,156,45)" fg:x="200248" fg:w="50"/><text x="41.9416%" y="703.50"></text></g><g><title>cshook_systemcalltable_post_openat (120 samples, 0.02%)</title><rect x="41.6839%" y="725" width="0.0250%" height="15" fill="rgb(249,107,4)" fg:x="200211" fg:w="120"/><text x="41.9339%" y="735.50"></text></g><g><title>fshook_syscalltable_pre_lchown (91 samples, 0.02%)</title><rect x="41.6899%" y="709" width="0.0189%" height="15" fill="rgb(227,7,13)" fg:x="200240" fg:w="91"/><text x="41.9399%" y="719.50"></text></g><g><title>do_syscall_64 (314 samples, 0.07%)</title><rect x="41.6443%" y="757" width="0.0654%" height="15" fill="rgb(250,129,14)" fg:x="200021" fg:w="314"/><text x="41.8943%" y="767.50"></text></g><g><title>unload_network_ops_symbols (309 samples, 0.06%)</title><rect x="41.6454%" y="741" width="0.0643%" height="15" fill="rgb(229,92,13)" fg:x="200026" fg:w="309"/><text x="41.8954%" y="751.50"></text></g><g><title>__GI___open64_nocancel (320 samples, 0.07%)</title><rect x="41.6433%" y="789" width="0.0666%" height="15" fill="rgb(245,98,39)" fg:x="200016" fg:w="320"/><text x="41.8933%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (316 samples, 0.07%)</title><rect x="41.6441%" y="773" width="0.0658%" height="15" fill="rgb(234,135,48)" fg:x="200020" fg:w="316"/><text x="41.8941%" y="783.50"></text></g><g><title>ksys_read (73 samples, 0.02%)</title><rect x="41.7137%" y="709" width="0.0152%" height="15" fill="rgb(230,98,28)" fg:x="200354" fg:w="73"/><text x="41.9637%" y="719.50"></text></g><g><title>vfs_read (68 samples, 0.01%)</title><rect x="41.7147%" y="693" width="0.0142%" height="15" fill="rgb(223,121,0)" fg:x="200359" fg:w="68"/><text x="41.9647%" y="703.50"></text></g><g><title>__x64_sys_read (74 samples, 0.02%)</title><rect x="41.7137%" y="725" width="0.0154%" height="15" fill="rgb(234,173,33)" fg:x="200354" fg:w="74"/><text x="41.9637%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="41.7126%" y="773" width="0.0169%" height="15" fill="rgb(245,47,8)" fg:x="200349" fg:w="81"/><text x="41.9626%" y="783.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="41.7128%" y="757" width="0.0167%" height="15" fill="rgb(205,17,20)" fg:x="200350" fg:w="80"/><text x="41.9628%" y="767.50"></text></g><g><title>unload_network_ops_symbols (77 samples, 0.02%)</title><rect x="41.7134%" y="741" width="0.0160%" height="15" fill="rgb(232,151,16)" fg:x="200353" fg:w="77"/><text x="41.9634%" y="751.50"></text></g><g><title>__GI___read_nocancel (84 samples, 0.02%)</title><rect x="41.7124%" y="789" width="0.0175%" height="15" fill="rgb(208,30,32)" fg:x="200348" fg:w="84"/><text x="41.9624%" y="799.50"></text></g><g><title>open_verify (427 samples, 0.09%)</title><rect x="41.6412%" y="805" width="0.0889%" height="15" fill="rgb(254,26,3)" fg:x="200006" fg:w="427"/><text x="41.8912%" y="815.50"></text></g><g><title>_dl_catch_exception (2,498 samples, 0.52%)</title><rect x="41.2115%" y="853" width="0.5201%" height="15" fill="rgb(240,177,30)" fg:x="197942" fg:w="2498"/><text x="41.4615%" y="863.50"></text></g><g><title>openaux (2,492 samples, 0.52%)</title><rect x="41.2127%" y="837" width="0.5188%" height="15" fill="rgb(248,76,44)" fg:x="197948" fg:w="2492"/><text x="41.4627%" y="847.50"></text></g><g><title>_dl_map_object (2,485 samples, 0.52%)</title><rect x="41.2142%" y="821" width="0.5174%" height="15" fill="rgb(241,186,54)" fg:x="197955" fg:w="2485"/><text x="41.4642%" y="831.50"></text></g><g><title>_dl_map_object_deps (2,526 samples, 0.53%)</title><rect x="41.2065%" y="869" width="0.5259%" height="15" fill="rgb(249,171,29)" fg:x="197918" fg:w="2526"/><text x="41.4565%" y="879.50"></text></g><g><title>_dl_receive_error (54 samples, 0.01%)</title><rect x="41.7353%" y="869" width="0.0112%" height="15" fill="rgb(237,151,44)" fg:x="200458" fg:w="54"/><text x="41.9853%" y="879.50"></text></g><g><title>version_check_doit (52 samples, 0.01%)</title><rect x="41.7357%" y="853" width="0.0108%" height="15" fill="rgb(228,174,30)" fg:x="200460" fg:w="52"/><text x="41.9857%" y="863.50"></text></g><g><title>_dl_check_all_versions (52 samples, 0.01%)</title><rect x="41.7357%" y="837" width="0.0108%" height="15" fill="rgb(252,14,37)" fg:x="200460" fg:w="52"/><text x="41.9857%" y="847.50"></text></g><g><title>_dl_check_map_versions (51 samples, 0.01%)</title><rect x="41.7359%" y="821" width="0.0106%" height="15" fill="rgb(207,111,40)" fg:x="200461" fg:w="51"/><text x="41.9859%" y="831.50"></text></g><g><title>perf_event_mmap (67 samples, 0.01%)</title><rect x="41.7603%" y="741" width="0.0139%" height="15" fill="rgb(248,171,54)" fg:x="200578" fg:w="67"/><text x="42.0103%" y="751.50"></text></g><g><title>perf_event_mmap_event (64 samples, 0.01%)</title><rect x="41.7609%" y="725" width="0.0133%" height="15" fill="rgb(211,127,2)" fg:x="200581" fg:w="64"/><text x="42.0109%" y="735.50"></text></g><g><title>__vma_adjust (83 samples, 0.02%)</title><rect x="41.7749%" y="709" width="0.0173%" height="15" fill="rgb(236,87,47)" fg:x="200648" fg:w="83"/><text x="42.0249%" y="719.50"></text></g><g><title>split_vma (133 samples, 0.03%)</title><rect x="41.7742%" y="741" width="0.0277%" height="15" fill="rgb(223,190,45)" fg:x="200645" fg:w="133"/><text x="42.0242%" y="751.50"></text></g><g><title>__split_vma (133 samples, 0.03%)</title><rect x="41.7742%" y="725" width="0.0277%" height="15" fill="rgb(215,5,16)" fg:x="200645" fg:w="133"/><text x="42.0242%" y="735.50"></text></g><g><title>mprotect_fixup (237 samples, 0.05%)</title><rect x="41.7530%" y="757" width="0.0493%" height="15" fill="rgb(252,82,33)" fg:x="200543" fg:w="237"/><text x="42.0030%" y="767.50"></text></g><g><title>do_mprotect_pkey (264 samples, 0.05%)</title><rect x="41.7493%" y="773" width="0.0550%" height="15" fill="rgb(247,213,44)" fg:x="200525" fg:w="264"/><text x="41.9993%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (269 samples, 0.06%)</title><rect x="41.7486%" y="821" width="0.0560%" height="15" fill="rgb(205,196,44)" fg:x="200522" fg:w="269"/><text x="41.9986%" y="831.50"></text></g><g><title>do_syscall_64 (267 samples, 0.06%)</title><rect x="41.7490%" y="805" width="0.0556%" height="15" fill="rgb(237,96,54)" fg:x="200524" fg:w="267"/><text x="41.9990%" y="815.50"></text></g><g><title>__x64_sys_mprotect (266 samples, 0.06%)</title><rect x="41.7493%" y="789" width="0.0554%" height="15" fill="rgb(230,113,34)" fg:x="200525" fg:w="266"/><text x="41.9993%" y="799.50"></text></g><g><title>_dl_protect_relro (276 samples, 0.06%)</title><rect x="41.7480%" y="853" width="0.0575%" height="15" fill="rgb(221,224,12)" fg:x="200519" fg:w="276"/><text x="41.9980%" y="863.50"></text></g><g><title>__mprotect (275 samples, 0.06%)</title><rect x="41.7482%" y="837" width="0.0573%" height="15" fill="rgb(219,112,44)" fg:x="200520" fg:w="275"/><text x="41.9982%" y="847.50"></text></g><g><title>elf_machine_lazy_rel (51 samples, 0.01%)</title><rect x="41.8178%" y="837" width="0.0106%" height="15" fill="rgb(210,31,13)" fg:x="200854" fg:w="51"/><text x="42.0678%" y="847.50"></text></g><g><title>dl_new_hash (89 samples, 0.02%)</title><rect x="41.8765%" y="805" width="0.0185%" height="15" fill="rgb(230,25,16)" fg:x="201136" fg:w="89"/><text x="42.1265%" y="815.50"></text></g><g><title>check_match (286 samples, 0.06%)</title><rect x="41.9654%" y="789" width="0.0595%" height="15" fill="rgb(246,108,53)" fg:x="201563" fg:w="286"/><text x="42.2154%" y="799.50"></text></g><g><title>strcmp (160 samples, 0.03%)</title><rect x="41.9916%" y="773" width="0.0333%" height="15" fill="rgb(241,172,50)" fg:x="201689" fg:w="160"/><text x="42.2416%" y="783.50"></text></g><g><title>_dl_lookup_symbol_x (783 samples, 0.16%)</title><rect x="41.8638%" y="821" width="0.1630%" height="15" fill="rgb(235,141,10)" fg:x="201075" fg:w="783"/><text x="42.1138%" y="831.50"></text></g><g><title>do_lookup_x (633 samples, 0.13%)</title><rect x="41.8950%" y="805" width="0.1318%" height="15" fill="rgb(220,174,43)" fg:x="201225" fg:w="633"/><text x="42.1450%" y="815.50"></text></g><g><title>elf_machine_rela (971 samples, 0.20%)</title><rect x="41.8284%" y="837" width="0.2022%" height="15" fill="rgb(215,181,40)" fg:x="200905" fg:w="971"/><text x="42.0784%" y="847.50"></text></g><g><title>elf_dynamic_do_Rela (1,152 samples, 0.24%)</title><rect x="41.8055%" y="853" width="0.2398%" height="15" fill="rgb(230,97,2)" fg:x="200795" fg:w="1152"/><text x="42.0555%" y="863.50"></text></g><g><title>elf_machine_rela_relative (71 samples, 0.01%)</title><rect x="42.0305%" y="837" width="0.0148%" height="15" fill="rgb(211,25,27)" fg:x="201876" fg:w="71"/><text x="42.2805%" y="847.50"></text></g><g><title>_dl_relocate_object (1,454 samples, 0.30%)</title><rect x="41.7465%" y="869" width="0.3027%" height="15" fill="rgb(230,87,26)" fg:x="200512" fg:w="1454"/><text x="41.9965%" y="879.50"></text></g><g><title>unmap_page_range (64 samples, 0.01%)</title><rect x="42.0647%" y="709" width="0.0133%" height="15" fill="rgb(227,160,17)" fg:x="202040" fg:w="64"/><text x="42.3147%" y="719.50"></text></g><g><title>zap_pmd_range.isra.0 (64 samples, 0.01%)</title><rect x="42.0647%" y="693" width="0.0133%" height="15" fill="rgb(244,85,34)" fg:x="202040" fg:w="64"/><text x="42.3147%" y="703.50"></text></g><g><title>zap_pte_range (59 samples, 0.01%)</title><rect x="42.0657%" y="677" width="0.0123%" height="15" fill="rgb(207,70,0)" fg:x="202045" fg:w="59"/><text x="42.3157%" y="687.50"></text></g><g><title>unmap_region (120 samples, 0.02%)</title><rect x="42.0532%" y="757" width="0.0250%" height="15" fill="rgb(223,129,7)" fg:x="201985" fg:w="120"/><text x="42.3032%" y="767.50"></text></g><g><title>unmap_vmas (67 samples, 0.01%)</title><rect x="42.0643%" y="741" width="0.0139%" height="15" fill="rgb(246,105,7)" fg:x="202038" fg:w="67"/><text x="42.3143%" y="751.50"></text></g><g><title>unmap_single_vma (67 samples, 0.01%)</title><rect x="42.0643%" y="725" width="0.0139%" height="15" fill="rgb(215,154,42)" fg:x="202038" fg:w="67"/><text x="42.3143%" y="735.50"></text></g><g><title>__x64_sys_munmap (137 samples, 0.03%)</title><rect x="42.0499%" y="805" width="0.0285%" height="15" fill="rgb(220,215,30)" fg:x="201969" fg:w="137"/><text x="42.2999%" y="815.50"></text></g><g><title>__vm_munmap (137 samples, 0.03%)</title><rect x="42.0499%" y="789" width="0.0285%" height="15" fill="rgb(228,81,51)" fg:x="201969" fg:w="137"/><text x="42.2999%" y="799.50"></text></g><g><title>__do_munmap (137 samples, 0.03%)</title><rect x="42.0499%" y="773" width="0.0285%" height="15" fill="rgb(247,71,54)" fg:x="201969" fg:w="137"/><text x="42.2999%" y="783.50"></text></g><g><title>_dl_unload_cache (164 samples, 0.03%)</title><rect x="42.0493%" y="869" width="0.0341%" height="15" fill="rgb(234,176,34)" fg:x="201966" fg:w="164"/><text x="42.2993%" y="879.50"></text></g><g><title>munmap (162 samples, 0.03%)</title><rect x="42.0497%" y="853" width="0.0337%" height="15" fill="rgb(241,103,54)" fg:x="201968" fg:w="162"/><text x="42.2997%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (162 samples, 0.03%)</title><rect x="42.0497%" y="837" width="0.0337%" height="15" fill="rgb(228,22,34)" fg:x="201968" fg:w="162"/><text x="42.2997%" y="847.50"></text></g><g><title>do_syscall_64 (161 samples, 0.03%)</title><rect x="42.0499%" y="821" width="0.0335%" height="15" fill="rgb(241,179,48)" fg:x="201969" fg:w="161"/><text x="42.2999%" y="831.50"></text></g><g><title>call_init_paths (77 samples, 0.02%)</title><rect x="42.0842%" y="869" width="0.0160%" height="15" fill="rgb(235,167,37)" fg:x="202134" fg:w="77"/><text x="42.3342%" y="879.50"></text></g><g><title>_dl_init_paths (77 samples, 0.02%)</title><rect x="42.0842%" y="853" width="0.0160%" height="15" fill="rgb(213,109,30)" fg:x="202134" fg:w="77"/><text x="42.3342%" y="863.50"></text></g><g><title>init_tls (92 samples, 0.02%)</title><rect x="42.1094%" y="869" width="0.0192%" height="15" fill="rgb(222,172,16)" fg:x="202255" fg:w="92"/><text x="42.3594%" y="879.50"></text></g><g><title>rtld_setup_main_map (58 samples, 0.01%)</title><rect x="42.1288%" y="869" width="0.0121%" height="15" fill="rgb(233,192,5)" fg:x="202348" fg:w="58"/><text x="42.3788%" y="879.50"></text></g><g><title>dl_main (4,834 samples, 1.01%)</title><rect x="41.1417%" y="885" width="1.0064%" height="15" fill="rgb(247,189,41)" fg:x="197607" fg:w="4834"/><text x="41.3917%" y="895.50"></text></g><g><title>dl_init_cacheinfo (71 samples, 0.01%)</title><rect x="42.1515%" y="853" width="0.0148%" height="15" fill="rgb(218,134,47)" fg:x="202457" fg:w="71"/><text x="42.4015%" y="863.50"></text></g><g><title>handle_intel (60 samples, 0.01%)</title><rect x="42.1538%" y="837" width="0.0125%" height="15" fill="rgb(216,29,3)" fg:x="202468" fg:w="60"/><text x="42.4038%" y="847.50"></text></g><g><title>intel_check_word (54 samples, 0.01%)</title><rect x="42.1550%" y="821" width="0.0112%" height="15" fill="rgb(246,140,12)" fg:x="202474" fg:w="54"/><text x="42.4050%" y="831.50"></text></g><g><title>dl_platform_init (110 samples, 0.02%)</title><rect x="42.1482%" y="885" width="0.0229%" height="15" fill="rgb(230,136,11)" fg:x="202441" fg:w="110"/><text x="42.3982%" y="895.50"></text></g><g><title>init_cpu_features (98 samples, 0.02%)</title><rect x="42.1507%" y="869" width="0.0204%" height="15" fill="rgb(247,22,47)" fg:x="202453" fg:w="98"/><text x="42.4007%" y="879.50"></text></g><g><title>_dl_sysdep_start (4,993 samples, 1.04%)</title><rect x="41.1344%" y="901" width="1.0395%" height="15" fill="rgb(218,84,22)" fg:x="197572" fg:w="4993"/><text x="41.3844%" y="911.50"></text></g><g><title>_dl_start_final (5,011 samples, 1.04%)</title><rect x="41.1309%" y="917" width="1.0433%" height="15" fill="rgb(216,87,39)" fg:x="197555" fg:w="5011"/><text x="41.3809%" y="927.50"></text></g><g><title>_dl_start (5,071 samples, 1.06%)</title><rect x="41.1301%" y="933" width="1.0558%" height="15" fill="rgb(221,178,8)" fg:x="197551" fg:w="5071"/><text x="41.3801%" y="943.50"></text></g><g><title>__x64_sys_execve (54 samples, 0.01%)</title><rect x="42.1950%" y="901" width="0.0112%" height="15" fill="rgb(230,42,11)" fg:x="202666" fg:w="54"/><text x="42.4450%" y="911.50"></text></g><g><title>do_execveat_common.isra.0 (54 samples, 0.01%)</title><rect x="42.1950%" y="885" width="0.0112%" height="15" fill="rgb(237,229,4)" fg:x="202666" fg:w="54"/><text x="42.4450%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.02%)</title><rect x="42.1950%" y="933" width="0.0177%" height="15" fill="rgb(222,31,33)" fg:x="202666" fg:w="85"/><text x="42.4450%" y="943.50"></text></g><g><title>do_syscall_64 (85 samples, 0.02%)</title><rect x="42.1950%" y="917" width="0.0177%" height="15" fill="rgb(210,17,39)" fg:x="202666" fg:w="85"/><text x="42.4450%" y="927.50"></text></g><g><title>_start (5,212 samples, 1.09%)</title><rect x="41.1282%" y="949" width="1.0851%" height="15" fill="rgb(244,93,20)" fg:x="197542" fg:w="5212"/><text x="41.3782%" y="959.50"></text></g><g><title>asm_exc_page_fault (210 samples, 0.04%)</title><rect x="42.2135%" y="949" width="0.0437%" height="15" fill="rgb(210,40,47)" fg:x="202755" fg:w="210"/><text x="42.4635%" y="959.50"></text></g><g><title>__handle_mm_fault (50 samples, 0.01%)</title><rect x="42.2729%" y="709" width="0.0104%" height="15" fill="rgb(239,211,47)" fg:x="203040" fg:w="50"/><text x="42.5229%" y="719.50"></text></g><g><title>__clear_user (63 samples, 0.01%)</title><rect x="42.2706%" y="789" width="0.0131%" height="15" fill="rgb(251,223,49)" fg:x="203029" fg:w="63"/><text x="42.5206%" y="799.50"></text></g><g><title>asm_exc_page_fault (55 samples, 0.01%)</title><rect x="42.2723%" y="773" width="0.0115%" height="15" fill="rgb(221,149,5)" fg:x="203037" fg:w="55"/><text x="42.5223%" y="783.50"></text></g><g><title>exc_page_fault (55 samples, 0.01%)</title><rect x="42.2723%" y="757" width="0.0115%" height="15" fill="rgb(219,224,51)" fg:x="203037" fg:w="55"/><text x="42.5223%" y="767.50"></text></g><g><title>do_user_addr_fault (54 samples, 0.01%)</title><rect x="42.2725%" y="741" width="0.0112%" height="15" fill="rgb(223,7,8)" fg:x="203038" fg:w="54"/><text x="42.5225%" y="751.50"></text></g><g><title>handle_mm_fault (54 samples, 0.01%)</title><rect x="42.2725%" y="725" width="0.0112%" height="15" fill="rgb(241,217,22)" fg:x="203038" fg:w="54"/><text x="42.5225%" y="735.50"></text></g><g><title>clear_user (64 samples, 0.01%)</title><rect x="42.2706%" y="805" width="0.0133%" height="15" fill="rgb(248,209,0)" fg:x="203029" fg:w="64"/><text x="42.5206%" y="815.50"></text></g><g><title>mmap_region (56 samples, 0.01%)</title><rect x="42.2929%" y="741" width="0.0117%" height="15" fill="rgb(217,205,4)" fg:x="203136" fg:w="56"/><text x="42.5429%" y="751.50"></text></g><g><title>do_mmap (66 samples, 0.01%)</title><rect x="42.2912%" y="757" width="0.0137%" height="15" fill="rgb(228,124,39)" fg:x="203128" fg:w="66"/><text x="42.5412%" y="767.50"></text></g><g><title>vm_mmap (76 samples, 0.02%)</title><rect x="42.2906%" y="789" width="0.0158%" height="15" fill="rgb(250,116,42)" fg:x="203125" fg:w="76"/><text x="42.5406%" y="799.50"></text></g><g><title>vm_mmap_pgoff (74 samples, 0.02%)</title><rect x="42.2910%" y="773" width="0.0154%" height="15" fill="rgb(223,202,9)" fg:x="203127" fg:w="74"/><text x="42.5410%" y="783.50"></text></g><g><title>elf_map (99 samples, 0.02%)</title><rect x="42.2906%" y="805" width="0.0206%" height="15" fill="rgb(242,222,40)" fg:x="203125" fg:w="99"/><text x="42.5406%" y="815.50"></text></g><g><title>mmap_region (75 samples, 0.02%)</title><rect x="42.3220%" y="725" width="0.0156%" height="15" fill="rgb(229,99,46)" fg:x="203276" fg:w="75"/><text x="42.5720%" y="735.50"></text></g><g><title>do_mmap (79 samples, 0.02%)</title><rect x="42.3214%" y="741" width="0.0164%" height="15" fill="rgb(225,56,46)" fg:x="203273" fg:w="79"/><text x="42.5714%" y="751.50"></text></g><g><title>vm_mmap (84 samples, 0.02%)</title><rect x="42.3212%" y="773" width="0.0175%" height="15" fill="rgb(227,94,5)" fg:x="203272" fg:w="84"/><text x="42.5712%" y="783.50"></text></g><g><title>vm_mmap_pgoff (83 samples, 0.02%)</title><rect x="42.3214%" y="757" width="0.0173%" height="15" fill="rgb(205,112,38)" fg:x="203273" fg:w="83"/><text x="42.5714%" y="767.50"></text></g><g><title>elf_map (126 samples, 0.03%)</title><rect x="42.3212%" y="789" width="0.0262%" height="15" fill="rgb(231,133,46)" fg:x="203272" fg:w="126"/><text x="42.5712%" y="799.50"></text></g><g><title>load_elf_interp.constprop.0 (173 samples, 0.04%)</title><rect x="42.3116%" y="805" width="0.0360%" height="15" fill="rgb(217,16,9)" fg:x="203226" fg:w="173"/><text x="42.5616%" y="815.50"></text></g><g><title>setup_arg_pages (81 samples, 0.02%)</title><rect x="42.3489%" y="805" width="0.0169%" height="15" fill="rgb(249,173,9)" fg:x="203405" fg:w="81"/><text x="42.5989%" y="815.50"></text></g><g><title>load_elf_binary (532 samples, 0.11%)</title><rect x="42.2585%" y="821" width="0.1108%" height="15" fill="rgb(205,163,53)" fg:x="202971" fg:w="532"/><text x="42.5085%" y="831.50"></text></g><g><title>__x64_sys_execve (536 samples, 0.11%)</title><rect x="42.2581%" y="917" width="0.1116%" height="15" fill="rgb(217,54,41)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (536 samples, 0.11%)</title><rect x="42.2581%" y="901" width="0.1116%" height="15" fill="rgb(228,216,12)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="911.50"></text></g><g><title>bprm_execve (536 samples, 0.11%)</title><rect x="42.2581%" y="885" width="0.1116%" height="15" fill="rgb(244,228,15)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="895.50"></text></g><g><title>bprm_execve.part.0 (536 samples, 0.11%)</title><rect x="42.2581%" y="869" width="0.1116%" height="15" fill="rgb(221,176,53)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="879.50"></text></g><g><title>exec_binprm (536 samples, 0.11%)</title><rect x="42.2581%" y="853" width="0.1116%" height="15" fill="rgb(205,94,34)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="863.50"></text></g><g><title>search_binary_handler (536 samples, 0.11%)</title><rect x="42.2581%" y="837" width="0.1116%" height="15" fill="rgb(213,110,48)" fg:x="202969" fg:w="536"/><text x="42.5081%" y="847.50"></text></g><g><title>finish_task_switch.isra.0 (53 samples, 0.01%)</title><rect x="42.3888%" y="805" width="0.0110%" height="15" fill="rgb(236,142,28)" fg:x="203597" fg:w="53"/><text x="42.6388%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (53 samples, 0.01%)</title><rect x="42.3888%" y="789" width="0.0110%" height="15" fill="rgb(225,135,29)" fg:x="203597" fg:w="53"/><text x="42.6388%" y="799.50"></text></g><g><title>x86_pmu_enable (53 samples, 0.01%)</title><rect x="42.3888%" y="773" width="0.0110%" height="15" fill="rgb(252,45,31)" fg:x="203597" fg:w="53"/><text x="42.6388%" y="783.50"></text></g><g><title>intel_pmu_enable_all (53 samples, 0.01%)</title><rect x="42.3888%" y="757" width="0.0110%" height="15" fill="rgb(211,187,50)" fg:x="203597" fg:w="53"/><text x="42.6388%" y="767.50"></text></g><g><title>native_write_msr (52 samples, 0.01%)</title><rect x="42.3891%" y="741" width="0.0108%" height="15" fill="rgb(229,109,7)" fg:x="203598" fg:w="52"/><text x="42.6391%" y="751.50"></text></g><g><title>__cond_resched (56 samples, 0.01%)</title><rect x="42.3886%" y="837" width="0.0117%" height="15" fill="rgb(251,131,51)" fg:x="203596" fg:w="56"/><text x="42.6386%" y="847.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="42.3886%" y="821" width="0.0117%" height="15" fill="rgb(251,180,35)" fg:x="203596" fg:w="56"/><text x="42.6386%" y="831.50"></text></g><g><title>exit_files (66 samples, 0.01%)</title><rect x="42.3882%" y="869" width="0.0137%" height="15" fill="rgb(211,46,32)" fg:x="203594" fg:w="66"/><text x="42.6382%" y="879.50"></text></g><g><title>put_files_struct (66 samples, 0.01%)</title><rect x="42.3882%" y="853" width="0.0137%" height="15" fill="rgb(248,123,17)" fg:x="203594" fg:w="66"/><text x="42.6382%" y="863.50"></text></g><g><title>free_pgtables (112 samples, 0.02%)</title><rect x="42.4059%" y="821" width="0.0233%" height="15" fill="rgb(227,141,18)" fg:x="203679" fg:w="112"/><text x="42.6559%" y="831.50"></text></g><g><title>remove_vma (59 samples, 0.01%)</title><rect x="42.4328%" y="821" width="0.0123%" height="15" fill="rgb(216,102,9)" fg:x="203808" fg:w="59"/><text x="42.6828%" y="831.50"></text></g><g><title>free_pages_and_swap_cache (124 samples, 0.03%)</title><rect x="42.4473%" y="805" width="0.0258%" height="15" fill="rgb(253,47,13)" fg:x="203878" fg:w="124"/><text x="42.6973%" y="815.50"></text></g><g><title>release_pages (120 samples, 0.02%)</title><rect x="42.4482%" y="789" width="0.0250%" height="15" fill="rgb(226,93,23)" fg:x="203882" fg:w="120"/><text x="42.6982%" y="799.50"></text></g><g><title>tlb_finish_mmu (167 samples, 0.03%)</title><rect x="42.4451%" y="821" width="0.0348%" height="15" fill="rgb(247,104,17)" fg:x="203867" fg:w="167"/><text x="42.6951%" y="831.50"></text></g><g><title>page_remove_file_rmap (65 samples, 0.01%)</title><rect x="42.5506%" y="725" width="0.0135%" height="15" fill="rgb(233,203,26)" fg:x="204374" fg:w="65"/><text x="42.8006%" y="735.50"></text></g><g><title>page_remove_rmap (134 samples, 0.03%)</title><rect x="42.5406%" y="741" width="0.0279%" height="15" fill="rgb(244,98,49)" fg:x="204326" fg:w="134"/><text x="42.7906%" y="751.50"></text></g><g><title>zap_pmd_range.isra.0 (416 samples, 0.09%)</title><rect x="42.4869%" y="773" width="0.0866%" height="15" fill="rgb(235,134,22)" fg:x="204068" fg:w="416"/><text x="42.7369%" y="783.50"></text></g><g><title>zap_pte_range (393 samples, 0.08%)</title><rect x="42.4917%" y="757" width="0.0818%" height="15" fill="rgb(221,70,32)" fg:x="204091" fg:w="393"/><text x="42.7417%" y="767.50"></text></g><g><title>unmap_vmas (451 samples, 0.09%)</title><rect x="42.4802%" y="821" width="0.0939%" height="15" fill="rgb(238,15,50)" fg:x="204036" fg:w="451"/><text x="42.7302%" y="831.50"></text></g><g><title>unmap_single_vma (444 samples, 0.09%)</title><rect x="42.4817%" y="805" width="0.0924%" height="15" fill="rgb(215,221,48)" fg:x="204043" fg:w="444"/><text x="42.7317%" y="815.50"></text></g><g><title>unmap_page_range (434 samples, 0.09%)</title><rect x="42.4838%" y="789" width="0.0904%" height="15" fill="rgb(236,73,3)" fg:x="204053" fg:w="434"/><text x="42.7338%" y="799.50"></text></g><g><title>exit_mmap (814 samples, 0.17%)</title><rect x="42.4049%" y="837" width="0.1695%" height="15" fill="rgb(250,107,11)" fg:x="203674" fg:w="814"/><text x="42.6549%" y="847.50"></text></g><g><title>exit_mm (820 samples, 0.17%)</title><rect x="42.4042%" y="869" width="0.1707%" height="15" fill="rgb(242,39,14)" fg:x="203671" fg:w="820"/><text x="42.6542%" y="879.50"></text></g><g><title>mmput (818 samples, 0.17%)</title><rect x="42.4047%" y="853" width="0.1703%" height="15" fill="rgb(248,164,37)" fg:x="203673" fg:w="818"/><text x="42.6547%" y="863.50"></text></g><g><title>__fput (137 samples, 0.03%)</title><rect x="42.5773%" y="837" width="0.0285%" height="15" fill="rgb(217,60,12)" fg:x="204502" fg:w="137"/><text x="42.8273%" y="847.50"></text></g><g><title>do_exit (1,134 samples, 0.24%)</title><rect x="42.3701%" y="885" width="0.2361%" height="15" fill="rgb(240,125,29)" fg:x="203507" fg:w="1134"/><text x="42.6201%" y="895.50"></text></g><g><title>task_work_run (143 samples, 0.03%)</title><rect x="42.5764%" y="869" width="0.0298%" height="15" fill="rgb(208,207,28)" fg:x="204498" fg:w="143"/><text x="42.8264%" y="879.50"></text></g><g><title>____fput (139 samples, 0.03%)</title><rect x="42.5773%" y="853" width="0.0289%" height="15" fill="rgb(209,159,27)" fg:x="204502" fg:w="139"/><text x="42.8273%" y="863.50"></text></g><g><title>__x64_sys_exit_group (1,138 samples, 0.24%)</title><rect x="42.3697%" y="917" width="0.2369%" height="15" fill="rgb(251,176,53)" fg:x="203505" fg:w="1138"/><text x="42.6197%" y="927.50"></text></g><g><title>do_group_exit (1,138 samples, 0.24%)</title><rect x="42.3697%" y="901" width="0.2369%" height="15" fill="rgb(211,85,7)" fg:x="203505" fg:w="1138"/><text x="42.6197%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,678 samples, 0.35%)</title><rect x="42.2577%" y="949" width="0.3494%" height="15" fill="rgb(216,64,54)" fg:x="202967" fg:w="1678"/><text x="42.5077%" y="959.50"></text></g><g><title>do_syscall_64 (1,676 samples, 0.35%)</title><rect x="42.2581%" y="933" width="0.3489%" height="15" fill="rgb(217,54,24)" fg:x="202969" fg:w="1676"/><text x="42.5081%" y="943.50"></text></g><g><title>sed (9,681 samples, 2.02%)</title><rect x="40.5929%" y="965" width="2.0156%" height="15" fill="rgb(208,206,53)" fg:x="194971" fg:w="9681"/><text x="40.8429%" y="975.50">s..</text></g><g><title>[anon] (512 samples, 0.11%)</title><rect x="42.6135%" y="949" width="0.1066%" height="15" fill="rgb(251,74,39)" fg:x="204676" fg:w="512"/><text x="42.8635%" y="959.50"></text></g><g><title>btrfs_real_readdir (60 samples, 0.01%)</title><rect x="42.7557%" y="837" width="0.0125%" height="15" fill="rgb(226,47,5)" fg:x="205359" fg:w="60"/><text x="43.0057%" y="847.50"></text></g><g><title>__GI___readdir64 (74 samples, 0.02%)</title><rect x="42.7542%" y="933" width="0.0154%" height="15" fill="rgb(234,111,33)" fg:x="205352" fg:w="74"/><text x="43.0042%" y="943.50"></text></g><g><title>__GI___getdents64 (72 samples, 0.01%)</title><rect x="42.7546%" y="917" width="0.0150%" height="15" fill="rgb(251,14,10)" fg:x="205354" fg:w="72"/><text x="43.0046%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="42.7546%" y="901" width="0.0150%" height="15" fill="rgb(232,43,0)" fg:x="205354" fg:w="72"/><text x="43.0046%" y="911.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="42.7546%" y="885" width="0.0150%" height="15" fill="rgb(222,68,43)" fg:x="205354" fg:w="72"/><text x="43.0046%" y="895.50"></text></g><g><title>__x64_sys_getdents64 (72 samples, 0.01%)</title><rect x="42.7546%" y="869" width="0.0150%" height="15" fill="rgb(217,24,23)" fg:x="205354" fg:w="72"/><text x="43.0046%" y="879.50"></text></g><g><title>iterate_dir (70 samples, 0.01%)</title><rect x="42.7551%" y="853" width="0.0146%" height="15" fill="rgb(229,209,14)" fg:x="205356" fg:w="70"/><text x="43.0051%" y="863.50"></text></g><g><title>__GI_mkdir (56 samples, 0.01%)</title><rect x="42.7696%" y="933" width="0.0117%" height="15" fill="rgb(250,149,48)" fg:x="205426" fg:w="56"/><text x="43.0196%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (56 samples, 0.01%)</title><rect x="42.7696%" y="917" width="0.0117%" height="15" fill="rgb(210,120,37)" fg:x="205426" fg:w="56"/><text x="43.0196%" y="927.50"></text></g><g><title>do_syscall_64 (56 samples, 0.01%)</title><rect x="42.7696%" y="901" width="0.0117%" height="15" fill="rgb(210,21,8)" fg:x="205426" fg:w="56"/><text x="43.0196%" y="911.50"></text></g><g><title>unload_network_ops_symbols (55 samples, 0.01%)</title><rect x="42.7698%" y="885" width="0.0115%" height="15" fill="rgb(243,145,7)" fg:x="205427" fg:w="55"/><text x="43.0198%" y="895.50"></text></g><g><title>[[falcon_kal]] (49 samples, 0.01%)</title><rect x="42.7963%" y="789" width="0.0102%" height="15" fill="rgb(238,178,32)" fg:x="205554" fg:w="49"/><text x="43.0463%" y="799.50"></text></g><g><title>user_path_at_empty (49 samples, 0.01%)</title><rect x="42.7963%" y="773" width="0.0102%" height="15" fill="rgb(222,4,10)" fg:x="205554" fg:w="49"/><text x="43.0463%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (51 samples, 0.01%)</title><rect x="42.7961%" y="837" width="0.0106%" height="15" fill="rgb(239,7,37)" fg:x="205553" fg:w="51"/><text x="43.0461%" y="847.50"></text></g><g><title>fshook_syscalltable_pre_lchown (50 samples, 0.01%)</title><rect x="42.7963%" y="821" width="0.0104%" height="15" fill="rgb(215,31,37)" fg:x="205554" fg:w="50"/><text x="43.0463%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (50 samples, 0.01%)</title><rect x="42.7963%" y="805" width="0.0104%" height="15" fill="rgb(224,83,33)" fg:x="205554" fg:w="50"/><text x="43.0463%" y="815.50"></text></g><g><title>__GI_remove (122 samples, 0.03%)</title><rect x="42.7815%" y="933" width="0.0254%" height="15" fill="rgb(239,55,3)" fg:x="205483" fg:w="122"/><text x="43.0315%" y="943.50"></text></g><g><title>__unlink (84 samples, 0.02%)</title><rect x="42.7894%" y="917" width="0.0175%" height="15" fill="rgb(247,92,11)" fg:x="205521" fg:w="84"/><text x="43.0394%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.02%)</title><rect x="42.7896%" y="901" width="0.0173%" height="15" fill="rgb(239,200,7)" fg:x="205522" fg:w="83"/><text x="43.0396%" y="911.50"></text></g><g><title>do_syscall_64 (83 samples, 0.02%)</title><rect x="42.7896%" y="885" width="0.0173%" height="15" fill="rgb(227,115,8)" fg:x="205522" fg:w="83"/><text x="43.0396%" y="895.50"></text></g><g><title>unload_network_ops_symbols (82 samples, 0.02%)</title><rect x="42.7898%" y="869" width="0.0171%" height="15" fill="rgb(215,189,27)" fg:x="205523" fg:w="82"/><text x="43.0398%" y="879.50"></text></g><g><title>cshook_systemcalltable_pre_unlink (52 samples, 0.01%)</title><rect x="42.7961%" y="853" width="0.0108%" height="15" fill="rgb(251,216,39)" fg:x="205553" fg:w="52"/><text x="43.0461%" y="863.50"></text></g><g><title>do_rmdir (64 samples, 0.01%)</title><rect x="42.8086%" y="853" width="0.0133%" height="15" fill="rgb(207,29,47)" fg:x="205613" fg:w="64"/><text x="43.0586%" y="863.50"></text></g><g><title>vfs_rmdir (64 samples, 0.01%)</title><rect x="42.8086%" y="837" width="0.0133%" height="15" fill="rgb(210,71,34)" fg:x="205613" fg:w="64"/><text x="43.0586%" y="847.50"></text></g><g><title>__x64_sys_unlinkat (81 samples, 0.02%)</title><rect x="42.8086%" y="869" width="0.0169%" height="15" fill="rgb(253,217,51)" fg:x="205613" fg:w="81"/><text x="43.0586%" y="879.50"></text></g><g><title>__GI_unlinkat (87 samples, 0.02%)</title><rect x="42.8082%" y="933" width="0.0181%" height="15" fill="rgb(222,117,46)" fg:x="205611" fg:w="87"/><text x="43.0582%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.02%)</title><rect x="42.8082%" y="917" width="0.0181%" height="15" fill="rgb(226,132,6)" fg:x="205611" fg:w="87"/><text x="43.0582%" y="927.50"></text></g><g><title>do_syscall_64 (87 samples, 0.02%)</title><rect x="42.8082%" y="901" width="0.0181%" height="15" fill="rgb(254,145,51)" fg:x="205611" fg:w="87"/><text x="43.0582%" y="911.50"></text></g><g><title>unload_network_ops_symbols (86 samples, 0.02%)</title><rect x="42.8084%" y="885" width="0.0179%" height="15" fill="rgb(231,199,27)" fg:x="205612" fg:w="86"/><text x="43.0584%" y="895.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (96 samples, 0.02%)</title><rect x="42.8325%" y="789" width="0.0200%" height="15" fill="rgb(245,158,14)" fg:x="205728" fg:w="96"/><text x="43.0825%" y="799.50"></text></g><g><title>walk_component (55 samples, 0.01%)</title><rect x="42.8411%" y="773" width="0.0115%" height="15" fill="rgb(240,113,14)" fg:x="205769" fg:w="55"/><text x="43.0911%" y="783.50"></text></g><g><title>path_lookupat (122 samples, 0.03%)</title><rect x="42.8323%" y="805" width="0.0254%" height="15" fill="rgb(210,20,13)" fg:x="205727" fg:w="122"/><text x="43.0823%" y="815.50"></text></g><g><title>filename_lookup (125 samples, 0.03%)</title><rect x="42.8319%" y="821" width="0.0260%" height="15" fill="rgb(241,144,13)" fg:x="205725" fg:w="125"/><text x="43.0819%" y="831.50"></text></g><g><title>user_path_at_empty (152 samples, 0.03%)</title><rect x="42.8319%" y="837" width="0.0316%" height="15" fill="rgb(235,43,34)" fg:x="205725" fg:w="152"/><text x="43.0819%" y="847.50"></text></g><g><title>__do_sys_newlstat (174 samples, 0.04%)</title><rect x="42.8277%" y="869" width="0.0362%" height="15" fill="rgb(208,36,20)" fg:x="205705" fg:w="174"/><text x="43.0777%" y="879.50"></text></g><g><title>vfs_statx (163 samples, 0.03%)</title><rect x="42.8300%" y="853" width="0.0339%" height="15" fill="rgb(239,204,10)" fg:x="205716" fg:w="163"/><text x="43.0800%" y="863.50"></text></g><g><title>__x64_sys_newlstat (175 samples, 0.04%)</title><rect x="42.8277%" y="885" width="0.0364%" height="15" fill="rgb(217,84,43)" fg:x="205705" fg:w="175"/><text x="43.0777%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (183 samples, 0.04%)</title><rect x="42.8265%" y="917" width="0.0381%" height="15" fill="rgb(241,170,50)" fg:x="205699" fg:w="183"/><text x="43.0765%" y="927.50"></text></g><g><title>do_syscall_64 (182 samples, 0.04%)</title><rect x="42.8267%" y="901" width="0.0379%" height="15" fill="rgb(226,205,29)" fg:x="205700" fg:w="182"/><text x="43.0767%" y="911.50"></text></g><g><title>___lxstat64 (185 samples, 0.04%)</title><rect x="42.8263%" y="933" width="0.0385%" height="15" fill="rgb(233,113,1)" fg:x="205698" fg:w="185"/><text x="43.0763%" y="943.50"></text></g><g><title>user_path_at_empty (58 samples, 0.01%)</title><rect x="42.8673%" y="837" width="0.0121%" height="15" fill="rgb(253,98,13)" fg:x="205895" fg:w="58"/><text x="43.1173%" y="847.50"></text></g><g><title>__do_sys_newstat (73 samples, 0.02%)</title><rect x="42.8652%" y="869" width="0.0152%" height="15" fill="rgb(211,115,12)" fg:x="205885" fg:w="73"/><text x="43.1152%" y="879.50"></text></g><g><title>vfs_statx (69 samples, 0.01%)</title><rect x="42.8660%" y="853" width="0.0144%" height="15" fill="rgb(208,12,16)" fg:x="205889" fg:w="69"/><text x="43.1160%" y="863.50"></text></g><g><title>__x64_sys_newstat (75 samples, 0.02%)</title><rect x="42.8652%" y="885" width="0.0156%" height="15" fill="rgb(237,193,54)" fg:x="205885" fg:w="75"/><text x="43.1152%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.02%)</title><rect x="42.8650%" y="917" width="0.0160%" height="15" fill="rgb(243,22,42)" fg:x="205884" fg:w="77"/><text x="43.1150%" y="927.50"></text></g><g><title>do_syscall_64 (77 samples, 0.02%)</title><rect x="42.8650%" y="901" width="0.0160%" height="15" fill="rgb(233,151,36)" fg:x="205884" fg:w="77"/><text x="43.1150%" y="911.50"></text></g><g><title>___xstat64 (79 samples, 0.02%)</title><rect x="42.8648%" y="933" width="0.0164%" height="15" fill="rgb(237,57,45)" fg:x="205883" fg:w="79"/><text x="43.1148%" y="943.50"></text></g><g><title>do_filp_open (49 samples, 0.01%)</title><rect x="42.8894%" y="837" width="0.0102%" height="15" fill="rgb(221,88,17)" fg:x="206001" fg:w="49"/><text x="43.1394%" y="847.50"></text></g><g><title>path_openat (49 samples, 0.01%)</title><rect x="42.8894%" y="821" width="0.0102%" height="15" fill="rgb(230,79,15)" fg:x="206001" fg:w="49"/><text x="43.1394%" y="831.50"></text></g><g><title>__x64_sys_openat (50 samples, 0.01%)</title><rect x="42.8894%" y="869" width="0.0104%" height="15" fill="rgb(213,57,13)" fg:x="206001" fg:w="50"/><text x="43.1394%" y="879.50"></text></g><g><title>do_sys_openat2 (50 samples, 0.01%)</title><rect x="42.8894%" y="853" width="0.0104%" height="15" fill="rgb(222,116,39)" fg:x="206001" fg:w="50"/><text x="43.1394%" y="863.50"></text></g><g><title>__libc_open64 (65 samples, 0.01%)</title><rect x="42.8891%" y="933" width="0.0135%" height="15" fill="rgb(245,107,2)" fg:x="206000" fg:w="65"/><text x="43.1391%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="42.8891%" y="917" width="0.0135%" height="15" fill="rgb(238,1,10)" fg:x="206000" fg:w="65"/><text x="43.1391%" y="927.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="42.8891%" y="901" width="0.0135%" height="15" fill="rgb(249,4,48)" fg:x="206000" fg:w="65"/><text x="43.1391%" y="911.50"></text></g><g><title>unload_network_ops_symbols (65 samples, 0.01%)</title><rect x="42.8891%" y="885" width="0.0135%" height="15" fill="rgb(223,151,18)" fg:x="206000" fg:w="65"/><text x="43.1391%" y="895.50"></text></g><g><title>cshook_systemcalltable_post_openat (59 samples, 0.01%)</title><rect x="42.9164%" y="853" width="0.0123%" height="15" fill="rgb(227,65,43)" fg:x="206131" fg:w="59"/><text x="43.1664%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (110 samples, 0.02%)</title><rect x="42.9062%" y="901" width="0.0229%" height="15" fill="rgb(218,40,45)" fg:x="206082" fg:w="110"/><text x="43.1562%" y="911.50"></text></g><g><title>do_syscall_64 (110 samples, 0.02%)</title><rect x="42.9062%" y="885" width="0.0229%" height="15" fill="rgb(252,121,31)" fg:x="206082" fg:w="110"/><text x="43.1562%" y="895.50"></text></g><g><title>unload_network_ops_symbols (108 samples, 0.02%)</title><rect x="42.9066%" y="869" width="0.0225%" height="15" fill="rgb(219,158,43)" fg:x="206084" fg:w="108"/><text x="43.1566%" y="879.50"></text></g><g><title>__GI___open64_nocancel (112 samples, 0.02%)</title><rect x="42.9062%" y="917" width="0.0233%" height="15" fill="rgb(231,162,42)" fg:x="206082" fg:w="112"/><text x="43.1562%" y="927.50"></text></g><g><title>__opendir (129 samples, 0.03%)</title><rect x="42.9062%" y="933" width="0.0269%" height="15" fill="rgb(217,179,25)" fg:x="206082" fg:w="129"/><text x="43.1562%" y="943.50"></text></g><g><title>jni_NewObjectV (85 samples, 0.02%)</title><rect x="42.9462%" y="933" width="0.0177%" height="15" fill="rgb(206,212,31)" fg:x="206274" fg:w="85"/><text x="43.1962%" y="943.50"></text></g><g><title>[libunix_jni.so] (1,221 samples, 0.25%)</title><rect x="42.7203%" y="949" width="0.2542%" height="15" fill="rgb(235,144,12)" fg:x="205189" fg:w="1221"/><text x="42.9703%" y="959.50"></text></g><g><title>InstanceKlass::link_class_impl (68 samples, 0.01%)</title><rect x="50.2800%" y="901" width="0.0142%" height="15" fill="rgb(213,51,10)" fg:x="241499" fg:w="68"/><text x="50.5300%" y="911.50"></text></g><g><title>InterpreterRuntime::_new (122 samples, 0.03%)</title><rect x="50.2694%" y="933" width="0.0254%" height="15" fill="rgb(231,145,14)" fg:x="241448" fg:w="122"/><text x="50.5194%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (72 samples, 0.01%)</title><rect x="50.2798%" y="917" width="0.0150%" height="15" fill="rgb(235,15,28)" fg:x="241498" fg:w="72"/><text x="50.5298%" y="927.50"></text></g><g><title>InstanceKlass::allocate_objArray (74 samples, 0.02%)</title><rect x="50.3011%" y="917" width="0.0154%" height="15" fill="rgb(237,206,10)" fg:x="241600" fg:w="74"/><text x="50.5511%" y="927.50"></text></g><g><title>InterpreterRuntime::anewarray (112 samples, 0.02%)</title><rect x="50.2948%" y="933" width="0.0233%" height="15" fill="rgb(236,227,27)" fg:x="241570" fg:w="112"/><text x="50.5448%" y="943.50"></text></g><g><title>TieredThresholdPolicy::call_event (49 samples, 0.01%)</title><rect x="50.3556%" y="869" width="0.0102%" height="15" fill="rgb(246,83,35)" fg:x="241862" fg:w="49"/><text x="50.6056%" y="879.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.01%)</title><rect x="50.3702%" y="645" width="0.0104%" height="15" fill="rgb(220,136,24)" fg:x="241932" fg:w="50"/><text x="50.6202%" y="655.50"></text></g><g><title>do_futex (50 samples, 0.01%)</title><rect x="50.3702%" y="629" width="0.0104%" height="15" fill="rgb(217,3,25)" fg:x="241932" fg:w="50"/><text x="50.6202%" y="639.50"></text></g><g><title>futex_wait (50 samples, 0.01%)</title><rect x="50.3702%" y="613" width="0.0104%" height="15" fill="rgb(239,24,14)" fg:x="241932" fg:w="50"/><text x="50.6202%" y="623.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.01%)</title><rect x="50.3702%" y="597" width="0.0104%" height="15" fill="rgb(244,16,53)" fg:x="241932" fg:w="50"/><text x="50.6202%" y="607.50"></text></g><g><title>schedule (49 samples, 0.01%)</title><rect x="50.3704%" y="581" width="0.0102%" height="15" fill="rgb(208,175,44)" fg:x="241933" fg:w="49"/><text x="50.6204%" y="591.50"></text></g><g><title>__schedule (49 samples, 0.01%)</title><rect x="50.3704%" y="565" width="0.0102%" height="15" fill="rgb(252,18,48)" fg:x="241933" fg:w="49"/><text x="50.6204%" y="575.50"></text></g><g><title>Monitor::ILock (55 samples, 0.01%)</title><rect x="50.3693%" y="789" width="0.0115%" height="15" fill="rgb(234,199,32)" fg:x="241928" fg:w="55"/><text x="50.6193%" y="799.50"></text></g><g><title>os::PlatformEvent::park (54 samples, 0.01%)</title><rect x="50.3696%" y="773" width="0.0112%" height="15" fill="rgb(225,77,54)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="783.50"></text></g><g><title>___pthread_cond_wait (54 samples, 0.01%)</title><rect x="50.3696%" y="757" width="0.0112%" height="15" fill="rgb(225,42,25)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (54 samples, 0.01%)</title><rect x="50.3696%" y="741" width="0.0112%" height="15" fill="rgb(242,227,46)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="751.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (54 samples, 0.01%)</title><rect x="50.3696%" y="725" width="0.0112%" height="15" fill="rgb(246,197,35)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (54 samples, 0.01%)</title><rect x="50.3696%" y="709" width="0.0112%" height="15" fill="rgb(215,159,26)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (54 samples, 0.01%)</title><rect x="50.3696%" y="693" width="0.0112%" height="15" fill="rgb(212,194,50)" fg:x="241929" fg:w="54"/><text x="50.6196%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="50.3700%" y="677" width="0.0108%" height="15" fill="rgb(246,132,1)" fg:x="241931" fg:w="52"/><text x="50.6200%" y="687.50"></text></g><g><title>do_syscall_64 (52 samples, 0.01%)</title><rect x="50.3700%" y="661" width="0.0108%" height="15" fill="rgb(217,71,7)" fg:x="241931" fg:w="52"/><text x="50.6200%" y="671.50"></text></g><g><title>Monitor::lock (57 samples, 0.01%)</title><rect x="50.3691%" y="805" width="0.0119%" height="15" fill="rgb(252,59,32)" fg:x="241927" fg:w="57"/><text x="50.6191%" y="815.50"></text></g><g><title>___pthread_cond_signal (71 samples, 0.01%)</title><rect x="50.3816%" y="805" width="0.0148%" height="15" fill="rgb(253,204,25)" fg:x="241987" fg:w="71"/><text x="50.6316%" y="815.50"></text></g><g><title>futex_wake (71 samples, 0.01%)</title><rect x="50.3816%" y="789" width="0.0148%" height="15" fill="rgb(232,21,16)" fg:x="241987" fg:w="71"/><text x="50.6316%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="50.3820%" y="773" width="0.0144%" height="15" fill="rgb(248,90,29)" fg:x="241989" fg:w="69"/><text x="50.6320%" y="783.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="50.3820%" y="757" width="0.0144%" height="15" fill="rgb(249,223,7)" fg:x="241989" fg:w="69"/><text x="50.6320%" y="767.50"></text></g><g><title>syscall_exit_to_user_mode (59 samples, 0.01%)</title><rect x="50.3841%" y="741" width="0.0123%" height="15" fill="rgb(231,119,42)" fg:x="241999" fg:w="59"/><text x="50.6341%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (59 samples, 0.01%)</title><rect x="50.3841%" y="725" width="0.0123%" height="15" fill="rgb(215,41,35)" fg:x="241999" fg:w="59"/><text x="50.6341%" y="735.50"></text></g><g><title>exit_to_user_mode_loop (59 samples, 0.01%)</title><rect x="50.3841%" y="709" width="0.0123%" height="15" fill="rgb(220,44,45)" fg:x="241999" fg:w="59"/><text x="50.6341%" y="719.50"></text></g><g><title>schedule (58 samples, 0.01%)</title><rect x="50.3843%" y="693" width="0.0121%" height="15" fill="rgb(253,197,36)" fg:x="242000" fg:w="58"/><text x="50.6343%" y="703.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="50.3845%" y="677" width="0.0119%" height="15" fill="rgb(245,225,54)" fg:x="242001" fg:w="57"/><text x="50.6345%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (57 samples, 0.01%)</title><rect x="50.3845%" y="661" width="0.0119%" height="15" fill="rgb(239,94,37)" fg:x="242001" fg:w="57"/><text x="50.6345%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (56 samples, 0.01%)</title><rect x="50.3848%" y="645" width="0.0117%" height="15" fill="rgb(242,217,10)" fg:x="242002" fg:w="56"/><text x="50.6348%" y="655.50"></text></g><g><title>x86_pmu_enable (56 samples, 0.01%)</title><rect x="50.3848%" y="629" width="0.0117%" height="15" fill="rgb(250,193,7)" fg:x="242002" fg:w="56"/><text x="50.6348%" y="639.50"></text></g><g><title>intel_pmu_enable_all (55 samples, 0.01%)</title><rect x="50.3850%" y="613" width="0.0115%" height="15" fill="rgb(230,104,19)" fg:x="242003" fg:w="55"/><text x="50.6350%" y="623.50"></text></g><g><title>native_write_msr (53 samples, 0.01%)</title><rect x="50.3854%" y="597" width="0.0110%" height="15" fill="rgb(230,181,4)" fg:x="242005" fg:w="53"/><text x="50.6354%" y="607.50"></text></g><g><title>CompileBroker::compile_method_base (143 samples, 0.03%)</title><rect x="50.3671%" y="821" width="0.0298%" height="15" fill="rgb(216,219,49)" fg:x="241917" fg:w="143"/><text x="50.6171%" y="831.50"></text></g><g><title>CompileBroker::compile_method (153 samples, 0.03%)</title><rect x="50.3664%" y="837" width="0.0319%" height="15" fill="rgb(254,144,0)" fg:x="241914" fg:w="153"/><text x="50.6164%" y="847.50"></text></g><g><title>TieredThresholdPolicy::compile (157 samples, 0.03%)</title><rect x="50.3658%" y="869" width="0.0327%" height="15" fill="rgb(205,209,38)" fg:x="241911" fg:w="157"/><text x="50.6158%" y="879.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (155 samples, 0.03%)</title><rect x="50.3662%" y="853" width="0.0323%" height="15" fill="rgb(240,21,42)" fg:x="241913" fg:w="155"/><text x="50.6162%" y="863.50"></text></g><g><title>TieredThresholdPolicy::event (284 samples, 0.06%)</title><rect x="50.3402%" y="901" width="0.0591%" height="15" fill="rgb(241,132,3)" fg:x="241788" fg:w="284"/><text x="50.5902%" y="911.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (238 samples, 0.05%)</title><rect x="50.3498%" y="885" width="0.0496%" height="15" fill="rgb(225,14,2)" fg:x="241834" fg:w="238"/><text x="50.5998%" y="895.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (329 samples, 0.07%)</title><rect x="50.3317%" y="933" width="0.0685%" height="15" fill="rgb(210,141,35)" fg:x="241747" fg:w="329"/><text x="50.5817%" y="943.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (329 samples, 0.07%)</title><rect x="50.3317%" y="917" width="0.0685%" height="15" fill="rgb(251,14,44)" fg:x="241747" fg:w="329"/><text x="50.5817%" y="927.50"></text></g><g><title>InterpreterRuntime::ldc (97 samples, 0.02%)</title><rect x="50.4002%" y="933" width="0.0202%" height="15" fill="rgb(247,48,18)" fg:x="242076" fg:w="97"/><text x="50.6502%" y="943.50"></text></g><g><title>ObjectMonitor::enter (63 samples, 0.01%)</title><rect x="50.4212%" y="917" width="0.0131%" height="15" fill="rgb(225,0,40)" fg:x="242177" fg:w="63"/><text x="50.6712%" y="927.50"></text></g><g><title>os::PlatformEvent::park (59 samples, 0.01%)</title><rect x="50.4220%" y="901" width="0.0123%" height="15" fill="rgb(221,31,33)" fg:x="242181" fg:w="59"/><text x="50.6720%" y="911.50"></text></g><g><title>Monitor::IWait (50 samples, 0.01%)</title><rect x="50.4351%" y="853" width="0.0104%" height="15" fill="rgb(237,42,40)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="863.50"></text></g><g><title>os::PlatformEvent::park (50 samples, 0.01%)</title><rect x="50.4351%" y="837" width="0.0104%" height="15" fill="rgb(233,51,29)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="847.50"></text></g><g><title>___pthread_cond_wait (50 samples, 0.01%)</title><rect x="50.4351%" y="821" width="0.0104%" height="15" fill="rgb(226,58,20)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (50 samples, 0.01%)</title><rect x="50.4351%" y="805" width="0.0104%" height="15" fill="rgb(208,98,7)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (50 samples, 0.01%)</title><rect x="50.4351%" y="789" width="0.0104%" height="15" fill="rgb(228,143,44)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="799.50"></text></g><g><title>__futex_abstimed_wait_common (50 samples, 0.01%)</title><rect x="50.4351%" y="773" width="0.0104%" height="15" fill="rgb(246,55,38)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common64 (50 samples, 0.01%)</title><rect x="50.4351%" y="757" width="0.0104%" height="15" fill="rgb(247,87,16)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="50.4351%" y="741" width="0.0104%" height="15" fill="rgb(234,129,42)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="751.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="50.4351%" y="725" width="0.0104%" height="15" fill="rgb(220,82,16)" fg:x="242244" fg:w="50"/><text x="50.6851%" y="735.50"></text></g><g><title>Monitor::wait (65 samples, 0.01%)</title><rect x="50.4351%" y="869" width="0.0135%" height="15" fill="rgb(211,88,4)" fg:x="242244" fg:w="65"/><text x="50.6851%" y="879.50"></text></g><g><title>InterpreterRuntime::monitorenter (143 samples, 0.03%)</title><rect x="50.4204%" y="933" width="0.0298%" height="15" fill="rgb(248,151,21)" fg:x="242173" fg:w="143"/><text x="50.6704%" y="943.50"></text></g><g><title>ObjectSynchronizer::fast_enter (76 samples, 0.02%)</title><rect x="50.4343%" y="917" width="0.0158%" height="15" fill="rgb(238,163,6)" fg:x="242240" fg:w="76"/><text x="50.6843%" y="927.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (75 samples, 0.02%)</title><rect x="50.4345%" y="901" width="0.0156%" height="15" fill="rgb(209,183,11)" fg:x="242241" fg:w="75"/><text x="50.6845%" y="911.50"></text></g><g><title>VMThread::execute (75 samples, 0.02%)</title><rect x="50.4345%" y="885" width="0.0156%" height="15" fill="rgb(219,37,20)" fg:x="242241" fg:w="75"/><text x="50.6845%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (61 samples, 0.01%)</title><rect x="50.4922%" y="885" width="0.0127%" height="15" fill="rgb(210,158,4)" fg:x="242518" fg:w="61"/><text x="50.7422%" y="895.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (56 samples, 0.01%)</title><rect x="50.5049%" y="885" width="0.0117%" height="15" fill="rgb(221,167,53)" fg:x="242579" fg:w="56"/><text x="50.7549%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (55 samples, 0.01%)</title><rect x="50.5168%" y="853" width="0.0115%" height="15" fill="rgb(237,151,45)" fg:x="242636" fg:w="55"/><text x="50.7668%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (57 samples, 0.01%)</title><rect x="50.5168%" y="869" width="0.0119%" height="15" fill="rgb(231,39,3)" fg:x="242636" fg:w="57"/><text x="50.7668%" y="879.50"></text></g><g><title>LinkResolver::resolve_static_call (79 samples, 0.02%)</title><rect x="50.5165%" y="885" width="0.0164%" height="15" fill="rgb(212,167,28)" fg:x="242635" fg:w="79"/><text x="50.7665%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (257 samples, 0.05%)</title><rect x="50.4811%" y="901" width="0.0535%" height="15" fill="rgb(232,178,8)" fg:x="242465" fg:w="257"/><text x="50.7311%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (333 samples, 0.07%)</title><rect x="50.4703%" y="917" width="0.0693%" height="15" fill="rgb(225,151,20)" fg:x="242413" fg:w="333"/><text x="50.7203%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (429 samples, 0.09%)</title><rect x="50.4618%" y="933" width="0.0893%" height="15" fill="rgb(238,3,37)" fg:x="242372" fg:w="429"/><text x="50.7118%" y="943.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (55 samples, 0.01%)</title><rect x="50.5397%" y="917" width="0.0115%" height="15" fill="rgb(251,147,42)" fg:x="242746" fg:w="55"/><text x="50.7897%" y="927.50"></text></g><g><title>LinkResolver::resolve_invoke (53 samples, 0.01%)</title><rect x="50.5401%" y="901" width="0.0110%" height="15" fill="rgb(208,173,10)" fg:x="242748" fg:w="53"/><text x="50.7901%" y="911.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (53 samples, 0.01%)</title><rect x="50.5401%" y="885" width="0.0110%" height="15" fill="rgb(246,225,4)" fg:x="242748" fg:w="53"/><text x="50.7901%" y="895.50"></text></g><g><title>JVM_Clone (55 samples, 0.01%)</title><rect x="50.5609%" y="933" width="0.0115%" height="15" fill="rgb(248,102,6)" fg:x="242848" fg:w="55"/><text x="50.8109%" y="943.50"></text></g><g><title>JVM_GetClassDeclaredMethods (49 samples, 0.01%)</title><rect x="50.5921%" y="933" width="0.0102%" height="15" fill="rgb(232,6,21)" fg:x="242998" fg:w="49"/><text x="50.8421%" y="943.50"></text></g><g><title>get_class_declared_methods_helper (49 samples, 0.01%)</title><rect x="50.5921%" y="917" width="0.0102%" height="15" fill="rgb(221,179,22)" fg:x="242998" fg:w="49"/><text x="50.8421%" y="927.50"></text></g><g><title>__schedule (49 samples, 0.01%)</title><rect x="50.6067%" y="629" width="0.0102%" height="15" fill="rgb(252,50,20)" fg:x="243068" fg:w="49"/><text x="50.8567%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (49 samples, 0.01%)</title><rect x="50.6067%" y="613" width="0.0102%" height="15" fill="rgb(222,56,38)" fg:x="243068" fg:w="49"/><text x="50.8567%" y="623.50"></text></g><g><title>Monitor::IWait (51 samples, 0.01%)</title><rect x="50.6065%" y="853" width="0.0106%" height="15" fill="rgb(206,193,29)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="863.50"></text></g><g><title>os::PlatformEvent::park (51 samples, 0.01%)</title><rect x="50.6065%" y="837" width="0.0106%" height="15" fill="rgb(239,192,45)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="847.50"></text></g><g><title>___pthread_cond_wait (51 samples, 0.01%)</title><rect x="50.6065%" y="821" width="0.0106%" height="15" fill="rgb(254,18,36)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="831.50"></text></g><g><title>__pthread_cond_wait_common (51 samples, 0.01%)</title><rect x="50.6065%" y="805" width="0.0106%" height="15" fill="rgb(221,127,11)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (51 samples, 0.01%)</title><rect x="50.6065%" y="789" width="0.0106%" height="15" fill="rgb(234,146,35)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="799.50"></text></g><g><title>__futex_abstimed_wait_common (51 samples, 0.01%)</title><rect x="50.6065%" y="773" width="0.0106%" height="15" fill="rgb(254,201,37)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common64 (51 samples, 0.01%)</title><rect x="50.6065%" y="757" width="0.0106%" height="15" fill="rgb(211,202,23)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="50.6065%" y="741" width="0.0106%" height="15" fill="rgb(237,91,2)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="751.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="50.6065%" y="725" width="0.0106%" height="15" fill="rgb(226,228,36)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="735.50"></text></g><g><title>__x64_sys_futex (51 samples, 0.01%)</title><rect x="50.6065%" y="709" width="0.0106%" height="15" fill="rgb(213,63,50)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="719.50"></text></g><g><title>do_futex (51 samples, 0.01%)</title><rect x="50.6065%" y="693" width="0.0106%" height="15" fill="rgb(235,194,19)" fg:x="243067" fg:w="51"/><text x="50.8565%" y="703.50"></text></g><g><title>futex_wait (50 samples, 0.01%)</title><rect x="50.6067%" y="677" width="0.0104%" height="15" fill="rgb(207,204,18)" fg:x="243068" fg:w="50"/><text x="50.8567%" y="687.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.01%)</title><rect x="50.6067%" y="661" width="0.0104%" height="15" fill="rgb(248,8,7)" fg:x="243068" fg:w="50"/><text x="50.8567%" y="671.50"></text></g><g><title>schedule (50 samples, 0.01%)</title><rect x="50.6067%" y="645" width="0.0104%" height="15" fill="rgb(223,145,47)" fg:x="243068" fg:w="50"/><text x="50.8567%" y="655.50"></text></g><g><title>Monitor::wait (53 samples, 0.01%)</title><rect x="50.6063%" y="869" width="0.0110%" height="15" fill="rgb(228,84,11)" fg:x="243066" fg:w="53"/><text x="50.8563%" y="879.50"></text></g><g><title>VMThread::execute (64 samples, 0.01%)</title><rect x="50.6059%" y="885" width="0.0133%" height="15" fill="rgb(218,76,45)" fg:x="243064" fg:w="64"/><text x="50.8559%" y="895.50"></text></g><g><title>BiasedLocking::revoke_and_rebias (68 samples, 0.01%)</title><rect x="50.6057%" y="901" width="0.0142%" height="15" fill="rgb(223,80,15)" fg:x="243063" fg:w="68"/><text x="50.8557%" y="911.50"></text></g><g><title>ObjectSynchronizer::FastHashCode (80 samples, 0.02%)</title><rect x="50.6034%" y="917" width="0.0167%" height="15" fill="rgb(219,218,33)" fg:x="243052" fg:w="80"/><text x="50.8534%" y="927.50"></text></g><g><title>JVM_IHashCode (90 samples, 0.02%)</title><rect x="50.6027%" y="933" width="0.0187%" height="15" fill="rgb(208,51,11)" fg:x="243049" fg:w="90"/><text x="50.8527%" y="943.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (73 samples, 0.02%)</title><rect x="50.6261%" y="901" width="0.0152%" height="15" fill="rgb(229,165,39)" fg:x="243161" fg:w="73"/><text x="50.8761%" y="911.50"></text></g><g><title>JVM_InitStackTraceElementArray (86 samples, 0.02%)</title><rect x="50.6238%" y="933" width="0.0179%" height="15" fill="rgb(241,100,24)" fg:x="243150" fg:w="86"/><text x="50.8738%" y="943.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (85 samples, 0.02%)</title><rect x="50.6240%" y="917" width="0.0177%" height="15" fill="rgb(228,14,23)" fg:x="243151" fg:w="85"/><text x="50.8740%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="50.6612%" y="645" width="0.0144%" height="15" fill="rgb(247,116,52)" fg:x="243330" fg:w="69"/><text x="50.9112%" y="655.50"></text></g><g><title>x86_pmu_enable (68 samples, 0.01%)</title><rect x="50.6615%" y="629" width="0.0142%" height="15" fill="rgb(216,149,33)" fg:x="243331" fg:w="68"/><text x="50.9115%" y="639.50"></text></g><g><title>intel_pmu_enable_all (68 samples, 0.01%)</title><rect x="50.6615%" y="613" width="0.0142%" height="15" fill="rgb(238,142,29)" fg:x="243331" fg:w="68"/><text x="50.9115%" y="623.50"></text></g><g><title>native_write_msr (67 samples, 0.01%)</title><rect x="50.6617%" y="597" width="0.0139%" height="15" fill="rgb(224,83,40)" fg:x="243332" fg:w="67"/><text x="50.9117%" y="607.50"></text></g><g><title>futex_wait_queue_me (77 samples, 0.02%)</title><rect x="50.6598%" y="709" width="0.0160%" height="15" fill="rgb(234,165,11)" fg:x="243323" fg:w="77"/><text x="50.9098%" y="719.50"></text></g><g><title>schedule (77 samples, 0.02%)</title><rect x="50.6598%" y="693" width="0.0160%" height="15" fill="rgb(215,96,23)" fg:x="243323" fg:w="77"/><text x="50.9098%" y="703.50"></text></g><g><title>__schedule (76 samples, 0.02%)</title><rect x="50.6600%" y="677" width="0.0158%" height="15" fill="rgb(233,179,26)" fg:x="243324" fg:w="76"/><text x="50.9100%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (74 samples, 0.02%)</title><rect x="50.6604%" y="661" width="0.0154%" height="15" fill="rgb(225,129,33)" fg:x="243326" fg:w="74"/><text x="50.9104%" y="671.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.02%)</title><rect x="50.6598%" y="757" width="0.0164%" height="15" fill="rgb(237,49,13)" fg:x="243323" fg:w="79"/><text x="50.9098%" y="767.50"></text></g><g><title>do_futex (79 samples, 0.02%)</title><rect x="50.6598%" y="741" width="0.0164%" height="15" fill="rgb(211,3,31)" fg:x="243323" fg:w="79"/><text x="50.9098%" y="751.50"></text></g><g><title>futex_wait (79 samples, 0.02%)</title><rect x="50.6598%" y="725" width="0.0164%" height="15" fill="rgb(216,152,19)" fg:x="243323" fg:w="79"/><text x="50.9098%" y="735.50"></text></g><g><title>___pthread_cond_wait (82 samples, 0.02%)</title><rect x="50.6596%" y="869" width="0.0171%" height="15" fill="rgb(251,121,35)" fg:x="243322" fg:w="82"/><text x="50.9096%" y="879.50"></text></g><g><title>__pthread_cond_wait_common (82 samples, 0.02%)</title><rect x="50.6596%" y="853" width="0.0171%" height="15" fill="rgb(210,217,47)" fg:x="243322" fg:w="82"/><text x="50.9096%" y="863.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (82 samples, 0.02%)</title><rect x="50.6596%" y="837" width="0.0171%" height="15" fill="rgb(244,116,22)" fg:x="243322" fg:w="82"/><text x="50.9096%" y="847.50"></text></g><g><title>__futex_abstimed_wait_common (82 samples, 0.02%)</title><rect x="50.6596%" y="821" width="0.0171%" height="15" fill="rgb(228,17,21)" fg:x="243322" fg:w="82"/><text x="50.9096%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common64 (82 samples, 0.02%)</title><rect x="50.6596%" y="805" width="0.0171%" height="15" fill="rgb(240,149,34)" fg:x="243322" fg:w="82"/><text x="50.9096%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="50.6598%" y="789" width="0.0169%" height="15" fill="rgb(208,125,47)" fg:x="243323" fg:w="81"/><text x="50.9098%" y="799.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="50.6598%" y="773" width="0.0169%" height="15" fill="rgb(249,186,39)" fg:x="243323" fg:w="81"/><text x="50.9098%" y="783.50"></text></g><g><title>JVM_MonitorWait (103 samples, 0.02%)</title><rect x="50.6556%" y="933" width="0.0214%" height="15" fill="rgb(240,220,33)" fg:x="243303" fg:w="103"/><text x="50.9056%" y="943.50"></text></g><g><title>ObjectSynchronizer::wait (103 samples, 0.02%)</title><rect x="50.6556%" y="917" width="0.0214%" height="15" fill="rgb(243,110,23)" fg:x="243303" fg:w="103"/><text x="50.9056%" y="927.50"></text></g><g><title>ObjectMonitor::wait (100 samples, 0.02%)</title><rect x="50.6562%" y="901" width="0.0208%" height="15" fill="rgb(219,163,46)" fg:x="243306" fg:w="100"/><text x="50.9062%" y="911.50"></text></g><g><title>os::PlatformEvent::park (92 samples, 0.02%)</title><rect x="50.6579%" y="885" width="0.0192%" height="15" fill="rgb(216,126,30)" fg:x="243314" fg:w="92"/><text x="50.9079%" y="895.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (365 samples, 0.08%)</title><rect x="50.7018%" y="805" width="0.0760%" height="15" fill="rgb(208,139,11)" fg:x="243525" fg:w="365"/><text x="50.9518%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (334 samples, 0.07%)</title><rect x="50.7083%" y="789" width="0.0695%" height="15" fill="rgb(213,118,36)" fg:x="243556" fg:w="334"/><text x="50.9583%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool (377 samples, 0.08%)</title><rect x="50.7000%" y="821" width="0.0785%" height="15" fill="rgb(226,43,17)" fg:x="243516" fg:w="377"/><text x="50.9500%" y="831.50"></text></g><g><title>ClassFileParser::parse_method (79 samples, 0.02%)</title><rect x="50.7803%" y="805" width="0.0164%" height="15" fill="rgb(254,217,4)" fg:x="243902" fg:w="79"/><text x="51.0303%" y="815.50"></text></g><g><title>ClassFileParser::parse_methods (80 samples, 0.02%)</title><rect x="50.7803%" y="821" width="0.0167%" height="15" fill="rgb(210,134,47)" fg:x="243902" fg:w="80"/><text x="51.0303%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (483 samples, 0.10%)</title><rect x="50.6983%" y="837" width="0.1006%" height="15" fill="rgb(237,24,49)" fg:x="243508" fg:w="483"/><text x="50.9483%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (490 samples, 0.10%)</title><rect x="50.6975%" y="853" width="0.1020%" height="15" fill="rgb(251,39,46)" fg:x="243504" fg:w="490"/><text x="50.9475%" y="863.50"></text></g><g><title>ClassFileParser::fill_instance_klass (70 samples, 0.01%)</title><rect x="50.7995%" y="837" width="0.0146%" height="15" fill="rgb(251,220,3)" fg:x="243994" fg:w="70"/><text x="51.0495%" y="847.50"></text></g><g><title>ClassFileParser::create_instance_klass (76 samples, 0.02%)</title><rect x="50.7995%" y="853" width="0.0158%" height="15" fill="rgb(228,105,12)" fg:x="243994" fg:w="76"/><text x="51.0495%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (587 samples, 0.12%)</title><rect x="50.6973%" y="869" width="0.1222%" height="15" fill="rgb(215,196,1)" fg:x="243503" fg:w="587"/><text x="50.9473%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (630 samples, 0.13%)</title><rect x="50.6954%" y="917" width="0.1312%" height="15" fill="rgb(214,33,39)" fg:x="243494" fg:w="630"/><text x="50.9454%" y="927.50"></text></g><g><title>jvm_define_class_common (629 samples, 0.13%)</title><rect x="50.6956%" y="901" width="0.1310%" height="15" fill="rgb(220,19,52)" fg:x="243495" fg:w="629"/><text x="50.9456%" y="911.50"></text></g><g><title>SystemDictionary::resolve_from_stream (621 samples, 0.13%)</title><rect x="50.6973%" y="885" width="0.1293%" height="15" fill="rgb(221,78,38)" fg:x="243503" fg:w="621"/><text x="50.9473%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (651 samples, 0.14%)</title><rect x="50.6950%" y="933" width="0.1355%" height="15" fill="rgb(253,30,16)" fg:x="243492" fg:w="651"/><text x="50.9450%" y="943.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (53 samples, 0.01%)</title><rect x="50.8305%" y="933" width="0.0110%" height="15" fill="rgb(242,65,0)" fg:x="244143" fg:w="53"/><text x="51.0805%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (86 samples, 0.02%)</title><rect x="50.8821%" y="741" width="0.0179%" height="15" fill="rgb(235,201,12)" fg:x="244391" fg:w="86"/><text x="51.1321%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.02%)</title><rect x="50.8826%" y="725" width="0.0175%" height="15" fill="rgb(233,161,9)" fg:x="244393" fg:w="84"/><text x="51.1326%" y="735.50"></text></g><g><title>x86_pmu_enable (80 samples, 0.02%)</title><rect x="50.8834%" y="709" width="0.0167%" height="15" fill="rgb(241,207,41)" fg:x="244397" fg:w="80"/><text x="51.1334%" y="719.50"></text></g><g><title>intel_pmu_enable_all (80 samples, 0.02%)</title><rect x="50.8834%" y="693" width="0.0167%" height="15" fill="rgb(212,69,46)" fg:x="244397" fg:w="80"/><text x="51.1334%" y="703.50"></text></g><g><title>native_write_msr (80 samples, 0.02%)</title><rect x="50.8834%" y="677" width="0.0167%" height="15" fill="rgb(239,69,45)" fg:x="244397" fg:w="80"/><text x="51.1334%" y="687.50"></text></g><g><title>wait_for_completion_killable (91 samples, 0.02%)</title><rect x="50.8815%" y="821" width="0.0189%" height="15" fill="rgb(242,117,48)" fg:x="244388" fg:w="91"/><text x="51.1315%" y="831.50"></text></g><g><title>__wait_for_common (91 samples, 0.02%)</title><rect x="50.8815%" y="805" width="0.0189%" height="15" fill="rgb(228,41,36)" fg:x="244388" fg:w="91"/><text x="51.1315%" y="815.50"></text></g><g><title>schedule_timeout (91 samples, 0.02%)</title><rect x="50.8815%" y="789" width="0.0189%" height="15" fill="rgb(212,3,32)" fg:x="244388" fg:w="91"/><text x="51.1315%" y="799.50"></text></g><g><title>schedule (91 samples, 0.02%)</title><rect x="50.8815%" y="773" width="0.0189%" height="15" fill="rgb(233,41,49)" fg:x="244388" fg:w="91"/><text x="51.1315%" y="783.50"></text></g><g><title>__schedule (90 samples, 0.02%)</title><rect x="50.8817%" y="757" width="0.0187%" height="15" fill="rgb(252,170,49)" fg:x="244389" fg:w="90"/><text x="51.1317%" y="767.50"></text></g><g><title>kernel_clone (155 samples, 0.03%)</title><rect x="50.8692%" y="837" width="0.0323%" height="15" fill="rgb(229,53,26)" fg:x="244329" fg:w="155"/><text x="51.1192%" y="847.50"></text></g><g><title>__x64_sys_vfork (156 samples, 0.03%)</title><rect x="50.8692%" y="853" width="0.0325%" height="15" fill="rgb(217,157,12)" fg:x="244329" fg:w="156"/><text x="51.1192%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (159 samples, 0.03%)</title><rect x="50.8690%" y="885" width="0.0331%" height="15" fill="rgb(227,17,9)" fg:x="244328" fg:w="159"/><text x="51.1190%" y="895.50"></text></g><g><title>do_syscall_64 (159 samples, 0.03%)</title><rect x="50.8690%" y="869" width="0.0331%" height="15" fill="rgb(218,84,12)" fg:x="244328" fg:w="159"/><text x="51.1190%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (462 samples, 0.10%)</title><rect x="50.9071%" y="837" width="0.0962%" height="15" fill="rgb(212,79,24)" fg:x="244511" fg:w="462"/><text x="51.1571%" y="847.50"></text></g><g><title>x86_pmu_enable (449 samples, 0.09%)</title><rect x="50.9098%" y="821" width="0.0935%" height="15" fill="rgb(217,222,37)" fg:x="244524" fg:w="449"/><text x="51.1598%" y="831.50"></text></g><g><title>intel_pmu_enable_all (443 samples, 0.09%)</title><rect x="50.9111%" y="805" width="0.0922%" height="15" fill="rgb(246,208,8)" fg:x="244530" fg:w="443"/><text x="51.1611%" y="815.50"></text></g><g><title>native_write_msr (443 samples, 0.09%)</title><rect x="50.9111%" y="789" width="0.0922%" height="15" fill="rgb(244,133,10)" fg:x="244530" fg:w="443"/><text x="51.1611%" y="799.50"></text></g><g><title>finish_task_switch.isra.0 (483 samples, 0.10%)</title><rect x="50.9048%" y="853" width="0.1006%" height="15" fill="rgb(209,219,41)" fg:x="244500" fg:w="483"/><text x="51.1548%" y="863.50"></text></g><g><title>schedule_tail (495 samples, 0.10%)</title><rect x="50.9032%" y="869" width="0.1031%" height="15" fill="rgb(253,175,45)" fg:x="244492" fg:w="495"/><text x="51.1532%" y="879.50"></text></g><g><title>__libc_vfork (678 samples, 0.14%)</title><rect x="50.8674%" y="901" width="0.1412%" height="15" fill="rgb(235,100,37)" fg:x="244320" fg:w="678"/><text x="51.1174%" y="911.50"></text></g><g><title>ret_from_fork (511 samples, 0.11%)</title><rect x="50.9021%" y="885" width="0.1064%" height="15" fill="rgb(225,87,19)" fg:x="244487" fg:w="511"/><text x="51.1521%" y="895.50"></text></g><g><title>_ZdlPv (179 samples, 0.04%)</title><rect x="51.0385%" y="501" width="0.0373%" height="15" fill="rgb(217,152,17)" fg:x="245142" fg:w="179"/><text x="51.2885%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (178 samples, 0.04%)</title><rect x="51.0387%" y="485" width="0.0371%" height="15" fill="rgb(235,72,13)" fg:x="245143" fg:w="178"/><text x="51.2887%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (155 samples, 0.03%)</title><rect x="51.0435%" y="469" width="0.0323%" height="15" fill="rgb(233,140,18)" fg:x="245166" fg:w="155"/><text x="51.2935%" y="479.50"></text></g><g><title>_ZdlPv (182 samples, 0.04%)</title><rect x="51.0381%" y="517" width="0.0379%" height="15" fill="rgb(207,212,28)" fg:x="245140" fg:w="182"/><text x="51.2881%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (187 samples, 0.04%)</title><rect x="51.0373%" y="533" width="0.0389%" height="15" fill="rgb(220,130,25)" fg:x="245136" fg:w="187"/><text x="51.2873%" y="543.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (239 samples, 0.05%)</title><rect x="51.0364%" y="549" width="0.0498%" height="15" fill="rgb(205,55,34)" fg:x="245132" fg:w="239"/><text x="51.2864%" y="559.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (251 samples, 0.05%)</title><rect x="51.0341%" y="565" width="0.0523%" height="15" fill="rgb(237,54,35)" fg:x="245121" fg:w="251"/><text x="51.2841%" y="575.50"></text></g><g><title>_ZdlPv (64 samples, 0.01%)</title><rect x="51.0916%" y="485" width="0.0133%" height="15" fill="rgb(208,67,23)" fg:x="245397" fg:w="64"/><text x="51.3416%" y="495.50"></text></g><g><title>_ZdlPv (70 samples, 0.01%)</title><rect x="51.0912%" y="501" width="0.0146%" height="15" fill="rgb(206,207,50)" fg:x="245395" fg:w="70"/><text x="51.3412%" y="511.50"></text></g><g><title>_ZdlPv (104 samples, 0.02%)</title><rect x="51.0889%" y="517" width="0.0217%" height="15" fill="rgb(213,211,42)" fg:x="245384" fg:w="104"/><text x="51.3389%" y="527.50"></text></g><g><title>_ZdlPv (113 samples, 0.02%)</title><rect x="51.0876%" y="533" width="0.0235%" height="15" fill="rgb(252,197,50)" fg:x="245378" fg:w="113"/><text x="51.3376%" y="543.50"></text></g><g><title>_ZdlPv (122 samples, 0.03%)</title><rect x="51.0868%" y="549" width="0.0254%" height="15" fill="rgb(251,211,41)" fg:x="245374" fg:w="122"/><text x="51.3368%" y="559.50"></text></g><g><title>_ZdlPv (144 samples, 0.03%)</title><rect x="51.0864%" y="565" width="0.0300%" height="15" fill="rgb(229,211,5)" fg:x="245372" fg:w="144"/><text x="51.3364%" y="575.50"></text></g><g><title>_ZdlPv (49 samples, 0.01%)</title><rect x="51.1199%" y="533" width="0.0102%" height="15" fill="rgb(239,36,31)" fg:x="245533" fg:w="49"/><text x="51.3699%" y="543.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="51.1195%" y="549" width="0.0108%" height="15" fill="rgb(248,67,31)" fg:x="245531" fg:w="52"/><text x="51.3695%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (50 samples, 0.01%)</title><rect x="51.1897%" y="357" width="0.0104%" height="15" fill="rgb(249,55,44)" fg:x="245868" fg:w="50"/><text x="51.4397%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (61 samples, 0.01%)</title><rect x="51.1878%" y="373" width="0.0127%" height="15" fill="rgb(216,82,12)" fg:x="245859" fg:w="61"/><text x="51.4378%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (127 samples, 0.03%)</title><rect x="51.1745%" y="421" width="0.0264%" height="15" fill="rgb(242,174,1)" fg:x="245795" fg:w="127"/><text x="51.4245%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (125 samples, 0.03%)</title><rect x="51.1749%" y="405" width="0.0260%" height="15" fill="rgb(208,120,29)" fg:x="245797" fg:w="125"/><text x="51.4249%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (107 samples, 0.02%)</title><rect x="51.1786%" y="389" width="0.0223%" height="15" fill="rgb(221,105,43)" fg:x="245815" fg:w="107"/><text x="51.4286%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (159 samples, 0.03%)</title><rect x="51.1680%" y="453" width="0.0331%" height="15" fill="rgb(234,124,22)" fg:x="245764" fg:w="159"/><text x="51.4180%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (140 samples, 0.03%)</title><rect x="51.1720%" y="437" width="0.0291%" height="15" fill="rgb(212,23,30)" fg:x="245783" fg:w="140"/><text x="51.4220%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (184 samples, 0.04%)</title><rect x="51.1636%" y="469" width="0.0383%" height="15" fill="rgb(219,122,53)" fg:x="245743" fg:w="184"/><text x="51.4136%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (202 samples, 0.04%)</title><rect x="51.1609%" y="485" width="0.0421%" height="15" fill="rgb(248,84,24)" fg:x="245730" fg:w="202"/><text x="51.4109%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (217 samples, 0.05%)</title><rect x="51.1580%" y="501" width="0.0452%" height="15" fill="rgb(245,115,18)" fg:x="245716" fg:w="217"/><text x="51.4080%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (256 samples, 0.05%)</title><rect x="51.1501%" y="517" width="0.0533%" height="15" fill="rgb(227,176,51)" fg:x="245678" fg:w="256"/><text x="51.4001%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (321 samples, 0.07%)</title><rect x="51.1386%" y="533" width="0.0668%" height="15" fill="rgb(229,63,42)" fg:x="245623" fg:w="321"/><text x="51.3886%" y="543.50"></text></g><g><title>_ZdlPv (856 samples, 0.18%)</title><rect x="51.0285%" y="581" width="0.1782%" height="15" fill="rgb(247,202,24)" fg:x="245094" fg:w="856"/><text x="51.2785%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (428 samples, 0.09%)</title><rect x="51.1176%" y="565" width="0.0891%" height="15" fill="rgb(244,173,20)" fg:x="245522" fg:w="428"/><text x="51.3676%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (366 samples, 0.08%)</title><rect x="51.1305%" y="549" width="0.0762%" height="15" fill="rgb(242,81,47)" fg:x="245584" fg:w="366"/><text x="51.3805%" y="559.50"></text></g><g><title>_ZdlPv (865 samples, 0.18%)</title><rect x="51.0273%" y="613" width="0.1801%" height="15" fill="rgb(231,185,54)" fg:x="245088" fg:w="865"/><text x="51.2773%" y="623.50"></text></g><g><title>_ZdlPv (865 samples, 0.18%)</title><rect x="51.0273%" y="597" width="0.1801%" height="15" fill="rgb(243,55,32)" fg:x="245088" fg:w="865"/><text x="51.2773%" y="607.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (92 samples, 0.02%)</title><rect x="51.2128%" y="517" width="0.0192%" height="15" fill="rgb(208,167,19)" fg:x="245979" fg:w="92"/><text x="51.4628%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (98 samples, 0.02%)</title><rect x="51.2121%" y="533" width="0.0204%" height="15" fill="rgb(231,72,35)" fg:x="245976" fg:w="98"/><text x="51.4621%" y="543.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="51.2346%" y="485" width="0.0108%" height="15" fill="rgb(250,173,51)" fg:x="246084" fg:w="52"/><text x="51.4846%" y="495.50"></text></g><g><title>_ZdlPv (59 samples, 0.01%)</title><rect x="51.2338%" y="501" width="0.0123%" height="15" fill="rgb(209,5,22)" fg:x="246080" fg:w="59"/><text x="51.4838%" y="511.50"></text></g><g><title>_ZdlPv (66 samples, 0.01%)</title><rect x="51.2332%" y="517" width="0.0137%" height="15" fill="rgb(250,174,19)" fg:x="246077" fg:w="66"/><text x="51.4832%" y="527.50"></text></g><g><title>_ZdlPv (76 samples, 0.02%)</title><rect x="51.2325%" y="533" width="0.0158%" height="15" fill="rgb(217,3,49)" fg:x="246074" fg:w="76"/><text x="51.4825%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (75 samples, 0.02%)</title><rect x="51.2509%" y="485" width="0.0156%" height="15" fill="rgb(218,225,5)" fg:x="246162" fg:w="75"/><text x="51.5009%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.01%)</title><rect x="51.2527%" y="469" width="0.0137%" height="15" fill="rgb(236,89,11)" fg:x="246171" fg:w="66"/><text x="51.5027%" y="479.50"></text></g><g><title>_ZdlPv (76 samples, 0.02%)</title><rect x="51.2509%" y="517" width="0.0158%" height="15" fill="rgb(206,33,28)" fg:x="246162" fg:w="76"/><text x="51.5009%" y="527.50"></text></g><g><title>_ZdlPv (76 samples, 0.02%)</title><rect x="51.2509%" y="501" width="0.0158%" height="15" fill="rgb(241,56,42)" fg:x="246162" fg:w="76"/><text x="51.5009%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (57 samples, 0.01%)</title><rect x="51.3048%" y="389" width="0.0119%" height="15" fill="rgb(222,44,11)" fg:x="246421" fg:w="57"/><text x="51.5548%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (78 samples, 0.02%)</title><rect x="51.3008%" y="405" width="0.0162%" height="15" fill="rgb(234,111,20)" fg:x="246402" fg:w="78"/><text x="51.5508%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (104 samples, 0.02%)</title><rect x="51.2958%" y="421" width="0.0217%" height="15" fill="rgb(237,77,6)" fg:x="246378" fg:w="104"/><text x="51.5458%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (119 samples, 0.02%)</title><rect x="51.2931%" y="437" width="0.0248%" height="15" fill="rgb(235,111,23)" fg:x="246365" fg:w="119"/><text x="51.5431%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (129 samples, 0.03%)</title><rect x="51.2919%" y="453" width="0.0269%" height="15" fill="rgb(251,135,29)" fg:x="246359" fg:w="129"/><text x="51.5419%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (196 samples, 0.04%)</title><rect x="51.2783%" y="501" width="0.0408%" height="15" fill="rgb(217,57,1)" fg:x="246294" fg:w="196"/><text x="51.5283%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (168 samples, 0.03%)</title><rect x="51.2842%" y="485" width="0.0350%" height="15" fill="rgb(249,119,31)" fg:x="246322" fg:w="168"/><text x="51.5342%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (137 samples, 0.03%)</title><rect x="51.2906%" y="469" width="0.0285%" height="15" fill="rgb(233,164,33)" fg:x="246353" fg:w="137"/><text x="51.5406%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (251 samples, 0.05%)</title><rect x="51.2671%" y="517" width="0.0523%" height="15" fill="rgb(250,217,43)" fg:x="246240" fg:w="251"/><text x="51.5171%" y="527.50"></text></g><g><title>_ZdlPv (533 samples, 0.11%)</title><rect x="51.2090%" y="549" width="0.1110%" height="15" fill="rgb(232,154,50)" fg:x="245961" fg:w="533"/><text x="51.4590%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (338 samples, 0.07%)</title><rect x="51.2496%" y="533" width="0.0704%" height="15" fill="rgb(227,190,8)" fg:x="246156" fg:w="338"/><text x="51.4996%" y="543.50"></text></g><g><title>_ZdlPv (535 samples, 0.11%)</title><rect x="51.2090%" y="565" width="0.1114%" height="15" fill="rgb(209,217,32)" fg:x="245961" fg:w="535"/><text x="51.4590%" y="575.50"></text></g><g><title>_ZdlPv (536 samples, 0.11%)</title><rect x="51.2090%" y="597" width="0.1116%" height="15" fill="rgb(243,203,50)" fg:x="245961" fg:w="536"/><text x="51.4590%" y="607.50"></text></g><g><title>_ZdlPv (536 samples, 0.11%)</title><rect x="51.2090%" y="581" width="0.1116%" height="15" fill="rgb(232,152,27)" fg:x="245961" fg:w="536"/><text x="51.4590%" y="591.50"></text></g><g><title>cshook_security_sb_free_security (568 samples, 0.12%)</title><rect x="51.2084%" y="613" width="0.1183%" height="15" fill="rgb(240,34,29)" fg:x="245958" fg:w="568"/><text x="51.4584%" y="623.50"></text></g><g><title>cshook_security_file_permission (1,450 samples, 0.30%)</title><rect x="51.0260%" y="661" width="0.3019%" height="15" fill="rgb(215,185,52)" fg:x="245082" fg:w="1450"/><text x="51.2760%" y="671.50"></text></g><g><title>cshook_security_sb_free_security (1,447 samples, 0.30%)</title><rect x="51.0266%" y="645" width="0.3013%" height="15" fill="rgb(240,89,49)" fg:x="245085" fg:w="1447"/><text x="51.2766%" y="655.50"></text></g><g><title>cshook_security_sb_free_security (1,444 samples, 0.30%)</title><rect x="51.0273%" y="629" width="0.3006%" height="15" fill="rgb(225,12,52)" fg:x="245088" fg:w="1444"/><text x="51.2773%" y="639.50"></text></g><g><title>search_binary_handler (1,517 samples, 0.32%)</title><rect x="51.0125%" y="741" width="0.3158%" height="15" fill="rgb(239,128,45)" fg:x="245017" fg:w="1517"/><text x="51.2625%" y="751.50"></text></g><g><title>security_bprm_check (1,463 samples, 0.30%)</title><rect x="51.0237%" y="725" width="0.3046%" height="15" fill="rgb(211,78,47)" fg:x="245071" fg:w="1463"/><text x="51.2737%" y="735.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,463 samples, 0.30%)</title><rect x="51.0237%" y="709" width="0.3046%" height="15" fill="rgb(232,31,21)" fg:x="245071" fg:w="1463"/><text x="51.2737%" y="719.50"></text></g><g><title>cshook_security_bprm_check_security (1,463 samples, 0.30%)</title><rect x="51.0237%" y="693" width="0.3046%" height="15" fill="rgb(222,168,14)" fg:x="245071" fg:w="1463"/><text x="51.2737%" y="703.50"></text></g><g><title>cshook_security_file_permission (1,462 samples, 0.30%)</title><rect x="51.0239%" y="677" width="0.3044%" height="15" fill="rgb(209,128,24)" fg:x="245072" fg:w="1462"/><text x="51.2739%" y="687.50"></text></g><g><title>exec_binprm (1,519 samples, 0.32%)</title><rect x="51.0123%" y="757" width="0.3163%" height="15" fill="rgb(249,35,13)" fg:x="245016" fg:w="1519"/><text x="51.2623%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.02%)</title><rect x="51.3296%" y="677" width="0.0235%" height="15" fill="rgb(218,7,2)" fg:x="246540" fg:w="113"/><text x="51.5796%" y="687.50"></text></g><g><title>x86_pmu_enable (110 samples, 0.02%)</title><rect x="51.3302%" y="661" width="0.0229%" height="15" fill="rgb(238,107,27)" fg:x="246543" fg:w="110"/><text x="51.5802%" y="671.50"></text></g><g><title>intel_pmu_enable_all (108 samples, 0.02%)</title><rect x="51.3306%" y="645" width="0.0225%" height="15" fill="rgb(217,88,38)" fg:x="246545" fg:w="108"/><text x="51.5806%" y="655.50"></text></g><g><title>native_write_msr (107 samples, 0.02%)</title><rect x="51.3308%" y="629" width="0.0223%" height="15" fill="rgb(230,207,0)" fg:x="246546" fg:w="107"/><text x="51.5808%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (114 samples, 0.02%)</title><rect x="51.3296%" y="693" width="0.0237%" height="15" fill="rgb(249,64,54)" fg:x="246540" fg:w="114"/><text x="51.5796%" y="703.50"></text></g><g><title>__cond_resched (116 samples, 0.02%)</title><rect x="51.3294%" y="725" width="0.0242%" height="15" fill="rgb(231,7,11)" fg:x="246539" fg:w="116"/><text x="51.5794%" y="735.50"></text></g><g><title>__schedule (116 samples, 0.02%)</title><rect x="51.3294%" y="709" width="0.0242%" height="15" fill="rgb(205,149,21)" fg:x="246539" fg:w="116"/><text x="51.5794%" y="719.50"></text></g><g><title>stop_one_cpu (117 samples, 0.02%)</title><rect x="51.3294%" y="741" width="0.0244%" height="15" fill="rgb(215,126,34)" fg:x="246539" fg:w="117"/><text x="51.5794%" y="751.50"></text></g><g><title>sched_exec (122 samples, 0.03%)</title><rect x="51.3285%" y="757" width="0.0254%" height="15" fill="rgb(241,132,45)" fg:x="246535" fg:w="122"/><text x="51.5785%" y="767.50"></text></g><g><title>bprm_execve.part.0 (1,680 samples, 0.35%)</title><rect x="51.0110%" y="773" width="0.3498%" height="15" fill="rgb(252,69,32)" fg:x="245010" fg:w="1680"/><text x="51.2610%" y="783.50"></text></g><g><title>bprm_execve (1,685 samples, 0.35%)</title><rect x="51.0110%" y="789" width="0.3508%" height="15" fill="rgb(232,204,19)" fg:x="245010" fg:w="1685"/><text x="51.2610%" y="799.50"></text></g><g><title>JDK_execvpe (1,708 samples, 0.36%)</title><rect x="51.0094%" y="885" width="0.3556%" height="15" fill="rgb(249,15,47)" fg:x="245002" fg:w="1708"/><text x="51.2594%" y="895.50"></text></g><g><title>__GI_execve (1,708 samples, 0.36%)</title><rect x="51.0094%" y="869" width="0.3556%" height="15" fill="rgb(209,227,23)" fg:x="245002" fg:w="1708"/><text x="51.2594%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,707 samples, 0.36%)</title><rect x="51.0096%" y="853" width="0.3554%" height="15" fill="rgb(248,92,24)" fg:x="245003" fg:w="1707"/><text x="51.2596%" y="863.50"></text></g><g><title>do_syscall_64 (1,707 samples, 0.36%)</title><rect x="51.0096%" y="837" width="0.3554%" height="15" fill="rgb(247,59,2)" fg:x="245003" fg:w="1707"/><text x="51.2596%" y="847.50"></text></g><g><title>__x64_sys_execve (1,707 samples, 0.36%)</title><rect x="51.0096%" y="821" width="0.3554%" height="15" fill="rgb(221,30,5)" fg:x="245003" fg:w="1707"/><text x="51.2596%" y="831.50"></text></g><g><title>do_execveat_common.isra.0 (1,707 samples, 0.36%)</title><rect x="51.0096%" y="805" width="0.3554%" height="15" fill="rgb(208,108,53)" fg:x="245003" fg:w="1707"/><text x="51.2596%" y="815.50"></text></g><g><title>closeDescriptors (88 samples, 0.02%)</title><rect x="51.3695%" y="885" width="0.0183%" height="15" fill="rgb(211,183,26)" fg:x="246732" fg:w="88"/><text x="51.6195%" y="895.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (2,586 samples, 0.54%)</title><rect x="50.8545%" y="933" width="0.5384%" height="15" fill="rgb(232,132,4)" fg:x="244258" fg:w="2586"/><text x="51.1045%" y="943.50"></text></g><g><title>vforkChild (2,528 samples, 0.53%)</title><rect x="50.8665%" y="917" width="0.5263%" height="15" fill="rgb(253,128,37)" fg:x="244316" fg:w="2528"/><text x="51.1165%" y="927.50"></text></g><g><title>childProcess (1,846 samples, 0.38%)</title><rect x="51.0085%" y="901" width="0.3843%" height="15" fill="rgb(221,58,24)" fg:x="244998" fg:w="1846"/><text x="51.2585%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (77 samples, 0.02%)</title><rect x="51.4312%" y="917" width="0.0160%" height="15" fill="rgb(230,54,45)" fg:x="247028" fg:w="77"/><text x="51.6812%" y="927.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (51 samples, 0.01%)</title><rect x="51.4366%" y="901" width="0.0106%" height="15" fill="rgb(254,21,18)" fg:x="247054" fg:w="51"/><text x="51.6866%" y="911.50"></text></g><g><title>Runtime1::counter_overflow (129 samples, 0.03%)</title><rect x="51.4245%" y="933" width="0.0269%" height="15" fill="rgb(221,108,0)" fg:x="246996" fg:w="129"/><text x="51.6745%" y="943.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (50 samples, 0.01%)</title><rect x="51.4684%" y="933" width="0.0104%" height="15" fill="rgb(206,95,1)" fg:x="247207" fg:w="50"/><text x="51.7184%" y="943.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.01%)</title><rect x="51.5003%" y="901" width="0.0108%" height="15" fill="rgb(237,52,5)" fg:x="247360" fg:w="52"/><text x="51.7503%" y="911.50"></text></g><g><title>SystemDictionary::parse_stream (70 samples, 0.01%)</title><rect x="51.4967%" y="917" width="0.0146%" height="15" fill="rgb(218,150,34)" fg:x="247343" fg:w="70"/><text x="51.7467%" y="927.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (77 samples, 0.02%)</title><rect x="51.4959%" y="933" width="0.0160%" height="15" fill="rgb(235,194,28)" fg:x="247339" fg:w="77"/><text x="51.7459%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (327 samples, 0.07%)</title><rect x="51.5340%" y="677" width="0.0681%" height="15" fill="rgb(245,92,18)" fg:x="247522" fg:w="327"/><text x="51.7840%" y="687.50"></text></g><g><title>x86_pmu_enable (320 samples, 0.07%)</title><rect x="51.5355%" y="661" width="0.0666%" height="15" fill="rgb(253,203,53)" fg:x="247529" fg:w="320"/><text x="51.7855%" y="671.50"></text></g><g><title>intel_pmu_enable_all (318 samples, 0.07%)</title><rect x="51.5359%" y="645" width="0.0662%" height="15" fill="rgb(249,185,47)" fg:x="247531" fg:w="318"/><text x="51.7859%" y="655.50"></text></g><g><title>native_write_msr (313 samples, 0.07%)</title><rect x="51.5369%" y="629" width="0.0652%" height="15" fill="rgb(252,194,52)" fg:x="247536" fg:w="313"/><text x="51.7869%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (339 samples, 0.07%)</title><rect x="51.5328%" y="693" width="0.0706%" height="15" fill="rgb(210,53,36)" fg:x="247516" fg:w="339"/><text x="51.7828%" y="703.50"></text></g><g><title>futex_wait_queue_me (391 samples, 0.08%)</title><rect x="51.5276%" y="741" width="0.0814%" height="15" fill="rgb(237,37,25)" fg:x="247491" fg:w="391"/><text x="51.7776%" y="751.50"></text></g><g><title>schedule (387 samples, 0.08%)</title><rect x="51.5284%" y="725" width="0.0806%" height="15" fill="rgb(242,116,27)" fg:x="247495" fg:w="387"/><text x="51.7784%" y="735.50"></text></g><g><title>__schedule (385 samples, 0.08%)</title><rect x="51.5288%" y="709" width="0.0802%" height="15" fill="rgb(213,185,26)" fg:x="247497" fg:w="385"/><text x="51.7788%" y="719.50"></text></g><g><title>__x64_sys_futex (400 samples, 0.08%)</title><rect x="51.5274%" y="789" width="0.0833%" height="15" fill="rgb(225,204,8)" fg:x="247490" fg:w="400"/><text x="51.7774%" y="799.50"></text></g><g><title>do_futex (400 samples, 0.08%)</title><rect x="51.5274%" y="773" width="0.0833%" height="15" fill="rgb(254,111,37)" fg:x="247490" fg:w="400"/><text x="51.7774%" y="783.50"></text></g><g><title>futex_wait (400 samples, 0.08%)</title><rect x="51.5274%" y="757" width="0.0833%" height="15" fill="rgb(242,35,9)" fg:x="247490" fg:w="400"/><text x="51.7774%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (413 samples, 0.09%)</title><rect x="51.5274%" y="821" width="0.0860%" height="15" fill="rgb(232,138,49)" fg:x="247490" fg:w="413"/><text x="51.7774%" y="831.50"></text></g><g><title>do_syscall_64 (413 samples, 0.09%)</title><rect x="51.5274%" y="805" width="0.0860%" height="15" fill="rgb(247,56,4)" fg:x="247490" fg:w="413"/><text x="51.7774%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (418 samples, 0.09%)</title><rect x="51.5265%" y="869" width="0.0870%" height="15" fill="rgb(226,179,17)" fg:x="247486" fg:w="418"/><text x="51.7765%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (418 samples, 0.09%)</title><rect x="51.5265%" y="853" width="0.0870%" height="15" fill="rgb(216,163,45)" fg:x="247486" fg:w="418"/><text x="51.7765%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (418 samples, 0.09%)</title><rect x="51.5265%" y="837" width="0.0870%" height="15" fill="rgb(211,157,3)" fg:x="247486" fg:w="418"/><text x="51.7765%" y="847.50"></text></g><g><title>___pthread_cond_wait (420 samples, 0.09%)</title><rect x="51.5265%" y="901" width="0.0874%" height="15" fill="rgb(234,44,20)" fg:x="247486" fg:w="420"/><text x="51.7765%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (420 samples, 0.09%)</title><rect x="51.5265%" y="885" width="0.0874%" height="15" fill="rgb(254,138,23)" fg:x="247486" fg:w="420"/><text x="51.7765%" y="895.50"></text></g><g><title>Unsafe_Park (472 samples, 0.10%)</title><rect x="51.5194%" y="933" width="0.0983%" height="15" fill="rgb(206,119,39)" fg:x="247452" fg:w="472"/><text x="51.7694%" y="943.50"></text></g><g><title>Parker::park (471 samples, 0.10%)</title><rect x="51.5196%" y="917" width="0.0981%" height="15" fill="rgb(231,105,52)" fg:x="247453" fg:w="471"/><text x="51.7696%" y="927.50"></text></g><g><title>try_to_wake_up (89 samples, 0.02%)</title><rect x="51.6342%" y="789" width="0.0185%" height="15" fill="rgb(250,20,5)" fg:x="248003" fg:w="89"/><text x="51.8842%" y="799.50"></text></g><g><title>futex_wake (111 samples, 0.02%)</title><rect x="51.6298%" y="821" width="0.0231%" height="15" fill="rgb(215,198,30)" fg:x="247982" fg:w="111"/><text x="51.8798%" y="831.50"></text></g><g><title>wake_up_q (92 samples, 0.02%)</title><rect x="51.6337%" y="805" width="0.0192%" height="15" fill="rgb(246,142,8)" fg:x="248001" fg:w="92"/><text x="51.8837%" y="815.50"></text></g><g><title>do_futex (116 samples, 0.02%)</title><rect x="51.6298%" y="837" width="0.0242%" height="15" fill="rgb(243,26,38)" fg:x="247982" fg:w="116"/><text x="51.8798%" y="847.50"></text></g><g><title>__x64_sys_futex (117 samples, 0.02%)</title><rect x="51.6298%" y="853" width="0.0244%" height="15" fill="rgb(205,133,28)" fg:x="247982" fg:w="117"/><text x="51.8798%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (108 samples, 0.02%)</title><rect x="51.6569%" y="757" width="0.0225%" height="15" fill="rgb(212,34,0)" fg:x="248112" fg:w="108"/><text x="51.9069%" y="767.50"></text></g><g><title>x86_pmu_enable (106 samples, 0.02%)</title><rect x="51.6573%" y="741" width="0.0221%" height="15" fill="rgb(251,226,22)" fg:x="248114" fg:w="106"/><text x="51.9073%" y="751.50"></text></g><g><title>intel_pmu_enable_all (104 samples, 0.02%)</title><rect x="51.6577%" y="725" width="0.0217%" height="15" fill="rgb(252,119,9)" fg:x="248116" fg:w="104"/><text x="51.9077%" y="735.50"></text></g><g><title>native_write_msr (102 samples, 0.02%)</title><rect x="51.6581%" y="709" width="0.0212%" height="15" fill="rgb(213,150,50)" fg:x="248118" fg:w="102"/><text x="51.9081%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (114 samples, 0.02%)</title><rect x="51.6566%" y="773" width="0.0237%" height="15" fill="rgb(212,24,39)" fg:x="248111" fg:w="114"/><text x="51.9066%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (131 samples, 0.03%)</title><rect x="51.6546%" y="821" width="0.0273%" height="15" fill="rgb(213,46,39)" fg:x="248101" fg:w="131"/><text x="51.9046%" y="831.50"></text></g><g><title>schedule (125 samples, 0.03%)</title><rect x="51.6558%" y="805" width="0.0260%" height="15" fill="rgb(239,106,12)" fg:x="248107" fg:w="125"/><text x="51.9058%" y="815.50"></text></g><g><title>__schedule (124 samples, 0.03%)</title><rect x="51.6560%" y="789" width="0.0258%" height="15" fill="rgb(249,229,21)" fg:x="248108" fg:w="124"/><text x="51.9060%" y="799.50"></text></g><g><title>do_syscall_64 (255 samples, 0.05%)</title><rect x="51.6294%" y="869" width="0.0531%" height="15" fill="rgb(212,158,3)" fg:x="247980" fg:w="255"/><text x="51.8794%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (135 samples, 0.03%)</title><rect x="51.6544%" y="853" width="0.0281%" height="15" fill="rgb(253,26,48)" fg:x="248100" fg:w="135"/><text x="51.9044%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (135 samples, 0.03%)</title><rect x="51.6544%" y="837" width="0.0281%" height="15" fill="rgb(238,178,20)" fg:x="248100" fg:w="135"/><text x="51.9044%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (257 samples, 0.05%)</title><rect x="51.6292%" y="885" width="0.0535%" height="15" fill="rgb(208,86,15)" fg:x="247979" fg:w="257"/><text x="51.8792%" y="895.50"></text></g><g><title>___pthread_cond_signal (267 samples, 0.06%)</title><rect x="51.6277%" y="917" width="0.0556%" height="15" fill="rgb(239,42,53)" fg:x="247972" fg:w="267"/><text x="51.8777%" y="927.50"></text></g><g><title>futex_wake (263 samples, 0.05%)</title><rect x="51.6285%" y="901" width="0.0548%" height="15" fill="rgb(245,226,8)" fg:x="247976" fg:w="263"/><text x="51.8785%" y="911.50"></text></g><g><title>Unsafe_Unpark (317 samples, 0.07%)</title><rect x="51.6183%" y="933" width="0.0660%" height="15" fill="rgb(216,176,32)" fg:x="247927" fg:w="317"/><text x="51.8683%" y="943.50"></text></g><g><title>nvme_complete_rq (51 samples, 0.01%)</title><rect x="51.6873%" y="789" width="0.0106%" height="15" fill="rgb(231,186,21)" fg:x="248258" fg:w="51"/><text x="51.9373%" y="799.50"></text></g><g><title>blk_mq_end_request (51 samples, 0.01%)</title><rect x="51.6873%" y="773" width="0.0106%" height="15" fill="rgb(205,95,49)" fg:x="248258" fg:w="51"/><text x="51.9373%" y="783.50"></text></g><g><title>blk_update_request (51 samples, 0.01%)</title><rect x="51.6873%" y="757" width="0.0106%" height="15" fill="rgb(217,145,8)" fg:x="248258" fg:w="51"/><text x="51.9373%" y="767.50"></text></g><g><title>nvme_irq (54 samples, 0.01%)</title><rect x="51.6870%" y="837" width="0.0112%" height="15" fill="rgb(239,144,48)" fg:x="248257" fg:w="54"/><text x="51.9370%" y="847.50"></text></g><g><title>nvme_process_cq (54 samples, 0.01%)</title><rect x="51.6870%" y="821" width="0.0112%" height="15" fill="rgb(214,189,23)" fg:x="248257" fg:w="54"/><text x="51.9370%" y="831.50"></text></g><g><title>nvme_pci_complete_rq (53 samples, 0.01%)</title><rect x="51.6873%" y="805" width="0.0110%" height="15" fill="rgb(229,157,17)" fg:x="248258" fg:w="53"/><text x="51.9373%" y="815.50"></text></g><g><title>__handle_irq_event_percpu (55 samples, 0.01%)</title><rect x="51.6870%" y="853" width="0.0115%" height="15" fill="rgb(230,5,48)" fg:x="248257" fg:w="55"/><text x="51.9370%" y="863.50"></text></g><g><title>handle_irq_event (57 samples, 0.01%)</title><rect x="51.6870%" y="869" width="0.0119%" height="15" fill="rgb(224,156,48)" fg:x="248257" fg:w="57"/><text x="51.9370%" y="879.50"></text></g><g><title>handle_edge_irq (58 samples, 0.01%)</title><rect x="51.6870%" y="885" width="0.0121%" height="15" fill="rgb(223,14,29)" fg:x="248257" fg:w="58"/><text x="51.9370%" y="895.50"></text></g><g><title>__common_interrupt (67 samples, 0.01%)</title><rect x="51.6868%" y="901" width="0.0139%" height="15" fill="rgb(229,96,36)" fg:x="248256" fg:w="67"/><text x="51.9368%" y="911.50"></text></g><g><title>asm_common_interrupt (83 samples, 0.02%)</title><rect x="51.6868%" y="933" width="0.0173%" height="15" fill="rgb(231,102,53)" fg:x="248256" fg:w="83"/><text x="51.9368%" y="943.50"></text></g><g><title>common_interrupt (83 samples, 0.02%)</title><rect x="51.6868%" y="917" width="0.0173%" height="15" fill="rgb(210,77,38)" fg:x="248256" fg:w="83"/><text x="51.9368%" y="927.50"></text></g><g><title>clear_page_erms (70 samples, 0.01%)</title><rect x="51.7622%" y="773" width="0.0146%" height="15" fill="rgb(235,131,6)" fg:x="248618" fg:w="70"/><text x="52.0122%" y="783.50"></text></g><g><title>get_page_from_freelist (117 samples, 0.02%)</title><rect x="51.7601%" y="789" width="0.0244%" height="15" fill="rgb(252,55,38)" fg:x="248608" fg:w="117"/><text x="52.0101%" y="799.50"></text></g><g><title>__alloc_pages (136 samples, 0.03%)</title><rect x="51.7566%" y="805" width="0.0283%" height="15" fill="rgb(246,38,14)" fg:x="248591" fg:w="136"/><text x="52.0066%" y="815.50"></text></g><g><title>alloc_pages_vma (155 samples, 0.03%)</title><rect x="51.7545%" y="821" width="0.0323%" height="15" fill="rgb(242,27,5)" fg:x="248581" fg:w="155"/><text x="52.0045%" y="831.50"></text></g><g><title>do_anonymous_page (313 samples, 0.07%)</title><rect x="51.7358%" y="837" width="0.0652%" height="15" fill="rgb(228,65,35)" fg:x="248491" fg:w="313"/><text x="51.9858%" y="847.50"></text></g><g><title>handle_pte_fault (360 samples, 0.07%)</title><rect x="51.7316%" y="853" width="0.0750%" height="15" fill="rgb(245,93,11)" fg:x="248471" fg:w="360"/><text x="51.9816%" y="863.50"></text></g><g><title>__handle_mm_fault (394 samples, 0.08%)</title><rect x="51.7254%" y="869" width="0.0820%" height="15" fill="rgb(213,1,31)" fg:x="248441" fg:w="394"/><text x="51.9754%" y="879.50"></text></g><g><title>handle_mm_fault (448 samples, 0.09%)</title><rect x="51.7183%" y="885" width="0.0933%" height="15" fill="rgb(237,205,14)" fg:x="248407" fg:w="448"/><text x="51.9683%" y="895.50"></text></g><g><title>do_user_addr_fault (509 samples, 0.11%)</title><rect x="51.7072%" y="901" width="0.1060%" height="15" fill="rgb(232,118,45)" fg:x="248354" fg:w="509"/><text x="51.9572%" y="911.50"></text></g><g><title>asm_exc_page_fault (550 samples, 0.11%)</title><rect x="51.7041%" y="933" width="0.1145%" height="15" fill="rgb(218,5,6)" fg:x="248339" fg:w="550"/><text x="51.9541%" y="943.50"></text></g><g><title>exc_page_fault (543 samples, 0.11%)</title><rect x="51.7056%" y="917" width="0.1131%" height="15" fill="rgb(251,87,51)" fg:x="248346" fg:w="543"/><text x="51.9556%" y="927.50"></text></g><g><title>__hrtimer_run_queues (59 samples, 0.01%)</title><rect x="51.8190%" y="869" width="0.0123%" height="15" fill="rgb(207,225,20)" fg:x="248891" fg:w="59"/><text x="52.0690%" y="879.50"></text></g><g><title>__sysvec_apic_timer_interrupt (64 samples, 0.01%)</title><rect x="51.8188%" y="901" width="0.0133%" height="15" fill="rgb(222,78,54)" fg:x="248890" fg:w="64"/><text x="52.0688%" y="911.50"></text></g><g><title>hrtimer_interrupt (64 samples, 0.01%)</title><rect x="51.8188%" y="885" width="0.0133%" height="15" fill="rgb(232,85,16)" fg:x="248890" fg:w="64"/><text x="52.0688%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="51.8424%" y="789" width="0.0137%" height="15" fill="rgb(244,25,33)" fg:x="249003" fg:w="66"/><text x="52.0924%" y="799.50"></text></g><g><title>x86_pmu_enable (66 samples, 0.01%)</title><rect x="51.8424%" y="773" width="0.0137%" height="15" fill="rgb(233,24,36)" fg:x="249003" fg:w="66"/><text x="52.0924%" y="783.50"></text></g><g><title>intel_pmu_enable_all (65 samples, 0.01%)</title><rect x="51.8426%" y="757" width="0.0135%" height="15" fill="rgb(253,49,54)" fg:x="249004" fg:w="65"/><text x="52.0926%" y="767.50"></text></g><g><title>native_write_msr (63 samples, 0.01%)</title><rect x="51.8430%" y="741" width="0.0131%" height="15" fill="rgb(245,12,22)" fg:x="249006" fg:w="63"/><text x="52.0930%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (67 samples, 0.01%)</title><rect x="51.8424%" y="805" width="0.0139%" height="15" fill="rgb(253,141,28)" fg:x="249003" fg:w="67"/><text x="52.0924%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (77 samples, 0.02%)</title><rect x="51.8415%" y="853" width="0.0160%" height="15" fill="rgb(225,207,27)" fg:x="248999" fg:w="77"/><text x="52.0915%" y="863.50"></text></g><g><title>schedule (76 samples, 0.02%)</title><rect x="51.8417%" y="837" width="0.0158%" height="15" fill="rgb(220,84,2)" fg:x="249000" fg:w="76"/><text x="52.0917%" y="847.50"></text></g><g><title>__schedule (75 samples, 0.02%)</title><rect x="51.8419%" y="821" width="0.0156%" height="15" fill="rgb(224,37,37)" fg:x="249001" fg:w="75"/><text x="52.0919%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (81 samples, 0.02%)</title><rect x="51.8413%" y="869" width="0.0169%" height="15" fill="rgb(220,143,18)" fg:x="248998" fg:w="81"/><text x="52.0913%" y="879.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (191 samples, 0.04%)</title><rect x="51.8186%" y="933" width="0.0398%" height="15" fill="rgb(210,88,33)" fg:x="248889" fg:w="191"/><text x="52.0686%" y="943.50"></text></g><g><title>sysvec_apic_timer_interrupt (190 samples, 0.04%)</title><rect x="51.8188%" y="917" width="0.0396%" height="15" fill="rgb(219,87,51)" fg:x="248890" fg:w="190"/><text x="52.0688%" y="927.50"></text></g><g><title>irqentry_exit (82 samples, 0.02%)</title><rect x="51.8413%" y="901" width="0.0171%" height="15" fill="rgb(211,7,35)" fg:x="248998" fg:w="82"/><text x="52.0913%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (82 samples, 0.02%)</title><rect x="51.8413%" y="885" width="0.0171%" height="15" fill="rgb(232,77,2)" fg:x="248998" fg:w="82"/><text x="52.0913%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (145 samples, 0.03%)</title><rect x="51.8653%" y="789" width="0.0302%" height="15" fill="rgb(249,94,25)" fg:x="249113" fg:w="145"/><text x="52.1153%" y="799.50"></text></g><g><title>x86_pmu_enable (141 samples, 0.03%)</title><rect x="51.8661%" y="773" width="0.0294%" height="15" fill="rgb(215,112,2)" fg:x="249117" fg:w="141"/><text x="52.1161%" y="783.50"></text></g><g><title>intel_pmu_enable_all (140 samples, 0.03%)</title><rect x="51.8663%" y="757" width="0.0291%" height="15" fill="rgb(226,115,48)" fg:x="249118" fg:w="140"/><text x="52.1163%" y="767.50"></text></g><g><title>native_write_msr (139 samples, 0.03%)</title><rect x="51.8665%" y="741" width="0.0289%" height="15" fill="rgb(249,196,10)" fg:x="249119" fg:w="139"/><text x="52.1165%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (160 samples, 0.03%)</title><rect x="51.8642%" y="805" width="0.0333%" height="15" fill="rgb(237,109,14)" fg:x="249108" fg:w="160"/><text x="52.1142%" y="815.50"></text></g><g><title>__schedule (200 samples, 0.04%)</title><rect x="51.8632%" y="821" width="0.0416%" height="15" fill="rgb(217,103,53)" fg:x="249103" fg:w="200"/><text x="52.1132%" y="831.50"></text></g><g><title>exit_to_user_mode_loop (211 samples, 0.04%)</title><rect x="51.8613%" y="853" width="0.0439%" height="15" fill="rgb(244,137,9)" fg:x="249094" fg:w="211"/><text x="52.1113%" y="863.50"></text></g><g><title>schedule (204 samples, 0.04%)</title><rect x="51.8628%" y="837" width="0.0425%" height="15" fill="rgb(227,201,3)" fg:x="249101" fg:w="204"/><text x="52.1128%" y="847.50"></text></g><g><title>asm_sysvec_reschedule_ipi (221 samples, 0.05%)</title><rect x="51.8598%" y="933" width="0.0460%" height="15" fill="rgb(243,94,6)" fg:x="249087" fg:w="221"/><text x="52.1098%" y="943.50"></text></g><g><title>sysvec_reschedule_ipi (217 samples, 0.05%)</title><rect x="51.8607%" y="917" width="0.0452%" height="15" fill="rgb(235,118,5)" fg:x="249091" fg:w="217"/><text x="52.1107%" y="927.50"></text></g><g><title>irqentry_exit (215 samples, 0.04%)</title><rect x="51.8611%" y="901" width="0.0448%" height="15" fill="rgb(247,10,30)" fg:x="249093" fg:w="215"/><text x="52.1111%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (215 samples, 0.04%)</title><rect x="51.8611%" y="885" width="0.0448%" height="15" fill="rgb(205,26,28)" fg:x="249093" fg:w="215"/><text x="52.1111%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (214 samples, 0.04%)</title><rect x="51.8613%" y="869" width="0.0446%" height="15" fill="rgb(206,99,35)" fg:x="249094" fg:w="214"/><text x="52.1113%" y="879.50"></text></g><g><title>__GI___close (80 samples, 0.02%)</title><rect x="51.9086%" y="917" width="0.0167%" height="15" fill="rgb(238,130,40)" fg:x="249321" fg:w="80"/><text x="52.1586%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="51.9088%" y="901" width="0.0164%" height="15" fill="rgb(224,126,31)" fg:x="249322" fg:w="79"/><text x="52.1588%" y="911.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="51.9088%" y="885" width="0.0164%" height="15" fill="rgb(254,105,17)" fg:x="249322" fg:w="79"/><text x="52.1588%" y="895.50"></text></g><g><title>fileDescriptorClose (89 samples, 0.02%)</title><rect x="51.9079%" y="933" width="0.0185%" height="15" fill="rgb(216,87,36)" fg:x="249318" fg:w="89"/><text x="52.1579%" y="943.50"></text></g><g><title>do_filp_open (128 samples, 0.03%)</title><rect x="51.9388%" y="821" width="0.0266%" height="15" fill="rgb(240,21,12)" fg:x="249466" fg:w="128"/><text x="52.1888%" y="831.50"></text></g><g><title>path_openat (124 samples, 0.03%)</title><rect x="51.9396%" y="805" width="0.0258%" height="15" fill="rgb(245,192,34)" fg:x="249470" fg:w="124"/><text x="52.1896%" y="815.50"></text></g><g><title>__x64_sys_openat (145 samples, 0.03%)</title><rect x="51.9385%" y="853" width="0.0302%" height="15" fill="rgb(226,100,49)" fg:x="249465" fg:w="145"/><text x="52.1885%" y="863.50"></text></g><g><title>do_sys_openat2 (144 samples, 0.03%)</title><rect x="51.9388%" y="837" width="0.0300%" height="15" fill="rgb(245,188,27)" fg:x="249466" fg:w="144"/><text x="52.1888%" y="847.50"></text></g><g><title>cshook_systemcalltable_post_openat (116 samples, 0.02%)</title><rect x="51.9692%" y="853" width="0.0242%" height="15" fill="rgb(212,170,8)" fg:x="249612" fg:w="116"/><text x="52.2192%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (86 samples, 0.02%)</title><rect x="51.9754%" y="837" width="0.0179%" height="15" fill="rgb(217,113,29)" fg:x="249642" fg:w="86"/><text x="52.2254%" y="847.50"></text></g><g><title>do_syscall_64 (281 samples, 0.06%)</title><rect x="51.9371%" y="885" width="0.0585%" height="15" fill="rgb(237,30,3)" fg:x="249458" fg:w="281"/><text x="52.1871%" y="895.50"></text></g><g><title>unload_network_ops_symbols (274 samples, 0.06%)</title><rect x="51.9385%" y="869" width="0.0570%" height="15" fill="rgb(227,19,28)" fg:x="249465" fg:w="274"/><text x="52.1885%" y="879.50"></text></g><g><title>__libc_open64 (290 samples, 0.06%)</title><rect x="51.9358%" y="917" width="0.0604%" height="15" fill="rgb(239,172,45)" fg:x="249452" fg:w="290"/><text x="52.1858%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (284 samples, 0.06%)</title><rect x="51.9371%" y="901" width="0.0591%" height="15" fill="rgb(254,55,39)" fg:x="249458" fg:w="284"/><text x="52.1871%" y="911.50"></text></g><g><title>fileOpen (348 samples, 0.07%)</title><rect x="51.9265%" y="933" width="0.0725%" height="15" fill="rgb(249,208,12)" fg:x="249407" fg:w="348"/><text x="52.1765%" y="943.50"></text></g><g><title>os::javaTimeNanos (59 samples, 0.01%)</title><rect x="52.0137%" y="933" width="0.0123%" height="15" fill="rgb(240,52,13)" fg:x="249826" fg:w="59"/><text x="52.2637%" y="943.50"></text></g><g><title>__GI___clock_gettime (56 samples, 0.01%)</title><rect x="52.0143%" y="917" width="0.0117%" height="15" fill="rgb(252,149,13)" fg:x="249829" fg:w="56"/><text x="52.2643%" y="927.50"></text></g><g><title>sync_regs (51 samples, 0.01%)</title><rect x="52.0262%" y="933" width="0.0106%" height="15" fill="rgb(232,81,48)" fg:x="249886" fg:w="51"/><text x="52.2762%" y="943.50"></text></g><g><title>[perf-712021.map] (43,528 samples, 9.06%)</title><rect x="42.9745%" y="949" width="9.0625%" height="15" fill="rgb(222,144,2)" fg:x="206410" fg:w="43528"/><text x="43.2245%" y="959.50">[perf-712021...</text></g><g><title>Runtime1::counter_overflow (53 samples, 0.01%)</title><rect x="52.0447%" y="933" width="0.0110%" height="15" fill="rgb(216,81,32)" fg:x="249975" fg:w="53"/><text x="52.2947%" y="943.50"></text></g><g><title>TieredThresholdPolicy::event (53 samples, 0.01%)</title><rect x="52.0447%" y="917" width="0.0110%" height="15" fill="rgb(244,78,51)" fg:x="249975" fg:w="53"/><text x="52.2947%" y="927.50"></text></g><g><title>frame::sender (57 samples, 0.01%)</title><rect x="52.1174%" y="901" width="0.0119%" height="15" fill="rgb(217,66,21)" fg:x="250324" fg:w="57"/><text x="52.3674%" y="911.50"></text></g><g><title>OopMapSet::update_register_map (53 samples, 0.01%)</title><rect x="52.1182%" y="885" width="0.0110%" height="15" fill="rgb(247,101,42)" fg:x="250328" fg:w="53"/><text x="52.3682%" y="895.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (193 samples, 0.04%)</title><rect x="52.0895%" y="917" width="0.0402%" height="15" fill="rgb(227,81,39)" fg:x="250190" fg:w="193"/><text x="52.3395%" y="927.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (282 samples, 0.06%)</title><rect x="52.0733%" y="933" width="0.0587%" height="15" fill="rgb(220,223,44)" fg:x="250112" fg:w="282"/><text x="52.3233%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (92 samples, 0.02%)</title><rect x="52.1359%" y="645" width="0.0192%" height="15" fill="rgb(205,218,2)" fg:x="250413" fg:w="92"/><text x="52.3859%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (89 samples, 0.02%)</title><rect x="52.1365%" y="629" width="0.0185%" height="15" fill="rgb(212,207,28)" fg:x="250416" fg:w="89"/><text x="52.3865%" y="639.50"></text></g><g><title>x86_pmu_enable (89 samples, 0.02%)</title><rect x="52.1365%" y="613" width="0.0185%" height="15" fill="rgb(224,12,41)" fg:x="250416" fg:w="89"/><text x="52.3865%" y="623.50"></text></g><g><title>intel_pmu_enable_all (89 samples, 0.02%)</title><rect x="52.1365%" y="597" width="0.0185%" height="15" fill="rgb(216,118,12)" fg:x="250416" fg:w="89"/><text x="52.3865%" y="607.50"></text></g><g><title>native_write_msr (89 samples, 0.02%)</title><rect x="52.1365%" y="581" width="0.0185%" height="15" fill="rgb(252,97,46)" fg:x="250416" fg:w="89"/><text x="52.3865%" y="591.50"></text></g><g><title>__x64_sys_futex (104 samples, 0.02%)</title><rect x="52.1340%" y="741" width="0.0217%" height="15" fill="rgb(244,206,19)" fg:x="250404" fg:w="104"/><text x="52.3840%" y="751.50"></text></g><g><title>do_futex (103 samples, 0.02%)</title><rect x="52.1343%" y="725" width="0.0214%" height="15" fill="rgb(231,84,31)" fg:x="250405" fg:w="103"/><text x="52.3843%" y="735.50"></text></g><g><title>futex_wait (103 samples, 0.02%)</title><rect x="52.1343%" y="709" width="0.0214%" height="15" fill="rgb(244,133,0)" fg:x="250405" fg:w="103"/><text x="52.3843%" y="719.50"></text></g><g><title>futex_wait_queue_me (103 samples, 0.02%)</title><rect x="52.1343%" y="693" width="0.0214%" height="15" fill="rgb(223,15,50)" fg:x="250405" fg:w="103"/><text x="52.3843%" y="703.50"></text></g><g><title>schedule (101 samples, 0.02%)</title><rect x="52.1347%" y="677" width="0.0210%" height="15" fill="rgb(250,118,49)" fg:x="250407" fg:w="101"/><text x="52.3847%" y="687.50"></text></g><g><title>__schedule (101 samples, 0.02%)</title><rect x="52.1347%" y="661" width="0.0210%" height="15" fill="rgb(248,25,38)" fg:x="250407" fg:w="101"/><text x="52.3847%" y="671.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (110 samples, 0.02%)</title><rect x="52.1334%" y="821" width="0.0229%" height="15" fill="rgb(215,70,14)" fg:x="250401" fg:w="110"/><text x="52.3834%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (110 samples, 0.02%)</title><rect x="52.1334%" y="805" width="0.0229%" height="15" fill="rgb(215,28,15)" fg:x="250401" fg:w="110"/><text x="52.3834%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (110 samples, 0.02%)</title><rect x="52.1334%" y="789" width="0.0229%" height="15" fill="rgb(243,6,28)" fg:x="250401" fg:w="110"/><text x="52.3834%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (109 samples, 0.02%)</title><rect x="52.1336%" y="773" width="0.0227%" height="15" fill="rgb(222,130,1)" fg:x="250402" fg:w="109"/><text x="52.3836%" y="783.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="52.1336%" y="757" width="0.0227%" height="15" fill="rgb(236,166,44)" fg:x="250402" fg:w="109"/><text x="52.3836%" y="767.50"></text></g><g><title>___pthread_cond_wait (112 samples, 0.02%)</title><rect x="52.1334%" y="853" width="0.0233%" height="15" fill="rgb(221,108,14)" fg:x="250401" fg:w="112"/><text x="52.3834%" y="863.50"></text></g><g><title>__pthread_cond_wait_common (112 samples, 0.02%)</title><rect x="52.1334%" y="837" width="0.0233%" height="15" fill="rgb(252,3,45)" fg:x="250401" fg:w="112"/><text x="52.3834%" y="847.50"></text></g><g><title>Monitor::lock_without_safepoint_check (120 samples, 0.02%)</title><rect x="52.1324%" y="901" width="0.0250%" height="15" fill="rgb(237,68,30)" fg:x="250396" fg:w="120"/><text x="52.3824%" y="911.50"></text></g><g><title>Monitor::ILock (120 samples, 0.02%)</title><rect x="52.1324%" y="885" width="0.0250%" height="15" fill="rgb(211,79,22)" fg:x="250396" fg:w="120"/><text x="52.3824%" y="895.50"></text></g><g><title>os::PlatformEvent::park (115 samples, 0.02%)</title><rect x="52.1334%" y="869" width="0.0239%" height="15" fill="rgb(252,185,21)" fg:x="250401" fg:w="115"/><text x="52.3834%" y="879.50"></text></g><g><title>SafepointSynchronize::block (139 samples, 0.03%)</title><rect x="52.1324%" y="917" width="0.0289%" height="15" fill="rgb(225,189,26)" fg:x="250396" fg:w="139"/><text x="52.3824%" y="927.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (143 samples, 0.03%)</title><rect x="52.1320%" y="933" width="0.0298%" height="15" fill="rgb(241,30,40)" fg:x="250394" fg:w="143"/><text x="52.3820%" y="943.50"></text></g><g><title>copy_user_enhanced_fast_string (102 samples, 0.02%)</title><rect x="52.1838%" y="725" width="0.0212%" height="15" fill="rgb(235,215,44)" fg:x="250643" fg:w="102"/><text x="52.4338%" y="735.50"></text></g><g><title>filemap_read (184 samples, 0.04%)</title><rect x="52.1799%" y="741" width="0.0383%" height="15" fill="rgb(205,8,29)" fg:x="250624" fg:w="184"/><text x="52.4299%" y="751.50"></text></g><g><title>new_sync_read (190 samples, 0.04%)</title><rect x="52.1790%" y="773" width="0.0396%" height="15" fill="rgb(241,137,42)" fg:x="250620" fg:w="190"/><text x="52.4290%" y="783.50"></text></g><g><title>btrfs_file_read_iter (188 samples, 0.04%)</title><rect x="52.1794%" y="757" width="0.0391%" height="15" fill="rgb(237,155,2)" fg:x="250622" fg:w="188"/><text x="52.4294%" y="767.50"></text></g><g><title>__x64_sys_read (239 samples, 0.05%)</title><rect x="52.1742%" y="821" width="0.0498%" height="15" fill="rgb(245,29,42)" fg:x="250597" fg:w="239"/><text x="52.4242%" y="831.50"></text></g><g><title>ksys_read (238 samples, 0.05%)</title><rect x="52.1744%" y="805" width="0.0496%" height="15" fill="rgb(234,101,35)" fg:x="250598" fg:w="238"/><text x="52.4244%" y="815.50"></text></g><g><title>vfs_read (220 samples, 0.05%)</title><rect x="52.1782%" y="789" width="0.0458%" height="15" fill="rgb(228,64,37)" fg:x="250616" fg:w="220"/><text x="52.4282%" y="799.50"></text></g><g><title>do_syscall_64 (274 samples, 0.06%)</title><rect x="52.1682%" y="853" width="0.0570%" height="15" fill="rgb(217,214,36)" fg:x="250568" fg:w="274"/><text x="52.4182%" y="863.50"></text></g><g><title>unload_network_ops_symbols (250 samples, 0.05%)</title><rect x="52.1732%" y="837" width="0.0520%" height="15" fill="rgb(243,70,3)" fg:x="250592" fg:w="250"/><text x="52.4232%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (277 samples, 0.06%)</title><rect x="52.1682%" y="869" width="0.0577%" height="15" fill="rgb(253,158,52)" fg:x="250568" fg:w="277"/><text x="52.4182%" y="879.50"></text></g><g><title>__GI___libc_read (290 samples, 0.06%)</title><rect x="52.1657%" y="901" width="0.0604%" height="15" fill="rgb(234,111,54)" fg:x="250556" fg:w="290"/><text x="52.4157%" y="911.50"></text></g><g><title>__GI___libc_read (290 samples, 0.06%)</title><rect x="52.1657%" y="885" width="0.0604%" height="15" fill="rgb(217,70,32)" fg:x="250556" fg:w="290"/><text x="52.4157%" y="895.50"></text></g><g><title>handleRead (294 samples, 0.06%)</title><rect x="52.1655%" y="917" width="0.0612%" height="15" fill="rgb(234,18,33)" fg:x="250555" fg:w="294"/><text x="52.4155%" y="927.50"></text></g><g><title>readBytes (390 samples, 0.08%)</title><rect x="52.1634%" y="933" width="0.0812%" height="15" fill="rgb(234,12,49)" fg:x="250545" fg:w="390"/><text x="52.4134%" y="943.50"></text></g><g><title>jni_SetByteArrayRegion (50 samples, 0.01%)</title><rect x="52.2342%" y="917" width="0.0104%" height="15" fill="rgb(236,10,21)" fg:x="250885" fg:w="50"/><text x="52.4842%" y="927.50"></text></g><g><title>[unknown] (1,016 samples, 0.21%)</title><rect x="52.0370%" y="949" width="0.2115%" height="15" fill="rgb(248,182,45)" fg:x="249938" fg:w="1016"/><text x="52.2870%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.02%)</title><rect x="52.2506%" y="885" width="0.0189%" height="15" fill="rgb(217,95,36)" fg:x="250964" fg:w="91"/><text x="52.5006%" y="895.50"></text></g><g><title>x86_pmu_enable (91 samples, 0.02%)</title><rect x="52.2506%" y="869" width="0.0189%" height="15" fill="rgb(212,110,31)" fg:x="250964" fg:w="91"/><text x="52.5006%" y="879.50"></text></g><g><title>intel_pmu_enable_all (91 samples, 0.02%)</title><rect x="52.2506%" y="853" width="0.0189%" height="15" fill="rgb(206,32,53)" fg:x="250964" fg:w="91"/><text x="52.5006%" y="863.50"></text></g><g><title>native_write_msr (91 samples, 0.02%)</title><rect x="52.2506%" y="837" width="0.0189%" height="15" fill="rgb(246,141,37)" fg:x="250964" fg:w="91"/><text x="52.5006%" y="847.50"></text></g><g><title>schedule_tail (95 samples, 0.02%)</title><rect x="52.2500%" y="917" width="0.0198%" height="15" fill="rgb(219,16,7)" fg:x="250961" fg:w="95"/><text x="52.5000%" y="927.50"></text></g><g><title>finish_task_switch.isra.0 (93 samples, 0.02%)</title><rect x="52.2504%" y="901" width="0.0194%" height="15" fill="rgb(230,205,45)" fg:x="250963" fg:w="93"/><text x="52.5004%" y="911.50"></text></g><g><title>ret_from_fork (100 samples, 0.02%)</title><rect x="52.2498%" y="933" width="0.0208%" height="15" fill="rgb(231,43,49)" fg:x="250960" fg:w="100"/><text x="52.4998%" y="943.50"></text></g><g><title>__clone3 (195 samples, 0.04%)</title><rect x="52.2486%" y="949" width="0.0406%" height="15" fill="rgb(212,106,34)" fg:x="250954" fg:w="195"/><text x="52.4986%" y="959.50"></text></g><g><title>start_thread (89 samples, 0.02%)</title><rect x="52.2706%" y="933" width="0.0185%" height="15" fill="rgb(206,83,17)" fg:x="251060" fg:w="89"/><text x="52.5206%" y="943.50"></text></g><g><title>thread_native_entry (79 samples, 0.02%)</title><rect x="52.2727%" y="917" width="0.0164%" height="15" fill="rgb(244,154,49)" fg:x="251070" fg:w="79"/><text x="52.5227%" y="927.50"></text></g><g><title>asm_exc_page_fault (135 samples, 0.03%)</title><rect x="52.2892%" y="949" width="0.0281%" height="15" fill="rgb(244,149,49)" fg:x="251149" fg:w="135"/><text x="52.5392%" y="959.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.01%)</title><rect x="52.3252%" y="901" width="0.0148%" height="15" fill="rgb(227,134,18)" fg:x="251322" fg:w="71"/><text x="52.5752%" y="911.50"></text></g><g><title>x86_pmu_enable (70 samples, 0.01%)</title><rect x="52.3254%" y="885" width="0.0146%" height="15" fill="rgb(237,116,36)" fg:x="251323" fg:w="70"/><text x="52.5754%" y="895.50"></text></g><g><title>intel_pmu_enable_all (70 samples, 0.01%)</title><rect x="52.3254%" y="869" width="0.0146%" height="15" fill="rgb(205,129,40)" fg:x="251323" fg:w="70"/><text x="52.5754%" y="879.50"></text></g><g><title>native_write_msr (70 samples, 0.01%)</title><rect x="52.3254%" y="853" width="0.0146%" height="15" fill="rgb(236,178,4)" fg:x="251323" fg:w="70"/><text x="52.5754%" y="863.50"></text></g><g><title>ret_from_fork (72 samples, 0.01%)</title><rect x="52.3252%" y="949" width="0.0150%" height="15" fill="rgb(251,76,53)" fg:x="251322" fg:w="72"/><text x="52.5752%" y="959.50"></text></g><g><title>schedule_tail (72 samples, 0.01%)</title><rect x="52.3252%" y="933" width="0.0150%" height="15" fill="rgb(242,92,40)" fg:x="251322" fg:w="72"/><text x="52.5752%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (72 samples, 0.01%)</title><rect x="52.3252%" y="917" width="0.0150%" height="15" fill="rgb(209,45,30)" fg:x="251322" fg:w="72"/><text x="52.5752%" y="927.50"></text></g><g><title>skyframe-evalua (46,744 samples, 9.73%)</title><rect x="42.6085%" y="965" width="9.7321%" height="15" fill="rgb(218,157,36)" fg:x="204652" fg:w="46744"/><text x="42.8585%" y="975.50">skyframe-evalua</text></g><g><title>__perf_event_task_sched_in (78 samples, 0.02%)</title><rect x="52.3554%" y="677" width="0.0162%" height="15" fill="rgb(222,186,16)" fg:x="251467" fg:w="78"/><text x="52.6054%" y="687.50"></text></g><g><title>x86_pmu_enable (76 samples, 0.02%)</title><rect x="52.3558%" y="661" width="0.0158%" height="15" fill="rgb(254,72,35)" fg:x="251469" fg:w="76"/><text x="52.6058%" y="671.50"></text></g><g><title>intel_pmu_enable_all (75 samples, 0.02%)</title><rect x="52.3560%" y="645" width="0.0156%" height="15" fill="rgb(224,25,35)" fg:x="251470" fg:w="75"/><text x="52.6060%" y="655.50"></text></g><g><title>native_write_msr (75 samples, 0.02%)</title><rect x="52.3560%" y="629" width="0.0156%" height="15" fill="rgb(206,135,52)" fg:x="251470" fg:w="75"/><text x="52.6060%" y="639.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.02%)</title><rect x="52.3547%" y="789" width="0.0171%" height="15" fill="rgb(229,174,47)" fg:x="251464" fg:w="82"/><text x="52.6047%" y="799.50"></text></g><g><title>do_futex (82 samples, 0.02%)</title><rect x="52.3547%" y="773" width="0.0171%" height="15" fill="rgb(242,184,21)" fg:x="251464" fg:w="82"/><text x="52.6047%" y="783.50"></text></g><g><title>futex_wait (82 samples, 0.02%)</title><rect x="52.3547%" y="757" width="0.0171%" height="15" fill="rgb(213,22,45)" fg:x="251464" fg:w="82"/><text x="52.6047%" y="767.50"></text></g><g><title>futex_wait_queue_me (82 samples, 0.02%)</title><rect x="52.3547%" y="741" width="0.0171%" height="15" fill="rgb(237,81,54)" fg:x="251464" fg:w="82"/><text x="52.6047%" y="751.50"></text></g><g><title>schedule (81 samples, 0.02%)</title><rect x="52.3549%" y="725" width="0.0169%" height="15" fill="rgb(248,177,18)" fg:x="251465" fg:w="81"/><text x="52.6049%" y="735.50"></text></g><g><title>__schedule (81 samples, 0.02%)</title><rect x="52.3549%" y="709" width="0.0169%" height="15" fill="rgb(254,31,16)" fg:x="251465" fg:w="81"/><text x="52.6049%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (80 samples, 0.02%)</title><rect x="52.3552%" y="693" width="0.0167%" height="15" fill="rgb(235,20,31)" fg:x="251466" fg:w="80"/><text x="52.6052%" y="703.50"></text></g><g><title>___pthread_cond_wait (85 samples, 0.02%)</title><rect x="52.3543%" y="901" width="0.0177%" height="15" fill="rgb(240,56,43)" fg:x="251462" fg:w="85"/><text x="52.6043%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (85 samples, 0.02%)</title><rect x="52.3543%" y="885" width="0.0177%" height="15" fill="rgb(237,197,51)" fg:x="251462" fg:w="85"/><text x="52.6043%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (85 samples, 0.02%)</title><rect x="52.3543%" y="869" width="0.0177%" height="15" fill="rgb(241,162,44)" fg:x="251462" fg:w="85"/><text x="52.6043%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (85 samples, 0.02%)</title><rect x="52.3543%" y="853" width="0.0177%" height="15" fill="rgb(224,23,20)" fg:x="251462" fg:w="85"/><text x="52.6043%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (85 samples, 0.02%)</title><rect x="52.3543%" y="837" width="0.0177%" height="15" fill="rgb(250,109,34)" fg:x="251462" fg:w="85"/><text x="52.6043%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (84 samples, 0.02%)</title><rect x="52.3545%" y="821" width="0.0175%" height="15" fill="rgb(214,175,50)" fg:x="251463" fg:w="84"/><text x="52.6045%" y="831.50"></text></g><g><title>do_syscall_64 (84 samples, 0.02%)</title><rect x="52.3545%" y="805" width="0.0175%" height="15" fill="rgb(213,182,5)" fg:x="251463" fg:w="84"/><text x="52.6045%" y="815.50"></text></g><g><title>Unsafe_Park (96 samples, 0.02%)</title><rect x="52.3524%" y="933" width="0.0200%" height="15" fill="rgb(209,199,19)" fg:x="251453" fg:w="96"/><text x="52.6024%" y="943.50"></text></g><g><title>Parker::park (96 samples, 0.02%)</title><rect x="52.3524%" y="917" width="0.0200%" height="15" fill="rgb(236,224,42)" fg:x="251453" fg:w="96"/><text x="52.6024%" y="927.50"></text></g><g><title>[perf-712021.map] (160 samples, 0.03%)</title><rect x="52.3414%" y="949" width="0.0333%" height="15" fill="rgb(246,226,29)" fg:x="251400" fg:w="160"/><text x="52.5914%" y="959.50"></text></g><g><title>skyframe-invali (178 samples, 0.04%)</title><rect x="52.3406%" y="965" width="0.0371%" height="15" fill="rgb(227,223,11)" fg:x="251396" fg:w="178"/><text x="52.5906%" y="975.50"></text></g><g><title>[unknown] (223 samples, 0.05%)</title><rect x="52.3908%" y="949" width="0.0464%" height="15" fill="rgb(219,7,51)" fg:x="251637" fg:w="223"/><text x="52.6408%" y="959.50"></text></g><g><title>[zig] (223 samples, 0.05%)</title><rect x="52.3908%" y="933" width="0.0464%" height="15" fill="rgb(245,167,10)" fg:x="251637" fg:w="223"/><text x="52.6408%" y="943.50"></text></g><g><title>__entry_text_start (2,386 samples, 0.50%)</title><rect x="65.2993%" y="933" width="0.4968%" height="15" fill="rgb(237,224,16)" fg:x="313638" fg:w="2386"/><text x="65.5493%" y="943.50"></text></g><g><title>__irqentry_text_end (70 samples, 0.01%)</title><rect x="65.7961%" y="933" width="0.0146%" height="15" fill="rgb(226,132,13)" fg:x="316024" fg:w="70"/><text x="66.0461%" y="943.50"></text></g><g><title>btrfs_end_bio (58 samples, 0.01%)</title><rect x="65.8176%" y="581" width="0.0121%" height="15" fill="rgb(214,140,3)" fg:x="316127" fg:w="58"/><text x="66.0676%" y="591.50"></text></g><g><title>bio_endio (58 samples, 0.01%)</title><rect x="65.8176%" y="565" width="0.0121%" height="15" fill="rgb(221,177,4)" fg:x="316127" fg:w="58"/><text x="66.0676%" y="575.50"></text></g><g><title>end_bio_extent_writepage (56 samples, 0.01%)</title><rect x="65.8180%" y="549" width="0.0117%" height="15" fill="rgb(238,139,3)" fg:x="316129" fg:w="56"/><text x="66.0680%" y="559.50"></text></g><g><title>crypt_dec_pending (60 samples, 0.01%)</title><rect x="65.8174%" y="709" width="0.0125%" height="15" fill="rgb(216,17,39)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="719.50"></text></g><g><title>bio_endio (60 samples, 0.01%)</title><rect x="65.8174%" y="693" width="0.0125%" height="15" fill="rgb(238,120,9)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="703.50"></text></g><g><title>clone_endio (60 samples, 0.01%)</title><rect x="65.8174%" y="677" width="0.0125%" height="15" fill="rgb(244,92,53)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="687.50"></text></g><g><title>dm_io_dec_pending (60 samples, 0.01%)</title><rect x="65.8174%" y="661" width="0.0125%" height="15" fill="rgb(224,148,33)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="671.50"></text></g><g><title>bio_endio (60 samples, 0.01%)</title><rect x="65.8174%" y="645" width="0.0125%" height="15" fill="rgb(243,6,36)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="655.50"></text></g><g><title>clone_endio (60 samples, 0.01%)</title><rect x="65.8174%" y="629" width="0.0125%" height="15" fill="rgb(230,102,11)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="639.50"></text></g><g><title>dm_io_dec_pending (60 samples, 0.01%)</title><rect x="65.8174%" y="613" width="0.0125%" height="15" fill="rgb(234,148,36)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="623.50"></text></g><g><title>bio_endio (60 samples, 0.01%)</title><rect x="65.8174%" y="597" width="0.0125%" height="15" fill="rgb(251,153,25)" fg:x="316126" fg:w="60"/><text x="66.0674%" y="607.50"></text></g><g><title>nvme_complete_rq (99 samples, 0.02%)</title><rect x="65.8171%" y="789" width="0.0206%" height="15" fill="rgb(215,129,8)" fg:x="316125" fg:w="99"/><text x="66.0671%" y="799.50"></text></g><g><title>blk_mq_end_request (99 samples, 0.02%)</title><rect x="65.8171%" y="773" width="0.0206%" height="15" fill="rgb(224,128,35)" fg:x="316125" fg:w="99"/><text x="66.0671%" y="783.50"></text></g><g><title>blk_update_request (99 samples, 0.02%)</title><rect x="65.8171%" y="757" width="0.0206%" height="15" fill="rgb(237,56,52)" fg:x="316125" fg:w="99"/><text x="66.0671%" y="767.50"></text></g><g><title>bio_endio (98 samples, 0.02%)</title><rect x="65.8174%" y="741" width="0.0204%" height="15" fill="rgb(234,213,19)" fg:x="316126" fg:w="98"/><text x="66.0674%" y="751.50"></text></g><g><title>crypt_endio (98 samples, 0.02%)</title><rect x="65.8174%" y="725" width="0.0204%" height="15" fill="rgb(252,82,23)" fg:x="316126" fg:w="98"/><text x="66.0674%" y="735.50"></text></g><g><title>handle_edge_irq (106 samples, 0.02%)</title><rect x="65.8163%" y="885" width="0.0221%" height="15" fill="rgb(254,201,21)" fg:x="316121" fg:w="106"/><text x="66.0663%" y="895.50"></text></g><g><title>handle_irq_event (106 samples, 0.02%)</title><rect x="65.8163%" y="869" width="0.0221%" height="15" fill="rgb(250,186,11)" fg:x="316121" fg:w="106"/><text x="66.0663%" y="879.50"></text></g><g><title>__handle_irq_event_percpu (106 samples, 0.02%)</title><rect x="65.8163%" y="853" width="0.0221%" height="15" fill="rgb(211,174,5)" fg:x="316121" fg:w="106"/><text x="66.0663%" y="863.50"></text></g><g><title>nvme_irq (103 samples, 0.02%)</title><rect x="65.8169%" y="837" width="0.0214%" height="15" fill="rgb(214,121,10)" fg:x="316124" fg:w="103"/><text x="66.0669%" y="847.50"></text></g><g><title>nvme_process_cq (103 samples, 0.02%)</title><rect x="65.8169%" y="821" width="0.0214%" height="15" fill="rgb(241,66,2)" fg:x="316124" fg:w="103"/><text x="66.0669%" y="831.50"></text></g><g><title>nvme_pci_complete_rq (102 samples, 0.02%)</title><rect x="65.8171%" y="805" width="0.0212%" height="15" fill="rgb(220,167,19)" fg:x="316125" fg:w="102"/><text x="66.0671%" y="815.50"></text></g><g><title>__common_interrupt (114 samples, 0.02%)</title><rect x="65.8161%" y="901" width="0.0237%" height="15" fill="rgb(231,54,50)" fg:x="316120" fg:w="114"/><text x="66.0661%" y="911.50"></text></g><g><title>asm_common_interrupt (138 samples, 0.03%)</title><rect x="65.8161%" y="933" width="0.0287%" height="15" fill="rgb(239,217,53)" fg:x="316120" fg:w="138"/><text x="66.0661%" y="943.50"></text></g><g><title>common_interrupt (138 samples, 0.03%)</title><rect x="65.8161%" y="917" width="0.0287%" height="15" fill="rgb(248,8,0)" fg:x="316120" fg:w="138"/><text x="66.0661%" y="927.50"></text></g><g><title>vmacache_find (103 samples, 0.02%)</title><rect x="65.9202%" y="869" width="0.0214%" height="15" fill="rgb(229,118,37)" fg:x="316620" fg:w="103"/><text x="66.1702%" y="879.50"></text></g><g><title>find_vma (161 samples, 0.03%)</title><rect x="65.9088%" y="885" width="0.0335%" height="15" fill="rgb(253,223,43)" fg:x="316565" fg:w="161"/><text x="66.1588%" y="895.50"></text></g><g><title>__count_memcg_events (79 samples, 0.02%)</title><rect x="65.9787%" y="869" width="0.0164%" height="15" fill="rgb(211,77,36)" fg:x="316901" fg:w="79"/><text x="66.2287%" y="879.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="66.0766%" y="837" width="0.0102%" height="15" fill="rgb(219,3,53)" fg:x="317371" fg:w="49"/><text x="66.3266%" y="847.50"></text></g><g><title>__cgroup_throttle_swaprate (85 samples, 0.02%)</title><rect x="66.1080%" y="821" width="0.0177%" height="15" fill="rgb(244,45,42)" fg:x="317522" fg:w="85"/><text x="66.3580%" y="831.50"></text></g><g><title>mem_cgroup_charge_statistics.constprop.0 (49 samples, 0.01%)</title><rect x="66.1384%" y="789" width="0.0102%" height="15" fill="rgb(225,95,27)" fg:x="317668" fg:w="49"/><text x="66.3884%" y="799.50"></text></g><g><title>charge_memcg (217 samples, 0.05%)</title><rect x="66.1307%" y="805" width="0.0452%" height="15" fill="rgb(207,74,8)" fg:x="317631" fg:w="217"/><text x="66.3807%" y="815.50"></text></g><g><title>try_charge_memcg (127 samples, 0.03%)</title><rect x="66.1494%" y="789" width="0.0264%" height="15" fill="rgb(243,63,36)" fg:x="317721" fg:w="127"/><text x="66.3994%" y="799.50"></text></g><g><title>get_mem_cgroup_from_mm (74 samples, 0.02%)</title><rect x="66.1759%" y="805" width="0.0154%" height="15" fill="rgb(211,180,12)" fg:x="317848" fg:w="74"/><text x="66.4259%" y="815.50"></text></g><g><title>__mem_cgroup_charge (331 samples, 0.07%)</title><rect x="66.1282%" y="821" width="0.0689%" height="15" fill="rgb(254,166,49)" fg:x="317619" fg:w="331"/><text x="66.3782%" y="831.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (58 samples, 0.01%)</title><rect x="66.2354%" y="789" width="0.0121%" height="15" fill="rgb(205,19,0)" fg:x="318134" fg:w="58"/><text x="66.4854%" y="799.50"></text></g><g><title>clear_page_erms (561 samples, 0.12%)</title><rect x="66.2743%" y="773" width="0.1168%" height="15" fill="rgb(224,172,32)" fg:x="318321" fg:w="561"/><text x="66.5243%" y="783.50"></text></g><g><title>rmqueue_bulk (147 samples, 0.03%)</title><rect x="66.4232%" y="757" width="0.0306%" height="15" fill="rgb(254,136,30)" fg:x="319036" fg:w="147"/><text x="66.6732%" y="767.50"></text></g><g><title>get_page_from_freelist (945 samples, 0.20%)</title><rect x="66.2573%" y="789" width="0.1967%" height="15" fill="rgb(246,19,35)" fg:x="318239" fg:w="945"/><text x="66.5073%" y="799.50"></text></g><g><title>rmqueue (289 samples, 0.06%)</title><rect x="66.3939%" y="773" width="0.0602%" height="15" fill="rgb(219,24,36)" fg:x="318895" fg:w="289"/><text x="66.6439%" y="783.50"></text></g><g><title>__alloc_pages (1,132 samples, 0.24%)</title><rect x="66.2217%" y="805" width="0.2357%" height="15" fill="rgb(251,55,1)" fg:x="318068" fg:w="1132"/><text x="66.4717%" y="815.50"></text></g><g><title>alloc_pages_vma (1,256 samples, 0.26%)</title><rect x="66.2081%" y="821" width="0.2615%" height="15" fill="rgb(218,117,39)" fg:x="318003" fg:w="1256"/><text x="66.4581%" y="831.50"></text></g><g><title>__pagevec_lru_add_fn (200 samples, 0.04%)</title><rect x="66.4950%" y="773" width="0.0416%" height="15" fill="rgb(248,169,11)" fg:x="319381" fg:w="200"/><text x="66.7450%" y="783.50"></text></g><g><title>__pagevec_lru_add (291 samples, 0.06%)</title><rect x="66.4861%" y="789" width="0.0606%" height="15" fill="rgb(244,40,44)" fg:x="319338" fg:w="291"/><text x="66.7361%" y="799.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (342 samples, 0.07%)</title><rect x="66.4763%" y="821" width="0.0712%" height="15" fill="rgb(234,62,37)" fg:x="319291" fg:w="342"/><text x="66.7263%" y="831.50"></text></g><g><title>lru_cache_add (332 samples, 0.07%)</title><rect x="66.4784%" y="805" width="0.0691%" height="15" fill="rgb(207,117,42)" fg:x="319301" fg:w="332"/><text x="66.7284%" y="815.50"></text></g><g><title>__mod_lruvec_state (68 samples, 0.01%)</title><rect x="66.5665%" y="789" width="0.0142%" height="15" fill="rgb(213,43,2)" fg:x="319724" fg:w="68"/><text x="66.8165%" y="799.50"></text></g><g><title>__mod_lruvec_page_state (144 samples, 0.03%)</title><rect x="66.5517%" y="805" width="0.0300%" height="15" fill="rgb(244,202,51)" fg:x="319653" fg:w="144"/><text x="66.8017%" y="815.50"></text></g><g><title>page_add_new_anon_rmap (180 samples, 0.04%)</title><rect x="66.5492%" y="821" width="0.0375%" height="15" fill="rgb(253,174,46)" fg:x="319641" fg:w="180"/><text x="66.7992%" y="831.50"></text></g><g><title>do_anonymous_page (2,436 samples, 0.51%)</title><rect x="66.0891%" y="837" width="0.5072%" height="15" fill="rgb(251,23,1)" fg:x="317431" fg:w="2436"/><text x="66.3391%" y="847.50"></text></g><g><title>filemap_fault (58 samples, 0.01%)</title><rect x="66.5977%" y="805" width="0.0121%" height="15" fill="rgb(253,26,1)" fg:x="319874" fg:w="58"/><text x="66.8477%" y="815.50"></text></g><g><title>__do_fault (60 samples, 0.01%)</title><rect x="66.5977%" y="821" width="0.0125%" height="15" fill="rgb(216,89,31)" fg:x="319874" fg:w="60"/><text x="66.8477%" y="831.50"></text></g><g><title>btrfs_page_mkwrite (68 samples, 0.01%)</title><rect x="66.6104%" y="805" width="0.0142%" height="15" fill="rgb(209,109,5)" fg:x="319935" fg:w="68"/><text x="66.8604%" y="815.50"></text></g><g><title>do_page_mkwrite (69 samples, 0.01%)</title><rect x="66.6104%" y="821" width="0.0144%" height="15" fill="rgb(229,63,13)" fg:x="319935" fg:w="69"/><text x="66.8604%" y="831.50"></text></g><g><title>__mod_lruvec_page_state (57 samples, 0.01%)</title><rect x="66.7203%" y="757" width="0.0119%" height="15" fill="rgb(238,137,54)" fg:x="320463" fg:w="57"/><text x="66.9703%" y="767.50"></text></g><g><title>lock_page_memcg (56 samples, 0.01%)</title><rect x="66.7322%" y="757" width="0.0117%" height="15" fill="rgb(228,1,9)" fg:x="320520" fg:w="56"/><text x="66.9822%" y="767.50"></text></g><g><title>page_add_file_rmap (254 samples, 0.05%)</title><rect x="66.6978%" y="773" width="0.0529%" height="15" fill="rgb(249,120,48)" fg:x="320355" fg:w="254"/><text x="66.9478%" y="783.50"></text></g><g><title>do_set_pte (452 samples, 0.09%)</title><rect x="66.6635%" y="789" width="0.0941%" height="15" fill="rgb(209,72,36)" fg:x="320190" fg:w="452"/><text x="66.9135%" y="799.50"></text></g><g><title>next_uptodate_page (538 samples, 0.11%)</title><rect x="66.7628%" y="789" width="0.1120%" height="15" fill="rgb(247,98,49)" fg:x="320667" fg:w="538"/><text x="67.0128%" y="799.50"></text></g><g><title>xas_load (102 samples, 0.02%)</title><rect x="66.8871%" y="773" width="0.0212%" height="15" fill="rgb(233,75,36)" fg:x="321264" fg:w="102"/><text x="67.1371%" y="783.50"></text></g><g><title>xas_find (144 samples, 0.03%)</title><rect x="66.8798%" y="789" width="0.0300%" height="15" fill="rgb(225,14,24)" fg:x="321229" fg:w="144"/><text x="67.1298%" y="799.50"></text></g><g><title>filemap_map_pages (1,328 samples, 0.28%)</title><rect x="66.6337%" y="805" width="0.2765%" height="15" fill="rgb(237,193,20)" fg:x="320047" fg:w="1328"/><text x="66.8837%" y="815.50"></text></g><g><title>pte_alloc_one (56 samples, 0.01%)</title><rect x="66.9123%" y="805" width="0.0117%" height="15" fill="rgb(239,122,19)" fg:x="321385" fg:w="56"/><text x="67.1623%" y="815.50"></text></g><g><title>unlock_page (116 samples, 0.02%)</title><rect x="66.9239%" y="805" width="0.0242%" height="15" fill="rgb(231,220,10)" fg:x="321441" fg:w="116"/><text x="67.1739%" y="815.50"></text></g><g><title>do_read_fault (1,602 samples, 0.33%)</title><rect x="66.6247%" y="821" width="0.3335%" height="15" fill="rgb(220,66,15)" fg:x="320004" fg:w="1602"/><text x="66.8747%" y="831.50"></text></g><g><title>do_fault (1,770 samples, 0.37%)</title><rect x="66.5962%" y="837" width="0.3685%" height="15" fill="rgb(215,171,52)" fg:x="319867" fg:w="1770"/><text x="66.8462%" y="847.50"></text></g><g><title>wp_page_copy (49 samples, 0.01%)</title><rect x="66.9718%" y="821" width="0.0102%" height="15" fill="rgb(241,169,50)" fg:x="321671" fg:w="49"/><text x="67.2218%" y="831.50"></text></g><g><title>do_wp_page (59 samples, 0.01%)</title><rect x="66.9699%" y="837" width="0.0123%" height="15" fill="rgb(236,189,0)" fg:x="321662" fg:w="59"/><text x="67.2199%" y="847.50"></text></g><g><title>handle_pte_fault (4,498 samples, 0.94%)</title><rect x="66.0541%" y="853" width="0.9365%" height="15" fill="rgb(217,147,20)" fg:x="317263" fg:w="4498"/><text x="66.3041%" y="863.50"></text></g><g><title>__handle_mm_fault (4,811 samples, 1.00%)</title><rect x="65.9952%" y="869" width="1.0016%" height="15" fill="rgb(206,188,39)" fg:x="316980" fg:w="4811"/><text x="66.2452%" y="879.50"></text></g><g><title>handle_mm_fault (5,136 samples, 1.07%)</title><rect x="65.9423%" y="885" width="1.0693%" height="15" fill="rgb(227,118,25)" fg:x="316726" fg:w="5136"/><text x="66.1923%" y="895.50"></text></g><g><title>do_user_addr_fault (5,552 samples, 1.16%)</title><rect x="65.8644%" y="901" width="1.1559%" height="15" fill="rgb(248,171,40)" fg:x="316352" fg:w="5552"/><text x="66.1144%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (94 samples, 0.02%)</title><rect x="67.0343%" y="789" width="0.0196%" height="15" fill="rgb(251,90,54)" fg:x="321971" fg:w="94"/><text x="67.2843%" y="799.50"></text></g><g><title>x86_pmu_enable (93 samples, 0.02%)</title><rect x="67.0345%" y="773" width="0.0194%" height="15" fill="rgb(234,11,46)" fg:x="321972" fg:w="93"/><text x="67.2845%" y="783.50"></text></g><g><title>intel_pmu_enable_all (93 samples, 0.02%)</title><rect x="67.0345%" y="757" width="0.0194%" height="15" fill="rgb(229,134,13)" fg:x="321972" fg:w="93"/><text x="67.2845%" y="767.50"></text></g><g><title>native_write_msr (90 samples, 0.02%)</title><rect x="67.0351%" y="741" width="0.0187%" height="15" fill="rgb(223,129,3)" fg:x="321975" fg:w="90"/><text x="67.2851%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (100 samples, 0.02%)</title><rect x="67.0343%" y="805" width="0.0208%" height="15" fill="rgb(221,124,13)" fg:x="321971" fg:w="100"/><text x="67.2843%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (111 samples, 0.02%)</title><rect x="67.0339%" y="853" width="0.0231%" height="15" fill="rgb(234,3,18)" fg:x="321969" fg:w="111"/><text x="67.2839%" y="863.50"></text></g><g><title>schedule (110 samples, 0.02%)</title><rect x="67.0341%" y="837" width="0.0229%" height="15" fill="rgb(249,199,20)" fg:x="321970" fg:w="110"/><text x="67.2841%" y="847.50"></text></g><g><title>__schedule (110 samples, 0.02%)</title><rect x="67.0341%" y="821" width="0.0229%" height="15" fill="rgb(224,134,6)" fg:x="321970" fg:w="110"/><text x="67.2841%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (159 samples, 0.03%)</title><rect x="67.0266%" y="869" width="0.0331%" height="15" fill="rgb(254,83,26)" fg:x="321934" fg:w="159"/><text x="67.2766%" y="879.50"></text></g><g><title>irqentry_exit (173 samples, 0.04%)</title><rect x="67.0249%" y="901" width="0.0360%" height="15" fill="rgb(217,88,9)" fg:x="321926" fg:w="173"/><text x="67.2749%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (166 samples, 0.03%)</title><rect x="67.0264%" y="885" width="0.0346%" height="15" fill="rgb(225,73,2)" fg:x="321933" fg:w="166"/><text x="67.2764%" y="895.50"></text></g><g><title>exc_page_fault (5,833 samples, 1.21%)</title><rect x="65.8542%" y="917" width="1.2144%" height="15" fill="rgb(226,44,39)" fg:x="316303" fg:w="5833"/><text x="66.1042%" y="927.50"></text></g><g><title>asm_exc_page_fault (5,884 samples, 1.23%)</title><rect x="65.8448%" y="933" width="1.2250%" height="15" fill="rgb(228,53,17)" fg:x="316258" fg:w="5884"/><text x="66.0948%" y="943.50"></text></g><g><title>tick_sched_handle (67 samples, 0.01%)</title><rect x="67.0817%" y="837" width="0.0139%" height="15" fill="rgb(212,27,27)" fg:x="322199" fg:w="67"/><text x="67.3317%" y="847.50"></text></g><g><title>update_process_times (65 samples, 0.01%)</title><rect x="67.0822%" y="821" width="0.0135%" height="15" fill="rgb(241,50,6)" fg:x="322201" fg:w="65"/><text x="67.3322%" y="831.50"></text></g><g><title>tick_sched_timer (74 samples, 0.02%)</title><rect x="67.0809%" y="853" width="0.0154%" height="15" fill="rgb(225,28,51)" fg:x="322195" fg:w="74"/><text x="67.3309%" y="863.50"></text></g><g><title>__hrtimer_run_queues (118 samples, 0.02%)</title><rect x="67.0720%" y="869" width="0.0246%" height="15" fill="rgb(215,33,16)" fg:x="322152" fg:w="118"/><text x="67.3220%" y="879.50"></text></g><g><title>__sysvec_apic_timer_interrupt (136 samples, 0.03%)</title><rect x="67.0705%" y="901" width="0.0283%" height="15" fill="rgb(243,40,39)" fg:x="322145" fg:w="136"/><text x="67.3205%" y="911.50"></text></g><g><title>hrtimer_interrupt (134 samples, 0.03%)</title><rect x="67.0709%" y="885" width="0.0279%" height="15" fill="rgb(225,11,42)" fg:x="322147" fg:w="134"/><text x="67.3209%" y="895.50"></text></g><g><title>memcg_slab_free_hook (53 samples, 0.01%)</title><rect x="67.1267%" y="789" width="0.0110%" height="15" fill="rgb(241,220,38)" fg:x="322415" fg:w="53"/><text x="67.3767%" y="799.50"></text></g><g><title>file_free_rcu (118 samples, 0.02%)</title><rect x="67.1159%" y="821" width="0.0246%" height="15" fill="rgb(244,52,35)" fg:x="322363" fg:w="118"/><text x="67.3659%" y="831.50"></text></g><g><title>kmem_cache_free (105 samples, 0.02%)</title><rect x="67.1186%" y="805" width="0.0219%" height="15" fill="rgb(246,42,46)" fg:x="322376" fg:w="105"/><text x="67.3686%" y="815.50"></text></g><g><title>i_callback (56 samples, 0.01%)</title><rect x="67.1411%" y="821" width="0.0117%" height="15" fill="rgb(205,184,13)" fg:x="322484" fg:w="56"/><text x="67.3911%" y="831.50"></text></g><g><title>btrfs_free_inode (56 samples, 0.01%)</title><rect x="67.1411%" y="805" width="0.0117%" height="15" fill="rgb(209,48,36)" fg:x="322484" fg:w="56"/><text x="67.3911%" y="815.50"></text></g><g><title>kmem_cache_free (55 samples, 0.01%)</title><rect x="67.1413%" y="789" width="0.0115%" height="15" fill="rgb(244,34,51)" fg:x="322485" fg:w="55"/><text x="67.3913%" y="799.50"></text></g><g><title>rcu_cblist_dequeue (75 samples, 0.02%)</title><rect x="67.1571%" y="821" width="0.0156%" height="15" fill="rgb(221,107,33)" fg:x="322561" fg:w="75"/><text x="67.4071%" y="831.50"></text></g><g><title>rcu_do_batch (341 samples, 0.07%)</title><rect x="67.1024%" y="837" width="0.0710%" height="15" fill="rgb(224,203,12)" fg:x="322298" fg:w="341"/><text x="67.3524%" y="847.50"></text></g><g><title>rcu_core_si (352 samples, 0.07%)</title><rect x="67.1003%" y="869" width="0.0733%" height="15" fill="rgb(230,215,18)" fg:x="322288" fg:w="352"/><text x="67.3503%" y="879.50"></text></g><g><title>rcu_core (352 samples, 0.07%)</title><rect x="67.1003%" y="853" width="0.0733%" height="15" fill="rgb(206,185,35)" fg:x="322288" fg:w="352"/><text x="67.3503%" y="863.50"></text></g><g><title>__softirqentry_text_start (393 samples, 0.08%)</title><rect x="67.0997%" y="885" width="0.0818%" height="15" fill="rgb(228,140,34)" fg:x="322285" fg:w="393"/><text x="67.3497%" y="895.50"></text></g><g><title>irq_exit_rcu (397 samples, 0.08%)</title><rect x="67.0990%" y="901" width="0.0827%" height="15" fill="rgb(208,93,13)" fg:x="322282" fg:w="397"/><text x="67.3490%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (249 samples, 0.05%)</title><rect x="67.1856%" y="789" width="0.0518%" height="15" fill="rgb(221,193,39)" fg:x="322698" fg:w="249"/><text x="67.4356%" y="799.50"></text></g><g><title>x86_pmu_enable (240 samples, 0.05%)</title><rect x="67.1875%" y="773" width="0.0500%" height="15" fill="rgb(241,132,34)" fg:x="322707" fg:w="240"/><text x="67.4375%" y="783.50"></text></g><g><title>intel_pmu_enable_all (236 samples, 0.05%)</title><rect x="67.1883%" y="757" width="0.0491%" height="15" fill="rgb(221,141,10)" fg:x="322711" fg:w="236"/><text x="67.4383%" y="767.50"></text></g><g><title>native_write_msr (236 samples, 0.05%)</title><rect x="67.1883%" y="741" width="0.0491%" height="15" fill="rgb(226,90,31)" fg:x="322711" fg:w="236"/><text x="67.4383%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (264 samples, 0.05%)</title><rect x="67.1850%" y="805" width="0.0550%" height="15" fill="rgb(243,75,5)" fg:x="322695" fg:w="264"/><text x="67.4350%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (289 samples, 0.06%)</title><rect x="67.1821%" y="853" width="0.0602%" height="15" fill="rgb(227,156,21)" fg:x="322681" fg:w="289"/><text x="67.4321%" y="863.50"></text></g><g><title>schedule (286 samples, 0.06%)</title><rect x="67.1827%" y="837" width="0.0595%" height="15" fill="rgb(250,195,8)" fg:x="322684" fg:w="286"/><text x="67.4327%" y="847.50"></text></g><g><title>__schedule (283 samples, 0.06%)</title><rect x="67.1833%" y="821" width="0.0589%" height="15" fill="rgb(220,134,5)" fg:x="322687" fg:w="283"/><text x="67.4333%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (291 samples, 0.06%)</title><rect x="67.1821%" y="869" width="0.0606%" height="15" fill="rgb(246,106,34)" fg:x="322681" fg:w="291"/><text x="67.4321%" y="879.50"></text></g><g><title>irqentry_exit (294 samples, 0.06%)</title><rect x="67.1817%" y="901" width="0.0612%" height="15" fill="rgb(205,1,4)" fg:x="322679" fg:w="294"/><text x="67.4317%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (294 samples, 0.06%)</title><rect x="67.1817%" y="885" width="0.0612%" height="15" fill="rgb(224,151,29)" fg:x="322679" fg:w="294"/><text x="67.4317%" y="895.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (832 samples, 0.17%)</title><rect x="67.0699%" y="933" width="0.1732%" height="15" fill="rgb(251,196,0)" fg:x="322142" fg:w="832"/><text x="67.3199%" y="943.50"></text></g><g><title>sysvec_apic_timer_interrupt (830 samples, 0.17%)</title><rect x="67.0703%" y="917" width="0.1728%" height="15" fill="rgb(212,127,0)" fg:x="322144" fg:w="830"/><text x="67.3203%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (289 samples, 0.06%)</title><rect x="67.2531%" y="789" width="0.0602%" height="15" fill="rgb(236,71,53)" fg:x="323022" fg:w="289"/><text x="67.5031%" y="799.50"></text></g><g><title>x86_pmu_enable (277 samples, 0.06%)</title><rect x="67.2556%" y="773" width="0.0577%" height="15" fill="rgb(227,99,0)" fg:x="323034" fg:w="277"/><text x="67.5056%" y="783.50"></text></g><g><title>intel_pmu_enable_all (275 samples, 0.06%)</title><rect x="67.2560%" y="757" width="0.0573%" height="15" fill="rgb(239,89,21)" fg:x="323036" fg:w="275"/><text x="67.5060%" y="767.50"></text></g><g><title>native_write_msr (270 samples, 0.06%)</title><rect x="67.2571%" y="741" width="0.0562%" height="15" fill="rgb(243,122,19)" fg:x="323041" fg:w="270"/><text x="67.5071%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (313 samples, 0.07%)</title><rect x="67.2510%" y="805" width="0.0652%" height="15" fill="rgb(229,192,45)" fg:x="323012" fg:w="313"/><text x="67.5010%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (354 samples, 0.07%)</title><rect x="67.2485%" y="853" width="0.0737%" height="15" fill="rgb(235,165,35)" fg:x="323000" fg:w="354"/><text x="67.4985%" y="863.50"></text></g><g><title>schedule (351 samples, 0.07%)</title><rect x="67.2491%" y="837" width="0.0731%" height="15" fill="rgb(253,202,0)" fg:x="323003" fg:w="351"/><text x="67.4991%" y="847.50"></text></g><g><title>__schedule (351 samples, 0.07%)</title><rect x="67.2491%" y="821" width="0.0731%" height="15" fill="rgb(235,51,20)" fg:x="323003" fg:w="351"/><text x="67.4991%" y="831.50"></text></g><g><title>asm_sysvec_reschedule_ipi (359 samples, 0.07%)</title><rect x="67.2479%" y="933" width="0.0747%" height="15" fill="rgb(218,95,46)" fg:x="322997" fg:w="359"/><text x="67.4979%" y="943.50"></text></g><g><title>sysvec_reschedule_ipi (357 samples, 0.07%)</title><rect x="67.2483%" y="917" width="0.0743%" height="15" fill="rgb(212,81,10)" fg:x="322999" fg:w="357"/><text x="67.4983%" y="927.50"></text></g><g><title>irqentry_exit (356 samples, 0.07%)</title><rect x="67.2485%" y="901" width="0.0741%" height="15" fill="rgb(240,59,0)" fg:x="323000" fg:w="356"/><text x="67.4985%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (356 samples, 0.07%)</title><rect x="67.2485%" y="885" width="0.0741%" height="15" fill="rgb(212,191,42)" fg:x="323000" fg:w="356"/><text x="67.4985%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (356 samples, 0.07%)</title><rect x="67.2485%" y="869" width="0.0741%" height="15" fill="rgb(233,140,3)" fg:x="323000" fg:w="356"/><text x="67.4985%" y="879.50"></text></g><g><title>do_syscall_64 (99 samples, 0.02%)</title><rect x="67.3226%" y="933" width="0.0206%" height="15" fill="rgb(215,69,23)" fg:x="323356" fg:w="99"/><text x="67.5726%" y="943.50"></text></g><g><title>dup_task_struct (56 samples, 0.01%)</title><rect x="67.7444%" y="837" width="0.0117%" height="15" fill="rgb(240,202,20)" fg:x="325382" fg:w="56"/><text x="67.9944%" y="847.50"></text></g><g><title>perf_event_alloc (51 samples, 0.01%)</title><rect x="67.7599%" y="773" width="0.0106%" height="15" fill="rgb(209,146,50)" fg:x="325456" fg:w="51"/><text x="68.0099%" y="783.50"></text></g><g><title>inherit_event.constprop.0 (57 samples, 0.01%)</title><rect x="67.7588%" y="789" width="0.0119%" height="15" fill="rgb(253,102,54)" fg:x="325451" fg:w="57"/><text x="68.0088%" y="799.50"></text></g><g><title>perf_event_init_task (68 samples, 0.01%)</title><rect x="67.7578%" y="837" width="0.0142%" height="15" fill="rgb(250,173,47)" fg:x="325446" fg:w="68"/><text x="68.0078%" y="847.50"></text></g><g><title>perf_event_init_context (66 samples, 0.01%)</title><rect x="67.7582%" y="821" width="0.0137%" height="15" fill="rgb(232,142,7)" fg:x="325448" fg:w="66"/><text x="68.0082%" y="831.50"></text></g><g><title>inherit_task_group.isra.0 (66 samples, 0.01%)</title><rect x="67.7582%" y="805" width="0.0137%" height="15" fill="rgb(230,157,47)" fg:x="325448" fg:w="66"/><text x="68.0082%" y="815.50"></text></g><g><title>copy_process (163 samples, 0.03%)</title><rect x="67.7390%" y="853" width="0.0339%" height="15" fill="rgb(214,177,35)" fg:x="325356" fg:w="163"/><text x="67.9890%" y="863.50"></text></g><g><title>__x64_sys_clone (194 samples, 0.04%)</title><rect x="67.7386%" y="901" width="0.0404%" height="15" fill="rgb(234,119,46)" fg:x="325354" fg:w="194"/><text x="67.9886%" y="911.50"></text></g><g><title>__do_sys_clone (194 samples, 0.04%)</title><rect x="67.7386%" y="885" width="0.0404%" height="15" fill="rgb(241,180,50)" fg:x="325354" fg:w="194"/><text x="67.9886%" y="895.50"></text></g><g><title>kernel_clone (194 samples, 0.04%)</title><rect x="67.7386%" y="869" width="0.0404%" height="15" fill="rgb(221,54,25)" fg:x="325354" fg:w="194"/><text x="67.9886%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (196 samples, 0.04%)</title><rect x="67.7942%" y="709" width="0.0408%" height="15" fill="rgb(209,157,44)" fg:x="325621" fg:w="196"/><text x="68.0442%" y="719.50"></text></g><g><title>x86_pmu_enable (191 samples, 0.04%)</title><rect x="67.7952%" y="693" width="0.0398%" height="15" fill="rgb(246,115,41)" fg:x="325626" fg:w="191"/><text x="68.0452%" y="703.50"></text></g><g><title>intel_pmu_enable_all (188 samples, 0.04%)</title><rect x="67.7959%" y="677" width="0.0391%" height="15" fill="rgb(229,86,1)" fg:x="325629" fg:w="188"/><text x="68.0459%" y="687.50"></text></g><g><title>native_write_msr (185 samples, 0.04%)</title><rect x="67.7965%" y="661" width="0.0385%" height="15" fill="rgb(240,108,53)" fg:x="325632" fg:w="185"/><text x="68.0465%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (213 samples, 0.04%)</title><rect x="67.7934%" y="725" width="0.0443%" height="15" fill="rgb(227,134,2)" fg:x="325617" fg:w="213"/><text x="68.0434%" y="735.50"></text></g><g><title>schedule (217 samples, 0.05%)</title><rect x="67.7930%" y="757" width="0.0452%" height="15" fill="rgb(213,129,25)" fg:x="325615" fg:w="217"/><text x="68.0430%" y="767.50"></text></g><g><title>__schedule (217 samples, 0.05%)</title><rect x="67.7930%" y="741" width="0.0452%" height="15" fill="rgb(226,35,21)" fg:x="325615" fg:w="217"/><text x="68.0430%" y="751.50"></text></g><g><title>de_thread (229 samples, 0.05%)</title><rect x="67.7913%" y="773" width="0.0477%" height="15" fill="rgb(208,129,26)" fg:x="325607" fg:w="229"/><text x="68.0413%" y="783.50"></text></g><g><title>begin_new_exec (245 samples, 0.05%)</title><rect x="67.7907%" y="789" width="0.0510%" height="15" fill="rgb(224,83,6)" fg:x="325604" fg:w="245"/><text x="68.0407%" y="799.50"></text></g><g><title>load_elf_binary (248 samples, 0.05%)</title><rect x="67.7905%" y="805" width="0.0516%" height="15" fill="rgb(227,52,39)" fg:x="325603" fg:w="248"/><text x="68.0405%" y="815.50"></text></g><g><title>_ZdlPv (303 samples, 0.06%)</title><rect x="67.8548%" y="581" width="0.0631%" height="15" fill="rgb(241,30,17)" fg:x="325912" fg:w="303"/><text x="68.1048%" y="591.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (302 samples, 0.06%)</title><rect x="67.8550%" y="565" width="0.0629%" height="15" fill="rgb(246,186,42)" fg:x="325913" fg:w="302"/><text x="68.1050%" y="575.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (253 samples, 0.05%)</title><rect x="67.8652%" y="549" width="0.0527%" height="15" fill="rgb(221,169,15)" fg:x="325962" fg:w="253"/><text x="68.1152%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (50 samples, 0.01%)</title><rect x="67.9075%" y="533" width="0.0104%" height="15" fill="rgb(235,108,21)" fg:x="326165" fg:w="50"/><text x="68.1575%" y="543.50"></text></g><g><title>_ZdlPv (305 samples, 0.06%)</title><rect x="67.8546%" y="597" width="0.0635%" height="15" fill="rgb(219,148,30)" fg:x="325911" fg:w="305"/><text x="68.1046%" y="607.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (306 samples, 0.06%)</title><rect x="67.8546%" y="613" width="0.0637%" height="15" fill="rgb(220,109,5)" fg:x="325911" fg:w="306"/><text x="68.1046%" y="623.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (338 samples, 0.07%)</title><rect x="67.8533%" y="629" width="0.0704%" height="15" fill="rgb(213,203,48)" fg:x="325905" fg:w="338"/><text x="68.1033%" y="639.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (349 samples, 0.07%)</title><rect x="67.8517%" y="645" width="0.0727%" height="15" fill="rgb(244,71,33)" fg:x="325897" fg:w="349"/><text x="68.1017%" y="655.50"></text></g><g><title>_ZdlPv (59 samples, 0.01%)</title><rect x="67.9285%" y="565" width="0.0123%" height="15" fill="rgb(209,23,2)" fg:x="326266" fg:w="59"/><text x="68.1785%" y="575.50"></text></g><g><title>_ZdlPv (65 samples, 0.01%)</title><rect x="67.9279%" y="581" width="0.0135%" height="15" fill="rgb(219,97,7)" fg:x="326263" fg:w="65"/><text x="68.1779%" y="591.50"></text></g><g><title>_ZdlPv (82 samples, 0.02%)</title><rect x="67.9277%" y="597" width="0.0171%" height="15" fill="rgb(216,161,23)" fg:x="326262" fg:w="82"/><text x="68.1777%" y="607.50"></text></g><g><title>_ZdlPv (88 samples, 0.02%)</title><rect x="67.9270%" y="613" width="0.0183%" height="15" fill="rgb(207,45,42)" fg:x="326259" fg:w="88"/><text x="68.1770%" y="623.50"></text></g><g><title>_ZdlPv (104 samples, 0.02%)</title><rect x="67.9250%" y="629" width="0.0217%" height="15" fill="rgb(241,61,4)" fg:x="326249" fg:w="104"/><text x="68.1750%" y="639.50"></text></g><g><title>_ZdlPv (120 samples, 0.02%)</title><rect x="67.9243%" y="645" width="0.0250%" height="15" fill="rgb(236,170,1)" fg:x="326246" fg:w="120"/><text x="68.1743%" y="655.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (170 samples, 0.04%)</title><rect x="67.9512%" y="597" width="0.0354%" height="15" fill="rgb(239,72,5)" fg:x="326375" fg:w="170"/><text x="68.2012%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (147 samples, 0.03%)</title><rect x="67.9560%" y="581" width="0.0306%" height="15" fill="rgb(214,13,50)" fg:x="326398" fg:w="147"/><text x="68.2060%" y="591.50"></text></g><g><title>_ZdlPv (176 samples, 0.04%)</title><rect x="67.9506%" y="629" width="0.0366%" height="15" fill="rgb(224,88,9)" fg:x="326372" fg:w="176"/><text x="68.2006%" y="639.50"></text></g><g><title>_ZdlPv (176 samples, 0.04%)</title><rect x="67.9506%" y="613" width="0.0366%" height="15" fill="rgb(238,192,34)" fg:x="326372" fg:w="176"/><text x="68.2006%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (82 samples, 0.02%)</title><rect x="68.0214%" y="485" width="0.0171%" height="15" fill="rgb(217,203,50)" fg:x="326712" fg:w="82"/><text x="68.2714%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (64 samples, 0.01%)</title><rect x="68.0251%" y="469" width="0.0133%" height="15" fill="rgb(241,123,32)" fg:x="326730" fg:w="64"/><text x="68.2751%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (96 samples, 0.02%)</title><rect x="68.0186%" y="517" width="0.0200%" height="15" fill="rgb(248,151,39)" fg:x="326699" fg:w="96"/><text x="68.2686%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (87 samples, 0.02%)</title><rect x="68.0205%" y="501" width="0.0181%" height="15" fill="rgb(208,89,6)" fg:x="326708" fg:w="87"/><text x="68.2705%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (113 samples, 0.02%)</title><rect x="68.0153%" y="533" width="0.0235%" height="15" fill="rgb(254,43,26)" fg:x="326683" fg:w="113"/><text x="68.2653%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (132 samples, 0.03%)</title><rect x="68.0118%" y="549" width="0.0275%" height="15" fill="rgb(216,158,13)" fg:x="326666" fg:w="132"/><text x="68.2618%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.03%)</title><rect x="68.0105%" y="565" width="0.0294%" height="15" fill="rgb(212,47,37)" fg:x="326660" fg:w="141"/><text x="68.2605%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (176 samples, 0.04%)</title><rect x="68.0045%" y="597" width="0.0366%" height="15" fill="rgb(254,16,10)" fg:x="326631" fg:w="176"/><text x="68.2545%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (151 samples, 0.03%)</title><rect x="68.0097%" y="581" width="0.0314%" height="15" fill="rgb(223,228,16)" fg:x="326656" fg:w="151"/><text x="68.2597%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (236 samples, 0.05%)</title><rect x="67.9939%" y="613" width="0.0491%" height="15" fill="rgb(249,108,50)" fg:x="326580" fg:w="236"/><text x="68.2439%" y="623.50"></text></g><g><title>_ZdlPv (935 samples, 0.19%)</title><rect x="67.8496%" y="661" width="0.1947%" height="15" fill="rgb(208,220,5)" fg:x="325887" fg:w="935"/><text x="68.0996%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (453 samples, 0.09%)</title><rect x="67.9499%" y="645" width="0.0943%" height="15" fill="rgb(217,89,48)" fg:x="326369" fg:w="453"/><text x="68.1999%" y="655.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (273 samples, 0.06%)</title><rect x="67.9874%" y="629" width="0.0568%" height="15" fill="rgb(212,113,41)" fg:x="326549" fg:w="273"/><text x="68.2374%" y="639.50"></text></g><g><title>_ZdlPv (940 samples, 0.20%)</title><rect x="67.8488%" y="693" width="0.1957%" height="15" fill="rgb(231,127,5)" fg:x="325883" fg:w="940"/><text x="68.0988%" y="703.50"></text></g><g><title>_ZdlPv (940 samples, 0.20%)</title><rect x="67.8488%" y="677" width="0.1957%" height="15" fill="rgb(217,141,17)" fg:x="325883" fg:w="940"/><text x="68.0988%" y="687.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (131 samples, 0.03%)</title><rect x="68.0507%" y="581" width="0.0273%" height="15" fill="rgb(245,125,54)" fg:x="326853" fg:w="131"/><text x="68.3007%" y="591.50"></text></g><g><title>_ZdlPv (131 samples, 0.03%)</title><rect x="68.0507%" y="565" width="0.0273%" height="15" fill="rgb(248,125,3)" fg:x="326853" fg:w="131"/><text x="68.3007%" y="575.50"></text></g><g><title>_ZdlPv (131 samples, 0.03%)</title><rect x="68.0507%" y="549" width="0.0273%" height="15" fill="rgb(236,119,51)" fg:x="326853" fg:w="131"/><text x="68.3007%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (131 samples, 0.03%)</title><rect x="68.0507%" y="533" width="0.0273%" height="15" fill="rgb(239,99,8)" fg:x="326853" fg:w="131"/><text x="68.3007%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (110 samples, 0.02%)</title><rect x="68.0551%" y="517" width="0.0229%" height="15" fill="rgb(224,228,4)" fg:x="326874" fg:w="110"/><text x="68.3051%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (159 samples, 0.03%)</title><rect x="68.0499%" y="597" width="0.0331%" height="15" fill="rgb(220,131,45)" fg:x="326849" fg:w="159"/><text x="68.2999%" y="607.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (164 samples, 0.03%)</title><rect x="68.0490%" y="613" width="0.0341%" height="15" fill="rgb(215,62,5)" fg:x="326845" fg:w="164"/><text x="68.2990%" y="623.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (238 samples, 0.05%)</title><rect x="68.1026%" y="549" width="0.0496%" height="15" fill="rgb(253,12,24)" fg:x="327102" fg:w="238"/><text x="68.3526%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.01%)</title><rect x="68.1384%" y="533" width="0.0137%" height="15" fill="rgb(248,120,50)" fg:x="327274" fg:w="66"/><text x="68.3884%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (280 samples, 0.06%)</title><rect x="68.0969%" y="565" width="0.0583%" height="15" fill="rgb(245,194,10)" fg:x="327075" fg:w="280"/><text x="68.3469%" y="575.50"></text></g><g><title>_ZdlPv (281 samples, 0.06%)</title><rect x="68.0969%" y="581" width="0.0585%" height="15" fill="rgb(241,149,38)" fg:x="327075" fg:w="281"/><text x="68.3469%" y="591.50"></text></g><g><title>_ZdlPv (284 samples, 0.06%)</title><rect x="68.0965%" y="597" width="0.0591%" height="15" fill="rgb(219,215,7)" fg:x="327073" fg:w="284"/><text x="68.3465%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (71 samples, 0.01%)</title><rect x="68.1713%" y="501" width="0.0148%" height="15" fill="rgb(208,120,31)" fg:x="327432" fg:w="71"/><text x="68.4213%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (59 samples, 0.01%)</title><rect x="68.1738%" y="485" width="0.0123%" height="15" fill="rgb(244,30,8)" fg:x="327444" fg:w="59"/><text x="68.4238%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (85 samples, 0.02%)</title><rect x="68.1690%" y="517" width="0.0177%" height="15" fill="rgb(238,35,44)" fg:x="327421" fg:w="85"/><text x="68.4190%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (92 samples, 0.02%)</title><rect x="68.1681%" y="533" width="0.0192%" height="15" fill="rgb(243,218,37)" fg:x="327417" fg:w="92"/><text x="68.4181%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (116 samples, 0.02%)</title><rect x="68.1636%" y="565" width="0.0242%" height="15" fill="rgb(218,169,10)" fg:x="327395" fg:w="116"/><text x="68.4136%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (104 samples, 0.02%)</title><rect x="68.1661%" y="549" width="0.0217%" height="15" fill="rgb(221,144,10)" fg:x="327407" fg:w="104"/><text x="68.4161%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (134 samples, 0.03%)</title><rect x="68.1600%" y="581" width="0.0279%" height="15" fill="rgb(226,41,38)" fg:x="327378" fg:w="134"/><text x="68.4100%" y="591.50"></text></g><g><title>_ZdlPv (683 samples, 0.14%)</title><rect x="68.0461%" y="629" width="0.1422%" height="15" fill="rgb(228,3,1)" fg:x="326831" fg:w="683"/><text x="68.2961%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (448 samples, 0.09%)</title><rect x="68.0951%" y="613" width="0.0933%" height="15" fill="rgb(209,129,12)" fg:x="327066" fg:w="448"/><text x="68.3451%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (157 samples, 0.03%)</title><rect x="68.1556%" y="597" width="0.0327%" height="15" fill="rgb(213,136,33)" fg:x="327357" fg:w="157"/><text x="68.4056%" y="607.50"></text></g><g><title>_ZdlPv (693 samples, 0.14%)</title><rect x="68.0455%" y="645" width="0.1443%" height="15" fill="rgb(209,181,29)" fg:x="326828" fg:w="693"/><text x="68.2955%" y="655.50"></text></g><g><title>_ZdlPv (696 samples, 0.14%)</title><rect x="68.0455%" y="677" width="0.1449%" height="15" fill="rgb(234,173,18)" fg:x="326828" fg:w="696"/><text x="68.2955%" y="687.50"></text></g><g><title>_ZdlPv (696 samples, 0.14%)</title><rect x="68.0455%" y="661" width="0.1449%" height="15" fill="rgb(227,73,47)" fg:x="326828" fg:w="696"/><text x="68.2955%" y="671.50"></text></g><g><title>cshook_security_sb_free_security (750 samples, 0.16%)</title><rect x="68.0449%" y="693" width="0.1561%" height="15" fill="rgb(234,9,34)" fg:x="326825" fg:w="750"/><text x="68.2949%" y="703.50"></text></g><g><title>cshook_security_sb_free_security (1,707 samples, 0.36%)</title><rect x="67.8485%" y="725" width="0.3554%" height="15" fill="rgb(235,172,15)" fg:x="325882" fg:w="1707"/><text x="68.0985%" y="735.50"></text></g><g><title>cshook_security_sb_free_security (1,706 samples, 0.36%)</title><rect x="67.8488%" y="709" width="0.3552%" height="15" fill="rgb(245,61,2)" fg:x="325883" fg:w="1706"/><text x="68.0988%" y="719.50"></text></g><g><title>cshook_security_file_permission (1,708 samples, 0.36%)</title><rect x="67.8485%" y="741" width="0.3556%" height="15" fill="rgb(238,39,47)" fg:x="325882" fg:w="1708"/><text x="68.0985%" y="751.50"></text></g><g><title>exec_binprm (2,003 samples, 0.42%)</title><rect x="67.7880%" y="837" width="0.4170%" height="15" fill="rgb(234,37,24)" fg:x="325591" fg:w="2003"/><text x="68.0380%" y="847.50"></text></g><g><title>search_binary_handler (1,995 samples, 0.42%)</title><rect x="67.7896%" y="821" width="0.4154%" height="15" fill="rgb(248,223,24)" fg:x="325599" fg:w="1995"/><text x="68.0396%" y="831.50"></text></g><g><title>security_bprm_check (1,737 samples, 0.36%)</title><rect x="67.8433%" y="805" width="0.3616%" height="15" fill="rgb(223,12,15)" fg:x="325857" fg:w="1737"/><text x="68.0933%" y="815.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,737 samples, 0.36%)</title><rect x="67.8433%" y="789" width="0.3616%" height="15" fill="rgb(249,6,3)" fg:x="325857" fg:w="1737"/><text x="68.0933%" y="799.50"></text></g><g><title>cshook_security_bprm_check_security (1,737 samples, 0.36%)</title><rect x="67.8433%" y="773" width="0.3616%" height="15" fill="rgb(237,105,33)" fg:x="325857" fg:w="1737"/><text x="68.0933%" y="783.50"></text></g><g><title>cshook_security_file_permission (1,737 samples, 0.36%)</title><rect x="67.8433%" y="757" width="0.3616%" height="15" fill="rgb(252,208,35)" fg:x="325857" fg:w="1737"/><text x="68.0933%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (78 samples, 0.02%)</title><rect x="68.2067%" y="757" width="0.0162%" height="15" fill="rgb(215,181,35)" fg:x="327602" fg:w="78"/><text x="68.4567%" y="767.50"></text></g><g><title>x86_pmu_enable (75 samples, 0.02%)</title><rect x="68.2073%" y="741" width="0.0156%" height="15" fill="rgb(246,212,3)" fg:x="327605" fg:w="75"/><text x="68.4573%" y="751.50"></text></g><g><title>intel_pmu_enable_all (75 samples, 0.02%)</title><rect x="68.2073%" y="725" width="0.0156%" height="15" fill="rgb(247,156,24)" fg:x="327605" fg:w="75"/><text x="68.4573%" y="735.50"></text></g><g><title>native_write_msr (75 samples, 0.02%)</title><rect x="68.2073%" y="709" width="0.0156%" height="15" fill="rgb(248,9,31)" fg:x="327605" fg:w="75"/><text x="68.4573%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (82 samples, 0.02%)</title><rect x="68.2060%" y="773" width="0.0171%" height="15" fill="rgb(234,26,45)" fg:x="327599" fg:w="82"/><text x="68.4560%" y="783.50"></text></g><g><title>__cond_resched (84 samples, 0.02%)</title><rect x="68.2058%" y="805" width="0.0175%" height="15" fill="rgb(249,11,32)" fg:x="327598" fg:w="84"/><text x="68.4558%" y="815.50"></text></g><g><title>__schedule (84 samples, 0.02%)</title><rect x="68.2058%" y="789" width="0.0175%" height="15" fill="rgb(249,162,33)" fg:x="327598" fg:w="84"/><text x="68.4558%" y="799.50"></text></g><g><title>sched_exec (89 samples, 0.02%)</title><rect x="68.2050%" y="837" width="0.0185%" height="15" fill="rgb(232,4,32)" fg:x="327594" fg:w="89"/><text x="68.4550%" y="847.50"></text></g><g><title>stop_one_cpu (86 samples, 0.02%)</title><rect x="68.2056%" y="821" width="0.0179%" height="15" fill="rgb(212,5,45)" fg:x="327597" fg:w="86"/><text x="68.4556%" y="831.50"></text></g><g><title>bprm_execve.part.0 (2,112 samples, 0.44%)</title><rect x="67.7865%" y="853" width="0.4397%" height="15" fill="rgb(227,95,13)" fg:x="325584" fg:w="2112"/><text x="68.0365%" y="863.50"></text></g><g><title>bprm_execve (2,114 samples, 0.44%)</title><rect x="67.7865%" y="869" width="0.4401%" height="15" fill="rgb(223,205,10)" fg:x="325584" fg:w="2114"/><text x="68.0365%" y="879.50"></text></g><g><title>do_execveat_common.isra.0 (2,164 samples, 0.45%)</title><rect x="67.7844%" y="885" width="0.4505%" height="15" fill="rgb(222,178,8)" fg:x="325574" fg:w="2164"/><text x="68.0344%" y="895.50"></text></g><g><title>__x64_sys_execve (2,166 samples, 0.45%)</title><rect x="67.7844%" y="901" width="0.4510%" height="15" fill="rgb(216,13,22)" fg:x="325574" fg:w="2166"/><text x="68.0344%" y="911.50"></text></g><g><title>__x64_sys_exit (53 samples, 0.01%)</title><rect x="68.2354%" y="901" width="0.0110%" height="15" fill="rgb(240,167,12)" fg:x="327740" fg:w="53"/><text x="68.4854%" y="911.50"></text></g><g><title>do_exit (52 samples, 0.01%)</title><rect x="68.2356%" y="885" width="0.0108%" height="15" fill="rgb(235,68,35)" fg:x="327741" fg:w="52"/><text x="68.4856%" y="895.50"></text></g><g><title>__x64_sys_fork (49 samples, 0.01%)</title><rect x="68.2554%" y="901" width="0.0102%" height="15" fill="rgb(253,40,27)" fg:x="327836" fg:w="49"/><text x="68.5054%" y="911.50"></text></g><g><title>kernel_clone (49 samples, 0.01%)</title><rect x="68.2554%" y="885" width="0.0102%" height="15" fill="rgb(214,19,28)" fg:x="327836" fg:w="49"/><text x="68.5054%" y="895.50"></text></g><g><title>dequeue_entity (52 samples, 0.01%)</title><rect x="68.3039%" y="773" width="0.0108%" height="15" fill="rgb(210,167,45)" fg:x="328069" fg:w="52"/><text x="68.5539%" y="783.50"></text></g><g><title>dequeue_task_fair (86 samples, 0.02%)</title><rect x="68.3024%" y="789" width="0.0179%" height="15" fill="rgb(232,97,40)" fg:x="328062" fg:w="86"/><text x="68.5524%" y="799.50"></text></g><g><title>dequeue_task (95 samples, 0.02%)</title><rect x="68.3016%" y="805" width="0.0198%" height="15" fill="rgb(250,35,23)" fg:x="328058" fg:w="95"/><text x="68.5516%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (3,757 samples, 0.78%)</title><rect x="68.3316%" y="789" width="0.7822%" height="15" fill="rgb(248,47,53)" fg:x="328202" fg:w="3757"/><text x="68.5816%" y="799.50"></text></g><g><title>x86_pmu_enable (3,710 samples, 0.77%)</title><rect x="68.3414%" y="773" width="0.7724%" height="15" fill="rgb(226,58,50)" fg:x="328249" fg:w="3710"/><text x="68.5914%" y="783.50"></text></g><g><title>intel_pmu_enable_all (3,692 samples, 0.77%)</title><rect x="68.3451%" y="757" width="0.7687%" height="15" fill="rgb(217,105,26)" fg:x="328267" fg:w="3692"/><text x="68.5951%" y="767.50"></text></g><g><title>native_write_msr (3,668 samples, 0.76%)</title><rect x="68.3501%" y="741" width="0.7637%" height="15" fill="rgb(208,64,1)" fg:x="328291" fg:w="3668"/><text x="68.6001%" y="751.50"></text></g><g><title>__queue_work (53 samples, 0.01%)</title><rect x="69.1361%" y="741" width="0.0110%" height="15" fill="rgb(214,80,1)" fg:x="332066" fg:w="53"/><text x="69.3861%" y="751.50"></text></g><g><title>put_task_stack (118 samples, 0.02%)</title><rect x="69.1234%" y="789" width="0.0246%" height="15" fill="rgb(206,175,26)" fg:x="332005" fg:w="118"/><text x="69.3734%" y="799.50"></text></g><g><title>vfree_atomic (60 samples, 0.01%)</title><rect x="69.1354%" y="773" width="0.0125%" height="15" fill="rgb(235,156,37)" fg:x="332063" fg:w="60"/><text x="69.3854%" y="783.50"></text></g><g><title>queue_work_on (59 samples, 0.01%)</title><rect x="69.1356%" y="757" width="0.0123%" height="15" fill="rgb(213,100,9)" fg:x="332064" fg:w="59"/><text x="69.3856%" y="767.50"></text></g><g><title>finish_task_switch.isra.0 (3,991 samples, 0.83%)</title><rect x="68.3220%" y="805" width="0.8309%" height="15" fill="rgb(241,15,13)" fg:x="328156" fg:w="3991"/><text x="68.5720%" y="815.50"></text></g><g><title>pick_next_task_fair (70 samples, 0.01%)</title><rect x="69.1558%" y="789" width="0.0146%" height="15" fill="rgb(205,97,43)" fg:x="332161" fg:w="70"/><text x="69.4058%" y="799.50"></text></g><g><title>pick_next_task (76 samples, 0.02%)</title><rect x="69.1552%" y="805" width="0.0158%" height="15" fill="rgb(216,106,32)" fg:x="332158" fg:w="76"/><text x="69.4052%" y="815.50"></text></g><g><title>prepare_task_switch (51 samples, 0.01%)</title><rect x="69.1710%" y="805" width="0.0106%" height="15" fill="rgb(226,200,8)" fg:x="332234" fg:w="51"/><text x="69.4210%" y="815.50"></text></g><g><title>psi_group_change (53 samples, 0.01%)</title><rect x="69.1873%" y="789" width="0.0110%" height="15" fill="rgb(244,54,29)" fg:x="332312" fg:w="53"/><text x="69.4373%" y="799.50"></text></g><g><title>psi_task_switch (82 samples, 0.02%)</title><rect x="69.1819%" y="805" width="0.0171%" height="15" fill="rgb(252,169,12)" fg:x="332286" fg:w="82"/><text x="69.4319%" y="815.50"></text></g><g><title>__schedule (4,435 samples, 0.92%)</title><rect x="68.2831%" y="821" width="0.9234%" height="15" fill="rgb(231,199,11)" fg:x="327969" fg:w="4435"/><text x="68.5331%" y="831.50"></text></g><g><title>futex_wait_queue_me (4,463 samples, 0.93%)</title><rect x="68.2779%" y="853" width="0.9292%" height="15" fill="rgb(233,191,18)" fg:x="327944" fg:w="4463"/><text x="68.5279%" y="863.50"></text></g><g><title>schedule (4,446 samples, 0.93%)</title><rect x="68.2814%" y="837" width="0.9257%" height="15" fill="rgb(215,83,47)" fg:x="327961" fg:w="4446"/><text x="68.5314%" y="847.50"></text></g><g><title>futex_wait (4,523 samples, 0.94%)</title><rect x="68.2710%" y="869" width="0.9417%" height="15" fill="rgb(251,67,19)" fg:x="327911" fg:w="4523"/><text x="68.5210%" y="879.50"></text></g><g><title>enqueue_task_fair (52 samples, 0.01%)</title><rect x="69.2320%" y="789" width="0.0108%" height="15" fill="rgb(240,7,20)" fg:x="332527" fg:w="52"/><text x="69.4820%" y="799.50"></text></g><g><title>enqueue_task (104 samples, 0.02%)</title><rect x="69.2318%" y="805" width="0.0217%" height="15" fill="rgb(210,150,26)" fg:x="332526" fg:w="104"/><text x="69.4818%" y="815.50"></text></g><g><title>psi_task_change (51 samples, 0.01%)</title><rect x="69.2429%" y="789" width="0.0106%" height="15" fill="rgb(228,75,42)" fg:x="332579" fg:w="51"/><text x="69.4929%" y="799.50"></text></g><g><title>ttwu_do_activate (113 samples, 0.02%)</title><rect x="69.2318%" y="821" width="0.0235%" height="15" fill="rgb(237,134,48)" fg:x="332526" fg:w="113"/><text x="69.4818%" y="831.50"></text></g><g><title>try_to_wake_up (198 samples, 0.04%)</title><rect x="69.2173%" y="837" width="0.0412%" height="15" fill="rgb(205,80,50)" fg:x="332456" fg:w="198"/><text x="69.4673%" y="847.50"></text></g><g><title>futex_wake (220 samples, 0.05%)</title><rect x="69.2129%" y="869" width="0.0458%" height="15" fill="rgb(217,74,48)" fg:x="332435" fg:w="220"/><text x="69.4629%" y="879.50"></text></g><g><title>wake_up_q (200 samples, 0.04%)</title><rect x="69.2170%" y="853" width="0.0416%" height="15" fill="rgb(205,82,50)" fg:x="332455" fg:w="200"/><text x="69.4670%" y="863.50"></text></g><g><title>do_futex (4,774 samples, 0.99%)</title><rect x="68.2672%" y="885" width="0.9939%" height="15" fill="rgb(228,1,33)" fg:x="327893" fg:w="4774"/><text x="68.5172%" y="895.50"></text></g><g><title>__x64_sys_futex (4,788 samples, 1.00%)</title><rect x="68.2656%" y="901" width="0.9969%" height="15" fill="rgb(214,50,23)" fg:x="327885" fg:w="4788"/><text x="68.5156%" y="911.50"></text></g><g><title>__vma_adjust (59 samples, 0.01%)</title><rect x="69.2810%" y="837" width="0.0123%" height="15" fill="rgb(210,62,9)" fg:x="332762" fg:w="59"/><text x="69.5310%" y="847.50"></text></g><g><title>vm_area_dup (63 samples, 0.01%)</title><rect x="69.3039%" y="837" width="0.0131%" height="15" fill="rgb(210,104,37)" fg:x="332872" fg:w="63"/><text x="69.5539%" y="847.50"></text></g><g><title>__split_vma (180 samples, 0.04%)</title><rect x="69.2803%" y="853" width="0.0375%" height="15" fill="rgb(232,104,43)" fg:x="332759" fg:w="180"/><text x="69.5303%" y="863.50"></text></g><g><title>unlink_anon_vmas (51 samples, 0.01%)</title><rect x="69.3349%" y="821" width="0.0106%" height="15" fill="rgb(244,52,6)" fg:x="333021" fg:w="51"/><text x="69.5849%" y="831.50"></text></g><g><title>free_pgtables (62 samples, 0.01%)</title><rect x="69.3332%" y="837" width="0.0129%" height="15" fill="rgb(211,174,52)" fg:x="333013" fg:w="62"/><text x="69.5832%" y="847.50"></text></g><g><title>__pagevec_lru_add_fn (61 samples, 0.01%)</title><rect x="69.3507%" y="789" width="0.0127%" height="15" fill="rgb(229,48,4)" fg:x="333097" fg:w="61"/><text x="69.6007%" y="799.50"></text></g><g><title>__pagevec_lru_add (85 samples, 0.02%)</title><rect x="69.3493%" y="805" width="0.0177%" height="15" fill="rgb(205,155,16)" fg:x="333090" fg:w="85"/><text x="69.5993%" y="815.50"></text></g><g><title>lru_add_drain (114 samples, 0.02%)</title><rect x="69.3461%" y="837" width="0.0237%" height="15" fill="rgb(211,141,53)" fg:x="333075" fg:w="114"/><text x="69.5961%" y="847.50"></text></g><g><title>lru_add_drain_cpu (112 samples, 0.02%)</title><rect x="69.3465%" y="821" width="0.0233%" height="15" fill="rgb(240,148,11)" fg:x="333077" fg:w="112"/><text x="69.5965%" y="831.50"></text></g><g><title>flush_tlb_func (55 samples, 0.01%)</title><rect x="69.3736%" y="805" width="0.0115%" height="15" fill="rgb(214,45,23)" fg:x="333207" fg:w="55"/><text x="69.6236%" y="815.50"></text></g><g><title>flush_tlb_mm_range (73 samples, 0.02%)</title><rect x="69.3719%" y="821" width="0.0152%" height="15" fill="rgb(248,74,26)" fg:x="333199" fg:w="73"/><text x="69.6219%" y="831.50"></text></g><g><title>__mem_cgroup_uncharge_list (63 samples, 0.01%)</title><rect x="69.4103%" y="789" width="0.0131%" height="15" fill="rgb(218,121,16)" fg:x="333383" fg:w="63"/><text x="69.6603%" y="799.50"></text></g><g><title>__mod_lruvec_state (75 samples, 0.02%)</title><rect x="69.4234%" y="789" width="0.0156%" height="15" fill="rgb(218,10,47)" fg:x="333446" fg:w="75"/><text x="69.6734%" y="799.50"></text></g><g><title>__free_one_page (57 samples, 0.01%)</title><rect x="69.4812%" y="741" width="0.0119%" height="15" fill="rgb(227,99,14)" fg:x="333724" fg:w="57"/><text x="69.7312%" y="751.50"></text></g><g><title>free_unref_page_list (234 samples, 0.05%)</title><rect x="69.4456%" y="789" width="0.0487%" height="15" fill="rgb(229,83,46)" fg:x="333553" fg:w="234"/><text x="69.6956%" y="799.50"></text></g><g><title>free_unref_page_commit.constprop.0 (143 samples, 0.03%)</title><rect x="69.4646%" y="773" width="0.0298%" height="15" fill="rgb(228,25,1)" fg:x="333644" fg:w="143"/><text x="69.7146%" y="783.50"></text></g><g><title>free_pcppages_bulk (110 samples, 0.02%)</title><rect x="69.4715%" y="757" width="0.0229%" height="15" fill="rgb(252,190,15)" fg:x="333677" fg:w="110"/><text x="69.7215%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (538 samples, 0.11%)</title><rect x="69.3886%" y="821" width="0.1120%" height="15" fill="rgb(213,103,51)" fg:x="333279" fg:w="538"/><text x="69.6386%" y="831.50"></text></g><g><title>release_pages (517 samples, 0.11%)</title><rect x="69.3930%" y="805" width="0.1076%" height="15" fill="rgb(220,38,44)" fg:x="333300" fg:w="517"/><text x="69.6430%" y="815.50"></text></g><g><title>tlb_finish_mmu (646 samples, 0.13%)</title><rect x="69.3703%" y="837" width="0.1345%" height="15" fill="rgb(210,45,26)" fg:x="333191" fg:w="646"/><text x="69.6203%" y="847.50"></text></g><g><title>__mod_lruvec_state (53 samples, 0.01%)</title><rect x="69.5858%" y="725" width="0.0110%" height="15" fill="rgb(205,95,48)" fg:x="334226" fg:w="53"/><text x="69.8358%" y="735.50"></text></g><g><title>__mod_lruvec_page_state (71 samples, 0.01%)</title><rect x="69.5826%" y="741" width="0.0148%" height="15" fill="rgb(225,179,37)" fg:x="334211" fg:w="71"/><text x="69.8326%" y="751.50"></text></g><g><title>page_remove_rmap (135 samples, 0.03%)</title><rect x="69.5762%" y="757" width="0.0281%" height="15" fill="rgb(230,209,3)" fg:x="334180" fg:w="135"/><text x="69.8262%" y="767.50"></text></g><g><title>zap_pmd_range.isra.0 (465 samples, 0.10%)</title><rect x="69.5121%" y="789" width="0.0968%" height="15" fill="rgb(248,12,46)" fg:x="333872" fg:w="465"/><text x="69.7621%" y="799.50"></text></g><g><title>zap_pte_range (432 samples, 0.09%)</title><rect x="69.5189%" y="773" width="0.0899%" height="15" fill="rgb(234,18,0)" fg:x="333905" fg:w="432"/><text x="69.7689%" y="783.50"></text></g><g><title>unmap_page_range (475 samples, 0.10%)</title><rect x="69.5104%" y="805" width="0.0989%" height="15" fill="rgb(238,197,14)" fg:x="333864" fg:w="475"/><text x="69.7604%" y="815.50"></text></g><g><title>unmap_region (1,331 samples, 0.28%)</title><rect x="69.3326%" y="853" width="0.2771%" height="15" fill="rgb(251,162,48)" fg:x="333010" fg:w="1331"/><text x="69.5826%" y="863.50"></text></g><g><title>unmap_vmas (493 samples, 0.10%)</title><rect x="69.5071%" y="837" width="0.1026%" height="15" fill="rgb(237,73,42)" fg:x="333848" fg:w="493"/><text x="69.7571%" y="847.50"></text></g><g><title>unmap_single_vma (481 samples, 0.10%)</title><rect x="69.5096%" y="821" width="0.1001%" height="15" fill="rgb(211,108,8)" fg:x="333860" fg:w="481"/><text x="69.7596%" y="831.50"></text></g><g><title>__do_munmap (1,604 samples, 0.33%)</title><rect x="69.2772%" y="869" width="0.3340%" height="15" fill="rgb(213,45,22)" fg:x="332744" fg:w="1604"/><text x="69.5272%" y="879.50"></text></g><g><title>__vm_munmap (1,634 samples, 0.34%)</title><rect x="69.2772%" y="885" width="0.3402%" height="15" fill="rgb(252,154,5)" fg:x="332744" fg:w="1634"/><text x="69.5272%" y="895.50"></text></g><g><title>__x64_sys_munmap (1,646 samples, 0.34%)</title><rect x="69.2768%" y="901" width="0.3427%" height="15" fill="rgb(221,79,52)" fg:x="332742" fg:w="1646"/><text x="69.5268%" y="911.50"></text></g><g><title>copy_user_enhanced_fast_string (322 samples, 0.07%)</title><rect x="69.6797%" y="853" width="0.0670%" height="15" fill="rgb(229,220,36)" fg:x="334677" fg:w="322"/><text x="69.9297%" y="863.50"></text></g><g><title>from_kgid_munged (71 samples, 0.01%)</title><rect x="69.7467%" y="853" width="0.0148%" height="15" fill="rgb(211,17,16)" fg:x="334999" fg:w="71"/><text x="69.9967%" y="863.50"></text></g><g><title>map_id_up (65 samples, 0.01%)</title><rect x="69.7480%" y="837" width="0.0135%" height="15" fill="rgb(222,55,31)" fg:x="335005" fg:w="65"/><text x="69.9980%" y="847.50"></text></g><g><title>from_kuid_munged (85 samples, 0.02%)</title><rect x="69.7615%" y="853" width="0.0177%" height="15" fill="rgb(221,221,31)" fg:x="335070" fg:w="85"/><text x="70.0115%" y="863.50"></text></g><g><title>map_id_up (83 samples, 0.02%)</title><rect x="69.7619%" y="837" width="0.0173%" height="15" fill="rgb(227,168,26)" fg:x="335072" fg:w="83"/><text x="70.0119%" y="847.50"></text></g><g><title>cp_new_stat (696 samples, 0.14%)</title><rect x="69.6393%" y="869" width="0.1449%" height="15" fill="rgb(224,139,9)" fg:x="334483" fg:w="696"/><text x="69.8893%" y="879.50"></text></g><g><title>security_inode_getattr (54 samples, 0.01%)</title><rect x="69.7915%" y="869" width="0.0112%" height="15" fill="rgb(254,172,0)" fg:x="335214" fg:w="54"/><text x="70.0415%" y="879.50"></text></g><g><title>__fget_files (216 samples, 0.04%)</title><rect x="69.8142%" y="821" width="0.0450%" height="15" fill="rgb(235,203,1)" fg:x="335323" fg:w="216"/><text x="70.0642%" y="831.50"></text></g><g><title>__fdget_raw (230 samples, 0.05%)</title><rect x="69.8125%" y="853" width="0.0479%" height="15" fill="rgb(216,205,24)" fg:x="335315" fg:w="230"/><text x="70.0625%" y="863.50"></text></g><g><title>__fget_light (226 samples, 0.05%)</title><rect x="69.8133%" y="837" width="0.0471%" height="15" fill="rgb(233,24,6)" fg:x="335319" fg:w="226"/><text x="70.0633%" y="847.50"></text></g><g><title>apparmor_inode_getattr (98 samples, 0.02%)</title><rect x="69.8685%" y="853" width="0.0204%" height="15" fill="rgb(244,110,9)" fg:x="335584" fg:w="98"/><text x="70.1185%" y="863.50"></text></g><g><title>btrfs_getattr (70 samples, 0.01%)</title><rect x="69.8893%" y="853" width="0.0146%" height="15" fill="rgb(239,222,42)" fg:x="335684" fg:w="70"/><text x="70.1393%" y="863.50"></text></g><g><title>fput_many (103 samples, 0.02%)</title><rect x="69.9049%" y="853" width="0.0214%" height="15" fill="rgb(218,145,13)" fg:x="335759" fg:w="103"/><text x="70.1549%" y="863.50"></text></g><g><title>apparmor_inode_getattr (492 samples, 0.10%)</title><rect x="69.9347%" y="837" width="0.1024%" height="15" fill="rgb(207,69,11)" fg:x="335902" fg:w="492"/><text x="70.1847%" y="847.50"></text></g><g><title>common_perm_cond (486 samples, 0.10%)</title><rect x="69.9360%" y="821" width="0.1012%" height="15" fill="rgb(220,223,22)" fg:x="335908" fg:w="486"/><text x="70.1860%" y="831.50"></text></g><g><title>security_inode_getattr (607 samples, 0.13%)</title><rect x="69.9264%" y="853" width="0.1264%" height="15" fill="rgb(245,102,5)" fg:x="335862" fg:w="607"/><text x="70.1764%" y="863.50"></text></g><g><title>common_perm_cond (75 samples, 0.02%)</title><rect x="70.0371%" y="837" width="0.0156%" height="15" fill="rgb(211,148,2)" fg:x="336394" fg:w="75"/><text x="70.2871%" y="847.50"></text></g><g><title>_raw_spin_lock (275 samples, 0.06%)</title><rect x="70.1073%" y="837" width="0.0573%" height="15" fill="rgb(241,13,44)" fg:x="336731" fg:w="275"/><text x="70.3573%" y="847.50"></text></g><g><title>_raw_spin_lock (111 samples, 0.02%)</title><rect x="70.3732%" y="821" width="0.0231%" height="15" fill="rgb(219,137,21)" fg:x="338008" fg:w="111"/><text x="70.6232%" y="831.50"></text></g><g><title>generic_fillattr (81 samples, 0.02%)</title><rect x="70.3990%" y="821" width="0.0169%" height="15" fill="rgb(242,206,5)" fg:x="338132" fg:w="81"/><text x="70.6490%" y="831.50"></text></g><g><title>btrfs_getattr (1,224 samples, 0.25%)</title><rect x="70.1648%" y="837" width="0.2548%" height="15" fill="rgb(217,114,22)" fg:x="337007" fg:w="1224"/><text x="70.4148%" y="847.50"></text></g><g><title>vfs_getattr_nosec (1,770 samples, 0.37%)</title><rect x="70.0528%" y="853" width="0.3685%" height="15" fill="rgb(253,206,42)" fg:x="336469" fg:w="1770"/><text x="70.3028%" y="863.50"></text></g><g><title>vfs_fstat (2,973 samples, 0.62%)</title><rect x="69.8027%" y="869" width="0.6190%" height="15" fill="rgb(236,102,18)" fg:x="335268" fg:w="2973"/><text x="70.0527%" y="879.50"></text></g><g><title>__do_sys_newfstat (3,878 samples, 0.81%)</title><rect x="69.6203%" y="885" width="0.8074%" height="15" fill="rgb(208,59,49)" fg:x="334392" fg:w="3878"/><text x="69.8703%" y="895.50"></text></g><g><title>__x64_sys_newfstat (3,907 samples, 0.81%)</title><rect x="69.6195%" y="901" width="0.8134%" height="15" fill="rgb(215,194,28)" fg:x="334388" fg:w="3907"/><text x="69.8695%" y="911.50"></text></g><g><title>user_path_at_empty (53 samples, 0.01%)</title><rect x="70.4340%" y="853" width="0.0110%" height="15" fill="rgb(243,207,11)" fg:x="338300" fg:w="53"/><text x="70.6840%" y="863.50"></text></g><g><title>__x64_sys_newstat (56 samples, 0.01%)</title><rect x="70.4336%" y="901" width="0.0117%" height="15" fill="rgb(254,179,35)" fg:x="338298" fg:w="56"/><text x="70.6836%" y="911.50"></text></g><g><title>__do_sys_newstat (56 samples, 0.01%)</title><rect x="70.4336%" y="885" width="0.0117%" height="15" fill="rgb(235,97,3)" fg:x="338298" fg:w="56"/><text x="70.6836%" y="895.50"></text></g><g><title>vfs_statx (55 samples, 0.01%)</title><rect x="70.4338%" y="869" width="0.0115%" height="15" fill="rgb(215,155,33)" fg:x="338299" fg:w="55"/><text x="70.6838%" y="879.50"></text></g><g><title>__x64_sys_read (124 samples, 0.03%)</title><rect x="70.4479%" y="901" width="0.0258%" height="15" fill="rgb(223,128,12)" fg:x="338367" fg:w="124"/><text x="70.6979%" y="911.50"></text></g><g><title>filename_lookup (49 samples, 0.01%)</title><rect x="70.4744%" y="853" width="0.0102%" height="15" fill="rgb(208,157,18)" fg:x="338494" fg:w="49"/><text x="70.7244%" y="863.50"></text></g><g><title>user_path_at_empty (54 samples, 0.01%)</title><rect x="70.4744%" y="869" width="0.0112%" height="15" fill="rgb(249,70,54)" fg:x="338494" fg:w="54"/><text x="70.7244%" y="879.50"></text></g><g><title>do_readlinkat (75 samples, 0.02%)</title><rect x="70.4737%" y="885" width="0.0156%" height="15" fill="rgb(244,118,24)" fg:x="338491" fg:w="75"/><text x="70.7237%" y="895.50"></text></g><g><title>__x64_sys_readlink (76 samples, 0.02%)</title><rect x="70.4737%" y="901" width="0.0158%" height="15" fill="rgb(211,54,0)" fg:x="338491" fg:w="76"/><text x="70.7237%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (111 samples, 0.02%)</title><rect x="70.4954%" y="789" width="0.0231%" height="15" fill="rgb(245,137,45)" fg:x="338595" fg:w="111"/><text x="70.7454%" y="799.50"></text></g><g><title>x86_pmu_enable (106 samples, 0.02%)</title><rect x="70.4964%" y="773" width="0.0221%" height="15" fill="rgb(232,154,31)" fg:x="338600" fg:w="106"/><text x="70.7464%" y="783.50"></text></g><g><title>intel_pmu_enable_all (106 samples, 0.02%)</title><rect x="70.4964%" y="757" width="0.0221%" height="15" fill="rgb(253,6,39)" fg:x="338600" fg:w="106"/><text x="70.7464%" y="767.50"></text></g><g><title>native_write_msr (105 samples, 0.02%)</title><rect x="70.4966%" y="741" width="0.0219%" height="15" fill="rgb(234,183,24)" fg:x="338601" fg:w="105"/><text x="70.7466%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (118 samples, 0.02%)</title><rect x="70.4952%" y="805" width="0.0246%" height="15" fill="rgb(252,84,40)" fg:x="338594" fg:w="118"/><text x="70.7452%" y="815.50"></text></g><g><title>schedule (121 samples, 0.03%)</title><rect x="70.4950%" y="837" width="0.0252%" height="15" fill="rgb(224,65,2)" fg:x="338593" fg:w="121"/><text x="70.7450%" y="847.50"></text></g><g><title>__schedule (121 samples, 0.03%)</title><rect x="70.4950%" y="821" width="0.0252%" height="15" fill="rgb(229,38,24)" fg:x="338593" fg:w="121"/><text x="70.7450%" y="831.50"></text></g><g><title>__x64_sys_wait4 (136 samples, 0.03%)</title><rect x="70.4946%" y="901" width="0.0283%" height="15" fill="rgb(218,131,50)" fg:x="338591" fg:w="136"/><text x="70.7446%" y="911.50"></text></g><g><title>__do_sys_wait4 (136 samples, 0.03%)</title><rect x="70.4946%" y="885" width="0.0283%" height="15" fill="rgb(233,106,18)" fg:x="338591" fg:w="136"/><text x="70.7446%" y="895.50"></text></g><g><title>kernel_wait4 (136 samples, 0.03%)</title><rect x="70.4946%" y="869" width="0.0283%" height="15" fill="rgb(220,216,11)" fg:x="338591" fg:w="136"/><text x="70.7446%" y="879.50"></text></g><g><title>do_wait (136 samples, 0.03%)</title><rect x="70.4946%" y="853" width="0.0283%" height="15" fill="rgb(251,100,45)" fg:x="338591" fg:w="136"/><text x="70.7446%" y="863.50"></text></g><g><title>__x86_indirect_thunk_rax (94 samples, 0.02%)</title><rect x="70.5229%" y="901" width="0.0196%" height="15" fill="rgb(235,143,32)" fg:x="338727" fg:w="94"/><text x="70.7729%" y="911.50"></text></g><g><title>acquire_rundown (545 samples, 0.11%)</title><rect x="70.5443%" y="901" width="0.1135%" height="15" fill="rgb(248,124,34)" fg:x="338830" fg:w="545"/><text x="70.7943%" y="911.50"></text></g><g><title>cshook_systemcalltable_post_read (100 samples, 0.02%)</title><rect x="70.6728%" y="901" width="0.0208%" height="15" fill="rgb(225,221,4)" fg:x="339447" fg:w="100"/><text x="70.9228%" y="911.50"></text></g><g><title>cshook_systemcalltable_pre_read (156 samples, 0.03%)</title><rect x="70.7055%" y="901" width="0.0325%" height="15" fill="rgb(242,27,43)" fg:x="339604" fg:w="156"/><text x="70.9555%" y="911.50"></text></g><g><title>exit_to_user_mode_prepare (97 samples, 0.02%)</title><rect x="70.7384%" y="901" width="0.0202%" height="15" fill="rgb(227,54,8)" fg:x="339762" fg:w="97"/><text x="70.9884%" y="911.50"></text></g><g><title>release_rundown (779 samples, 0.16%)</title><rect x="70.7588%" y="901" width="0.1622%" height="15" fill="rgb(253,139,49)" fg:x="339860" fg:w="779"/><text x="71.0088%" y="911.50"></text></g><g><title>syscall_enter_from_user_mode (269 samples, 0.06%)</title><rect x="70.9218%" y="901" width="0.0560%" height="15" fill="rgb(231,26,43)" fg:x="340643" fg:w="269"/><text x="71.1718%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (68 samples, 0.01%)</title><rect x="71.0373%" y="885" width="0.0142%" height="15" fill="rgb(207,121,39)" fg:x="341198" fg:w="68"/><text x="71.2873%" y="895.50"></text></g><g><title>____fput (69 samples, 0.01%)</title><rect x="71.3365%" y="853" width="0.0144%" height="15" fill="rgb(223,101,35)" fg:x="342635" fg:w="69"/><text x="71.5865%" y="863.50"></text></g><g><title>taskstats_exit (87 samples, 0.02%)</title><rect x="71.3721%" y="789" width="0.0181%" height="15" fill="rgb(232,87,23)" fg:x="342806" fg:w="87"/><text x="71.6221%" y="799.50"></text></g><g><title>do_exit (129 samples, 0.03%)</title><rect x="71.3636%" y="805" width="0.0269%" height="15" fill="rgb(225,180,29)" fg:x="342765" fg:w="129"/><text x="71.6136%" y="815.50"></text></g><g><title>do_group_exit (131 samples, 0.03%)</title><rect x="71.3634%" y="821" width="0.0273%" height="15" fill="rgb(225,25,17)" fg:x="342764" fg:w="131"/><text x="71.6134%" y="831.50"></text></g><g><title>get_signal (151 samples, 0.03%)</title><rect x="71.3594%" y="837" width="0.0314%" height="15" fill="rgb(223,8,52)" fg:x="342745" fg:w="151"/><text x="71.6094%" y="847.50"></text></g><g><title>arch_do_signal_or_restart (155 samples, 0.03%)</title><rect x="71.3592%" y="853" width="0.0323%" height="15" fill="rgb(246,42,21)" fg:x="342744" fg:w="155"/><text x="71.6092%" y="863.50"></text></g><g><title>blkcg_maybe_throttle_current (70 samples, 0.01%)</title><rect x="71.3927%" y="853" width="0.0146%" height="15" fill="rgb(205,64,43)" fg:x="342905" fg:w="70"/><text x="71.6427%" y="863.50"></text></g><g><title>mem_cgroup_handle_over_high (101 samples, 0.02%)</title><rect x="71.4073%" y="853" width="0.0210%" height="15" fill="rgb(221,160,13)" fg:x="342975" fg:w="101"/><text x="71.6573%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (754 samples, 0.16%)</title><rect x="71.4365%" y="805" width="0.1570%" height="15" fill="rgb(239,58,35)" fg:x="343115" fg:w="754"/><text x="71.6865%" y="815.50"></text></g><g><title>x86_pmu_enable (731 samples, 0.15%)</title><rect x="71.4412%" y="789" width="0.1522%" height="15" fill="rgb(251,26,40)" fg:x="343138" fg:w="731"/><text x="71.6912%" y="799.50"></text></g><g><title>intel_pmu_enable_all (721 samples, 0.15%)</title><rect x="71.4433%" y="773" width="0.1501%" height="15" fill="rgb(247,0,4)" fg:x="343148" fg:w="721"/><text x="71.6933%" y="783.50"></text></g><g><title>native_write_msr (707 samples, 0.15%)</title><rect x="71.4462%" y="757" width="0.1472%" height="15" fill="rgb(218,130,10)" fg:x="343162" fg:w="707"/><text x="71.6962%" y="767.50"></text></g><g><title>finish_task_switch.isra.0 (818 samples, 0.17%)</title><rect x="71.4337%" y="821" width="0.1703%" height="15" fill="rgb(239,32,7)" fg:x="343102" fg:w="818"/><text x="71.6837%" y="831.50"></text></g><g><title>__schedule (905 samples, 0.19%)</title><rect x="71.4285%" y="837" width="0.1884%" height="15" fill="rgb(210,192,24)" fg:x="343077" fg:w="905"/><text x="71.6785%" y="847.50"></text></g><g><title>schedule (909 samples, 0.19%)</title><rect x="71.4283%" y="853" width="0.1893%" height="15" fill="rgb(226,212,17)" fg:x="343076" fg:w="909"/><text x="71.6783%" y="863.50"></text></g><g><title>__fsnotify_parent (127 samples, 0.03%)</title><rect x="71.7515%" y="805" width="0.0264%" height="15" fill="rgb(219,201,28)" fg:x="344628" fg:w="127"/><text x="72.0015%" y="815.50"></text></g><g><title>apparmor_file_free_security (130 samples, 0.03%)</title><rect x="71.7808%" y="805" width="0.0271%" height="15" fill="rgb(235,207,41)" fg:x="344769" fg:w="130"/><text x="72.0308%" y="815.50"></text></g><g><title>btrfs_dentry_delete (128 samples, 0.03%)</title><rect x="71.8081%" y="805" width="0.0266%" height="15" fill="rgb(241,95,54)" fg:x="344900" fg:w="128"/><text x="72.0581%" y="815.50"></text></g><g><title>btrfs_release_file (544 samples, 0.11%)</title><rect x="71.8347%" y="805" width="0.1133%" height="15" fill="rgb(248,12,23)" fg:x="345028" fg:w="544"/><text x="72.0847%" y="815.50"></text></g><g><title>kfree (62 samples, 0.01%)</title><rect x="71.9351%" y="789" width="0.0129%" height="15" fill="rgb(228,173,4)" fg:x="345510" fg:w="62"/><text x="72.1851%" y="799.50"></text></g><g><title>__call_rcu (494 samples, 0.10%)</title><rect x="71.9484%" y="789" width="0.1029%" height="15" fill="rgb(254,99,5)" fg:x="345574" fg:w="494"/><text x="72.1984%" y="799.50"></text></g><g><title>rcu_segcblist_enqueue (216 samples, 0.04%)</title><rect x="72.0063%" y="773" width="0.0450%" height="15" fill="rgb(212,184,17)" fg:x="345852" fg:w="216"/><text x="72.2563%" y="783.50"></text></g><g><title>call_rcu (536 samples, 0.11%)</title><rect x="71.9480%" y="805" width="0.1116%" height="15" fill="rgb(252,174,1)" fg:x="345572" fg:w="536"/><text x="72.1980%" y="815.50"></text></g><g><title>_raw_spin_lock (113 samples, 0.02%)</title><rect x="72.0794%" y="789" width="0.0235%" height="15" fill="rgb(241,118,51)" fg:x="346203" fg:w="113"/><text x="72.3294%" y="799.50"></text></g><g><title>btrfs_dentry_delete (114 samples, 0.02%)</title><rect x="72.1029%" y="789" width="0.0237%" height="15" fill="rgb(227,94,47)" fg:x="346316" fg:w="114"/><text x="72.3529%" y="799.50"></text></g><g><title>dput (357 samples, 0.07%)</title><rect x="72.0596%" y="805" width="0.0743%" height="15" fill="rgb(229,104,2)" fg:x="346108" fg:w="357"/><text x="72.3096%" y="815.50"></text></g><g><title>locks_remove_file (129 samples, 0.03%)</title><rect x="72.1529%" y="805" width="0.0269%" height="15" fill="rgb(219,28,31)" fg:x="346556" fg:w="129"/><text x="72.4029%" y="815.50"></text></g><g><title>mntput_no_expire (208 samples, 0.04%)</title><rect x="72.1804%" y="789" width="0.0433%" height="15" fill="rgb(233,109,36)" fg:x="346688" fg:w="208"/><text x="72.4304%" y="799.50"></text></g><g><title>mntput (215 samples, 0.04%)</title><rect x="72.1797%" y="805" width="0.0448%" height="15" fill="rgb(246,88,11)" fg:x="346685" fg:w="215"/><text x="72.4297%" y="815.50"></text></g><g><title>percpu_counter_add_batch (95 samples, 0.02%)</title><rect x="72.2289%" y="805" width="0.0198%" height="15" fill="rgb(209,212,17)" fg:x="346921" fg:w="95"/><text x="72.4789%" y="815.50"></text></g><g><title>apparmor_file_free_security (493 samples, 0.10%)</title><rect x="72.2826%" y="789" width="0.1026%" height="15" fill="rgb(243,59,29)" fg:x="347179" fg:w="493"/><text x="72.5326%" y="799.50"></text></g><g><title>memcg_slab_free_hook (121 samples, 0.03%)</title><rect x="72.5049%" y="773" width="0.0252%" height="15" fill="rgb(244,205,48)" fg:x="348247" fg:w="121"/><text x="72.7549%" y="783.50"></text></g><g><title>kmem_cache_free (762 samples, 0.16%)</title><rect x="72.3923%" y="789" width="0.1586%" height="15" fill="rgb(227,30,6)" fg:x="347706" fg:w="762"/><text x="72.6423%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (100 samples, 0.02%)</title><rect x="72.5301%" y="773" width="0.0208%" height="15" fill="rgb(220,205,48)" fg:x="348368" fg:w="100"/><text x="72.7801%" y="783.50"></text></g><g><title>[[falcon_kal]] (107 samples, 0.02%)</title><rect x="72.5611%" y="773" width="0.0223%" height="15" fill="rgb(250,94,14)" fg:x="348517" fg:w="107"/><text x="72.8111%" y="783.50"></text></g><g><title>_ZdlPv (65 samples, 0.01%)</title><rect x="72.5834%" y="773" width="0.0135%" height="15" fill="rgb(216,119,42)" fg:x="348624" fg:w="65"/><text x="72.8334%" y="783.50"></text></g><g><title>_ZdlPv (62 samples, 0.01%)</title><rect x="72.6682%" y="757" width="0.0129%" height="15" fill="rgb(232,155,0)" fg:x="349031" fg:w="62"/><text x="72.9182%" y="767.50"></text></g><g><title>__cond_resched (62 samples, 0.01%)</title><rect x="72.8957%" y="677" width="0.0129%" height="15" fill="rgb(212,24,32)" fg:x="350124" fg:w="62"/><text x="73.1457%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (52 samples, 0.01%)</title><rect x="72.9361%" y="613" width="0.0108%" height="15" fill="rgb(216,69,20)" fg:x="350318" fg:w="52"/><text x="73.1861%" y="623.50"></text></g><g><title>x86_pmu_enable (51 samples, 0.01%)</title><rect x="72.9363%" y="597" width="0.0106%" height="15" fill="rgb(229,73,31)" fg:x="350319" fg:w="51"/><text x="73.1863%" y="607.50"></text></g><g><title>intel_pmu_enable_all (51 samples, 0.01%)</title><rect x="72.9363%" y="581" width="0.0106%" height="15" fill="rgb(224,219,20)" fg:x="350319" fg:w="51"/><text x="73.1863%" y="591.50"></text></g><g><title>native_write_msr (51 samples, 0.01%)</title><rect x="72.9363%" y="565" width="0.0106%" height="15" fill="rgb(215,146,41)" fg:x="350319" fg:w="51"/><text x="73.1863%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (55 samples, 0.01%)</title><rect x="72.9361%" y="629" width="0.0115%" height="15" fill="rgb(244,71,31)" fg:x="350318" fg:w="55"/><text x="73.1861%" y="639.50"></text></g><g><title>__cond_resched (73 samples, 0.02%)</title><rect x="72.9330%" y="661" width="0.0152%" height="15" fill="rgb(224,24,11)" fg:x="350303" fg:w="73"/><text x="73.1830%" y="671.50"></text></g><g><title>__schedule (59 samples, 0.01%)</title><rect x="72.9359%" y="645" width="0.0123%" height="15" fill="rgb(229,76,15)" fg:x="350317" fg:w="59"/><text x="73.1859%" y="655.50"></text></g><g><title>down_read (211 samples, 0.04%)</title><rect x="72.9086%" y="677" width="0.0439%" height="15" fill="rgb(209,93,2)" fg:x="350186" fg:w="211"/><text x="73.1586%" y="687.50"></text></g><g><title>[[falcon_kal]] (449 samples, 0.09%)</title><rect x="72.8926%" y="693" width="0.0935%" height="15" fill="rgb(216,200,50)" fg:x="350109" fg:w="449"/><text x="73.1426%" y="703.50"></text></g><g><title>down_write (161 samples, 0.03%)</title><rect x="72.9526%" y="677" width="0.0335%" height="15" fill="rgb(211,67,34)" fg:x="350397" fg:w="161"/><text x="73.2026%" y="687.50"></text></g><g><title>up_read (93 samples, 0.02%)</title><rect x="72.9950%" y="693" width="0.0194%" height="15" fill="rgb(225,87,47)" fg:x="350601" fg:w="93"/><text x="73.2450%" y="703.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,553 samples, 0.32%)</title><rect x="72.7198%" y="725" width="0.3233%" height="15" fill="rgb(217,185,16)" fg:x="349279" fg:w="1553"/><text x="72.9698%" y="735.50"></text></g><g><title>cshook_security_inode_free_security (1,302 samples, 0.27%)</title><rect x="72.7721%" y="709" width="0.2711%" height="15" fill="rgb(205,0,0)" fg:x="349530" fg:w="1302"/><text x="73.0221%" y="719.50"></text></g><g><title>up_write (138 samples, 0.03%)</title><rect x="73.0144%" y="693" width="0.0287%" height="15" fill="rgb(207,116,45)" fg:x="350694" fg:w="138"/><text x="73.2644%" y="703.50"></text></g><g><title>cshook_security_file_free_security (1,832 samples, 0.38%)</title><rect x="72.6861%" y="757" width="0.3814%" height="15" fill="rgb(221,156,26)" fg:x="349117" fg:w="1832"/><text x="72.9361%" y="767.50"></text></g><g><title>cshook_security_file_free_security (1,680 samples, 0.35%)</title><rect x="72.7177%" y="741" width="0.3498%" height="15" fill="rgb(213,140,4)" fg:x="349269" fg:w="1680"/><text x="72.9677%" y="751.50"></text></g><g><title>cshook_security_inode_free_security (117 samples, 0.02%)</title><rect x="73.0431%" y="725" width="0.0244%" height="15" fill="rgb(231,224,15)" fg:x="350832" fg:w="117"/><text x="73.2931%" y="735.50"></text></g><g><title>pinnedhook_security_file_free_security (2,457 samples, 0.51%)</title><rect x="72.5564%" y="789" width="0.5115%" height="15" fill="rgb(244,76,20)" fg:x="348494" fg:w="2457"/><text x="72.8064%" y="799.50"></text></g><g><title>cshook_security_file_free_security (2,261 samples, 0.47%)</title><rect x="72.5972%" y="773" width="0.4707%" height="15" fill="rgb(238,117,7)" fg:x="348690" fg:w="2261"/><text x="72.8472%" y="783.50"></text></g><g><title>release_rundown (59 samples, 0.01%)</title><rect x="73.0679%" y="789" width="0.0123%" height="15" fill="rgb(235,1,10)" fg:x="350951" fg:w="59"/><text x="73.3179%" y="799.50"></text></g><g><title>security_file_free (3,957 samples, 0.82%)</title><rect x="72.2578%" y="805" width="0.8238%" height="15" fill="rgb(216,165,6)" fg:x="347060" fg:w="3957"/><text x="72.5078%" y="815.50"></text></g><g><title>__fput (6,826 samples, 1.42%)</title><rect x="71.6626%" y="821" width="1.4212%" height="15" fill="rgb(246,91,35)" fg:x="344201" fg:w="6826"/><text x="71.9126%" y="831.50"></text></g><g><title>btrfs_release_file (82 samples, 0.02%)</title><rect x="73.0927%" y="821" width="0.0171%" height="15" fill="rgb(228,96,24)" fg:x="351070" fg:w="82"/><text x="73.3427%" y="831.50"></text></g><g><title>ima_file_free (121 samples, 0.03%)</title><rect x="73.1141%" y="821" width="0.0252%" height="15" fill="rgb(254,217,53)" fg:x="351173" fg:w="121"/><text x="73.3641%" y="831.50"></text></g><g><title>locks_remove_file (156 samples, 0.03%)</title><rect x="73.1393%" y="821" width="0.0325%" height="15" fill="rgb(209,60,0)" fg:x="351294" fg:w="156"/><text x="73.3893%" y="831.50"></text></g><g><title>____fput (7,327 samples, 1.53%)</title><rect x="71.6590%" y="837" width="1.5255%" height="15" fill="rgb(250,93,26)" fg:x="344184" fg:w="7327"/><text x="71.9090%" y="847.50"></text></g><g><title>_raw_spin_lock_irq (129 samples, 0.03%)</title><rect x="73.1966%" y="837" width="0.0269%" height="15" fill="rgb(211,9,40)" fg:x="351569" fg:w="129"/><text x="73.4466%" y="847.50"></text></g><g><title>exit_to_user_mode_loop (9,345 samples, 1.95%)</title><rect x="71.2801%" y="869" width="1.9456%" height="15" fill="rgb(242,57,20)" fg:x="342364" fg:w="9345"/><text x="71.5301%" y="879.50">e..</text></g><g><title>task_work_run (7,724 samples, 1.61%)</title><rect x="71.6176%" y="853" width="1.6081%" height="15" fill="rgb(248,85,48)" fg:x="343985" fg:w="7724"/><text x="71.8676%" y="863.50"></text></g><g><title>fpregs_assert_state_consistent (290 samples, 0.06%)</title><rect x="73.2257%" y="869" width="0.0604%" height="15" fill="rgb(212,117,2)" fg:x="351709" fg:w="290"/><text x="73.4757%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (10,859 samples, 2.26%)</title><rect x="71.0515%" y="885" width="2.2608%" height="15" fill="rgb(243,19,3)" fg:x="341266" fg:w="10859"/><text x="71.3015%" y="895.50">e..</text></g><g><title>task_work_run (67 samples, 0.01%)</title><rect x="73.2984%" y="869" width="0.0139%" height="15" fill="rgb(232,217,24)" fg:x="352058" fg:w="67"/><text x="73.5484%" y="879.50"></text></g><g><title>fpregs_assert_state_consistent (167 samples, 0.03%)</title><rect x="73.3123%" y="885" width="0.0348%" height="15" fill="rgb(224,175,40)" fg:x="352125" fg:w="167"/><text x="73.5623%" y="895.50"></text></g><g><title>syscall_exit_to_user_mode (11,392 samples, 2.37%)</title><rect x="70.9778%" y="901" width="2.3718%" height="15" fill="rgb(212,162,32)" fg:x="340912" fg:w="11392"/><text x="71.2278%" y="911.50">sy..</text></g><g><title>_raw_spin_lock (183 samples, 0.04%)</title><rect x="73.5767%" y="853" width="0.0381%" height="15" fill="rgb(215,9,4)" fg:x="353395" fg:w="183"/><text x="73.8267%" y="863.50"></text></g><g><title>fput_many (162 samples, 0.03%)</title><rect x="73.6413%" y="821" width="0.0337%" height="15" fill="rgb(242,42,7)" fg:x="353705" fg:w="162"/><text x="73.8913%" y="831.50"></text></g><g><title>task_work_add (131 samples, 0.03%)</title><rect x="73.6477%" y="805" width="0.0273%" height="15" fill="rgb(242,184,45)" fg:x="353736" fg:w="131"/><text x="73.8977%" y="815.50"></text></g><g><title>fput (338 samples, 0.07%)</title><rect x="73.6407%" y="837" width="0.0704%" height="15" fill="rgb(228,111,51)" fg:x="353702" fg:w="338"/><text x="73.8907%" y="847.50"></text></g><g><title>task_work_add (173 samples, 0.04%)</title><rect x="73.6750%" y="821" width="0.0360%" height="15" fill="rgb(236,147,17)" fg:x="353867" fg:w="173"/><text x="73.9250%" y="831.50"></text></g><g><title>fput_many (122 samples, 0.03%)</title><rect x="73.7110%" y="837" width="0.0254%" height="15" fill="rgb(210,75,22)" fg:x="354040" fg:w="122"/><text x="73.9610%" y="847.50"></text></g><g><title>filp_close (655 samples, 0.14%)</title><rect x="73.6194%" y="853" width="0.1364%" height="15" fill="rgb(217,159,45)" fg:x="353600" fg:w="655"/><text x="73.8694%" y="863.50"></text></g><g><title>locks_remove_posix (93 samples, 0.02%)</title><rect x="73.7364%" y="837" width="0.0194%" height="15" fill="rgb(245,165,53)" fg:x="354162" fg:w="93"/><text x="73.9864%" y="847.50"></text></g><g><title>locks_remove_posix (68 samples, 0.01%)</title><rect x="73.7583%" y="853" width="0.0142%" height="15" fill="rgb(251,190,50)" fg:x="354267" fg:w="68"/><text x="74.0083%" y="863.50"></text></g><g><title>close_fd (1,034 samples, 0.22%)</title><rect x="73.5736%" y="869" width="0.2153%" height="15" fill="rgb(208,203,29)" fg:x="353380" fg:w="1034"/><text x="73.8236%" y="879.50"></text></g><g><title>pick_file (79 samples, 0.02%)</title><rect x="73.7725%" y="853" width="0.0164%" height="15" fill="rgb(207,209,35)" fg:x="354335" fg:w="79"/><text x="74.0225%" y="863.50"></text></g><g><title>__x64_sys_close (1,066 samples, 0.22%)</title><rect x="73.5722%" y="885" width="0.2219%" height="15" fill="rgb(230,144,49)" fg:x="353373" fg:w="1066"/><text x="73.8222%" y="895.50"></text></g><g><title>arch_get_unmapped_area_topdown (78 samples, 0.02%)</title><rect x="73.8116%" y="805" width="0.0162%" height="15" fill="rgb(229,31,6)" fg:x="354523" fg:w="78"/><text x="74.0616%" y="815.50"></text></g><g><title>vm_unmapped_area (68 samples, 0.01%)</title><rect x="73.8137%" y="789" width="0.0142%" height="15" fill="rgb(251,129,24)" fg:x="354533" fg:w="68"/><text x="74.0637%" y="799.50"></text></g><g><title>unmapped_area_topdown (68 samples, 0.01%)</title><rect x="73.8137%" y="773" width="0.0142%" height="15" fill="rgb(235,105,15)" fg:x="354533" fg:w="68"/><text x="74.0637%" y="783.50"></text></g><g><title>get_unmapped_area (93 samples, 0.02%)</title><rect x="73.8110%" y="821" width="0.0194%" height="15" fill="rgb(216,52,43)" fg:x="354520" fg:w="93"/><text x="74.0610%" y="831.50"></text></g><g><title>perf_event_mmap_output (90 samples, 0.02%)</title><rect x="73.8664%" y="741" width="0.0187%" height="15" fill="rgb(238,144,41)" fg:x="354786" fg:w="90"/><text x="74.1164%" y="751.50"></text></g><g><title>perf_iterate_sb (194 samples, 0.04%)</title><rect x="73.8464%" y="773" width="0.0404%" height="15" fill="rgb(243,63,9)" fg:x="354690" fg:w="194"/><text x="74.0964%" y="783.50"></text></g><g><title>perf_iterate_ctx (163 samples, 0.03%)</title><rect x="73.8528%" y="757" width="0.0339%" height="15" fill="rgb(246,208,1)" fg:x="354721" fg:w="163"/><text x="74.1028%" y="767.50"></text></g><g><title>perf_event_mmap_event (221 samples, 0.05%)</title><rect x="73.8412%" y="789" width="0.0460%" height="15" fill="rgb(233,182,18)" fg:x="354665" fg:w="221"/><text x="74.0912%" y="799.50"></text></g><g><title>perf_event_mmap (235 samples, 0.05%)</title><rect x="73.8393%" y="805" width="0.0489%" height="15" fill="rgb(242,224,8)" fg:x="354656" fg:w="235"/><text x="74.0893%" y="815.50"></text></g><g><title>__vma_adjust (112 samples, 0.02%)</title><rect x="73.8947%" y="789" width="0.0233%" height="15" fill="rgb(243,54,37)" fg:x="354922" fg:w="112"/><text x="74.1447%" y="799.50"></text></g><g><title>vma_merge (142 samples, 0.03%)</title><rect x="73.8932%" y="805" width="0.0296%" height="15" fill="rgb(233,192,12)" fg:x="354915" fg:w="142"/><text x="74.1432%" y="815.50"></text></g><g><title>mmap_region (451 samples, 0.09%)</title><rect x="73.8305%" y="821" width="0.0939%" height="15" fill="rgb(251,192,53)" fg:x="354614" fg:w="451"/><text x="74.0805%" y="831.50"></text></g><g><title>do_mmap (566 samples, 0.12%)</title><rect x="73.8081%" y="837" width="0.1178%" height="15" fill="rgb(246,141,26)" fg:x="354506" fg:w="566"/><text x="74.0581%" y="847.50"></text></g><g><title>ksys_mmap_pgoff (635 samples, 0.13%)</title><rect x="73.8029%" y="869" width="0.1322%" height="15" fill="rgb(239,195,19)" fg:x="354481" fg:w="635"/><text x="74.0529%" y="879.50"></text></g><g><title>vm_mmap_pgoff (622 samples, 0.13%)</title><rect x="73.8056%" y="853" width="0.1295%" height="15" fill="rgb(241,16,39)" fg:x="354494" fg:w="622"/><text x="74.0556%" y="863.50"></text></g><g><title>__x64_sys_mmap (637 samples, 0.13%)</title><rect x="73.8029%" y="885" width="0.1326%" height="15" fill="rgb(223,13,53)" fg:x="354481" fg:w="637"/><text x="74.0529%" y="895.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (63 samples, 0.01%)</title><rect x="73.9511%" y="821" width="0.0131%" height="15" fill="rgb(214,227,0)" fg:x="355193" fg:w="63"/><text x="74.2011%" y="831.50"></text></g><g><title>open_last_lookups (60 samples, 0.01%)</title><rect x="73.9644%" y="821" width="0.0125%" height="15" fill="rgb(228,103,26)" fg:x="355257" fg:w="60"/><text x="74.2144%" y="831.50"></text></g><g><title>lookup_open.isra.0 (49 samples, 0.01%)</title><rect x="73.9667%" y="805" width="0.0102%" height="15" fill="rgb(254,177,53)" fg:x="355268" fg:w="49"/><text x="74.2167%" y="815.50"></text></g><g><title>do_filp_open (201 samples, 0.04%)</title><rect x="73.9361%" y="853" width="0.0418%" height="15" fill="rgb(208,201,34)" fg:x="355121" fg:w="201"/><text x="74.1861%" y="863.50"></text></g><g><title>path_openat (198 samples, 0.04%)</title><rect x="73.9367%" y="837" width="0.0412%" height="15" fill="rgb(212,39,5)" fg:x="355124" fg:w="198"/><text x="74.1867%" y="847.50"></text></g><g><title>do_sys_openat2 (229 samples, 0.05%)</title><rect x="73.9361%" y="869" width="0.0477%" height="15" fill="rgb(246,117,3)" fg:x="355121" fg:w="229"/><text x="74.1861%" y="879.50"></text></g><g><title>__x64_sys_open (233 samples, 0.05%)</title><rect x="73.9355%" y="885" width="0.0485%" height="15" fill="rgb(244,118,39)" fg:x="355118" fg:w="233"/><text x="74.1855%" y="895.50"></text></g><g><title>build_open_flags (280 samples, 0.06%)</title><rect x="74.0140%" y="869" width="0.0583%" height="15" fill="rgb(241,64,10)" fg:x="355495" fg:w="280"/><text x="74.2640%" y="879.50"></text></g><g><title>__fsnotify_parent (105 samples, 0.02%)</title><rect x="74.1179%" y="853" width="0.0219%" height="15" fill="rgb(229,39,44)" fg:x="355994" fg:w="105"/><text x="74.3679%" y="863.50"></text></g><g><title>alloc_empty_file (118 samples, 0.02%)</title><rect x="74.1764%" y="837" width="0.0246%" height="15" fill="rgb(230,226,3)" fg:x="356275" fg:w="118"/><text x="74.4264%" y="847.50"></text></g><g><title>clear_page_erms (70 samples, 0.01%)</title><rect x="74.4676%" y="677" width="0.0146%" height="15" fill="rgb(222,13,42)" fg:x="357674" fg:w="70"/><text x="74.7176%" y="687.50"></text></g><g><title>get_page_from_freelist (129 samples, 0.03%)</title><rect x="74.4643%" y="693" width="0.0269%" height="15" fill="rgb(247,180,54)" fg:x="357658" fg:w="129"/><text x="74.7143%" y="703.50"></text></g><g><title>__alloc_pages (157 samples, 0.03%)</title><rect x="74.4591%" y="709" width="0.0327%" height="15" fill="rgb(205,96,16)" fg:x="357633" fg:w="157"/><text x="74.7091%" y="719.50"></text></g><g><title>alloc_pages (165 samples, 0.03%)</title><rect x="74.4583%" y="725" width="0.0344%" height="15" fill="rgb(205,100,21)" fg:x="357629" fg:w="165"/><text x="74.7083%" y="735.50"></text></g><g><title>allocate_slab (265 samples, 0.06%)</title><rect x="74.4487%" y="741" width="0.0552%" height="15" fill="rgb(248,51,4)" fg:x="357583" fg:w="265"/><text x="74.6987%" y="751.50"></text></g><g><title>___slab_alloc (526 samples, 0.11%)</title><rect x="74.3971%" y="773" width="0.1095%" height="15" fill="rgb(217,197,30)" fg:x="357335" fg:w="526"/><text x="74.6471%" y="783.50"></text></g><g><title>new_slab (280 samples, 0.06%)</title><rect x="74.4483%" y="757" width="0.0583%" height="15" fill="rgb(240,179,40)" fg:x="357581" fg:w="280"/><text x="74.6983%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="74.5111%" y="725" width="0.0102%" height="15" fill="rgb(212,185,35)" fg:x="357883" fg:w="49"/><text x="74.7611%" y="735.50"></text></g><g><title>x86_pmu_enable (49 samples, 0.01%)</title><rect x="74.5111%" y="709" width="0.0102%" height="15" fill="rgb(251,222,31)" fg:x="357883" fg:w="49"/><text x="74.7611%" y="719.50"></text></g><g><title>intel_pmu_enable_all (49 samples, 0.01%)</title><rect x="74.5111%" y="693" width="0.0102%" height="15" fill="rgb(208,140,36)" fg:x="357883" fg:w="49"/><text x="74.7611%" y="703.50"></text></g><g><title>finish_task_switch.isra.0 (53 samples, 0.01%)</title><rect x="74.5105%" y="741" width="0.0110%" height="15" fill="rgb(220,148,1)" fg:x="357880" fg:w="53"/><text x="74.7605%" y="751.50"></text></g><g><title>__cond_resched (73 samples, 0.02%)</title><rect x="74.5066%" y="773" width="0.0152%" height="15" fill="rgb(254,4,28)" fg:x="357861" fg:w="73"/><text x="74.7566%" y="783.50"></text></g><g><title>__schedule (56 samples, 0.01%)</title><rect x="74.5101%" y="757" width="0.0117%" height="15" fill="rgb(222,185,44)" fg:x="357878" fg:w="56"/><text x="74.7601%" y="767.50"></text></g><g><title>get_obj_cgroup_from_current (659 samples, 0.14%)</title><rect x="74.5226%" y="773" width="0.1372%" height="15" fill="rgb(215,74,39)" fg:x="357938" fg:w="659"/><text x="74.7726%" y="783.50"></text></g><g><title>__mod_memcg_lruvec_state (57 samples, 0.01%)</title><rect x="74.7820%" y="741" width="0.0119%" height="15" fill="rgb(247,86,4)" fg:x="359184" fg:w="57"/><text x="75.0320%" y="751.50"></text></g><g><title>mod_objcg_state (174 samples, 0.04%)</title><rect x="74.7599%" y="757" width="0.0362%" height="15" fill="rgb(231,105,32)" fg:x="359078" fg:w="174"/><text x="75.0099%" y="767.50"></text></g><g><title>memcg_slab_post_alloc_hook (657 samples, 0.14%)</title><rect x="74.6600%" y="773" width="0.1368%" height="15" fill="rgb(222,65,35)" fg:x="358598" fg:w="657"/><text x="74.9100%" y="783.50"></text></g><g><title>obj_cgroup_charge_pages (72 samples, 0.01%)</title><rect x="74.8076%" y="757" width="0.0150%" height="15" fill="rgb(218,145,35)" fg:x="359307" fg:w="72"/><text x="75.0576%" y="767.50"></text></g><g><title>obj_cgroup_charge (131 samples, 0.03%)</title><rect x="74.7989%" y="773" width="0.0273%" height="15" fill="rgb(208,7,15)" fg:x="359265" fg:w="131"/><text x="75.0489%" y="783.50"></text></g><g><title>kmem_cache_alloc (2,415 samples, 0.50%)</title><rect x="74.3311%" y="789" width="0.5028%" height="15" fill="rgb(209,83,13)" fg:x="357018" fg:w="2415"/><text x="74.5811%" y="799.50"></text></g><g><title>memset_erms (148 samples, 0.03%)</title><rect x="74.8378%" y="789" width="0.0308%" height="15" fill="rgb(218,3,10)" fg:x="359452" fg:w="148"/><text x="75.0878%" y="799.50"></text></g><g><title>apparmor_file_alloc_security (587 samples, 0.12%)</title><rect x="74.8944%" y="773" width="0.1222%" height="15" fill="rgb(211,219,4)" fg:x="359724" fg:w="587"/><text x="75.1444%" y="783.50"></text></g><g><title>kmem_cache_alloc (312 samples, 0.06%)</title><rect x="75.0169%" y="773" width="0.0650%" height="15" fill="rgb(228,194,12)" fg:x="360312" fg:w="312"/><text x="75.2669%" y="783.50"></text></g><g><title>memset_erms (128 samples, 0.03%)</title><rect x="75.0881%" y="773" width="0.0266%" height="15" fill="rgb(210,175,7)" fg:x="360654" fg:w="128"/><text x="75.3381%" y="783.50"></text></g><g><title>security_file_alloc (1,184 samples, 0.25%)</title><rect x="74.8699%" y="789" width="0.2465%" height="15" fill="rgb(243,132,6)" fg:x="359606" fg:w="1184"/><text x="75.1199%" y="799.50"></text></g><g><title>__alloc_file (4,201 samples, 0.87%)</title><rect x="74.2440%" y="805" width="0.8746%" height="15" fill="rgb(207,72,18)" fg:x="356600" fg:w="4201"/><text x="74.4940%" y="815.50"></text></g><g><title>alloc_empty_file (4,272 samples, 0.89%)</title><rect x="74.2388%" y="821" width="0.8894%" height="15" fill="rgb(236,1,18)" fg:x="356575" fg:w="4272"/><text x="74.4888%" y="831.50"></text></g><g><title>__legitimize_path (106 samples, 0.02%)</title><rect x="75.1843%" y="789" width="0.0221%" height="15" fill="rgb(227,0,18)" fg:x="361116" fg:w="106"/><text x="75.4343%" y="799.50"></text></g><g><title>__legitimize_mnt (237 samples, 0.05%)</title><rect x="75.2471%" y="757" width="0.0493%" height="15" fill="rgb(247,37,5)" fg:x="361418" fg:w="237"/><text x="75.4971%" y="767.50"></text></g><g><title>__legitimize_path (408 samples, 0.08%)</title><rect x="75.2388%" y="773" width="0.0849%" height="15" fill="rgb(237,179,24)" fg:x="361378" fg:w="408"/><text x="75.4888%" y="783.50"></text></g><g><title>lockref_get_not_dead (131 samples, 0.03%)</title><rect x="75.2965%" y="757" width="0.0273%" height="15" fill="rgb(226,53,20)" fg:x="361655" fg:w="131"/><text x="75.5465%" y="767.50"></text></g><g><title>legitimize_links (50 samples, 0.01%)</title><rect x="75.3238%" y="773" width="0.0104%" height="15" fill="rgb(247,75,7)" fg:x="361786" fg:w="50"/><text x="75.5738%" y="783.50"></text></g><g><title>complete_walk (790 samples, 0.16%)</title><rect x="75.1726%" y="805" width="0.1645%" height="15" fill="rgb(233,96,12)" fg:x="361060" fg:w="790"/><text x="75.4226%" y="815.50"></text></g><g><title>try_to_unlazy (557 samples, 0.12%)</title><rect x="75.2211%" y="789" width="0.1160%" height="15" fill="rgb(224,125,0)" fg:x="361293" fg:w="557"/><text x="75.4711%" y="799.50"></text></g><g><title>aa_get_task_label (186 samples, 0.04%)</title><rect x="75.4410%" y="757" width="0.0387%" height="15" fill="rgb(224,92,25)" fg:x="362349" fg:w="186"/><text x="75.6910%" y="767.50"></text></g><g><title>ima_file_check (649 samples, 0.14%)</title><rect x="75.3454%" y="805" width="0.1351%" height="15" fill="rgb(224,42,24)" fg:x="361890" fg:w="649"/><text x="75.5954%" y="815.50"></text></g><g><title>security_task_getsecid_subj (545 samples, 0.11%)</title><rect x="75.3671%" y="789" width="0.1135%" height="15" fill="rgb(234,132,49)" fg:x="361994" fg:w="545"/><text x="75.6171%" y="799.50"></text></g><g><title>apparmor_task_getsecid (339 samples, 0.07%)</title><rect x="75.4099%" y="773" width="0.0706%" height="15" fill="rgb(248,100,35)" fg:x="362200" fg:w="339"/><text x="75.6599%" y="783.50"></text></g><g><title>btrfs_permission (98 samples, 0.02%)</title><rect x="75.6594%" y="789" width="0.0204%" height="15" fill="rgb(239,94,40)" fg:x="363398" fg:w="98"/><text x="75.9094%" y="799.50"></text></g><g><title>inode_permission (254 samples, 0.05%)</title><rect x="75.6798%" y="789" width="0.0529%" height="15" fill="rgb(235,139,28)" fg:x="363496" fg:w="254"/><text x="75.9298%" y="799.50"></text></g><g><title>may_open (1,213 samples, 0.25%)</title><rect x="75.4814%" y="805" width="0.2525%" height="15" fill="rgb(217,144,7)" fg:x="362543" fg:w="1213"/><text x="75.7314%" y="815.50"></text></g><g><title>fsverity_file_open (55 samples, 0.01%)</title><rect x="75.8530%" y="757" width="0.0115%" height="15" fill="rgb(227,55,4)" fg:x="364328" fg:w="55"/><text x="76.1030%" y="767.50"></text></g><g><title>btrfs_file_open (85 samples, 0.02%)</title><rect x="75.8484%" y="773" width="0.0177%" height="15" fill="rgb(252,82,54)" fg:x="364306" fg:w="85"/><text x="76.0984%" y="783.50"></text></g><g><title>file_ra_state_init (160 samples, 0.03%)</title><rect x="75.8661%" y="773" width="0.0333%" height="15" fill="rgb(245,172,4)" fg:x="364391" fg:w="160"/><text x="76.1161%" y="783.50"></text></g><g><title>lockref_get (119 samples, 0.02%)</title><rect x="75.9227%" y="757" width="0.0248%" height="15" fill="rgb(207,26,27)" fg:x="364663" fg:w="119"/><text x="76.1727%" y="767.50"></text></g><g><title>path_get (171 samples, 0.04%)</title><rect x="75.9198%" y="773" width="0.0356%" height="15" fill="rgb(252,98,18)" fg:x="364649" fg:w="171"/><text x="76.1698%" y="783.50"></text></g><g><title>apparmor_file_open (493 samples, 0.10%)</title><rect x="75.9935%" y="757" width="0.1026%" height="15" fill="rgb(244,8,26)" fg:x="365003" fg:w="493"/><text x="76.2435%" y="767.50"></text></g><g><title>__fsnotify_parent (245 samples, 0.05%)</title><rect x="76.1147%" y="741" width="0.0510%" height="15" fill="rgb(237,173,45)" fg:x="365585" fg:w="245"/><text x="76.3647%" y="751.50"></text></g><g><title>fsnotify_perm.part.0 (314 samples, 0.07%)</title><rect x="76.1005%" y="757" width="0.0654%" height="15" fill="rgb(208,213,49)" fg:x="365517" fg:w="314"/><text x="76.3505%" y="767.50"></text></g><g><title>[[falcon_kal]] (52 samples, 0.01%)</title><rect x="76.1715%" y="725" width="0.0108%" height="15" fill="rgb(212,122,37)" fg:x="365858" fg:w="52"/><text x="76.4215%" y="735.50"></text></g><g><title>cshook_security_file_open (252 samples, 0.05%)</title><rect x="76.1703%" y="741" width="0.0525%" height="15" fill="rgb(213,80,17)" fg:x="365852" fg:w="252"/><text x="76.4203%" y="751.50"></text></g><g><title>cshook_security_file_permission (175 samples, 0.04%)</title><rect x="76.1863%" y="725" width="0.0364%" height="15" fill="rgb(206,210,43)" fg:x="365929" fg:w="175"/><text x="76.4363%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (114 samples, 0.02%)</title><rect x="76.1990%" y="709" width="0.0237%" height="15" fill="rgb(229,214,3)" fg:x="365990" fg:w="114"/><text x="76.4490%" y="719.50"></text></g><g><title>pinnedhook_security_file_open (297 samples, 0.06%)</title><rect x="76.1659%" y="757" width="0.0618%" height="15" fill="rgb(235,213,29)" fg:x="365831" fg:w="297"/><text x="76.4159%" y="767.50"></text></g><g><title>do_dentry_open (2,370 samples, 0.49%)</title><rect x="75.7447%" y="789" width="0.4934%" height="15" fill="rgb(248,135,26)" fg:x="363808" fg:w="2370"/><text x="75.9947%" y="799.50"></text></g><g><title>security_file_open (1,343 samples, 0.28%)</title><rect x="75.9586%" y="773" width="0.2796%" height="15" fill="rgb(242,188,12)" fg:x="364835" fg:w="1343"/><text x="76.2086%" y="783.50"></text></g><g><title>release_rundown (50 samples, 0.01%)</title><rect x="76.2278%" y="757" width="0.0104%" height="15" fill="rgb(245,38,12)" fg:x="366128" fg:w="50"/><text x="76.4778%" y="767.50"></text></g><g><title>errseq_sample (537 samples, 0.11%)</title><rect x="76.2382%" y="789" width="0.1118%" height="15" fill="rgb(218,42,13)" fg:x="366178" fg:w="537"/><text x="76.4882%" y="799.50"></text></g><g><title>do_open (5,935 samples, 1.24%)</title><rect x="75.1301%" y="821" width="1.2357%" height="15" fill="rgb(238,132,49)" fg:x="360856" fg:w="5935"/><text x="75.3801%" y="831.50"></text></g><g><title>vfs_open (3,008 samples, 0.63%)</title><rect x="75.7395%" y="805" width="0.6263%" height="15" fill="rgb(209,196,19)" fg:x="363783" fg:w="3008"/><text x="75.9895%" y="815.50"></text></g><g><title>btrfs_permission (137 samples, 0.03%)</title><rect x="76.6083%" y="805" width="0.0285%" height="15" fill="rgb(244,131,22)" fg:x="367956" fg:w="137"/><text x="76.8583%" y="815.50"></text></g><g><title>btrfs_permission (235 samples, 0.05%)</title><rect x="76.7893%" y="789" width="0.0489%" height="15" fill="rgb(223,18,34)" fg:x="368825" fg:w="235"/><text x="77.0393%" y="799.50"></text></g><g><title>generic_permission (222 samples, 0.05%)</title><rect x="76.7920%" y="773" width="0.0462%" height="15" fill="rgb(252,124,54)" fg:x="368838" fg:w="222"/><text x="77.0420%" y="783.50"></text></g><g><title>inode_permission (1,135 samples, 0.24%)</title><rect x="76.6369%" y="805" width="0.2363%" height="15" fill="rgb(229,106,42)" fg:x="368093" fg:w="1135"/><text x="76.8869%" y="815.50"></text></g><g><title>security_inode_permission (139 samples, 0.03%)</title><rect x="76.8442%" y="789" width="0.0289%" height="15" fill="rgb(221,129,1)" fg:x="369089" fg:w="139"/><text x="77.0942%" y="799.50"></text></g><g><title>__d_lookup_rcu (1,232 samples, 0.26%)</title><rect x="76.9710%" y="773" width="0.2565%" height="15" fill="rgb(229,74,15)" fg:x="369698" fg:w="1232"/><text x="77.2210%" y="783.50"></text></g><g><title>lookup_fast (1,417 samples, 0.30%)</title><rect x="76.9327%" y="789" width="0.2950%" height="15" fill="rgb(210,206,50)" fg:x="369514" fg:w="1417"/><text x="77.1827%" y="799.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (4,236 samples, 0.88%)</title><rect x="76.3877%" y="821" width="0.8819%" height="15" fill="rgb(251,114,31)" fg:x="366896" fg:w="4236"/><text x="76.6377%" y="831.50"></text></g><g><title>walk_component (1,827 samples, 0.38%)</title><rect x="76.8892%" y="805" width="0.3804%" height="15" fill="rgb(215,225,28)" fg:x="369305" fg:w="1827"/><text x="77.1392%" y="815.50"></text></g><g><title>step_into (201 samples, 0.04%)</title><rect x="77.2277%" y="789" width="0.0418%" height="15" fill="rgb(237,109,14)" fg:x="370931" fg:w="201"/><text x="77.4777%" y="799.50"></text></g><g><title>may_open (77 samples, 0.02%)</title><rect x="77.2721%" y="821" width="0.0160%" height="15" fill="rgb(230,13,37)" fg:x="371144" fg:w="77"/><text x="77.5221%" y="831.50"></text></g><g><title>lookup_fast (2,043 samples, 0.43%)</title><rect x="77.3187%" y="805" width="0.4254%" height="15" fill="rgb(231,40,28)" fg:x="371368" fg:w="2043"/><text x="77.5687%" y="815.50"></text></g><g><title>__d_lookup_rcu (1,976 samples, 0.41%)</title><rect x="77.3327%" y="789" width="0.4114%" height="15" fill="rgb(231,202,18)" fg:x="371435" fg:w="1976"/><text x="77.5827%" y="799.50"></text></g><g><title>open_last_lookups (2,230 samples, 0.46%)</title><rect x="77.2950%" y="821" width="0.4643%" height="15" fill="rgb(225,33,18)" fg:x="371254" fg:w="2230"/><text x="77.5450%" y="831.50"></text></g><g><title>step_into (71 samples, 0.01%)</title><rect x="77.7445%" y="805" width="0.0148%" height="15" fill="rgb(223,64,47)" fg:x="373413" fg:w="71"/><text x="77.9945%" y="815.50"></text></g><g><title>__fget_files (315 samples, 0.07%)</title><rect x="77.8132%" y="773" width="0.0656%" height="15" fill="rgb(234,114,13)" fg:x="373743" fg:w="315"/><text x="78.0632%" y="783.50"></text></g><g><title>__fdget_raw (331 samples, 0.07%)</title><rect x="77.8107%" y="805" width="0.0689%" height="15" fill="rgb(248,56,40)" fg:x="373731" fg:w="331"/><text x="78.0607%" y="815.50"></text></g><g><title>__fget_light (321 samples, 0.07%)</title><rect x="77.8128%" y="789" width="0.0668%" height="15" fill="rgb(221,194,21)" fg:x="373741" fg:w="321"/><text x="78.0628%" y="799.50"></text></g><g><title>__fget_light (52 samples, 0.01%)</title><rect x="77.8796%" y="805" width="0.0108%" height="15" fill="rgb(242,108,46)" fg:x="374062" fg:w="52"/><text x="78.1296%" y="815.50"></text></g><g><title>path_init (771 samples, 0.16%)</title><rect x="77.7593%" y="821" width="0.1605%" height="15" fill="rgb(220,106,10)" fg:x="373484" fg:w="771"/><text x="78.0093%" y="831.50"></text></g><g><title>fput_many (130 samples, 0.03%)</title><rect x="77.8927%" y="805" width="0.0271%" height="15" fill="rgb(211,88,4)" fg:x="374125" fg:w="130"/><text x="78.1427%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (91 samples, 0.02%)</title><rect x="77.9514%" y="741" width="0.0189%" height="15" fill="rgb(214,95,34)" fg:x="374407" fg:w="91"/><text x="78.2014%" y="751.50"></text></g><g><title>x86_pmu_enable (89 samples, 0.02%)</title><rect x="77.9519%" y="725" width="0.0185%" height="15" fill="rgb(250,160,33)" fg:x="374409" fg:w="89"/><text x="78.2019%" y="735.50"></text></g><g><title>intel_pmu_enable_all (88 samples, 0.02%)</title><rect x="77.9521%" y="709" width="0.0183%" height="15" fill="rgb(225,29,10)" fg:x="374410" fg:w="88"/><text x="78.2021%" y="719.50"></text></g><g><title>native_write_msr (83 samples, 0.02%)</title><rect x="77.9531%" y="693" width="0.0173%" height="15" fill="rgb(224,28,30)" fg:x="374415" fg:w="83"/><text x="78.2031%" y="703.50"></text></g><g><title>finish_task_switch.isra.0 (99 samples, 0.02%)</title><rect x="77.9512%" y="757" width="0.0206%" height="15" fill="rgb(231,77,4)" fg:x="374406" fg:w="99"/><text x="78.2012%" y="767.50"></text></g><g><title>__cond_resched (122 samples, 0.03%)</title><rect x="77.9485%" y="789" width="0.0254%" height="15" fill="rgb(209,63,21)" fg:x="374393" fg:w="122"/><text x="78.1985%" y="799.50"></text></g><g><title>__schedule (113 samples, 0.02%)</title><rect x="77.9504%" y="773" width="0.0235%" height="15" fill="rgb(226,22,11)" fg:x="374402" fg:w="113"/><text x="78.2004%" y="783.50"></text></g><g><title>lockref_put_or_lock (125 samples, 0.03%)</title><rect x="77.9739%" y="789" width="0.0260%" height="15" fill="rgb(216,82,30)" fg:x="374515" fg:w="125"/><text x="78.2239%" y="799.50"></text></g><g><title>dput (307 samples, 0.06%)</title><rect x="77.9421%" y="805" width="0.0639%" height="15" fill="rgb(246,227,38)" fg:x="374362" fg:w="307"/><text x="78.1921%" y="815.50"></text></g><g><title>mntput_no_expire (100 samples, 0.02%)</title><rect x="78.0120%" y="789" width="0.0208%" height="15" fill="rgb(251,203,53)" fg:x="374698" fg:w="100"/><text x="78.2620%" y="799.50"></text></g><g><title>mntput (110 samples, 0.02%)</title><rect x="78.0104%" y="805" width="0.0229%" height="15" fill="rgb(254,101,1)" fg:x="374690" fg:w="110"/><text x="78.2604%" y="815.50"></text></g><g><title>terminate_walk (550 samples, 0.11%)</title><rect x="77.9242%" y="821" width="0.1145%" height="15" fill="rgb(241,180,5)" fg:x="374276" fg:w="550"/><text x="78.1742%" y="831.50"></text></g><g><title>path_openat (18,438 samples, 3.84%)</title><rect x="74.2126%" y="837" width="3.8388%" height="15" fill="rgb(218,168,4)" fg:x="356449" fg:w="18438"/><text x="74.4626%" y="847.50">path..</text></g><g><title>do_filp_open (18,798 samples, 3.91%)</title><rect x="74.1422%" y="853" width="3.9137%" height="15" fill="rgb(224,223,32)" fg:x="356111" fg:w="18798"/><text x="74.3922%" y="863.50">do_f..</text></g><g><title>fd_install (125 samples, 0.03%)</title><rect x="78.0562%" y="853" width="0.0260%" height="15" fill="rgb(236,106,22)" fg:x="374910" fg:w="125"/><text x="78.3062%" y="863.50"></text></g><g><title>_find_next_bit (61 samples, 0.01%)</title><rect x="78.1070%" y="837" width="0.0127%" height="15" fill="rgb(206,121,5)" fg:x="375154" fg:w="61"/><text x="78.3570%" y="847.50"></text></g><g><title>_raw_spin_lock (132 samples, 0.03%)</title><rect x="78.1197%" y="837" width="0.0275%" height="15" fill="rgb(233,87,28)" fg:x="375215" fg:w="132"/><text x="78.3697%" y="847.50"></text></g><g><title>alloc_fd (287 samples, 0.06%)</title><rect x="78.1471%" y="837" width="0.0598%" height="15" fill="rgb(236,137,17)" fg:x="375347" fg:w="287"/><text x="78.3971%" y="847.50"></text></g><g><title>expand_files (53 samples, 0.01%)</title><rect x="78.1959%" y="821" width="0.0110%" height="15" fill="rgb(209,183,38)" fg:x="375581" fg:w="53"/><text x="78.4459%" y="831.50"></text></g><g><title>get_unused_fd_flags (615 samples, 0.13%)</title><rect x="78.0822%" y="853" width="0.1280%" height="15" fill="rgb(206,162,44)" fg:x="375035" fg:w="615"/><text x="78.3322%" y="863.50"></text></g><g><title>memcg_slab_post_alloc_hook (91 samples, 0.02%)</title><rect x="78.3718%" y="805" width="0.0189%" height="15" fill="rgb(237,70,39)" fg:x="376426" fg:w="91"/><text x="78.6218%" y="815.50"></text></g><g><title>kmem_cache_alloc (636 samples, 0.13%)</title><rect x="78.2621%" y="821" width="0.1324%" height="15" fill="rgb(212,176,5)" fg:x="375899" fg:w="636"/><text x="78.5121%" y="831.50"></text></g><g><title>memset_erms (1,240 samples, 0.26%)</title><rect x="78.3962%" y="821" width="0.2582%" height="15" fill="rgb(232,95,16)" fg:x="376543" fg:w="1240"/><text x="78.6462%" y="831.50"></text></g><g><title>__check_heap_object (180 samples, 0.04%)</title><rect x="78.8121%" y="773" width="0.0375%" height="15" fill="rgb(219,115,35)" fg:x="378541" fg:w="180"/><text x="79.0621%" y="783.50"></text></g><g><title>__virt_addr_valid (348 samples, 0.07%)</title><rect x="78.8496%" y="773" width="0.0725%" height="15" fill="rgb(251,67,27)" fg:x="378721" fg:w="348"/><text x="79.0996%" y="783.50"></text></g><g><title>__check_object_size.part.0 (769 samples, 0.16%)</title><rect x="78.7622%" y="789" width="0.1601%" height="15" fill="rgb(222,95,40)" fg:x="378301" fg:w="769"/><text x="79.0122%" y="799.50"></text></g><g><title>__virt_addr_valid (143 samples, 0.03%)</title><rect x="78.9223%" y="789" width="0.0298%" height="15" fill="rgb(250,35,16)" fg:x="379070" fg:w="143"/><text x="79.1723%" y="799.50"></text></g><g><title>getname_flags.part.0 (3,607 samples, 0.75%)</title><rect x="78.2206%" y="837" width="0.7510%" height="15" fill="rgb(224,86,44)" fg:x="375700" fg:w="3607"/><text x="78.4706%" y="847.50"></text></g><g><title>strncpy_from_user (1,516 samples, 0.32%)</title><rect x="78.6560%" y="821" width="0.3156%" height="15" fill="rgb(237,53,53)" fg:x="377791" fg:w="1516"/><text x="78.9060%" y="831.50"></text></g><g><title>__check_object_size (1,015 samples, 0.21%)</title><rect x="78.7603%" y="805" width="0.2113%" height="15" fill="rgb(208,171,33)" fg:x="378292" fg:w="1015"/><text x="79.0103%" y="815.50"></text></g><g><title>check_stack_object (94 samples, 0.02%)</title><rect x="78.9520%" y="789" width="0.0196%" height="15" fill="rgb(222,64,27)" fg:x="379213" fg:w="94"/><text x="79.2020%" y="799.50"></text></g><g><title>getname (3,674 samples, 0.76%)</title><rect x="78.2102%" y="853" width="0.7649%" height="15" fill="rgb(221,121,35)" fg:x="375650" fg:w="3674"/><text x="78.4602%" y="863.50"></text></g><g><title>memcg_slab_free_hook (112 samples, 0.02%)</title><rect x="79.0701%" y="821" width="0.0233%" height="15" fill="rgb(228,137,42)" fg:x="379780" fg:w="112"/><text x="79.3201%" y="831.50"></text></g><g><title>kmem_cache_free (552 samples, 0.11%)</title><rect x="78.9974%" y="837" width="0.1149%" height="15" fill="rgb(227,54,21)" fg:x="379431" fg:w="552"/><text x="79.2474%" y="847.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (91 samples, 0.02%)</title><rect x="79.0934%" y="821" width="0.0189%" height="15" fill="rgb(240,168,33)" fg:x="379892" fg:w="91"/><text x="79.3434%" y="831.50"></text></g><g><title>do_sys_openat2 (24,184 samples, 5.04%)</title><rect x="74.0812%" y="869" width="5.0351%" height="15" fill="rgb(243,159,6)" fg:x="355818" fg:w="24184"/><text x="74.3312%" y="879.50">do_sys..</text></g><g><title>putname (642 samples, 0.13%)</title><rect x="78.9827%" y="853" width="0.1337%" height="15" fill="rgb(205,211,41)" fg:x="379360" fg:w="642"/><text x="79.2327%" y="863.50"></text></g><g><title>get_unused_fd_flags (78 samples, 0.02%)</title><rect x="79.1207%" y="869" width="0.0162%" height="15" fill="rgb(253,30,1)" fg:x="380023" fg:w="78"/><text x="79.3707%" y="879.50"></text></g><g><title>getname (81 samples, 0.02%)</title><rect x="79.1369%" y="869" width="0.0169%" height="15" fill="rgb(226,80,18)" fg:x="380101" fg:w="81"/><text x="79.3869%" y="879.50"></text></g><g><title>__x64_sys_openat (24,865 samples, 5.18%)</title><rect x="73.9840%" y="885" width="5.1769%" height="15" fill="rgb(253,156,46)" fg:x="355351" fg:w="24865"/><text x="74.2340%" y="895.50">__x64_..</text></g><g><title>__f_unlock_pos (78 samples, 0.02%)</title><rect x="79.1659%" y="869" width="0.0162%" height="15" fill="rgb(248,87,27)" fg:x="380240" fg:w="78"/><text x="79.4159%" y="879.50"></text></g><g><title>__fdget_pos (104 samples, 0.02%)</title><rect x="79.1821%" y="869" width="0.0217%" height="15" fill="rgb(227,122,2)" fg:x="380318" fg:w="104"/><text x="79.4321%" y="879.50"></text></g><g><title>__cond_resched (86 samples, 0.02%)</title><rect x="79.3801%" y="837" width="0.0179%" height="15" fill="rgb(229,94,39)" fg:x="381269" fg:w="86"/><text x="79.6301%" y="847.50"></text></g><g><title>__fget_files (1,317 samples, 0.27%)</title><rect x="79.4155%" y="821" width="0.2742%" height="15" fill="rgb(225,173,31)" fg:x="381439" fg:w="1317"/><text x="79.6655%" y="831.50"></text></g><g><title>__fget_light (1,398 samples, 0.29%)</title><rect x="79.4053%" y="837" width="0.2911%" height="15" fill="rgb(239,176,30)" fg:x="381390" fg:w="1398"/><text x="79.6553%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (89 samples, 0.02%)</title><rect x="79.8710%" y="773" width="0.0185%" height="15" fill="rgb(212,104,21)" fg:x="383627" fg:w="89"/><text x="80.1210%" y="783.50"></text></g><g><title>x86_pmu_enable (89 samples, 0.02%)</title><rect x="79.8710%" y="757" width="0.0185%" height="15" fill="rgb(240,209,40)" fg:x="383627" fg:w="89"/><text x="80.1210%" y="767.50"></text></g><g><title>intel_pmu_enable_all (88 samples, 0.02%)</title><rect x="79.8712%" y="741" width="0.0183%" height="15" fill="rgb(234,195,5)" fg:x="383628" fg:w="88"/><text x="80.1212%" y="751.50"></text></g><g><title>native_write_msr (86 samples, 0.02%)</title><rect x="79.8717%" y="725" width="0.0179%" height="15" fill="rgb(238,213,1)" fg:x="383630" fg:w="86"/><text x="80.1217%" y="735.50"></text></g><g><title>finish_task_switch.isra.0 (97 samples, 0.02%)</title><rect x="79.8704%" y="789" width="0.0202%" height="15" fill="rgb(235,182,54)" fg:x="383624" fg:w="97"/><text x="80.1204%" y="799.50"></text></g><g><title>__cond_resched (178 samples, 0.04%)</title><rect x="79.8550%" y="821" width="0.0371%" height="15" fill="rgb(229,50,46)" fg:x="383550" fg:w="178"/><text x="80.1050%" y="831.50"></text></g><g><title>__schedule (106 samples, 0.02%)</title><rect x="79.8700%" y="805" width="0.0221%" height="15" fill="rgb(219,145,13)" fg:x="383622" fg:w="106"/><text x="80.1200%" y="815.50"></text></g><g><title>__fdget_pos (2,804 samples, 0.58%)</title><rect x="79.3164%" y="853" width="0.5838%" height="15" fill="rgb(220,226,10)" fg:x="380963" fg:w="2804"/><text x="79.5664%" y="863.50"></text></g><g><title>mutex_lock (977 samples, 0.20%)</title><rect x="79.6968%" y="837" width="0.2034%" height="15" fill="rgb(248,47,30)" fg:x="382790" fg:w="977"/><text x="79.9468%" y="847.50"></text></g><g><title>__fget_light (402 samples, 0.08%)</title><rect x="79.9002%" y="853" width="0.0837%" height="15" fill="rgb(231,209,44)" fg:x="383767" fg:w="402"/><text x="80.1502%" y="863.50"></text></g><g><title>__fsnotify_parent (234 samples, 0.05%)</title><rect x="79.9839%" y="853" width="0.0487%" height="15" fill="rgb(209,80,30)" fg:x="384169" fg:w="234"/><text x="80.2339%" y="863.50"></text></g><g><title>fput (63 samples, 0.01%)</title><rect x="80.0336%" y="853" width="0.0131%" height="15" fill="rgb(232,9,14)" fg:x="384408" fg:w="63"/><text x="80.2836%" y="863.50"></text></g><g><title>fput_many (796 samples, 0.17%)</title><rect x="80.0468%" y="853" width="0.1657%" height="15" fill="rgb(243,91,43)" fg:x="384471" fg:w="796"/><text x="80.2968%" y="863.50"></text></g><g><title>mutex_unlock (743 samples, 0.15%)</title><rect x="80.2206%" y="853" width="0.1547%" height="15" fill="rgb(231,90,52)" fg:x="385306" fg:w="743"/><text x="80.4706%" y="863.50"></text></g><g><title>new_sync_read (75 samples, 0.02%)</title><rect x="80.3753%" y="853" width="0.0156%" height="15" fill="rgb(253,192,44)" fg:x="386049" fg:w="75"/><text x="80.6253%" y="863.50"></text></g><g><title>rw_verify_area (208 samples, 0.04%)</title><rect x="80.3909%" y="853" width="0.0433%" height="15" fill="rgb(241,66,31)" fg:x="386124" fg:w="208"/><text x="80.6409%" y="863.50"></text></g><g><title>__fsnotify_parent (561 samples, 0.12%)</title><rect x="80.7515%" y="837" width="0.1168%" height="15" fill="rgb(235,81,37)" fg:x="387856" fg:w="561"/><text x="81.0015%" y="847.50"></text></g><g><title>btrfs_file_read_iter (115 samples, 0.02%)</title><rect x="80.8712%" y="837" width="0.0239%" height="15" fill="rgb(223,221,9)" fg:x="388431" fg:w="115"/><text x="81.1212%" y="847.50"></text></g><g><title>iov_iter_init (199 samples, 0.04%)</title><rect x="80.8952%" y="837" width="0.0414%" height="15" fill="rgb(242,180,7)" fg:x="388546" fg:w="199"/><text x="81.1452%" y="847.50"></text></g><g><title>__cond_resched (64 samples, 0.01%)</title><rect x="81.2171%" y="805" width="0.0133%" height="15" fill="rgb(243,78,19)" fg:x="390092" fg:w="64"/><text x="81.4671%" y="815.50"></text></g><g><title>copy_page_to_iter (135 samples, 0.03%)</title><rect x="81.2304%" y="805" width="0.0281%" height="15" fill="rgb(233,23,17)" fg:x="390156" fg:w="135"/><text x="81.4804%" y="815.50"></text></g><g><title>filemap_get_pages (236 samples, 0.05%)</title><rect x="81.2585%" y="805" width="0.0491%" height="15" fill="rgb(252,122,45)" fg:x="390291" fg:w="236"/><text x="81.5085%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (77 samples, 0.02%)</title><rect x="82.1600%" y="741" width="0.0160%" height="15" fill="rgb(247,108,20)" fg:x="394621" fg:w="77"/><text x="82.4100%" y="751.50"></text></g><g><title>x86_pmu_enable (76 samples, 0.02%)</title><rect x="82.1602%" y="725" width="0.0158%" height="15" fill="rgb(235,84,21)" fg:x="394622" fg:w="76"/><text x="82.4102%" y="735.50"></text></g><g><title>intel_pmu_enable_all (75 samples, 0.02%)</title><rect x="82.1604%" y="709" width="0.0156%" height="15" fill="rgb(247,129,10)" fg:x="394623" fg:w="75"/><text x="82.4104%" y="719.50"></text></g><g><title>native_write_msr (75 samples, 0.02%)</title><rect x="82.1604%" y="693" width="0.0156%" height="15" fill="rgb(208,173,14)" fg:x="394623" fg:w="75"/><text x="82.4104%" y="703.50"></text></g><g><title>finish_task_switch.isra.0 (83 samples, 0.02%)</title><rect x="82.1596%" y="757" width="0.0173%" height="15" fill="rgb(236,31,38)" fg:x="394619" fg:w="83"/><text x="82.4096%" y="767.50"></text></g><g><title>__schedule (91 samples, 0.02%)</title><rect x="82.1592%" y="773" width="0.0189%" height="15" fill="rgb(232,65,17)" fg:x="394617" fg:w="91"/><text x="82.4092%" y="783.50"></text></g><g><title>__cond_resched (289 samples, 0.06%)</title><rect x="82.1181%" y="789" width="0.0602%" height="15" fill="rgb(224,45,49)" fg:x="394420" fg:w="289"/><text x="82.3681%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (112 samples, 0.02%)</title><rect x="82.5716%" y="725" width="0.0233%" height="15" fill="rgb(225,2,53)" fg:x="396598" fg:w="112"/><text x="82.8216%" y="735.50"></text></g><g><title>x86_pmu_enable (111 samples, 0.02%)</title><rect x="82.5718%" y="709" width="0.0231%" height="15" fill="rgb(248,210,53)" fg:x="396599" fg:w="111"/><text x="82.8218%" y="719.50"></text></g><g><title>intel_pmu_enable_all (111 samples, 0.02%)</title><rect x="82.5718%" y="693" width="0.0231%" height="15" fill="rgb(211,1,30)" fg:x="396599" fg:w="111"/><text x="82.8218%" y="703.50"></text></g><g><title>native_write_msr (111 samples, 0.02%)</title><rect x="82.5718%" y="677" width="0.0231%" height="15" fill="rgb(224,96,15)" fg:x="396599" fg:w="111"/><text x="82.8218%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (121 samples, 0.03%)</title><rect x="82.5712%" y="741" width="0.0252%" height="15" fill="rgb(252,45,11)" fg:x="396596" fg:w="121"/><text x="82.8212%" y="751.50"></text></g><g><title>__schedule (126 samples, 0.03%)</title><rect x="82.5710%" y="757" width="0.0262%" height="15" fill="rgb(220,125,38)" fg:x="396595" fg:w="126"/><text x="82.8210%" y="767.50"></text></g><g><title>__cond_resched (223 samples, 0.05%)</title><rect x="82.5510%" y="773" width="0.0464%" height="15" fill="rgb(243,161,33)" fg:x="396499" fg:w="223"/><text x="82.8010%" y="783.50"></text></g><g><title>copy_page_to_iter (2,020 samples, 0.42%)</title><rect x="82.1954%" y="789" width="0.4206%" height="15" fill="rgb(248,197,34)" fg:x="394791" fg:w="2020"/><text x="82.4454%" y="799.50"></text></g><g><title>rcu_all_qs (79 samples, 0.02%)</title><rect x="82.5995%" y="773" width="0.0164%" height="15" fill="rgb(228,165,23)" fg:x="396732" fg:w="79"/><text x="82.8495%" y="783.50"></text></g><g><title>rcu_core_si (57 samples, 0.01%)</title><rect x="84.0925%" y="709" width="0.0119%" height="15" fill="rgb(236,94,38)" fg:x="403903" fg:w="57"/><text x="84.3425%" y="719.50"></text></g><g><title>rcu_core (57 samples, 0.01%)</title><rect x="84.0925%" y="693" width="0.0119%" height="15" fill="rgb(220,13,23)" fg:x="403903" fg:w="57"/><text x="84.3425%" y="703.50"></text></g><g><title>rcu_do_batch (57 samples, 0.01%)</title><rect x="84.0925%" y="677" width="0.0119%" height="15" fill="rgb(234,26,39)" fg:x="403903" fg:w="57"/><text x="84.3425%" y="687.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (76 samples, 0.02%)</title><rect x="84.0892%" y="773" width="0.0158%" height="15" fill="rgb(205,117,44)" fg:x="403887" fg:w="76"/><text x="84.3392%" y="783.50"></text></g><g><title>sysvec_apic_timer_interrupt (76 samples, 0.02%)</title><rect x="84.0892%" y="757" width="0.0158%" height="15" fill="rgb(250,42,2)" fg:x="403887" fg:w="76"/><text x="84.3392%" y="767.50"></text></g><g><title>irq_exit_rcu (60 samples, 0.01%)</title><rect x="84.0925%" y="741" width="0.0125%" height="15" fill="rgb(223,83,14)" fg:x="403903" fg:w="60"/><text x="84.3425%" y="751.50"></text></g><g><title>__softirqentry_text_start (60 samples, 0.01%)</title><rect x="84.0925%" y="725" width="0.0125%" height="15" fill="rgb(241,147,50)" fg:x="403903" fg:w="60"/><text x="84.3425%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (7,154 samples, 1.49%)</title><rect x="82.6159%" y="789" width="1.4895%" height="15" fill="rgb(218,90,6)" fg:x="396811" fg:w="7154"/><text x="82.8659%" y="799.50"></text></g><g><title>copy_user_generic_unrolled (69 samples, 0.01%)</title><rect x="84.1054%" y="789" width="0.0144%" height="15" fill="rgb(210,191,5)" fg:x="403965" fg:w="69"/><text x="84.3554%" y="799.50"></text></g><g><title>__xas_next (74 samples, 0.02%)</title><rect x="85.1433%" y="757" width="0.0154%" height="15" fill="rgb(225,139,19)" fg:x="408950" fg:w="74"/><text x="85.3933%" y="767.50"></text></g><g><title>xas_load (1,301 samples, 0.27%)</title><rect x="85.1685%" y="757" width="0.2709%" height="15" fill="rgb(210,1,33)" fg:x="409071" fg:w="1301"/><text x="85.4185%" y="767.50"></text></g><g><title>xas_start (806 samples, 0.17%)</title><rect x="85.2715%" y="741" width="0.1678%" height="15" fill="rgb(213,50,3)" fg:x="409566" fg:w="806"/><text x="85.5215%" y="751.50"></text></g><g><title>filemap_get_read_batch (5,086 samples, 1.06%)</title><rect x="84.3983%" y="773" width="1.0589%" height="15" fill="rgb(234,227,4)" fg:x="405372" fg:w="5086"/><text x="84.6483%" y="783.50"></text></g><g><title>xas_start (86 samples, 0.02%)</title><rect x="85.4393%" y="757" width="0.0179%" height="15" fill="rgb(246,63,5)" fg:x="410372" fg:w="86"/><text x="85.6893%" y="767.50"></text></g><g><title>rcu_read_unlock_strict (184 samples, 0.04%)</title><rect x="85.4572%" y="773" width="0.0383%" height="15" fill="rgb(245,136,27)" fg:x="410458" fg:w="184"/><text x="85.7072%" y="783.50"></text></g><g><title>filemap_get_pages (6,691 samples, 1.39%)</title><rect x="84.1198%" y="789" width="1.3931%" height="15" fill="rgb(247,199,27)" fg:x="404034" fg:w="6691"/><text x="84.3698%" y="799.50"></text></g><g><title>xas_load (83 samples, 0.02%)</title><rect x="85.4956%" y="773" width="0.0173%" height="15" fill="rgb(252,158,49)" fg:x="410642" fg:w="83"/><text x="85.7456%" y="783.50"></text></g><g><title>filemap_get_read_batch (90 samples, 0.02%)</title><rect x="85.5128%" y="789" width="0.0187%" height="15" fill="rgb(254,73,1)" fg:x="410725" fg:w="90"/><text x="85.7628%" y="799.50"></text></g><g><title>mark_page_accessed (165 samples, 0.03%)</title><rect x="85.5316%" y="789" width="0.0344%" height="15" fill="rgb(248,93,19)" fg:x="410815" fg:w="165"/><text x="85.7816%" y="799.50"></text></g><g><title>rcu_all_qs (71 samples, 0.01%)</title><rect x="85.5659%" y="789" width="0.0148%" height="15" fill="rgb(206,67,5)" fg:x="410980" fg:w="71"/><text x="85.8159%" y="799.50"></text></g><g><title>current_time (956 samples, 0.20%)</title><rect x="85.7616%" y="757" width="0.1990%" height="15" fill="rgb(209,210,4)" fg:x="411920" fg:w="956"/><text x="86.0116%" y="767.50"></text></g><g><title>ktime_get_coarse_real_ts64 (343 samples, 0.07%)</title><rect x="85.8893%" y="741" width="0.0714%" height="15" fill="rgb(214,185,36)" fg:x="412533" fg:w="343"/><text x="86.1393%" y="751.50"></text></g><g><title>atime_needs_update (1,655 samples, 0.34%)</title><rect x="85.6380%" y="773" width="0.3446%" height="15" fill="rgb(233,191,26)" fg:x="411326" fg:w="1655"/><text x="85.8880%" y="783.50"></text></g><g><title>ktime_get_coarse_real_ts64 (105 samples, 0.02%)</title><rect x="85.9607%" y="757" width="0.0219%" height="15" fill="rgb(248,94,17)" fg:x="412876" fg:w="105"/><text x="86.2107%" y="767.50"></text></g><g><title>filemap_read (22,540 samples, 4.69%)</title><rect x="81.3076%" y="805" width="4.6928%" height="15" fill="rgb(250,64,4)" fg:x="390527" fg:w="22540"/><text x="81.5576%" y="815.50">filem..</text></g><g><title>touch_atime (2,015 samples, 0.42%)</title><rect x="85.5809%" y="789" width="0.4195%" height="15" fill="rgb(218,41,53)" fg:x="411052" fg:w="2015"/><text x="85.8309%" y="799.50"></text></g><g><title>current_time (86 samples, 0.02%)</title><rect x="85.9825%" y="773" width="0.0179%" height="15" fill="rgb(251,176,28)" fg:x="412981" fg:w="86"/><text x="86.2325%" y="783.50"></text></g><g><title>mark_page_accessed (67 samples, 0.01%)</title><rect x="86.0004%" y="805" width="0.0139%" height="15" fill="rgb(247,22,9)" fg:x="413067" fg:w="67"/><text x="86.2504%" y="815.50"></text></g><g><title>btrfs_file_read_iter (23,236 samples, 4.84%)</title><rect x="81.1869%" y="821" width="4.8377%" height="15" fill="rgb(218,201,14)" fg:x="389947" fg:w="23236"/><text x="81.4369%" y="831.50">btrfs_..</text></g><g><title>touch_atime (49 samples, 0.01%)</title><rect x="86.0144%" y="805" width="0.0102%" height="15" fill="rgb(218,94,10)" fg:x="413134" fg:w="49"/><text x="86.2644%" y="815.50"></text></g><g><title>filemap_read (144 samples, 0.03%)</title><rect x="86.0246%" y="821" width="0.0300%" height="15" fill="rgb(222,183,52)" fg:x="413183" fg:w="144"/><text x="86.2746%" y="831.50"></text></g><g><title>asm_exc_page_fault (240 samples, 0.05%)</title><rect x="86.0573%" y="757" width="0.0500%" height="15" fill="rgb(242,140,25)" fg:x="413340" fg:w="240"/><text x="86.3073%" y="767.50"></text></g><g><title>get_page_from_freelist (63 samples, 0.01%)</title><rect x="86.1503%" y="597" width="0.0131%" height="15" fill="rgb(235,197,38)" fg:x="413787" fg:w="63"/><text x="86.4003%" y="607.50"></text></g><g><title>__alloc_pages (71 samples, 0.01%)</title><rect x="86.1489%" y="613" width="0.0148%" height="15" fill="rgb(237,136,15)" fg:x="413780" fg:w="71"/><text x="86.3989%" y="623.50"></text></g><g><title>alloc_pages_vma (78 samples, 0.02%)</title><rect x="86.1476%" y="629" width="0.0162%" height="15" fill="rgb(223,44,49)" fg:x="413774" fg:w="78"/><text x="86.3976%" y="639.50"></text></g><g><title>do_anonymous_page (161 samples, 0.03%)</title><rect x="86.1383%" y="645" width="0.0335%" height="15" fill="rgb(227,71,15)" fg:x="413729" fg:w="161"/><text x="86.3883%" y="655.50"></text></g><g><title>handle_pte_fault (179 samples, 0.04%)</title><rect x="86.1349%" y="661" width="0.0373%" height="15" fill="rgb(225,153,20)" fg:x="413713" fg:w="179"/><text x="86.3849%" y="671.50"></text></g><g><title>__handle_mm_fault (195 samples, 0.04%)</title><rect x="86.1318%" y="677" width="0.0406%" height="15" fill="rgb(210,190,26)" fg:x="413698" fg:w="195"/><text x="86.3818%" y="687.50"></text></g><g><title>handle_mm_fault (211 samples, 0.04%)</title><rect x="86.1289%" y="693" width="0.0439%" height="15" fill="rgb(223,147,5)" fg:x="413684" fg:w="211"/><text x="86.3789%" y="703.50"></text></g><g><title>do_user_addr_fault (227 samples, 0.05%)</title><rect x="86.1258%" y="709" width="0.0473%" height="15" fill="rgb(207,14,23)" fg:x="413669" fg:w="227"/><text x="86.3758%" y="719.50"></text></g><g><title>asm_exc_page_fault (237 samples, 0.05%)</title><rect x="86.1243%" y="741" width="0.0493%" height="15" fill="rgb(211,195,53)" fg:x="413662" fg:w="237"/><text x="86.3743%" y="751.50"></text></g><g><title>exc_page_fault (237 samples, 0.05%)</title><rect x="86.1243%" y="725" width="0.0493%" height="15" fill="rgb(237,75,46)" fg:x="413662" fg:w="237"/><text x="86.3743%" y="735.50"></text></g><g><title>copy_user_enhanced_fast_string (315 samples, 0.07%)</title><rect x="86.1095%" y="757" width="0.0656%" height="15" fill="rgb(254,55,14)" fg:x="413591" fg:w="315"/><text x="86.3595%" y="767.50"></text></g><g><title>generic_file_read_iter (616 samples, 0.13%)</title><rect x="86.0554%" y="789" width="0.1283%" height="15" fill="rgb(230,185,30)" fg:x="413331" fg:w="616"/><text x="86.3054%" y="799.50"></text></g><g><title>filemap_read (616 samples, 0.13%)</title><rect x="86.0554%" y="773" width="0.1283%" height="15" fill="rgb(220,14,11)" fg:x="413331" fg:w="616"/><text x="86.3054%" y="783.50"></text></g><g><title>new_sync_read (25,203 samples, 5.25%)</title><rect x="80.9366%" y="837" width="5.2473%" height="15" fill="rgb(215,169,44)" fg:x="388745" fg:w="25203"/><text x="81.1866%" y="847.50">new_sy..</text></g><g><title>xfs_file_read_iter (621 samples, 0.13%)</title><rect x="86.0546%" y="821" width="0.1293%" height="15" fill="rgb(253,203,20)" fg:x="413327" fg:w="621"/><text x="86.3046%" y="831.50"></text></g><g><title>xfs_file_buffered_read (618 samples, 0.13%)</title><rect x="86.0552%" y="805" width="0.1287%" height="15" fill="rgb(229,225,17)" fg:x="413330" fg:w="618"/><text x="86.3052%" y="815.50"></text></g><g><title>apparmor_file_permission (128 samples, 0.03%)</title><rect x="86.1961%" y="821" width="0.0266%" height="15" fill="rgb(236,76,26)" fg:x="414007" fg:w="128"/><text x="86.4461%" y="831.50"></text></g><g><title>fsnotify_perm.part.0 (165 samples, 0.03%)</title><rect x="86.2228%" y="821" width="0.0344%" height="15" fill="rgb(234,15,30)" fg:x="414135" fg:w="165"/><text x="86.4728%" y="831.50"></text></g><g><title>pinnedhook_security_file_permission (89 samples, 0.02%)</title><rect x="86.2572%" y="821" width="0.0185%" height="15" fill="rgb(211,113,48)" fg:x="414300" fg:w="89"/><text x="86.5072%" y="831.50"></text></g><g><title>__fsnotify_parent (224 samples, 0.05%)</title><rect x="86.4023%" y="805" width="0.0466%" height="15" fill="rgb(221,31,36)" fg:x="414997" fg:w="224"/><text x="86.6523%" y="815.50"></text></g><g><title>acquire_rundown (144 samples, 0.03%)</title><rect x="86.4604%" y="805" width="0.0300%" height="15" fill="rgb(215,118,52)" fg:x="415276" fg:w="144"/><text x="86.7104%" y="815.50"></text></g><g><title>aa_file_perm (373 samples, 0.08%)</title><rect x="86.7527%" y="789" width="0.0777%" height="15" fill="rgb(241,151,27)" fg:x="416680" fg:w="373"/><text x="87.0027%" y="799.50"></text></g><g><title>apparmor_file_permission (1,688 samples, 0.35%)</title><rect x="86.4903%" y="805" width="0.3514%" height="15" fill="rgb(253,51,3)" fg:x="415420" fg:w="1688"/><text x="86.7403%" y="815.50"></text></g><g><title>cshook_security_file_permission (127 samples, 0.03%)</title><rect x="86.8424%" y="805" width="0.0264%" height="15" fill="rgb(216,201,24)" fg:x="417111" fg:w="127"/><text x="87.0924%" y="815.50"></text></g><g><title>__fsnotify_parent (712 samples, 0.15%)</title><rect x="87.0277%" y="789" width="0.1482%" height="15" fill="rgb(231,107,4)" fg:x="418001" fg:w="712"/><text x="87.2777%" y="799.50"></text></g><g><title>fsnotify_perm.part.0 (1,481 samples, 0.31%)</title><rect x="86.8688%" y="805" width="0.3083%" height="15" fill="rgb(243,97,54)" fg:x="417238" fg:w="1481"/><text x="87.1188%" y="815.50"></text></g><g><title>[[falcon_kal]] (419 samples, 0.09%)</title><rect x="87.2088%" y="789" width="0.0872%" height="15" fill="rgb(221,32,51)" fg:x="418871" fg:w="419"/><text x="87.4588%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (147 samples, 0.03%)</title><rect x="87.2982%" y="789" width="0.0306%" height="15" fill="rgb(218,171,35)" fg:x="419300" fg:w="147"/><text x="87.5482%" y="799.50"></text></g><g><title>[[falcon_kal]] (337 samples, 0.07%)</title><rect x="87.3925%" y="773" width="0.0702%" height="15" fill="rgb(214,20,53)" fg:x="419753" fg:w="337"/><text x="87.6425%" y="783.50"></text></g><g><title>[[falcon_kal]] (338 samples, 0.07%)</title><rect x="87.5105%" y="757" width="0.0704%" height="15" fill="rgb(239,9,52)" fg:x="420320" fg:w="338"/><text x="87.7605%" y="767.50"></text></g><g><title>pinnedhook_security_file_permission (1,946 samples, 0.41%)</title><rect x="87.1772%" y="805" width="0.4052%" height="15" fill="rgb(215,114,45)" fg:x="418719" fg:w="1946"/><text x="87.4272%" y="815.50"></text></g><g><title>cshook_security_file_permission (1,218 samples, 0.25%)</title><rect x="87.3288%" y="789" width="0.2536%" height="15" fill="rgb(208,118,9)" fg:x="419447" fg:w="1218"/><text x="87.5788%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (559 samples, 0.12%)</title><rect x="87.4660%" y="773" width="0.1164%" height="15" fill="rgb(235,7,39)" fg:x="420106" fg:w="559"/><text x="87.7160%" y="783.50"></text></g><g><title>rw_verify_area (7,014 samples, 1.46%)</title><rect x="86.1839%" y="837" width="1.4603%" height="15" fill="rgb(243,225,15)" fg:x="413948" fg:w="7014"/><text x="86.4339%" y="847.50"></text></g><g><title>security_file_permission (6,573 samples, 1.37%)</title><rect x="86.2757%" y="821" width="1.3685%" height="15" fill="rgb(225,216,18)" fg:x="414389" fg:w="6573"/><text x="86.5257%" y="831.50"></text></g><g><title>release_rundown (297 samples, 0.06%)</title><rect x="87.5823%" y="805" width="0.0618%" height="15" fill="rgb(233,36,38)" fg:x="420665" fg:w="297"/><text x="87.8323%" y="815.50"></text></g><g><title>security_file_permission (158 samples, 0.03%)</title><rect x="87.6442%" y="837" width="0.0329%" height="15" fill="rgb(239,88,23)" fg:x="420962" fg:w="158"/><text x="87.8942%" y="847.50"></text></g><g><title>ksys_read (40,679 samples, 8.47%)</title><rect x="79.2088%" y="869" width="8.4694%" height="15" fill="rgb(219,181,35)" fg:x="380446" fg:w="40679"/><text x="79.4588%" y="879.50">ksys_read</text></g><g><title>vfs_read (34,793 samples, 7.24%)</title><rect x="80.4342%" y="853" width="7.2439%" height="15" fill="rgb(215,18,46)" fg:x="386332" fg:w="34793"/><text x="80.6842%" y="863.50">vfs_read</text></g><g><title>__x64_sys_read (40,965 samples, 8.53%)</title><rect x="79.1652%" y="885" width="8.5289%" height="15" fill="rgb(241,38,11)" fg:x="380237" fg:w="40965"/><text x="79.4152%" y="895.50">__x64_sys_re..</text></g><g><title>vfs_read (77 samples, 0.02%)</title><rect x="87.6781%" y="869" width="0.0160%" height="15" fill="rgb(248,169,45)" fg:x="421125" fg:w="77"/><text x="87.9281%" y="879.50"></text></g><g><title>__x64_sys_rename (84 samples, 0.02%)</title><rect x="87.6941%" y="885" width="0.0175%" height="15" fill="rgb(239,50,49)" fg:x="421202" fg:w="84"/><text x="87.9441%" y="895.50"></text></g><g><title>do_renameat2 (84 samples, 0.02%)</title><rect x="87.6941%" y="869" width="0.0175%" height="15" fill="rgb(231,96,31)" fg:x="421202" fg:w="84"/><text x="87.9441%" y="879.50"></text></g><g><title>vfs_rename (83 samples, 0.02%)</title><rect x="87.6944%" y="853" width="0.0173%" height="15" fill="rgb(224,193,37)" fg:x="421203" fg:w="83"/><text x="87.9444%" y="863.50"></text></g><g><title>btrfs_rename2 (83 samples, 0.02%)</title><rect x="87.6944%" y="837" width="0.0173%" height="15" fill="rgb(227,153,50)" fg:x="421203" fg:w="83"/><text x="87.9444%" y="847.50"></text></g><g><title>btrfs_rename (83 samples, 0.02%)</title><rect x="87.6944%" y="821" width="0.0173%" height="15" fill="rgb(249,228,3)" fg:x="421203" fg:w="83"/><text x="87.9444%" y="831.50"></text></g><g><title>btrfs_log_new_name (52 samples, 0.01%)</title><rect x="87.7008%" y="805" width="0.0108%" height="15" fill="rgb(219,164,43)" fg:x="421234" fg:w="52"/><text x="87.9508%" y="815.50"></text></g><g><title>btrfs_log_inode_parent (52 samples, 0.01%)</title><rect x="87.7008%" y="789" width="0.0108%" height="15" fill="rgb(216,45,41)" fg:x="421234" fg:w="52"/><text x="87.9508%" y="799.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (86 samples, 0.02%)</title><rect x="87.7285%" y="885" width="0.0179%" height="15" fill="rgb(210,226,51)" fg:x="421367" fg:w="86"/><text x="87.9785%" y="895.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (180 samples, 0.04%)</title><rect x="87.7464%" y="885" width="0.0375%" height="15" fill="rgb(209,117,49)" fg:x="421453" fg:w="180"/><text x="87.9964%" y="895.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (71 samples, 0.01%)</title><rect x="87.8657%" y="853" width="0.0148%" height="15" fill="rgb(206,196,24)" fg:x="422026" fg:w="71"/><text x="88.1157%" y="863.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (317 samples, 0.07%)</title><rect x="87.8149%" y="869" width="0.0660%" height="15" fill="rgb(253,218,3)" fg:x="421782" fg:w="317"/><text x="88.0649%" y="879.50"></text></g><g><title>cshook_systemcalltable_post_close (511 samples, 0.11%)</title><rect x="87.7858%" y="885" width="0.1064%" height="15" fill="rgb(252,166,2)" fg:x="421642" fg:w="511"/><text x="88.0358%" y="895.50"></text></g><g><title>cshook_security_file_free_security (54 samples, 0.01%)</title><rect x="87.8809%" y="869" width="0.0112%" height="15" fill="rgb(236,218,26)" fg:x="422099" fg:w="54"/><text x="88.1309%" y="879.50"></text></g><g><title>cshook_systemcalltable_post_open (76 samples, 0.02%)</title><rect x="87.8980%" y="885" width="0.0158%" height="15" fill="rgb(254,84,19)" fg:x="422181" fg:w="76"/><text x="88.1480%" y="895.50"></text></g><g><title>[[falcon_kal]] (52 samples, 0.01%)</title><rect x="87.9760%" y="869" width="0.0108%" height="15" fill="rgb(219,137,29)" fg:x="422556" fg:w="52"/><text x="88.2260%" y="879.50"></text></g><g><title>_ZdlPv (64 samples, 0.01%)</title><rect x="87.9869%" y="869" width="0.0133%" height="15" fill="rgb(227,47,52)" fg:x="422608" fg:w="64"/><text x="88.2369%" y="879.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (63 samples, 0.01%)</title><rect x="88.0662%" y="853" width="0.0131%" height="15" fill="rgb(229,167,24)" fg:x="422989" fg:w="63"/><text x="88.3162%" y="863.50"></text></g><g><title>__fget_files (239 samples, 0.05%)</title><rect x="88.1147%" y="805" width="0.0498%" height="15" fill="rgb(233,164,1)" fg:x="423222" fg:w="239"/><text x="88.3647%" y="815.50"></text></g><g><title>fget (244 samples, 0.05%)</title><rect x="88.1145%" y="821" width="0.0508%" height="15" fill="rgb(218,88,48)" fg:x="423221" fg:w="244"/><text x="88.3645%" y="831.50"></text></g><g><title>[[falcon_kal]] (385 samples, 0.08%)</title><rect x="88.1097%" y="837" width="0.0802%" height="15" fill="rgb(226,214,24)" fg:x="423198" fg:w="385"/><text x="88.3597%" y="847.50"></text></g><g><title>fput_many (114 samples, 0.02%)</title><rect x="88.1661%" y="821" width="0.0237%" height="15" fill="rgb(233,29,12)" fg:x="423469" fg:w="114"/><text x="88.4161%" y="831.50"></text></g><g><title>[[falcon_kal]] (464 samples, 0.10%)</title><rect x="88.2265%" y="805" width="0.0966%" height="15" fill="rgb(219,120,34)" fg:x="423759" fg:w="464"/><text x="88.4765%" y="815.50"></text></g><g><title>down_read (439 samples, 0.09%)</title><rect x="88.2317%" y="789" width="0.0914%" height="15" fill="rgb(226,78,44)" fg:x="423784" fg:w="439"/><text x="88.4817%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (149 samples, 0.03%)</title><rect x="88.3242%" y="805" width="0.0310%" height="15" fill="rgb(240,15,48)" fg:x="424228" fg:w="149"/><text x="88.5742%" y="815.50"></text></g><g><title>up_read (135 samples, 0.03%)</title><rect x="88.3271%" y="789" width="0.0281%" height="15" fill="rgb(253,176,7)" fg:x="424242" fg:w="135"/><text x="88.5771%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (796 samples, 0.17%)</title><rect x="88.1911%" y="837" width="0.1657%" height="15" fill="rgb(206,166,28)" fg:x="423589" fg:w="796"/><text x="88.4411%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (640 samples, 0.13%)</title><rect x="88.2236%" y="821" width="0.1332%" height="15" fill="rgb(241,53,51)" fg:x="423745" fg:w="640"/><text x="88.4736%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (137 samples, 0.03%)</title><rect x="88.3952%" y="805" width="0.0285%" height="15" fill="rgb(249,112,30)" fg:x="424569" fg:w="137"/><text x="88.6452%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (144 samples, 0.03%)</title><rect x="88.9998%" y="709" width="0.0300%" height="15" fill="rgb(217,85,30)" fg:x="427473" fg:w="144"/><text x="89.2498%" y="719.50"></text></g><g><title>x86_pmu_enable (140 samples, 0.03%)</title><rect x="89.0006%" y="693" width="0.0291%" height="15" fill="rgb(233,49,7)" fg:x="427477" fg:w="140"/><text x="89.2506%" y="703.50"></text></g><g><title>intel_pmu_enable_all (140 samples, 0.03%)</title><rect x="89.0006%" y="677" width="0.0291%" height="15" fill="rgb(234,109,9)" fg:x="427477" fg:w="140"/><text x="89.2506%" y="687.50"></text></g><g><title>native_write_msr (139 samples, 0.03%)</title><rect x="89.0008%" y="661" width="0.0289%" height="15" fill="rgb(253,95,22)" fg:x="427478" fg:w="139"/><text x="89.2508%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (153 samples, 0.03%)</title><rect x="88.9991%" y="725" width="0.0319%" height="15" fill="rgb(233,176,25)" fg:x="427470" fg:w="153"/><text x="89.2491%" y="735.50"></text></g><g><title>__cond_resched (187 samples, 0.04%)</title><rect x="88.9939%" y="757" width="0.0389%" height="15" fill="rgb(236,33,39)" fg:x="427445" fg:w="187"/><text x="89.2439%" y="767.50"></text></g><g><title>__schedule (164 samples, 0.03%)</title><rect x="88.9987%" y="741" width="0.0341%" height="15" fill="rgb(223,226,42)" fg:x="427468" fg:w="164"/><text x="89.2487%" y="751.50"></text></g><g><title>[[falcon_kal]] (2,441 samples, 0.51%)</title><rect x="88.5330%" y="789" width="0.5082%" height="15" fill="rgb(216,99,33)" fg:x="425231" fg:w="2441"/><text x="88.7830%" y="799.50"></text></g><g><title>down_read (2,411 samples, 0.50%)</title><rect x="88.5392%" y="773" width="0.5020%" height="15" fill="rgb(235,84,23)" fg:x="425261" fg:w="2411"/><text x="88.7892%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (3,541 samples, 0.74%)</title><rect x="88.3568%" y="821" width="0.7372%" height="15" fill="rgb(232,2,27)" fg:x="424385" fg:w="3541"/><text x="88.6068%" y="831.50"></text></g><g><title>cshook_security_inode_free_security (3,220 samples, 0.67%)</title><rect x="88.4237%" y="805" width="0.6704%" height="15" fill="rgb(241,23,22)" fg:x="424706" fg:w="3220"/><text x="88.6737%" y="815.50"></text></g><g><title>up_read (195 samples, 0.04%)</title><rect x="89.0535%" y="789" width="0.0406%" height="15" fill="rgb(211,73,27)" fg:x="427731" fg:w="195"/><text x="89.3035%" y="799.50"></text></g><g><title>cshook_security_file_free_security (3,739 samples, 0.78%)</title><rect x="88.3568%" y="837" width="0.7785%" height="15" fill="rgb(235,109,49)" fg:x="424385" fg:w="3739"/><text x="88.6068%" y="847.50"></text></g><g><title>cshook_security_inode_free_security (198 samples, 0.04%)</title><rect x="89.0941%" y="821" width="0.0412%" height="15" fill="rgb(230,99,29)" fg:x="427926" fg:w="198"/><text x="89.3441%" y="831.50"></text></g><g><title>cshook_security_file_free_security (5,413 samples, 1.13%)</title><rect x="88.0173%" y="869" width="1.1270%" height="15" fill="rgb(245,199,7)" fg:x="422754" fg:w="5413"/><text x="88.2673%" y="879.50"></text></g><g><title>cshook_security_file_free_security (5,115 samples, 1.06%)</title><rect x="88.0793%" y="853" width="1.0649%" height="15" fill="rgb(217,179,10)" fg:x="423052" fg:w="5115"/><text x="88.3293%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (169 samples, 0.04%)</title><rect x="89.1443%" y="869" width="0.0352%" height="15" fill="rgb(254,99,47)" fg:x="428167" fg:w="169"/><text x="89.3943%" y="879.50"></text></g><g><title>__fget_files (193 samples, 0.04%)</title><rect x="89.3972%" y="821" width="0.0402%" height="15" fill="rgb(251,121,7)" fg:x="429382" fg:w="193"/><text x="89.6472%" y="831.50"></text></g><g><title>fget (197 samples, 0.04%)</title><rect x="89.3970%" y="837" width="0.0410%" height="15" fill="rgb(250,177,26)" fg:x="429381" fg:w="197"/><text x="89.6470%" y="847.50"></text></g><g><title>[[falcon_kal]] (1,035 samples, 0.22%)</title><rect x="89.2500%" y="853" width="0.2155%" height="15" fill="rgb(232,88,15)" fg:x="428675" fg:w="1035"/><text x="89.5000%" y="863.50"></text></g><g><title>fput_many (122 samples, 0.03%)</title><rect x="89.4401%" y="837" width="0.0254%" height="15" fill="rgb(251,54,54)" fg:x="429588" fg:w="122"/><text x="89.6901%" y="847.50"></text></g><g><title>_raw_spin_lock_irqsave (307 samples, 0.06%)</title><rect x="89.8896%" y="773" width="0.0639%" height="15" fill="rgb(208,177,15)" fg:x="431747" fg:w="307"/><text x="90.1396%" y="783.50"></text></g><g><title>complete (338 samples, 0.07%)</title><rect x="89.8842%" y="789" width="0.0704%" height="15" fill="rgb(205,97,32)" fg:x="431721" fg:w="338"/><text x="90.1342%" y="799.50"></text></g><g><title>[[falcon_kal]] (356 samples, 0.07%)</title><rect x="89.8813%" y="805" width="0.0741%" height="15" fill="rgb(217,192,13)" fg:x="431707" fg:w="356"/><text x="90.1313%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (148 samples, 0.03%)</title><rect x="90.0033%" y="709" width="0.0308%" height="15" fill="rgb(215,163,41)" fg:x="432293" fg:w="148"/><text x="90.2533%" y="719.50"></text></g><g><title>x86_pmu_enable (143 samples, 0.03%)</title><rect x="90.0043%" y="693" width="0.0298%" height="15" fill="rgb(246,83,29)" fg:x="432298" fg:w="143"/><text x="90.2543%" y="703.50"></text></g><g><title>intel_pmu_enable_all (143 samples, 0.03%)</title><rect x="90.0043%" y="677" width="0.0298%" height="15" fill="rgb(219,2,45)" fg:x="432298" fg:w="143"/><text x="90.2543%" y="687.50"></text></g><g><title>native_write_msr (143 samples, 0.03%)</title><rect x="90.0043%" y="661" width="0.0298%" height="15" fill="rgb(242,215,33)" fg:x="432298" fg:w="143"/><text x="90.2543%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (166 samples, 0.03%)</title><rect x="90.0027%" y="725" width="0.0346%" height="15" fill="rgb(217,1,6)" fg:x="432290" fg:w="166"/><text x="90.2527%" y="735.50"></text></g><g><title>__cond_resched (191 samples, 0.04%)</title><rect x="90.0004%" y="757" width="0.0398%" height="15" fill="rgb(207,85,52)" fg:x="432279" fg:w="191"/><text x="90.2504%" y="767.50"></text></g><g><title>__schedule (185 samples, 0.04%)</title><rect x="90.0016%" y="741" width="0.0385%" height="15" fill="rgb(231,171,19)" fg:x="432285" fg:w="185"/><text x="90.2516%" y="751.50"></text></g><g><title>[[falcon_kal]] (403 samples, 0.08%)</title><rect x="89.9606%" y="789" width="0.0839%" height="15" fill="rgb(207,128,4)" fg:x="432088" fg:w="403"/><text x="90.2106%" y="799.50"></text></g><g><title>mutex_lock (392 samples, 0.08%)</title><rect x="89.9629%" y="773" width="0.0816%" height="15" fill="rgb(219,208,4)" fg:x="432099" fg:w="392"/><text x="90.2129%" y="783.50"></text></g><g><title>_ZdlPv (2,080 samples, 0.43%)</title><rect x="89.6256%" y="837" width="0.4331%" height="15" fill="rgb(235,161,42)" fg:x="430479" fg:w="2080"/><text x="89.8756%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,214 samples, 0.25%)</title><rect x="89.8059%" y="821" width="0.2528%" height="15" fill="rgb(247,218,18)" fg:x="431345" fg:w="1214"/><text x="90.0559%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (480 samples, 0.10%)</title><rect x="89.9587%" y="805" width="0.0999%" height="15" fill="rgb(232,114,51)" fg:x="432079" fg:w="480"/><text x="90.2087%" y="815.50"></text></g><g><title>mutex_unlock (66 samples, 0.01%)</title><rect x="90.0449%" y="789" width="0.0137%" height="15" fill="rgb(222,95,3)" fg:x="432493" fg:w="66"/><text x="90.2949%" y="799.50"></text></g><g><title>_raw_spin_lock_bh (280 samples, 0.06%)</title><rect x="90.0595%" y="837" width="0.0583%" height="15" fill="rgb(240,65,29)" fg:x="432563" fg:w="280"/><text x="90.3095%" y="847.50"></text></g><g><title>_raw_spin_unlock_bh (73 samples, 0.02%)</title><rect x="90.1769%" y="821" width="0.0152%" height="15" fill="rgb(249,209,20)" fg:x="433127" fg:w="73"/><text x="90.4269%" y="831.50"></text></g><g><title>__local_bh_enable_ip (65 samples, 0.01%)</title><rect x="90.1786%" y="805" width="0.0135%" height="15" fill="rgb(241,48,37)" fg:x="433135" fg:w="65"/><text x="90.4286%" y="815.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (353 samples, 0.07%)</title><rect x="90.1197%" y="837" width="0.0735%" height="15" fill="rgb(230,140,42)" fg:x="432852" fg:w="353"/><text x="90.3697%" y="847.50"></text></g><g><title>memcg_slab_free_hook (54 samples, 0.01%)</title><rect x="90.2721%" y="789" width="0.0112%" height="15" fill="rgb(230,176,45)" fg:x="433584" fg:w="54"/><text x="90.5221%" y="799.50"></text></g><g><title>kfree (290 samples, 0.06%)</title><rect x="90.2365%" y="805" width="0.0604%" height="15" fill="rgb(245,112,21)" fg:x="433413" fg:w="290"/><text x="90.4865%" y="815.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (65 samples, 0.01%)</title><rect x="90.2833%" y="789" width="0.0135%" height="15" fill="rgb(207,183,35)" fg:x="433638" fg:w="65"/><text x="90.5333%" y="799.50"></text></g><g><title>[[falcon_kal]] (308 samples, 0.06%)</title><rect x="90.2338%" y="821" width="0.0641%" height="15" fill="rgb(227,44,33)" fg:x="433400" fg:w="308"/><text x="90.4838%" y="831.50"></text></g><g><title>_ZdlPv (4,009 samples, 0.83%)</title><rect x="89.4655%" y="853" width="0.8347%" height="15" fill="rgb(246,120,21)" fg:x="429710" fg:w="4009"/><text x="89.7155%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (490 samples, 0.10%)</title><rect x="90.1982%" y="837" width="0.1020%" height="15" fill="rgb(235,57,52)" fg:x="433229" fg:w="490"/><text x="90.4482%" y="847.50"></text></g><g><title>__cond_resched (57 samples, 0.01%)</title><rect x="90.6406%" y="805" width="0.0119%" height="15" fill="rgb(238,84,10)" fg:x="435354" fg:w="57"/><text x="90.8906%" y="815.50"></text></g><g><title>kmalloc_slab (102 samples, 0.02%)</title><rect x="90.6539%" y="805" width="0.0212%" height="15" fill="rgb(251,200,32)" fg:x="435418" fg:w="102"/><text x="90.9039%" y="815.50"></text></g><g><title>__kmalloc (655 samples, 0.14%)</title><rect x="90.5515%" y="821" width="0.1364%" height="15" fill="rgb(247,159,13)" fg:x="434926" fg:w="655"/><text x="90.8015%" y="831.50"></text></g><g><title>prepend (72 samples, 0.01%)</title><rect x="90.7091%" y="805" width="0.0150%" height="15" fill="rgb(238,64,4)" fg:x="435683" fg:w="72"/><text x="90.9591%" y="815.50"></text></g><g><title>copy_from_kernel_nofault (140 samples, 0.03%)</title><rect x="91.0770%" y="773" width="0.0291%" height="15" fill="rgb(221,131,51)" fg:x="437450" fg:w="140"/><text x="91.3270%" y="783.50"></text></g><g><title>copy_from_kernel_nofault (2,332 samples, 0.49%)</title><rect x="91.1478%" y="757" width="0.4855%" height="15" fill="rgb(242,5,29)" fg:x="437790" fg:w="2332"/><text x="91.3978%" y="767.50"></text></g><g><title>copy_from_kernel_nofault_allowed (575 samples, 0.12%)</title><rect x="91.5136%" y="741" width="0.1197%" height="15" fill="rgb(214,130,32)" fg:x="439547" fg:w="575"/><text x="91.7636%" y="751.50"></text></g><g><title>prepend (3,210 samples, 0.67%)</title><rect x="91.0081%" y="789" width="0.6683%" height="15" fill="rgb(244,210,16)" fg:x="437119" fg:w="3210"/><text x="91.2581%" y="799.50"></text></g><g><title>prepend_copy (2,738 samples, 0.57%)</title><rect x="91.1063%" y="773" width="0.5701%" height="15" fill="rgb(234,48,26)" fg:x="437591" fg:w="2738"/><text x="91.3563%" y="783.50"></text></g><g><title>copy_from_kernel_nofault_allowed (207 samples, 0.04%)</title><rect x="91.6333%" y="757" width="0.0431%" height="15" fill="rgb(231,82,38)" fg:x="440122" fg:w="207"/><text x="91.8833%" y="767.50"></text></g><g><title>prepend_copy (134 samples, 0.03%)</title><rect x="91.6764%" y="789" width="0.0279%" height="15" fill="rgb(254,128,41)" fg:x="440329" fg:w="134"/><text x="91.9264%" y="799.50"></text></g><g><title>prepend_path (4,710 samples, 0.98%)</title><rect x="90.7241%" y="805" width="0.9806%" height="15" fill="rgb(212,73,49)" fg:x="435755" fg:w="4710"/><text x="90.9741%" y="815.50"></text></g><g><title>d_path (4,920 samples, 1.02%)</title><rect x="90.6879%" y="821" width="1.0243%" height="15" fill="rgb(205,62,54)" fg:x="435581" fg:w="4920"/><text x="90.9379%" y="831.50"></text></g><g><title>memset_erms (149 samples, 0.03%)</title><rect x="91.7193%" y="821" width="0.0310%" height="15" fill="rgb(228,0,8)" fg:x="440535" fg:w="149"/><text x="91.9693%" y="831.50"></text></g><g><title>[[falcon_kal]] (5,921 samples, 1.23%)</title><rect x="90.5329%" y="837" width="1.2328%" height="15" fill="rgb(251,28,17)" fg:x="434837" fg:w="5921"/><text x="90.7829%" y="847.50"></text></g><g><title>__kmalloc (52 samples, 0.01%)</title><rect x="91.7657%" y="837" width="0.0108%" height="15" fill="rgb(238,105,27)" fg:x="440758" fg:w="52"/><text x="92.0157%" y="847.50"></text></g><g><title>get_any_partial (132 samples, 0.03%)</title><rect x="92.1654%" y="773" width="0.0275%" height="15" fill="rgb(237,216,33)" fg:x="442678" fg:w="132"/><text x="92.4154%" y="783.50"></text></g><g><title>get_partial_node.part.0 (104 samples, 0.02%)</title><rect x="92.1929%" y="773" width="0.0217%" height="15" fill="rgb(229,228,25)" fg:x="442810" fg:w="104"/><text x="92.4429%" y="783.50"></text></g><g><title>compact_lock_irqsave (49 samples, 0.01%)</title><rect x="92.4251%" y="597" width="0.0102%" height="15" fill="rgb(233,75,23)" fg:x="443925" fg:w="49"/><text x="92.6751%" y="607.50"></text></g><g><title>isolate_migratepages_block (297 samples, 0.06%)</title><rect x="92.3807%" y="613" width="0.0618%" height="15" fill="rgb(231,207,16)" fg:x="443712" fg:w="297"/><text x="92.6307%" y="623.50"></text></g><g><title>isolate_migratepages (374 samples, 0.08%)</title><rect x="92.3661%" y="629" width="0.0779%" height="15" fill="rgb(231,191,45)" fg:x="443642" fg:w="374"/><text x="92.6161%" y="639.50"></text></g><g><title>__free_one_page (78 samples, 0.02%)</title><rect x="92.4586%" y="565" width="0.0162%" height="15" fill="rgb(224,133,17)" fg:x="444086" fg:w="78"/><text x="92.7086%" y="575.50"></text></g><g><title>drain_local_pages (161 samples, 0.03%)</title><rect x="92.4488%" y="613" width="0.0335%" height="15" fill="rgb(209,178,27)" fg:x="444039" fg:w="161"/><text x="92.6988%" y="623.50"></text></g><g><title>drain_pages_zone (161 samples, 0.03%)</title><rect x="92.4488%" y="597" width="0.0335%" height="15" fill="rgb(218,37,11)" fg:x="444039" fg:w="161"/><text x="92.6988%" y="607.50"></text></g><g><title>free_pcppages_bulk (157 samples, 0.03%)</title><rect x="92.4496%" y="581" width="0.0327%" height="15" fill="rgb(251,226,25)" fg:x="444043" fg:w="157"/><text x="92.6996%" y="591.50"></text></g><g><title>lru_add_drain_cpu_zone (207 samples, 0.04%)</title><rect x="92.4488%" y="629" width="0.0431%" height="15" fill="rgb(209,222,27)" fg:x="444039" fg:w="207"/><text x="92.6988%" y="639.50"></text></g><g><title>migrate_page (106 samples, 0.02%)</title><rect x="92.5244%" y="549" width="0.0221%" height="15" fill="rgb(238,22,21)" fg:x="444402" fg:w="106"/><text x="92.7744%" y="559.50"></text></g><g><title>btree_migratepage (129 samples, 0.03%)</title><rect x="92.5240%" y="565" width="0.0269%" height="15" fill="rgb(233,161,25)" fg:x="444400" fg:w="129"/><text x="92.7740%" y="575.50"></text></g><g><title>_raw_spin_lock_irq (123 samples, 0.03%)</title><rect x="92.5610%" y="533" width="0.0256%" height="15" fill="rgb(226,122,53)" fg:x="444578" fg:w="123"/><text x="92.8110%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath (74 samples, 0.02%)</title><rect x="92.5712%" y="517" width="0.0154%" height="15" fill="rgb(220,123,17)" fg:x="444627" fg:w="74"/><text x="92.8212%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (74 samples, 0.02%)</title><rect x="92.5712%" y="501" width="0.0154%" height="15" fill="rgb(230,224,35)" fg:x="444627" fg:w="74"/><text x="92.8212%" y="511.50"></text></g><g><title>migrate_page (175 samples, 0.04%)</title><rect x="92.5510%" y="565" width="0.0364%" height="15" fill="rgb(246,83,8)" fg:x="444530" fg:w="175"/><text x="92.8010%" y="575.50"></text></g><g><title>migrate_page_move_mapping (164 samples, 0.03%)</title><rect x="92.5533%" y="549" width="0.0341%" height="15" fill="rgb(230,214,17)" fg:x="444541" fg:w="164"/><text x="92.8033%" y="559.50"></text></g><g><title>move_to_new_page (340 samples, 0.07%)</title><rect x="92.5192%" y="581" width="0.0708%" height="15" fill="rgb(222,97,18)" fg:x="444377" fg:w="340"/><text x="92.7692%" y="591.50"></text></g><g><title>__unmap_and_move (419 samples, 0.09%)</title><rect x="92.5044%" y="597" width="0.0872%" height="15" fill="rgb(206,79,1)" fg:x="444306" fg:w="419"/><text x="92.7544%" y="607.50"></text></g><g><title>_raw_spin_lock_irqsave (57 samples, 0.01%)</title><rect x="92.6545%" y="549" width="0.0119%" height="15" fill="rgb(214,121,34)" fg:x="445027" fg:w="57"/><text x="92.9045%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath (53 samples, 0.01%)</title><rect x="92.6553%" y="533" width="0.0110%" height="15" fill="rgb(249,199,46)" fg:x="445031" fg:w="53"/><text x="92.9053%" y="543.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (53 samples, 0.01%)</title><rect x="92.6553%" y="517" width="0.0110%" height="15" fill="rgb(214,222,46)" fg:x="445031" fg:w="53"/><text x="92.9053%" y="527.50"></text></g><g><title>fast_isolate_freepages.isra.0 (122 samples, 0.03%)</title><rect x="92.6412%" y="565" width="0.0254%" height="15" fill="rgb(248,168,30)" fg:x="444963" fg:w="122"/><text x="92.8912%" y="575.50"></text></g><g><title>compaction_alloc (435 samples, 0.09%)</title><rect x="92.5916%" y="597" width="0.0906%" height="15" fill="rgb(226,14,28)" fg:x="444725" fg:w="435"/><text x="92.8416%" y="607.50"></text></g><g><title>isolate_freepages (412 samples, 0.09%)</title><rect x="92.5964%" y="581" width="0.0858%" height="15" fill="rgb(253,123,1)" fg:x="444748" fg:w="412"/><text x="92.8464%" y="591.50"></text></g><g><title>migrate_pages (965 samples, 0.20%)</title><rect x="92.4919%" y="629" width="0.2009%" height="15" fill="rgb(225,24,42)" fg:x="444246" fg:w="965"/><text x="92.7419%" y="639.50"></text></g><g><title>unmap_and_move (934 samples, 0.19%)</title><rect x="92.4984%" y="613" width="0.1945%" height="15" fill="rgb(216,161,37)" fg:x="444277" fg:w="934"/><text x="92.7484%" y="623.50"></text></g><g><title>compact_zone (1,658 samples, 0.35%)</title><rect x="92.3555%" y="645" width="0.3452%" height="15" fill="rgb(251,164,26)" fg:x="443591" fg:w="1658"/><text x="92.6055%" y="655.50"></text></g><g><title>__alloc_pages_direct_compact (1,738 samples, 0.36%)</title><rect x="92.3399%" y="693" width="0.3619%" height="15" fill="rgb(219,177,3)" fg:x="443516" fg:w="1738"/><text x="92.5899%" y="703.50"></text></g><g><title>try_to_compact_pages (1,669 samples, 0.35%)</title><rect x="92.3543%" y="677" width="0.3475%" height="15" fill="rgb(222,65,0)" fg:x="443585" fg:w="1669"/><text x="92.6043%" y="687.50"></text></g><g><title>compact_zone_order (1,665 samples, 0.35%)</title><rect x="92.3551%" y="661" width="0.3467%" height="15" fill="rgb(223,69,54)" fg:x="443589" fg:w="1665"/><text x="92.6051%" y="671.50"></text></g><g><title>__cpuset_node_allowed (63 samples, 0.01%)</title><rect x="92.7397%" y="677" width="0.0131%" height="15" fill="rgb(235,30,27)" fg:x="445436" fg:w="63"/><text x="92.9897%" y="687.50"></text></g><g><title>__zone_watermark_ok (137 samples, 0.03%)</title><rect x="92.7528%" y="677" width="0.0285%" height="15" fill="rgb(220,183,50)" fg:x="445499" fg:w="137"/><text x="93.0028%" y="687.50"></text></g><g><title>clear_page_erms (166 samples, 0.03%)</title><rect x="92.7815%" y="677" width="0.0346%" height="15" fill="rgb(248,198,15)" fg:x="445637" fg:w="166"/><text x="93.0315%" y="687.50"></text></g><g><title>rmqueue_bulk (199 samples, 0.04%)</title><rect x="92.8211%" y="661" width="0.0414%" height="15" fill="rgb(222,211,4)" fg:x="445827" fg:w="199"/><text x="93.0711%" y="671.50"></text></g><g><title>steal_suitable_fallback (140 samples, 0.03%)</title><rect x="92.8333%" y="645" width="0.0291%" height="15" fill="rgb(214,102,34)" fg:x="445886" fg:w="140"/><text x="93.0833%" y="655.50"></text></g><g><title>move_freepages_block (135 samples, 0.03%)</title><rect x="92.8344%" y="629" width="0.0281%" height="15" fill="rgb(245,92,5)" fg:x="445891" fg:w="135"/><text x="93.0844%" y="639.50"></text></g><g><title>rmqueue (217 samples, 0.05%)</title><rect x="92.8175%" y="677" width="0.0452%" height="15" fill="rgb(252,72,51)" fg:x="445810" fg:w="217"/><text x="93.0675%" y="687.50"></text></g><g><title>get_page_from_freelist (696 samples, 0.14%)</title><rect x="92.7180%" y="693" width="0.1449%" height="15" fill="rgb(252,208,19)" fg:x="445332" fg:w="696"/><text x="92.9680%" y="703.50"></text></g><g><title>cgroup_rstat_flush_locked (80 samples, 0.02%)</title><rect x="92.8675%" y="597" width="0.0167%" height="15" fill="rgb(211,69,7)" fg:x="446050" fg:w="80"/><text x="93.1175%" y="607.50"></text></g><g><title>mem_cgroup_css_rstat_flush (60 samples, 0.01%)</title><rect x="92.8717%" y="581" width="0.0125%" height="15" fill="rgb(211,27,16)" fg:x="446070" fg:w="60"/><text x="93.1217%" y="591.50"></text></g><g><title>mem_cgroup_flush_stats (83 samples, 0.02%)</title><rect x="92.8673%" y="645" width="0.0173%" height="15" fill="rgb(219,216,14)" fg:x="446049" fg:w="83"/><text x="93.1173%" y="655.50"></text></g><g><title>__mem_cgroup_flush_stats (83 samples, 0.02%)</title><rect x="92.8673%" y="629" width="0.0173%" height="15" fill="rgb(219,71,8)" fg:x="446049" fg:w="83"/><text x="93.1173%" y="639.50"></text></g><g><title>cgroup_rstat_flush_irqsafe (83 samples, 0.02%)</title><rect x="92.8673%" y="613" width="0.0173%" height="15" fill="rgb(223,170,53)" fg:x="446049" fg:w="83"/><text x="93.1173%" y="623.50"></text></g><g><title>mem_cgroup_iter (54 samples, 0.01%)</title><rect x="92.8894%" y="629" width="0.0112%" height="15" fill="rgb(246,21,26)" fg:x="446155" fg:w="54"/><text x="93.1394%" y="639.50"></text></g><g><title>get_scan_count (69 samples, 0.01%)</title><rect x="92.9043%" y="613" width="0.0144%" height="15" fill="rgb(248,20,46)" fg:x="446227" fg:w="69"/><text x="93.1543%" y="623.50"></text></g><g><title>isolate_lru_pages (64 samples, 0.01%)</title><rect x="92.9341%" y="597" width="0.0133%" height="15" fill="rgb(252,94,11)" fg:x="446370" fg:w="64"/><text x="93.1841%" y="607.50"></text></g><g><title>xas_create (71 samples, 0.01%)</title><rect x="92.9939%" y="533" width="0.0148%" height="15" fill="rgb(236,163,8)" fg:x="446657" fg:w="71"/><text x="93.2439%" y="543.50"></text></g><g><title>__delete_from_page_cache (163 samples, 0.03%)</title><rect x="92.9751%" y="565" width="0.0339%" height="15" fill="rgb(217,221,45)" fg:x="446567" fg:w="163"/><text x="93.2251%" y="575.50"></text></g><g><title>xas_store (89 samples, 0.02%)</title><rect x="92.9905%" y="549" width="0.0185%" height="15" fill="rgb(238,38,17)" fg:x="446641" fg:w="89"/><text x="93.2405%" y="559.50"></text></g><g><title>_raw_spin_lock_irq (166 samples, 0.03%)</title><rect x="93.0091%" y="565" width="0.0346%" height="15" fill="rgb(242,210,23)" fg:x="446730" fg:w="166"/><text x="93.2591%" y="575.50"></text></g><g><title>native_queued_spin_lock_slowpath (148 samples, 0.03%)</title><rect x="93.0128%" y="549" width="0.0308%" height="15" fill="rgb(250,86,53)" fg:x="446748" fg:w="148"/><text x="93.2628%" y="559.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (148 samples, 0.03%)</title><rect x="93.0128%" y="533" width="0.0308%" height="15" fill="rgb(223,168,25)" fg:x="446748" fg:w="148"/><text x="93.2628%" y="543.50"></text></g><g><title>__remove_mapping (417 samples, 0.09%)</title><rect x="92.9672%" y="581" width="0.0868%" height="15" fill="rgb(251,189,4)" fg:x="446529" fg:w="417"/><text x="93.2172%" y="591.50"></text></g><g><title>free_unref_page_list (83 samples, 0.02%)</title><rect x="93.0545%" y="581" width="0.0173%" height="15" fill="rgb(245,19,28)" fg:x="446948" fg:w="83"/><text x="93.3045%" y="591.50"></text></g><g><title>free_unref_page_commit.constprop.0 (64 samples, 0.01%)</title><rect x="93.0584%" y="565" width="0.0133%" height="15" fill="rgb(207,10,34)" fg:x="446967" fg:w="64"/><text x="93.3084%" y="575.50"></text></g><g><title>free_pcppages_bulk (60 samples, 0.01%)</title><rect x="93.0592%" y="549" width="0.0125%" height="15" fill="rgb(235,153,31)" fg:x="446971" fg:w="60"/><text x="93.3092%" y="559.50"></text></g><g><title>__clear_extent_bit (146 samples, 0.03%)</title><rect x="93.0842%" y="533" width="0.0304%" height="15" fill="rgb(228,72,37)" fg:x="447091" fg:w="146"/><text x="93.3342%" y="543.50"></text></g><g><title>btrfs_releasepage (241 samples, 0.05%)</title><rect x="93.0803%" y="565" width="0.0502%" height="15" fill="rgb(215,15,16)" fg:x="447072" fg:w="241"/><text x="93.3303%" y="575.50"></text></g><g><title>try_release_extent_mapping (229 samples, 0.05%)</title><rect x="93.0828%" y="549" width="0.0477%" height="15" fill="rgb(250,119,29)" fg:x="447084" fg:w="229"/><text x="93.3328%" y="559.50"></text></g><g><title>test_range_bit (59 samples, 0.01%)</title><rect x="93.1182%" y="533" width="0.0123%" height="15" fill="rgb(214,59,1)" fg:x="447254" fg:w="59"/><text x="93.3682%" y="543.50"></text></g><g><title>try_to_release_page (269 samples, 0.06%)</title><rect x="93.0749%" y="581" width="0.0560%" height="15" fill="rgb(223,109,25)" fg:x="447046" fg:w="269"/><text x="93.3249%" y="591.50"></text></g><g><title>shrink_page_list (878 samples, 0.18%)</title><rect x="92.9499%" y="597" width="0.1828%" height="15" fill="rgb(230,198,22)" fg:x="446446" fg:w="878"/><text x="93.1999%" y="607.50"></text></g><g><title>shrink_lruvec (1,127 samples, 0.23%)</title><rect x="92.9008%" y="629" width="0.2346%" height="15" fill="rgb(245,184,46)" fg:x="446210" fg:w="1127"/><text x="93.1508%" y="639.50"></text></g><g><title>shrink_inactive_list (1,000 samples, 0.21%)</title><rect x="92.9272%" y="613" width="0.2082%" height="15" fill="rgb(253,73,16)" fg:x="446337" fg:w="1000"/><text x="93.1772%" y="623.50"></text></g><g><title>do_shrink_slab (49 samples, 0.01%)</title><rect x="93.1392%" y="613" width="0.0102%" height="15" fill="rgb(206,94,45)" fg:x="447355" fg:w="49"/><text x="93.3892%" y="623.50"></text></g><g><title>count_shadow_nodes (123 samples, 0.03%)</title><rect x="93.1642%" y="581" width="0.0256%" height="15" fill="rgb(236,83,27)" fg:x="447475" fg:w="123"/><text x="93.4142%" y="591.50"></text></g><g><title>list_lru_count_one (71 samples, 0.01%)</title><rect x="93.1950%" y="565" width="0.0148%" height="15" fill="rgb(220,196,8)" fg:x="447623" fg:w="71"/><text x="93.4450%" y="575.50"></text></g><g><title>super_cache_count (137 samples, 0.03%)</title><rect x="93.1925%" y="581" width="0.0285%" height="15" fill="rgb(254,185,14)" fg:x="447611" fg:w="137"/><text x="93.4425%" y="591.50"></text></g><g><title>xfs_fs_nr_cached_objects (54 samples, 0.01%)</title><rect x="93.2098%" y="565" width="0.0112%" height="15" fill="rgb(226,50,22)" fg:x="447694" fg:w="54"/><text x="93.4598%" y="575.50"></text></g><g><title>xfs_reclaim_inodes_count (51 samples, 0.01%)</title><rect x="93.2104%" y="549" width="0.0106%" height="15" fill="rgb(253,147,0)" fg:x="447697" fg:w="51"/><text x="93.4604%" y="559.50"></text></g><g><title>do_shrink_slab (307 samples, 0.06%)</title><rect x="93.1573%" y="597" width="0.0639%" height="15" fill="rgb(252,46,33)" fg:x="447442" fg:w="307"/><text x="93.4073%" y="607.50"></text></g><g><title>shrink_slab_memcg (383 samples, 0.08%)</title><rect x="93.1513%" y="613" width="0.0797%" height="15" fill="rgb(242,22,54)" fg:x="447413" fg:w="383"/><text x="93.4013%" y="623.50"></text></g><g><title>shrink_slab (470 samples, 0.10%)</title><rect x="93.1354%" y="629" width="0.0979%" height="15" fill="rgb(223,178,32)" fg:x="447337" fg:w="470"/><text x="93.3854%" y="639.50"></text></g><g><title>shrink_node_memcgs (1,677 samples, 0.35%)</title><rect x="92.8848%" y="645" width="0.3492%" height="15" fill="rgb(214,106,53)" fg:x="446133" fg:w="1677"/><text x="93.1348%" y="655.50"></text></g><g><title>do_try_to_free_pages (1,775 samples, 0.37%)</title><rect x="92.8650%" y="677" width="0.3696%" height="15" fill="rgb(232,65,50)" fg:x="446038" fg:w="1775"/><text x="93.1150%" y="687.50"></text></g><g><title>shrink_node (1,770 samples, 0.37%)</title><rect x="92.8660%" y="661" width="0.3685%" height="15" fill="rgb(231,110,28)" fg:x="446043" fg:w="1770"/><text x="93.1160%" y="671.50"></text></g><g><title>try_to_free_pages (1,777 samples, 0.37%)</title><rect x="92.8650%" y="693" width="0.3700%" height="15" fill="rgb(216,71,40)" fg:x="446038" fg:w="1777"/><text x="93.1150%" y="703.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (4,403 samples, 0.92%)</title><rect x="92.3239%" y="709" width="0.9167%" height="15" fill="rgb(229,89,53)" fg:x="443439" fg:w="4403"/><text x="92.5739%" y="719.50"></text></g><g><title>__next_zones_zonelist (49 samples, 0.01%)</title><rect x="93.2433%" y="709" width="0.0102%" height="15" fill="rgb(210,124,14)" fg:x="447855" fg:w="49"/><text x="93.4933%" y="719.50"></text></g><g><title>__zone_watermark_ok (197 samples, 0.04%)</title><rect x="93.3178%" y="693" width="0.0410%" height="15" fill="rgb(236,213,6)" fg:x="448213" fg:w="197"/><text x="93.5678%" y="703.50"></text></g><g><title>clear_page_erms (1,848 samples, 0.38%)</title><rect x="93.3601%" y="693" width="0.3848%" height="15" fill="rgb(228,41,5)" fg:x="448416" fg:w="1848"/><text x="93.6101%" y="703.50"></text></g><g><title>_raw_spin_lock (198 samples, 0.04%)</title><rect x="93.8177%" y="661" width="0.0412%" height="15" fill="rgb(221,167,25)" fg:x="450614" fg:w="198"/><text x="94.0677%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (198 samples, 0.04%)</title><rect x="93.8177%" y="645" width="0.0412%" height="15" fill="rgb(228,144,37)" fg:x="450614" fg:w="198"/><text x="94.0677%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (198 samples, 0.04%)</title><rect x="93.8177%" y="629" width="0.0412%" height="15" fill="rgb(227,189,38)" fg:x="450614" fg:w="198"/><text x="94.0677%" y="639.50"></text></g><g><title>rmqueue_bulk (962 samples, 0.20%)</title><rect x="93.7892%" y="677" width="0.2003%" height="15" fill="rgb(218,8,2)" fg:x="450477" fg:w="962"/><text x="94.0392%" y="687.50"></text></g><g><title>steal_suitable_fallback (612 samples, 0.13%)</title><rect x="93.8621%" y="661" width="0.1274%" height="15" fill="rgb(209,61,28)" fg:x="450827" fg:w="612"/><text x="94.1121%" y="671.50"></text></g><g><title>move_freepages_block (583 samples, 0.12%)</title><rect x="93.8681%" y="645" width="0.1214%" height="15" fill="rgb(233,140,39)" fg:x="450856" fg:w="583"/><text x="94.1181%" y="655.50"></text></g><g><title>rmqueue (1,112 samples, 0.23%)</title><rect x="93.7584%" y="693" width="0.2315%" height="15" fill="rgb(251,66,48)" fg:x="450329" fg:w="1112"/><text x="94.0084%" y="703.50"></text></g><g><title>get_page_from_freelist (3,517 samples, 0.73%)</title><rect x="93.2579%" y="709" width="0.7322%" height="15" fill="rgb(210,44,45)" fg:x="447925" fg:w="3517"/><text x="93.5079%" y="719.50"></text></g><g><title>__alloc_pages (8,168 samples, 1.70%)</title><rect x="92.2931%" y="725" width="1.7006%" height="15" fill="rgb(214,136,46)" fg:x="443291" fg:w="8168"/><text x="92.5431%" y="735.50"></text></g><g><title>alloc_pages (8,344 samples, 1.74%)</title><rect x="92.2747%" y="741" width="1.7372%" height="15" fill="rgb(207,130,50)" fg:x="443203" fg:w="8344"/><text x="92.5247%" y="751.50"></text></g><g><title>get_random_u32 (52 samples, 0.01%)</title><rect x="94.0120%" y="741" width="0.0108%" height="15" fill="rgb(228,102,49)" fg:x="451547" fg:w="52"/><text x="94.2620%" y="751.50"></text></g><g><title>mod_node_page_state (53 samples, 0.01%)</title><rect x="94.0228%" y="741" width="0.0110%" height="15" fill="rgb(253,55,1)" fg:x="451599" fg:w="53"/><text x="94.2728%" y="751.50"></text></g><g><title>allocate_slab (8,723 samples, 1.82%)</title><rect x="92.2200%" y="757" width="1.8161%" height="15" fill="rgb(238,222,9)" fg:x="442940" fg:w="8723"/><text x="92.4700%" y="767.50">a..</text></g><g><title>new_slab (8,759 samples, 1.82%)</title><rect x="92.2150%" y="773" width="1.8236%" height="15" fill="rgb(246,99,6)" fg:x="442916" fg:w="8759"/><text x="92.4650%" y="783.50">n..</text></g><g><title>___slab_alloc (9,491 samples, 1.98%)</title><rect x="92.0630%" y="789" width="1.9760%" height="15" fill="rgb(219,110,26)" fg:x="442186" fg:w="9491"/><text x="92.3130%" y="799.50">_..</text></g><g><title>memcg_slab_post_alloc_hook (89 samples, 0.02%)</title><rect x="94.0584%" y="789" width="0.0185%" height="15" fill="rgb(239,160,33)" fg:x="451770" fg:w="89"/><text x="94.3084%" y="799.50"></text></g><g><title>__kmalloc (10,264 samples, 2.14%)</title><rect x="91.9466%" y="805" width="2.1370%" height="15" fill="rgb(220,202,23)" fg:x="441627" fg:w="10264"/><text x="92.1966%" y="815.50">_..</text></g><g><title>memset_erms (2,674 samples, 0.56%)</title><rect x="94.0913%" y="805" width="0.5567%" height="15" fill="rgb(208,80,26)" fg:x="451928" fg:w="2674"/><text x="94.3413%" y="815.50"></text></g><g><title>[[falcon_kal]] (13,056 samples, 2.72%)</title><rect x="91.9335%" y="821" width="2.7183%" height="15" fill="rgb(243,85,7)" fg:x="441564" fg:w="13056"/><text x="92.1835%" y="831.50">[[..</text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (13,814 samples, 2.88%)</title><rect x="91.7801%" y="837" width="2.8761%" height="15" fill="rgb(228,77,47)" fg:x="440827" fg:w="13814"/><text x="92.0301%" y="847.50">cs..</text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (20,856 samples, 4.34%)</title><rect x="90.3158%" y="853" width="4.3422%" height="15" fill="rgb(212,226,8)" fg:x="433794" fg:w="20856"/><text x="90.5658%" y="863.50">cshoo..</text></g><g><title>memmove (407 samples, 0.08%)</title><rect x="94.6682%" y="853" width="0.0847%" height="15" fill="rgb(241,120,54)" fg:x="454699" fg:w="407"/><text x="94.9182%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_openat (35,484 samples, 7.39%)</title><rect x="87.9138%" y="885" width="7.3878%" height="15" fill="rgb(226,80,16)" fg:x="422257" fg:w="35484"/><text x="88.1638%" y="895.50">cshook_sys..</text></g><g><title>fshook_syscalltable_pre_lchown (29,405 samples, 6.12%)</title><rect x="89.1794%" y="869" width="6.1221%" height="15" fill="rgb(240,76,13)" fg:x="428336" fg:w="29405"/><text x="89.4294%" y="879.50">fshook_s..</text></g><g><title>strlen (2,635 samples, 0.55%)</title><rect x="94.7530%" y="853" width="0.5486%" height="15" fill="rgb(252,74,8)" fg:x="455106" fg:w="2635"/><text x="95.0030%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_read (760 samples, 0.16%)</title><rect x="95.3016%" y="885" width="0.1582%" height="15" fill="rgb(244,155,2)" fg:x="457741" fg:w="760"/><text x="95.5516%" y="895.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (407 samples, 0.08%)</title><rect x="95.3751%" y="869" width="0.0847%" height="15" fill="rgb(215,81,35)" fg:x="458094" fg:w="407"/><text x="95.6251%" y="879.50"></text></g><g><title>_ZdlPv (61 samples, 0.01%)</title><rect x="95.5541%" y="853" width="0.0127%" height="15" fill="rgb(206,55,2)" fg:x="458954" fg:w="61"/><text x="95.8041%" y="863.50"></text></g><g><title>__fget_files (195 samples, 0.04%)</title><rect x="95.6576%" y="805" width="0.0406%" height="15" fill="rgb(231,2,34)" fg:x="459451" fg:w="195"/><text x="95.9076%" y="815.50"></text></g><g><title>fget (200 samples, 0.04%)</title><rect x="95.6576%" y="821" width="0.0416%" height="15" fill="rgb(242,176,48)" fg:x="459451" fg:w="200"/><text x="95.9076%" y="831.50"></text></g><g><title>[[falcon_kal]] (441 samples, 0.09%)</title><rect x="95.6301%" y="837" width="0.0918%" height="15" fill="rgb(249,31,36)" fg:x="459319" fg:w="441"/><text x="95.8801%" y="847.50"></text></g><g><title>fput_many (106 samples, 0.02%)</title><rect x="95.6998%" y="821" width="0.0221%" height="15" fill="rgb(205,18,17)" fg:x="459654" fg:w="106"/><text x="95.9498%" y="831.50"></text></g><g><title>_ZdlPv (179 samples, 0.04%)</title><rect x="95.7219%" y="837" width="0.0373%" height="15" fill="rgb(254,130,5)" fg:x="459760" fg:w="179"/><text x="95.9719%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (78 samples, 0.02%)</title><rect x="95.7617%" y="837" width="0.0162%" height="15" fill="rgb(229,42,45)" fg:x="459951" fg:w="78"/><text x="96.0117%" y="847.50"></text></g><g><title>__fget_files (194 samples, 0.04%)</title><rect x="95.8622%" y="789" width="0.0404%" height="15" fill="rgb(245,95,25)" fg:x="460434" fg:w="194"/><text x="96.1122%" y="799.50"></text></g><g><title>fget (202 samples, 0.04%)</title><rect x="95.8620%" y="805" width="0.0421%" height="15" fill="rgb(249,193,38)" fg:x="460433" fg:w="202"/><text x="96.1120%" y="815.50"></text></g><g><title>[[falcon_kal]] (337 samples, 0.07%)</title><rect x="95.8562%" y="821" width="0.0702%" height="15" fill="rgb(241,140,43)" fg:x="460405" fg:w="337"/><text x="96.1062%" y="831.50"></text></g><g><title>fput_many (102 samples, 0.02%)</title><rect x="95.9051%" y="805" width="0.0212%" height="15" fill="rgb(245,78,48)" fg:x="460640" fg:w="102"/><text x="96.1551%" y="815.50"></text></g><g><title>[[falcon_kal]] (398 samples, 0.08%)</title><rect x="95.9707%" y="789" width="0.0829%" height="15" fill="rgb(214,92,39)" fg:x="460955" fg:w="398"/><text x="96.2207%" y="799.50"></text></g><g><title>down_read (387 samples, 0.08%)</title><rect x="95.9730%" y="773" width="0.0806%" height="15" fill="rgb(211,189,14)" fg:x="460966" fg:w="387"/><text x="96.2230%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (122 samples, 0.03%)</title><rect x="96.0542%" y="789" width="0.0254%" height="15" fill="rgb(218,7,24)" fg:x="461356" fg:w="122"/><text x="96.3042%" y="799.50"></text></g><g><title>up_read (113 samples, 0.02%)</title><rect x="96.0561%" y="773" width="0.0235%" height="15" fill="rgb(224,200,49)" fg:x="461365" fg:w="113"/><text x="96.3061%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (698 samples, 0.15%)</title><rect x="95.9353%" y="821" width="0.1453%" height="15" fill="rgb(218,210,14)" fg:x="460785" fg:w="698"/><text x="96.1853%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (543 samples, 0.11%)</title><rect x="95.9676%" y="805" width="0.1131%" height="15" fill="rgb(234,142,31)" fg:x="460940" fg:w="543"/><text x="96.2176%" y="815.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (72 samples, 0.01%)</title><rect x="96.1279%" y="789" width="0.0150%" height="15" fill="rgb(227,165,2)" fg:x="461710" fg:w="72"/><text x="96.3779%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (81 samples, 0.02%)</title><rect x="96.3282%" y="693" width="0.0169%" height="15" fill="rgb(232,44,46)" fg:x="462672" fg:w="81"/><text x="96.5782%" y="703.50"></text></g><g><title>x86_pmu_enable (79 samples, 0.02%)</title><rect x="96.3286%" y="677" width="0.0164%" height="15" fill="rgb(236,149,47)" fg:x="462674" fg:w="79"/><text x="96.5786%" y="687.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.02%)</title><rect x="96.3286%" y="661" width="0.0164%" height="15" fill="rgb(227,45,31)" fg:x="462674" fg:w="79"/><text x="96.5786%" y="671.50"></text></g><g><title>native_write_msr (77 samples, 0.02%)</title><rect x="96.3290%" y="645" width="0.0160%" height="15" fill="rgb(240,176,51)" fg:x="462676" fg:w="77"/><text x="96.5790%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (90 samples, 0.02%)</title><rect x="96.3274%" y="709" width="0.0187%" height="15" fill="rgb(249,146,41)" fg:x="462668" fg:w="90"/><text x="96.5774%" y="719.50"></text></g><g><title>__cond_resched (135 samples, 0.03%)</title><rect x="96.3199%" y="741" width="0.0281%" height="15" fill="rgb(213,208,4)" fg:x="462632" fg:w="135"/><text x="96.5699%" y="751.50"></text></g><g><title>__schedule (99 samples, 0.02%)</title><rect x="96.3274%" y="725" width="0.0206%" height="15" fill="rgb(245,84,36)" fg:x="462668" fg:w="99"/><text x="96.5774%" y="735.50"></text></g><g><title>[[falcon_kal]] (526 samples, 0.11%)</title><rect x="96.2460%" y="773" width="0.1095%" height="15" fill="rgb(254,84,18)" fg:x="462277" fg:w="526"/><text x="96.4960%" y="783.50"></text></g><g><title>down_read (486 samples, 0.10%)</title><rect x="96.2543%" y="757" width="0.1012%" height="15" fill="rgb(225,38,54)" fg:x="462317" fg:w="486"/><text x="96.5043%" y="767.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,560 samples, 0.32%)</title><rect x="96.0815%" y="805" width="0.3248%" height="15" fill="rgb(246,50,30)" fg:x="461487" fg:w="1560"/><text x="96.3315%" y="815.50"></text></g><g><title>cshook_security_inode_free_security (1,265 samples, 0.26%)</title><rect x="96.1429%" y="789" width="0.2634%" height="15" fill="rgb(246,148,9)" fg:x="461782" fg:w="1265"/><text x="96.3929%" y="799.50"></text></g><g><title>up_read (217 samples, 0.05%)</title><rect x="96.3611%" y="773" width="0.0452%" height="15" fill="rgb(223,75,4)" fg:x="462830" fg:w="217"/><text x="96.6111%" y="783.50"></text></g><g><title>cshook_security_file_free_security (1,713 samples, 0.36%)</title><rect x="96.0806%" y="821" width="0.3566%" height="15" fill="rgb(239,148,41)" fg:x="461483" fg:w="1713"/><text x="96.3306%" y="831.50"></text></g><g><title>cshook_security_inode_free_security (149 samples, 0.03%)</title><rect x="96.4063%" y="805" width="0.0310%" height="15" fill="rgb(205,195,3)" fg:x="463047" fg:w="149"/><text x="96.6563%" y="815.50"></text></g><g><title>cshook_security_file_free_security (3,205 samples, 0.67%)</title><rect x="95.7779%" y="837" width="0.6673%" height="15" fill="rgb(254,161,1)" fg:x="460029" fg:w="3205"/><text x="96.0279%" y="847.50"></text></g><g><title>cshook_security_file_free_security (4,210 samples, 0.88%)</title><rect x="95.5716%" y="853" width="0.8765%" height="15" fill="rgb(211,229,8)" fg:x="459038" fg:w="4210"/><text x="95.8216%" y="863.50"></text></g><g><title>__fget_files (181 samples, 0.04%)</title><rect x="96.6546%" y="805" width="0.0377%" height="15" fill="rgb(220,97,9)" fg:x="464240" fg:w="181"/><text x="96.9046%" y="815.50"></text></g><g><title>fget (186 samples, 0.04%)</title><rect x="96.6544%" y="821" width="0.0387%" height="15" fill="rgb(240,218,8)" fg:x="464239" fg:w="186"/><text x="96.9044%" y="831.50"></text></g><g><title>[[falcon_kal]] (1,027 samples, 0.21%)</title><rect x="96.5066%" y="837" width="0.2138%" height="15" fill="rgb(250,44,0)" fg:x="463529" fg:w="1027"/><text x="96.7566%" y="847.50"></text></g><g><title>fput_many (128 samples, 0.03%)</title><rect x="96.6938%" y="821" width="0.0266%" height="15" fill="rgb(236,41,53)" fg:x="464428" fg:w="128"/><text x="96.9438%" y="831.50"></text></g><g><title>crypto_sha256_update (782 samples, 0.16%)</title><rect x="96.9114%" y="709" width="0.1628%" height="15" fill="rgb(218,227,13)" fg:x="465473" fg:w="782"/><text x="97.1614%" y="719.50"></text></g><g><title>sha256_update (777 samples, 0.16%)</title><rect x="96.9124%" y="693" width="0.1618%" height="15" fill="rgb(217,94,32)" fg:x="465478" fg:w="777"/><text x="97.1624%" y="703.50"></text></g><g><title>sha256_transform (776 samples, 0.16%)</title><rect x="96.9126%" y="677" width="0.1616%" height="15" fill="rgb(213,217,12)" fg:x="465479" fg:w="776"/><text x="97.1626%" y="687.50"></text></g><g><title>[[falcon_kal]] (976 samples, 0.20%)</title><rect x="96.9034%" y="741" width="0.2032%" height="15" fill="rgb(229,13,46)" fg:x="465435" fg:w="976"/><text x="97.1534%" y="751.50"></text></g><g><title>crypto_shash_update (939 samples, 0.20%)</title><rect x="96.9111%" y="725" width="0.1955%" height="15" fill="rgb(243,139,5)" fg:x="465472" fg:w="939"/><text x="97.1611%" y="735.50"></text></g><g><title>md5_update (156 samples, 0.03%)</title><rect x="97.0742%" y="709" width="0.0325%" height="15" fill="rgb(249,38,45)" fg:x="466255" fg:w="156"/><text x="97.3242%" y="719.50"></text></g><g><title>md5_transform (147 samples, 0.03%)</title><rect x="97.0760%" y="693" width="0.0306%" height="15" fill="rgb(216,70,11)" fg:x="466264" fg:w="147"/><text x="97.3260%" y="703.50"></text></g><g><title>cshook_security_inode_free_security (987 samples, 0.21%)</title><rect x="96.9014%" y="789" width="0.2055%" height="15" fill="rgb(253,101,25)" fg:x="465425" fg:w="987"/><text x="97.1514%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (987 samples, 0.21%)</title><rect x="96.9014%" y="773" width="0.2055%" height="15" fill="rgb(207,197,30)" fg:x="465425" fg:w="987"/><text x="97.1514%" y="783.50"></text></g><g><title>[[falcon_kal]] (977 samples, 0.20%)</title><rect x="96.9034%" y="757" width="0.2034%" height="15" fill="rgb(238,87,13)" fg:x="465435" fg:w="977"/><text x="97.1534%" y="767.50"></text></g><g><title>_ZdlPv (1,093 samples, 0.23%)</title><rect x="96.8862%" y="805" width="0.2276%" height="15" fill="rgb(215,155,8)" fg:x="465352" fg:w="1093"/><text x="97.1362%" y="815.50"></text></g><g><title>_ZdlPv (1,198 samples, 0.25%)</title><rect x="96.8649%" y="821" width="0.2494%" height="15" fill="rgb(239,166,38)" fg:x="465250" fg:w="1198"/><text x="97.1149%" y="831.50"></text></g><g><title>memcg_slab_free_hook (120 samples, 0.02%)</title><rect x="97.2603%" y="773" width="0.0250%" height="15" fill="rgb(240,194,35)" fg:x="467149" fg:w="120"/><text x="97.5103%" y="783.50"></text></g><g><title>kfree (549 samples, 0.11%)</title><rect x="97.1860%" y="789" width="0.1143%" height="15" fill="rgb(219,10,44)" fg:x="466792" fg:w="549"/><text x="97.4360%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (72 samples, 0.01%)</title><rect x="97.2853%" y="773" width="0.0150%" height="15" fill="rgb(251,220,35)" fg:x="467269" fg:w="72"/><text x="97.5353%" y="783.50"></text></g><g><title>[[falcon_kal]] (607 samples, 0.13%)</title><rect x="97.1783%" y="805" width="0.1264%" height="15" fill="rgb(218,117,13)" fg:x="466755" fg:w="607"/><text x="97.4283%" y="815.50"></text></g><g><title>_ZdlPv (2,875 samples, 0.60%)</title><rect x="96.7204%" y="837" width="0.5986%" height="15" fill="rgb(221,213,40)" fg:x="464556" fg:w="2875"/><text x="96.9704%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (968 samples, 0.20%)</title><rect x="97.1175%" y="821" width="0.2015%" height="15" fill="rgb(251,224,35)" fg:x="466463" fg:w="968"/><text x="97.3675%" y="831.50"></text></g><g><title>clear_page_erms (64 samples, 0.01%)</title><rect x="97.6280%" y="693" width="0.0133%" height="15" fill="rgb(241,33,39)" fg:x="468915" fg:w="64"/><text x="97.8780%" y="703.50"></text></g><g><title>get_page_from_freelist (147 samples, 0.03%)</title><rect x="97.6251%" y="709" width="0.0306%" height="15" fill="rgb(222,74,17)" fg:x="468901" fg:w="147"/><text x="97.8751%" y="719.50"></text></g><g><title>rmqueue (61 samples, 0.01%)</title><rect x="97.6430%" y="693" width="0.0127%" height="15" fill="rgb(225,103,0)" fg:x="468987" fg:w="61"/><text x="97.8930%" y="703.50"></text></g><g><title>rmqueue_bulk (50 samples, 0.01%)</title><rect x="97.6453%" y="677" width="0.0104%" height="15" fill="rgb(240,0,12)" fg:x="468998" fg:w="50"/><text x="97.8953%" y="687.50"></text></g><g><title>__alloc_pages (180 samples, 0.04%)</title><rect x="97.6188%" y="725" width="0.0375%" height="15" fill="rgb(233,213,37)" fg:x="468871" fg:w="180"/><text x="97.8688%" y="735.50"></text></g><g><title>alloc_pages (187 samples, 0.04%)</title><rect x="97.6184%" y="741" width="0.0389%" height="15" fill="rgb(225,84,52)" fg:x="468869" fg:w="187"/><text x="97.8684%" y="751.50"></text></g><g><title>allocate_slab (256 samples, 0.05%)</title><rect x="97.6095%" y="757" width="0.0533%" height="15" fill="rgb(247,160,51)" fg:x="468826" fg:w="256"/><text x="97.8595%" y="767.50"></text></g><g><title>___slab_alloc (369 samples, 0.08%)</title><rect x="97.5865%" y="789" width="0.0768%" height="15" fill="rgb(244,60,51)" fg:x="468716" fg:w="369"/><text x="97.8365%" y="799.50"></text></g><g><title>new_slab (259 samples, 0.05%)</title><rect x="97.6095%" y="773" width="0.0539%" height="15" fill="rgb(233,114,7)" fg:x="468826" fg:w="259"/><text x="97.8595%" y="783.50"></text></g><g><title>kmalloc_slab (92 samples, 0.02%)</title><rect x="97.6698%" y="789" width="0.0192%" height="15" fill="rgb(246,136,16)" fg:x="469116" fg:w="92"/><text x="97.9198%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (57 samples, 0.01%)</title><rect x="97.6890%" y="789" width="0.0119%" height="15" fill="rgb(243,114,45)" fg:x="469208" fg:w="57"/><text x="97.9390%" y="799.50"></text></g><g><title>__kmalloc (1,024 samples, 0.21%)</title><rect x="97.4916%" y="805" width="0.2132%" height="15" fill="rgb(247,183,43)" fg:x="468260" fg:w="1024"/><text x="97.7416%" y="815.50"></text></g><g><title>memset_erms (180 samples, 0.04%)</title><rect x="97.7125%" y="805" width="0.0375%" height="15" fill="rgb(251,210,42)" fg:x="469321" fg:w="180"/><text x="97.9625%" y="815.50"></text></g><g><title>[[falcon_kal]] (1,291 samples, 0.27%)</title><rect x="97.4864%" y="821" width="0.2688%" height="15" fill="rgb(221,88,35)" fg:x="468235" fg:w="1291"/><text x="97.7364%" y="831.50"></text></g><g><title>__kmalloc (50 samples, 0.01%)</title><rect x="97.7552%" y="821" width="0.0104%" height="15" fill="rgb(242,21,20)" fg:x="469526" fg:w="50"/><text x="98.0052%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,157 samples, 0.45%)</title><rect x="97.3223%" y="837" width="0.4491%" height="15" fill="rgb(233,226,36)" fg:x="467447" fg:w="2157"/><text x="97.5723%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (11,112 samples, 2.31%)</title><rect x="95.4635%" y="869" width="2.3135%" height="15" fill="rgb(243,189,34)" fg:x="458519" fg:w="11112"/><text x="95.7135%" y="879.50">c..</text></g><g><title>fshook_syscalltable_pre_lchown (6,355 samples, 1.32%)</title><rect x="96.4539%" y="853" width="1.3231%" height="15" fill="rgb(207,145,50)" fg:x="463276" fg:w="6355"/><text x="96.7039%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_close (11,158 samples, 2.32%)</title><rect x="95.4615%" y="885" width="2.3231%" height="15" fill="rgb(242,1,50)" fg:x="458509" fg:w="11158"/><text x="95.7115%" y="895.50">c..</text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (370 samples, 0.08%)</title><rect x="97.7937%" y="869" width="0.0770%" height="15" fill="rgb(231,65,32)" fg:x="469711" fg:w="370"/><text x="98.0437%" y="879.50"></text></g><g><title>cshook_systemcalltable_pre_openat (429 samples, 0.09%)</title><rect x="97.7902%" y="885" width="0.0893%" height="15" fill="rgb(208,68,49)" fg:x="469694" fg:w="429"/><text x="98.0402%" y="895.50"></text></g><g><title>cshook_systemcalltable_pre_read (565 samples, 0.12%)</title><rect x="97.8795%" y="885" width="0.1176%" height="15" fill="rgb(253,54,49)" fg:x="470123" fg:w="565"/><text x="98.1295%" y="895.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (408 samples, 0.08%)</title><rect x="97.9122%" y="869" width="0.0849%" height="15" fill="rgb(245,186,24)" fg:x="470280" fg:w="408"/><text x="98.1622%" y="879.50"></text></g><g><title>do_syscall_64 (146,393 samples, 30.48%)</title><rect x="67.5523%" y="917" width="30.4790%" height="15" fill="rgb(209,2,41)" fg:x="324459" fg:w="146393"/><text x="67.8023%" y="927.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (118,548 samples, 24.68%)</title><rect x="73.3496%" y="901" width="24.6817%" height="15" fill="rgb(242,208,54)" fg:x="352304" fg:w="118548"/><text x="73.5996%" y="911.50">unload_network_ops_symbols</text></g><g><title>ksys_read (84 samples, 0.02%)</title><rect x="98.0138%" y="885" width="0.0175%" height="15" fill="rgb(225,9,51)" fg:x="470768" fg:w="84"/><text x="98.2638%" y="895.50"></text></g><g><title>syscall_enter_from_user_mode (83 samples, 0.02%)</title><rect x="98.0313%" y="917" width="0.0173%" height="15" fill="rgb(207,207,25)" fg:x="470852" fg:w="83"/><text x="98.2813%" y="927.50"></text></g><g><title>syscall_exit_to_user_mode (142 samples, 0.03%)</title><rect x="98.0485%" y="917" width="0.0296%" height="15" fill="rgb(253,96,18)" fg:x="470935" fg:w="142"/><text x="98.2985%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (147,846 samples, 30.78%)</title><rect x="67.3432%" y="933" width="30.7815%" height="15" fill="rgb(252,215,20)" fg:x="323455" fg:w="147846"/><text x="67.5932%" y="943.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>unload_network_ops_symbols (224 samples, 0.05%)</title><rect x="98.0781%" y="917" width="0.0466%" height="15" fill="rgb(245,227,26)" fg:x="471077" fg:w="224"/><text x="98.3281%" y="927.50"></text></g><g><title>error_entry (64 samples, 0.01%)</title><rect x="98.1247%" y="933" width="0.0133%" height="15" fill="rgb(241,208,0)" fg:x="471301" fg:w="64"/><text x="98.3747%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (3,168 samples, 0.66%)</title><rect x="98.1699%" y="885" width="0.6596%" height="15" fill="rgb(224,130,10)" fg:x="471518" fg:w="3168"/><text x="98.4199%" y="895.50"></text></g><g><title>x86_pmu_enable (3,106 samples, 0.65%)</title><rect x="98.1828%" y="869" width="0.6467%" height="15" fill="rgb(237,29,0)" fg:x="471580" fg:w="3106"/><text x="98.4328%" y="879.50"></text></g><g><title>intel_pmu_enable_all (3,085 samples, 0.64%)</title><rect x="98.1872%" y="853" width="0.6423%" height="15" fill="rgb(219,27,41)" fg:x="471601" fg:w="3085"/><text x="98.4372%" y="863.50"></text></g><g><title>native_write_msr (3,067 samples, 0.64%)</title><rect x="98.1910%" y="837" width="0.6385%" height="15" fill="rgb(245,101,19)" fg:x="471619" fg:w="3067"/><text x="98.4410%" y="847.50"></text></g><g><title>finish_task_switch.isra.0 (3,292 samples, 0.69%)</title><rect x="98.1612%" y="901" width="0.6854%" height="15" fill="rgb(243,44,37)" fg:x="471476" fg:w="3292"/><text x="98.4112%" y="911.50"></text></g><g><title>schedule_tail (3,385 samples, 0.70%)</title><rect x="98.1441%" y="917" width="0.7048%" height="15" fill="rgb(228,213,43)" fg:x="471394" fg:w="3385"/><text x="98.3941%" y="927.50"></text></g><g><title>exit_to_user_mode_loop (50 samples, 0.01%)</title><rect x="98.8497%" y="885" width="0.0104%" height="15" fill="rgb(219,163,21)" fg:x="474783" fg:w="50"/><text x="99.0997%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (79 samples, 0.02%)</title><rect x="98.8489%" y="901" width="0.0164%" height="15" fill="rgb(234,86,24)" fg:x="474779" fg:w="79"/><text x="99.0989%" y="911.50"></text></g><g><title>ret_from_fork (3,477 samples, 0.72%)</title><rect x="98.1431%" y="933" width="0.7239%" height="15" fill="rgb(225,10,24)" fg:x="471389" fg:w="3477"/><text x="98.3931%" y="943.50"></text></g><g><title>syscall_exit_to_user_mode (87 samples, 0.02%)</title><rect x="98.8489%" y="917" width="0.0181%" height="15" fill="rgb(218,109,7)" fg:x="474779" fg:w="87"/><text x="99.0989%" y="927.50"></text></g><g><title>sync_regs (407 samples, 0.08%)</title><rect x="98.8684%" y="933" width="0.0847%" height="15" fill="rgb(210,20,26)" fg:x="474873" fg:w="407"/><text x="99.1184%" y="943.50"></text></g><g><title>syscall_return_via_sysret (1,124 samples, 0.23%)</title><rect x="98.9532%" y="933" width="0.2340%" height="15" fill="rgb(216,18,1)" fg:x="475280" fg:w="1124"/><text x="99.2032%" y="943.50"></text></g><g><title>[zig] (224,546 samples, 46.75%)</title><rect x="52.4372%" y="949" width="46.7504%" height="15" fill="rgb(206,163,23)" fg:x="251860" fg:w="224546"/><text x="52.6872%" y="959.50">[zig]</text></g><g><title>asm_exc_page_fault (1,045 samples, 0.22%)</title><rect x="99.1899%" y="949" width="0.2176%" height="15" fill="rgb(229,150,31)" fg:x="476417" fg:w="1045"/><text x="99.4399%" y="959.50"></text></g><g><title>tlb_finish_mmu (68 samples, 0.01%)</title><rect x="99.4724%" y="741" width="0.0142%" height="15" fill="rgb(231,10,5)" fg:x="477774" fg:w="68"/><text x="99.7224%" y="751.50"></text></g><g><title>page_remove_file_rmap (56 samples, 0.01%)</title><rect x="99.5295%" y="645" width="0.0117%" height="15" fill="rgb(250,40,50)" fg:x="478048" fg:w="56"/><text x="99.7795%" y="655.50"></text></g><g><title>page_remove_rmap (92 samples, 0.02%)</title><rect x="99.5230%" y="661" width="0.0192%" height="15" fill="rgb(217,119,7)" fg:x="478017" fg:w="92"/><text x="99.7730%" y="671.50"></text></g><g><title>mmput (364 samples, 0.08%)</title><rect x="99.4683%" y="773" width="0.0758%" height="15" fill="rgb(245,214,40)" fg:x="477754" fg:w="364"/><text x="99.7183%" y="783.50"></text></g><g><title>exit_mmap (364 samples, 0.08%)</title><rect x="99.4683%" y="757" width="0.0758%" height="15" fill="rgb(216,187,1)" fg:x="477754" fg:w="364"/><text x="99.7183%" y="767.50"></text></g><g><title>unmap_vmas (276 samples, 0.06%)</title><rect x="99.4866%" y="741" width="0.0575%" height="15" fill="rgb(237,146,21)" fg:x="477842" fg:w="276"/><text x="99.7366%" y="751.50"></text></g><g><title>unmap_single_vma (275 samples, 0.06%)</title><rect x="99.4868%" y="725" width="0.0573%" height="15" fill="rgb(210,174,47)" fg:x="477843" fg:w="275"/><text x="99.7368%" y="735.50"></text></g><g><title>unmap_page_range (274 samples, 0.06%)</title><rect x="99.4870%" y="709" width="0.0570%" height="15" fill="rgb(218,111,39)" fg:x="477844" fg:w="274"/><text x="99.7370%" y="719.50"></text></g><g><title>zap_pmd_range.isra.0 (273 samples, 0.06%)</title><rect x="99.4872%" y="693" width="0.0568%" height="15" fill="rgb(224,95,19)" fg:x="477845" fg:w="273"/><text x="99.7372%" y="703.50"></text></g><g><title>zap_pte_range (251 samples, 0.05%)</title><rect x="99.4918%" y="677" width="0.0523%" height="15" fill="rgb(234,15,38)" fg:x="477867" fg:w="251"/><text x="99.7418%" y="687.50"></text></g><g><title>exec_mmap (366 samples, 0.08%)</title><rect x="99.4683%" y="789" width="0.0762%" height="15" fill="rgb(246,56,12)" fg:x="477754" fg:w="366"/><text x="99.7183%" y="799.50"></text></g><g><title>begin_new_exec (371 samples, 0.08%)</title><rect x="99.4678%" y="805" width="0.0772%" height="15" fill="rgb(247,16,17)" fg:x="477752" fg:w="371"/><text x="99.7178%" y="815.50"></text></g><g><title>__x64_sys_execve (431 samples, 0.09%)</title><rect x="99.4656%" y="917" width="0.0897%" height="15" fill="rgb(215,151,11)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (431 samples, 0.09%)</title><rect x="99.4656%" y="901" width="0.0897%" height="15" fill="rgb(225,16,24)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="911.50"></text></g><g><title>bprm_execve (431 samples, 0.09%)</title><rect x="99.4656%" y="885" width="0.0897%" height="15" fill="rgb(217,117,5)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="895.50"></text></g><g><title>bprm_execve.part.0 (431 samples, 0.09%)</title><rect x="99.4656%" y="869" width="0.0897%" height="15" fill="rgb(246,187,53)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="879.50"></text></g><g><title>exec_binprm (431 samples, 0.09%)</title><rect x="99.4656%" y="853" width="0.0897%" height="15" fill="rgb(241,71,40)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="863.50"></text></g><g><title>search_binary_handler (431 samples, 0.09%)</title><rect x="99.4656%" y="837" width="0.0897%" height="15" fill="rgb(231,67,39)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="847.50"></text></g><g><title>load_elf_binary (431 samples, 0.09%)</title><rect x="99.4656%" y="821" width="0.0897%" height="15" fill="rgb(222,120,24)" fg:x="477741" fg:w="431"/><text x="99.7156%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="99.5580%" y="789" width="0.0102%" height="15" fill="rgb(248,3,3)" fg:x="478185" fg:w="49"/><text x="99.8080%" y="799.50"></text></g><g><title>x86_pmu_enable (49 samples, 0.01%)</title><rect x="99.5580%" y="773" width="0.0102%" height="15" fill="rgb(228,218,5)" fg:x="478185" fg:w="49"/><text x="99.8080%" y="783.50"></text></g><g><title>intel_pmu_enable_all (49 samples, 0.01%)</title><rect x="99.5580%" y="757" width="0.0102%" height="15" fill="rgb(212,202,43)" fg:x="478185" fg:w="49"/><text x="99.8080%" y="767.50"></text></g><g><title>native_write_msr (49 samples, 0.01%)</title><rect x="99.5580%" y="741" width="0.0102%" height="15" fill="rgb(235,183,2)" fg:x="478185" fg:w="49"/><text x="99.8080%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (56 samples, 0.01%)</title><rect x="99.5572%" y="805" width="0.0117%" height="15" fill="rgb(230,165,10)" fg:x="478181" fg:w="56"/><text x="99.8072%" y="815.50"></text></g><g><title>__cond_resched (57 samples, 0.01%)</title><rect x="99.5572%" y="837" width="0.0119%" height="15" fill="rgb(219,54,40)" fg:x="478181" fg:w="57"/><text x="99.8072%" y="847.50"></text></g><g><title>__schedule (57 samples, 0.01%)</title><rect x="99.5572%" y="821" width="0.0119%" height="15" fill="rgb(244,73,9)" fg:x="478181" fg:w="57"/><text x="99.8072%" y="831.50"></text></g><g><title>mmap_read_lock (73 samples, 0.02%)</title><rect x="99.5572%" y="869" width="0.0152%" height="15" fill="rgb(212,32,45)" fg:x="478181" fg:w="73"/><text x="99.8072%" y="879.50"></text></g><g><title>down_read (73 samples, 0.02%)</title><rect x="99.5572%" y="853" width="0.0152%" height="15" fill="rgb(205,58,31)" fg:x="478181" fg:w="73"/><text x="99.8072%" y="863.50"></text></g><g><title>exit_mmap (67 samples, 0.01%)</title><rect x="99.5744%" y="853" width="0.0139%" height="15" fill="rgb(250,120,43)" fg:x="478264" fg:w="67"/><text x="99.8244%" y="863.50"></text></g><g><title>unmap_vmas (50 samples, 0.01%)</title><rect x="99.5780%" y="837" width="0.0104%" height="15" fill="rgb(235,13,10)" fg:x="478281" fg:w="50"/><text x="99.8280%" y="847.50"></text></g><g><title>unmap_single_vma (50 samples, 0.01%)</title><rect x="99.5780%" y="821" width="0.0104%" height="15" fill="rgb(232,219,31)" fg:x="478281" fg:w="50"/><text x="99.8280%" y="831.50"></text></g><g><title>unmap_page_range (50 samples, 0.01%)</title><rect x="99.5780%" y="805" width="0.0104%" height="15" fill="rgb(218,157,51)" fg:x="478281" fg:w="50"/><text x="99.8280%" y="815.50"></text></g><g><title>zap_pmd_range.isra.0 (50 samples, 0.01%)</title><rect x="99.5780%" y="789" width="0.0104%" height="15" fill="rgb(211,91,52)" fg:x="478281" fg:w="50"/><text x="99.8280%" y="799.50"></text></g><g><title>zap_pte_range (50 samples, 0.01%)</title><rect x="99.5780%" y="773" width="0.0104%" height="15" fill="rgb(240,173,1)" fg:x="478281" fg:w="50"/><text x="99.8280%" y="783.50"></text></g><g><title>exit_mm (152 samples, 0.03%)</title><rect x="99.5570%" y="885" width="0.0316%" height="15" fill="rgb(248,20,47)" fg:x="478180" fg:w="152"/><text x="99.8070%" y="895.50"></text></g><g><title>mmput (76 samples, 0.02%)</title><rect x="99.5728%" y="869" width="0.0158%" height="15" fill="rgb(217,221,40)" fg:x="478256" fg:w="76"/><text x="99.8228%" y="879.50"></text></g><g><title>__x64_sys_exit (162 samples, 0.03%)</title><rect x="99.5553%" y="917" width="0.0337%" height="15" fill="rgb(226,149,51)" fg:x="478172" fg:w="162"/><text x="99.8053%" y="927.50"></text></g><g><title>do_exit (162 samples, 0.03%)</title><rect x="99.5553%" y="901" width="0.0337%" height="15" fill="rgb(252,193,7)" fg:x="478172" fg:w="162"/><text x="99.8053%" y="911.50"></text></g><g><title>free_pages_and_swap_cache (95 samples, 0.02%)</title><rect x="99.5975%" y="805" width="0.0198%" height="15" fill="rgb(205,123,0)" fg:x="478375" fg:w="95"/><text x="99.8475%" y="815.50"></text></g><g><title>release_pages (93 samples, 0.02%)</title><rect x="99.5980%" y="789" width="0.0194%" height="15" fill="rgb(233,173,25)" fg:x="478377" fg:w="93"/><text x="99.8480%" y="799.50"></text></g><g><title>tlb_finish_mmu (133 samples, 0.03%)</title><rect x="99.5973%" y="821" width="0.0277%" height="15" fill="rgb(216,63,32)" fg:x="478374" fg:w="133"/><text x="99.8473%" y="831.50"></text></g><g><title>page_remove_file_rmap (113 samples, 0.02%)</title><rect x="99.7077%" y="725" width="0.0235%" height="15" fill="rgb(209,56,45)" fg:x="478904" fg:w="113"/><text x="99.9577%" y="735.50"></text></g><g><title>page_remove_rmap (194 samples, 0.04%)</title><rect x="99.6971%" y="741" width="0.0404%" height="15" fill="rgb(226,111,49)" fg:x="478853" fg:w="194"/><text x="99.9471%" y="751.50"></text></g><g><title>tlb_flush_mmu (50 samples, 0.01%)</title><rect x="99.7375%" y="741" width="0.0104%" height="15" fill="rgb(244,181,21)" fg:x="479047" fg:w="50"/><text x="99.9875%" y="751.50"></text></g><g><title>exit_mm (780 samples, 0.16%)</title><rect x="99.5901%" y="869" width="0.1624%" height="15" fill="rgb(222,126,15)" fg:x="478339" fg:w="780"/><text x="99.8401%" y="879.50"></text></g><g><title>mmput (761 samples, 0.16%)</title><rect x="99.5940%" y="853" width="0.1584%" height="15" fill="rgb(222,95,17)" fg:x="478358" fg:w="761"/><text x="99.8440%" y="863.50"></text></g><g><title>exit_mmap (759 samples, 0.16%)</title><rect x="99.5944%" y="837" width="0.1580%" height="15" fill="rgb(254,46,5)" fg:x="478360" fg:w="759"/><text x="99.8444%" y="847.50"></text></g><g><title>unmap_vmas (612 samples, 0.13%)</title><rect x="99.6250%" y="821" width="0.1274%" height="15" fill="rgb(236,216,35)" fg:x="478507" fg:w="612"/><text x="99.8750%" y="831.50"></text></g><g><title>unmap_single_vma (611 samples, 0.13%)</title><rect x="99.6252%" y="805" width="0.1272%" height="15" fill="rgb(217,187,26)" fg:x="478508" fg:w="611"/><text x="99.8752%" y="815.50"></text></g><g><title>unmap_page_range (611 samples, 0.13%)</title><rect x="99.6252%" y="789" width="0.1272%" height="15" fill="rgb(207,192,25)" fg:x="478508" fg:w="611"/><text x="99.8752%" y="799.50"></text></g><g><title>zap_pmd_range.isra.0 (610 samples, 0.13%)</title><rect x="99.6254%" y="773" width="0.1270%" height="15" fill="rgb(253,135,27)" fg:x="478509" fg:w="610"/><text x="99.8754%" y="783.50"></text></g><g><title>zap_pte_range (592 samples, 0.12%)</title><rect x="99.6292%" y="757" width="0.1233%" height="15" fill="rgb(211,122,29)" fg:x="478527" fg:w="592"/><text x="99.8792%" y="767.50"></text></g><g><title>__x64_sys_exit_group (788 samples, 0.16%)</title><rect x="99.5890%" y="917" width="0.1641%" height="15" fill="rgb(233,162,40)" fg:x="478334" fg:w="788"/><text x="99.8390%" y="927.50"></text></g><g><title>do_group_exit (788 samples, 0.16%)</title><rect x="99.5890%" y="901" width="0.1641%" height="15" fill="rgb(222,184,47)" fg:x="478334" fg:w="788"/><text x="99.8390%" y="911.50"></text></g><g><title>do_exit (788 samples, 0.16%)</title><rect x="99.5890%" y="885" width="0.1641%" height="15" fill="rgb(249,99,23)" fg:x="478334" fg:w="788"/><text x="99.8390%" y="895.50"></text></g><g><title>mm_update_next_owner (55 samples, 0.01%)</title><rect x="99.7579%" y="789" width="0.0115%" height="15" fill="rgb(214,60,12)" fg:x="479145" fg:w="55"/><text x="100.0079%" y="799.50"></text></g><g><title>tlb_finish_mmu (78 samples, 0.02%)</title><rect x="99.7733%" y="757" width="0.0162%" height="15" fill="rgb(250,229,36)" fg:x="479219" fg:w="78"/><text x="100.0233%" y="767.50"></text></g><g><title>page_remove_rmap (99 samples, 0.02%)</title><rect x="99.8353%" y="677" width="0.0206%" height="15" fill="rgb(232,195,10)" fg:x="479517" fg:w="99"/><text x="100.0853%" y="687.50"></text></g><g><title>unmap_vmas (335 samples, 0.07%)</title><rect x="99.7895%" y="757" width="0.0697%" height="15" fill="rgb(205,213,31)" fg:x="479297" fg:w="335"/><text x="100.0395%" y="767.50"></text></g><g><title>unmap_single_vma (333 samples, 0.07%)</title><rect x="99.7899%" y="741" width="0.0693%" height="15" fill="rgb(237,43,8)" fg:x="479299" fg:w="333"/><text x="100.0399%" y="751.50"></text></g><g><title>unmap_page_range (333 samples, 0.07%)</title><rect x="99.7899%" y="725" width="0.0693%" height="15" fill="rgb(216,208,3)" fg:x="479299" fg:w="333"/><text x="100.0399%" y="735.50"></text></g><g><title>zap_pmd_range.isra.0 (330 samples, 0.07%)</title><rect x="99.7906%" y="709" width="0.0687%" height="15" fill="rgb(228,179,44)" fg:x="479302" fg:w="330"/><text x="100.0406%" y="719.50"></text></g><g><title>zap_pte_range (316 samples, 0.07%)</title><rect x="99.7935%" y="693" width="0.0658%" height="15" fill="rgb(230,192,27)" fg:x="479316" fg:w="316"/><text x="100.0435%" y="703.50"></text></g><g><title>exit_mmap (433 samples, 0.09%)</title><rect x="99.7693%" y="773" width="0.0902%" height="15" fill="rgb(251,30,38)" fg:x="479200" fg:w="433"/><text x="100.0193%" y="783.50"></text></g><g><title>mmput (434 samples, 0.09%)</title><rect x="99.7693%" y="789" width="0.0904%" height="15" fill="rgb(246,55,52)" fg:x="479200" fg:w="434"/><text x="100.0193%" y="799.50"></text></g><g><title>exit_mm (491 samples, 0.10%)</title><rect x="99.7579%" y="805" width="0.1022%" height="15" fill="rgb(249,79,26)" fg:x="479145" fg:w="491"/><text x="100.0079%" y="815.50"></text></g><g><title>arch_do_signal_or_restart (536 samples, 0.11%)</title><rect x="99.7539%" y="869" width="0.1116%" height="15" fill="rgb(220,202,16)" fg:x="479126" fg:w="536"/><text x="100.0039%" y="879.50"></text></g><g><title>get_signal (536 samples, 0.11%)</title><rect x="99.7539%" y="853" width="0.1116%" height="15" fill="rgb(250,170,23)" fg:x="479126" fg:w="536"/><text x="100.0039%" y="863.50"></text></g><g><title>do_group_exit (536 samples, 0.11%)</title><rect x="99.7539%" y="837" width="0.1116%" height="15" fill="rgb(230,7,37)" fg:x="479126" fg:w="536"/><text x="100.0039%" y="847.50"></text></g><g><title>do_exit (536 samples, 0.11%)</title><rect x="99.7539%" y="821" width="0.1116%" height="15" fill="rgb(213,71,1)" fg:x="479126" fg:w="536"/><text x="100.0039%" y="831.50"></text></g><g><title>syscall_exit_to_user_mode (538 samples, 0.11%)</title><rect x="99.7539%" y="917" width="0.1120%" height="15" fill="rgb(227,87,39)" fg:x="479126" fg:w="538"/><text x="100.0039%" y="927.50"></text></g><g><title>exit_to_user_mode_prepare (538 samples, 0.11%)</title><rect x="99.7539%" y="901" width="0.1120%" height="15" fill="rgb(210,41,29)" fg:x="479126" fg:w="538"/><text x="100.0039%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (538 samples, 0.11%)</title><rect x="99.7539%" y="885" width="0.1120%" height="15" fill="rgb(206,191,31)" fg:x="479126" fg:w="538"/><text x="100.0039%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,178 samples, 0.45%)</title><rect x="99.4131%" y="949" width="0.4535%" height="15" fill="rgb(247,75,54)" fg:x="477489" fg:w="2178"/><text x="99.6631%" y="959.50"></text></g><g><title>do_syscall_64 (1,926 samples, 0.40%)</title><rect x="99.4656%" y="933" width="0.4010%" height="15" fill="rgb(208,54,50)" fg:x="477741" fg:w="1926"/><text x="99.7156%" y="943.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (432 samples, 0.09%)</title><rect x="99.8665%" y="949" width="0.0899%" height="15" fill="rgb(214,90,37)" fg:x="479667" fg:w="432"/><text x="100.1165%" y="959.50"></text></g><g><title>all (480,308 samples, 100%)</title><rect x="0.0000%" y="981" width="100.0000%" height="15" fill="rgb(220,132,6)" fg:x="0" fg:w="480308"/><text x="0.2500%" y="991.50"></text></g><g><title>zig (228,733 samples, 47.62%)</title><rect x="52.3778%" y="965" width="47.6222%" height="15" fill="rgb(213,167,7)" fg:x="251575" fg:w="228733"/><text x="52.6278%" y="975.50">zig</text></g><g><title>syscall_return_via_sysret (193 samples, 0.04%)</title><rect x="99.9598%" y="949" width="0.0402%" height="15" fill="rgb(243,36,27)" fg:x="480115" fg:w="193"/><text x="100.2098%" y="959.50"></text></g></svg></svg>