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

414 lines
1.1 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="643537"><g><title>_dl_update_slotinfo (146 samples, 0.02%)</title><rect x="0.2488%" y="933" width="0.0227%" height="15" fill="rgb(227,0,7)" fg:x="1601" fg:w="146"/><text x="0.4988%" y="943.50"></text></g><g><title>[anon] (1,625 samples, 0.25%)</title><rect x="0.0668%" y="949" width="0.2525%" height="15" fill="rgb(217,0,24)" fg:x="430" fg:w="1625"/><text x="0.3168%" y="959.50"></text></g><g><title>[perf-733733.map] (212 samples, 0.03%)</title><rect x="0.3198%" y="949" width="0.0329%" height="15" fill="rgb(221,193,54)" fg:x="2058" fg:w="212"/><text x="0.5698%" y="959.50"></text></g><g><title>[unknown] (119 samples, 0.02%)</title><rect x="0.3529%" y="949" width="0.0185%" height="15" fill="rgb(248,212,6)" fg:x="2271" fg:w="119"/><text x="0.6029%" y="959.50"></text></g><g><title>CompileBroker::post_compile (77 samples, 0.01%)</title><rect x="0.3821%" y="837" width="0.0120%" height="15" fill="rgb(208,68,35)" fg:x="2459" fg:w="77"/><text x="0.6321%" y="847.50"></text></g><g><title>StringEventLog::log (76 samples, 0.01%)</title><rect x="0.3823%" y="821" width="0.0118%" height="15" fill="rgb(232,128,0)" fg:x="2460" fg:w="76"/><text x="0.6323%" y="831.50"></text></g><g><title>CompileTask::print (119 samples, 0.02%)</title><rect x="0.3981%" y="837" width="0.0185%" height="15" fill="rgb(207,160,47)" fg:x="2562" fg:w="119"/><text x="0.6481%" y="847.50"></text></g><g><title>BlockBegin::iterate_preorder (101 samples, 0.02%)</title><rect x="0.4390%" y="693" width="0.0157%" height="15" fill="rgb(228,23,34)" fg:x="2825" fg:w="101"/><text x="0.6890%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (153 samples, 0.02%)</title><rect x="0.4384%" y="709" width="0.0238%" height="15" fill="rgb(218,30,26)" fg:x="2821" fg:w="153"/><text x="0.6884%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (232 samples, 0.04%)</title><rect x="0.4374%" y="725" width="0.0361%" height="15" fill="rgb(220,122,19)" fg:x="2815" fg:w="232"/><text x="0.6874%" y="735.50"></text></g><g><title>SubstitutionResolver::block_do (73 samples, 0.01%)</title><rect x="0.4621%" y="709" width="0.0113%" height="15" fill="rgb(250,228,42)" fg:x="2974" fg:w="73"/><text x="0.7121%" y="719.50"></text></g><g><title>BlockBegin::iterate_preorder (233 samples, 0.04%)</title><rect x="0.4374%" y="741" width="0.0362%" height="15" fill="rgb(240,193,28)" fg:x="2815" fg:w="233"/><text x="0.6874%" y="751.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (445 samples, 0.07%)</title><rect x="0.4259%" y="757" width="0.0691%" height="15" fill="rgb(216,20,37)" fg:x="2741" fg:w="445"/><text x="0.6759%" y="767.50"></text></g><g><title>BlockBegin::iterate_preorder (81 samples, 0.01%)</title><rect x="0.5002%" y="693" width="0.0126%" height="15" fill="rgb(206,188,39)" fg:x="3219" fg:w="81"/><text x="0.7502%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (119 samples, 0.02%)</title><rect x="0.4966%" y="725" width="0.0185%" height="15" fill="rgb(217,207,13)" fg:x="3196" fg:w="119"/><text x="0.7466%" y="735.50"></text></g><g><title>BlockBegin::iterate_preorder (115 samples, 0.02%)</title><rect x="0.4973%" y="709" width="0.0179%" height="15" fill="rgb(231,73,38)" fg:x="3200" fg:w="115"/><text x="0.7473%" y="719.50"></text></g><g><title>MethodLiveness::init_basic_blocks (74 samples, 0.01%)</title><rect x="0.5331%" y="661" width="0.0115%" height="15" fill="rgb(225,20,46)" fg:x="3431" fg:w="74"/><text x="0.7831%" y="671.50"></text></g><g><title>BlockListBuilder::set_leaders (160 samples, 0.02%)</title><rect x="0.5199%" y="709" width="0.0249%" height="15" fill="rgb(210,31,41)" fg:x="3346" fg:w="160"/><text x="0.7699%" y="719.50"></text></g><g><title>ciMethod::bci_block_start (111 samples, 0.02%)</title><rect x="0.5276%" y="693" width="0.0172%" height="15" fill="rgb(221,200,47)" fg:x="3395" fg:w="111"/><text x="0.7776%" y="703.50"></text></g><g><title>MethodLiveness::compute_liveness (110 samples, 0.02%)</title><rect x="0.5277%" y="677" width="0.0171%" height="15" fill="rgb(226,26,5)" fg:x="3396" fg:w="110"/><text x="0.7777%" y="687.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (187 samples, 0.03%)</title><rect x="0.5170%" y="725" width="0.0291%" height="15" fill="rgb(249,33,26)" fg:x="3327" fg:w="187"/><text x="0.7670%" y="735.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (70 samples, 0.01%)</title><rect x="0.5910%" y="613" width="0.0109%" height="15" fill="rgb(235,183,28)" fg:x="3803" fg:w="70"/><text x="0.8410%" y="623.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (93 samples, 0.01%)</title><rect x="0.5882%" y="629" width="0.0145%" height="15" fill="rgb(221,5,38)" fg:x="3785" fg:w="93"/><text x="0.8382%" y="639.50"></text></g><g><title>ciField::ciField (129 samples, 0.02%)</title><rect x="0.5847%" y="645" width="0.0200%" height="15" fill="rgb(247,18,42)" fg:x="3763" fg:w="129"/><text x="0.8347%" y="655.50"></text></g><g><title>ciEnv::get_field_by_index (139 samples, 0.02%)</title><rect x="0.5838%" y="661" width="0.0216%" height="15" fill="rgb(241,131,45)" fg:x="3757" fg:w="139"/><text x="0.8338%" y="671.50"></text></g><g><title>ciBytecodeStream::get_field (163 samples, 0.03%)</title><rect x="0.5829%" y="677" width="0.0253%" height="15" fill="rgb(249,31,29)" fg:x="3751" fg:w="163"/><text x="0.8329%" y="687.50"></text></g><g><title>GraphBuilder::access_field (217 samples, 0.03%)</title><rect x="0.5760%" y="693" width="0.0337%" height="15" fill="rgb(225,111,53)" fg:x="3707" fg:w="217"/><text x="0.8260%" y="703.50"></text></g><g><title>BlockBegin::try_merge (67 samples, 0.01%)</title><rect x="0.6663%" y="613" width="0.0104%" height="15" fill="rgb(238,160,17)" fg:x="4288" fg:w="67"/><text x="0.9163%" y="623.50"></text></g><g><title>ciEnv::get_field_by_index (109 samples, 0.02%)</title><rect x="0.6856%" y="581" width="0.0169%" height="15" fill="rgb(214,148,48)" fg:x="4412" fg:w="109"/><text x="0.9356%" y="591.50"></text></g><g><title>ciField::ciField (102 samples, 0.02%)</title><rect x="0.6867%" y="565" width="0.0158%" height="15" fill="rgb(232,36,49)" fg:x="4419" fg:w="102"/><text x="0.9367%" y="575.50"></text></g><g><title>ciBytecodeStream::get_field (137 samples, 0.02%)</title><rect x="0.6856%" y="597" width="0.0213%" height="15" fill="rgb(209,103,24)" fg:x="4412" fg:w="137"/><text x="0.9356%" y="607.50"></text></g><g><title>GraphBuilder::access_field (197 samples, 0.03%)</title><rect x="0.6780%" y="613" width="0.0306%" height="15" fill="rgb(229,88,8)" fg:x="4363" fg:w="197"/><text x="0.9280%" y="623.50"></text></g><g><title>ciBytecodeStream::get_field (66 samples, 0.01%)</title><rect x="0.7418%" y="517" width="0.0103%" height="15" fill="rgb(213,181,19)" fg:x="4774" fg:w="66"/><text x="0.9918%" y="527.50"></text></g><g><title>GraphBuilder::access_field (92 samples, 0.01%)</title><rect x="0.7394%" y="533" width="0.0143%" height="15" fill="rgb(254,191,54)" fg:x="4758" fg:w="92"/><text x="0.9894%" y="543.50"></text></g><g><title>GraphBuilder::invoke (84 samples, 0.01%)</title><rect x="0.7906%" y="373" width="0.0131%" height="15" fill="rgb(241,83,37)" fg:x="5088" fg:w="84"/><text x="1.0406%" y="383.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (129 samples, 0.02%)</title><rect x="0.7857%" y="405" width="0.0200%" height="15" fill="rgb(233,36,39)" fg:x="5056" fg:w="129"/><text x="1.0357%" y="415.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (125 samples, 0.02%)</title><rect x="0.7863%" y="389" width="0.0194%" height="15" fill="rgb(226,3,54)" fg:x="5060" fg:w="125"/><text x="1.0363%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (193 samples, 0.03%)</title><rect x="0.7841%" y="421" width="0.0300%" height="15" fill="rgb(245,192,40)" fg:x="5046" fg:w="193"/><text x="1.0341%" y="431.50"></text></g><g><title>GraphBuilder::try_inline (205 samples, 0.03%)</title><rect x="0.7836%" y="437" width="0.0319%" height="15" fill="rgb(238,167,29)" fg:x="5043" fg:w="205"/><text x="1.0336%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (66 samples, 0.01%)</title><rect x="0.8167%" y="437" width="0.0103%" height="15" fill="rgb(232,182,51)" fg:x="5256" fg:w="66"/><text x="1.0667%" y="447.50"></text></g><g><title>GraphBuilder::invoke (302 samples, 0.05%)</title><rect x="0.7822%" y="453" width="0.0469%" height="15" fill="rgb(231,60,39)" fg:x="5034" fg:w="302"/><text x="1.0322%" y="463.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (433 samples, 0.07%)</title><rect x="0.7662%" y="485" width="0.0673%" height="15" fill="rgb(208,69,12)" fg:x="4931" fg:w="433"/><text x="1.0162%" y="495.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (428 samples, 0.07%)</title><rect x="0.7670%" y="469" width="0.0665%" height="15" fill="rgb(235,93,37)" fg:x="4936" fg:w="428"/><text x="1.0170%" y="479.50"></text></g><g><title>GraphBuilder::try_inline_full (558 samples, 0.09%)</title><rect x="0.7633%" y="501" width="0.0867%" height="15" fill="rgb(213,116,39)" fg:x="4912" fg:w="558"/><text x="1.0133%" y="511.50"></text></g><g><title>GraphBuilder::try_inline (624 samples, 0.10%)</title><rect x="0.7619%" y="517" width="0.0970%" height="15" fill="rgb(222,207,29)" fg:x="4903" fg:w="624"/><text x="1.0119%" y="527.50"></text></g><g><title>ciBytecodeStream::get_method (103 samples, 0.02%)</title><rect x="0.8621%" y="517" width="0.0160%" height="15" fill="rgb(206,96,30)" fg:x="5548" fg:w="103"/><text x="1.1121%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (94 samples, 0.01%)</title><rect x="0.8635%" y="501" width="0.0146%" height="15" fill="rgb(218,138,4)" fg:x="5557" fg:w="94"/><text x="1.1135%" y="511.50"></text></g><g><title>GraphBuilder::invoke (799 samples, 0.12%)</title><rect x="0.7582%" y="533" width="0.1242%" height="15" fill="rgb(250,191,14)" fg:x="4879" fg:w="799"/><text x="1.0082%" y="543.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,053 samples, 0.16%)</title><rect x="0.7285%" y="565" width="0.1636%" height="15" fill="rgb(239,60,40)" fg:x="4688" fg:w="1053"/><text x="0.9785%" y="575.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,039 samples, 0.16%)</title><rect x="0.7306%" y="549" width="0.1615%" height="15" fill="rgb(206,27,48)" fg:x="4702" fg:w="1039"/><text x="0.9806%" y="559.50"></text></g><g><title>GraphBuilder::push_scope (80 samples, 0.01%)</title><rect x="0.8924%" y="565" width="0.0124%" height="15" fill="rgb(225,35,8)" fg:x="5743" fg:w="80"/><text x="1.1424%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (82 samples, 0.01%)</title><rect x="0.9064%" y="565" width="0.0127%" height="15" fill="rgb(250,213,24)" fg:x="5833" fg:w="82"/><text x="1.1564%" y="575.50"></text></g><g><title>ciMethod::ensure_method_data (74 samples, 0.01%)</title><rect x="0.9076%" y="549" width="0.0115%" height="15" fill="rgb(247,123,22)" fg:x="5841" fg:w="74"/><text x="1.1576%" y="559.50"></text></g><g><title>GraphBuilder::try_inline_full (1,273 samples, 0.20%)</title><rect x="0.7226%" y="581" width="0.1978%" height="15" fill="rgb(231,138,38)" fg:x="4650" fg:w="1273"/><text x="0.9726%" y="591.50"></text></g><g><title>GraphBuilder::try_inline (1,342 samples, 0.21%)</title><rect x="0.7207%" y="597" width="0.2085%" height="15" fill="rgb(231,145,46)" fg:x="4638" fg:w="1342"/><text x="0.9707%" y="607.50"></text></g><g><title>ciMethod::ciMethod (102 samples, 0.02%)</title><rect x="0.9490%" y="533" width="0.0158%" height="15" fill="rgb(251,118,11)" fg:x="6107" fg:w="102"/><text x="1.1990%" y="543.50"></text></g><g><title>ciSignature::ciSignature (88 samples, 0.01%)</title><rect x="0.9511%" y="517" width="0.0137%" height="15" fill="rgb(217,147,25)" fg:x="6121" fg:w="88"/><text x="1.2011%" y="527.50"></text></g><g><title>ciObjectFactory::get_metadata (120 samples, 0.02%)</title><rect x="0.9466%" y="565" width="0.0186%" height="15" fill="rgb(247,81,37)" fg:x="6092" fg:w="120"/><text x="1.1966%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (110 samples, 0.02%)</title><rect x="0.9482%" y="549" width="0.0171%" height="15" fill="rgb(209,12,38)" fg:x="6102" fg:w="110"/><text x="1.1982%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (189 samples, 0.03%)</title><rect x="0.9367%" y="581" width="0.0294%" height="15" fill="rgb(227,1,9)" fg:x="6028" fg:w="189"/><text x="1.1867%" y="591.50"></text></g><g><title>ciBytecodeStream::get_method (204 samples, 0.03%)</title><rect x="0.9345%" y="597" width="0.0317%" height="15" fill="rgb(248,47,43)" fg:x="6014" fg:w="204"/><text x="1.1845%" y="607.50"></text></g><g><title>GraphBuilder::invoke (1,664 samples, 0.26%)</title><rect x="0.7131%" y="613" width="0.2586%" height="15" fill="rgb(221,10,30)" fg:x="4589" fg:w="1664"/><text x="0.9631%" y="623.50"></text></g><g><title>GraphBuilder::method_return (71 samples, 0.01%)</title><rect x="0.9731%" y="613" width="0.0110%" height="15" fill="rgb(210,229,1)" fg:x="6262" fg:w="71"/><text x="1.2231%" y="623.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (2,124 samples, 0.33%)</title><rect x="0.6576%" y="645" width="0.3301%" height="15" fill="rgb(222,148,37)" fg:x="4232" fg:w="2124"/><text x="0.9076%" y="655.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (2,112 samples, 0.33%)</title><rect x="0.6595%" y="629" width="0.3282%" height="15" fill="rgb(234,67,33)" fg:x="4244" fg:w="2112"/><text x="0.9095%" y="639.50"></text></g><g><title>BlockListBuilder::set_leaders (84 samples, 0.01%)</title><rect x="0.9948%" y="613" width="0.0131%" height="15" fill="rgb(247,98,35)" fg:x="6402" fg:w="84"/><text x="1.2448%" y="623.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (114 samples, 0.02%)</title><rect x="0.9909%" y="629" width="0.0177%" height="15" fill="rgb(247,138,52)" fg:x="6377" fg:w="114"/><text x="1.2409%" y="639.50"></text></g><g><title>GraphBuilder::push_scope (176 samples, 0.03%)</title><rect x="0.9900%" y="645" width="0.0273%" height="15" fill="rgb(213,79,30)" fg:x="6371" fg:w="176"/><text x="1.2400%" y="655.50"></text></g><g><title>ciMethodData::load_data (74 samples, 0.01%)</title><rect x="1.0316%" y="613" width="0.0115%" height="15" fill="rgb(246,177,23)" fg:x="6639" fg:w="74"/><text x="1.2816%" y="623.50"></text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.02%)</title><rect x="1.0225%" y="629" width="0.0242%" height="15" fill="rgb(230,62,27)" fg:x="6580" fg:w="156"/><text x="1.2725%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (170 samples, 0.03%)</title><rect x="1.0205%" y="645" width="0.0264%" height="15" fill="rgb(216,154,8)" fg:x="6567" fg:w="170"/><text x="1.2705%" y="655.50"></text></g><g><title>GraphBuilder::try_inline_full (2,598 samples, 0.40%)</title><rect x="0.6450%" y="661" width="0.4037%" height="15" fill="rgb(244,35,45)" fg:x="4151" fg:w="2598"/><text x="0.8950%" y="671.50"></text></g><g><title>GraphBuilder::try_inline (2,625 samples, 0.41%)</title><rect x="0.6424%" y="677" width="0.4079%" height="15" fill="rgb(251,115,12)" fg:x="4134" fg:w="2625"/><text x="0.8924%" y="687.50"></text></g><g><title>ciEnv::lookup_method (112 samples, 0.02%)</title><rect x="1.0703%" y="645" width="0.0174%" height="15" fill="rgb(240,54,50)" fg:x="6888" fg:w="112"/><text x="1.3203%" y="655.50"></text></g><g><title>ciSignature::ciSignature (148 samples, 0.02%)</title><rect x="1.1014%" y="597" width="0.0230%" height="15" fill="rgb(233,84,52)" fg:x="7088" fg:w="148"/><text x="1.3514%" y="607.50"></text></g><g><title>ciMethod::ciMethod (192 samples, 0.03%)</title><rect x="1.0947%" y="613" width="0.0298%" height="15" fill="rgb(207,117,47)" fg:x="7045" fg:w="192"/><text x="1.3447%" y="623.50"></text></g><g><title>ciObjectFactory::get_metadata (244 samples, 0.04%)</title><rect x="1.0877%" y="645" width="0.0379%" height="15" fill="rgb(249,43,39)" fg:x="7000" fg:w="244"/><text x="1.3377%" y="655.50"></text></g><g><title>ciObjectFactory::create_new_metadata (216 samples, 0.03%)</title><rect x="1.0921%" y="629" width="0.0336%" height="15" fill="rgb(209,38,44)" fg:x="7028" fg:w="216"/><text x="1.3421%" y="639.50"></text></g><g><title>ciBytecodeStream::get_method (439 samples, 0.07%)</title><rect x="1.0595%" y="677" width="0.0682%" height="15" fill="rgb(236,212,23)" fg:x="6818" fg:w="439"/><text x="1.3095%" y="687.50"></text></g><g><title>ciEnv::get_method_by_index_impl (411 samples, 0.06%)</title><rect x="1.0638%" y="661" width="0.0639%" height="15" fill="rgb(242,79,21)" fg:x="6846" fg:w="411"/><text x="1.3138%" y="671.50"></text></g><g><title>GraphBuilder::invoke (3,328 samples, 0.52%)</title><rect x="0.6250%" y="693" width="0.5171%" height="15" fill="rgb(211,96,35)" fg:x="4022" fg:w="3328"/><text x="0.8750%" y="703.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,851 samples, 0.60%)</title><rect x="0.5547%" y="709" width="0.5984%" height="15" fill="rgb(253,215,40)" fg:x="3570" fg:w="3851"/><text x="0.8047%" y="719.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,904 samples, 0.61%)</title><rect x="0.5481%" y="725" width="0.6066%" height="15" fill="rgb(211,81,21)" fg:x="3527" fg:w="3904"/><text x="0.7981%" y="735.50"></text></g><g><title>GraphBuilder::GraphBuilder (4,300 samples, 0.67%)</title><rect x="0.4962%" y="741" width="0.6682%" height="15" fill="rgb(208,190,38)" fg:x="3193" fg:w="4300"/><text x="0.7462%" y="751.50"></text></g><g><title>IR::IR (4,320 samples, 0.67%)</title><rect x="0.4952%" y="757" width="0.6713%" height="15" fill="rgb(235,213,38)" fg:x="3187" fg:w="4320"/><text x="0.7452%" y="767.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (80 samples, 0.01%)</title><rect x="1.1667%" y="741" width="0.0124%" height="15" fill="rgb(237,122,38)" fg:x="7508" fg:w="80"/><text x="1.4167%" y="751.50"></text></g><g><title>IR::compute_code (89 samples, 0.01%)</title><rect x="1.1665%" y="757" width="0.0138%" height="15" fill="rgb(244,218,35)" fg:x="7507" fg:w="89"/><text x="1.4165%" y="767.50"></text></g><g><title>UseCountComputer::block_do (81 samples, 0.01%)</title><rect x="1.1814%" y="725" width="0.0126%" height="15" fill="rgb(240,68,47)" fg:x="7603" fg:w="81"/><text x="1.4314%" y="735.50"></text></g><g><title>BlockList::iterate_backward (84 samples, 0.01%)</title><rect x="1.1811%" y="741" width="0.0131%" height="15" fill="rgb(210,16,53)" fg:x="7601" fg:w="84"/><text x="1.4311%" y="751.50"></text></g><g><title>IR::compute_use_counts (130 samples, 0.02%)</title><rect x="1.1804%" y="757" width="0.0202%" height="15" fill="rgb(235,124,12)" fg:x="7596" fg:w="130"/><text x="1.4304%" y="767.50"></text></g><g><title>NullCheckEliminator::iterate_one (219 samples, 0.03%)</title><rect x="1.2038%" y="725" width="0.0340%" height="15" fill="rgb(224,169,11)" fg:x="7747" fg:w="219"/><text x="1.4538%" y="735.50"></text></g><g><title>IR::eliminate_null_checks (248 samples, 0.04%)</title><rect x="1.2006%" y="757" width="0.0385%" height="15" fill="rgb(250,166,2)" fg:x="7726" fg:w="248"/><text x="1.4506%" y="767.50"></text></g><g><title>Optimizer::eliminate_null_checks (247 samples, 0.04%)</title><rect x="1.2007%" y="741" width="0.0384%" height="15" fill="rgb(242,216,29)" fg:x="7727" fg:w="247"/><text x="1.4507%" y="751.50"></text></g><g><title>IR::optimize_blocks (79 samples, 0.01%)</title><rect x="1.2391%" y="757" width="0.0123%" height="15" fill="rgb(230,116,27)" fg:x="7974" fg:w="79"/><text x="1.4891%" y="767.50"></text></g><g><title>IR::split_critical_edges (66 samples, 0.01%)</title><rect x="1.2514%" y="757" width="0.0103%" height="15" fill="rgb(228,99,48)" fg:x="8053" fg:w="66"/><text x="1.5014%" y="767.50"></text></g><g><title>Compilation::build_hir (5,451 samples, 0.85%)</title><rect x="0.4248%" y="773" width="0.8470%" height="15" fill="rgb(253,11,6)" fg:x="2734" fg:w="5451"/><text x="0.6748%" y="783.50"></text></g><g><title>LIR_Assembler::add_call_info (121 samples, 0.02%)</title><rect x="1.2981%" y="709" width="0.0188%" height="15" fill="rgb(247,143,39)" fg:x="8354" fg:w="121"/><text x="1.5481%" y="719.50"></text></g><g><title>CodeEmitInfo::record_debug_info (121 samples, 0.02%)</title><rect x="1.2981%" y="693" width="0.0188%" height="15" fill="rgb(236,97,10)" fg:x="8354" fg:w="121"/><text x="1.5481%" y="703.50"></text></g><g><title>LIR_Assembler::call (130 samples, 0.02%)</title><rect x="1.2977%" y="725" width="0.0202%" height="15" fill="rgb(233,208,19)" fg:x="8351" fg:w="130"/><text x="1.5477%" y="735.50"></text></g><g><title>LIR_Assembler::emit_call (221 samples, 0.03%)</title><rect x="1.2897%" y="741" width="0.0343%" height="15" fill="rgb(216,164,2)" fg:x="8300" fg:w="221"/><text x="1.5397%" y="751.50"></text></g><g><title>LIR_Assembler::emit_op1 (201 samples, 0.03%)</title><rect x="1.3305%" y="741" width="0.0312%" height="15" fill="rgb(220,129,5)" fg:x="8562" fg:w="201"/><text x="1.5805%" y="751.50"></text></g><g><title>LIR_Assembler::emit_profile_call (70 samples, 0.01%)</title><rect x="1.3653%" y="741" width="0.0109%" height="15" fill="rgb(242,17,10)" fg:x="8786" fg:w="70"/><text x="1.6153%" y="751.50"></text></g><g><title>LIR_Assembler::emit_code (810 samples, 0.13%)</title><rect x="1.2744%" y="757" width="0.1259%" height="15" fill="rgb(242,107,0)" fg:x="8201" fg:w="810"/><text x="1.5244%" y="767.50"></text></g><g><title>CodeEmitInfo::record_debug_info (134 samples, 0.02%)</title><rect x="1.4150%" y="709" width="0.0208%" height="15" fill="rgb(251,28,31)" fg:x="9106" fg:w="134"/><text x="1.6650%" y="719.50"></text></g><g><title>LIR_Assembler::add_call_info (138 samples, 0.02%)</title><rect x="1.4145%" y="725" width="0.0214%" height="15" fill="rgb(233,223,10)" fg:x="9103" fg:w="138"/><text x="1.6645%" y="735.50"></text></g><g><title>CounterOverflowStub::emit_code (166 samples, 0.03%)</title><rect x="1.4134%" y="741" width="0.0258%" height="15" fill="rgb(215,21,27)" fg:x="9096" fg:w="166"/><text x="1.6634%" y="751.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (71 samples, 0.01%)</title><rect x="1.4425%" y="741" width="0.0110%" height="15" fill="rgb(232,23,21)" fg:x="9283" fg:w="71"/><text x="1.6925%" y="751.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (416 samples, 0.06%)</title><rect x="1.4116%" y="757" width="0.0646%" height="15" fill="rgb(244,5,23)" fg:x="9084" fg:w="416"/><text x="1.6616%" y="767.50"></text></g><g><title>Compilation::emit_code_body (1,331 samples, 0.21%)</title><rect x="1.2719%" y="773" width="0.2068%" height="15" fill="rgb(226,81,46)" fg:x="8185" fg:w="1331"/><text x="1.5219%" y="783.50"></text></g><g><title>LIRGenerator::do_Base (120 samples, 0.02%)</title><rect x="1.4928%" y="725" width="0.0186%" height="15" fill="rgb(247,70,30)" fg:x="9607" fg:w="120"/><text x="1.7428%" y="735.50"></text></g><g><title>LIRGenerator::move_to_phi (276 samples, 0.04%)</title><rect x="1.5155%" y="709" width="0.0429%" height="15" fill="rgb(212,68,19)" fg:x="9753" fg:w="276"/><text x="1.7655%" y="719.50"></text></g><g><title>PhiResolverState::reset (191 samples, 0.03%)</title><rect x="1.5287%" y="693" width="0.0297%" height="15" fill="rgb(240,187,13)" fg:x="9838" fg:w="191"/><text x="1.7787%" y="703.50"></text></g><g><title>LIRGenerator::do_Goto (311 samples, 0.05%)</title><rect x="1.5129%" y="725" width="0.0483%" height="15" fill="rgb(223,113,26)" fg:x="9736" fg:w="311"/><text x="1.7629%" y="735.50"></text></g><g><title>LIRGenerator::do_If (78 samples, 0.01%)</title><rect x="1.5612%" y="725" width="0.0121%" height="15" fill="rgb(206,192,2)" fg:x="10047" fg:w="78"/><text x="1.8112%" y="735.50"></text></g><g><title>LIRGenerator::state_for (69 samples, 0.01%)</title><rect x="1.5881%" y="709" width="0.0107%" height="15" fill="rgb(241,108,4)" fg:x="10220" fg:w="69"/><text x="1.8381%" y="719.50"></text></g><g><title>LIRGenerator::do_Invoke (167 samples, 0.03%)</title><rect x="1.5741%" y="725" width="0.0260%" height="15" fill="rgb(247,173,49)" fg:x="10130" fg:w="167"/><text x="1.8241%" y="735.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (125 samples, 0.02%)</title><rect x="1.6221%" y="725" width="0.0194%" height="15" fill="rgb(224,114,35)" fg:x="10439" fg:w="125"/><text x="1.8721%" y="735.50"></text></g><g><title>LIRGenerator::block_do (1,120 samples, 0.17%)</title><rect x="1.4812%" y="741" width="0.1740%" height="15" fill="rgb(245,159,27)" fg:x="9532" fg:w="1120"/><text x="1.7312%" y="751.50"></text></g><g><title>BlockList::iterate_forward (1,131 samples, 0.18%)</title><rect x="1.4803%" y="757" width="0.1757%" height="15" fill="rgb(245,172,44)" fg:x="9526" fg:w="1131"/><text x="1.7303%" y="767.50"></text></g><g><title>IntervalWalker::walk_to (159 samples, 0.02%)</title><rect x="1.6832%" y="709" width="0.0247%" height="15" fill="rgb(236,23,11)" fg:x="10832" fg:w="159"/><text x="1.9332%" y="719.50"></text></g><g><title>LinearScanWalker::find_free_reg (128 samples, 0.02%)</title><rect x="1.7298%" y="677" width="0.0199%" height="15" fill="rgb(205,117,38)" fg:x="11132" fg:w="128"/><text x="1.9798%" y="687.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (186 samples, 0.03%)</title><rect x="1.7550%" y="677" width="0.0289%" height="15" fill="rgb(237,72,25)" fg:x="11294" fg:w="186"/><text x="2.0050%" y="687.50"></text></g><g><title>LinearScanWalker::split_before_usage (85 samples, 0.01%)</title><rect x="1.7839%" y="677" width="0.0132%" height="15" fill="rgb(244,70,9)" fg:x="11480" fg:w="85"/><text x="2.0339%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (556 samples, 0.09%)</title><rect x="1.7119%" y="693" width="0.0864%" height="15" fill="rgb(217,125,39)" fg:x="11017" fg:w="556"/><text x="1.9619%" y="703.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (87 samples, 0.01%)</title><rect x="1.8047%" y="677" width="0.0135%" height="15" fill="rgb(235,36,10)" fg:x="11614" fg:w="87"/><text x="2.0547%" y="687.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (169 samples, 0.03%)</title><rect x="1.7983%" y="693" width="0.0263%" height="15" fill="rgb(251,123,47)" fg:x="11573" fg:w="169"/><text x="2.0483%" y="703.50"></text></g><g><title>IntervalWalker::walk_to (1,066 samples, 0.17%)</title><rect x="1.6731%" y="725" width="0.1656%" height="15" fill="rgb(221,13,13)" fg:x="10767" fg:w="1066"/><text x="1.9231%" y="735.50"></text></g><g><title>LinearScanWalker::activate_current (842 samples, 0.13%)</title><rect x="1.7079%" y="709" width="0.1308%" height="15" fill="rgb(238,131,9)" fg:x="10991" fg:w="842"/><text x="1.9579%" y="719.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (80 samples, 0.01%)</title><rect x="1.8387%" y="725" width="0.0124%" height="15" fill="rgb(211,50,8)" fg:x="11833" fg:w="80"/><text x="2.0887%" y="735.50"></text></g><g><title>LinearScan::allocate_registers (1,169 samples, 0.18%)</title><rect x="1.6698%" y="741" width="0.1817%" height="15" fill="rgb(245,182,24)" fg:x="10746" fg:w="1169"/><text x="1.9198%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (101 samples, 0.02%)</title><rect x="1.8815%" y="709" width="0.0157%" height="15" fill="rgb(242,14,37)" fg:x="12108" fg:w="101"/><text x="2.1315%" y="719.50"></text></g><g><title>LinearScan::color_lir_opr (74 samples, 0.01%)</title><rect x="1.8975%" y="709" width="0.0115%" height="15" fill="rgb(246,228,12)" fg:x="12211" fg:w="74"/><text x="2.1475%" y="719.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (122 samples, 0.02%)</title><rect x="1.9208%" y="693" width="0.0190%" height="15" fill="rgb(213,55,15)" fg:x="12361" fg:w="122"/><text x="2.1708%" y="703.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (222 samples, 0.03%)</title><rect x="1.9090%" y="709" width="0.0345%" height="15" fill="rgb(209,9,3)" fg:x="12285" fg:w="222"/><text x="2.1590%" y="719.50"></text></g><g><title>IntervalWalker::walk_to (111 samples, 0.02%)</title><rect x="1.9509%" y="677" width="0.0172%" height="15" fill="rgb(230,59,30)" fg:x="12555" fg:w="111"/><text x="2.2009%" y="687.50"></text></g><g><title>LinearScan::compute_oop_map (193 samples, 0.03%)</title><rect x="1.9457%" y="693" width="0.0300%" height="15" fill="rgb(209,121,21)" fg:x="12521" fg:w="193"/><text x="2.1957%" y="703.50"></text></g><g><title>LinearScan::assign_reg_num (795 samples, 0.12%)</title><rect x="1.8523%" y="725" width="0.1235%" height="15" fill="rgb(220,109,13)" fg:x="11920" fg:w="795"/><text x="2.1023%" y="735.50"></text></g><g><title>LinearScan::compute_oop_map (208 samples, 0.03%)</title><rect x="1.9435%" y="709" width="0.0323%" height="15" fill="rgb(232,18,1)" fg:x="12507" fg:w="208"/><text x="2.1935%" y="719.50"></text></g><g><title>LinearScan::assign_reg_num (834 samples, 0.13%)</title><rect x="1.8515%" y="741" width="0.1296%" height="15" fill="rgb(215,41,42)" fg:x="11915" fg:w="834"/><text x="2.1015%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (87 samples, 0.01%)</title><rect x="2.0348%" y="725" width="0.0135%" height="15" fill="rgb(224,123,36)" fg:x="13095" fg:w="87"/><text x="2.2848%" y="735.50"></text></g><g><title>LinearScan::add_def (74 samples, 0.01%)</title><rect x="2.0484%" y="725" width="0.0115%" height="15" fill="rgb(240,125,3)" fg:x="13182" fg:w="74"/><text x="2.2984%" y="735.50"></text></g><g><title>LinearScan::create_interval (67 samples, 0.01%)</title><rect x="2.0709%" y="709" width="0.0104%" height="15" fill="rgb(205,98,50)" fg:x="13327" fg:w="67"/><text x="2.3209%" y="719.50"></text></g><g><title>LinearScan::add_temp (121 samples, 0.02%)</title><rect x="2.0627%" y="725" width="0.0188%" height="15" fill="rgb(205,185,37)" fg:x="13274" fg:w="121"/><text x="2.3127%" y="735.50"></text></g><g><title>Interval::Interval (73 samples, 0.01%)</title><rect x="2.1034%" y="693" width="0.0113%" height="15" fill="rgb(238,207,15)" fg:x="13536" fg:w="73"/><text x="2.3534%" y="703.50"></text></g><g><title>LinearScan::create_interval (106 samples, 0.02%)</title><rect x="2.0996%" y="709" width="0.0165%" height="15" fill="rgb(213,199,42)" fg:x="13512" fg:w="106"/><text x="2.3496%" y="719.50"></text></g><g><title>LinearScan::add_use (226 samples, 0.04%)</title><rect x="2.0815%" y="725" width="0.0351%" height="15" fill="rgb(235,201,11)" fg:x="13395" fg:w="226"/><text x="2.3315%" y="735.50"></text></g><g><title>LinearScan::build_intervals (953 samples, 0.15%)</title><rect x="1.9811%" y="741" width="0.1481%" height="15" fill="rgb(207,46,11)" fg:x="12749" fg:w="953"/><text x="2.2311%" y="751.50"></text></g><g><title>LinearScan::compute_global_live_sets (76 samples, 0.01%)</title><rect x="2.1292%" y="741" width="0.0118%" height="15" fill="rgb(241,35,35)" fg:x="13702" fg:w="76"/><text x="2.3792%" y="751.50"></text></g><g><title>LIR_OpVisitState::visit (133 samples, 0.02%)</title><rect x="2.1668%" y="725" width="0.0207%" height="15" fill="rgb(243,32,47)" fg:x="13944" fg:w="133"/><text x="2.4168%" y="735.50"></text></g><g><title>LinearScan::compute_local_live_sets (355 samples, 0.06%)</title><rect x="2.1410%" y="741" width="0.0552%" height="15" fill="rgb(247,202,23)" fg:x="13778" fg:w="355"/><text x="2.3910%" y="751.50"></text></g><g><title>LinearScan::eliminate_spill_moves (87 samples, 0.01%)</title><rect x="2.1961%" y="741" width="0.0135%" height="15" fill="rgb(219,102,11)" fg:x="14133" fg:w="87"/><text x="2.4461%" y="751.50"></text></g><g><title>LinearScan::resolve_collect_mappings (103 samples, 0.02%)</title><rect x="2.2240%" y="725" width="0.0160%" height="15" fill="rgb(243,110,44)" fg:x="14312" fg:w="103"/><text x="2.4740%" y="735.50"></text></g><g><title>LinearScan::resolve_data_flow (168 samples, 0.03%)</title><rect x="2.2190%" y="741" width="0.0261%" height="15" fill="rgb(222,74,54)" fg:x="14280" fg:w="168"/><text x="2.4690%" y="751.50"></text></g><g><title>LinearScan::do_linear_scan (3,919 samples, 0.61%)</title><rect x="1.6646%" y="757" width="0.6090%" height="15" fill="rgb(216,99,12)" fg:x="10712" fg:w="3919"/><text x="1.9146%" y="767.50"></text></g><g><title>Compilation::emit_lir (5,120 samples, 0.80%)</title><rect x="1.4787%" y="773" width="0.7956%" height="15" fill="rgb(226,22,26)" fg:x="9516" fg:w="5120"/><text x="1.7287%" y="783.50"></text></g><g><title>MethodData::allocate (84 samples, 0.01%)</title><rect x="2.2782%" y="725" width="0.0131%" height="15" fill="rgb(217,163,10)" fg:x="14661" fg:w="84"/><text x="2.5282%" y="735.50"></text></g><g><title>Method::build_interpreter_method_data (86 samples, 0.01%)</title><rect x="2.2782%" y="741" width="0.0134%" height="15" fill="rgb(213,25,53)" fg:x="14661" fg:w="86"/><text x="2.5282%" y="751.50"></text></g><g><title>Compilation::compile_java_method (12,087 samples, 1.88%)</title><rect x="0.4233%" y="789" width="1.8782%" height="15" fill="rgb(252,105,26)" fg:x="2724" fg:w="12087"/><text x="0.6733%" y="799.50">C..</text></g><g><title>ciMethod::ensure_method_data (156 samples, 0.02%)</title><rect x="2.2773%" y="773" width="0.0242%" height="15" fill="rgb(220,39,43)" fg:x="14655" fg:w="156"/><text x="2.5273%" y="783.50"></text></g><g><title>ciMethod::ensure_method_data (151 samples, 0.02%)</title><rect x="2.2780%" y="757" width="0.0235%" height="15" fill="rgb(229,68,48)" fg:x="14660" fg:w="151"/><text x="2.5280%" y="767.50"></text></g><g><title>Compilation::initialize (66 samples, 0.01%)</title><rect x="2.3015%" y="789" width="0.0103%" height="15" fill="rgb(252,8,32)" fg:x="14811" fg:w="66"/><text x="2.5515%" y="799.50"></text></g><g><title>CodeBuffer::finalize_oop_references (97 samples, 0.02%)</title><rect x="2.3257%" y="757" width="0.0151%" height="15" fill="rgb(223,20,43)" fg:x="14967" fg:w="97"/><text x="2.5757%" y="767.50"></text></g><g><title>CodeBuffer::relocate_code_to (161 samples, 0.03%)</title><rect x="2.3640%" y="725" width="0.0250%" height="15" fill="rgb(229,81,49)" fg:x="15213" fg:w="161"/><text x="2.6140%" y="735.50"></text></g><g><title>CodeBuffer::copy_code_to (180 samples, 0.03%)</title><rect x="2.3627%" y="741" width="0.0280%" height="15" fill="rgb(236,28,36)" fg:x="15205" fg:w="180"/><text x="2.6127%" y="751.50"></text></g><g><title>nmethod::nmethod (345 samples, 0.05%)</title><rect x="2.3621%" y="757" width="0.0536%" height="15" fill="rgb(249,185,26)" fg:x="15201" fg:w="345"/><text x="2.6121%" y="767.50"></text></g><g><title>ciEnv::register_method (665 samples, 0.10%)</title><rect x="2.3128%" y="789" width="0.1033%" height="15" fill="rgb(249,174,33)" fg:x="14884" fg:w="665"/><text x="2.5628%" y="799.50"></text></g><g><title>nmethod::new_nmethod (589 samples, 0.09%)</title><rect x="2.3247%" y="773" width="0.0915%" height="15" fill="rgb(233,201,37)" fg:x="14960" fg:w="589"/><text x="2.5747%" y="783.50"></text></g><g><title>Compilation::compile_method (12,833 samples, 1.99%)</title><rect x="0.4222%" y="805" width="1.9941%" height="15" fill="rgb(221,78,26)" fg:x="2717" fg:w="12833"/><text x="0.6722%" y="815.50">C..</text></g><g><title>Compilation::Compilation (12,846 samples, 2.00%)</title><rect x="0.4206%" y="821" width="1.9962%" height="15" fill="rgb(250,127,30)" fg:x="2707" fg:w="12846"/><text x="0.6706%" y="831.50">C..</text></g><g><title>Compiler::compile_method (12,873 samples, 2.00%)</title><rect x="0.4166%" y="837" width="2.0004%" height="15" fill="rgb(230,49,44)" fg:x="2681" fg:w="12873"/><text x="0.6666%" y="847.50">C..</text></g><g><title>ciEnv::ciEnv (125 samples, 0.02%)</title><rect x="2.4238%" y="837" width="0.0194%" height="15" fill="rgb(229,67,23)" fg:x="15598" fg:w="125"/><text x="2.6738%" y="847.50"></text></g><g><title>ciMethod::ciMethod (113 samples, 0.02%)</title><rect x="2.4443%" y="789" width="0.0176%" height="15" fill="rgb(249,83,47)" fg:x="15730" fg:w="113"/><text x="2.6943%" y="799.50"></text></g><g><title>ciSignature::ciSignature (103 samples, 0.02%)</title><rect x="2.4459%" y="773" width="0.0160%" height="15" fill="rgb(215,43,3)" fg:x="15740" fg:w="103"/><text x="2.6959%" y="783.50"></text></g><g><title>ciEnv::get_method_from_handle (136 samples, 0.02%)</title><rect x="2.4432%" y="837" width="0.0211%" height="15" fill="rgb(238,154,13)" fg:x="15723" fg:w="136"/><text x="2.6932%" y="847.50"></text></g><g><title>ciObjectFactory::get_metadata (134 samples, 0.02%)</title><rect x="2.4435%" y="821" width="0.0208%" height="15" fill="rgb(219,56,2)" fg:x="15725" fg:w="134"/><text x="2.6935%" y="831.50"></text></g><g><title>ciObjectFactory::create_new_metadata (131 samples, 0.02%)</title><rect x="2.4440%" y="805" width="0.0204%" height="15" fill="rgb(233,0,4)" fg:x="15728" fg:w="131"/><text x="2.6940%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (13,485 samples, 2.10%)</title><rect x="0.3753%" y="853" width="2.0955%" height="15" fill="rgb(235,30,7)" fg:x="2415" fg:w="13485"/><text x="0.6253%" y="863.50">C..</text></g><g><title>__perf_event_task_sched_in (129 samples, 0.02%)</title><rect x="2.4920%" y="565" width="0.0200%" height="15" fill="rgb(250,79,13)" fg:x="16037" fg:w="129"/><text x="2.7420%" y="575.50"></text></g><g><title>x86_pmu_enable (129 samples, 0.02%)</title><rect x="2.4920%" y="549" width="0.0200%" height="15" fill="rgb(211,146,34)" fg:x="16037" fg:w="129"/><text x="2.7420%" y="559.50"></text></g><g><title>intel_pmu_enable_all (128 samples, 0.02%)</title><rect x="2.4922%" y="533" width="0.0199%" height="15" fill="rgb(228,22,38)" fg:x="16038" fg:w="128"/><text x="2.7422%" y="543.50"></text></g><g><title>native_write_msr (128 samples, 0.02%)</title><rect x="2.4922%" y="517" width="0.0199%" height="15" fill="rgb(235,168,5)" fg:x="16038" fg:w="128"/><text x="2.7422%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (133 samples, 0.02%)</title><rect x="2.4915%" y="581" width="0.0207%" height="15" fill="rgb(221,155,16)" fg:x="16034" fg:w="133"/><text x="2.7415%" y="591.50"></text></g><g><title>futex_wait_queue_me (175 samples, 0.03%)</title><rect x="2.4880%" y="629" width="0.0272%" height="15" fill="rgb(215,215,53)" fg:x="16011" fg:w="175"/><text x="2.7380%" y="639.50"></text></g><g><title>schedule (168 samples, 0.03%)</title><rect x="2.4891%" y="613" width="0.0261%" height="15" fill="rgb(223,4,10)" fg:x="16018" fg:w="168"/><text x="2.7391%" y="623.50"></text></g><g><title>__schedule (163 samples, 0.03%)</title><rect x="2.4898%" y="597" width="0.0253%" height="15" fill="rgb(234,103,6)" fg:x="16023" fg:w="163"/><text x="2.7398%" y="607.50"></text></g><g><title>__x64_sys_futex (184 samples, 0.03%)</title><rect x="2.4873%" y="677" width="0.0286%" height="15" fill="rgb(227,97,0)" fg:x="16007" fg:w="184"/><text x="2.7373%" y="687.50"></text></g><g><title>do_futex (182 samples, 0.03%)</title><rect x="2.4877%" y="661" width="0.0283%" height="15" fill="rgb(234,150,53)" fg:x="16009" fg:w="182"/><text x="2.7377%" y="671.50"></text></g><g><title>futex_wait (182 samples, 0.03%)</title><rect x="2.4877%" y="645" width="0.0283%" height="15" fill="rgb(228,201,54)" fg:x="16009" fg:w="182"/><text x="2.7377%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (191 samples, 0.03%)</title><rect x="2.4873%" y="709" width="0.0297%" height="15" fill="rgb(222,22,37)" fg:x="16007" fg:w="191"/><text x="2.7373%" y="719.50"></text></g><g><title>do_syscall_64 (191 samples, 0.03%)</title><rect x="2.4873%" y="693" width="0.0297%" height="15" fill="rgb(237,53,32)" fg:x="16007" fg:w="191"/><text x="2.7373%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (197 samples, 0.03%)</title><rect x="2.4866%" y="757" width="0.0306%" height="15" fill="rgb(233,25,53)" fg:x="16002" fg:w="197"/><text x="2.7366%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (196 samples, 0.03%)</title><rect x="2.4867%" y="741" width="0.0305%" height="15" fill="rgb(210,40,34)" fg:x="16003" fg:w="196"/><text x="2.7367%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (196 samples, 0.03%)</title><rect x="2.4867%" y="725" width="0.0305%" height="15" fill="rgb(241,220,44)" fg:x="16003" fg:w="196"/><text x="2.7367%" y="735.50"></text></g><g><title>___pthread_cond_timedwait64 (202 samples, 0.03%)</title><rect x="2.4861%" y="789" width="0.0314%" height="15" fill="rgb(235,28,35)" fg:x="15999" fg:w="202"/><text x="2.7361%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (201 samples, 0.03%)</title><rect x="2.4863%" y="773" width="0.0312%" height="15" fill="rgb(210,56,17)" fg:x="16000" fg:w="201"/><text x="2.7363%" y="783.50"></text></g><g><title>Monitor::IWait (215 samples, 0.03%)</title><rect x="2.4853%" y="821" width="0.0334%" height="15" fill="rgb(224,130,29)" fg:x="15994" fg:w="215"/><text x="2.7353%" y="831.50"></text></g><g><title>os::PlatformEvent::park (211 samples, 0.03%)</title><rect x="2.4859%" y="805" width="0.0328%" height="15" fill="rgb(235,212,8)" fg:x="15998" fg:w="211"/><text x="2.7359%" y="815.50"></text></g><g><title>Monitor::wait (220 samples, 0.03%)</title><rect x="2.4847%" y="837" width="0.0342%" height="15" fill="rgb(223,33,50)" fg:x="15990" fg:w="220"/><text x="2.7347%" y="847.50"></text></g><g><title>TieredThresholdPolicy::select_task (85 samples, 0.01%)</title><rect x="2.5189%" y="837" width="0.0132%" height="15" fill="rgb(219,149,13)" fg:x="16210" fg:w="85"/><text x="2.7689%" y="847.50"></text></g><g><title>CompileQueue::get (337 samples, 0.05%)</title><rect x="2.4805%" y="853" width="0.0524%" height="15" fill="rgb(250,156,29)" fg:x="15963" fg:w="337"/><text x="2.7305%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (13,907 samples, 2.16%)</title><rect x="0.3739%" y="869" width="2.1610%" height="15" fill="rgb(216,193,19)" fg:x="2406" fg:w="13907"/><text x="0.6239%" y="879.50">C..</text></g><g><title>__clone3 (13,923 samples, 2.16%)</title><rect x="0.3717%" y="949" width="2.1635%" height="15" fill="rgb(216,135,14)" fg:x="2392" fg:w="13923"/><text x="0.6217%" y="959.50">_..</text></g><g><title>start_thread (13,919 samples, 2.16%)</title><rect x="0.3723%" y="933" width="2.1629%" height="15" fill="rgb(241,47,5)" fg:x="2396" fg:w="13919"/><text x="0.6223%" y="943.50">s..</text></g><g><title>thread_native_entry (13,919 samples, 2.16%)</title><rect x="0.3723%" y="917" width="2.1629%" height="15" fill="rgb(233,42,35)" fg:x="2396" fg:w="13919"/><text x="0.6223%" y="927.50">t..</text></g><g><title>Thread::call_run (13,911 samples, 2.16%)</title><rect x="0.3736%" y="901" width="2.1616%" height="15" fill="rgb(231,13,6)" fg:x="2404" fg:w="13911"/><text x="0.6236%" y="911.50">T..</text></g><g><title>JavaThread::thread_main_inner (13,909 samples, 2.16%)</title><rect x="0.3739%" y="885" width="2.1613%" height="15" fill="rgb(207,181,40)" fg:x="2406" fg:w="13909"/><text x="0.6239%" y="895.50">J..</text></g><g><title>C1_CompilerThre (15,997 samples, 2.49%)</title><rect x="0.0595%" y="965" width="2.4858%" height="15" fill="rgb(254,173,49)" fg:x="383" fg:w="15997"/><text x="0.3095%" y="975.50">C1..</text></g><g><title>ProjNode::pinned (120 samples, 0.02%)</title><rect x="2.5916%" y="933" width="0.0186%" height="15" fill="rgb(221,1,38)" fg:x="16678" fg:w="120"/><text x="2.8416%" y="943.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (125 samples, 0.02%)</title><rect x="2.5910%" y="949" width="0.0194%" height="15" fill="rgb(206,124,46)" fg:x="16674" fg:w="125"/><text x="2.8410%" y="959.50"></text></g><g><title>IndexSetIterator::advance_and_next (72 samples, 0.01%)</title><rect x="2.7728%" y="933" width="0.0112%" height="15" fill="rgb(249,21,11)" fg:x="17844" fg:w="72"/><text x="3.0228%" y="943.50"></text></g><g><title>MultiNode::is_CFG (101 samples, 0.02%)</title><rect x="2.8715%" y="933" width="0.0157%" height="15" fill="rgb(222,201,40)" fg:x="18479" fg:w="101"/><text x="3.1215%" y="943.50"></text></g><g><title>Node::is_CFG (95 samples, 0.01%)</title><rect x="2.9049%" y="933" width="0.0148%" height="15" fill="rgb(235,61,29)" fg:x="18694" fg:w="95"/><text x="3.1549%" y="943.50"></text></g><g><title>RegionNode::is_CFG (68 samples, 0.01%)</title><rect x="3.0567%" y="933" width="0.0106%" height="15" fill="rgb(219,207,3)" fg:x="19671" fg:w="68"/><text x="3.3067%" y="943.50"></text></g><g><title>_dl_update_slotinfo (286 samples, 0.04%)</title><rect x="3.1645%" y="933" width="0.0444%" height="15" fill="rgb(222,56,46)" fg:x="20365" fg:w="286"/><text x="3.4145%" y="943.50"></text></g><g><title>update_get_addr (140 samples, 0.02%)</title><rect x="3.3294%" y="933" width="0.0218%" height="15" fill="rgb(239,76,54)" fg:x="21426" fg:w="140"/><text x="3.5794%" y="943.50"></text></g><g><title>[anon] (4,733 samples, 0.74%)</title><rect x="2.6174%" y="949" width="0.7355%" height="15" fill="rgb(231,124,27)" fg:x="16844" fg:w="4733"/><text x="2.8674%" y="959.50"></text></g><g><title>ciEnv::get_method_by_index_impl (65 samples, 0.01%)</title><rect x="3.3858%" y="645" width="0.0101%" height="15" fill="rgb(249,195,6)" fg:x="21789" fg:w="65"/><text x="3.6358%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (68 samples, 0.01%)</title><rect x="3.3855%" y="677" width="0.0106%" height="15" fill="rgb(237,174,47)" fg:x="21787" fg:w="68"/><text x="3.6355%" y="687.50"></text></g><g><title>ciBytecodeStream::get_method (68 samples, 0.01%)</title><rect x="3.3855%" y="661" width="0.0106%" height="15" fill="rgb(206,201,31)" fg:x="21787" fg:w="68"/><text x="3.6355%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (128 samples, 0.02%)</title><rect x="3.3779%" y="693" width="0.0199%" height="15" fill="rgb(231,57,52)" fg:x="21738" fg:w="128"/><text x="3.6279%" y="703.50"></text></g><g><title>ciTypeFlow::df_flow_types (149 samples, 0.02%)</title><rect x="3.3756%" y="725" width="0.0232%" height="15" fill="rgb(248,177,22)" fg:x="21723" fg:w="149"/><text x="3.6256%" y="735.50"></text></g><g><title>ciTypeFlow::flow_block (149 samples, 0.02%)</title><rect x="3.3756%" y="709" width="0.0232%" height="15" fill="rgb(215,211,37)" fg:x="21723" fg:w="149"/><text x="3.6256%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (161 samples, 0.03%)</title><rect x="3.3745%" y="789" width="0.0250%" height="15" fill="rgb(241,128,51)" fg:x="21716" fg:w="161"/><text x="3.6245%" y="799.50"></text></g><g><title>ciMethod::get_flow_analysis (157 samples, 0.02%)</title><rect x="3.3751%" y="773" width="0.0244%" height="15" fill="rgb(227,165,31)" fg:x="21720" fg:w="157"/><text x="3.6251%" y="783.50"></text></g><g><title>ciTypeFlow::do_flow (157 samples, 0.02%)</title><rect x="3.3751%" y="757" width="0.0244%" height="15" fill="rgb(228,167,24)" fg:x="21720" fg:w="157"/><text x="3.6251%" y="767.50"></text></g><g><title>ciTypeFlow::flow_types (157 samples, 0.02%)</title><rect x="3.3751%" y="741" width="0.0244%" height="15" fill="rgb(228,143,12)" fg:x="21720" fg:w="157"/><text x="3.6251%" y="751.50"></text></g><g><title>Compile::call_generator (213 samples, 0.03%)</title><rect x="3.3667%" y="805" width="0.0331%" height="15" fill="rgb(249,149,8)" fg:x="21666" fg:w="213"/><text x="3.6167%" y="815.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (80 samples, 0.01%)</title><rect x="3.4247%" y="597" width="0.0124%" height="15" fill="rgb(243,35,44)" fg:x="22039" fg:w="80"/><text x="3.6747%" y="607.50"></text></g><g><title>ciTypeFlow::df_flow_types (104 samples, 0.02%)</title><rect x="3.4211%" y="629" width="0.0162%" height="15" fill="rgb(246,89,9)" fg:x="22016" fg:w="104"/><text x="3.6711%" y="639.50"></text></g><g><title>ciTypeFlow::flow_block (95 samples, 0.01%)</title><rect x="3.4225%" y="613" width="0.0148%" height="15" fill="rgb(233,213,13)" fg:x="22025" fg:w="95"/><text x="3.6725%" y="623.50"></text></g><g><title>InlineTree::ok_to_inline (146 samples, 0.02%)</title><rect x="3.4153%" y="693" width="0.0227%" height="15" fill="rgb(233,141,41)" fg:x="21979" fg:w="146"/><text x="3.6653%" y="703.50"></text></g><g><title>ciMethod::get_flow_analysis (120 samples, 0.02%)</title><rect x="3.4194%" y="677" width="0.0186%" height="15" fill="rgb(239,167,4)" fg:x="22005" fg:w="120"/><text x="3.6694%" y="687.50"></text></g><g><title>ciTypeFlow::do_flow (111 samples, 0.02%)</title><rect x="3.4208%" y="661" width="0.0172%" height="15" fill="rgb(209,217,16)" fg:x="22014" fg:w="111"/><text x="3.6708%" y="671.50"></text></g><g><title>ciTypeFlow::flow_types (110 samples, 0.02%)</title><rect x="3.4209%" y="645" width="0.0171%" height="15" fill="rgb(219,88,35)" fg:x="22015" fg:w="110"/><text x="3.6709%" y="655.50"></text></g><g><title>Compile::call_generator (184 samples, 0.03%)</title><rect x="3.4105%" y="709" width="0.0286%" height="15" fill="rgb(220,193,23)" fg:x="21948" fg:w="184"/><text x="3.6605%" y="719.50"></text></g><g><title>InlineTree::ok_to_inline (72 samples, 0.01%)</title><rect x="3.4778%" y="597" width="0.0112%" height="15" fill="rgb(230,90,52)" fg:x="22381" fg:w="72"/><text x="3.7278%" y="607.50"></text></g><g><title>Compile::call_generator (85 samples, 0.01%)</title><rect x="3.4764%" y="613" width="0.0132%" height="15" fill="rgb(252,106,19)" fg:x="22372" fg:w="85"/><text x="3.7264%" y="623.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.01%)</title><rect x="3.5289%" y="469" width="0.0141%" height="15" fill="rgb(206,74,20)" fg:x="22710" fg:w="91"/><text x="3.7789%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.01%)</title><rect x="3.5299%" y="453" width="0.0132%" height="15" fill="rgb(230,138,44)" fg:x="22716" fg:w="85"/><text x="3.7799%" y="463.50"></text></g><g><title>Parse::do_all_blocks (94 samples, 0.01%)</title><rect x="3.5288%" y="485" width="0.0146%" height="15" fill="rgb(235,182,43)" fg:x="22709" fg:w="94"/><text x="3.7788%" y="495.50"></text></g><g><title>Parse::Parse (145 samples, 0.02%)</title><rect x="3.5246%" y="501" width="0.0225%" height="15" fill="rgb(242,16,51)" fg:x="22682" fg:w="145"/><text x="3.7746%" y="511.50"></text></g><g><title>ParseGenerator::generate (146 samples, 0.02%)</title><rect x="3.5246%" y="517" width="0.0227%" height="15" fill="rgb(248,9,4)" fg:x="22682" fg:w="146"/><text x="3.7746%" y="527.50"></text></g><g><title>Parse::do_call (262 samples, 0.04%)</title><rect x="3.5114%" y="533" width="0.0407%" height="15" fill="rgb(210,31,22)" fg:x="22597" fg:w="262"/><text x="3.7614%" y="543.50"></text></g><g><title>Parse::do_field_access (71 samples, 0.01%)</title><rect x="3.5535%" y="533" width="0.0110%" height="15" fill="rgb(239,54,39)" fg:x="22868" fg:w="71"/><text x="3.8035%" y="543.50"></text></g><g><title>Parse::do_one_block (447 samples, 0.07%)</title><rect x="3.5067%" y="565" width="0.0695%" height="15" fill="rgb(230,99,41)" fg:x="22567" fg:w="447"/><text x="3.7567%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (438 samples, 0.07%)</title><rect x="3.5081%" y="549" width="0.0681%" height="15" fill="rgb(253,106,12)" fg:x="22576" fg:w="438"/><text x="3.7581%" y="559.50"></text></g><g><title>Parse::do_all_blocks (460 samples, 0.07%)</title><rect x="3.5062%" y="581" width="0.0715%" height="15" fill="rgb(213,46,41)" fg:x="22564" fg:w="460"/><text x="3.7562%" y="591.50"></text></g><g><title>ParseGenerator::generate (530 samples, 0.08%)</title><rect x="3.4994%" y="613" width="0.0824%" height="15" fill="rgb(215,133,35)" fg:x="22520" fg:w="530"/><text x="3.7494%" y="623.50"></text></g><g><title>Parse::Parse (529 samples, 0.08%)</title><rect x="3.4996%" y="597" width="0.0822%" height="15" fill="rgb(213,28,5)" fg:x="22521" fg:w="529"/><text x="3.7496%" y="607.50"></text></g><g><title>Parse::do_call (765 samples, 0.12%)</title><rect x="3.4756%" y="629" width="0.1189%" height="15" fill="rgb(215,77,49)" fg:x="22367" fg:w="765"/><text x="3.7256%" y="639.50"></text></g><g><title>GraphKit::access_store_at (66 samples, 0.01%)</title><rect x="3.6051%" y="597" width="0.0103%" height="15" fill="rgb(248,100,22)" fg:x="23200" fg:w="66"/><text x="3.8551%" y="607.50"></text></g><g><title>BarrierSetC2::store_at (66 samples, 0.01%)</title><rect x="3.6051%" y="581" width="0.0103%" height="15" fill="rgb(208,67,9)" fg:x="23200" fg:w="66"/><text x="3.8551%" y="591.50"></text></g><g><title>Parse::do_put_xxx (71 samples, 0.01%)</title><rect x="3.6048%" y="613" width="0.0110%" height="15" fill="rgb(219,133,21)" fg:x="23198" fg:w="71"/><text x="3.8548%" y="623.50"></text></g><g><title>Parse::do_field_access (140 samples, 0.02%)</title><rect x="3.5953%" y="629" width="0.0218%" height="15" fill="rgb(246,46,29)" fg:x="23137" fg:w="140"/><text x="3.8453%" y="639.50"></text></g><g><title>Parse::do_one_block (1,111 samples, 0.17%)</title><rect x="3.4623%" y="661" width="0.1726%" height="15" fill="rgb(246,185,52)" fg:x="22281" fg:w="1111"/><text x="3.7123%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (1,079 samples, 0.17%)</title><rect x="3.4672%" y="645" width="0.1677%" height="15" fill="rgb(252,136,11)" fg:x="22313" fg:w="1079"/><text x="3.7172%" y="655.50"></text></g><g><title>Parse::do_all_blocks (1,127 samples, 0.18%)</title><rect x="3.4618%" y="677" width="0.1751%" height="15" fill="rgb(219,138,53)" fg:x="22278" fg:w="1127"/><text x="3.7118%" y="687.50"></text></g><g><title>ParseGenerator::generate (1,230 samples, 0.19%)</title><rect x="3.4522%" y="709" width="0.1911%" height="15" fill="rgb(211,51,23)" fg:x="22216" fg:w="1230"/><text x="3.7022%" y="719.50"></text></g><g><title>Parse::Parse (1,229 samples, 0.19%)</title><rect x="3.4523%" y="693" width="0.1910%" height="15" fill="rgb(247,221,28)" fg:x="22217" fg:w="1229"/><text x="3.7023%" y="703.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="3.6540%" y="597" width="0.0109%" height="15" fill="rgb(251,222,45)" fg:x="23515" fg:w="70"/><text x="3.9040%" y="607.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="3.6540%" y="581" width="0.0109%" height="15" fill="rgb(217,162,53)" fg:x="23515" fg:w="70"/><text x="3.9040%" y="591.50"></text></g><g><title>Parse::do_call (109 samples, 0.02%)</title><rect x="3.6500%" y="613" width="0.0169%" height="15" fill="rgb(229,93,14)" fg:x="23489" fg:w="109"/><text x="3.9000%" y="623.50"></text></g><g><title>Parse::do_one_block (150 samples, 0.02%)</title><rect x="3.6466%" y="645" width="0.0233%" height="15" fill="rgb(209,67,49)" fg:x="23467" fg:w="150"/><text x="3.8966%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (146 samples, 0.02%)</title><rect x="3.6472%" y="629" width="0.0227%" height="15" fill="rgb(213,87,29)" fg:x="23471" fg:w="146"/><text x="3.8972%" y="639.50"></text></g><g><title>Parse::do_all_blocks (151 samples, 0.02%)</title><rect x="3.6466%" y="661" width="0.0235%" height="15" fill="rgb(205,151,52)" fg:x="23467" fg:w="151"/><text x="3.8966%" y="671.50"></text></g><g><title>ParseGenerator::generate (163 samples, 0.03%)</title><rect x="3.6458%" y="693" width="0.0253%" height="15" fill="rgb(253,215,39)" fg:x="23462" fg:w="163"/><text x="3.8958%" y="703.50"></text></g><g><title>Parse::Parse (163 samples, 0.03%)</title><rect x="3.6458%" y="677" width="0.0253%" height="15" fill="rgb(221,220,41)" fg:x="23462" fg:w="163"/><text x="3.8958%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (213 samples, 0.03%)</title><rect x="3.6435%" y="709" width="0.0331%" height="15" fill="rgb(218,133,21)" fg:x="23447" fg:w="213"/><text x="3.8935%" y="719.50"></text></g><g><title>Parse::do_call (1,739 samples, 0.27%)</title><rect x="3.4105%" y="725" width="0.2702%" height="15" fill="rgb(221,193,43)" fg:x="21948" fg:w="1739"/><text x="3.6605%" y="735.50"></text></g><g><title>Parse::do_get_xxx (68 samples, 0.01%)</title><rect x="3.6856%" y="709" width="0.0106%" height="15" fill="rgb(240,128,52)" fg:x="23718" fg:w="68"/><text x="3.9356%" y="719.50"></text></g><g><title>GraphKit::access_store_at (71 samples, 0.01%)</title><rect x="3.6963%" y="693" width="0.0110%" height="15" fill="rgb(253,114,12)" fg:x="23787" fg:w="71"/><text x="3.9463%" y="703.50"></text></g><g><title>BarrierSetC2::store_at (71 samples, 0.01%)</title><rect x="3.6963%" y="677" width="0.0110%" height="15" fill="rgb(215,223,47)" fg:x="23787" fg:w="71"/><text x="3.9463%" y="687.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (66 samples, 0.01%)</title><rect x="3.6971%" y="661" width="0.0103%" height="15" fill="rgb(248,225,23)" fg:x="23792" fg:w="66"/><text x="3.9471%" y="671.50"></text></g><g><title>Parse::do_put_xxx (74 samples, 0.01%)</title><rect x="3.6961%" y="709" width="0.0115%" height="15" fill="rgb(250,108,0)" fg:x="23786" fg:w="74"/><text x="3.9461%" y="719.50"></text></g><g><title>Parse::do_field_access (156 samples, 0.02%)</title><rect x="3.6839%" y="725" width="0.0242%" height="15" fill="rgb(228,208,7)" fg:x="23707" fg:w="156"/><text x="3.9339%" y="735.50"></text></g><g><title>Parse::do_all_blocks (2,022 samples, 0.31%)</title><rect x="3.4021%" y="773" width="0.3142%" height="15" fill="rgb(244,45,10)" fg:x="21894" fg:w="2022"/><text x="3.6521%" y="783.50"></text></g><g><title>Parse::do_one_block (2,022 samples, 0.31%)</title><rect x="3.4021%" y="757" width="0.3142%" height="15" fill="rgb(207,125,25)" fg:x="21894" fg:w="2022"/><text x="3.6521%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (2,012 samples, 0.31%)</title><rect x="3.4037%" y="741" width="0.3126%" height="15" fill="rgb(210,195,18)" fg:x="21904" fg:w="2012"/><text x="3.6537%" y="751.50"></text></g><g><title>ParseGenerator::generate (2,035 samples, 0.32%)</title><rect x="3.4006%" y="805" width="0.3162%" height="15" fill="rgb(249,80,12)" fg:x="21884" fg:w="2035"/><text x="3.6506%" y="815.50"></text></g><g><title>Parse::Parse (2,035 samples, 0.32%)</title><rect x="3.4006%" y="789" width="0.3162%" height="15" fill="rgb(221,65,9)" fg:x="21884" fg:w="2035"/><text x="3.6506%" y="799.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.01%)</title><rect x="3.7429%" y="549" width="0.0132%" height="15" fill="rgb(235,49,36)" fg:x="24087" fg:w="85"/><text x="3.9929%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.01%)</title><rect x="3.7435%" y="533" width="0.0126%" height="15" fill="rgb(225,32,20)" fg:x="24091" fg:w="81"/><text x="3.9935%" y="543.50"></text></g><g><title>Parse::do_all_blocks (88 samples, 0.01%)</title><rect x="3.7428%" y="565" width="0.0137%" height="15" fill="rgb(215,141,46)" fg:x="24086" fg:w="88"/><text x="3.9928%" y="575.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.02%)</title><rect x="3.7406%" y="597" width="0.0166%" height="15" fill="rgb(250,160,47)" fg:x="24072" fg:w="107"/><text x="3.9906%" y="607.50"></text></g><g><title>Parse::Parse (106 samples, 0.02%)</title><rect x="3.7407%" y="581" width="0.0165%" height="15" fill="rgb(216,222,40)" fg:x="24073" fg:w="106"/><text x="3.9907%" y="591.50"></text></g><g><title>Parse::do_call (172 samples, 0.03%)</title><rect x="3.7364%" y="613" width="0.0267%" height="15" fill="rgb(234,217,39)" fg:x="24045" fg:w="172"/><text x="3.9864%" y="623.50"></text></g><g><title>Parse::do_one_block (252 samples, 0.04%)</title><rect x="3.7316%" y="645" width="0.0392%" height="15" fill="rgb(207,178,40)" fg:x="24014" fg:w="252"/><text x="3.9816%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (249 samples, 0.04%)</title><rect x="3.7320%" y="629" width="0.0387%" height="15" fill="rgb(221,136,13)" fg:x="24017" fg:w="249"/><text x="3.9820%" y="639.50"></text></g><g><title>Parse::do_all_blocks (258 samples, 0.04%)</title><rect x="3.7316%" y="661" width="0.0401%" height="15" fill="rgb(249,199,10)" fg:x="24014" fg:w="258"/><text x="3.9816%" y="671.50"></text></g><g><title>ParseGenerator::generate (282 samples, 0.04%)</title><rect x="3.7294%" y="693" width="0.0438%" height="15" fill="rgb(249,222,13)" fg:x="24000" fg:w="282"/><text x="3.9794%" y="703.50"></text></g><g><title>Parse::Parse (282 samples, 0.04%)</title><rect x="3.7294%" y="677" width="0.0438%" height="15" fill="rgb(244,185,38)" fg:x="24000" fg:w="282"/><text x="3.9794%" y="687.50"></text></g><g><title>Parse::do_call (399 samples, 0.06%)</title><rect x="3.7193%" y="709" width="0.0620%" height="15" fill="rgb(236,202,9)" fg:x="23935" fg:w="399"/><text x="3.9693%" y="719.50"></text></g><g><title>Parse::do_all_blocks (470 samples, 0.07%)</title><rect x="3.7174%" y="757" width="0.0730%" height="15" fill="rgb(250,229,37)" fg:x="23923" fg:w="470"/><text x="3.9674%" y="767.50"></text></g><g><title>Parse::do_one_block (470 samples, 0.07%)</title><rect x="3.7174%" y="741" width="0.0730%" height="15" fill="rgb(206,174,23)" fg:x="23923" fg:w="470"/><text x="3.9674%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (467 samples, 0.07%)</title><rect x="3.7179%" y="725" width="0.0726%" height="15" fill="rgb(211,33,43)" fg:x="23926" fg:w="467"/><text x="3.9679%" y="735.50"></text></g><g><title>ParseGenerator::generate (478 samples, 0.07%)</title><rect x="3.7170%" y="789" width="0.0743%" height="15" fill="rgb(245,58,50)" fg:x="23920" fg:w="478"/><text x="3.9670%" y="799.50"></text></g><g><title>Parse::Parse (478 samples, 0.07%)</title><rect x="3.7170%" y="773" width="0.0743%" height="15" fill="rgb(244,68,36)" fg:x="23920" fg:w="478"/><text x="3.9670%" y="783.50"></text></g><g><title>Parse::do_call (66 samples, 0.01%)</title><rect x="3.7929%" y="693" width="0.0103%" height="15" fill="rgb(232,229,15)" fg:x="24409" fg:w="66"/><text x="4.0429%" y="703.50"></text></g><g><title>Parse::do_one_block (88 samples, 0.01%)</title><rect x="3.7923%" y="725" width="0.0137%" height="15" fill="rgb(254,30,23)" fg:x="24405" fg:w="88"/><text x="4.0423%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.01%)</title><rect x="3.7925%" y="709" width="0.0135%" height="15" fill="rgb(235,160,14)" fg:x="24406" fg:w="87"/><text x="4.0425%" y="719.50"></text></g><g><title>Parse::do_all_blocks (89 samples, 0.01%)</title><rect x="3.7923%" y="741" width="0.0138%" height="15" fill="rgb(212,155,44)" fg:x="24405" fg:w="89"/><text x="4.0423%" y="751.50"></text></g><g><title>ParseGenerator::generate (99 samples, 0.02%)</title><rect x="3.7914%" y="773" width="0.0154%" height="15" fill="rgb(226,2,50)" fg:x="24399" fg:w="99"/><text x="4.0414%" y="783.50"></text></g><g><title>Parse::Parse (99 samples, 0.02%)</title><rect x="3.7914%" y="757" width="0.0154%" height="15" fill="rgb(234,177,6)" fg:x="24399" fg:w="99"/><text x="4.0414%" y="767.50"></text></g><g><title>PredictedCallGenerator::generate (102 samples, 0.02%)</title><rect x="3.7912%" y="789" width="0.0158%" height="15" fill="rgb(217,24,9)" fg:x="24398" fg:w="102"/><text x="4.0412%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (584 samples, 0.09%)</title><rect x="3.7168%" y="805" width="0.0907%" height="15" fill="rgb(220,13,46)" fg:x="23919" fg:w="584"/><text x="3.9668%" y="815.50"></text></g><g><title>Parse::do_call (2,850 samples, 0.44%)</title><rect x="3.3667%" y="821" width="0.4429%" height="15" fill="rgb(239,221,27)" fg:x="21666" fg:w="2850"/><text x="3.6167%" y="831.50"></text></g><g><title>Parse::do_all_blocks (2,863 samples, 0.44%)</title><rect x="3.3664%" y="869" width="0.4449%" height="15" fill="rgb(222,198,25)" fg:x="21664" fg:w="2863"/><text x="3.6164%" y="879.50"></text></g><g><title>Parse::do_one_block (2,863 samples, 0.44%)</title><rect x="3.3664%" y="853" width="0.4449%" height="15" fill="rgb(211,99,13)" fg:x="21664" fg:w="2863"/><text x="3.6164%" y="863.50"></text></g><g><title>Parse::do_one_bytecode (2,863 samples, 0.44%)</title><rect x="3.3664%" y="837" width="0.4449%" height="15" fill="rgb(232,111,31)" fg:x="21664" fg:w="2863"/><text x="3.6164%" y="847.50"></text></g><g><title>C2Compiler::compile_method (2,903 samples, 0.45%)</title><rect x="3.3608%" y="933" width="0.4511%" height="15" fill="rgb(245,82,37)" fg:x="21628" fg:w="2903"/><text x="3.6108%" y="943.50"></text></g><g><title>Compile::Compile (2,903 samples, 0.45%)</title><rect x="3.3608%" y="917" width="0.4511%" height="15" fill="rgb(227,149,46)" fg:x="21628" fg:w="2903"/><text x="3.6108%" y="927.50"></text></g><g><title>ParseGenerator::generate (2,867 samples, 0.45%)</title><rect x="3.3664%" y="901" width="0.4455%" height="15" fill="rgb(218,36,50)" fg:x="21664" fg:w="2867"/><text x="3.6164%" y="911.50"></text></g><g><title>Parse::Parse (2,867 samples, 0.45%)</title><rect x="3.3664%" y="885" width="0.4455%" height="15" fill="rgb(226,80,48)" fg:x="21664" fg:w="2867"/><text x="3.6164%" y="895.50"></text></g><g><title>MachSpillCopyNode::implementation (72 samples, 0.01%)</title><rect x="3.8133%" y="853" width="0.0112%" height="15" fill="rgb(238,224,15)" fg:x="24540" fg:w="72"/><text x="4.0633%" y="863.50"></text></g><g><title>Compile::Output (86 samples, 0.01%)</title><rect x="3.8124%" y="917" width="0.0134%" height="15" fill="rgb(241,136,10)" fg:x="24534" fg:w="86"/><text x="4.0624%" y="927.50"></text></g><g><title>Compile::init_buffer (86 samples, 0.01%)</title><rect x="3.8124%" y="901" width="0.0134%" height="15" fill="rgb(208,32,45)" fg:x="24534" fg:w="86"/><text x="4.0624%" y="911.50"></text></g><g><title>Compile::shorten_branches (82 samples, 0.01%)</title><rect x="3.8130%" y="885" width="0.0127%" height="15" fill="rgb(207,135,9)" fg:x="24538" fg:w="82"/><text x="4.0630%" y="895.50"></text></g><g><title>Compile::scratch_emit_size (82 samples, 0.01%)</title><rect x="3.8130%" y="869" width="0.0127%" height="15" fill="rgb(206,86,44)" fg:x="24538" fg:w="82"/><text x="4.0630%" y="879.50"></text></g><g><title>PhaseCFG::schedule_late (95 samples, 0.01%)</title><rect x="3.8307%" y="885" width="0.0148%" height="15" fill="rgb(245,177,15)" fg:x="24652" fg:w="95"/><text x="4.0807%" y="895.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (95 samples, 0.01%)</title><rect x="3.8307%" y="869" width="0.0148%" height="15" fill="rgb(206,64,50)" fg:x="24652" fg:w="95"/><text x="4.0807%" y="879.50"></text></g><g><title>MachNode::adr_type (66 samples, 0.01%)</title><rect x="3.8352%" y="853" width="0.0103%" height="15" fill="rgb(234,36,40)" fg:x="24681" fg:w="66"/><text x="4.0852%" y="863.50"></text></g><g><title>PhaseCFG::schedule_local (277 samples, 0.04%)</title><rect x="3.8455%" y="885" width="0.0430%" height="15" fill="rgb(213,64,8)" fg:x="24747" fg:w="277"/><text x="4.0955%" y="895.50"></text></g><g><title>PhaseCFG::sched_call (277 samples, 0.04%)</title><rect x="3.8455%" y="869" width="0.0430%" height="15" fill="rgb(210,75,36)" fg:x="24747" fg:w="277"/><text x="4.0955%" y="879.50"></text></g><g><title>PhaseCFG::do_global_code_motion (390 samples, 0.06%)</title><rect x="3.8301%" y="917" width="0.0606%" height="15" fill="rgb(229,88,21)" fg:x="24648" fg:w="390"/><text x="4.0801%" y="927.50"></text></g><g><title>PhaseCFG::global_code_motion (390 samples, 0.06%)</title><rect x="3.8301%" y="901" width="0.0606%" height="15" fill="rgb(252,204,47)" fg:x="24648" fg:w="390"/><text x="4.0801%" y="911.50"></text></g><g><title>PhaseChaitin::Split (72 samples, 0.01%)</title><rect x="3.8907%" y="901" width="0.0112%" height="15" fill="rgb(208,77,27)" fg:x="25038" fg:w="72"/><text x="4.1407%" y="911.50"></text></g><g><title>Compile::Code_Gen (590 samples, 0.09%)</title><rect x="3.8124%" y="933" width="0.0917%" height="15" fill="rgb(221,76,26)" fg:x="24534" fg:w="590"/><text x="4.0624%" y="943.50"></text></g><g><title>PhaseChaitin::Register_Allocate (86 samples, 0.01%)</title><rect x="3.8907%" y="917" width="0.0134%" height="15" fill="rgb(225,139,18)" fg:x="25038" fg:w="86"/><text x="4.1407%" y="927.50"></text></g><g><title>OopFlow::compute_reach (308 samples, 0.05%)</title><rect x="4.0186%" y="869" width="0.0479%" height="15" fill="rgb(230,137,11)" fg:x="25861" fg:w="308"/><text x="4.2686%" y="879.50"></text></g><g><title>OopFlow::build_oop_map (184 samples, 0.03%)</title><rect x="4.0378%" y="853" width="0.0286%" height="15" fill="rgb(212,28,1)" fg:x="25985" fg:w="184"/><text x="4.2878%" y="863.50"></text></g><g><title>__memmove_sse2_unaligned_erms (90 samples, 0.01%)</title><rect x="4.0699%" y="869" width="0.0140%" height="15" fill="rgb(248,164,17)" fg:x="26191" fg:w="90"/><text x="4.3199%" y="879.50"></text></g><g><title>Compile::BuildOopMaps (1,130 samples, 0.18%)</title><rect x="3.9084%" y="885" width="0.1756%" height="15" fill="rgb(222,171,42)" fg:x="25152" fg:w="1130"/><text x="4.1584%" y="895.50"></text></g><g><title>Compile::scratch_emit_size (215 samples, 0.03%)</title><rect x="4.1301%" y="853" width="0.0334%" height="15" fill="rgb(243,84,45)" fg:x="26579" fg:w="215"/><text x="4.3801%" y="863.50"></text></g><g><title>Compile::shorten_branches (458 samples, 0.07%)</title><rect x="4.0966%" y="869" width="0.0712%" height="15" fill="rgb(252,49,23)" fg:x="26363" fg:w="458"/><text x="4.3466%" y="879.50"></text></g><g><title>Compile::init_buffer (541 samples, 0.08%)</title><rect x="4.0840%" y="885" width="0.0841%" height="15" fill="rgb(215,19,7)" fg:x="26282" fg:w="541"/><text x="4.3340%" y="895.50"></text></g><g><title>Compile::Output (1,694 samples, 0.26%)</title><rect x="3.9050%" y="901" width="0.2632%" height="15" fill="rgb(238,81,41)" fg:x="25130" fg:w="1694"/><text x="4.1550%" y="911.50"></text></g><g><title>Compile::FillLocArray (77 samples, 0.01%)</title><rect x="4.2128%" y="869" width="0.0120%" height="15" fill="rgb(210,199,37)" fg:x="27111" fg:w="77"/><text x="4.4628%" y="879.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (98 samples, 0.02%)</title><rect x="4.2257%" y="869" width="0.0152%" height="15" fill="rgb(244,192,49)" fg:x="27194" fg:w="98"/><text x="4.4757%" y="879.50"></text></g><g><title>Compile::Process_OopMap_Node (373 samples, 0.06%)</title><rect x="4.2050%" y="885" width="0.0580%" height="15" fill="rgb(226,211,11)" fg:x="27061" fg:w="373"/><text x="4.4550%" y="895.50"></text></g><g><title>Compile::valid_bundle_info (77 samples, 0.01%)</title><rect x="4.2644%" y="885" width="0.0120%" height="15" fill="rgb(236,162,54)" fg:x="27443" fg:w="77"/><text x="4.5144%" y="895.50"></text></g><g><title>Compile::fill_buffer (863 samples, 0.13%)</title><rect x="4.1684%" y="901" width="0.1341%" height="15" fill="rgb(220,229,9)" fg:x="26825" fg:w="863"/><text x="4.4184%" y="911.50"></text></g><g><title>Matcher::find_shared (528 samples, 0.08%)</title><rect x="4.3203%" y="885" width="0.0820%" height="15" fill="rgb(250,87,22)" fg:x="27803" fg:w="528"/><text x="4.5703%" y="895.50"></text></g><g><title>Arena::contains (785 samples, 0.12%)</title><rect x="4.4861%" y="869" width="0.1220%" height="15" fill="rgb(239,43,17)" fg:x="28870" fg:w="785"/><text x="4.7361%" y="879.50"></text></g><g><title>Matcher::match_tree (166 samples, 0.03%)</title><rect x="4.6246%" y="853" width="0.0258%" height="15" fill="rgb(231,177,25)" fg:x="29761" fg:w="166"/><text x="4.8746%" y="863.50"></text></g><g><title>Matcher::match_sfpt (221 samples, 0.03%)</title><rect x="4.6179%" y="869" width="0.0343%" height="15" fill="rgb(219,179,1)" fg:x="29718" fg:w="221"/><text x="4.8679%" y="879.50"></text></g><g><title>State::DFA (73 samples, 0.01%)</title><rect x="4.7446%" y="805" width="0.0113%" height="15" fill="rgb(238,219,53)" fg:x="30533" fg:w="73"/><text x="4.9946%" y="815.50"></text></g><g><title>Matcher::Label_Root (171 samples, 0.03%)</title><rect x="4.7303%" y="821" width="0.0266%" height="15" fill="rgb(232,167,36)" fg:x="30441" fg:w="171"/><text x="4.9803%" y="831.50"></text></g><g><title>State::DFA (84 samples, 0.01%)</title><rect x="4.7582%" y="821" width="0.0131%" height="15" fill="rgb(244,19,51)" fg:x="30621" fg:w="84"/><text x="5.0082%" y="831.50"></text></g><g><title>Matcher::Label_Root (377 samples, 0.06%)</title><rect x="4.7143%" y="837" width="0.0586%" height="15" fill="rgb(224,6,22)" fg:x="30338" fg:w="377"/><text x="4.9643%" y="847.50"></text></g><g><title>Matcher::Label_Root (602 samples, 0.09%)</title><rect x="4.6976%" y="853" width="0.0935%" height="15" fill="rgb(224,145,5)" fg:x="30231" fg:w="602"/><text x="4.9476%" y="863.50"></text></g><g><title>Matcher::ReduceInst_Interior (78 samples, 0.01%)</title><rect x="4.8064%" y="805" width="0.0121%" height="15" fill="rgb(234,130,49)" fg:x="30931" fg:w="78"/><text x="5.0564%" y="815.50"></text></g><g><title>Matcher::ReduceInst (137 samples, 0.02%)</title><rect x="4.8038%" y="821" width="0.0213%" height="15" fill="rgb(254,6,2)" fg:x="30914" fg:w="137"/><text x="5.0538%" y="831.50"></text></g><g><title>Matcher::ReduceInst_Interior (246 samples, 0.04%)</title><rect x="4.7985%" y="837" width="0.0382%" height="15" fill="rgb(208,96,46)" fg:x="30880" fg:w="246"/><text x="5.0485%" y="847.50"></text></g><g><title>State::MachNodeGenerator (81 samples, 0.01%)</title><rect x="4.8428%" y="837" width="0.0126%" height="15" fill="rgb(239,3,39)" fg:x="31165" fg:w="81"/><text x="5.0928%" y="847.50"></text></g><g><title>Matcher::ReduceInst (461 samples, 0.07%)</title><rect x="4.7912%" y="853" width="0.0716%" height="15" fill="rgb(233,210,1)" fg:x="30833" fg:w="461"/><text x="5.0412%" y="863.50"></text></g><g><title>Matcher::match_tree (1,371 samples, 0.21%)</title><rect x="4.6523%" y="869" width="0.2130%" height="15" fill="rgb(244,137,37)" fg:x="29939" fg:w="1371"/><text x="4.9023%" y="879.50"></text></g><g><title>Node::clone (125 samples, 0.02%)</title><rect x="4.8667%" y="869" width="0.0194%" height="15" fill="rgb(240,136,2)" fg:x="31319" fg:w="125"/><text x="5.1167%" y="879.50"></text></g><g><title>Node::out_grow (68 samples, 0.01%)</title><rect x="4.8864%" y="869" width="0.0106%" height="15" fill="rgb(239,18,37)" fg:x="31446" fg:w="68"/><text x="5.1364%" y="879.50"></text></g><g><title>Matcher::xform (3,177 samples, 0.49%)</title><rect x="4.4043%" y="885" width="0.4937%" height="15" fill="rgb(218,185,22)" fg:x="28343" fg:w="3177"/><text x="4.6543%" y="895.50"></text></g><g><title>Matcher::match (3,821 samples, 0.59%)</title><rect x="4.3051%" y="901" width="0.5937%" height="15" fill="rgb(225,218,4)" fg:x="27705" fg:w="3821"/><text x="4.5551%" y="911.50"></text></g><g><title>PhaseBlockLayout::find_edges (85 samples, 0.01%)</title><rect x="4.8996%" y="885" width="0.0132%" height="15" fill="rgb(230,182,32)" fg:x="31531" fg:w="85"/><text x="5.1496%" y="895.50"></text></g><g><title>PhaseBlockLayout::grow_traces (79 samples, 0.01%)</title><rect x="4.9128%" y="885" width="0.0123%" height="15" fill="rgb(242,56,43)" fg:x="31616" fg:w="79"/><text x="5.1628%" y="895.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (228 samples, 0.04%)</title><rect x="4.8990%" y="901" width="0.0354%" height="15" fill="rgb(233,99,24)" fg:x="31527" fg:w="228"/><text x="5.1490%" y="911.50"></text></g><g><title>PhaseCFG::build_cfg (178 samples, 0.03%)</title><rect x="4.9358%" y="885" width="0.0277%" height="15" fill="rgb(234,209,42)" fg:x="31764" fg:w="178"/><text x="5.1858%" y="895.50"></text></g><g><title>PhaseCFG::PhaseCFG (189 samples, 0.03%)</title><rect x="4.9344%" y="901" width="0.0294%" height="15" fill="rgb(227,7,12)" fg:x="31755" fg:w="189"/><text x="5.1844%" y="911.50"></text></g><g><title>PhaseCFG::build_dominator_tree (116 samples, 0.02%)</title><rect x="4.9638%" y="885" width="0.0180%" height="15" fill="rgb(245,203,43)" fg:x="31944" fg:w="116"/><text x="5.2138%" y="895.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (90 samples, 0.01%)</title><rect x="4.9818%" y="885" width="0.0140%" height="15" fill="rgb(238,205,33)" fg:x="32060" fg:w="90"/><text x="5.2318%" y="895.50"></text></g><g><title>PhaseCFG::implicit_null_check (74 samples, 0.01%)</title><rect x="5.0724%" y="869" width="0.0115%" height="15" fill="rgb(231,56,7)" fg:x="32643" fg:w="74"/><text x="5.3224%" y="879.50"></text></g><g><title>Node_Backward_Iterator::next (351 samples, 0.05%)</title><rect x="5.1195%" y="853" width="0.0545%" height="15" fill="rgb(244,186,29)" fg:x="32946" fg:w="351"/><text x="5.3695%" y="863.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (179 samples, 0.03%)</title><rect x="5.1741%" y="853" width="0.0278%" height="15" fill="rgb(234,111,31)" fg:x="33297" fg:w="179"/><text x="5.4241%" y="863.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (207 samples, 0.03%)</title><rect x="5.2019%" y="853" width="0.0322%" height="15" fill="rgb(241,149,10)" fg:x="33476" fg:w="207"/><text x="5.4519%" y="863.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (83 samples, 0.01%)</title><rect x="5.2340%" y="853" width="0.0129%" height="15" fill="rgb(249,206,44)" fg:x="33683" fg:w="83"/><text x="5.4840%" y="863.50"></text></g><g><title>PhaseCFG::schedule_late (998 samples, 0.16%)</title><rect x="5.0925%" y="869" width="0.1551%" height="15" fill="rgb(251,153,30)" fg:x="32772" fg:w="998"/><text x="5.3425%" y="879.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (84 samples, 0.01%)</title><rect x="5.3103%" y="853" width="0.0131%" height="15" fill="rgb(239,152,38)" fg:x="34174" fg:w="84"/><text x="5.5603%" y="863.50"></text></g><g><title>PhaseCFG::select (132 samples, 0.02%)</title><rect x="5.3291%" y="853" width="0.0205%" height="15" fill="rgb(249,139,47)" fg:x="34295" fg:w="132"/><text x="5.5791%" y="863.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (88 samples, 0.01%)</title><rect x="5.3497%" y="853" width="0.0137%" height="15" fill="rgb(244,64,35)" fg:x="34427" fg:w="88"/><text x="5.5997%" y="863.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (74 samples, 0.01%)</title><rect x="5.3633%" y="853" width="0.0115%" height="15" fill="rgb(216,46,15)" fg:x="34515" fg:w="74"/><text x="5.6133%" y="863.50"></text></g><g><title>PhaseCFG::schedule_local (836 samples, 0.13%)</title><rect x="5.2476%" y="869" width="0.1299%" height="15" fill="rgb(250,74,19)" fg:x="33770" fg:w="836"/><text x="5.4976%" y="879.50"></text></g><g><title>RegMask::Size (139 samples, 0.02%)</title><rect x="5.4437%" y="853" width="0.0216%" height="15" fill="rgb(249,42,33)" fg:x="35032" fg:w="139"/><text x="5.6937%" y="863.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (592 samples, 0.09%)</title><rect x="5.3866%" y="869" width="0.0920%" height="15" fill="rgb(242,149,17)" fg:x="34665" fg:w="592"/><text x="5.6366%" y="879.50"></text></g><g><title>PhaseChaitin::mark_ssa (117 samples, 0.02%)</title><rect x="5.4786%" y="869" width="0.0182%" height="15" fill="rgb(244,29,21)" fg:x="35257" fg:w="117"/><text x="5.7286%" y="879.50"></text></g><g><title>IndexSet::initialize (159 samples, 0.02%)</title><rect x="5.5063%" y="853" width="0.0247%" height="15" fill="rgb(220,130,37)" fg:x="35435" fg:w="159"/><text x="5.7563%" y="863.50"></text></g><g><title>PhaseIFG::init (291 samples, 0.05%)</title><rect x="5.4968%" y="869" width="0.0452%" height="15" fill="rgb(211,67,2)" fg:x="35374" fg:w="291"/><text x="5.7468%" y="879.50"></text></g><g><title>[libc.so.6] (71 samples, 0.01%)</title><rect x="5.5310%" y="853" width="0.0110%" height="15" fill="rgb(235,68,52)" fg:x="35594" fg:w="71"/><text x="5.7810%" y="863.50"></text></g><g><title>IndexSet::initialize (74 samples, 0.01%)</title><rect x="5.5941%" y="853" width="0.0115%" height="15" fill="rgb(246,142,3)" fg:x="36000" fg:w="74"/><text x="5.8441%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (132 samples, 0.02%)</title><rect x="5.6331%" y="837" width="0.0205%" height="15" fill="rgb(241,25,7)" fg:x="36251" fg:w="132"/><text x="5.8831%" y="847.50"></text></g><g><title>PhaseLive::add_livein (307 samples, 0.05%)</title><rect x="5.6060%" y="853" width="0.0477%" height="15" fill="rgb(242,119,39)" fg:x="36077" fg:w="307"/><text x="5.8560%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (90 samples, 0.01%)</title><rect x="5.6966%" y="837" width="0.0140%" height="15" fill="rgb(241,98,45)" fg:x="36660" fg:w="90"/><text x="5.9466%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (153 samples, 0.02%)</title><rect x="5.7147%" y="837" width="0.0238%" height="15" fill="rgb(254,28,30)" fg:x="36776" fg:w="153"/><text x="5.9647%" y="847.50"></text></g><g><title>PhaseLive::add_liveout (554 samples, 0.09%)</title><rect x="5.6538%" y="853" width="0.0861%" height="15" fill="rgb(241,142,54)" fg:x="36384" fg:w="554"/><text x="5.9038%" y="863.50"></text></g><g><title>PhaseLive::compute (1,272 samples, 0.20%)</title><rect x="5.5425%" y="869" width="0.1977%" height="15" fill="rgb(222,85,15)" fg:x="35668" fg:w="1272"/><text x="5.7925%" y="879.50"></text></g><g><title>PhaseCFG::global_code_motion (4,819 samples, 0.75%)</title><rect x="4.9958%" y="885" width="0.7488%" height="15" fill="rgb(210,85,47)" fg:x="32150" fg:w="4819"/><text x="5.2458%" y="895.50"></text></g><g><title>PhaseCFG::do_global_code_motion (5,026 samples, 0.78%)</title><rect x="4.9638%" y="901" width="0.7810%" height="15" fill="rgb(224,206,25)" fg:x="31944" fg:w="5026"/><text x="5.2138%" y="911.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (118 samples, 0.02%)</title><rect x="5.7507%" y="901" width="0.0183%" height="15" fill="rgb(243,201,19)" fg:x="37008" fg:w="118"/><text x="6.0007%" y="911.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,524 samples, 0.24%)</title><rect x="5.7992%" y="885" width="0.2368%" height="15" fill="rgb(236,59,4)" fg:x="37320" fg:w="1524"/><text x="6.0492%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (445 samples, 0.07%)</title><rect x="6.1720%" y="869" width="0.0691%" height="15" fill="rgb(254,179,45)" fg:x="39719" fg:w="445"/><text x="6.4220%" y="879.50"></text></g><g><title>PhaseChaitin::bias_color (236 samples, 0.04%)</title><rect x="6.2411%" y="869" width="0.0367%" height="15" fill="rgb(226,14,10)" fg:x="40164" fg:w="236"/><text x="6.4911%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (77 samples, 0.01%)</title><rect x="6.3636%" y="853" width="0.0120%" height="15" fill="rgb(244,27,41)" fg:x="40952" fg:w="77"/><text x="6.6136%" y="863.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (110 samples, 0.02%)</title><rect x="6.3755%" y="853" width="0.0171%" height="15" fill="rgb(235,35,32)" fg:x="41029" fg:w="110"/><text x="6.6255%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (547 samples, 0.08%)</title><rect x="6.3926%" y="853" width="0.0850%" height="15" fill="rgb(218,68,31)" fg:x="41139" fg:w="547"/><text x="6.6426%" y="863.50"></text></g><g><title>PhaseIFG::re_insert (1,300 samples, 0.20%)</title><rect x="6.2795%" y="869" width="0.2020%" height="15" fill="rgb(207,120,37)" fg:x="40411" fg:w="1300"/><text x="6.5295%" y="879.50"></text></g><g><title>RegMask::clear_to_sets (236 samples, 0.04%)</title><rect x="6.4815%" y="869" width="0.0367%" height="15" fill="rgb(227,98,0)" fg:x="41711" fg:w="236"/><text x="6.7315%" y="879.50"></text></g><g><title>PhaseChaitin::Select (3,114 samples, 0.48%)</title><rect x="6.0360%" y="885" width="0.4839%" height="15" fill="rgb(207,7,3)" fg:x="38844" fg:w="3114"/><text x="6.2860%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (438 samples, 0.07%)</title><rect x="6.5873%" y="869" width="0.0681%" height="15" fill="rgb(206,98,19)" fg:x="42392" fg:w="438"/><text x="6.8373%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (74 samples, 0.01%)</title><rect x="6.7567%" y="853" width="0.0115%" height="15" fill="rgb(217,5,26)" fg:x="43482" fg:w="74"/><text x="7.0067%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (604 samples, 0.09%)</title><rect x="6.7682%" y="853" width="0.0939%" height="15" fill="rgb(235,190,38)" fg:x="43556" fg:w="604"/><text x="7.0182%" y="863.50"></text></g><g><title>PhaseChaitin::Simplify (2,208 samples, 0.34%)</title><rect x="6.5199%" y="885" width="0.3431%" height="15" fill="rgb(247,86,24)" fg:x="41958" fg:w="2208"/><text x="6.7699%" y="895.50"></text></g><g><title>PhaseIFG::remove_node (1,336 samples, 0.21%)</title><rect x="6.6554%" y="869" width="0.2076%" height="15" fill="rgb(205,101,16)" fg:x="42830" fg:w="1336"/><text x="6.9054%" y="879.50"></text></g><g><title>MachNode::rematerialize (246 samples, 0.04%)</title><rect x="7.4418%" y="869" width="0.0382%" height="15" fill="rgb(246,168,33)" fg:x="47891" fg:w="246"/><text x="7.6918%" y="879.50"></text></g><g><title>Node::rematerialize (199 samples, 0.03%)</title><rect x="7.4891%" y="869" width="0.0309%" height="15" fill="rgb(231,114,1)" fg:x="48195" fg:w="199"/><text x="7.7391%" y="879.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (125 samples, 0.02%)</title><rect x="7.5626%" y="853" width="0.0194%" height="15" fill="rgb(207,184,53)" fg:x="48668" fg:w="125"/><text x="7.8126%" y="863.50"></text></g><g><title>PhaseChaitin::split_USE (237 samples, 0.04%)</title><rect x="7.5512%" y="869" width="0.0368%" height="15" fill="rgb(224,95,51)" fg:x="48595" fg:w="237"/><text x="7.8012%" y="879.50"></text></g><g><title>PhaseChaitin::Split (4,819 samples, 0.75%)</title><rect x="6.8630%" y="885" width="0.7488%" height="15" fill="rgb(212,188,45)" fg:x="44166" fg:w="4819"/><text x="7.1130%" y="895.50"></text></g><g><title>IndexSet::IndexSet (369 samples, 0.06%)</title><rect x="7.7991%" y="869" width="0.0573%" height="15" fill="rgb(223,154,38)" fg:x="50190" fg:w="369"/><text x="8.0491%" y="879.50"></text></g><g><title>MachNode::rematerialize (110 samples, 0.02%)</title><rect x="7.8589%" y="869" width="0.0171%" height="15" fill="rgb(251,22,52)" fg:x="50575" fg:w="110"/><text x="8.1089%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (67 samples, 0.01%)</title><rect x="7.9776%" y="853" width="0.0104%" height="15" fill="rgb(229,209,22)" fg:x="51339" fg:w="67"/><text x="8.2276%" y="863.50"></text></g><g><title>MachNode::rematerialize (122 samples, 0.02%)</title><rect x="7.9966%" y="853" width="0.0190%" height="15" fill="rgb(234,138,34)" fg:x="51461" fg:w="122"/><text x="8.2466%" y="863.50"></text></g><g><title>PhaseChaitin::raise_pressure (191 samples, 0.03%)</title><rect x="8.0190%" y="853" width="0.0297%" height="15" fill="rgb(212,95,11)" fg:x="51605" fg:w="191"/><text x="8.2690%" y="863.50"></text></g><g><title>RegMask::is_UP (77 samples, 0.01%)</title><rect x="8.0367%" y="837" width="0.0120%" height="15" fill="rgb(240,179,47)" fg:x="51719" fg:w="77"/><text x="8.2867%" y="847.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,092 samples, 0.17%)</title><rect x="7.8797%" y="869" width="0.1697%" height="15" fill="rgb(240,163,11)" fg:x="50709" fg:w="1092"/><text x="8.1297%" y="879.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (71 samples, 0.01%)</title><rect x="8.0570%" y="869" width="0.0110%" height="15" fill="rgb(236,37,12)" fg:x="51850" fg:w="71"/><text x="8.3070%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (213 samples, 0.03%)</title><rect x="8.1277%" y="853" width="0.0331%" height="15" fill="rgb(232,164,16)" fg:x="52305" fg:w="213"/><text x="8.3777%" y="863.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (712 samples, 0.11%)</title><rect x="8.0681%" y="869" width="0.1106%" height="15" fill="rgb(244,205,15)" fg:x="51921" fg:w="712"/><text x="8.3181%" y="879.50"></text></g><g><title>RegMask::is_UP (115 samples, 0.02%)</title><rect x="8.1608%" y="853" width="0.0179%" height="15" fill="rgb(223,117,47)" fg:x="52518" fg:w="115"/><text x="8.4108%" y="863.50"></text></g><g><title>IndexSet::alloc_block_containing (171 samples, 0.03%)</title><rect x="8.6062%" y="853" width="0.0266%" height="15" fill="rgb(244,107,35)" fg:x="55384" fg:w="171"/><text x="8.8562%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,200 samples, 0.19%)</title><rect x="8.6362%" y="853" width="0.1865%" height="15" fill="rgb(205,140,8)" fg:x="55577" fg:w="1200"/><text x="8.8862%" y="863.50"></text></g><g><title>PhaseChaitin::interfere_with_live (4,170 samples, 0.65%)</title><rect x="8.1787%" y="869" width="0.6480%" height="15" fill="rgb(228,84,46)" fg:x="52633" fg:w="4170"/><text x="8.4287%" y="879.50"></text></g><g><title>PhaseChaitin::lower_pressure (148 samples, 0.02%)</title><rect x="8.8267%" y="869" width="0.0230%" height="15" fill="rgb(254,188,9)" fg:x="56803" fg:w="148"/><text x="9.0767%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (229 samples, 0.04%)</title><rect x="8.9449%" y="853" width="0.0356%" height="15" fill="rgb(206,112,54)" fg:x="57564" fg:w="229"/><text x="9.1949%" y="863.50"></text></g><g><title>RegMask::Size (419 samples, 0.07%)</title><rect x="8.9805%" y="853" width="0.0651%" height="15" fill="rgb(216,84,49)" fg:x="57793" fg:w="419"/><text x="9.2305%" y="863.50"></text></g><g><title>RegMask::smear_to_sets (969 samples, 0.15%)</title><rect x="9.0456%" y="853" width="0.1506%" height="15" fill="rgb(214,194,35)" fg:x="58212" fg:w="969"/><text x="9.2956%" y="863.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,241 samples, 0.35%)</title><rect x="8.8497%" y="869" width="0.3482%" height="15" fill="rgb(249,28,3)" fg:x="56951" fg:w="2241"/><text x="9.0997%" y="879.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (10,274 samples, 1.60%)</title><rect x="7.6125%" y="885" width="1.5965%" height="15" fill="rgb(222,56,52)" fg:x="48989" fg:w="10274"/><text x="7.8625%" y="895.50"></text></g><g><title>IndexSetIterator::advance_and_next (85 samples, 0.01%)</title><rect x="9.3028%" y="853" width="0.0132%" height="15" fill="rgb(245,217,50)" fg:x="59867" fg:w="85"/><text x="9.5528%" y="863.50"></text></g><g><title>PhaseChaitin::interfere_with_live (475 samples, 0.07%)</title><rect x="9.2424%" y="869" width="0.0738%" height="15" fill="rgb(213,201,24)" fg:x="59478" fg:w="475"/><text x="9.4924%" y="879.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (697 samples, 0.11%)</title><rect x="9.2089%" y="885" width="0.1083%" height="15" fill="rgb(248,116,28)" fg:x="59263" fg:w="697"/><text x="9.4589%" y="895.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (173 samples, 0.03%)</title><rect x="9.3173%" y="885" width="0.0269%" height="15" fill="rgb(219,72,43)" fg:x="59960" fg:w="173"/><text x="9.5673%" y="895.50"></text></g><g><title>PhaseChaitin::de_ssa (144 samples, 0.02%)</title><rect x="9.3514%" y="885" width="0.0224%" height="15" fill="rgb(209,138,14)" fg:x="60180" fg:w="144"/><text x="9.6014%" y="895.50"></text></g><g><title>PhaseChaitin::fixup_spills (84 samples, 0.01%)</title><rect x="9.3740%" y="885" width="0.0131%" height="15" fill="rgb(222,18,33)" fg:x="60325" fg:w="84"/><text x="9.6240%" y="895.50"></text></g><g><title>MachCallJavaNode::in_RegMask (113 samples, 0.02%)</title><rect x="9.7336%" y="869" width="0.0176%" height="15" fill="rgb(213,199,7)" fg:x="62639" fg:w="113"/><text x="9.9836%" y="879.50"></text></g><g><title>MachNode::ideal_reg (102 samples, 0.02%)</title><rect x="9.7527%" y="869" width="0.0158%" height="15" fill="rgb(250,110,10)" fg:x="62762" fg:w="102"/><text x="10.0027%" y="879.50"></text></g><g><title>MachNode::in_RegMask (86 samples, 0.01%)</title><rect x="9.7685%" y="869" width="0.0134%" height="15" fill="rgb(248,123,6)" fg:x="62864" fg:w="86"/><text x="10.0185%" y="879.50"></text></g><g><title>RegMask::Size (1,587 samples, 0.25%)</title><rect x="9.8008%" y="869" width="0.2466%" height="15" fill="rgb(206,91,31)" fg:x="63072" fg:w="1587"/><text x="10.0508%" y="879.50"></text></g><g><title>RegMask::clear_to_sets (297 samples, 0.05%)</title><rect x="10.0474%" y="869" width="0.0462%" height="15" fill="rgb(211,154,13)" fg:x="64659" fg:w="297"/><text x="10.2974%" y="879.50"></text></g><g><title>RegMask::is_aligned_pairs (149 samples, 0.02%)</title><rect x="10.0936%" y="869" width="0.0232%" height="15" fill="rgb(225,148,7)" fg:x="64956" fg:w="149"/><text x="10.3436%" y="879.50"></text></g><g><title>RegMask::is_bound1 (177 samples, 0.03%)</title><rect x="10.1167%" y="869" width="0.0275%" height="15" fill="rgb(220,160,43)" fg:x="65105" fg:w="177"/><text x="10.3667%" y="879.50"></text></g><g><title>RegMask::is_bound_pair (119 samples, 0.02%)</title><rect x="10.1442%" y="869" width="0.0185%" height="15" fill="rgb(213,52,39)" fg:x="65282" fg:w="119"/><text x="10.3942%" y="879.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,209 samples, 0.81%)</title><rect x="9.3870%" y="885" width="0.8094%" height="15" fill="rgb(243,137,7)" fg:x="60409" fg:w="5209"/><text x="9.6370%" y="895.50"></text></g><g><title>PhaseChaitin::merge_multidefs (746 samples, 0.12%)</title><rect x="10.1966%" y="885" width="0.1159%" height="15" fill="rgb(230,79,13)" fg:x="65619" fg:w="746"/><text x="10.4466%" y="895.50"></text></g><g><title>RegMask::Size (66 samples, 0.01%)</title><rect x="11.1956%" y="837" width="0.0103%" height="15" fill="rgb(247,105,23)" fg:x="72048" fg:w="66"/><text x="11.4456%" y="847.50"></text></g><g><title>PhaseChaitin::use_prior_register (150 samples, 0.02%)</title><rect x="11.1849%" y="853" width="0.0233%" height="15" fill="rgb(223,179,41)" fg:x="71979" fg:w="150"/><text x="11.4349%" y="863.50"></text></g><g><title>PhaseChaitin::elide_copy (3,353 samples, 0.52%)</title><rect x="10.7001%" y="869" width="0.5210%" height="15" fill="rgb(218,9,34)" fg:x="68859" fg:w="3353"/><text x="10.9501%" y="879.50"></text></g><g><title>[libc.so.6] (120 samples, 0.02%)</title><rect x="11.2334%" y="869" width="0.0186%" height="15" fill="rgb(222,106,8)" fg:x="72291" fg:w="120"/><text x="11.4834%" y="879.50"></text></g><g><title>find_lowest_bit (504 samples, 0.08%)</title><rect x="11.2544%" y="869" width="0.0783%" height="15" fill="rgb(211,220,0)" fg:x="72426" fg:w="504"/><text x="11.5044%" y="879.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (6,571 samples, 1.02%)</title><rect x="10.3125%" y="885" width="1.0211%" height="15" fill="rgb(229,52,16)" fg:x="66365" fg:w="6571"/><text x="10.5625%" y="895.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (277 samples, 0.04%)</title><rect x="11.3341%" y="885" width="0.0430%" height="15" fill="rgb(212,155,18)" fg:x="72939" fg:w="277"/><text x="11.5841%" y="895.50"></text></g><g><title>PhaseIFG::Union (73 samples, 0.01%)</title><rect x="11.4003%" y="837" width="0.0113%" height="15" fill="rgb(242,21,14)" fg:x="73365" fg:w="73"/><text x="11.6503%" y="847.50"></text></g><g><title>PhaseCoalesce::combine_these_two (110 samples, 0.02%)</title><rect x="11.3953%" y="853" width="0.0171%" height="15" fill="rgb(222,19,48)" fg:x="73333" fg:w="110"/><text x="11.6453%" y="863.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (216 samples, 0.03%)</title><rect x="11.3791%" y="869" width="0.0336%" height="15" fill="rgb(232,45,27)" fg:x="73229" fg:w="216"/><text x="11.6291%" y="879.50"></text></g><g><title>PhaseCFG::is_uncommon (152 samples, 0.02%)</title><rect x="11.4239%" y="853" width="0.0236%" height="15" fill="rgb(249,103,42)" fg:x="73517" fg:w="152"/><text x="11.6739%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (74 samples, 0.01%)</title><rect x="11.5502%" y="821" width="0.0115%" height="15" fill="rgb(246,81,33)" fg:x="74330" fg:w="74"/><text x="11.8002%" y="831.50"></text></g><g><title>IndexSet::lrg_union (682 samples, 0.11%)</title><rect x="11.4576%" y="837" width="0.1060%" height="15" fill="rgb(252,33,42)" fg:x="73734" fg:w="682"/><text x="11.7076%" y="847.50"></text></g><g><title>IndexSetIterator::advance_and_next (70 samples, 0.01%)</title><rect x="11.7014%" y="821" width="0.0109%" height="15" fill="rgb(209,212,41)" fg:x="75303" fg:w="70"/><text x="11.9514%" y="831.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (941 samples, 0.15%)</title><rect x="11.5678%" y="837" width="0.1462%" height="15" fill="rgb(207,154,6)" fg:x="74443" fg:w="941"/><text x="11.8178%" y="847.50"></text></g><g><title>PhaseIFG::effective_degree (218 samples, 0.03%)</title><rect x="11.7140%" y="837" width="0.0339%" height="15" fill="rgb(223,64,47)" fg:x="75384" fg:w="218"/><text x="11.9640%" y="847.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,969 samples, 0.31%)</title><rect x="11.4475%" y="853" width="0.3060%" height="15" fill="rgb(211,161,38)" fg:x="73669" fg:w="1969"/><text x="11.6975%" y="863.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (2,195 samples, 0.34%)</title><rect x="11.4127%" y="869" width="0.3411%" height="15" fill="rgb(219,138,40)" fg:x="73445" fg:w="2195"/><text x="11.6627%" y="879.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (2,425 samples, 0.38%)</title><rect x="11.3771%" y="885" width="0.3768%" height="15" fill="rgb(241,228,46)" fg:x="73216" fg:w="2425"/><text x="11.6271%" y="895.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (68 samples, 0.01%)</title><rect x="11.8486%" y="869" width="0.0106%" height="15" fill="rgb(223,209,38)" fg:x="76250" fg:w="68"/><text x="12.0986%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (675 samples, 0.10%)</title><rect x="11.8591%" y="869" width="0.1049%" height="15" fill="rgb(236,164,45)" fg:x="76318" fg:w="675"/><text x="12.1091%" y="879.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,352 samples, 0.21%)</title><rect x="11.7543%" y="885" width="0.2101%" height="15" fill="rgb(231,15,5)" fg:x="75643" fg:w="1352"/><text x="12.0043%" y="895.50"></text></g><g><title>IndexSet::alloc_block_containing (109 samples, 0.02%)</title><rect x="12.0442%" y="869" width="0.0169%" height="15" fill="rgb(252,35,15)" fg:x="77509" fg:w="109"/><text x="12.2942%" y="879.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (114 samples, 0.02%)</title><rect x="12.0612%" y="869" width="0.0177%" height="15" fill="rgb(248,181,18)" fg:x="77618" fg:w="114"/><text x="12.3112%" y="879.50"></text></g><g><title>IndexSetIterator::advance_and_next (522 samples, 0.08%)</title><rect x="12.0789%" y="869" width="0.0811%" height="15" fill="rgb(233,39,42)" fg:x="77732" fg:w="522"/><text x="12.3289%" y="879.50"></text></g><g><title>PhaseIFG::SquareUp (1,269 samples, 0.20%)</title><rect x="11.9643%" y="885" width="0.1972%" height="15" fill="rgb(238,110,33)" fg:x="76995" fg:w="1269"/><text x="12.2143%" y="895.50"></text></g><g><title>IndexSet::initialize (248 samples, 0.04%)</title><rect x="12.1887%" y="869" width="0.0385%" height="15" fill="rgb(233,195,10)" fg:x="78439" fg:w="248"/><text x="12.4387%" y="879.50"></text></g><g><title>PhaseIFG::init (525 samples, 0.08%)</title><rect x="12.1615%" y="885" width="0.0816%" height="15" fill="rgb(254,105,3)" fg:x="78264" fg:w="525"/><text x="12.4115%" y="895.50"></text></g><g><title>[libc.so.6] (102 samples, 0.02%)</title><rect x="12.2273%" y="869" width="0.0158%" height="15" fill="rgb(221,225,9)" fg:x="78687" fg:w="102"/><text x="12.4773%" y="879.50"></text></g><g><title>IndexSet::alloc_block_containing (96 samples, 0.01%)</title><rect x="12.4832%" y="869" width="0.0149%" height="15" fill="rgb(224,227,45)" fg:x="80334" fg:w="96"/><text x="12.7332%" y="879.50"></text></g><g><title>IndexSet::free_block (71 samples, 0.01%)</title><rect x="12.4981%" y="869" width="0.0110%" height="15" fill="rgb(229,198,43)" fg:x="80430" fg:w="71"/><text x="12.7481%" y="879.50"></text></g><g><title>IndexSet::initialize (151 samples, 0.02%)</title><rect x="12.5091%" y="869" width="0.0235%" height="15" fill="rgb(206,209,35)" fg:x="80501" fg:w="151"/><text x="12.7591%" y="879.50"></text></g><g><title>__tls_get_addr (91 samples, 0.01%)</title><rect x="12.7094%" y="837" width="0.0141%" height="15" fill="rgb(245,195,53)" fg:x="81790" fg:w="91"/><text x="12.9594%" y="847.50"></text></g><g><title>IndexSet::alloc_block_containing (276 samples, 0.04%)</title><rect x="12.6818%" y="853" width="0.0429%" height="15" fill="rgb(240,92,26)" fg:x="81612" fg:w="276"/><text x="12.9318%" y="863.50"></text></g><g><title>IndexSetIterator::advance_and_next (405 samples, 0.06%)</title><rect x="12.7348%" y="853" width="0.0629%" height="15" fill="rgb(207,40,23)" fg:x="81953" fg:w="405"/><text x="12.9848%" y="863.50"></text></g><g><title>PhaseLive::add_liveout (1,752 samples, 0.27%)</title><rect x="12.5326%" y="869" width="0.2722%" height="15" fill="rgb(223,111,35)" fg:x="80652" fg:w="1752"/><text x="12.7826%" y="879.50"></text></g><g><title>PhaseLive::compute (3,628 samples, 0.56%)</title><rect x="12.2439%" y="885" width="0.5638%" height="15" fill="rgb(229,147,28)" fg:x="78794" fg:w="3628"/><text x="12.4939%" y="895.50"></text></g><g><title>find_lowest_bit (66 samples, 0.01%)</title><rect x="12.8154%" y="885" width="0.0103%" height="15" fill="rgb(211,29,28)" fg:x="82472" fg:w="66"/><text x="13.0654%" y="895.50"></text></g><g><title>PhaseChaitin::Register_Allocate (45,401 samples, 7.05%)</title><rect x="5.7728%" y="901" width="7.0549%" height="15" fill="rgb(228,72,33)" fg:x="37150" fg:w="45401"/><text x="6.0228%" y="911.50">PhaseChai..</text></g><g><title>Compile::Code_Gen (57,491 samples, 8.93%)</title><rect x="3.9040%" y="917" width="8.9336%" height="15" fill="rgb(205,214,31)" fg:x="25124" fg:w="57491"/><text x="4.1540%" y="927.50">Compile::Code..</text></g><g><title>Parse::do_all_blocks (65 samples, 0.01%)</title><rect x="12.8970%" y="213" width="0.0101%" height="15" fill="rgb(224,111,15)" fg:x="82997" fg:w="65"/><text x="13.1470%" y="223.50"></text></g><g><title>ParseGenerator::generate (89 samples, 0.01%)</title><rect x="12.8944%" y="245" width="0.0138%" height="15" fill="rgb(253,21,26)" fg:x="82980" fg:w="89"/><text x="13.1444%" y="255.50"></text></g><g><title>Parse::Parse (88 samples, 0.01%)</title><rect x="12.8945%" y="229" width="0.0137%" height="15" fill="rgb(245,139,43)" fg:x="82981" fg:w="88"/><text x="13.1445%" y="239.50"></text></g><g><title>Parse::do_call (135 samples, 0.02%)</title><rect x="12.8888%" y="261" width="0.0210%" height="15" fill="rgb(252,170,7)" fg:x="82944" fg:w="135"/><text x="13.1388%" y="271.50"></text></g><g><title>Parse::do_one_block (219 samples, 0.03%)</title><rect x="12.8860%" y="293" width="0.0340%" height="15" fill="rgb(231,118,14)" fg:x="82926" fg:w="219"/><text x="13.1360%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (216 samples, 0.03%)</title><rect x="12.8864%" y="277" width="0.0336%" height="15" fill="rgb(238,83,0)" fg:x="82929" fg:w="216"/><text x="13.1364%" y="287.50"></text></g><g><title>Parse::do_all_blocks (226 samples, 0.04%)</title><rect x="12.8858%" y="309" width="0.0351%" height="15" fill="rgb(221,39,39)" fg:x="82925" fg:w="226"/><text x="13.1358%" y="319.50"></text></g><g><title>ParseGenerator::generate (255 samples, 0.04%)</title><rect x="12.8827%" y="341" width="0.0396%" height="15" fill="rgb(222,119,46)" fg:x="82905" fg:w="255"/><text x="13.1327%" y="351.50"></text></g><g><title>Parse::Parse (255 samples, 0.04%)</title><rect x="12.8827%" y="325" width="0.0396%" height="15" fill="rgb(222,165,49)" fg:x="82905" fg:w="255"/><text x="13.1327%" y="335.50"></text></g><g><title>Parse::do_call (351 samples, 0.05%)</title><rect x="12.8743%" y="357" width="0.0545%" height="15" fill="rgb(219,113,52)" fg:x="82851" fg:w="351"/><text x="13.1243%" y="367.50"></text></g><g><title>Parse::do_one_block (461 samples, 0.07%)</title><rect x="12.8709%" y="389" width="0.0716%" height="15" fill="rgb(214,7,15)" fg:x="82829" fg:w="461"/><text x="13.1209%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (459 samples, 0.07%)</title><rect x="12.8712%" y="373" width="0.0713%" height="15" fill="rgb(235,32,4)" fg:x="82831" fg:w="459"/><text x="13.1212%" y="383.50"></text></g><g><title>Parse::do_all_blocks (465 samples, 0.07%)</title><rect x="12.8709%" y="405" width="0.0723%" height="15" fill="rgb(238,90,54)" fg:x="82829" fg:w="465"/><text x="13.1209%" y="415.50"></text></g><g><title>Parse::Parse (505 samples, 0.08%)</title><rect x="12.8673%" y="421" width="0.0785%" height="15" fill="rgb(213,208,19)" fg:x="82806" fg:w="505"/><text x="13.1173%" y="431.50"></text></g><g><title>ParseGenerator::generate (506 samples, 0.08%)</title><rect x="12.8673%" y="437" width="0.0786%" height="15" fill="rgb(233,156,4)" fg:x="82806" fg:w="506"/><text x="13.1173%" y="447.50"></text></g><g><title>Parse::do_call (637 samples, 0.10%)</title><rect x="12.8568%" y="453" width="0.0990%" height="15" fill="rgb(207,194,5)" fg:x="82738" fg:w="637"/><text x="13.1068%" y="463.50"></text></g><g><title>Parse::do_all_blocks (731 samples, 0.11%)</title><rect x="12.8544%" y="501" width="0.1136%" height="15" fill="rgb(206,111,30)" fg:x="82723" fg:w="731"/><text x="13.1044%" y="511.50"></text></g><g><title>Parse::do_one_block (731 samples, 0.11%)</title><rect x="12.8544%" y="485" width="0.1136%" height="15" fill="rgb(243,70,54)" fg:x="82723" fg:w="731"/><text x="13.1044%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (730 samples, 0.11%)</title><rect x="12.8546%" y="469" width="0.1134%" height="15" fill="rgb(242,28,8)" fg:x="82724" fg:w="730"/><text x="13.1046%" y="479.50"></text></g><g><title>ParseGenerator::generate (738 samples, 0.11%)</title><rect x="12.8537%" y="533" width="0.1147%" height="15" fill="rgb(219,106,18)" fg:x="82718" fg:w="738"/><text x="13.1037%" y="543.50"></text></g><g><title>Parse::Parse (738 samples, 0.11%)</title><rect x="12.8537%" y="517" width="0.1147%" height="15" fill="rgb(244,222,10)" fg:x="82718" fg:w="738"/><text x="13.1037%" y="527.50"></text></g><g><title>Parse::do_call (837 samples, 0.13%)</title><rect x="12.8454%" y="549" width="0.1301%" height="15" fill="rgb(236,179,52)" fg:x="82665" fg:w="837"/><text x="13.0954%" y="559.50"></text></g><g><title>ParseGenerator::generate (856 samples, 0.13%)</title><rect x="12.8448%" y="629" width="0.1330%" height="15" fill="rgb(213,23,39)" fg:x="82661" fg:w="856"/><text x="13.0948%" y="639.50"></text></g><g><title>Parse::Parse (856 samples, 0.13%)</title><rect x="12.8448%" y="613" width="0.1330%" height="15" fill="rgb(238,48,10)" fg:x="82661" fg:w="856"/><text x="13.0948%" y="623.50"></text></g><g><title>Parse::do_all_blocks (854 samples, 0.13%)</title><rect x="12.8451%" y="597" width="0.1327%" height="15" fill="rgb(251,196,23)" fg:x="82663" fg:w="854"/><text x="13.0951%" y="607.50"></text></g><g><title>Parse::do_one_block (854 samples, 0.13%)</title><rect x="12.8451%" y="581" width="0.1327%" height="15" fill="rgb(250,152,24)" fg:x="82663" fg:w="854"/><text x="13.0951%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (854 samples, 0.13%)</title><rect x="12.8451%" y="565" width="0.1327%" height="15" fill="rgb(209,150,17)" fg:x="82663" fg:w="854"/><text x="13.0951%" y="575.50"></text></g><g><title>Parse::do_call (83 samples, 0.01%)</title><rect x="12.9797%" y="437" width="0.0129%" height="15" fill="rgb(234,202,34)" fg:x="83529" fg:w="83"/><text x="13.2297%" y="447.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.02%)</title><rect x="12.9792%" y="517" width="0.0163%" height="15" fill="rgb(253,148,53)" fg:x="83526" fg:w="105"/><text x="13.2292%" y="527.50"></text></g><g><title>Parse::Parse (105 samples, 0.02%)</title><rect x="12.9792%" y="501" width="0.0163%" height="15" fill="rgb(218,129,16)" fg:x="83526" fg:w="105"/><text x="13.2292%" y="511.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.02%)</title><rect x="12.9792%" y="485" width="0.0163%" height="15" fill="rgb(216,85,19)" fg:x="83526" fg:w="105"/><text x="13.2292%" y="495.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.02%)</title><rect x="12.9792%" y="469" width="0.0163%" height="15" fill="rgb(235,228,7)" fg:x="83526" fg:w="105"/><text x="13.2292%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.02%)</title><rect x="12.9792%" y="453" width="0.0163%" height="15" fill="rgb(245,175,0)" fg:x="83526" fg:w="105"/><text x="13.2292%" y="463.50"></text></g><g><title>ParseGenerator::generate (136 samples, 0.02%)</title><rect x="12.9778%" y="613" width="0.0211%" height="15" fill="rgb(208,168,36)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="623.50"></text></g><g><title>Parse::Parse (136 samples, 0.02%)</title><rect x="12.9778%" y="597" width="0.0211%" height="15" fill="rgb(246,171,24)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="607.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.02%)</title><rect x="12.9778%" y="581" width="0.0211%" height="15" fill="rgb(215,142,24)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="591.50"></text></g><g><title>Parse::do_one_block (136 samples, 0.02%)</title><rect x="12.9778%" y="565" width="0.0211%" height="15" fill="rgb(250,187,7)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (136 samples, 0.02%)</title><rect x="12.9778%" y="549" width="0.0211%" height="15" fill="rgb(228,66,33)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="559.50"></text></g><g><title>Parse::do_call (136 samples, 0.02%)</title><rect x="12.9778%" y="533" width="0.0211%" height="15" fill="rgb(234,215,21)" fg:x="83517" fg:w="136"/><text x="13.2278%" y="543.50"></text></g><g><title>Parse::do_call (1,028 samples, 0.16%)</title><rect x="12.8406%" y="645" width="0.1597%" height="15" fill="rgb(222,191,20)" fg:x="82634" fg:w="1028"/><text x="13.0906%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (145 samples, 0.02%)</title><rect x="12.9778%" y="629" width="0.0225%" height="15" fill="rgb(245,79,54)" fg:x="83517" fg:w="145"/><text x="13.2278%" y="639.50"></text></g><g><title>ParseGenerator::generate (1,034 samples, 0.16%)</title><rect x="12.8406%" y="725" width="0.1607%" height="15" fill="rgb(240,10,37)" fg:x="82634" fg:w="1034"/><text x="13.0906%" y="735.50"></text></g><g><title>Parse::Parse (1,034 samples, 0.16%)</title><rect x="12.8406%" y="709" width="0.1607%" height="15" fill="rgb(214,192,32)" fg:x="82634" fg:w="1034"/><text x="13.0906%" y="719.50"></text></g><g><title>Parse::do_all_blocks (1,034 samples, 0.16%)</title><rect x="12.8406%" y="693" width="0.1607%" height="15" fill="rgb(209,36,54)" fg:x="82634" fg:w="1034"/><text x="13.0906%" y="703.50"></text></g><g><title>Parse::do_one_block (1,034 samples, 0.16%)</title><rect x="12.8406%" y="677" width="0.1607%" height="15" fill="rgb(220,10,11)" fg:x="82634" fg:w="1034"/><text x="13.0906%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (1,034 samples, 0.16%)</title><rect x="12.8406%" y="661" width="0.1607%" height="15" fill="rgb(221,106,17)" fg:x="82634" fg:w="1034"/><text x="13.0906%" y="671.50"></text></g><g><title>Parse::do_one_block (91 samples, 0.01%)</title><rect x="13.0039%" y="469" width="0.0141%" height="15" fill="rgb(251,142,44)" fg:x="83685" fg:w="91"/><text x="13.2539%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (91 samples, 0.01%)</title><rect x="13.0039%" y="453" width="0.0141%" height="15" fill="rgb(238,13,15)" fg:x="83685" fg:w="91"/><text x="13.2539%" y="463.50"></text></g><g><title>Parse::do_all_blocks (92 samples, 0.01%)</title><rect x="13.0039%" y="485" width="0.0143%" height="15" fill="rgb(208,107,27)" fg:x="83685" fg:w="92"/><text x="13.2539%" y="495.50"></text></g><g><title>ParseGenerator::generate (93 samples, 0.01%)</title><rect x="13.0039%" y="517" width="0.0145%" height="15" fill="rgb(205,136,37)" fg:x="83685" fg:w="93"/><text x="13.2539%" y="527.50"></text></g><g><title>Parse::Parse (93 samples, 0.01%)</title><rect x="13.0039%" y="501" width="0.0145%" height="15" fill="rgb(250,205,27)" fg:x="83685" fg:w="93"/><text x="13.2539%" y="511.50"></text></g><g><title>Parse::do_call (125 samples, 0.02%)</title><rect x="13.0019%" y="533" width="0.0194%" height="15" fill="rgb(210,80,43)" fg:x="83672" fg:w="125"/><text x="13.2519%" y="543.50"></text></g><g><title>ParseGenerator::generate (132 samples, 0.02%)</title><rect x="13.0019%" y="613" width="0.0205%" height="15" fill="rgb(247,160,36)" fg:x="83672" fg:w="132"/><text x="13.2519%" y="623.50"></text></g><g><title>Parse::Parse (132 samples, 0.02%)</title><rect x="13.0019%" y="597" width="0.0205%" height="15" fill="rgb(234,13,49)" fg:x="83672" fg:w="132"/><text x="13.2519%" y="607.50"></text></g><g><title>Parse::do_all_blocks (132 samples, 0.02%)</title><rect x="13.0019%" y="581" width="0.0205%" height="15" fill="rgb(234,122,0)" fg:x="83672" fg:w="132"/><text x="13.2519%" y="591.50"></text></g><g><title>Parse::do_one_block (132 samples, 0.02%)</title><rect x="13.0019%" y="565" width="0.0205%" height="15" fill="rgb(207,146,38)" fg:x="83672" fg:w="132"/><text x="13.2519%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (132 samples, 0.02%)</title><rect x="13.0019%" y="549" width="0.0205%" height="15" fill="rgb(207,177,25)" fg:x="83672" fg:w="132"/><text x="13.2519%" y="559.50"></text></g><g><title>ParseGenerator::generate (157 samples, 0.02%)</title><rect x="13.0013%" y="709" width="0.0244%" height="15" fill="rgb(211,178,42)" fg:x="83668" fg:w="157"/><text x="13.2513%" y="719.50"></text></g><g><title>Parse::Parse (157 samples, 0.02%)</title><rect x="13.0013%" y="693" width="0.0244%" height="15" fill="rgb(230,69,54)" fg:x="83668" fg:w="157"/><text x="13.2513%" y="703.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.02%)</title><rect x="13.0013%" y="677" width="0.0244%" height="15" fill="rgb(214,135,41)" fg:x="83668" fg:w="157"/><text x="13.2513%" y="687.50"></text></g><g><title>Parse::do_one_block (157 samples, 0.02%)</title><rect x="13.0013%" y="661" width="0.0244%" height="15" fill="rgb(237,67,25)" fg:x="83668" fg:w="157"/><text x="13.2513%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.02%)</title><rect x="13.0014%" y="645" width="0.0242%" height="15" fill="rgb(222,189,50)" fg:x="83669" fg:w="156"/><text x="13.2514%" y="655.50"></text></g><g><title>Parse::do_call (156 samples, 0.02%)</title><rect x="13.0014%" y="629" width="0.0242%" height="15" fill="rgb(245,148,34)" fg:x="83669" fg:w="156"/><text x="13.2514%" y="639.50"></text></g><g><title>ParseGenerator::generate (1,210 samples, 0.19%)</title><rect x="12.8403%" y="821" width="0.1880%" height="15" fill="rgb(222,29,6)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="831.50"></text></g><g><title>Parse::Parse (1,210 samples, 0.19%)</title><rect x="12.8403%" y="805" width="0.1880%" height="15" fill="rgb(221,189,43)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="815.50"></text></g><g><title>Parse::do_all_blocks (1,210 samples, 0.19%)</title><rect x="12.8403%" y="789" width="0.1880%" height="15" fill="rgb(207,36,27)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="799.50"></text></g><g><title>Parse::do_one_block (1,210 samples, 0.19%)</title><rect x="12.8403%" y="773" width="0.1880%" height="15" fill="rgb(217,90,24)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (1,210 samples, 0.19%)</title><rect x="12.8403%" y="757" width="0.1880%" height="15" fill="rgb(224,66,35)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="767.50"></text></g><g><title>Parse::do_call (1,210 samples, 0.19%)</title><rect x="12.8403%" y="741" width="0.1880%" height="15" fill="rgb(221,13,50)" fg:x="82632" fg:w="1210"/><text x="13.0903%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (174 samples, 0.03%)</title><rect x="13.0013%" y="725" width="0.0270%" height="15" fill="rgb(236,68,49)" fg:x="83668" fg:w="174"/><text x="13.2513%" y="735.50"></text></g><g><title>Parse::do_all_blocks (85 samples, 0.01%)</title><rect x="13.0372%" y="389" width="0.0132%" height="15" fill="rgb(229,146,28)" fg:x="83899" fg:w="85"/><text x="13.2872%" y="399.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.01%)</title><rect x="13.0372%" y="373" width="0.0132%" height="15" fill="rgb(225,31,38)" fg:x="83899" fg:w="85"/><text x="13.2872%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.01%)</title><rect x="13.0372%" y="357" width="0.0132%" height="15" fill="rgb(250,208,3)" fg:x="83899" fg:w="85"/><text x="13.2872%" y="367.50"></text></g><g><title>ParseGenerator::generate (94 samples, 0.01%)</title><rect x="13.0364%" y="421" width="0.0146%" height="15" fill="rgb(246,54,23)" fg:x="83894" fg:w="94"/><text x="13.2864%" y="431.50"></text></g><g><title>Parse::Parse (94 samples, 0.01%)</title><rect x="13.0364%" y="405" width="0.0146%" height="15" fill="rgb(243,76,11)" fg:x="83894" fg:w="94"/><text x="13.2864%" y="415.50"></text></g><g><title>Parse::do_call (118 samples, 0.02%)</title><rect x="13.0337%" y="437" width="0.0183%" height="15" fill="rgb(245,21,50)" fg:x="83877" fg:w="118"/><text x="13.2837%" y="447.50"></text></g><g><title>Parse::do_all_blocks (164 samples, 0.03%)</title><rect x="13.0331%" y="485" width="0.0255%" height="15" fill="rgb(228,9,43)" fg:x="83873" fg:w="164"/><text x="13.2831%" y="495.50"></text></g><g><title>Parse::do_one_block (164 samples, 0.03%)</title><rect x="13.0331%" y="469" width="0.0255%" height="15" fill="rgb(208,100,47)" fg:x="83873" fg:w="164"/><text x="13.2831%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (164 samples, 0.03%)</title><rect x="13.0331%" y="453" width="0.0255%" height="15" fill="rgb(232,26,8)" fg:x="83873" fg:w="164"/><text x="13.2831%" y="463.50"></text></g><g><title>ParseGenerator::generate (169 samples, 0.03%)</title><rect x="13.0327%" y="517" width="0.0263%" height="15" fill="rgb(216,166,38)" fg:x="83870" fg:w="169"/><text x="13.2827%" y="527.50"></text></g><g><title>Parse::Parse (169 samples, 0.03%)</title><rect x="13.0327%" y="501" width="0.0263%" height="15" fill="rgb(251,202,51)" fg:x="83870" fg:w="169"/><text x="13.2827%" y="511.50"></text></g><g><title>Parse::do_call (212 samples, 0.03%)</title><rect x="13.0306%" y="533" width="0.0329%" height="15" fill="rgb(254,216,34)" fg:x="83857" fg:w="212"/><text x="13.2806%" y="543.50"></text></g><g><title>ParseGenerator::generate (228 samples, 0.04%)</title><rect x="13.0303%" y="613" width="0.0354%" height="15" fill="rgb(251,32,27)" fg:x="83855" fg:w="228"/><text x="13.2803%" y="623.50"></text></g><g><title>Parse::Parse (228 samples, 0.04%)</title><rect x="13.0303%" y="597" width="0.0354%" height="15" fill="rgb(208,127,28)" fg:x="83855" fg:w="228"/><text x="13.2803%" y="607.50"></text></g><g><title>Parse::do_all_blocks (227 samples, 0.04%)</title><rect x="13.0305%" y="581" width="0.0353%" height="15" fill="rgb(224,137,22)" fg:x="83856" fg:w="227"/><text x="13.2805%" y="591.50"></text></g><g><title>Parse::do_one_block (227 samples, 0.04%)</title><rect x="13.0305%" y="565" width="0.0353%" height="15" fill="rgb(254,70,32)" fg:x="83856" fg:w="227"/><text x="13.2805%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (227 samples, 0.04%)</title><rect x="13.0305%" y="549" width="0.0353%" height="15" fill="rgb(229,75,37)" fg:x="83856" fg:w="227"/><text x="13.2805%" y="559.50"></text></g><g><title>ParseGenerator::generate (278 samples, 0.04%)</title><rect x="13.0285%" y="709" width="0.0432%" height="15" fill="rgb(252,64,23)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="719.50"></text></g><g><title>Parse::Parse (278 samples, 0.04%)</title><rect x="13.0285%" y="693" width="0.0432%" height="15" fill="rgb(232,162,48)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="703.50"></text></g><g><title>Parse::do_all_blocks (278 samples, 0.04%)</title><rect x="13.0285%" y="677" width="0.0432%" height="15" fill="rgb(246,160,12)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="687.50"></text></g><g><title>Parse::do_one_block (278 samples, 0.04%)</title><rect x="13.0285%" y="661" width="0.0432%" height="15" fill="rgb(247,166,0)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (278 samples, 0.04%)</title><rect x="13.0285%" y="645" width="0.0432%" height="15" fill="rgb(249,219,21)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="655.50"></text></g><g><title>Parse::do_call (278 samples, 0.04%)</title><rect x="13.0285%" y="629" width="0.0432%" height="15" fill="rgb(205,209,3)" fg:x="83843" fg:w="278"/><text x="13.2785%" y="639.50"></text></g><g><title>ParseGenerator::generate (317 samples, 0.05%)</title><rect x="13.0283%" y="805" width="0.0493%" height="15" fill="rgb(243,44,1)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="815.50"></text></g><g><title>Parse::Parse (317 samples, 0.05%)</title><rect x="13.0283%" y="789" width="0.0493%" height="15" fill="rgb(206,159,16)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="799.50"></text></g><g><title>Parse::do_all_blocks (317 samples, 0.05%)</title><rect x="13.0283%" y="773" width="0.0493%" height="15" fill="rgb(244,77,30)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="783.50"></text></g><g><title>Parse::do_one_block (317 samples, 0.05%)</title><rect x="13.0283%" y="757" width="0.0493%" height="15" fill="rgb(218,69,12)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (317 samples, 0.05%)</title><rect x="13.0283%" y="741" width="0.0493%" height="15" fill="rgb(212,87,7)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="751.50"></text></g><g><title>Parse::do_call (317 samples, 0.05%)</title><rect x="13.0283%" y="725" width="0.0493%" height="15" fill="rgb(245,114,25)" fg:x="83842" fg:w="317"/><text x="13.2783%" y="735.50"></text></g><g><title>ParseGenerator::generate (1,596 samples, 0.25%)</title><rect x="12.8403%" y="917" width="0.2480%" height="15" fill="rgb(210,61,42)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="927.50"></text></g><g><title>Parse::Parse (1,596 samples, 0.25%)</title><rect x="12.8403%" y="901" width="0.2480%" height="15" fill="rgb(211,52,33)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="911.50"></text></g><g><title>Parse::do_all_blocks (1,596 samples, 0.25%)</title><rect x="12.8403%" y="885" width="0.2480%" height="15" fill="rgb(234,58,33)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="895.50"></text></g><g><title>Parse::do_one_block (1,596 samples, 0.25%)</title><rect x="12.8403%" y="869" width="0.2480%" height="15" fill="rgb(220,115,36)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (1,596 samples, 0.25%)</title><rect x="12.8403%" y="853" width="0.2480%" height="15" fill="rgb(243,153,54)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="863.50"></text></g><g><title>Parse::do_call (1,596 samples, 0.25%)</title><rect x="12.8403%" y="837" width="0.2480%" height="15" fill="rgb(251,47,18)" fg:x="82632" fg:w="1596"/><text x="13.0903%" y="847.50"></text></g><g><title>PredictedCallGenerator::generate (386 samples, 0.06%)</title><rect x="13.0283%" y="821" width="0.0600%" height="15" fill="rgb(242,102,42)" fg:x="83842" fg:w="386"/><text x="13.2783%" y="831.50"></text></g><g><title>PredictedCallGenerator::generate (69 samples, 0.01%)</title><rect x="13.0776%" y="805" width="0.0107%" height="15" fill="rgb(234,31,38)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="815.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.01%)</title><rect x="13.0776%" y="789" width="0.0107%" height="15" fill="rgb(221,117,51)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="799.50"></text></g><g><title>Parse::Parse (69 samples, 0.01%)</title><rect x="13.0776%" y="773" width="0.0107%" height="15" fill="rgb(212,20,18)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="783.50"></text></g><g><title>Parse::do_all_blocks (69 samples, 0.01%)</title><rect x="13.0776%" y="757" width="0.0107%" height="15" fill="rgb(245,133,36)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="767.50"></text></g><g><title>Parse::do_one_block (69 samples, 0.01%)</title><rect x="13.0776%" y="741" width="0.0107%" height="15" fill="rgb(212,6,19)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (69 samples, 0.01%)</title><rect x="13.0776%" y="725" width="0.0107%" height="15" fill="rgb(218,1,36)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="735.50"></text></g><g><title>Parse::do_call (69 samples, 0.01%)</title><rect x="13.0776%" y="709" width="0.0107%" height="15" fill="rgb(246,84,54)" fg:x="84159" fg:w="69"/><text x="13.3276%" y="719.50"></text></g><g><title>Compile::Compile (59,106 samples, 9.18%)</title><rect x="3.9040%" y="933" width="9.1846%" height="15" fill="rgb(242,110,6)" fg:x="25124" fg:w="59106"/><text x="4.1540%" y="943.50">Compile::Comp..</text></g><g><title>Compile::final_graph_reshaping_impl (147 samples, 0.02%)</title><rect x="13.1236%" y="885" width="0.0228%" height="15" fill="rgb(214,47,5)" fg:x="84455" fg:w="147"/><text x="13.3736%" y="895.50"></text></g><g><title>Compile::final_graph_reshaping (385 samples, 0.06%)</title><rect x="13.0892%" y="917" width="0.0598%" height="15" fill="rgb(218,159,25)" fg:x="84234" fg:w="385"/><text x="13.3392%" y="927.50"></text></g><g><title>Compile::final_graph_reshaping_walk (374 samples, 0.06%)</title><rect x="13.0909%" y="901" width="0.0581%" height="15" fill="rgb(215,211,28)" fg:x="84245" fg:w="374"/><text x="13.3409%" y="911.50"></text></g><g><title>PhaseIterGVN::transform_old (79 samples, 0.01%)</title><rect x="13.1935%" y="885" width="0.0123%" height="15" fill="rgb(238,59,32)" fg:x="84905" fg:w="79"/><text x="13.4435%" y="895.50"></text></g><g><title>PhaseIterGVN::optimize (82 samples, 0.01%)</title><rect x="13.1933%" y="901" width="0.0127%" height="15" fill="rgb(226,82,3)" fg:x="84904" fg:w="82"/><text x="13.4433%" y="911.50"></text></g><g><title>Compile::remove_speculative_types (358 samples, 0.06%)</title><rect x="13.1609%" y="917" width="0.0556%" height="15" fill="rgb(240,164,32)" fg:x="84695" fg:w="358"/><text x="13.4109%" y="927.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (122 samples, 0.02%)</title><rect x="13.2552%" y="885" width="0.0190%" height="15" fill="rgb(232,46,7)" fg:x="85302" fg:w="122"/><text x="13.5052%" y="895.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (107 samples, 0.02%)</title><rect x="13.2814%" y="869" width="0.0166%" height="15" fill="rgb(229,129,53)" fg:x="85471" fg:w="107"/><text x="13.5314%" y="879.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (225 samples, 0.03%)</title><rect x="13.2749%" y="885" width="0.0350%" height="15" fill="rgb(234,188,29)" fg:x="85429" fg:w="225"/><text x="13.5249%" y="895.50"></text></g><g><title>ConnectionGraph::split_memory_phi (89 samples, 0.01%)</title><rect x="13.3186%" y="853" width="0.0138%" height="15" fill="rgb(246,141,4)" fg:x="85710" fg:w="89"/><text x="13.5686%" y="863.50"></text></g><g><title>ConnectionGraph::find_inst_mem (70 samples, 0.01%)</title><rect x="13.3215%" y="837" width="0.0109%" height="15" fill="rgb(229,23,39)" fg:x="85729" fg:w="70"/><text x="13.5715%" y="847.50"></text></g><g><title>ConnectionGraph::find_inst_mem (120 samples, 0.02%)</title><rect x="13.3144%" y="869" width="0.0186%" height="15" fill="rgb(206,12,3)" fg:x="85683" fg:w="120"/><text x="13.5644%" y="879.50"></text></g><g><title>ConnectionGraph::split_unique_types (167 samples, 0.03%)</title><rect x="13.3122%" y="885" width="0.0260%" height="15" fill="rgb(252,226,20)" fg:x="85669" fg:w="167"/><text x="13.5622%" y="895.50"></text></g><g><title>ConnectionGraph::do_analysis (791 samples, 0.12%)</title><rect x="13.2166%" y="917" width="0.1229%" height="15" fill="rgb(216,123,35)" fg:x="85054" fg:w="791"/><text x="13.4666%" y="927.50"></text></g><g><title>ConnectionGraph::compute_escape (785 samples, 0.12%)</title><rect x="13.2176%" y="901" width="0.1220%" height="15" fill="rgb(212,68,40)" fg:x="85060" fg:w="785"/><text x="13.4676%" y="911.50"></text></g><g><title>PhiNode::Value (70 samples, 0.01%)</title><rect x="13.4573%" y="901" width="0.0109%" height="15" fill="rgb(254,125,32)" fg:x="86603" fg:w="70"/><text x="13.7073%" y="911.50"></text></g><g><title>PhaseCCP::analyze (1,043 samples, 0.16%)</title><rect x="13.3405%" y="917" width="0.1621%" height="15" fill="rgb(253,97,22)" fg:x="85851" fg:w="1043"/><text x="13.5905%" y="927.50"></text></g><g><title>PhaseCCP::transform_once (144 samples, 0.02%)</title><rect x="13.5246%" y="885" width="0.0224%" height="15" fill="rgb(241,101,14)" fg:x="87036" fg:w="144"/><text x="13.7746%" y="895.50"></text></g><g><title>PhaseCCP::do_transform (290 samples, 0.05%)</title><rect x="13.5026%" y="917" width="0.0451%" height="15" fill="rgb(238,103,29)" fg:x="86894" fg:w="290"/><text x="13.7526%" y="927.50"></text></g><g><title>PhaseCCP::transform (290 samples, 0.05%)</title><rect x="13.5026%" y="901" width="0.0451%" height="15" fill="rgb(233,195,47)" fg:x="86894" fg:w="290"/><text x="13.7526%" y="911.50"></text></g><g><title>IdealLoopTree::iteration_split (70 samples, 0.01%)</title><rect x="13.5773%" y="805" width="0.0109%" height="15" fill="rgb(246,218,30)" fg:x="87375" fg:w="70"/><text x="13.8273%" y="815.50"></text></g><g><title>IdealLoopTree::iteration_split (90 samples, 0.01%)</title><rect x="13.5773%" y="821" width="0.0140%" height="15" fill="rgb(219,145,47)" fg:x="87375" fg:w="90"/><text x="13.8273%" y="831.50"></text></g><g><title>IdealLoopTree::iteration_split (119 samples, 0.02%)</title><rect x="13.5767%" y="837" width="0.0185%" height="15" fill="rgb(243,12,26)" fg:x="87371" fg:w="119"/><text x="13.8267%" y="847.50"></text></g><g><title>IdealLoopTree::iteration_split (166 samples, 0.03%)</title><rect x="13.5764%" y="853" width="0.0258%" height="15" fill="rgb(214,87,16)" fg:x="87369" fg:w="166"/><text x="13.8264%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (67 samples, 0.01%)</title><rect x="13.6022%" y="853" width="0.0104%" height="15" fill="rgb(208,99,42)" fg:x="87535" fg:w="67"/><text x="13.8522%" y="863.50"></text></g><g><title>IdealLoopTree::iteration_split (248 samples, 0.04%)</title><rect x="13.5759%" y="869" width="0.0385%" height="15" fill="rgb(253,99,2)" fg:x="87366" fg:w="248"/><text x="13.8259%" y="879.50"></text></g><g><title>IdealLoopTree::iteration_split (298 samples, 0.05%)</title><rect x="13.5754%" y="885" width="0.0463%" height="15" fill="rgb(220,168,23)" fg:x="87363" fg:w="298"/><text x="13.8254%" y="895.50"></text></g><g><title>IdealLoopTree::iteration_split (337 samples, 0.05%)</title><rect x="13.5744%" y="901" width="0.0524%" height="15" fill="rgb(242,38,24)" fg:x="87356" fg:w="337"/><text x="13.8244%" y="911.50"></text></g><g><title>IdealLoopTree::loop_predication (163 samples, 0.03%)</title><rect x="13.6269%" y="885" width="0.0253%" height="15" fill="rgb(225,182,9)" fg:x="87694" fg:w="163"/><text x="13.8769%" y="895.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (101 samples, 0.02%)</title><rect x="13.6365%" y="869" width="0.0157%" height="15" fill="rgb(243,178,37)" fg:x="87756" fg:w="101"/><text x="13.8865%" y="879.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (117 samples, 0.02%)</title><rect x="13.6629%" y="869" width="0.0182%" height="15" fill="rgb(232,139,19)" fg:x="87926" fg:w="117"/><text x="13.9129%" y="879.50"></text></g><g><title>IdealLoopTree::loop_predication (431 samples, 0.07%)</title><rect x="13.6267%" y="901" width="0.0670%" height="15" fill="rgb(225,201,24)" fg:x="87693" fg:w="431"/><text x="13.8767%" y="911.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (265 samples, 0.04%)</title><rect x="13.6525%" y="885" width="0.0412%" height="15" fill="rgb(221,47,46)" fg:x="87859" fg:w="265"/><text x="13.9025%" y="895.50"></text></g><g><title>NTarjan::DFS (485 samples, 0.08%)</title><rect x="13.8724%" y="885" width="0.0754%" height="15" fill="rgb(249,23,13)" fg:x="89274" fg:w="485"/><text x="14.1224%" y="895.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,645 samples, 0.26%)</title><rect x="13.7055%" y="901" width="0.2556%" height="15" fill="rgb(219,9,5)" fg:x="88200" fg:w="1645"/><text x="13.9555%" y="911.50"></text></g><g><title>PhaseIdealLoop::dom_depth (94 samples, 0.01%)</title><rect x="14.2531%" y="853" width="0.0146%" height="15" fill="rgb(254,171,16)" fg:x="91724" fg:w="94"/><text x="14.5031%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (230 samples, 0.04%)</title><rect x="14.2677%" y="853" width="0.0357%" height="15" fill="rgb(230,171,20)" fg:x="91818" fg:w="230"/><text x="14.5177%" y="863.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (593 samples, 0.09%)</title><rect x="14.2116%" y="885" width="0.0921%" height="15" fill="rgb(210,71,41)" fg:x="91457" fg:w="593"/><text x="14.4616%" y="895.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (532 samples, 0.08%)</title><rect x="14.2211%" y="869" width="0.0827%" height="15" fill="rgb(206,173,20)" fg:x="91518" fg:w="532"/><text x="14.4711%" y="879.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,348 samples, 0.36%)</title><rect x="13.9611%" y="901" width="0.3649%" height="15" fill="rgb(233,88,34)" fg:x="89845" fg:w="2348"/><text x="14.2111%" y="911.50"></text></g><g><title>Node::unique_ctrl_out (85 samples, 0.01%)</title><rect x="14.7504%" y="869" width="0.0132%" height="15" fill="rgb(223,209,46)" fg:x="94924" fg:w="85"/><text x="15.0004%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (110 samples, 0.02%)</title><rect x="14.7636%" y="869" width="0.0171%" height="15" fill="rgb(250,43,18)" fg:x="95009" fg:w="110"/><text x="15.0136%" y="879.50"></text></g><g><title>PhaseIdealLoop::dom_depth (113 samples, 0.02%)</title><rect x="14.9662%" y="821" width="0.0176%" height="15" fill="rgb(208,13,10)" fg:x="96313" fg:w="113"/><text x="15.2162%" y="831.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (445 samples, 0.07%)</title><rect x="14.9460%" y="837" width="0.0691%" height="15" fill="rgb(212,200,36)" fg:x="96183" fg:w="445"/><text x="15.1960%" y="847.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (202 samples, 0.03%)</title><rect x="14.9838%" y="821" width="0.0314%" height="15" fill="rgb(225,90,30)" fg:x="96426" fg:w="202"/><text x="15.2338%" y="831.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (616 samples, 0.10%)</title><rect x="14.9275%" y="853" width="0.0957%" height="15" fill="rgb(236,182,39)" fg:x="96064" fg:w="616"/><text x="15.1775%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (233 samples, 0.04%)</title><rect x="15.0234%" y="853" width="0.0362%" height="15" fill="rgb(212,144,35)" fg:x="96681" fg:w="233"/><text x="15.2734%" y="863.50"></text></g><g><title>PhaseIdealLoop::dom_depth (2,065 samples, 0.32%)</title><rect x="16.4200%" y="837" width="0.3209%" height="15" fill="rgb(228,63,44)" fg:x="105669" fg:w="2065"/><text x="16.6700%" y="847.50"></text></g><g><title>PhaseIdealLoop::is_dominator (10,927 samples, 1.70%)</title><rect x="15.0630%" y="853" width="1.6980%" height="15" fill="rgb(228,109,6)" fg:x="96936" fg:w="10927"/><text x="15.3130%" y="863.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (12,788 samples, 1.99%)</title><rect x="14.7807%" y="869" width="1.9871%" height="15" fill="rgb(238,117,24)" fg:x="95119" fg:w="12788"/><text x="15.0307%" y="879.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late_post (14,002 samples, 2.18%)</title><rect x="14.6093%" y="885" width="2.1758%" height="15" fill="rgb(242,26,26)" fg:x="94016" fg:w="14002"/><text x="14.8593%" y="895.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (15,851 samples, 2.46%)</title><rect x="14.3260%" y="901" width="2.4631%" height="15" fill="rgb(221,92,48)" fg:x="92193" fg:w="15851"/><text x="14.5760%" y="911.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (320 samples, 0.05%)</title><rect x="16.9244%" y="885" width="0.0497%" height="15" fill="rgb(209,209,32)" fg:x="108915" fg:w="320"/><text x="17.1744%" y="895.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,203 samples, 0.19%)</title><rect x="16.7902%" y="901" width="0.1869%" height="15" fill="rgb(221,70,22)" fg:x="108051" fg:w="1203"/><text x="17.0402%" y="911.50"></text></g><g><title>PhaseIdealLoop::do_split_if (143 samples, 0.02%)</title><rect x="17.0930%" y="885" width="0.0222%" height="15" fill="rgb(248,145,5)" fg:x="110000" fg:w="143"/><text x="17.3430%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (386 samples, 0.06%)</title><rect x="17.1160%" y="885" width="0.0600%" height="15" fill="rgb(226,116,26)" fg:x="110148" fg:w="386"/><text x="17.3660%" y="895.50"></text></g><g><title>ConstraintCastNode::dominating_cast (66 samples, 0.01%)</title><rect x="17.1985%" y="869" width="0.0103%" height="15" fill="rgb(244,5,17)" fg:x="110679" fg:w="66"/><text x="17.4485%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (82 samples, 0.01%)</title><rect x="17.2170%" y="869" width="0.0127%" height="15" fill="rgb(252,159,33)" fg:x="110798" fg:w="82"/><text x="17.4670%" y="879.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (140 samples, 0.02%)</title><rect x="17.2298%" y="869" width="0.0218%" height="15" fill="rgb(206,71,0)" fg:x="110880" fg:w="140"/><text x="17.4798%" y="879.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (105 samples, 0.02%)</title><rect x="17.2779%" y="853" width="0.0163%" height="15" fill="rgb(233,118,54)" fg:x="111190" fg:w="105"/><text x="17.5279%" y="863.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (270 samples, 0.04%)</title><rect x="17.2525%" y="869" width="0.0420%" height="15" fill="rgb(234,83,48)" fg:x="111026" fg:w="270"/><text x="17.5025%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (95 samples, 0.01%)</title><rect x="17.3173%" y="853" width="0.0148%" height="15" fill="rgb(228,3,54)" fg:x="111443" fg:w="95"/><text x="17.5673%" y="863.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (278 samples, 0.04%)</title><rect x="17.2944%" y="869" width="0.0432%" height="15" fill="rgb(226,155,13)" fg:x="111296" fg:w="278"/><text x="17.5444%" y="879.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,113 samples, 0.17%)</title><rect x="17.1760%" y="885" width="0.1730%" height="15" fill="rgb(241,28,37)" fg:x="110534" fg:w="1113"/><text x="17.4260%" y="895.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,332 samples, 0.36%)</title><rect x="16.9874%" y="901" width="0.3624%" height="15" fill="rgb(233,93,10)" fg:x="109320" fg:w="2332"/><text x="17.2374%" y="911.50"></text></g><g><title>CallNode::Ideal (76 samples, 0.01%)</title><rect x="17.4004%" y="869" width="0.0118%" height="15" fill="rgb(225,113,19)" fg:x="111978" fg:w="76"/><text x="17.6504%" y="879.50"></text></g><g><title>Node::remove_dead_region (73 samples, 0.01%)</title><rect x="17.4009%" y="853" width="0.0113%" height="15" fill="rgb(241,2,18)" fg:x="111981" fg:w="73"/><text x="17.6509%" y="863.50"></text></g><g><title>LoadNode::Ideal (130 samples, 0.02%)</title><rect x="17.4532%" y="869" width="0.0202%" height="15" fill="rgb(228,207,21)" fg:x="112318" fg:w="130"/><text x="17.7032%" y="879.50"></text></g><g><title>NodeHash::hash_find_insert (191 samples, 0.03%)</title><rect x="17.4860%" y="869" width="0.0297%" height="15" fill="rgb(213,211,35)" fg:x="112529" fg:w="191"/><text x="17.7360%" y="879.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (93 samples, 0.01%)</title><rect x="17.5162%" y="869" width="0.0145%" height="15" fill="rgb(209,83,10)" fg:x="112723" fg:w="93"/><text x="17.7662%" y="879.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (75 samples, 0.01%)</title><rect x="17.5396%" y="853" width="0.0117%" height="15" fill="rgb(209,164,1)" fg:x="112874" fg:w="75"/><text x="17.7896%" y="863.50"></text></g><g><title>PhaseIterGVN::subsume_node (142 samples, 0.02%)</title><rect x="17.5309%" y="869" width="0.0221%" height="15" fill="rgb(213,184,43)" fg:x="112818" fg:w="142"/><text x="17.7809%" y="879.50"></text></g><g><title>RegionNode::is_unreachable_region (199 samples, 0.03%)</title><rect x="17.5967%" y="853" width="0.0309%" height="15" fill="rgb(231,61,34)" fg:x="113241" fg:w="199"/><text x="17.8467%" y="863.50"></text></g><g><title>RegionNode::Ideal (334 samples, 0.05%)</title><rect x="17.5760%" y="869" width="0.0519%" height="15" fill="rgb(235,75,3)" fg:x="113108" fg:w="334"/><text x="17.8260%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.01%)</title><rect x="17.6305%" y="677" width="0.0101%" height="15" fill="rgb(220,106,47)" fg:x="113459" fg:w="65"/><text x="17.8805%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (73 samples, 0.01%)</title><rect x="17.6305%" y="693" width="0.0113%" height="15" fill="rgb(210,196,33)" fg:x="113459" fg:w="73"/><text x="17.8805%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (77 samples, 0.01%)</title><rect x="17.6305%" y="709" width="0.0120%" height="15" fill="rgb(229,154,42)" fg:x="113459" fg:w="77"/><text x="17.8805%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (79 samples, 0.01%)</title><rect x="17.6305%" y="725" width="0.0123%" height="15" fill="rgb(228,114,26)" fg:x="113459" fg:w="79"/><text x="17.8805%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (89 samples, 0.01%)</title><rect x="17.6305%" y="741" width="0.0138%" height="15" fill="rgb(208,144,1)" fg:x="113459" fg:w="89"/><text x="17.8805%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (93 samples, 0.01%)</title><rect x="17.6305%" y="757" width="0.0145%" height="15" fill="rgb(239,112,37)" fg:x="113459" fg:w="93"/><text x="17.8805%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (95 samples, 0.01%)</title><rect x="17.6305%" y="773" width="0.0148%" height="15" fill="rgb(210,96,50)" fg:x="113459" fg:w="95"/><text x="17.8805%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (104 samples, 0.02%)</title><rect x="17.6305%" y="789" width="0.0162%" height="15" fill="rgb(222,178,2)" fg:x="113459" fg:w="104"/><text x="17.8805%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (113 samples, 0.02%)</title><rect x="17.6305%" y="805" width="0.0176%" height="15" fill="rgb(226,74,18)" fg:x="113459" fg:w="113"/><text x="17.8805%" y="815.50"></text></g><g><title>InitializeNode::can_capture_store (122 samples, 0.02%)</title><rect x="17.6305%" y="853" width="0.0190%" height="15" fill="rgb(225,67,54)" fg:x="113459" fg:w="122"/><text x="17.8805%" y="863.50"></text></g><g><title>InitializeNode::detect_init_independence (122 samples, 0.02%)</title><rect x="17.6305%" y="837" width="0.0190%" height="15" fill="rgb(251,92,32)" fg:x="113459" fg:w="122"/><text x="17.8805%" y="847.50"></text></g><g><title>InitializeNode::detect_init_independence (122 samples, 0.02%)</title><rect x="17.6305%" y="821" width="0.0190%" height="15" fill="rgb(228,149,22)" fg:x="113459" fg:w="122"/><text x="17.8805%" y="831.50"></text></g><g><title>StoreNode::Ideal (131 samples, 0.02%)</title><rect x="17.6305%" y="869" width="0.0204%" height="15" fill="rgb(243,54,13)" fg:x="113459" fg:w="131"/><text x="17.8805%" y="879.50"></text></g><g><title>PhaseIterGVN::transform_old (1,924 samples, 0.30%)</title><rect x="17.3636%" y="885" width="0.2990%" height="15" fill="rgb(243,180,28)" fg:x="111741" fg:w="1924"/><text x="17.6136%" y="895.50"></text></g><g><title>PhaseIterGVN::optimize (2,022 samples, 0.31%)</title><rect x="17.3502%" y="901" width="0.3142%" height="15" fill="rgb(208,167,24)" fg:x="111655" fg:w="2022"/><text x="17.6002%" y="911.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (26,608 samples, 4.13%)</title><rect x="13.5531%" y="917" width="4.1346%" height="15" fill="rgb(245,73,45)" fg:x="87219" fg:w="26608"/><text x="13.8031%" y="927.50">Phase..</text></g><g><title>PhaseIterGVN::PhaseIterGVN (157 samples, 0.02%)</title><rect x="17.6877%" y="917" width="0.0244%" height="15" fill="rgb(237,203,48)" fg:x="113827" fg:w="157"/><text x="17.9377%" y="927.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (92 samples, 0.01%)</title><rect x="17.6978%" y="901" width="0.0143%" height="15" fill="rgb(211,197,16)" fg:x="113892" fg:w="92"/><text x="17.9478%" y="911.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (122 samples, 0.02%)</title><rect x="17.8265%" y="853" width="0.0190%" height="15" fill="rgb(243,99,51)" fg:x="114720" fg:w="122"/><text x="18.0765%" y="863.50"></text></g><g><title>Unique_Node_List::remove (109 samples, 0.02%)</title><rect x="17.8285%" y="837" width="0.0169%" height="15" fill="rgb(215,123,29)" fg:x="114733" fg:w="109"/><text x="18.0785%" y="847.50"></text></g><g><title>PhaseIterGVN::subsume_node (146 samples, 0.02%)</title><rect x="17.8237%" y="869" width="0.0227%" height="15" fill="rgb(239,186,37)" fg:x="114702" fg:w="146"/><text x="18.0737%" y="879.50"></text></g><g><title>IfNode::Ideal (439 samples, 0.07%)</title><rect x="17.7957%" y="885" width="0.0682%" height="15" fill="rgb(252,136,39)" fg:x="114522" fg:w="439"/><text x="18.0457%" y="895.50"></text></g><g><title>split_if (97 samples, 0.02%)</title><rect x="17.8489%" y="869" width="0.0151%" height="15" fill="rgb(223,213,32)" fg:x="114864" fg:w="97"/><text x="18.0989%" y="879.50"></text></g><g><title>MemNode::Ideal_common (81 samples, 0.01%)</title><rect x="17.8802%" y="869" width="0.0126%" height="15" fill="rgb(233,115,5)" fg:x="115066" fg:w="81"/><text x="18.1302%" y="879.50"></text></g><g><title>MemNode::find_previous_store (81 samples, 0.01%)</title><rect x="17.8945%" y="869" width="0.0126%" height="15" fill="rgb(207,226,44)" fg:x="115158" fg:w="81"/><text x="18.1445%" y="879.50"></text></g><g><title>LoadNode::Ideal (233 samples, 0.04%)</title><rect x="17.8715%" y="885" width="0.0362%" height="15" fill="rgb(208,126,0)" fg:x="115010" fg:w="233"/><text x="18.1215%" y="895.50"></text></g><g><title>MergeMemNode::Ideal (72 samples, 0.01%)</title><rect x="17.9255%" y="885" width="0.0112%" height="15" fill="rgb(244,66,21)" fg:x="115357" fg:w="72"/><text x="18.1755%" y="895.50"></text></g><g><title>NodeHash::grow (81 samples, 0.01%)</title><rect x="17.9673%" y="869" width="0.0126%" height="15" fill="rgb(222,97,12)" fg:x="115626" fg:w="81"/><text x="18.2173%" y="879.50"></text></g><g><title>NodeHash::hash_find_insert (260 samples, 0.04%)</title><rect x="17.9424%" y="885" width="0.0404%" height="15" fill="rgb(219,213,19)" fg:x="115466" fg:w="260"/><text x="18.1924%" y="895.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (76 samples, 0.01%)</title><rect x="17.9828%" y="885" width="0.0118%" height="15" fill="rgb(252,169,30)" fg:x="115726" fg:w="76"/><text x="18.2328%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (132 samples, 0.02%)</title><rect x="18.0210%" y="869" width="0.0205%" height="15" fill="rgb(206,32,51)" fg:x="115972" fg:w="132"/><text x="18.2710%" y="879.50"></text></g><g><title>PhaseIterGVN::subsume_node (329 samples, 0.05%)</title><rect x="17.9949%" y="885" width="0.0511%" height="15" fill="rgb(250,172,42)" fg:x="115804" fg:w="329"/><text x="18.2449%" y="895.50"></text></g><g><title>PhiNode::Ideal (185 samples, 0.03%)</title><rect x="18.0465%" y="885" width="0.0287%" height="15" fill="rgb(209,34,43)" fg:x="116136" fg:w="185"/><text x="18.2965%" y="895.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (165 samples, 0.03%)</title><rect x="18.1247%" y="853" width="0.0256%" height="15" fill="rgb(223,11,35)" fg:x="116639" fg:w="165"/><text x="18.3747%" y="863.50"></text></g><g><title>Unique_Node_List::remove (142 samples, 0.02%)</title><rect x="18.1283%" y="837" width="0.0221%" height="15" fill="rgb(251,219,26)" fg:x="116662" fg:w="142"/><text x="18.3783%" y="847.50"></text></g><g><title>PhaseIterGVN::subsume_node (200 samples, 0.03%)</title><rect x="18.1219%" y="869" width="0.0311%" height="15" fill="rgb(231,119,3)" fg:x="116621" fg:w="200"/><text x="18.3719%" y="879.50"></text></g><g><title>RegionNode::is_unreachable_region (140 samples, 0.02%)</title><rect x="18.1586%" y="869" width="0.0218%" height="15" fill="rgb(216,97,11)" fg:x="116857" fg:w="140"/><text x="18.4086%" y="879.50"></text></g><g><title>RegionNode::Ideal (518 samples, 0.08%)</title><rect x="18.1009%" y="885" width="0.0805%" height="15" fill="rgb(223,59,9)" fg:x="116486" fg:w="518"/><text x="18.3509%" y="895.50"></text></g><g><title>InitializeNode::detect_init_independence (82 samples, 0.01%)</title><rect x="18.1873%" y="565" width="0.0127%" height="15" fill="rgb(233,93,31)" fg:x="117042" fg:w="82"/><text x="18.4373%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (103 samples, 0.02%)</title><rect x="18.1873%" y="581" width="0.0160%" height="15" fill="rgb(239,81,33)" fg:x="117042" fg:w="103"/><text x="18.4373%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (147 samples, 0.02%)</title><rect x="18.1873%" y="597" width="0.0228%" height="15" fill="rgb(213,120,34)" fg:x="117042" fg:w="147"/><text x="18.4373%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (167 samples, 0.03%)</title><rect x="18.1873%" y="613" width="0.0260%" height="15" fill="rgb(243,49,53)" fg:x="117042" fg:w="167"/><text x="18.4373%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (192 samples, 0.03%)</title><rect x="18.1873%" y="629" width="0.0298%" height="15" fill="rgb(247,216,33)" fg:x="117042" fg:w="192"/><text x="18.4373%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (224 samples, 0.03%)</title><rect x="18.1871%" y="645" width="0.0348%" height="15" fill="rgb(226,26,14)" fg:x="117041" fg:w="224"/><text x="18.4371%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (260 samples, 0.04%)</title><rect x="18.1871%" y="661" width="0.0404%" height="15" fill="rgb(215,49,53)" fg:x="117041" fg:w="260"/><text x="18.4371%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (297 samples, 0.05%)</title><rect x="18.1871%" y="677" width="0.0462%" height="15" fill="rgb(245,162,40)" fg:x="117041" fg:w="297"/><text x="18.4371%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (326 samples, 0.05%)</title><rect x="18.1871%" y="693" width="0.0507%" height="15" fill="rgb(229,68,17)" fg:x="117041" fg:w="326"/><text x="18.4371%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (364 samples, 0.06%)</title><rect x="18.1868%" y="709" width="0.0566%" height="15" fill="rgb(213,182,10)" fg:x="117039" fg:w="364"/><text x="18.4368%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (393 samples, 0.06%)</title><rect x="18.1868%" y="725" width="0.0611%" height="15" fill="rgb(245,125,30)" fg:x="117039" fg:w="393"/><text x="18.4368%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (422 samples, 0.07%)</title><rect x="18.1868%" y="741" width="0.0656%" height="15" fill="rgb(232,202,2)" fg:x="117039" fg:w="422"/><text x="18.4368%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (461 samples, 0.07%)</title><rect x="18.1868%" y="757" width="0.0716%" height="15" fill="rgb(237,140,51)" fg:x="117039" fg:w="461"/><text x="18.4368%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (497 samples, 0.08%)</title><rect x="18.1868%" y="773" width="0.0772%" height="15" fill="rgb(236,157,25)" fg:x="117039" fg:w="497"/><text x="18.4368%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (531 samples, 0.08%)</title><rect x="18.1867%" y="789" width="0.0825%" height="15" fill="rgb(219,209,0)" fg:x="117038" fg:w="531"/><text x="18.4367%" y="799.50"></text></g><g><title>InitializeNode::detect_init_independence (555 samples, 0.09%)</title><rect x="18.1867%" y="805" width="0.0862%" height="15" fill="rgb(240,116,54)" fg:x="117038" fg:w="555"/><text x="18.4367%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (610 samples, 0.09%)</title><rect x="18.1867%" y="821" width="0.0948%" height="15" fill="rgb(216,10,36)" fg:x="117038" fg:w="610"/><text x="18.4367%" y="831.50"></text></g><g><title>Node::dominates (68 samples, 0.01%)</title><rect x="18.2819%" y="805" width="0.0106%" height="15" fill="rgb(222,72,44)" fg:x="117651" fg:w="68"/><text x="18.5319%" y="815.50"></text></g><g><title>InitializeNode::detect_init_independence (685 samples, 0.11%)</title><rect x="18.1867%" y="837" width="0.1064%" height="15" fill="rgb(232,159,9)" fg:x="117038" fg:w="685"/><text x="18.4367%" y="847.50"></text></g><g><title>MemNode::all_controls_dominate (75 samples, 0.01%)</title><rect x="18.2815%" y="821" width="0.0117%" height="15" fill="rgb(210,39,32)" fg:x="117648" fg:w="75"/><text x="18.5315%" y="831.50"></text></g><g><title>InitializeNode::can_capture_store (689 samples, 0.11%)</title><rect x="18.1862%" y="869" width="0.1071%" height="15" fill="rgb(216,194,45)" fg:x="117035" fg:w="689"/><text x="18.4362%" y="879.50"></text></g><g><title>InitializeNode::detect_init_independence (686 samples, 0.11%)</title><rect x="18.1867%" y="853" width="0.1066%" height="15" fill="rgb(218,18,35)" fg:x="117038" fg:w="686"/><text x="18.4367%" y="863.50"></text></g><g><title>StoreNode::Ideal (733 samples, 0.11%)</title><rect x="18.1856%" y="885" width="0.1139%" height="15" fill="rgb(207,83,51)" fg:x="117031" fg:w="733"/><text x="18.4356%" y="895.50"></text></g><g><title>PhaseIterGVN::transform_old (3,742 samples, 0.58%)</title><rect x="17.7301%" y="901" width="0.5815%" height="15" fill="rgb(225,63,43)" fg:x="114100" fg:w="3742"/><text x="17.9801%" y="911.50"></text></g><g><title>PhaseIterGVN::optimize (3,877 samples, 0.60%)</title><rect x="17.7121%" y="917" width="0.6025%" height="15" fill="rgb(207,57,36)" fg:x="113984" fg:w="3877"/><text x="17.9621%" y="927.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (69 samples, 0.01%)</title><rect x="18.3146%" y="917" width="0.0107%" height="15" fill="rgb(216,99,33)" fg:x="117861" fg:w="69"/><text x="18.5646%" y="927.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (68 samples, 0.01%)</title><rect x="18.3147%" y="901" width="0.0106%" height="15" fill="rgb(225,42,16)" fg:x="117862" fg:w="68"/><text x="18.5647%" y="911.50"></text></g><g><title>PhaseIterGVN::transform_old (337 samples, 0.05%)</title><rect x="18.3287%" y="885" width="0.0524%" height="15" fill="rgb(220,201,45)" fg:x="117952" fg:w="337"/><text x="18.5787%" y="895.50"></text></g><g><title>PhaseIterGVN::optimize (359 samples, 0.06%)</title><rect x="18.3261%" y="901" width="0.0558%" height="15" fill="rgb(225,33,4)" fg:x="117935" fg:w="359"/><text x="18.5761%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (111 samples, 0.02%)</title><rect x="18.3832%" y="901" width="0.0172%" height="15" fill="rgb(224,33,50)" fg:x="118303" fg:w="111"/><text x="18.6332%" y="911.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (522 samples, 0.08%)</title><rect x="18.3253%" y="917" width="0.0811%" height="15" fill="rgb(246,198,51)" fg:x="117930" fg:w="522"/><text x="18.5753%" y="927.50"></text></g><g><title>Compile::identify_useful_nodes (114 samples, 0.02%)</title><rect x="18.4132%" y="885" width="0.0177%" height="15" fill="rgb(205,22,4)" fg:x="118496" fg:w="114"/><text x="18.6632%" y="895.50"></text></g><g><title>Compile::remove_useless_nodes (73 samples, 0.01%)</title><rect x="18.4310%" y="885" width="0.0113%" height="15" fill="rgb(206,3,8)" fg:x="118610" fg:w="73"/><text x="18.6810%" y="895.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (223 samples, 0.03%)</title><rect x="18.4100%" y="901" width="0.0347%" height="15" fill="rgb(251,23,15)" fg:x="118475" fg:w="223"/><text x="18.6600%" y="911.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (249 samples, 0.04%)</title><rect x="18.4064%" y="917" width="0.0387%" height="15" fill="rgb(252,88,28)" fg:x="118452" fg:w="249"/><text x="18.6564%" y="927.50"></text></g><g><title>Compile::Optimize (34,481 samples, 5.36%)</title><rect x="13.0886%" y="933" width="5.3580%" height="15" fill="rgb(212,127,14)" fg:x="84230" fg:w="34481"/><text x="13.3386%" y="943.50">Compile..</text></g><g><title>Parse::do_one_block (202 samples, 0.03%)</title><rect x="18.4508%" y="821" width="0.0314%" height="15" fill="rgb(247,145,37)" fg:x="118738" fg:w="202"/><text x="18.7008%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (181 samples, 0.03%)</title><rect x="18.4541%" y="805" width="0.0281%" height="15" fill="rgb(209,117,53)" fg:x="118759" fg:w="181"/><text x="18.7041%" y="815.50"></text></g><g><title>Parse::do_all_blocks (207 samples, 0.03%)</title><rect x="18.4507%" y="837" width="0.0322%" height="15" fill="rgb(212,90,42)" fg:x="118737" fg:w="207"/><text x="18.7007%" y="847.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.03%)</title><rect x="18.4505%" y="869" width="0.0342%" height="15" fill="rgb(218,164,37)" fg:x="118736" fg:w="220"/><text x="18.7005%" y="879.50"></text></g><g><title>Parse::Parse (220 samples, 0.03%)</title><rect x="18.4505%" y="853" width="0.0342%" height="15" fill="rgb(246,65,34)" fg:x="118736" fg:w="220"/><text x="18.7005%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (254 samples, 0.04%)</title><rect x="18.4480%" y="933" width="0.0395%" height="15" fill="rgb(231,100,33)" fg:x="118720" fg:w="254"/><text x="18.6980%" y="943.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (254 samples, 0.04%)</title><rect x="18.4480%" y="917" width="0.0395%" height="15" fill="rgb(228,126,14)" fg:x="118720" fg:w="254"/><text x="18.6980%" y="927.50"></text></g><g><title>C2Compiler::compile_method (254 samples, 0.04%)</title><rect x="18.4480%" y="901" width="0.0395%" height="15" fill="rgb(215,173,21)" fg:x="118720" fg:w="254"/><text x="18.6980%" y="911.50"></text></g><g><title>Compile::Compile (254 samples, 0.04%)</title><rect x="18.4480%" y="885" width="0.0395%" height="15" fill="rgb(210,6,40)" fg:x="118720" fg:w="254"/><text x="18.6980%" y="895.50"></text></g><g><title>ciTypeFlow::df_flow_types (87 samples, 0.01%)</title><rect x="18.4877%" y="805" width="0.0135%" height="15" fill="rgb(212,48,18)" fg:x="118975" fg:w="87"/><text x="18.7377%" y="815.50"></text></g><g><title>ciTypeFlow::flow_block (87 samples, 0.01%)</title><rect x="18.4877%" y="789" width="0.0135%" height="15" fill="rgb(230,214,11)" fg:x="118975" fg:w="87"/><text x="18.7377%" y="799.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (87 samples, 0.01%)</title><rect x="18.4877%" y="773" width="0.0135%" height="15" fill="rgb(254,105,39)" fg:x="118975" fg:w="87"/><text x="18.7377%" y="783.50"></text></g><g><title>CallGenerator::for_inline (89 samples, 0.01%)</title><rect x="18.4875%" y="885" width="0.0138%" height="15" fill="rgb(245,158,5)" fg:x="118974" fg:w="89"/><text x="18.7375%" y="895.50"></text></g><g><title>InlineTree::check_can_parse (89 samples, 0.01%)</title><rect x="18.4875%" y="869" width="0.0138%" height="15" fill="rgb(249,208,11)" fg:x="118974" fg:w="89"/><text x="18.7375%" y="879.50"></text></g><g><title>ciMethod::get_flow_analysis (89 samples, 0.01%)</title><rect x="18.4875%" y="853" width="0.0138%" height="15" fill="rgb(210,39,28)" fg:x="118974" fg:w="89"/><text x="18.7375%" y="863.50"></text></g><g><title>ciTypeFlow::do_flow (89 samples, 0.01%)</title><rect x="18.4875%" y="837" width="0.0138%" height="15" fill="rgb(211,56,53)" fg:x="118974" fg:w="89"/><text x="18.7375%" y="847.50"></text></g><g><title>ciTypeFlow::flow_types (89 samples, 0.01%)</title><rect x="18.4875%" y="821" width="0.0138%" height="15" fill="rgb(226,201,30)" fg:x="118974" fg:w="89"/><text x="18.7375%" y="831.50"></text></g><g><title>InlineTree::ok_to_inline (67 samples, 0.01%)</title><rect x="18.5164%" y="773" width="0.0104%" height="15" fill="rgb(239,101,34)" fg:x="119160" fg:w="67"/><text x="18.7664%" y="783.50"></text></g><g><title>Compile::call_generator (97 samples, 0.02%)</title><rect x="18.5139%" y="789" width="0.0151%" height="15" fill="rgb(226,209,5)" fg:x="119144" fg:w="97"/><text x="18.7639%" y="799.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.02%)</title><rect x="18.5501%" y="741" width="0.0238%" height="15" fill="rgb(250,105,47)" fg:x="119377" fg:w="153"/><text x="18.8001%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (139 samples, 0.02%)</title><rect x="18.5523%" y="725" width="0.0216%" height="15" fill="rgb(230,72,3)" fg:x="119391" fg:w="139"/><text x="18.8023%" y="735.50"></text></g><g><title>Parse::do_all_blocks (171 samples, 0.03%)</title><rect x="18.5497%" y="757" width="0.0266%" height="15" fill="rgb(232,218,39)" fg:x="119374" fg:w="171"/><text x="18.7997%" y="767.50"></text></g><g><title>Parse::Parse (268 samples, 0.04%)</title><rect x="18.5421%" y="773" width="0.0416%" height="15" fill="rgb(248,166,6)" fg:x="119325" fg:w="268"/><text x="18.7921%" y="783.50"></text></g><g><title>ParseGenerator::generate (270 samples, 0.04%)</title><rect x="18.5419%" y="789" width="0.0420%" height="15" fill="rgb(247,89,20)" fg:x="119324" fg:w="270"/><text x="18.7919%" y="799.50"></text></g><g><title>PredictedCallGenerator::generate (102 samples, 0.02%)</title><rect x="18.5839%" y="789" width="0.0158%" height="15" fill="rgb(248,130,54)" fg:x="119594" fg:w="102"/><text x="18.8339%" y="799.50"></text></g><g><title>Parse::do_call (577 samples, 0.09%)</title><rect x="18.5139%" y="805" width="0.0897%" height="15" fill="rgb(234,196,4)" fg:x="119144" fg:w="577"/><text x="18.7639%" y="815.50"></text></g><g><title>Parse::do_field_access (90 samples, 0.01%)</title><rect x="18.6067%" y="805" width="0.0140%" height="15" fill="rgb(250,143,31)" fg:x="119741" fg:w="90"/><text x="18.8567%" y="815.50"></text></g><g><title>Parse::do_all_blocks (826 samples, 0.13%)</title><rect x="18.5027%" y="853" width="0.1284%" height="15" fill="rgb(211,110,34)" fg:x="119072" fg:w="826"/><text x="18.7527%" y="863.50"></text></g><g><title>Parse::do_one_block (826 samples, 0.13%)</title><rect x="18.5027%" y="837" width="0.1284%" height="15" fill="rgb(215,124,48)" fg:x="119072" fg:w="826"/><text x="18.7527%" y="847.50"></text></g><g><title>Parse::do_one_bytecode (821 samples, 0.13%)</title><rect x="18.5035%" y="821" width="0.1276%" height="15" fill="rgb(216,46,13)" fg:x="119077" fg:w="821"/><text x="18.7535%" y="831.50"></text></g><g><title>ParseGenerator::generate (846 samples, 0.13%)</title><rect x="18.5027%" y="885" width="0.1315%" height="15" fill="rgb(205,184,25)" fg:x="119072" fg:w="846"/><text x="18.7527%" y="895.50"></text></g><g><title>Parse::Parse (846 samples, 0.13%)</title><rect x="18.5027%" y="869" width="0.1315%" height="15" fill="rgb(228,1,10)" fg:x="119072" fg:w="846"/><text x="18.7527%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (966 samples, 0.15%)</title><rect x="18.4875%" y="933" width="0.1501%" height="15" fill="rgb(213,116,27)" fg:x="118974" fg:w="966"/><text x="18.7375%" y="943.50"></text></g><g><title>C2Compiler::compile_method (966 samples, 0.15%)</title><rect x="18.4875%" y="917" width="0.1501%" height="15" fill="rgb(241,95,50)" fg:x="118974" fg:w="966"/><text x="18.7375%" y="927.50"></text></g><g><title>Compile::Compile (966 samples, 0.15%)</title><rect x="18.4875%" y="901" width="0.1501%" height="15" fill="rgb(238,48,32)" fg:x="118974" fg:w="966"/><text x="18.7375%" y="911.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.01%)</title><rect x="18.6530%" y="853" width="0.0106%" height="15" fill="rgb(235,113,49)" fg:x="120039" fg:w="68"/><text x="18.9030%" y="863.50"></text></g><g><title>Parse::Parse (68 samples, 0.01%)</title><rect x="18.6530%" y="837" width="0.0106%" height="15" fill="rgb(205,127,43)" fg:x="120039" fg:w="68"/><text x="18.9030%" y="847.50"></text></g><g><title>JavaThread::thread_main_inner (96 samples, 0.01%)</title><rect x="18.6497%" y="933" width="0.0149%" height="15" fill="rgb(250,162,2)" fg:x="120018" fg:w="96"/><text x="18.8997%" y="943.50"></text></g><g><title>CompileBroker::compiler_thread_loop (96 samples, 0.01%)</title><rect x="18.6497%" y="917" width="0.0149%" height="15" fill="rgb(220,13,41)" fg:x="120018" fg:w="96"/><text x="18.8997%" y="927.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (96 samples, 0.01%)</title><rect x="18.6497%" y="901" width="0.0149%" height="15" fill="rgb(249,221,25)" fg:x="120018" fg:w="96"/><text x="18.8997%" y="911.50"></text></g><g><title>C2Compiler::compile_method (96 samples, 0.01%)</title><rect x="18.6497%" y="885" width="0.0149%" height="15" fill="rgb(215,208,19)" fg:x="120018" fg:w="96"/><text x="18.8997%" y="895.50"></text></g><g><title>Compile::Compile (96 samples, 0.01%)</title><rect x="18.6497%" y="869" width="0.0149%" height="15" fill="rgb(236,175,2)" fg:x="120018" fg:w="96"/><text x="18.8997%" y="879.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.01%)</title><rect x="18.6768%" y="869" width="0.0104%" height="15" fill="rgb(241,52,2)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="879.50"></text></g><g><title>Parse::Parse (67 samples, 0.01%)</title><rect x="18.6768%" y="853" width="0.0104%" height="15" fill="rgb(248,140,14)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="863.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.01%)</title><rect x="18.6768%" y="837" width="0.0104%" height="15" fill="rgb(253,22,42)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="847.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.01%)</title><rect x="18.6768%" y="821" width="0.0104%" height="15" fill="rgb(234,61,47)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.01%)</title><rect x="18.6768%" y="805" width="0.0104%" height="15" fill="rgb(208,226,15)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="815.50"></text></g><g><title>Parse::do_call (67 samples, 0.01%)</title><rect x="18.6768%" y="789" width="0.0104%" height="15" fill="rgb(217,221,4)" fg:x="120192" fg:w="67"/><text x="18.9268%" y="799.50"></text></g><g><title>Parse::do_all_blocks (81 samples, 0.01%)</title><rect x="18.6768%" y="933" width="0.0126%" height="15" fill="rgb(212,174,34)" fg:x="120192" fg:w="81"/><text x="18.9268%" y="943.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.01%)</title><rect x="18.6768%" y="917" width="0.0126%" height="15" fill="rgb(253,83,4)" fg:x="120192" fg:w="81"/><text x="18.9268%" y="927.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.01%)</title><rect x="18.6768%" y="901" width="0.0126%" height="15" fill="rgb(250,195,49)" fg:x="120192" fg:w="81"/><text x="18.9268%" y="911.50"></text></g><g><title>Parse::do_call (81 samples, 0.01%)</title><rect x="18.6768%" y="885" width="0.0126%" height="15" fill="rgb(241,192,25)" fg:x="120192" fg:w="81"/><text x="18.9268%" y="895.50"></text></g><g><title>ParseGenerator::generate (70 samples, 0.01%)</title><rect x="18.6894%" y="533" width="0.0109%" height="15" fill="rgb(208,124,10)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="543.50"></text></g><g><title>Parse::Parse (70 samples, 0.01%)</title><rect x="18.6894%" y="517" width="0.0109%" height="15" fill="rgb(222,33,0)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="527.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.01%)</title><rect x="18.6894%" y="501" width="0.0109%" height="15" fill="rgb(234,209,28)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="511.50"></text></g><g><title>Parse::do_one_block (70 samples, 0.01%)</title><rect x="18.6894%" y="485" width="0.0109%" height="15" fill="rgb(224,11,23)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.01%)</title><rect x="18.6894%" y="469" width="0.0109%" height="15" fill="rgb(232,99,1)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="479.50"></text></g><g><title>Parse::do_call (70 samples, 0.01%)</title><rect x="18.6894%" y="453" width="0.0109%" height="15" fill="rgb(237,95,45)" fg:x="120273" fg:w="70"/><text x="18.9394%" y="463.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.01%)</title><rect x="18.6894%" y="629" width="0.0124%" height="15" fill="rgb(208,109,11)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="639.50"></text></g><g><title>Parse::Parse (80 samples, 0.01%)</title><rect x="18.6894%" y="613" width="0.0124%" height="15" fill="rgb(216,190,48)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="623.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.01%)</title><rect x="18.6894%" y="597" width="0.0124%" height="15" fill="rgb(251,171,36)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="607.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.01%)</title><rect x="18.6894%" y="581" width="0.0124%" height="15" fill="rgb(230,62,22)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.01%)</title><rect x="18.6894%" y="565" width="0.0124%" height="15" fill="rgb(225,114,35)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="575.50"></text></g><g><title>Parse::do_call (80 samples, 0.01%)</title><rect x="18.6894%" y="549" width="0.0124%" height="15" fill="rgb(215,118,42)" fg:x="120273" fg:w="80"/><text x="18.9394%" y="559.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.01%)</title><rect x="18.6894%" y="725" width="0.0135%" height="15" fill="rgb(243,119,21)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="735.50"></text></g><g><title>Parse::Parse (87 samples, 0.01%)</title><rect x="18.6894%" y="709" width="0.0135%" height="15" fill="rgb(252,177,53)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="719.50"></text></g><g><title>Parse::do_all_blocks (87 samples, 0.01%)</title><rect x="18.6894%" y="693" width="0.0135%" height="15" fill="rgb(237,209,29)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="703.50"></text></g><g><title>Parse::do_one_block (87 samples, 0.01%)</title><rect x="18.6894%" y="677" width="0.0135%" height="15" fill="rgb(212,65,23)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.01%)</title><rect x="18.6894%" y="661" width="0.0135%" height="15" fill="rgb(230,222,46)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="671.50"></text></g><g><title>Parse::do_call (87 samples, 0.01%)</title><rect x="18.6894%" y="645" width="0.0135%" height="15" fill="rgb(215,135,32)" fg:x="120273" fg:w="87"/><text x="18.9394%" y="655.50"></text></g><g><title>ParseGenerator::generate (101 samples, 0.02%)</title><rect x="18.6894%" y="821" width="0.0157%" height="15" fill="rgb(246,101,22)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="831.50"></text></g><g><title>Parse::Parse (101 samples, 0.02%)</title><rect x="18.6894%" y="805" width="0.0157%" height="15" fill="rgb(206,107,13)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="815.50"></text></g><g><title>Parse::do_all_blocks (101 samples, 0.02%)</title><rect x="18.6894%" y="789" width="0.0157%" height="15" fill="rgb(250,100,44)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="799.50"></text></g><g><title>Parse::do_one_block (101 samples, 0.02%)</title><rect x="18.6894%" y="773" width="0.0157%" height="15" fill="rgb(231,147,38)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (101 samples, 0.02%)</title><rect x="18.6894%" y="757" width="0.0157%" height="15" fill="rgb(229,8,40)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="767.50"></text></g><g><title>Parse::do_call (101 samples, 0.02%)</title><rect x="18.6894%" y="741" width="0.0157%" height="15" fill="rgb(221,135,30)" fg:x="120273" fg:w="101"/><text x="18.9394%" y="751.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.02%)</title><rect x="18.6894%" y="917" width="0.0186%" height="15" fill="rgb(249,193,18)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="927.50"></text></g><g><title>Parse::Parse (120 samples, 0.02%)</title><rect x="18.6894%" y="901" width="0.0186%" height="15" fill="rgb(209,133,39)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="911.50"></text></g><g><title>Parse::do_all_blocks (120 samples, 0.02%)</title><rect x="18.6894%" y="885" width="0.0186%" height="15" fill="rgb(232,100,14)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="895.50"></text></g><g><title>Parse::do_one_block (120 samples, 0.02%)</title><rect x="18.6894%" y="869" width="0.0186%" height="15" fill="rgb(224,185,1)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="879.50"></text></g><g><title>Parse::do_one_bytecode (120 samples, 0.02%)</title><rect x="18.6894%" y="853" width="0.0186%" height="15" fill="rgb(223,139,8)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="863.50"></text></g><g><title>Parse::do_call (120 samples, 0.02%)</title><rect x="18.6894%" y="837" width="0.0186%" height="15" fill="rgb(232,213,38)" fg:x="120273" fg:w="120"/><text x="18.9394%" y="847.50"></text></g><g><title>Parse::do_call (150 samples, 0.02%)</title><rect x="18.6894%" y="933" width="0.0233%" height="15" fill="rgb(207,94,22)" fg:x="120273" fg:w="150"/><text x="18.9394%" y="943.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.01%)</title><rect x="18.7217%" y="933" width="0.0117%" height="15" fill="rgb(219,183,54)" fg:x="120481" fg:w="75"/><text x="18.9717%" y="943.50"></text></g><g><title>Parse::do_call (75 samples, 0.01%)</title><rect x="18.7217%" y="917" width="0.0117%" height="15" fill="rgb(216,185,54)" fg:x="120481" fg:w="75"/><text x="18.9717%" y="927.50"></text></g><g><title>ParseGenerator::generate (87 samples, 0.01%)</title><rect x="18.7360%" y="261" width="0.0135%" height="15" fill="rgb(254,217,39)" fg:x="120573" fg:w="87"/><text x="18.9860%" y="271.50"></text></g><g><title>Parse::Parse (87 samples, 0.01%)</title><rect x="18.7360%" y="245" width="0.0135%" height="15" fill="rgb(240,178,23)" fg:x="120573" fg:w="87"/><text x="18.9860%" y="255.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.01%)</title><rect x="18.7361%" y="229" width="0.0134%" height="15" fill="rgb(218,11,47)" fg:x="120574" fg:w="86"/><text x="18.9861%" y="239.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.01%)</title><rect x="18.7361%" y="213" width="0.0134%" height="15" fill="rgb(218,51,51)" fg:x="120574" fg:w="86"/><text x="18.9861%" y="223.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.01%)</title><rect x="18.7361%" y="197" width="0.0134%" height="15" fill="rgb(238,126,27)" fg:x="120574" fg:w="86"/><text x="18.9861%" y="207.50"></text></g><g><title>Parse::do_call (100 samples, 0.02%)</title><rect x="18.7344%" y="277" width="0.0155%" height="15" fill="rgb(249,202,22)" fg:x="120563" fg:w="100"/><text x="18.9844%" y="287.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.02%)</title><rect x="18.7344%" y="357" width="0.0166%" height="15" fill="rgb(254,195,49)" fg:x="120563" fg:w="107"/><text x="18.9844%" y="367.50"></text></g><g><title>Parse::Parse (107 samples, 0.02%)</title><rect x="18.7344%" y="341" width="0.0166%" height="15" fill="rgb(208,123,14)" fg:x="120563" fg:w="107"/><text x="18.9844%" y="351.50"></text></g><g><title>Parse::do_all_blocks (107 samples, 0.02%)</title><rect x="18.7344%" y="325" width="0.0166%" height="15" fill="rgb(224,200,8)" fg:x="120563" fg:w="107"/><text x="18.9844%" y="335.50"></text></g><g><title>Parse::do_one_block (107 samples, 0.02%)</title><rect x="18.7344%" y="309" width="0.0166%" height="15" fill="rgb(217,61,36)" fg:x="120563" fg:w="107"/><text x="18.9844%" y="319.50"></text></g><g><title>Parse::do_one_bytecode (107 samples, 0.02%)</title><rect x="18.7344%" y="293" width="0.0166%" height="15" fill="rgb(206,35,45)" fg:x="120563" fg:w="107"/><text x="18.9844%" y="303.50"></text></g><g><title>Parse::do_call (116 samples, 0.02%)</title><rect x="18.7337%" y="373" width="0.0180%" height="15" fill="rgb(217,65,33)" fg:x="120558" fg:w="116"/><text x="18.9837%" y="383.50"></text></g><g><title>ParseGenerator::generate (117 samples, 0.02%)</title><rect x="18.7337%" y="453" width="0.0182%" height="15" fill="rgb(222,158,48)" fg:x="120558" fg:w="117"/><text x="18.9837%" y="463.50"></text></g><g><title>Parse::Parse (117 samples, 0.02%)</title><rect x="18.7337%" y="437" width="0.0182%" height="15" fill="rgb(254,2,54)" fg:x="120558" fg:w="117"/><text x="18.9837%" y="447.50"></text></g><g><title>Parse::do_all_blocks (117 samples, 0.02%)</title><rect x="18.7337%" y="421" width="0.0182%" height="15" fill="rgb(250,143,38)" fg:x="120558" fg:w="117"/><text x="18.9837%" y="431.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.02%)</title><rect x="18.7337%" y="405" width="0.0182%" height="15" fill="rgb(248,25,0)" fg:x="120558" fg:w="117"/><text x="18.9837%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (117 samples, 0.02%)</title><rect x="18.7337%" y="389" width="0.0182%" height="15" fill="rgb(206,152,27)" fg:x="120558" fg:w="117"/><text x="18.9837%" y="399.50"></text></g><g><title>ParseGenerator::generate (132 samples, 0.02%)</title><rect x="18.7333%" y="549" width="0.0205%" height="15" fill="rgb(240,77,30)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="559.50"></text></g><g><title>Parse::Parse (132 samples, 0.02%)</title><rect x="18.7333%" y="533" width="0.0205%" height="15" fill="rgb(231,5,3)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="543.50"></text></g><g><title>Parse::do_all_blocks (132 samples, 0.02%)</title><rect x="18.7333%" y="517" width="0.0205%" height="15" fill="rgb(207,226,32)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="527.50"></text></g><g><title>Parse::do_one_block (132 samples, 0.02%)</title><rect x="18.7333%" y="501" width="0.0205%" height="15" fill="rgb(222,207,47)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (132 samples, 0.02%)</title><rect x="18.7333%" y="485" width="0.0205%" height="15" fill="rgb(229,115,45)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="495.50"></text></g><g><title>Parse::do_call (132 samples, 0.02%)</title><rect x="18.7333%" y="469" width="0.0205%" height="15" fill="rgb(224,191,6)" fg:x="120556" fg:w="132"/><text x="18.9833%" y="479.50"></text></g><g><title>ParseGenerator::generate (152 samples, 0.02%)</title><rect x="18.7333%" y="645" width="0.0236%" height="15" fill="rgb(230,227,24)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="655.50"></text></g><g><title>Parse::Parse (152 samples, 0.02%)</title><rect x="18.7333%" y="629" width="0.0236%" height="15" fill="rgb(228,80,19)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="639.50"></text></g><g><title>Parse::do_all_blocks (152 samples, 0.02%)</title><rect x="18.7333%" y="613" width="0.0236%" height="15" fill="rgb(247,229,0)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="623.50"></text></g><g><title>Parse::do_one_block (152 samples, 0.02%)</title><rect x="18.7333%" y="597" width="0.0236%" height="15" fill="rgb(237,194,15)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (152 samples, 0.02%)</title><rect x="18.7333%" y="581" width="0.0236%" height="15" fill="rgb(219,203,20)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="591.50"></text></g><g><title>Parse::do_call (152 samples, 0.02%)</title><rect x="18.7333%" y="565" width="0.0236%" height="15" fill="rgb(234,128,8)" fg:x="120556" fg:w="152"/><text x="18.9833%" y="575.50"></text></g><g><title>ParseGenerator::generate (180 samples, 0.03%)</title><rect x="18.7333%" y="741" width="0.0280%" height="15" fill="rgb(248,202,8)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="751.50"></text></g><g><title>Parse::Parse (180 samples, 0.03%)</title><rect x="18.7333%" y="725" width="0.0280%" height="15" fill="rgb(206,104,37)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="735.50"></text></g><g><title>Parse::do_all_blocks (180 samples, 0.03%)</title><rect x="18.7333%" y="709" width="0.0280%" height="15" fill="rgb(223,8,27)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="719.50"></text></g><g><title>Parse::do_one_block (180 samples, 0.03%)</title><rect x="18.7333%" y="693" width="0.0280%" height="15" fill="rgb(216,217,28)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (180 samples, 0.03%)</title><rect x="18.7333%" y="677" width="0.0280%" height="15" fill="rgb(249,199,1)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="687.50"></text></g><g><title>Parse::do_call (180 samples, 0.03%)</title><rect x="18.7333%" y="661" width="0.0280%" height="15" fill="rgb(240,85,17)" fg:x="120556" fg:w="180"/><text x="18.9833%" y="671.50"></text></g><g><title>ParseGenerator::generate (230 samples, 0.04%)</title><rect x="18.7333%" y="837" width="0.0357%" height="15" fill="rgb(206,108,45)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="847.50"></text></g><g><title>Parse::Parse (230 samples, 0.04%)</title><rect x="18.7333%" y="821" width="0.0357%" height="15" fill="rgb(245,210,41)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="831.50"></text></g><g><title>Parse::do_all_blocks (230 samples, 0.04%)</title><rect x="18.7333%" y="805" width="0.0357%" height="15" fill="rgb(206,13,37)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="815.50"></text></g><g><title>Parse::do_one_block (230 samples, 0.04%)</title><rect x="18.7333%" y="789" width="0.0357%" height="15" fill="rgb(250,61,18)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (230 samples, 0.04%)</title><rect x="18.7333%" y="773" width="0.0357%" height="15" fill="rgb(235,172,48)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="783.50"></text></g><g><title>Parse::do_call (230 samples, 0.04%)</title><rect x="18.7333%" y="757" width="0.0357%" height="15" fill="rgb(249,201,17)" fg:x="120556" fg:w="230"/><text x="18.9833%" y="767.50"></text></g><g><title>ParseGenerator::generate (288 samples, 0.04%)</title><rect x="18.7333%" y="933" width="0.0448%" height="15" fill="rgb(219,208,6)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="943.50"></text></g><g><title>Parse::Parse (288 samples, 0.04%)</title><rect x="18.7333%" y="917" width="0.0448%" height="15" fill="rgb(248,31,23)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="927.50"></text></g><g><title>Parse::do_all_blocks (288 samples, 0.04%)</title><rect x="18.7333%" y="901" width="0.0448%" height="15" fill="rgb(245,15,42)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="911.50"></text></g><g><title>Parse::do_one_block (288 samples, 0.04%)</title><rect x="18.7333%" y="885" width="0.0448%" height="15" fill="rgb(222,217,39)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="895.50"></text></g><g><title>Parse::do_one_bytecode (288 samples, 0.04%)</title><rect x="18.7333%" y="869" width="0.0448%" height="15" fill="rgb(210,219,27)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="879.50"></text></g><g><title>Parse::do_call (288 samples, 0.04%)</title><rect x="18.7333%" y="853" width="0.0448%" height="15" fill="rgb(252,166,36)" fg:x="120556" fg:w="288"/><text x="18.9833%" y="863.50"></text></g><g><title>Thread::call_run (88 samples, 0.01%)</title><rect x="18.7879%" y="933" width="0.0137%" height="15" fill="rgb(245,132,34)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="943.50"></text></g><g><title>JavaThread::thread_main_inner (88 samples, 0.01%)</title><rect x="18.7879%" y="917" width="0.0137%" height="15" fill="rgb(236,54,3)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="927.50"></text></g><g><title>CompileBroker::compiler_thread_loop (88 samples, 0.01%)</title><rect x="18.7879%" y="901" width="0.0137%" height="15" fill="rgb(241,173,43)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="911.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (88 samples, 0.01%)</title><rect x="18.7879%" y="885" width="0.0137%" height="15" fill="rgb(215,190,9)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="895.50"></text></g><g><title>C2Compiler::compile_method (88 samples, 0.01%)</title><rect x="18.7879%" y="869" width="0.0137%" height="15" fill="rgb(242,101,16)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="879.50"></text></g><g><title>Compile::Compile (88 samples, 0.01%)</title><rect x="18.7879%" y="853" width="0.0137%" height="15" fill="rgb(223,190,21)" fg:x="120907" fg:w="88"/><text x="19.0379%" y="863.50"></text></g><g><title>_dl_update_slotinfo (73 samples, 0.01%)</title><rect x="18.8079%" y="933" width="0.0113%" height="15" fill="rgb(215,228,25)" fg:x="121036" fg:w="73"/><text x="19.0579%" y="943.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="18.8218%" y="933" width="0.0115%" height="15" fill="rgb(225,36,22)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="943.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="18.8218%" y="917" width="0.0115%" height="15" fill="rgb(251,106,46)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="927.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="18.8218%" y="901" width="0.0115%" height="15" fill="rgb(208,90,1)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (74 samples, 0.01%)</title><rect x="18.8218%" y="885" width="0.0115%" height="15" fill="rgb(243,10,4)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="895.50"></text></g><g><title>CompileBroker::compiler_thread_loop (74 samples, 0.01%)</title><rect x="18.8218%" y="869" width="0.0115%" height="15" fill="rgb(212,137,27)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="879.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (74 samples, 0.01%)</title><rect x="18.8218%" y="853" width="0.0115%" height="15" fill="rgb(231,220,49)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="863.50"></text></g><g><title>C2Compiler::compile_method (74 samples, 0.01%)</title><rect x="18.8218%" y="837" width="0.0115%" height="15" fill="rgb(237,96,20)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="847.50"></text></g><g><title>Compile::Compile (74 samples, 0.01%)</title><rect x="18.8218%" y="821" width="0.0115%" height="15" fill="rgb(239,229,30)" fg:x="121125" fg:w="74"/><text x="19.0718%" y="831.50"></text></g><g><title>[unknown] (99,613 samples, 15.48%)</title><rect x="3.3599%" y="949" width="15.4790%" height="15" fill="rgb(219,65,33)" fg:x="21622" fg:w="99613"/><text x="3.6099%" y="959.50">[unknown]</text></g><g><title>Dict::Insert (65 samples, 0.01%)</title><rect x="18.8626%" y="773" width="0.0101%" height="15" fill="rgb(243,134,7)" fg:x="121388" fg:w="65"/><text x="19.1126%" y="783.50"></text></g><g><title>Type::Initialize (76 samples, 0.01%)</title><rect x="18.8623%" y="789" width="0.0118%" height="15" fill="rgb(216,177,54)" fg:x="121386" fg:w="76"/><text x="19.1123%" y="799.50"></text></g><g><title>CompileWrapper::CompileWrapper (80 samples, 0.01%)</title><rect x="18.8619%" y="805" width="0.0124%" height="15" fill="rgb(211,160,20)" fg:x="121383" fg:w="80"/><text x="19.1119%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (237 samples, 0.04%)</title><rect x="18.8835%" y="789" width="0.0368%" height="15" fill="rgb(239,85,39)" fg:x="121522" fg:w="237"/><text x="19.1335%" y="799.50"></text></g><g><title>Compile::remove_useless_nodes (235 samples, 0.04%)</title><rect x="18.9203%" y="789" width="0.0365%" height="15" fill="rgb(232,125,22)" fg:x="121759" fg:w="235"/><text x="19.1703%" y="799.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (575 samples, 0.09%)</title><rect x="18.8769%" y="805" width="0.0893%" height="15" fill="rgb(244,57,34)" fg:x="121480" fg:w="575"/><text x="19.1269%" y="815.50"></text></g><g><title>C2Compiler::compile_method (858 samples, 0.13%)</title><rect x="18.8434%" y="837" width="0.1333%" height="15" fill="rgb(214,203,32)" fg:x="121264" fg:w="858"/><text x="19.0934%" y="847.50"></text></g><g><title>Compile::Compile (848 samples, 0.13%)</title><rect x="18.8449%" y="821" width="0.1318%" height="15" fill="rgb(207,58,43)" fg:x="121274" fg:w="848"/><text x="19.0949%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,032 samples, 0.16%)</title><rect x="18.8420%" y="853" width="0.1604%" height="15" fill="rgb(215,193,15)" fg:x="121255" fg:w="1032"/><text x="19.0920%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (162 samples, 0.03%)</title><rect x="19.0157%" y="565" width="0.0252%" height="15" fill="rgb(232,15,44)" fg:x="122373" fg:w="162"/><text x="19.2657%" y="575.50"></text></g><g><title>x86_pmu_enable (159 samples, 0.02%)</title><rect x="19.0162%" y="549" width="0.0247%" height="15" fill="rgb(212,3,48)" fg:x="122376" fg:w="159"/><text x="19.2662%" y="559.50"></text></g><g><title>intel_pmu_enable_all (156 samples, 0.02%)</title><rect x="19.0166%" y="533" width="0.0242%" height="15" fill="rgb(218,128,7)" fg:x="122379" fg:w="156"/><text x="19.2666%" y="543.50"></text></g><g><title>native_write_msr (155 samples, 0.02%)</title><rect x="19.0168%" y="517" width="0.0241%" height="15" fill="rgb(226,216,39)" fg:x="122380" fg:w="155"/><text x="19.2668%" y="527.50"></text></g><g><title>finish_task_switch.isra.0 (169 samples, 0.03%)</title><rect x="19.0149%" y="581" width="0.0263%" height="15" fill="rgb(243,47,51)" fg:x="122368" fg:w="169"/><text x="19.2649%" y="591.50"></text></g><g><title>futex_wait_queue_me (215 samples, 0.03%)</title><rect x="19.0110%" y="629" width="0.0334%" height="15" fill="rgb(241,183,40)" fg:x="122343" fg:w="215"/><text x="19.2610%" y="639.50"></text></g><g><title>schedule (206 samples, 0.03%)</title><rect x="19.0124%" y="613" width="0.0320%" height="15" fill="rgb(231,217,32)" fg:x="122352" fg:w="206"/><text x="19.2624%" y="623.50"></text></g><g><title>__schedule (203 samples, 0.03%)</title><rect x="19.0129%" y="597" width="0.0315%" height="15" fill="rgb(229,61,38)" fg:x="122355" fg:w="203"/><text x="19.2629%" y="607.50"></text></g><g><title>do_futex (220 samples, 0.03%)</title><rect x="19.0109%" y="661" width="0.0342%" height="15" fill="rgb(225,210,5)" fg:x="122342" fg:w="220"/><text x="19.2609%" y="671.50"></text></g><g><title>futex_wait (220 samples, 0.03%)</title><rect x="19.0109%" y="645" width="0.0342%" height="15" fill="rgb(231,79,45)" fg:x="122342" fg:w="220"/><text x="19.2609%" y="655.50"></text></g><g><title>__x64_sys_futex (223 samples, 0.03%)</title><rect x="19.0106%" y="677" width="0.0347%" height="15" fill="rgb(224,100,7)" fg:x="122340" fg:w="223"/><text x="19.2606%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (240 samples, 0.04%)</title><rect x="19.0104%" y="709" width="0.0373%" height="15" fill="rgb(241,198,18)" fg:x="122339" fg:w="240"/><text x="19.2604%" y="719.50"></text></g><g><title>do_syscall_64 (239 samples, 0.04%)</title><rect x="19.0106%" y="693" width="0.0371%" height="15" fill="rgb(252,97,53)" fg:x="122340" fg:w="239"/><text x="19.2606%" y="703.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (248 samples, 0.04%)</title><rect x="19.0095%" y="757" width="0.0385%" height="15" fill="rgb(220,88,7)" fg:x="122333" fg:w="248"/><text x="19.2595%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (248 samples, 0.04%)</title><rect x="19.0095%" y="741" width="0.0385%" height="15" fill="rgb(213,176,14)" fg:x="122333" fg:w="248"/><text x="19.2595%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (248 samples, 0.04%)</title><rect x="19.0095%" y="725" width="0.0385%" height="15" fill="rgb(246,73,7)" fg:x="122333" fg:w="248"/><text x="19.2595%" y="735.50"></text></g><g><title>___pthread_cond_timedwait64 (254 samples, 0.04%)</title><rect x="19.0092%" y="789" width="0.0395%" height="15" fill="rgb(245,64,36)" fg:x="122331" fg:w="254"/><text x="19.2592%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (254 samples, 0.04%)</title><rect x="19.0092%" y="773" width="0.0395%" height="15" fill="rgb(245,80,10)" fg:x="122331" fg:w="254"/><text x="19.2592%" y="783.50"></text></g><g><title>os::PlatformEvent::park (267 samples, 0.04%)</title><rect x="19.0089%" y="805" width="0.0415%" height="15" fill="rgb(232,107,50)" fg:x="122329" fg:w="267"/><text x="19.2589%" y="815.50"></text></g><g><title>Monitor::wait (288 samples, 0.04%)</title><rect x="19.0057%" y="837" width="0.0448%" height="15" fill="rgb(253,3,0)" fg:x="122309" fg:w="288"/><text x="19.2557%" y="847.50"></text></g><g><title>Monitor::IWait (286 samples, 0.04%)</title><rect x="19.0061%" y="821" width="0.0444%" height="15" fill="rgb(212,99,53)" fg:x="122311" fg:w="286"/><text x="19.2561%" y="831.50"></text></g><g><title>CompileQueue::get (339 samples, 0.05%)</title><rect x="19.0045%" y="853" width="0.0527%" height="15" fill="rgb(249,111,54)" fg:x="122301" fg:w="339"/><text x="19.2545%" y="863.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,391 samples, 0.22%)</title><rect x="18.8418%" y="869" width="0.2161%" height="15" fill="rgb(249,55,30)" fg:x="121254" fg:w="1391"/><text x="19.0918%" y="879.50"></text></g><g><title>__clone3 (1,399 samples, 0.22%)</title><rect x="18.8413%" y="949" width="0.2174%" height="15" fill="rgb(237,47,42)" fg:x="121251" fg:w="1399"/><text x="19.0913%" y="959.50"></text></g><g><title>start_thread (1,397 samples, 0.22%)</title><rect x="18.8417%" y="933" width="0.2171%" height="15" fill="rgb(211,20,18)" fg:x="121253" fg:w="1397"/><text x="19.0917%" y="943.50"></text></g><g><title>thread_native_entry (1,396 samples, 0.22%)</title><rect x="18.8418%" y="917" width="0.2169%" height="15" fill="rgb(231,203,46)" fg:x="121254" fg:w="1396"/><text x="19.0918%" y="927.50"></text></g><g><title>Thread::call_run (1,396 samples, 0.22%)</title><rect x="18.8418%" y="901" width="0.2169%" height="15" fill="rgb(237,142,3)" fg:x="121254" fg:w="1396"/><text x="19.0918%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (1,396 samples, 0.22%)</title><rect x="18.8418%" y="885" width="0.2169%" height="15" fill="rgb(241,107,1)" fg:x="121254" fg:w="1396"/><text x="19.0918%" y="895.50"></text></g><g><title>asm_exc_page_fault (98 samples, 0.02%)</title><rect x="19.0611%" y="949" width="0.0152%" height="15" fill="rgb(229,83,13)" fg:x="122665" fg:w="98"/><text x="19.3111%" y="959.50"></text></g><g><title>C2_CompilerThre (106,476 samples, 16.55%)</title><rect x="2.5453%" y="965" width="16.5454%" height="15" fill="rgb(241,91,40)" fg:x="16380" fg:w="106476"/><text x="2.7953%" y="975.50">C2_CompilerThre</text></g><g><title>[perf-733733.map] (89 samples, 0.01%)</title><rect x="19.0911%" y="949" width="0.0138%" height="15" fill="rgb(225,3,45)" fg:x="122858" fg:w="89"/><text x="19.3411%" y="959.50"></text></g><g><title>Command-Accumul (124 samples, 0.02%)</title><rect x="19.0907%" y="965" width="0.0193%" height="15" fill="rgb(244,223,14)" fg:x="122856" fg:w="124"/><text x="19.3407%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (110 samples, 0.02%)</title><rect x="19.1812%" y="677" width="0.0171%" height="15" fill="rgb(224,124,37)" fg:x="123438" fg:w="110"/><text x="19.4312%" y="687.50"></text></g><g><title>x86_pmu_enable (106 samples, 0.02%)</title><rect x="19.1818%" y="661" width="0.0165%" height="15" fill="rgb(251,171,30)" fg:x="123442" fg:w="106"/><text x="19.4318%" y="671.50"></text></g><g><title>intel_pmu_enable_all (104 samples, 0.02%)</title><rect x="19.1821%" y="645" width="0.0162%" height="15" fill="rgb(236,46,54)" fg:x="123444" fg:w="104"/><text x="19.4321%" y="655.50"></text></g><g><title>native_write_msr (103 samples, 0.02%)</title><rect x="19.1823%" y="629" width="0.0160%" height="15" fill="rgb(245,213,5)" fg:x="123445" fg:w="103"/><text x="19.4323%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (115 samples, 0.02%)</title><rect x="19.1807%" y="693" width="0.0179%" height="15" fill="rgb(230,144,27)" fg:x="123435" fg:w="115"/><text x="19.4307%" y="703.50"></text></g><g><title>futex_wait_queue_me (165 samples, 0.03%)</title><rect x="19.1775%" y="741" width="0.0256%" height="15" fill="rgb(220,86,6)" fg:x="123414" fg:w="165"/><text x="19.4275%" y="751.50"></text></g><g><title>schedule (160 samples, 0.02%)</title><rect x="19.1782%" y="725" width="0.0249%" height="15" fill="rgb(240,20,13)" fg:x="123419" fg:w="160"/><text x="19.4282%" y="735.50"></text></g><g><title>__schedule (157 samples, 0.02%)</title><rect x="19.1787%" y="709" width="0.0244%" height="15" fill="rgb(217,89,34)" fg:x="123422" fg:w="157"/><text x="19.4287%" y="719.50"></text></g><g><title>futex_wait (180 samples, 0.03%)</title><rect x="19.1773%" y="757" width="0.0280%" height="15" fill="rgb(229,13,5)" fg:x="123413" fg:w="180"/><text x="19.4273%" y="767.50"></text></g><g><title>do_futex (182 samples, 0.03%)</title><rect x="19.1771%" y="773" width="0.0283%" height="15" fill="rgb(244,67,35)" fg:x="123412" fg:w="182"/><text x="19.4271%" y="783.50"></text></g><g><title>__x64_sys_futex (185 samples, 0.03%)</title><rect x="19.1771%" y="789" width="0.0287%" height="15" fill="rgb(221,40,2)" fg:x="123412" fg:w="185"/><text x="19.4271%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (195 samples, 0.03%)</title><rect x="19.1771%" y="821" width="0.0303%" height="15" fill="rgb(237,157,21)" fg:x="123412" fg:w="195"/><text x="19.4271%" y="831.50"></text></g><g><title>do_syscall_64 (195 samples, 0.03%)</title><rect x="19.1771%" y="805" width="0.0303%" height="15" fill="rgb(222,94,11)" fg:x="123412" fg:w="195"/><text x="19.4271%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (198 samples, 0.03%)</title><rect x="19.1768%" y="869" width="0.0308%" height="15" fill="rgb(249,113,6)" fg:x="123410" fg:w="198"/><text x="19.4268%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (198 samples, 0.03%)</title><rect x="19.1768%" y="853" width="0.0308%" height="15" fill="rgb(238,137,36)" fg:x="123410" fg:w="198"/><text x="19.4268%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (198 samples, 0.03%)</title><rect x="19.1768%" y="837" width="0.0308%" height="15" fill="rgb(210,102,26)" fg:x="123410" fg:w="198"/><text x="19.4268%" y="847.50"></text></g><g><title>___pthread_cond_timedwait64 (208 samples, 0.03%)</title><rect x="19.1765%" y="901" width="0.0323%" height="15" fill="rgb(218,30,30)" fg:x="123408" fg:w="208"/><text x="19.4265%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (207 samples, 0.03%)</title><rect x="19.1767%" y="885" width="0.0322%" height="15" fill="rgb(214,67,26)" fg:x="123409" fg:w="207"/><text x="19.4267%" y="895.50"></text></g><g><title>Parker::park (292 samples, 0.05%)</title><rect x="19.1733%" y="917" width="0.0454%" height="15" fill="rgb(251,9,53)" fg:x="123387" fg:w="292"/><text x="19.4233%" y="927.50"></text></g><g><title>Unsafe_Park (302 samples, 0.05%)</title><rect x="19.1728%" y="933" width="0.0469%" height="15" fill="rgb(228,204,25)" fg:x="123384" fg:w="302"/><text x="19.4228%" y="943.50"></text></g><g><title>[perf-733733.map] (675 samples, 0.10%)</title><rect x="19.1161%" y="949" width="0.1049%" height="15" fill="rgb(207,153,8)" fg:x="123019" fg:w="675"/><text x="19.3661%" y="959.50"></text></g><g><title>ForkJoinPool.co (706 samples, 0.11%)</title><rect x="19.1139%" y="965" width="0.1097%" height="15" fill="rgb(242,9,16)" fg:x="123005" fg:w="706"/><text x="19.3639%" y="975.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (91 samples, 0.01%)</title><rect x="19.2432%" y="853" width="0.0141%" height="15" fill="rgb(217,211,10)" fg:x="123837" fg:w="91"/><text x="19.4932%" y="863.50"></text></g><g><title>G1RemSet::refine_card_concurrently (91 samples, 0.01%)</title><rect x="19.2432%" y="837" width="0.0141%" height="15" fill="rgb(219,228,52)" fg:x="123837" fg:w="91"/><text x="19.4932%" y="847.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (107 samples, 0.02%)</title><rect x="19.2432%" y="869" width="0.0166%" height="15" fill="rgb(231,92,29)" fg:x="123837" fg:w="107"/><text x="19.4932%" y="879.50"></text></g><g><title>G1_Refine#0 (136 samples, 0.02%)</title><rect x="19.2407%" y="965" width="0.0211%" height="15" fill="rgb(232,8,23)" fg:x="123821" fg:w="136"/><text x="19.4907%" y="975.50"></text></g><g><title>__clone3 (122 samples, 0.02%)</title><rect x="19.2429%" y="949" width="0.0190%" height="15" fill="rgb(216,211,34)" fg:x="123835" fg:w="122"/><text x="19.4929%" y="959.50"></text></g><g><title>start_thread (121 samples, 0.02%)</title><rect x="19.2430%" y="933" width="0.0188%" height="15" fill="rgb(236,151,0)" fg:x="123836" fg:w="121"/><text x="19.4930%" y="943.50"></text></g><g><title>thread_native_entry (120 samples, 0.02%)</title><rect x="19.2432%" y="917" width="0.0186%" height="15" fill="rgb(209,168,3)" fg:x="123837" fg:w="120"/><text x="19.4932%" y="927.50"></text></g><g><title>Thread::call_run (120 samples, 0.02%)</title><rect x="19.2432%" y="901" width="0.0186%" height="15" fill="rgb(208,129,28)" fg:x="123837" fg:w="120"/><text x="19.4932%" y="911.50"></text></g><g><title>ConcurrentGCThread::run (120 samples, 0.02%)</title><rect x="19.2432%" y="885" width="0.0186%" height="15" fill="rgb(229,78,22)" fg:x="123837" fg:w="120"/><text x="19.4932%" y="895.50"></text></g><g><title>G1YoungRemSetSamplingThread::run_service (73 samples, 0.01%)</title><rect x="19.2699%" y="869" width="0.0113%" height="15" fill="rgb(228,187,13)" fg:x="124009" fg:w="73"/><text x="19.5199%" y="879.50"></text></g><g><title>G1_Young_RemSet (76 samples, 0.01%)</title><rect x="19.2696%" y="965" width="0.0118%" height="15" fill="rgb(240,119,24)" fg:x="124007" fg:w="76"/><text x="19.5196%" y="975.50"></text></g><g><title>__clone3 (74 samples, 0.01%)</title><rect x="19.2699%" y="949" width="0.0115%" height="15" fill="rgb(209,194,42)" fg:x="124009" fg:w="74"/><text x="19.5199%" y="959.50"></text></g><g><title>start_thread (74 samples, 0.01%)</title><rect x="19.2699%" y="933" width="0.0115%" height="15" fill="rgb(247,200,46)" fg:x="124009" fg:w="74"/><text x="19.5199%" y="943.50"></text></g><g><title>thread_native_entry (74 samples, 0.01%)</title><rect x="19.2699%" y="917" width="0.0115%" height="15" fill="rgb(218,76,16)" fg:x="124009" fg:w="74"/><text x="19.5199%" y="927.50"></text></g><g><title>Thread::call_run (74 samples, 0.01%)</title><rect x="19.2699%" y="901" width="0.0115%" height="15" fill="rgb(225,21,48)" fg:x="124009" fg:w="74"/><text x="19.5199%" y="911.50"></text></g><g><title>ConcurrentGCThread::run (74 samples, 0.01%)</title><rect x="19.2699%" y="885" width="0.0115%" height="15" fill="rgb(239,223,50)" fg:x="124009" fg:w="74"/><text x="19.5199%" y="895.50"></text></g><g><title>G1ParScanThreadState::trim_queue (77 samples, 0.01%)</title><rect x="19.2859%" y="837" width="0.0120%" height="15" fill="rgb(244,45,21)" fg:x="124112" fg:w="77"/><text x="19.5359%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (146 samples, 0.02%)</title><rect x="19.2851%" y="853" width="0.0227%" height="15" fill="rgb(232,33,43)" fg:x="124107" fg:w="146"/><text x="19.5351%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (80 samples, 0.01%)</title><rect x="19.3130%" y="741" width="0.0124%" height="15" fill="rgb(209,8,3)" fg:x="124286" fg:w="80"/><text x="19.5630%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (102 samples, 0.02%)</title><rect x="19.3097%" y="757" width="0.0158%" height="15" fill="rgb(214,25,53)" fg:x="124265" fg:w="102"/><text x="19.5597%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (117 samples, 0.02%)</title><rect x="19.3080%" y="773" width="0.0182%" height="15" fill="rgb(254,186,54)" fg:x="124254" fg:w="117"/><text x="19.5580%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (130 samples, 0.02%)</title><rect x="19.3078%" y="853" width="0.0202%" height="15" fill="rgb(208,174,49)" fg:x="124253" fg:w="130"/><text x="19.5578%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (130 samples, 0.02%)</title><rect x="19.3078%" y="837" width="0.0202%" height="15" fill="rgb(233,191,51)" fg:x="124253" fg:w="130"/><text x="19.5578%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (130 samples, 0.02%)</title><rect x="19.3078%" y="821" width="0.0202%" height="15" fill="rgb(222,134,10)" fg:x="124253" fg:w="130"/><text x="19.5578%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (130 samples, 0.02%)</title><rect x="19.3078%" y="805" width="0.0202%" height="15" fill="rgb(230,226,20)" fg:x="124253" fg:w="130"/><text x="19.5578%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (129 samples, 0.02%)</title><rect x="19.3080%" y="789" width="0.0200%" height="15" fill="rgb(251,111,25)" fg:x="124254" fg:w="129"/><text x="19.5580%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (123 samples, 0.02%)</title><rect x="19.3370%" y="837" width="0.0191%" height="15" fill="rgb(224,40,46)" fg:x="124441" fg:w="123"/><text x="19.5870%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (69 samples, 0.01%)</title><rect x="19.3454%" y="821" width="0.0107%" height="15" fill="rgb(236,108,47)" fg:x="124495" fg:w="69"/><text x="19.5954%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (69 samples, 0.01%)</title><rect x="19.3454%" y="805" width="0.0107%" height="15" fill="rgb(234,93,0)" fg:x="124495" fg:w="69"/><text x="19.5954%" y="815.50"></text></g><g><title>JavaThread::oops_do (69 samples, 0.01%)</title><rect x="19.3454%" y="789" width="0.0107%" height="15" fill="rgb(224,213,32)" fg:x="124495" fg:w="69"/><text x="19.5954%" y="799.50"></text></g><g><title>G1ParTask::work (463 samples, 0.07%)</title><rect x="19.2851%" y="869" width="0.0719%" height="15" fill="rgb(251,11,48)" fg:x="124107" fg:w="463"/><text x="19.5351%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (129 samples, 0.02%)</title><rect x="19.3370%" y="853" width="0.0200%" height="15" fill="rgb(236,173,5)" fg:x="124441" fg:w="129"/><text x="19.5870%" y="863.50"></text></g><g><title>__clone3 (596 samples, 0.09%)</title><rect x="19.2844%" y="949" width="0.0926%" height="15" fill="rgb(230,95,12)" fg:x="124102" fg:w="596"/><text x="19.5344%" y="959.50"></text></g><g><title>start_thread (596 samples, 0.09%)</title><rect x="19.2844%" y="933" width="0.0926%" height="15" fill="rgb(232,209,1)" fg:x="124102" fg:w="596"/><text x="19.5344%" y="943.50"></text></g><g><title>thread_native_entry (596 samples, 0.09%)</title><rect x="19.2844%" y="917" width="0.0926%" height="15" fill="rgb(232,6,1)" fg:x="124102" fg:w="596"/><text x="19.5344%" y="927.50"></text></g><g><title>Thread::call_run (596 samples, 0.09%)</title><rect x="19.2844%" y="901" width="0.0926%" height="15" fill="rgb(210,224,50)" fg:x="124102" fg:w="596"/><text x="19.5344%" y="911.50"></text></g><g><title>GangWorker::loop (596 samples, 0.09%)</title><rect x="19.2844%" y="885" width="0.0926%" height="15" fill="rgb(228,127,35)" fg:x="124102" fg:w="596"/><text x="19.5344%" y="895.50"></text></g><g><title>GC_Thread#0 (622 samples, 0.10%)</title><rect x="19.2814%" y="965" width="0.0967%" height="15" fill="rgb(245,102,45)" fg:x="124083" fg:w="622"/><text x="19.5314%" y="975.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.01%)</title><rect x="19.3888%" y="821" width="0.0101%" height="15" fill="rgb(214,1,49)" fg:x="124774" fg:w="65"/><text x="19.6388%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue (116 samples, 0.02%)</title><rect x="19.3824%" y="837" width="0.0180%" height="15" fill="rgb(226,163,40)" fg:x="124733" fg:w="116"/><text x="19.6324%" y="847.50"></text></g><g><title>SpinPause (69 samples, 0.01%)</title><rect x="19.4009%" y="837" width="0.0107%" height="15" fill="rgb(239,212,28)" fg:x="124852" fg:w="69"/><text x="19.6509%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (196 samples, 0.03%)</title><rect x="19.3813%" y="853" width="0.0305%" height="15" fill="rgb(220,20,13)" fg:x="124726" fg:w="196"/><text x="19.6313%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (100 samples, 0.02%)</title><rect x="19.4141%" y="757" width="0.0155%" height="15" fill="rgb(210,164,35)" fg:x="124937" fg:w="100"/><text x="19.6641%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (84 samples, 0.01%)</title><rect x="19.4166%" y="741" width="0.0131%" height="15" fill="rgb(248,109,41)" fg:x="124953" fg:w="84"/><text x="19.6666%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (125 samples, 0.02%)</title><rect x="19.4118%" y="773" width="0.0194%" height="15" fill="rgb(238,23,50)" fg:x="124922" fg:w="125"/><text x="19.6618%" y="783.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (137 samples, 0.02%)</title><rect x="19.4118%" y="821" width="0.0213%" height="15" fill="rgb(211,48,49)" fg:x="124922" fg:w="137"/><text x="19.6618%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (137 samples, 0.02%)</title><rect x="19.4118%" y="805" width="0.0213%" height="15" fill="rgb(223,36,21)" fg:x="124922" fg:w="137"/><text x="19.6618%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (137 samples, 0.02%)</title><rect x="19.4118%" y="789" width="0.0213%" height="15" fill="rgb(207,123,46)" fg:x="124922" fg:w="137"/><text x="19.6618%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (138 samples, 0.02%)</title><rect x="19.4118%" y="853" width="0.0214%" height="15" fill="rgb(240,218,32)" fg:x="124922" fg:w="138"/><text x="19.6618%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (138 samples, 0.02%)</title><rect x="19.4118%" y="837" width="0.0214%" height="15" fill="rgb(252,5,43)" fg:x="124922" fg:w="138"/><text x="19.6618%" y="847.50"></text></g><g><title>G1RemSet::scan_rem_set (67 samples, 0.01%)</title><rect x="19.4332%" y="853" width="0.0104%" height="15" fill="rgb(252,84,19)" fg:x="125060" fg:w="67"/><text x="19.6832%" y="863.50"></text></g><g><title>G1CollectionSet::iterate_from (67 samples, 0.01%)</title><rect x="19.4332%" y="837" width="0.0104%" height="15" fill="rgb(243,152,39)" fg:x="125060" fg:w="67"/><text x="19.6832%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (67 samples, 0.01%)</title><rect x="19.4332%" y="821" width="0.0104%" height="15" fill="rgb(234,160,15)" fg:x="125060" fg:w="67"/><text x="19.6832%" y="831.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (79 samples, 0.01%)</title><rect x="19.4572%" y="725" width="0.0123%" height="15" fill="rgb(237,34,20)" fg:x="125214" fg:w="79"/><text x="19.7072%" y="735.50"></text></g><g><title>InterpreterOopMap::iterate_oop (103 samples, 0.02%)</title><rect x="19.4548%" y="757" width="0.0160%" height="15" fill="rgb(229,97,13)" fg:x="125199" fg:w="103"/><text x="19.7048%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (102 samples, 0.02%)</title><rect x="19.4550%" y="741" width="0.0158%" height="15" fill="rgb(234,71,50)" fg:x="125200" fg:w="102"/><text x="19.7050%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (117 samples, 0.02%)</title><rect x="19.4544%" y="773" width="0.0182%" height="15" fill="rgb(253,155,4)" fg:x="125196" fg:w="117"/><text x="19.7044%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (187 samples, 0.03%)</title><rect x="19.4436%" y="837" width="0.0291%" height="15" fill="rgb(222,185,37)" fg:x="125127" fg:w="187"/><text x="19.6936%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (128 samples, 0.02%)</title><rect x="19.4528%" y="821" width="0.0199%" height="15" fill="rgb(251,177,13)" fg:x="125186" fg:w="128"/><text x="19.7028%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (128 samples, 0.02%)</title><rect x="19.4528%" y="805" width="0.0199%" height="15" fill="rgb(250,179,40)" fg:x="125186" fg:w="128"/><text x="19.7028%" y="815.50"></text></g><g><title>JavaThread::oops_do (128 samples, 0.02%)</title><rect x="19.4528%" y="789" width="0.0199%" height="15" fill="rgb(242,44,2)" fg:x="125186" fg:w="128"/><text x="19.7028%" y="799.50"></text></g><g><title>G1ParTask::work (591 samples, 0.09%)</title><rect x="19.3813%" y="869" width="0.0918%" height="15" fill="rgb(216,177,13)" fg:x="124726" fg:w="591"/><text x="19.6313%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (190 samples, 0.03%)</title><rect x="19.4436%" y="853" width="0.0295%" height="15" fill="rgb(216,106,43)" fg:x="125127" fg:w="190"/><text x="19.6936%" y="863.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.01%)</title><rect x="19.4918%" y="741" width="0.0101%" height="15" fill="rgb(216,183,2)" fg:x="125437" fg:w="65"/><text x="19.7418%" y="751.50"></text></g><g><title>__clone3 (781 samples, 0.12%)</title><rect x="19.3809%" y="949" width="0.1214%" height="15" fill="rgb(249,75,3)" fg:x="124723" fg:w="781"/><text x="19.6309%" y="959.50"></text></g><g><title>start_thread (781 samples, 0.12%)</title><rect x="19.3809%" y="933" width="0.1214%" height="15" fill="rgb(219,67,39)" fg:x="124723" fg:w="781"/><text x="19.6309%" y="943.50"></text></g><g><title>thread_native_entry (781 samples, 0.12%)</title><rect x="19.3809%" y="917" width="0.1214%" height="15" fill="rgb(253,228,2)" fg:x="124723" fg:w="781"/><text x="19.6309%" y="927.50"></text></g><g><title>Thread::call_run (781 samples, 0.12%)</title><rect x="19.3809%" y="901" width="0.1214%" height="15" fill="rgb(235,138,27)" fg:x="124723" fg:w="781"/><text x="19.6309%" y="911.50"></text></g><g><title>GangWorker::loop (781 samples, 0.12%)</title><rect x="19.3809%" y="885" width="0.1214%" height="15" fill="rgb(236,97,51)" fg:x="124723" fg:w="781"/><text x="19.6309%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (70 samples, 0.01%)</title><rect x="19.4913%" y="869" width="0.0109%" height="15" fill="rgb(240,80,30)" fg:x="125434" fg:w="70"/><text x="19.7413%" y="879.50"></text></g><g><title>PosixSemaphore::wait (69 samples, 0.01%)</title><rect x="19.4915%" y="853" width="0.0107%" height="15" fill="rgb(230,178,19)" fg:x="125435" fg:w="69"/><text x="19.7415%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (69 samples, 0.01%)</title><rect x="19.4915%" y="837" width="0.0107%" height="15" fill="rgb(210,190,27)" fg:x="125435" fg:w="69"/><text x="19.7415%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (68 samples, 0.01%)</title><rect x="19.4917%" y="821" width="0.0106%" height="15" fill="rgb(222,107,31)" fg:x="125436" fg:w="68"/><text x="19.7417%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (68 samples, 0.01%)</title><rect x="19.4917%" y="805" width="0.0106%" height="15" fill="rgb(216,127,34)" fg:x="125436" fg:w="68"/><text x="19.7417%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (68 samples, 0.01%)</title><rect x="19.4917%" y="789" width="0.0106%" height="15" fill="rgb(234,116,52)" fg:x="125436" fg:w="68"/><text x="19.7417%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="19.4918%" y="773" width="0.0104%" height="15" fill="rgb(222,124,15)" fg:x="125437" fg:w="67"/><text x="19.7418%" y="783.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="19.4918%" y="757" width="0.0104%" height="15" fill="rgb(231,179,28)" fg:x="125437" fg:w="67"/><text x="19.7418%" y="767.50"></text></g><g><title>GC_Thread#1 (810 samples, 0.13%)</title><rect x="19.3781%" y="965" width="0.1259%" height="15" fill="rgb(226,93,45)" fg:x="124705" fg:w="810"/><text x="19.6281%" y="975.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (88 samples, 0.01%)</title><rect x="19.5170%" y="821" width="0.0137%" height="15" fill="rgb(215,8,51)" fg:x="125599" fg:w="88"/><text x="19.7670%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue (157 samples, 0.02%)</title><rect x="19.5070%" y="837" width="0.0244%" height="15" fill="rgb(223,106,5)" fg:x="125535" fg:w="157"/><text x="19.7570%" y="847.50"></text></g><g><title>SpinPause (72 samples, 0.01%)</title><rect x="19.5319%" y="837" width="0.0112%" height="15" fill="rgb(250,191,5)" fg:x="125695" fg:w="72"/><text x="19.7819%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (242 samples, 0.04%)</title><rect x="19.5059%" y="853" width="0.0376%" height="15" fill="rgb(242,132,44)" fg:x="125528" fg:w="242"/><text x="19.7559%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (109 samples, 0.02%)</title><rect x="19.5473%" y="757" width="0.0169%" height="15" fill="rgb(251,152,29)" fg:x="125794" fg:w="109"/><text x="19.7973%" y="767.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (85 samples, 0.01%)</title><rect x="19.5510%" y="741" width="0.0132%" height="15" fill="rgb(218,179,5)" fg:x="125818" fg:w="85"/><text x="19.8010%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (141 samples, 0.02%)</title><rect x="19.5436%" y="773" width="0.0219%" height="15" fill="rgb(227,67,19)" fg:x="125770" fg:w="141"/><text x="19.7936%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (159 samples, 0.02%)</title><rect x="19.5436%" y="853" width="0.0247%" height="15" fill="rgb(233,119,31)" fg:x="125770" fg:w="159"/><text x="19.7936%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (159 samples, 0.02%)</title><rect x="19.5436%" y="837" width="0.0247%" height="15" fill="rgb(241,120,22)" fg:x="125770" fg:w="159"/><text x="19.7936%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (159 samples, 0.02%)</title><rect x="19.5436%" y="821" width="0.0247%" height="15" fill="rgb(224,102,30)" fg:x="125770" fg:w="159"/><text x="19.7936%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (159 samples, 0.02%)</title><rect x="19.5436%" y="805" width="0.0247%" height="15" fill="rgb(210,164,37)" fg:x="125770" fg:w="159"/><text x="19.7936%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (159 samples, 0.02%)</title><rect x="19.5436%" y="789" width="0.0247%" height="15" fill="rgb(226,191,16)" fg:x="125770" fg:w="159"/><text x="19.7936%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (136 samples, 0.02%)</title><rect x="19.5759%" y="837" width="0.0211%" height="15" fill="rgb(214,40,45)" fg:x="125978" fg:w="136"/><text x="19.8259%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (136 samples, 0.02%)</title><rect x="19.5759%" y="821" width="0.0211%" height="15" fill="rgb(244,29,26)" fg:x="125978" fg:w="136"/><text x="19.8259%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (136 samples, 0.02%)</title><rect x="19.5759%" y="805" width="0.0211%" height="15" fill="rgb(216,16,5)" fg:x="125978" fg:w="136"/><text x="19.8259%" y="815.50"></text></g><g><title>JavaThread::oops_do (136 samples, 0.02%)</title><rect x="19.5759%" y="789" width="0.0211%" height="15" fill="rgb(249,76,35)" fg:x="125978" fg:w="136"/><text x="19.8259%" y="799.50"></text></g><g><title>frame::oops_interpreted_do (115 samples, 0.02%)</title><rect x="19.5791%" y="773" width="0.0179%" height="15" fill="rgb(207,11,44)" fg:x="125999" fg:w="115"/><text x="19.8291%" y="783.50"></text></g><g><title>G1ParTask::work (603 samples, 0.09%)</title><rect x="19.5059%" y="869" width="0.0937%" height="15" fill="rgb(228,190,49)" fg:x="125528" fg:w="603"/><text x="19.7559%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (158 samples, 0.02%)</title><rect x="19.5751%" y="853" width="0.0246%" height="15" fill="rgb(214,173,12)" fg:x="125973" fg:w="158"/><text x="19.8251%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (93 samples, 0.01%)</title><rect x="19.6152%" y="629" width="0.0145%" height="15" fill="rgb(218,26,35)" fg:x="126231" fg:w="93"/><text x="19.8652%" y="639.50"></text></g><g><title>x86_pmu_enable (92 samples, 0.01%)</title><rect x="19.6153%" y="613" width="0.0143%" height="15" fill="rgb(220,200,19)" fg:x="126232" fg:w="92"/><text x="19.8653%" y="623.50"></text></g><g><title>intel_pmu_enable_all (92 samples, 0.01%)</title><rect x="19.6153%" y="597" width="0.0143%" height="15" fill="rgb(239,95,49)" fg:x="126232" fg:w="92"/><text x="19.8653%" y="607.50"></text></g><g><title>native_write_msr (91 samples, 0.01%)</title><rect x="19.6155%" y="581" width="0.0141%" height="15" fill="rgb(235,85,53)" fg:x="126233" fg:w="91"/><text x="19.8655%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (95 samples, 0.01%)</title><rect x="19.6150%" y="645" width="0.0148%" height="15" fill="rgb(233,133,31)" fg:x="126230" fg:w="95"/><text x="19.8650%" y="655.50"></text></g><g><title>futex_wait (108 samples, 0.02%)</title><rect x="19.6143%" y="709" width="0.0168%" height="15" fill="rgb(218,25,20)" fg:x="126225" fg:w="108"/><text x="19.8643%" y="719.50"></text></g><g><title>futex_wait_queue_me (107 samples, 0.02%)</title><rect x="19.6144%" y="693" width="0.0166%" height="15" fill="rgb(252,210,38)" fg:x="126226" fg:w="107"/><text x="19.8644%" y="703.50"></text></g><g><title>schedule (107 samples, 0.02%)</title><rect x="19.6144%" y="677" width="0.0166%" height="15" fill="rgb(242,134,21)" fg:x="126226" fg:w="107"/><text x="19.8644%" y="687.50"></text></g><g><title>__schedule (107 samples, 0.02%)</title><rect x="19.6144%" y="661" width="0.0166%" height="15" fill="rgb(213,28,48)" fg:x="126226" fg:w="107"/><text x="19.8644%" y="671.50"></text></g><g><title>__x64_sys_futex (109 samples, 0.02%)</title><rect x="19.6143%" y="741" width="0.0169%" height="15" fill="rgb(250,196,2)" fg:x="126225" fg:w="109"/><text x="19.8643%" y="751.50"></text></g><g><title>do_futex (109 samples, 0.02%)</title><rect x="19.6143%" y="725" width="0.0169%" height="15" fill="rgb(227,5,17)" fg:x="126225" fg:w="109"/><text x="19.8643%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (114 samples, 0.02%)</title><rect x="19.6141%" y="773" width="0.0177%" height="15" fill="rgb(221,226,24)" fg:x="126224" fg:w="114"/><text x="19.8641%" y="783.50"></text></g><g><title>do_syscall_64 (113 samples, 0.02%)</title><rect x="19.6143%" y="757" width="0.0176%" height="15" fill="rgb(211,5,48)" fg:x="126225" fg:w="113"/><text x="19.8643%" y="767.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (116 samples, 0.02%)</title><rect x="19.6139%" y="821" width="0.0180%" height="15" fill="rgb(219,150,6)" fg:x="126223" fg:w="116"/><text x="19.8639%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (116 samples, 0.02%)</title><rect x="19.6139%" y="805" width="0.0180%" height="15" fill="rgb(251,46,16)" fg:x="126223" fg:w="116"/><text x="19.8639%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (116 samples, 0.02%)</title><rect x="19.6139%" y="789" width="0.0180%" height="15" fill="rgb(220,204,40)" fg:x="126223" fg:w="116"/><text x="19.8639%" y="799.50"></text></g><g><title>__clone3 (815 samples, 0.13%)</title><rect x="19.5055%" y="949" width="0.1266%" height="15" fill="rgb(211,85,2)" fg:x="125525" fg:w="815"/><text x="19.7555%" y="959.50"></text></g><g><title>start_thread (815 samples, 0.13%)</title><rect x="19.5055%" y="933" width="0.1266%" height="15" fill="rgb(229,17,7)" fg:x="125525" fg:w="815"/><text x="19.7555%" y="943.50"></text></g><g><title>thread_native_entry (815 samples, 0.13%)</title><rect x="19.5055%" y="917" width="0.1266%" height="15" fill="rgb(239,72,28)" fg:x="125525" fg:w="815"/><text x="19.7555%" y="927.50"></text></g><g><title>Thread::call_run (815 samples, 0.13%)</title><rect x="19.5055%" y="901" width="0.1266%" height="15" fill="rgb(230,47,54)" fg:x="125525" fg:w="815"/><text x="19.7555%" y="911.50"></text></g><g><title>GangWorker::loop (815 samples, 0.13%)</title><rect x="19.5055%" y="885" width="0.1266%" height="15" fill="rgb(214,50,8)" fg:x="125525" fg:w="815"/><text x="19.7555%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (118 samples, 0.02%)</title><rect x="19.6138%" y="869" width="0.0183%" height="15" fill="rgb(216,198,43)" fg:x="126222" fg:w="118"/><text x="19.8638%" y="879.50"></text></g><g><title>PosixSemaphore::wait (118 samples, 0.02%)</title><rect x="19.6138%" y="853" width="0.0183%" height="15" fill="rgb(234,20,35)" fg:x="126222" fg:w="118"/><text x="19.8638%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (118 samples, 0.02%)</title><rect x="19.6138%" y="837" width="0.0183%" height="15" fill="rgb(254,45,19)" fg:x="126222" fg:w="118"/><text x="19.8638%" y="847.50"></text></g><g><title>GC_Thread#2 (831 samples, 0.13%)</title><rect x="19.5039%" y="965" width="0.1291%" height="15" fill="rgb(219,14,44)" fg:x="125515" fg:w="831"/><text x="19.7539%" y="975.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.01%)</title><rect x="19.6432%" y="821" width="0.0112%" height="15" fill="rgb(217,220,26)" fg:x="126411" fg:w="72"/><text x="19.8932%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue (113 samples, 0.02%)</title><rect x="19.6371%" y="837" width="0.0176%" height="15" fill="rgb(213,158,28)" fg:x="126372" fg:w="113"/><text x="19.8871%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (168 samples, 0.03%)</title><rect x="19.6363%" y="853" width="0.0261%" height="15" fill="rgb(252,51,52)" fg:x="126367" fg:w="168"/><text x="19.8863%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (71 samples, 0.01%)</title><rect x="19.6624%" y="773" width="0.0110%" height="15" fill="rgb(246,89,16)" fg:x="126535" fg:w="71"/><text x="19.9124%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (83 samples, 0.01%)</title><rect x="19.6624%" y="853" width="0.0129%" height="15" fill="rgb(216,158,49)" fg:x="126535" fg:w="83"/><text x="19.9124%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (83 samples, 0.01%)</title><rect x="19.6624%" y="837" width="0.0129%" height="15" fill="rgb(236,107,19)" fg:x="126535" fg:w="83"/><text x="19.9124%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (83 samples, 0.01%)</title><rect x="19.6624%" y="821" width="0.0129%" height="15" fill="rgb(228,185,30)" fg:x="126535" fg:w="83"/><text x="19.9124%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (83 samples, 0.01%)</title><rect x="19.6624%" y="805" width="0.0129%" height="15" fill="rgb(246,134,8)" fg:x="126535" fg:w="83"/><text x="19.9124%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (83 samples, 0.01%)</title><rect x="19.6624%" y="789" width="0.0129%" height="15" fill="rgb(214,143,50)" fg:x="126535" fg:w="83"/><text x="19.9124%" y="799.50"></text></g><g><title>G1RootProcessor::process_java_roots (115 samples, 0.02%)</title><rect x="19.6823%" y="837" width="0.0179%" height="15" fill="rgb(228,75,8)" fg:x="126663" fg:w="115"/><text x="19.9323%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (67 samples, 0.01%)</title><rect x="19.6898%" y="821" width="0.0104%" height="15" fill="rgb(207,175,4)" fg:x="126711" fg:w="67"/><text x="19.9398%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (67 samples, 0.01%)</title><rect x="19.6898%" y="805" width="0.0104%" height="15" fill="rgb(205,108,24)" fg:x="126711" fg:w="67"/><text x="19.9398%" y="815.50"></text></g><g><title>JavaThread::oops_do (66 samples, 0.01%)</title><rect x="19.6899%" y="789" width="0.0103%" height="15" fill="rgb(244,120,49)" fg:x="126712" fg:w="66"/><text x="19.9399%" y="799.50"></text></g><g><title>G1ParTask::work (431 samples, 0.07%)</title><rect x="19.6363%" y="869" width="0.0670%" height="15" fill="rgb(223,47,38)" fg:x="126367" fg:w="431"/><text x="19.8863%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (136 samples, 0.02%)</title><rect x="19.6822%" y="853" width="0.0211%" height="15" fill="rgb(229,179,11)" fg:x="126662" fg:w="136"/><text x="19.9322%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (71 samples, 0.01%)</title><rect x="19.7035%" y="869" width="0.0110%" height="15" fill="rgb(231,122,1)" fg:x="126799" fg:w="71"/><text x="19.9535%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="19.7207%" y="629" width="0.0107%" height="15" fill="rgb(245,119,9)" fg:x="126910" fg:w="69"/><text x="19.9707%" y="639.50"></text></g><g><title>x86_pmu_enable (66 samples, 0.01%)</title><rect x="19.7212%" y="613" width="0.0103%" height="15" fill="rgb(241,163,25)" fg:x="126913" fg:w="66"/><text x="19.9712%" y="623.50"></text></g><g><title>intel_pmu_enable_all (66 samples, 0.01%)</title><rect x="19.7212%" y="597" width="0.0103%" height="15" fill="rgb(217,214,3)" fg:x="126913" fg:w="66"/><text x="19.9712%" y="607.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="19.7212%" y="581" width="0.0103%" height="15" fill="rgb(240,86,28)" fg:x="126913" fg:w="66"/><text x="19.9712%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (75 samples, 0.01%)</title><rect x="19.7202%" y="645" width="0.0117%" height="15" fill="rgb(215,47,9)" fg:x="126907" fg:w="75"/><text x="19.9702%" y="655.50"></text></g><g><title>futex_wait_queue_me (85 samples, 0.01%)</title><rect x="19.7193%" y="693" width="0.0132%" height="15" fill="rgb(252,25,45)" fg:x="126901" fg:w="85"/><text x="19.9693%" y="703.50"></text></g><g><title>schedule (84 samples, 0.01%)</title><rect x="19.7195%" y="677" width="0.0131%" height="15" fill="rgb(251,164,9)" fg:x="126902" fg:w="84"/><text x="19.9695%" y="687.50"></text></g><g><title>__schedule (84 samples, 0.01%)</title><rect x="19.7195%" y="661" width="0.0131%" height="15" fill="rgb(233,194,0)" fg:x="126902" fg:w="84"/><text x="19.9695%" y="671.50"></text></g><g><title>__clone3 (628 samples, 0.10%)</title><rect x="19.6352%" y="949" width="0.0976%" height="15" fill="rgb(249,111,24)" fg:x="126360" fg:w="628"/><text x="19.8852%" y="959.50"></text></g><g><title>start_thread (628 samples, 0.10%)</title><rect x="19.6352%" y="933" width="0.0976%" height="15" fill="rgb(250,223,3)" fg:x="126360" fg:w="628"/><text x="19.8852%" y="943.50"></text></g><g><title>thread_native_entry (628 samples, 0.10%)</title><rect x="19.6352%" y="917" width="0.0976%" height="15" fill="rgb(236,178,37)" fg:x="126360" fg:w="628"/><text x="19.8852%" y="927.50"></text></g><g><title>Thread::call_run (628 samples, 0.10%)</title><rect x="19.6352%" y="901" width="0.0976%" height="15" fill="rgb(241,158,50)" fg:x="126360" fg:w="628"/><text x="19.8852%" y="911.50"></text></g><g><title>GangWorker::loop (628 samples, 0.10%)</title><rect x="19.6352%" y="885" width="0.0976%" height="15" fill="rgb(213,121,41)" fg:x="126360" fg:w="628"/><text x="19.8852%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (90 samples, 0.01%)</title><rect x="19.7188%" y="869" width="0.0140%" height="15" fill="rgb(240,92,3)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="879.50"></text></g><g><title>PosixSemaphore::wait (90 samples, 0.01%)</title><rect x="19.7188%" y="853" width="0.0140%" height="15" fill="rgb(205,123,3)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (90 samples, 0.01%)</title><rect x="19.7188%" y="837" width="0.0140%" height="15" fill="rgb(205,97,47)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (90 samples, 0.01%)</title><rect x="19.7188%" y="821" width="0.0140%" height="15" fill="rgb(247,152,14)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (90 samples, 0.01%)</title><rect x="19.7188%" y="805" width="0.0140%" height="15" fill="rgb(248,195,53)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (90 samples, 0.01%)</title><rect x="19.7188%" y="789" width="0.0140%" height="15" fill="rgb(226,201,16)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.01%)</title><rect x="19.7188%" y="773" width="0.0140%" height="15" fill="rgb(205,98,0)" fg:x="126898" fg:w="90"/><text x="19.9688%" y="783.50"></text></g><g><title>do_syscall_64 (88 samples, 0.01%)</title><rect x="19.7191%" y="757" width="0.0137%" height="15" fill="rgb(214,191,48)" fg:x="126900" fg:w="88"/><text x="19.9691%" y="767.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.01%)</title><rect x="19.7191%" y="741" width="0.0137%" height="15" fill="rgb(237,112,39)" fg:x="126900" fg:w="88"/><text x="19.9691%" y="751.50"></text></g><g><title>do_futex (88 samples, 0.01%)</title><rect x="19.7191%" y="725" width="0.0137%" height="15" fill="rgb(247,203,27)" fg:x="126900" fg:w="88"/><text x="19.9691%" y="735.50"></text></g><g><title>futex_wait (88 samples, 0.01%)</title><rect x="19.7191%" y="709" width="0.0137%" height="15" fill="rgb(235,124,28)" fg:x="126900" fg:w="88"/><text x="19.9691%" y="719.50"></text></g><g><title>GC_Thread#3 (646 samples, 0.10%)</title><rect x="19.6331%" y="965" width="0.1004%" height="15" fill="rgb(208,207,46)" fg:x="126346" fg:w="646"/><text x="19.8831%" y="975.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (71 samples, 0.01%)</title><rect x="19.7362%" y="853" width="0.0110%" height="15" fill="rgb(234,176,4)" fg:x="127010" fg:w="71"/><text x="19.9862%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (89 samples, 0.01%)</title><rect x="19.7535%" y="741" width="0.0138%" height="15" fill="rgb(230,133,28)" fg:x="127121" fg:w="89"/><text x="20.0035%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (113 samples, 0.02%)</title><rect x="19.7499%" y="757" width="0.0176%" height="15" fill="rgb(211,137,40)" fg:x="127098" fg:w="113"/><text x="19.9999%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (131 samples, 0.02%)</title><rect x="19.7474%" y="773" width="0.0204%" height="15" fill="rgb(254,35,13)" fg:x="127082" fg:w="131"/><text x="19.9974%" y="783.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (151 samples, 0.02%)</title><rect x="19.7474%" y="821" width="0.0235%" height="15" fill="rgb(225,49,51)" fg:x="127082" fg:w="151"/><text x="19.9974%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (151 samples, 0.02%)</title><rect x="19.7474%" y="805" width="0.0235%" height="15" fill="rgb(251,10,15)" fg:x="127082" fg:w="151"/><text x="19.9974%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (151 samples, 0.02%)</title><rect x="19.7474%" y="789" width="0.0235%" height="15" fill="rgb(228,207,15)" fg:x="127082" fg:w="151"/><text x="19.9974%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (152 samples, 0.02%)</title><rect x="19.7474%" y="853" width="0.0236%" height="15" fill="rgb(241,99,19)" fg:x="127082" fg:w="152"/><text x="19.9974%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (152 samples, 0.02%)</title><rect x="19.7474%" y="837" width="0.0236%" height="15" fill="rgb(207,104,49)" fg:x="127082" fg:w="152"/><text x="19.9974%" y="847.50"></text></g><g><title>G1RootProcessor::process_java_roots (86 samples, 0.01%)</title><rect x="19.7796%" y="837" width="0.0134%" height="15" fill="rgb(234,99,18)" fg:x="127289" fg:w="86"/><text x="20.0296%" y="847.50"></text></g><g><title>G1ParTask::work (377 samples, 0.06%)</title><rect x="19.7362%" y="869" width="0.0586%" height="15" fill="rgb(213,191,49)" fg:x="127010" fg:w="377"/><text x="19.9862%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (98 samples, 0.02%)</title><rect x="19.7796%" y="853" width="0.0152%" height="15" fill="rgb(210,226,19)" fg:x="127289" fg:w="98"/><text x="20.0296%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (65 samples, 0.01%)</title><rect x="19.7959%" y="869" width="0.0101%" height="15" fill="rgb(229,97,18)" fg:x="127394" fg:w="65"/><text x="20.0459%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="19.8118%" y="629" width="0.0103%" height="15" fill="rgb(211,167,15)" fg:x="127496" fg:w="66"/><text x="20.0618%" y="639.50"></text></g><g><title>x86_pmu_enable (65 samples, 0.01%)</title><rect x="19.8119%" y="613" width="0.0101%" height="15" fill="rgb(210,169,34)" fg:x="127497" fg:w="65"/><text x="20.0619%" y="623.50"></text></g><g><title>intel_pmu_enable_all (65 samples, 0.01%)</title><rect x="19.8119%" y="597" width="0.0101%" height="15" fill="rgb(241,121,31)" fg:x="127497" fg:w="65"/><text x="20.0619%" y="607.50"></text></g><g><title>native_write_msr (65 samples, 0.01%)</title><rect x="19.8119%" y="581" width="0.0101%" height="15" fill="rgb(232,40,11)" fg:x="127497" fg:w="65"/><text x="20.0619%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (68 samples, 0.01%)</title><rect x="19.8116%" y="645" width="0.0106%" height="15" fill="rgb(205,86,26)" fg:x="127495" fg:w="68"/><text x="20.0616%" y="655.50"></text></g><g><title>__x64_sys_futex (78 samples, 0.01%)</title><rect x="19.8107%" y="741" width="0.0121%" height="15" fill="rgb(231,126,28)" fg:x="127489" fg:w="78"/><text x="20.0607%" y="751.50"></text></g><g><title>do_futex (77 samples, 0.01%)</title><rect x="19.8108%" y="725" width="0.0120%" height="15" fill="rgb(219,221,18)" fg:x="127490" fg:w="77"/><text x="20.0608%" y="735.50"></text></g><g><title>futex_wait (76 samples, 0.01%)</title><rect x="19.8110%" y="709" width="0.0118%" height="15" fill="rgb(211,40,0)" fg:x="127491" fg:w="76"/><text x="20.0610%" y="719.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="19.8110%" y="693" width="0.0118%" height="15" fill="rgb(239,85,43)" fg:x="127491" fg:w="76"/><text x="20.0610%" y="703.50"></text></g><g><title>schedule (75 samples, 0.01%)</title><rect x="19.8111%" y="677" width="0.0117%" height="15" fill="rgb(231,55,21)" fg:x="127492" fg:w="75"/><text x="20.0611%" y="687.50"></text></g><g><title>__schedule (75 samples, 0.01%)</title><rect x="19.8111%" y="661" width="0.0117%" height="15" fill="rgb(225,184,43)" fg:x="127492" fg:w="75"/><text x="20.0611%" y="671.50"></text></g><g><title>do_syscall_64 (82 samples, 0.01%)</title><rect x="19.8107%" y="757" width="0.0127%" height="15" fill="rgb(251,158,41)" fg:x="127489" fg:w="82"/><text x="20.0607%" y="767.50"></text></g><g><title>__clone3 (569 samples, 0.09%)</title><rect x="19.7352%" y="949" width="0.0884%" height="15" fill="rgb(234,159,37)" fg:x="127003" fg:w="569"/><text x="19.9852%" y="959.50"></text></g><g><title>start_thread (569 samples, 0.09%)</title><rect x="19.7352%" y="933" width="0.0884%" height="15" fill="rgb(216,204,22)" fg:x="127003" fg:w="569"/><text x="19.9852%" y="943.50"></text></g><g><title>thread_native_entry (569 samples, 0.09%)</title><rect x="19.7352%" y="917" width="0.0884%" height="15" fill="rgb(214,17,3)" fg:x="127003" fg:w="569"/><text x="19.9852%" y="927.50"></text></g><g><title>Thread::call_run (569 samples, 0.09%)</title><rect x="19.7352%" y="901" width="0.0884%" height="15" fill="rgb(212,111,17)" fg:x="127003" fg:w="569"/><text x="19.9852%" y="911.50"></text></g><g><title>GangWorker::loop (569 samples, 0.09%)</title><rect x="19.7352%" y="885" width="0.0884%" height="15" fill="rgb(221,157,24)" fg:x="127003" fg:w="569"/><text x="19.9852%" y="895.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (84 samples, 0.01%)</title><rect x="19.8105%" y="869" width="0.0131%" height="15" fill="rgb(252,16,13)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="879.50"></text></g><g><title>PosixSemaphore::wait (84 samples, 0.01%)</title><rect x="19.8105%" y="853" width="0.0131%" height="15" fill="rgb(221,62,2)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="863.50"></text></g><g><title>__new_sem_wait_slow64 (84 samples, 0.01%)</title><rect x="19.8105%" y="837" width="0.0131%" height="15" fill="rgb(247,87,22)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="847.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (84 samples, 0.01%)</title><rect x="19.8105%" y="821" width="0.0131%" height="15" fill="rgb(215,73,9)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="831.50"></text></g><g><title>__futex_abstimed_wait_common (84 samples, 0.01%)</title><rect x="19.8105%" y="805" width="0.0131%" height="15" fill="rgb(207,175,33)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="815.50"></text></g><g><title>__futex_abstimed_wait_common64 (84 samples, 0.01%)</title><rect x="19.8105%" y="789" width="0.0131%" height="15" fill="rgb(243,129,54)" fg:x="127488" fg:w="84"/><text x="20.0605%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.01%)</title><rect x="19.8107%" y="773" width="0.0129%" height="15" fill="rgb(227,119,45)" fg:x="127489" fg:w="83"/><text x="20.0607%" y="783.50"></text></g><g><title>GC_Thread#4 (586 samples, 0.09%)</title><rect x="19.7334%" y="965" width="0.0911%" height="15" fill="rgb(205,109,36)" fg:x="126992" fg:w="586"/><text x="19.9834%" y="975.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (105 samples, 0.02%)</title><rect x="19.8275%" y="853" width="0.0163%" height="15" fill="rgb(205,6,39)" fg:x="127597" fg:w="105"/><text x="20.0775%" y="863.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (93 samples, 0.01%)</title><rect x="19.8441%" y="773" width="0.0145%" height="15" fill="rgb(221,32,16)" fg:x="127704" fg:w="93"/><text x="20.0941%" y="783.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (113 samples, 0.02%)</title><rect x="19.8439%" y="789" width="0.0176%" height="15" fill="rgb(228,144,50)" fg:x="127703" fg:w="113"/><text x="20.0939%" y="799.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (114 samples, 0.02%)</title><rect x="19.8439%" y="853" width="0.0177%" height="15" fill="rgb(229,201,53)" fg:x="127703" fg:w="114"/><text x="20.0939%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (114 samples, 0.02%)</title><rect x="19.8439%" y="837" width="0.0177%" height="15" fill="rgb(249,153,27)" fg:x="127703" fg:w="114"/><text x="20.0939%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (114 samples, 0.02%)</title><rect x="19.8439%" y="821" width="0.0177%" height="15" fill="rgb(227,106,25)" fg:x="127703" fg:w="114"/><text x="20.0939%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (114 samples, 0.02%)</title><rect x="19.8439%" y="805" width="0.0177%" height="15" fill="rgb(230,65,29)" fg:x="127703" fg:w="114"/><text x="20.0939%" y="815.50"></text></g><g><title>G1RemSet::scan_rem_set (75 samples, 0.01%)</title><rect x="19.8616%" y="853" width="0.0117%" height="15" fill="rgb(221,57,46)" fg:x="127817" fg:w="75"/><text x="20.1116%" y="863.50"></text></g><g><title>G1CollectionSet::iterate_from (75 samples, 0.01%)</title><rect x="19.8616%" y="837" width="0.0117%" height="15" fill="rgb(229,161,17)" fg:x="127817" fg:w="75"/><text x="20.1116%" y="847.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (75 samples, 0.01%)</title><rect x="19.8616%" y="821" width="0.0117%" height="15" fill="rgb(222,213,11)" fg:x="127817" fg:w="75"/><text x="20.1116%" y="831.50"></text></g><g><title>G1ParTask::work (337 samples, 0.05%)</title><rect x="19.8275%" y="869" width="0.0524%" height="15" fill="rgb(235,35,13)" fg:x="127597" fg:w="337"/><text x="20.0775%" y="879.50"></text></g><g><title>G1STWRefProcTaskProxy::work (74 samples, 0.01%)</title><rect x="19.8812%" y="869" width="0.0115%" height="15" fill="rgb(233,158,34)" fg:x="127943" fg:w="74"/><text x="20.1312%" y="879.50"></text></g><g><title>__clone3 (506 samples, 0.08%)</title><rect x="19.8262%" y="949" width="0.0786%" height="15" fill="rgb(215,151,48)" fg:x="127589" fg:w="506"/><text x="20.0762%" y="959.50"></text></g><g><title>start_thread (506 samples, 0.08%)</title><rect x="19.8262%" y="933" width="0.0786%" height="15" fill="rgb(229,84,14)" fg:x="127589" fg:w="506"/><text x="20.0762%" y="943.50"></text></g><g><title>thread_native_entry (506 samples, 0.08%)</title><rect x="19.8262%" y="917" width="0.0786%" height="15" fill="rgb(229,68,14)" fg:x="127589" fg:w="506"/><text x="20.0762%" y="927.50"></text></g><g><title>Thread::call_run (506 samples, 0.08%)</title><rect x="19.8262%" y="901" width="0.0786%" height="15" fill="rgb(243,106,26)" fg:x="127589" fg:w="506"/><text x="20.0762%" y="911.50"></text></g><g><title>GangWorker::loop (506 samples, 0.08%)</title><rect x="19.8262%" y="885" width="0.0786%" height="15" fill="rgb(206,45,38)" fg:x="127589" fg:w="506"/><text x="20.0762%" y="895.50"></text></g><g><title>GC_Thread#5 (520 samples, 0.08%)</title><rect x="19.8245%" y="965" width="0.0808%" height="15" fill="rgb(226,6,15)" fg:x="127578" fg:w="520"/><text x="20.0745%" y="975.50"></text></g><g><title>G1ParScanThreadState::trim_queue (100 samples, 0.02%)</title><rect x="19.9101%" y="837" width="0.0155%" height="15" fill="rgb(232,22,54)" fg:x="128129" fg:w="100"/><text x="20.1601%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (169 samples, 0.03%)</title><rect x="19.9090%" y="853" width="0.0263%" height="15" fill="rgb(229,222,32)" fg:x="128122" fg:w="169"/><text x="20.1590%" y="863.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (69 samples, 0.01%)</title><rect x="19.9372%" y="757" width="0.0107%" height="15" fill="rgb(228,62,29)" fg:x="128303" fg:w="69"/><text x="20.1872%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (93 samples, 0.01%)</title><rect x="19.9353%" y="773" width="0.0145%" height="15" fill="rgb(251,103,34)" fg:x="128291" fg:w="93"/><text x="20.1853%" y="783.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (103 samples, 0.02%)</title><rect x="19.9353%" y="853" width="0.0160%" height="15" fill="rgb(233,12,30)" fg:x="128291" fg:w="103"/><text x="20.1853%" y="863.50"></text></g><g><title>G1RemSet::update_rem_set (103 samples, 0.02%)</title><rect x="19.9353%" y="837" width="0.0160%" height="15" fill="rgb(238,52,0)" fg:x="128291" fg:w="103"/><text x="20.1853%" y="847.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (103 samples, 0.02%)</title><rect x="19.9353%" y="821" width="0.0160%" height="15" fill="rgb(223,98,5)" fg:x="128291" fg:w="103"/><text x="20.1853%" y="831.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (103 samples, 0.02%)</title><rect x="19.9353%" y="805" width="0.0160%" height="15" fill="rgb(228,75,37)" fg:x="128291" fg:w="103"/><text x="20.1853%" y="815.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (103 samples, 0.02%)</title><rect x="19.9353%" y="789" width="0.0160%" height="15" fill="rgb(205,115,49)" fg:x="128291" fg:w="103"/><text x="20.1853%" y="799.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (74 samples, 0.01%)</title><rect x="19.9577%" y="757" width="0.0115%" height="15" fill="rgb(250,154,43)" fg:x="128435" fg:w="74"/><text x="20.2077%" y="767.50"></text></g><g><title>InterpreterOopMap::iterate_oop (77 samples, 0.01%)</title><rect x="19.9692%" y="757" width="0.0120%" height="15" fill="rgb(226,43,29)" fg:x="128509" fg:w="77"/><text x="20.2192%" y="767.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (76 samples, 0.01%)</title><rect x="19.9693%" y="741" width="0.0118%" height="15" fill="rgb(249,228,39)" fg:x="128510" fg:w="76"/><text x="20.2193%" y="751.50"></text></g><g><title>frame::oops_interpreted_do (159 samples, 0.02%)</title><rect x="19.9575%" y="773" width="0.0247%" height="15" fill="rgb(216,79,43)" fg:x="128434" fg:w="159"/><text x="20.2075%" y="783.50"></text></g><g><title>G1RootProcessor::process_java_roots (183 samples, 0.03%)</title><rect x="19.9539%" y="837" width="0.0284%" height="15" fill="rgb(228,95,12)" fg:x="128411" fg:w="183"/><text x="20.2039%" y="847.50"></text></g><g><title>Threads::possibly_parallel_oops_do (183 samples, 0.03%)</title><rect x="19.9539%" y="821" width="0.0284%" height="15" fill="rgb(249,221,15)" fg:x="128411" fg:w="183"/><text x="20.2039%" y="831.50"></text></g><g><title>Threads::possibly_parallel_threads_do (183 samples, 0.03%)</title><rect x="19.9539%" y="805" width="0.0284%" height="15" fill="rgb(233,34,13)" fg:x="128411" fg:w="183"/><text x="20.2039%" y="815.50"></text></g><g><title>JavaThread::oops_do (183 samples, 0.03%)</title><rect x="19.9539%" y="789" width="0.0284%" height="15" fill="rgb(214,103,39)" fg:x="128411" fg:w="183"/><text x="20.2039%" y="799.50"></text></g><g><title>G1ParTask::work (479 samples, 0.07%)</title><rect x="19.9090%" y="869" width="0.0744%" height="15" fill="rgb(251,126,39)" fg:x="128122" fg:w="479"/><text x="20.1590%" y="879.50"></text></g><g><title>G1RootProcessor::evacuate_roots (191 samples, 0.03%)</title><rect x="19.9538%" y="853" width="0.0297%" height="15" fill="rgb(214,216,36)" fg:x="128410" fg:w="191"/><text x="20.2038%" y="863.50"></text></g><g><title>G1STWRefProcTaskProxy::work (69 samples, 0.01%)</title><rect x="19.9850%" y="869" width="0.0107%" height="15" fill="rgb(220,221,8)" fg:x="128611" fg:w="69"/><text x="20.2350%" y="879.50"></text></g><g><title>__clone3 (653 samples, 0.10%)</title><rect x="19.9084%" y="949" width="0.1015%" height="15" fill="rgb(240,216,3)" fg:x="128118" fg:w="653"/><text x="20.1584%" y="959.50"></text></g><g><title>start_thread (653 samples, 0.10%)</title><rect x="19.9084%" y="933" width="0.1015%" height="15" fill="rgb(232,218,17)" fg:x="128118" fg:w="653"/><text x="20.1584%" y="943.50"></text></g><g><title>thread_native_entry (653 samples, 0.10%)</title><rect x="19.9084%" y="917" width="0.1015%" height="15" fill="rgb(229,163,45)" fg:x="128118" fg:w="653"/><text x="20.1584%" y="927.50"></text></g><g><title>Thread::call_run (653 samples, 0.10%)</title><rect x="19.9084%" y="901" width="0.1015%" height="15" fill="rgb(231,110,42)" fg:x="128118" fg:w="653"/><text x="20.1584%" y="911.50"></text></g><g><title>GangWorker::loop (653 samples, 0.10%)</title><rect x="19.9084%" y="885" width="0.1015%" height="15" fill="rgb(208,170,48)" fg:x="128118" fg:w="653"/><text x="20.1584%" y="895.50"></text></g><g><title>GC_Thread#6 (680 samples, 0.11%)</title><rect x="19.9053%" y="965" width="0.1057%" height="15" fill="rgb(239,116,25)" fg:x="128098" fg:w="680"/><text x="20.1553%" y="975.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (91 samples, 0.01%)</title><rect x="20.0206%" y="821" width="0.0141%" height="15" fill="rgb(219,200,50)" fg:x="128840" fg:w="91"/><text x="20.2706%" y="831.50"></text></g><g><title>G1ParScanThreadState::trim_queue (136 samples, 0.02%)</title><rect x="20.0150%" y="837" width="0.0211%" height="15" fill="rgb(245,200,0)" fg:x="128804" fg:w="136"/><text x="20.2650%" y="847.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (200 samples, 0.03%)</title><rect x="20.0142%" y="853" width="0.0311%" height="15" fill="rgb(245,119,33)" fg:x="128799" fg:w="200"/><text x="20.2642%" y="863.50"></text></g><g><title>G1ParTask::work (352 samples, 0.05%)</title><rect x="20.0142%" y="869" width="0.0547%" height="15" fill="rgb(231,125,12)" fg:x="128799" fg:w="352"/><text x="20.2642%" y="879.50"></text></g><g><title>__clone3 (519 samples, 0.08%)</title><rect x="20.0141%" y="949" width="0.0806%" height="15" fill="rgb(216,96,41)" fg:x="128798" fg:w="519"/><text x="20.2641%" y="959.50"></text></g><g><title>start_thread (519 samples, 0.08%)</title><rect x="20.0141%" y="933" width="0.0806%" height="15" fill="rgb(248,43,45)" fg:x="128798" fg:w="519"/><text x="20.2641%" y="943.50"></text></g><g><title>thread_native_entry (519 samples, 0.08%)</title><rect x="20.0141%" y="917" width="0.0806%" height="15" fill="rgb(217,222,7)" fg:x="128798" fg:w="519"/><text x="20.2641%" y="927.50"></text></g><g><title>Thread::call_run (519 samples, 0.08%)</title><rect x="20.0141%" y="901" width="0.0806%" height="15" fill="rgb(233,28,6)" fg:x="128798" fg:w="519"/><text x="20.2641%" y="911.50"></text></g><g><title>GangWorker::loop (519 samples, 0.08%)</title><rect x="20.0141%" y="885" width="0.0806%" height="15" fill="rgb(231,218,15)" fg:x="128798" fg:w="519"/><text x="20.2641%" y="895.50"></text></g><g><title>GC_Thread#7 (543 samples, 0.08%)</title><rect x="20.0110%" y="965" width="0.0844%" height="15" fill="rgb(226,171,48)" fg:x="128778" fg:w="543"/><text x="20.2610%" y="975.50"></text></g><g><title>[perf-733733.map] (130 samples, 0.02%)</title><rect x="20.1008%" y="949" width="0.0202%" height="15" fill="rgb(235,201,9)" fg:x="129356" fg:w="130"/><text x="20.3508%" y="959.50"></text></g><g><title>Service_Thread (140 samples, 0.02%)</title><rect x="20.0999%" y="965" width="0.0218%" height="15" fill="rgb(217,80,15)" fg:x="129350" fg:w="140"/><text x="20.3499%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (308 samples, 0.05%)</title><rect x="20.1387%" y="581" width="0.0479%" height="15" fill="rgb(219,152,8)" fg:x="129600" fg:w="308"/><text x="20.3887%" y="591.50"></text></g><g><title>x86_pmu_enable (303 samples, 0.05%)</title><rect x="20.1395%" y="565" width="0.0471%" height="15" fill="rgb(243,107,38)" fg:x="129605" fg:w="303"/><text x="20.3895%" y="575.50"></text></g><g><title>intel_pmu_enable_all (303 samples, 0.05%)</title><rect x="20.1395%" y="549" width="0.0471%" height="15" fill="rgb(231,17,5)" fg:x="129605" fg:w="303"/><text x="20.3895%" y="559.50"></text></g><g><title>native_write_msr (303 samples, 0.05%)</title><rect x="20.1395%" y="533" width="0.0471%" height="15" fill="rgb(209,25,54)" fg:x="129605" fg:w="303"/><text x="20.3895%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (322 samples, 0.05%)</title><rect x="20.1373%" y="597" width="0.0500%" height="15" fill="rgb(219,0,2)" fg:x="129591" fg:w="322"/><text x="20.3873%" y="607.50"></text></g><g><title>futex_wait_queue_me (389 samples, 0.06%)</title><rect x="20.1306%" y="645" width="0.0604%" height="15" fill="rgb(246,9,5)" fg:x="129548" fg:w="389"/><text x="20.3806%" y="655.50"></text></g><g><title>schedule (372 samples, 0.06%)</title><rect x="20.1333%" y="629" width="0.0578%" height="15" fill="rgb(226,159,4)" fg:x="129565" fg:w="372"/><text x="20.3833%" y="639.50"></text></g><g><title>__schedule (371 samples, 0.06%)</title><rect x="20.1334%" y="613" width="0.0577%" height="15" fill="rgb(219,175,34)" fg:x="129566" fg:w="371"/><text x="20.3834%" y="623.50"></text></g><g><title>futex_wait (416 samples, 0.06%)</title><rect x="20.1303%" y="661" width="0.0646%" height="15" fill="rgb(236,10,46)" fg:x="129546" fg:w="416"/><text x="20.3803%" y="671.50"></text></g><g><title>do_futex (419 samples, 0.07%)</title><rect x="20.1303%" y="677" width="0.0651%" height="15" fill="rgb(240,211,16)" fg:x="129546" fg:w="419"/><text x="20.3803%" y="687.50"></text></g><g><title>__x64_sys_futex (422 samples, 0.07%)</title><rect x="20.1302%" y="693" width="0.0656%" height="15" fill="rgb(205,3,43)" fg:x="129545" fg:w="422"/><text x="20.3802%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (441 samples, 0.07%)</title><rect x="20.1298%" y="725" width="0.0685%" height="15" fill="rgb(245,7,22)" fg:x="129543" fg:w="441"/><text x="20.3798%" y="735.50"></text></g><g><title>do_syscall_64 (440 samples, 0.07%)</title><rect x="20.1300%" y="709" width="0.0684%" height="15" fill="rgb(239,132,32)" fg:x="129544" fg:w="440"/><text x="20.3800%" y="719.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (447 samples, 0.07%)</title><rect x="20.1295%" y="773" width="0.0695%" height="15" fill="rgb(228,202,34)" fg:x="129541" fg:w="447"/><text x="20.3795%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (447 samples, 0.07%)</title><rect x="20.1295%" y="757" width="0.0695%" height="15" fill="rgb(254,200,22)" fg:x="129541" fg:w="447"/><text x="20.3795%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (447 samples, 0.07%)</title><rect x="20.1295%" y="741" width="0.0695%" height="15" fill="rgb(219,10,39)" fg:x="129541" fg:w="447"/><text x="20.3795%" y="751.50"></text></g><g><title>___pthread_cond_timedwait64 (453 samples, 0.07%)</title><rect x="20.1294%" y="805" width="0.0704%" height="15" fill="rgb(226,210,39)" fg:x="129540" fg:w="453"/><text x="20.3794%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (453 samples, 0.07%)</title><rect x="20.1294%" y="789" width="0.0704%" height="15" fill="rgb(208,219,16)" fg:x="129540" fg:w="453"/><text x="20.3794%" y="799.50"></text></g><g><title>Monitor::wait (496 samples, 0.08%)</title><rect x="20.1263%" y="853" width="0.0771%" height="15" fill="rgb(216,158,51)" fg:x="129520" fg:w="496"/><text x="20.3763%" y="863.50"></text></g><g><title>Monitor::IWait (491 samples, 0.08%)</title><rect x="20.1270%" y="837" width="0.0763%" height="15" fill="rgb(233,14,44)" fg:x="129525" fg:w="491"/><text x="20.3770%" y="847.50"></text></g><g><title>os::PlatformEvent::park (481 samples, 0.07%)</title><rect x="20.1286%" y="821" width="0.0747%" height="15" fill="rgb(237,97,39)" fg:x="129535" fg:w="481"/><text x="20.3786%" y="831.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (114 samples, 0.02%)</title><rect x="20.2086%" y="805" width="0.0177%" height="15" fill="rgb(218,198,43)" fg:x="130050" fg:w="114"/><text x="20.4586%" y="815.50"></text></g><g><title>NMethodSweeper::process_compiled_method (143 samples, 0.02%)</title><rect x="20.2077%" y="821" width="0.0222%" height="15" fill="rgb(231,104,20)" fg:x="130044" fg:w="143"/><text x="20.4577%" y="831.50"></text></g><g><title>NMethodSweeper::possibly_sweep (174 samples, 0.03%)</title><rect x="20.2033%" y="853" width="0.0270%" height="15" fill="rgb(254,36,13)" fg:x="130016" fg:w="174"/><text x="20.4533%" y="863.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (162 samples, 0.03%)</title><rect x="20.2052%" y="837" width="0.0252%" height="15" fill="rgb(248,14,50)" fg:x="130028" fg:w="162"/><text x="20.4552%" y="847.50"></text></g><g><title>__clone3 (695 samples, 0.11%)</title><rect x="20.1247%" y="949" width="0.1080%" height="15" fill="rgb(217,107,29)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="959.50"></text></g><g><title>start_thread (695 samples, 0.11%)</title><rect x="20.1247%" y="933" width="0.1080%" height="15" fill="rgb(251,169,33)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="943.50"></text></g><g><title>thread_native_entry (695 samples, 0.11%)</title><rect x="20.1247%" y="917" width="0.1080%" height="15" fill="rgb(217,108,32)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="927.50"></text></g><g><title>Thread::call_run (695 samples, 0.11%)</title><rect x="20.1247%" y="901" width="0.1080%" height="15" fill="rgb(219,66,42)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="911.50"></text></g><g><title>JavaThread::thread_main_inner (695 samples, 0.11%)</title><rect x="20.1247%" y="885" width="0.1080%" height="15" fill="rgb(206,180,7)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="895.50"></text></g><g><title>NMethodSweeper::sweeper_loop (695 samples, 0.11%)</title><rect x="20.1247%" y="869" width="0.1080%" height="15" fill="rgb(208,226,31)" fg:x="129510" fg:w="695"/><text x="20.3747%" y="879.50"></text></g><g><title>Sweeper_thread (710 samples, 0.11%)</title><rect x="20.1230%" y="965" width="0.1103%" height="15" fill="rgb(218,26,49)" fg:x="129499" fg:w="710"/><text x="20.3730%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (85 samples, 0.01%)</title><rect x="20.2762%" y="661" width="0.0132%" height="15" fill="rgb(233,197,48)" fg:x="130485" fg:w="85"/><text x="20.5262%" y="671.50"></text></g><g><title>x86_pmu_enable (84 samples, 0.01%)</title><rect x="20.2764%" y="645" width="0.0131%" height="15" fill="rgb(252,181,51)" fg:x="130486" fg:w="84"/><text x="20.5264%" y="655.50"></text></g><g><title>intel_pmu_enable_all (83 samples, 0.01%)</title><rect x="20.2765%" y="629" width="0.0129%" height="15" fill="rgb(253,90,19)" fg:x="130487" fg:w="83"/><text x="20.5265%" y="639.50"></text></g><g><title>native_write_msr (83 samples, 0.01%)</title><rect x="20.2765%" y="613" width="0.0129%" height="15" fill="rgb(215,171,30)" fg:x="130487" fg:w="83"/><text x="20.5265%" y="623.50"></text></g><g><title>finish_task_switch.isra.0 (88 samples, 0.01%)</title><rect x="20.2759%" y="677" width="0.0137%" height="15" fill="rgb(214,222,9)" fg:x="130483" fg:w="88"/><text x="20.5259%" y="687.50"></text></g><g><title>do_futex (101 samples, 0.02%)</title><rect x="20.2745%" y="757" width="0.0157%" height="15" fill="rgb(223,3,22)" fg:x="130474" fg:w="101"/><text x="20.5245%" y="767.50"></text></g><g><title>futex_wait (99 samples, 0.02%)</title><rect x="20.2748%" y="741" width="0.0154%" height="15" fill="rgb(225,196,46)" fg:x="130476" fg:w="99"/><text x="20.5248%" y="751.50"></text></g><g><title>futex_wait_queue_me (98 samples, 0.02%)</title><rect x="20.2750%" y="725" width="0.0152%" height="15" fill="rgb(209,110,37)" fg:x="130477" fg:w="98"/><text x="20.5250%" y="735.50"></text></g><g><title>schedule (95 samples, 0.01%)</title><rect x="20.2754%" y="709" width="0.0148%" height="15" fill="rgb(249,89,12)" fg:x="130480" fg:w="95"/><text x="20.5254%" y="719.50"></text></g><g><title>__schedule (95 samples, 0.01%)</title><rect x="20.2754%" y="693" width="0.0148%" height="15" fill="rgb(226,27,33)" fg:x="130480" fg:w="95"/><text x="20.5254%" y="703.50"></text></g><g><title>__x64_sys_futex (102 samples, 0.02%)</title><rect x="20.2745%" y="773" width="0.0158%" height="15" fill="rgb(213,82,22)" fg:x="130474" fg:w="102"/><text x="20.5245%" y="783.50"></text></g><g><title>___pthread_cond_timedwait64 (106 samples, 0.02%)</title><rect x="20.2742%" y="885" width="0.0165%" height="15" fill="rgb(248,140,0)" fg:x="130472" fg:w="106"/><text x="20.5242%" y="895.50"></text></g><g><title>__pthread_cond_wait_common (106 samples, 0.02%)</title><rect x="20.2742%" y="869" width="0.0165%" height="15" fill="rgb(228,106,3)" fg:x="130472" fg:w="106"/><text x="20.5242%" y="879.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (105 samples, 0.02%)</title><rect x="20.2744%" y="853" width="0.0163%" height="15" fill="rgb(209,23,37)" fg:x="130473" fg:w="105"/><text x="20.5244%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common (105 samples, 0.02%)</title><rect x="20.2744%" y="837" width="0.0163%" height="15" fill="rgb(241,93,50)" fg:x="130473" fg:w="105"/><text x="20.5244%" y="847.50"></text></g><g><title>__futex_abstimed_wait_common64 (105 samples, 0.02%)</title><rect x="20.2744%" y="821" width="0.0163%" height="15" fill="rgb(253,46,43)" fg:x="130473" fg:w="105"/><text x="20.5244%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.02%)</title><rect x="20.2745%" y="805" width="0.0162%" height="15" fill="rgb(226,206,43)" fg:x="130474" fg:w="104"/><text x="20.5245%" y="815.50"></text></g><g><title>do_syscall_64 (104 samples, 0.02%)</title><rect x="20.2745%" y="789" width="0.0162%" height="15" fill="rgb(217,54,7)" fg:x="130474" fg:w="104"/><text x="20.5245%" y="799.50"></text></g><g><title>os::PlatformEvent::park (110 samples, 0.02%)</title><rect x="20.2742%" y="901" width="0.0171%" height="15" fill="rgb(223,5,52)" fg:x="130472" fg:w="110"/><text x="20.5242%" y="911.50"></text></g><g><title>JVM_Sleep (116 samples, 0.02%)</title><rect x="20.2734%" y="933" width="0.0180%" height="15" fill="rgb(206,52,46)" fg:x="130467" fg:w="116"/><text x="20.5234%" y="943.50"></text></g><g><title>os::sleep (114 samples, 0.02%)</title><rect x="20.2737%" y="917" width="0.0177%" height="15" fill="rgb(253,136,11)" fg:x="130469" fg:w="114"/><text x="20.5237%" y="927.50"></text></g><g><title>[perf-733733.map] (523 samples, 0.08%)</title><rect x="20.2358%" y="949" width="0.0813%" height="15" fill="rgb(208,106,33)" fg:x="130225" fg:w="523"/><text x="20.4858%" y="959.50"></text></g><g><title>Thread-0 (576 samples, 0.09%)</title><rect x="20.2333%" y="965" width="0.0895%" height="15" fill="rgb(206,54,4)" fg:x="130209" fg:w="576"/><text x="20.4833%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (145 samples, 0.02%)</title><rect x="20.3343%" y="581" width="0.0225%" height="15" fill="rgb(213,3,15)" fg:x="130859" fg:w="145"/><text x="20.5843%" y="591.50"></text></g><g><title>x86_pmu_enable (142 samples, 0.02%)</title><rect x="20.3348%" y="565" width="0.0221%" height="15" fill="rgb(252,211,39)" fg:x="130862" fg:w="142"/><text x="20.5848%" y="575.50"></text></g><g><title>intel_pmu_enable_all (142 samples, 0.02%)</title><rect x="20.3348%" y="549" width="0.0221%" height="15" fill="rgb(223,6,36)" fg:x="130862" fg:w="142"/><text x="20.5848%" y="559.50"></text></g><g><title>native_write_msr (142 samples, 0.02%)</title><rect x="20.3348%" y="533" width="0.0221%" height="15" fill="rgb(252,169,45)" fg:x="130862" fg:w="142"/><text x="20.5848%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (148 samples, 0.02%)</title><rect x="20.3342%" y="597" width="0.0230%" height="15" fill="rgb(212,48,26)" fg:x="130858" fg:w="148"/><text x="20.5842%" y="607.50"></text></g><g><title>futex_wait_queue_me (174 samples, 0.03%)</title><rect x="20.3305%" y="645" width="0.0270%" height="15" fill="rgb(251,102,48)" fg:x="130834" fg:w="174"/><text x="20.5805%" y="655.50"></text></g><g><title>schedule (162 samples, 0.03%)</title><rect x="20.3323%" y="629" width="0.0252%" height="15" fill="rgb(243,208,16)" fg:x="130846" fg:w="162"/><text x="20.5823%" y="639.50"></text></g><g><title>__schedule (160 samples, 0.02%)</title><rect x="20.3326%" y="613" width="0.0249%" height="15" fill="rgb(219,96,24)" fg:x="130848" fg:w="160"/><text x="20.5826%" y="623.50"></text></g><g><title>__x64_sys_futex (180 samples, 0.03%)</title><rect x="20.3297%" y="693" width="0.0280%" height="15" fill="rgb(219,33,29)" fg:x="130829" fg:w="180"/><text x="20.5797%" y="703.50"></text></g><g><title>do_futex (179 samples, 0.03%)</title><rect x="20.3298%" y="677" width="0.0278%" height="15" fill="rgb(223,176,5)" fg:x="130830" fg:w="179"/><text x="20.5798%" y="687.50"></text></g><g><title>futex_wait (177 samples, 0.03%)</title><rect x="20.3301%" y="661" width="0.0275%" height="15" fill="rgb(228,140,14)" fg:x="130832" fg:w="177"/><text x="20.5801%" y="671.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (189 samples, 0.03%)</title><rect x="20.3294%" y="773" width="0.0294%" height="15" fill="rgb(217,179,31)" fg:x="130827" fg:w="189"/><text x="20.5794%" y="783.50"></text></g><g><title>__futex_abstimed_wait_common (189 samples, 0.03%)</title><rect x="20.3294%" y="757" width="0.0294%" height="15" fill="rgb(230,9,30)" fg:x="130827" fg:w="189"/><text x="20.5794%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common64 (189 samples, 0.03%)</title><rect x="20.3294%" y="741" width="0.0294%" height="15" fill="rgb(230,136,20)" fg:x="130827" fg:w="189"/><text x="20.5794%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (187 samples, 0.03%)</title><rect x="20.3297%" y="725" width="0.0291%" height="15" fill="rgb(215,210,22)" fg:x="130829" fg:w="187"/><text x="20.5797%" y="735.50"></text></g><g><title>do_syscall_64 (187 samples, 0.03%)</title><rect x="20.3297%" y="709" width="0.0291%" height="15" fill="rgb(218,43,5)" fg:x="130829" fg:w="187"/><text x="20.5797%" y="719.50"></text></g><g><title>___pthread_cond_timedwait64 (192 samples, 0.03%)</title><rect x="20.3294%" y="805" width="0.0298%" height="15" fill="rgb(216,11,5)" fg:x="130827" fg:w="192"/><text x="20.5794%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (192 samples, 0.03%)</title><rect x="20.3294%" y="789" width="0.0298%" height="15" fill="rgb(209,82,29)" fg:x="130827" fg:w="192"/><text x="20.5794%" y="799.50"></text></g><g><title>Monitor::wait (209 samples, 0.03%)</title><rect x="20.3281%" y="853" width="0.0325%" height="15" fill="rgb(244,115,12)" fg:x="130819" fg:w="209"/><text x="20.5781%" y="863.50"></text></g><g><title>Monitor::IWait (209 samples, 0.03%)</title><rect x="20.3281%" y="837" width="0.0325%" height="15" fill="rgb(222,82,18)" fg:x="130819" fg:w="209"/><text x="20.5781%" y="847.50"></text></g><g><title>os::PlatformEvent::park (202 samples, 0.03%)</title><rect x="20.3292%" y="821" width="0.0314%" height="15" fill="rgb(249,227,8)" fg:x="130826" fg:w="202"/><text x="20.5792%" y="831.50"></text></g><g><title>VM_Periodic_Tas (245 samples, 0.04%)</title><rect x="20.3228%" y="965" width="0.0381%" height="15" fill="rgb(253,141,45)" fg:x="130785" fg:w="245"/><text x="20.5728%" y="975.50"></text></g><g><title>__clone3 (235 samples, 0.04%)</title><rect x="20.3244%" y="949" width="0.0365%" height="15" fill="rgb(234,184,4)" fg:x="130795" fg:w="235"/><text x="20.5744%" y="959.50"></text></g><g><title>start_thread (235 samples, 0.04%)</title><rect x="20.3244%" y="933" width="0.0365%" height="15" fill="rgb(218,194,23)" fg:x="130795" fg:w="235"/><text x="20.5744%" y="943.50"></text></g><g><title>thread_native_entry (235 samples, 0.04%)</title><rect x="20.3244%" y="917" width="0.0365%" height="15" fill="rgb(235,66,41)" fg:x="130795" fg:w="235"/><text x="20.5744%" y="927.50"></text></g><g><title>Thread::call_run (235 samples, 0.04%)</title><rect x="20.3244%" y="901" width="0.0365%" height="15" fill="rgb(245,217,1)" fg:x="130795" fg:w="235"/><text x="20.5744%" y="911.50"></text></g><g><title>WatcherThread::run (235 samples, 0.04%)</title><rect x="20.3244%" y="885" width="0.0365%" height="15" fill="rgb(229,91,1)" fg:x="130795" fg:w="235"/><text x="20.5744%" y="895.50"></text></g><g><title>WatcherThread::sleep (212 samples, 0.03%)</title><rect x="20.3280%" y="869" width="0.0329%" height="15" fill="rgb(207,101,30)" fg:x="130818" fg:w="212"/><text x="20.5780%" y="879.50"></text></g><g><title>[unknown] (98 samples, 0.02%)</title><rect x="20.3634%" y="949" width="0.0152%" height="15" fill="rgb(223,82,49)" fg:x="131046" fg:w="98"/><text x="20.6134%" y="959.50"></text></g><g><title>vframe::sender (96 samples, 0.01%)</title><rect x="20.3637%" y="933" width="0.0149%" height="15" fill="rgb(218,167,17)" fg:x="131048" fg:w="96"/><text x="20.6137%" y="943.50"></text></g><g><title>___pthread_cond_timedwait64 (65 samples, 0.01%)</title><rect x="20.3820%" y="805" width="0.0101%" height="15" fill="rgb(208,103,14)" fg:x="131166" fg:w="65"/><text x="20.6320%" y="815.50"></text></g><g><title>__pthread_cond_wait_common (65 samples, 0.01%)</title><rect x="20.3820%" y="789" width="0.0101%" height="15" fill="rgb(238,20,8)" fg:x="131166" fg:w="65"/><text x="20.6320%" y="799.50"></text></g><g><title>Monitor::wait (71 samples, 0.01%)</title><rect x="20.3816%" y="853" width="0.0110%" height="15" fill="rgb(218,80,54)" fg:x="131163" fg:w="71"/><text x="20.6316%" y="863.50"></text></g><g><title>Monitor::IWait (70 samples, 0.01%)</title><rect x="20.3817%" y="837" width="0.0109%" height="15" fill="rgb(240,144,17)" fg:x="131164" fg:w="70"/><text x="20.6317%" y="847.50"></text></g><g><title>os::PlatformEvent::park (69 samples, 0.01%)</title><rect x="20.3819%" y="821" width="0.0107%" height="15" fill="rgb(245,27,50)" fg:x="131165" fg:w="69"/><text x="20.6319%" y="831.50"></text></g><g><title>finish_task_switch.isra.0 (65 samples, 0.01%)</title><rect x="20.4470%" y="581" width="0.0101%" height="15" fill="rgb(251,51,7)" fg:x="131584" fg:w="65"/><text x="20.6970%" y="591.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.01%)</title><rect x="20.4461%" y="629" width="0.0118%" height="15" fill="rgb(245,217,29)" fg:x="131578" fg:w="76"/><text x="20.6961%" y="639.50"></text></g><g><title>schedule (75 samples, 0.01%)</title><rect x="20.4462%" y="613" width="0.0117%" height="15" fill="rgb(221,176,29)" fg:x="131579" fg:w="75"/><text x="20.6962%" y="623.50"></text></g><g><title>__schedule (75 samples, 0.01%)</title><rect x="20.4462%" y="597" width="0.0117%" height="15" fill="rgb(212,180,24)" fg:x="131579" fg:w="75"/><text x="20.6962%" y="607.50"></text></g><g><title>__x64_sys_futex (77 samples, 0.01%)</title><rect x="20.4461%" y="677" width="0.0120%" height="15" fill="rgb(254,24,2)" fg:x="131578" fg:w="77"/><text x="20.6961%" y="687.50"></text></g><g><title>do_futex (77 samples, 0.01%)</title><rect x="20.4461%" y="661" width="0.0120%" height="15" fill="rgb(230,100,2)" fg:x="131578" fg:w="77"/><text x="20.6961%" y="671.50"></text></g><g><title>futex_wait (77 samples, 0.01%)</title><rect x="20.4461%" y="645" width="0.0120%" height="15" fill="rgb(219,142,25)" fg:x="131578" fg:w="77"/><text x="20.6961%" y="655.50"></text></g><g><title>do_syscall_64 (81 samples, 0.01%)</title><rect x="20.4461%" y="693" width="0.0126%" height="15" fill="rgb(240,73,43)" fg:x="131578" fg:w="81"/><text x="20.6961%" y="703.50"></text></g><g><title>WorkGang::run_task (129 samples, 0.02%)</title><rect x="20.4388%" y="821" width="0.0200%" height="15" fill="rgb(214,114,15)" fg:x="131531" fg:w="129"/><text x="20.6888%" y="831.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (128 samples, 0.02%)</title><rect x="20.4389%" y="805" width="0.0199%" height="15" fill="rgb(207,130,4)" fg:x="131532" fg:w="128"/><text x="20.6889%" y="815.50"></text></g><g><title>PosixSemaphore::wait (84 samples, 0.01%)</title><rect x="20.4458%" y="789" width="0.0131%" height="15" fill="rgb(221,25,40)" fg:x="131576" fg:w="84"/><text x="20.6958%" y="799.50"></text></g><g><title>__new_sem_wait_slow64 (83 samples, 0.01%)</title><rect x="20.4459%" y="773" width="0.0129%" height="15" fill="rgb(241,184,7)" fg:x="131577" fg:w="83"/><text x="20.6959%" y="783.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (83 samples, 0.01%)</title><rect x="20.4459%" y="757" width="0.0129%" height="15" fill="rgb(235,159,4)" fg:x="131577" fg:w="83"/><text x="20.6959%" y="767.50"></text></g><g><title>__futex_abstimed_wait_common (83 samples, 0.01%)</title><rect x="20.4459%" y="741" width="0.0129%" height="15" fill="rgb(214,87,48)" fg:x="131577" fg:w="83"/><text x="20.6959%" y="751.50"></text></g><g><title>__futex_abstimed_wait_common64 (83 samples, 0.01%)</title><rect x="20.4459%" y="725" width="0.0129%" height="15" fill="rgb(246,198,24)" fg:x="131577" fg:w="83"/><text x="20.6959%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.01%)</title><rect x="20.4461%" y="709" width="0.0127%" height="15" fill="rgb(209,66,40)" fg:x="131578" fg:w="82"/><text x="20.6961%" y="719.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (137 samples, 0.02%)</title><rect x="20.4377%" y="837" width="0.0213%" height="15" fill="rgb(233,147,39)" fg:x="131524" fg:w="137"/><text x="20.6877%" y="847.50"></text></g><g><title>SafepointSynchronize::begin (491 samples, 0.08%)</title><rect x="20.3926%" y="853" width="0.0763%" height="15" fill="rgb(231,145,52)" fg:x="131234" fg:w="491"/><text x="20.6426%" y="863.50"></text></g><g><title>VMThread::evaluate_operation (130 samples, 0.02%)</title><rect x="20.4743%" y="853" width="0.0202%" height="15" fill="rgb(206,20,26)" fg:x="131760" fg:w="130"/><text x="20.7243%" y="863.50"></text></g><g><title>VM_Operation::evaluate (128 samples, 0.02%)</title><rect x="20.4747%" y="837" width="0.0199%" height="15" fill="rgb(238,220,4)" fg:x="131762" fg:w="128"/><text x="20.7247%" y="847.50"></text></g><g><title>__clone3 (748 samples, 0.12%)</title><rect x="20.3786%" y="949" width="0.1162%" height="15" fill="rgb(252,195,42)" fg:x="131144" fg:w="748"/><text x="20.6286%" y="959.50"></text></g><g><title>start_thread (747 samples, 0.12%)</title><rect x="20.3788%" y="933" width="0.1161%" height="15" fill="rgb(209,10,6)" fg:x="131145" fg:w="747"/><text x="20.6288%" y="943.50"></text></g><g><title>thread_native_entry (747 samples, 0.12%)</title><rect x="20.3788%" y="917" width="0.1161%" height="15" fill="rgb(229,3,52)" fg:x="131145" fg:w="747"/><text x="20.6288%" y="927.50"></text></g><g><title>Thread::call_run (747 samples, 0.12%)</title><rect x="20.3788%" y="901" width="0.1161%" height="15" fill="rgb(253,49,37)" fg:x="131145" fg:w="747"/><text x="20.6288%" y="911.50"></text></g><g><title>VMThread::run (747 samples, 0.12%)</title><rect x="20.3788%" y="885" width="0.1161%" height="15" fill="rgb(240,103,49)" fg:x="131145" fg:w="747"/><text x="20.6288%" y="895.50"></text></g><g><title>VMThread::loop (747 samples, 0.12%)</title><rect x="20.3788%" y="869" width="0.1161%" height="15" fill="rgb(250,182,30)" fg:x="131145" fg:w="747"/><text x="20.6288%" y="879.50"></text></g><g><title>VM_Thread (866 samples, 0.13%)</title><rect x="20.3609%" y="965" width="0.1346%" height="15" fill="rgb(248,8,30)" fg:x="131030" fg:w="866"/><text x="20.6109%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (117 samples, 0.02%)</title><rect x="20.5536%" y="789" width="0.0182%" height="15" fill="rgb(237,120,30)" fg:x="132270" fg:w="117"/><text x="20.8036%" y="799.50"></text></g><g><title>x86_pmu_enable (113 samples, 0.02%)</title><rect x="20.5542%" y="773" width="0.0176%" height="15" fill="rgb(221,146,34)" fg:x="132274" fg:w="113"/><text x="20.8042%" y="783.50"></text></g><g><title>intel_pmu_enable_all (112 samples, 0.02%)</title><rect x="20.5544%" y="757" width="0.0174%" height="15" fill="rgb(242,55,13)" fg:x="132275" fg:w="112"/><text x="20.8044%" y="767.50"></text></g><g><title>native_write_msr (112 samples, 0.02%)</title><rect x="20.5544%" y="741" width="0.0174%" height="15" fill="rgb(242,112,31)" fg:x="132275" fg:w="112"/><text x="20.8044%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (122 samples, 0.02%)</title><rect x="20.5531%" y="805" width="0.0190%" height="15" fill="rgb(249,192,27)" fg:x="132267" fg:w="122"/><text x="20.8031%" y="815.50"></text></g><g><title>futex_wait (139 samples, 0.02%)</title><rect x="20.5511%" y="869" width="0.0216%" height="15" fill="rgb(208,204,44)" fg:x="132254" fg:w="139"/><text x="20.8011%" y="879.50"></text></g><g><title>futex_wait_queue_me (138 samples, 0.02%)</title><rect x="20.5513%" y="853" width="0.0214%" height="15" fill="rgb(208,93,54)" fg:x="132255" fg:w="138"/><text x="20.8013%" y="863.50"></text></g><g><title>schedule (136 samples, 0.02%)</title><rect x="20.5516%" y="837" width="0.0211%" height="15" fill="rgb(242,1,31)" fg:x="132257" fg:w="136"/><text x="20.8016%" y="847.50"></text></g><g><title>__schedule (136 samples, 0.02%)</title><rect x="20.5516%" y="821" width="0.0211%" height="15" fill="rgb(241,83,25)" fg:x="132257" fg:w="136"/><text x="20.8016%" y="831.50"></text></g><g><title>__x64_sys_futex (146 samples, 0.02%)</title><rect x="20.5506%" y="901" width="0.0227%" height="15" fill="rgb(205,169,50)" fg:x="132251" fg:w="146"/><text x="20.8006%" y="911.50"></text></g><g><title>do_futex (145 samples, 0.02%)</title><rect x="20.5508%" y="885" width="0.0225%" height="15" fill="rgb(239,186,37)" fg:x="132252" fg:w="145"/><text x="20.8008%" y="895.50"></text></g><g><title>do_syscall_64 (343 samples, 0.05%)</title><rect x="20.5379%" y="917" width="0.0533%" height="15" fill="rgb(205,221,10)" fg:x="132169" fg:w="343"/><text x="20.7879%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (346 samples, 0.05%)</title><rect x="20.5377%" y="933" width="0.0538%" height="15" fill="rgb(218,196,15)" fg:x="132168" fg:w="346"/><text x="20.7877%" y="943.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (633 samples, 0.10%)</title><rect x="20.5012%" y="949" width="0.0984%" height="15" fill="rgb(218,196,35)" fg:x="131933" fg:w="633"/><text x="20.7512%" y="959.50"></text></g><g><title>bazel (715 samples, 0.11%)</title><rect x="20.5011%" y="965" width="0.1111%" height="15" fill="rgb(233,63,24)" fg:x="131932" fg:w="715"/><text x="20.7511%" y="975.50"></text></g><g><title>[unknown] (65 samples, 0.01%)</title><rect x="20.6170%" y="949" width="0.0101%" height="15" fill="rgb(225,8,4)" fg:x="132678" fg:w="65"/><text x="20.8670%" y="959.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (110 samples, 0.02%)</title><rect x="20.6300%" y="885" width="0.0171%" height="15" fill="rgb(234,105,35)" fg:x="132762" fg:w="110"/><text x="20.8800%" y="895.50"></text></g><g><title>rename (75 samples, 0.01%)</title><rect x="20.6355%" y="869" width="0.0117%" height="15" fill="rgb(236,21,32)" fg:x="132797" fg:w="75"/><text x="20.8855%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="20.6358%" y="853" width="0.0113%" height="15" fill="rgb(228,109,6)" fg:x="132799" fg:w="73"/><text x="20.8858%" y="863.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="20.6358%" y="837" width="0.0113%" height="15" fill="rgb(229,215,31)" fg:x="132799" fg:w="73"/><text x="20.8858%" y="847.50"></text></g><g><title>unload_network_ops_symbols (72 samples, 0.01%)</title><rect x="20.6360%" y="821" width="0.0112%" height="15" fill="rgb(221,52,54)" fg:x="132800" fg:w="72"/><text x="20.8860%" y="831.50"></text></g><g><title>__libc_start_main_impl (127 samples, 0.02%)</title><rect x="20.6290%" y="933" width="0.0197%" height="15" fill="rgb(252,129,43)" fg:x="132755" fg:w="127"/><text x="20.8790%" y="943.50"></text></g><g><title>__libc_start_call_main (127 samples, 0.02%)</title><rect x="20.6290%" y="917" width="0.0197%" height="15" fill="rgb(248,183,27)" fg:x="132755" fg:w="127"/><text x="20.8790%" y="927.50"></text></g><g><title>main (120 samples, 0.02%)</title><rect x="20.6300%" y="901" width="0.0186%" height="15" fill="rgb(250,0,22)" fg:x="132762" fg:w="120"/><text x="20.8800%" y="911.50"></text></g><g><title>_dl_map_object_deps (101 samples, 0.02%)</title><rect x="20.6521%" y="869" width="0.0157%" height="15" fill="rgb(213,166,10)" fg:x="132904" fg:w="101"/><text x="20.9021%" y="879.50"></text></g><g><title>_dl_catch_exception (101 samples, 0.02%)</title><rect x="20.6521%" y="853" width="0.0157%" height="15" fill="rgb(207,163,36)" fg:x="132904" fg:w="101"/><text x="20.9021%" y="863.50"></text></g><g><title>openaux (101 samples, 0.02%)</title><rect x="20.6521%" y="837" width="0.0157%" height="15" fill="rgb(208,122,22)" fg:x="132904" fg:w="101"/><text x="20.9021%" y="847.50"></text></g><g><title>_dl_map_object (101 samples, 0.02%)</title><rect x="20.6521%" y="821" width="0.0157%" height="15" fill="rgb(207,104,49)" fg:x="132904" fg:w="101"/><text x="20.9021%" y="831.50"></text></g><g><title>_dl_lookup_symbol_x (163 samples, 0.03%)</title><rect x="20.6795%" y="821" width="0.0253%" height="15" fill="rgb(248,211,50)" fg:x="133080" fg:w="163"/><text x="20.9295%" y="831.50"></text></g><g><title>do_lookup_x (88 samples, 0.01%)</title><rect x="20.6911%" y="805" width="0.0137%" height="15" fill="rgb(217,13,45)" fg:x="133155" fg:w="88"/><text x="20.9411%" y="815.50"></text></g><g><title>elf_machine_rela (201 samples, 0.03%)</title><rect x="20.6740%" y="837" width="0.0312%" height="15" fill="rgb(211,216,49)" fg:x="133045" fg:w="201"/><text x="20.9240%" y="847.50"></text></g><g><title>_dl_relocate_object (243 samples, 0.04%)</title><rect x="20.6687%" y="869" width="0.0378%" height="15" fill="rgb(221,58,53)" fg:x="133011" fg:w="243"/><text x="20.9187%" y="879.50"></text></g><g><title>elf_dynamic_do_Rela (231 samples, 0.04%)</title><rect x="20.6706%" y="853" width="0.0359%" height="15" fill="rgb(220,112,41)" fg:x="133023" fg:w="231"/><text x="20.9206%" y="863.50"></text></g><g><title>dl_main (388 samples, 0.06%)</title><rect x="20.6492%" y="885" width="0.0603%" height="15" fill="rgb(236,38,28)" fg:x="132885" fg:w="388"/><text x="20.8992%" y="895.50"></text></g><g><title>_dl_start_final (393 samples, 0.06%)</title><rect x="20.6489%" y="917" width="0.0611%" height="15" fill="rgb(227,195,22)" fg:x="132883" fg:w="393"/><text x="20.8989%" y="927.50"></text></g><g><title>_dl_sysdep_start (393 samples, 0.06%)</title><rect x="20.6489%" y="901" width="0.0611%" height="15" fill="rgb(214,55,33)" fg:x="132883" fg:w="393"/><text x="20.8989%" y="911.50"></text></g><g><title>_dl_start (397 samples, 0.06%)</title><rect x="20.6487%" y="933" width="0.0617%" height="15" fill="rgb(248,80,13)" fg:x="132882" fg:w="397"/><text x="20.8987%" y="943.50"></text></g><g><title>_start (528 samples, 0.08%)</title><rect x="20.6290%" y="949" width="0.0820%" height="15" fill="rgb(238,52,6)" fg:x="132755" fg:w="528"/><text x="20.8790%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.01%)</title><rect x="20.7124%" y="949" width="0.0141%" height="15" fill="rgb(224,198,47)" fg:x="133292" fg:w="91"/><text x="20.9624%" y="959.50"></text></g><g><title>do_syscall_64 (91 samples, 0.01%)</title><rect x="20.7124%" y="933" width="0.0141%" height="15" fill="rgb(233,171,20)" fg:x="133292" fg:w="91"/><text x="20.9624%" y="943.50"></text></g><g><title>build-runfiles (735 samples, 0.11%)</title><rect x="20.6125%" y="965" width="0.1142%" height="15" fill="rgb(241,30,25)" fg:x="132649" fg:w="735"/><text x="20.8625%" y="975.50"></text></g><g><title>[dash] (138 samples, 0.02%)</title><rect x="20.8101%" y="629" width="0.0214%" height="15" fill="rgb(207,171,38)" fg:x="133921" fg:w="138"/><text x="21.0601%" y="639.50"></text></g><g><title>filemap_map_pages (93 samples, 0.01%)</title><rect x="20.8418%" y="469" width="0.0145%" height="15" fill="rgb(234,70,1)" fg:x="134125" fg:w="93"/><text x="21.0918%" y="479.50"></text></g><g><title>do_fault (113 samples, 0.02%)</title><rect x="20.8412%" y="517" width="0.0176%" height="15" fill="rgb(232,178,18)" fg:x="134121" fg:w="113"/><text x="21.0912%" y="527.50"></text></g><g><title>do_read_fault (113 samples, 0.02%)</title><rect x="20.8412%" y="501" width="0.0176%" height="15" fill="rgb(241,78,40)" fg:x="134121" fg:w="113"/><text x="21.0912%" y="511.50"></text></g><g><title>xfs_filemap_map_pages (113 samples, 0.02%)</title><rect x="20.8412%" y="485" width="0.0176%" height="15" fill="rgb(222,35,25)" fg:x="134121" fg:w="113"/><text x="21.0912%" y="495.50"></text></g><g><title>__handle_mm_fault (130 samples, 0.02%)</title><rect x="20.8408%" y="549" width="0.0202%" height="15" fill="rgb(207,92,16)" fg:x="134118" fg:w="130"/><text x="21.0908%" y="559.50"></text></g><g><title>handle_pte_fault (129 samples, 0.02%)</title><rect x="20.8409%" y="533" width="0.0200%" height="15" fill="rgb(216,59,51)" fg:x="134119" fg:w="129"/><text x="21.0909%" y="543.50"></text></g><g><title>handle_mm_fault (133 samples, 0.02%)</title><rect x="20.8406%" y="565" width="0.0207%" height="15" fill="rgb(213,80,28)" fg:x="134117" fg:w="133"/><text x="21.0906%" y="575.50"></text></g><g><title>do_user_addr_fault (151 samples, 0.02%)</title><rect x="20.8381%" y="581" width="0.0235%" height="15" fill="rgb(220,93,7)" fg:x="134101" fg:w="151"/><text x="21.0881%" y="591.50"></text></g><g><title>asm_exc_page_fault (156 samples, 0.02%)</title><rect x="20.8380%" y="613" width="0.0242%" height="15" fill="rgb(225,24,44)" fg:x="134100" fg:w="156"/><text x="21.0880%" y="623.50"></text></g><g><title>exc_page_fault (155 samples, 0.02%)</title><rect x="20.8381%" y="597" width="0.0241%" height="15" fill="rgb(243,74,40)" fg:x="134101" fg:w="155"/><text x="21.0881%" y="607.50"></text></g><g><title>[libc.so.6] (211 samples, 0.03%)</title><rect x="20.8316%" y="629" width="0.0328%" height="15" fill="rgb(228,39,7)" fg:x="134059" fg:w="211"/><text x="21.0816%" y="639.50"></text></g><g><title>open_exec (66 samples, 0.01%)</title><rect x="20.9031%" y="469" width="0.0103%" height="15" fill="rgb(227,79,8)" fg:x="134519" fg:w="66"/><text x="21.1531%" y="479.50"></text></g><g><title>load_elf_binary (162 samples, 0.03%)</title><rect x="20.8883%" y="485" width="0.0252%" height="15" fill="rgb(236,58,11)" fg:x="134424" fg:w="162"/><text x="21.1383%" y="495.50"></text></g><g><title>_ZdlPv (352 samples, 0.05%)</title><rect x="21.0328%" y="277" width="0.0547%" height="15" fill="rgb(249,63,35)" fg:x="135354" fg:w="352"/><text x="21.2828%" y="287.50"></text></g><g><title>_ZdlPv (329 samples, 0.05%)</title><rect x="21.0364%" y="261" width="0.0511%" height="15" fill="rgb(252,114,16)" fg:x="135377" fg:w="329"/><text x="21.2864%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (314 samples, 0.05%)</title><rect x="21.0387%" y="245" width="0.0488%" height="15" fill="rgb(254,151,24)" fg:x="135392" fg:w="314"/><text x="21.2887%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (246 samples, 0.04%)</title><rect x="21.0493%" y="229" width="0.0382%" height="15" fill="rgb(253,54,39)" fg:x="135460" fg:w="246"/><text x="21.2993%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (67 samples, 0.01%)</title><rect x="21.0771%" y="213" width="0.0104%" height="15" fill="rgb(243,25,45)" fg:x="135639" fg:w="67"/><text x="21.3271%" y="223.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (374 samples, 0.06%)</title><rect x="21.0303%" y="293" width="0.0581%" height="15" fill="rgb(234,134,9)" fg:x="135338" fg:w="374"/><text x="21.2803%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (254 samples, 0.04%)</title><rect x="21.1166%" y="229" width="0.0395%" height="15" fill="rgb(227,166,31)" fg:x="135893" fg:w="254"/><text x="21.3666%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (192 samples, 0.03%)</title><rect x="21.1262%" y="213" width="0.0298%" height="15" fill="rgb(245,143,41)" fg:x="135955" fg:w="192"/><text x="21.3762%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (130 samples, 0.02%)</title><rect x="21.1358%" y="197" width="0.0202%" height="15" fill="rgb(238,181,32)" fg:x="136017" fg:w="130"/><text x="21.3858%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (124 samples, 0.02%)</title><rect x="21.1368%" y="181" width="0.0193%" height="15" fill="rgb(224,113,18)" fg:x="136023" fg:w="124"/><text x="21.3868%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (120 samples, 0.02%)</title><rect x="21.1374%" y="165" width="0.0186%" height="15" fill="rgb(240,229,28)" fg:x="136027" fg:w="120"/><text x="21.3874%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (115 samples, 0.02%)</title><rect x="21.1382%" y="149" width="0.0179%" height="15" fill="rgb(250,185,3)" fg:x="136032" fg:w="115"/><text x="21.3882%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (114 samples, 0.02%)</title><rect x="21.1383%" y="133" width="0.0177%" height="15" fill="rgb(212,59,25)" fg:x="136033" fg:w="114"/><text x="21.3883%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (99 samples, 0.02%)</title><rect x="21.1407%" y="117" width="0.0154%" height="15" fill="rgb(221,87,20)" fg:x="136048" fg:w="99"/><text x="21.3907%" y="127.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (99 samples, 0.02%)</title><rect x="21.1407%" y="101" width="0.0154%" height="15" fill="rgb(213,74,28)" fg:x="136048" fg:w="99"/><text x="21.3907%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (96 samples, 0.01%)</title><rect x="21.1411%" y="85" width="0.0149%" height="15" fill="rgb(224,132,34)" fg:x="136051" fg:w="96"/><text x="21.3911%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (304 samples, 0.05%)</title><rect x="21.1104%" y="245" width="0.0472%" height="15" fill="rgb(222,101,24)" fg:x="135853" fg:w="304"/><text x="21.3604%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (359 samples, 0.06%)</title><rect x="21.1040%" y="261" width="0.0558%" height="15" fill="rgb(254,142,4)" fg:x="135812" fg:w="359"/><text x="21.3540%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (396 samples, 0.06%)</title><rect x="21.0995%" y="293" width="0.0615%" height="15" fill="rgb(230,229,49)" fg:x="135783" fg:w="396"/><text x="21.3495%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (394 samples, 0.06%)</title><rect x="21.0998%" y="277" width="0.0612%" height="15" fill="rgb(238,70,47)" fg:x="135785" fg:w="394"/><text x="21.3498%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (913 samples, 0.14%)</title><rect x="21.0195%" y="309" width="0.1419%" height="15" fill="rgb(231,160,17)" fg:x="135268" fg:w="913"/><text x="21.2695%" y="319.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (1,072 samples, 0.17%)</title><rect x="20.9969%" y="325" width="0.1666%" height="15" fill="rgb(218,68,53)" fg:x="135123" fg:w="1072"/><text x="21.2469%" y="335.50"></text></g><g><title>cshook_security_inode_free_security (120 samples, 0.02%)</title><rect x="21.2350%" y="181" width="0.0186%" height="15" fill="rgb(236,111,10)" fg:x="136655" fg:w="120"/><text x="21.4850%" y="191.50"></text></g><g><title>_ZdlPv (237 samples, 0.04%)</title><rect x="21.2241%" y="197" width="0.0368%" height="15" fill="rgb(224,34,41)" fg:x="136585" fg:w="237"/><text x="21.4741%" y="207.50"></text></g><g><title>_ZdlPv (295 samples, 0.05%)</title><rect x="21.2213%" y="213" width="0.0458%" height="15" fill="rgb(241,118,19)" fg:x="136567" fg:w="295"/><text x="21.4713%" y="223.50"></text></g><g><title>_ZdlPv (377 samples, 0.06%)</title><rect x="21.2151%" y="229" width="0.0586%" height="15" fill="rgb(238,129,25)" fg:x="136527" fg:w="377"/><text x="21.4651%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (98 samples, 0.02%)</title><rect x="21.2971%" y="197" width="0.0152%" height="15" fill="rgb(238,22,31)" fg:x="137055" fg:w="98"/><text x="21.5471%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (257 samples, 0.04%)</title><rect x="21.2835%" y="213" width="0.0399%" height="15" fill="rgb(222,174,48)" fg:x="136967" fg:w="257"/><text x="21.5335%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (71 samples, 0.01%)</title><rect x="21.3124%" y="197" width="0.0110%" height="15" fill="rgb(206,152,40)" fg:x="137153" fg:w="71"/><text x="21.5624%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (327 samples, 0.05%)</title><rect x="21.2738%" y="229" width="0.0508%" height="15" fill="rgb(218,99,54)" fg:x="136905" fg:w="327"/><text x="21.5238%" y="239.50"></text></g><g><title>_ZdlPv (770 samples, 0.12%)</title><rect x="21.2053%" y="245" width="0.1197%" height="15" fill="rgb(220,174,26)" fg:x="136464" fg:w="770"/><text x="21.4553%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (88 samples, 0.01%)</title><rect x="21.3251%" y="245" width="0.0137%" height="15" fill="rgb(245,116,9)" fg:x="137235" fg:w="88"/><text x="21.5751%" y="255.50"></text></g><g><title>_ZdlPv (886 samples, 0.14%)</title><rect x="21.2017%" y="261" width="0.1377%" height="15" fill="rgb(209,72,35)" fg:x="136441" fg:w="886"/><text x="21.4517%" y="271.50"></text></g><g><title>cshook_security_inode_free_security (80 samples, 0.01%)</title><rect x="21.3438%" y="261" width="0.0124%" height="15" fill="rgb(226,126,21)" fg:x="137355" fg:w="80"/><text x="21.5938%" y="271.50"></text></g><g><title>_ZdlPv (1,132 samples, 0.18%)</title><rect x="21.1888%" y="277" width="0.1759%" height="15" fill="rgb(227,192,1)" fg:x="136358" fg:w="1132"/><text x="21.4388%" y="287.50"></text></g><g><title>_ZdlPv (1,246 samples, 0.19%)</title><rect x="21.1797%" y="293" width="0.1936%" height="15" fill="rgb(237,180,29)" fg:x="136299" fg:w="1246"/><text x="21.4297%" y="303.50"></text></g><g><title>_ZdlPv (1,350 samples, 0.21%)</title><rect x="21.1710%" y="309" width="0.2098%" height="15" fill="rgb(230,197,35)" fg:x="136243" fg:w="1350"/><text x="21.4210%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (65 samples, 0.01%)</title><rect x="21.3921%" y="261" width="0.0101%" height="15" fill="rgb(246,193,31)" fg:x="137666" fg:w="65"/><text x="21.6421%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (129 samples, 0.02%)</title><rect x="21.3832%" y="293" width="0.0200%" height="15" fill="rgb(241,36,4)" fg:x="137609" fg:w="129"/><text x="21.6332%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (91 samples, 0.01%)</title><rect x="21.3891%" y="277" width="0.0141%" height="15" fill="rgb(241,130,17)" fg:x="137647" fg:w="91"/><text x="21.6391%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (137 samples, 0.02%)</title><rect x="21.3823%" y="309" width="0.0213%" height="15" fill="rgb(206,137,32)" fg:x="137603" fg:w="137"/><text x="21.6323%" y="319.50"></text></g><g><title>_ZdlPv (1,598 samples, 0.25%)</title><rect x="21.1635%" y="325" width="0.2483%" height="15" fill="rgb(237,228,51)" fg:x="136195" fg:w="1598"/><text x="21.4135%" y="335.50"></text></g><g><title>_ZdlPv (102 samples, 0.02%)</title><rect x="21.4361%" y="293" width="0.0158%" height="15" fill="rgb(243,6,42)" fg:x="137949" fg:w="102"/><text x="21.6861%" y="303.50"></text></g><g><title>_ZdlPv (137 samples, 0.02%)</title><rect x="21.4347%" y="309" width="0.0213%" height="15" fill="rgb(251,74,28)" fg:x="137940" fg:w="137"/><text x="21.6847%" y="319.50"></text></g><g><title>[[falcon_kal]] (73 samples, 0.01%)</title><rect x="21.4678%" y="293" width="0.0113%" height="15" fill="rgb(218,20,49)" fg:x="138153" fg:w="73"/><text x="21.7178%" y="303.50"></text></g><g><title>_ZdlPv (86 samples, 0.01%)</title><rect x="21.4847%" y="277" width="0.0134%" height="15" fill="rgb(238,28,14)" fg:x="138262" fg:w="86"/><text x="21.7347%" y="287.50"></text></g><g><title>_ZdlPv (156 samples, 0.02%)</title><rect x="21.4791%" y="293" width="0.0242%" height="15" fill="rgb(229,40,46)" fg:x="138226" fg:w="156"/><text x="21.7291%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (71 samples, 0.01%)</title><rect x="21.5172%" y="277" width="0.0110%" height="15" fill="rgb(244,195,20)" fg:x="138471" fg:w="71"/><text x="21.7672%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (189 samples, 0.03%)</title><rect x="21.5038%" y="293" width="0.0294%" height="15" fill="rgb(253,56,35)" fg:x="138385" fg:w="189"/><text x="21.7538%" y="303.50"></text></g><g><title>_ZdlPv (156 samples, 0.02%)</title><rect x="21.5551%" y="277" width="0.0242%" height="15" fill="rgb(210,149,44)" fg:x="138715" fg:w="156"/><text x="21.8051%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (78 samples, 0.01%)</title><rect x="21.5672%" y="261" width="0.0121%" height="15" fill="rgb(240,135,12)" fg:x="138793" fg:w="78"/><text x="21.8172%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (68 samples, 0.01%)</title><rect x="21.6014%" y="245" width="0.0106%" height="15" fill="rgb(251,24,50)" fg:x="139013" fg:w="68"/><text x="21.8514%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (210 samples, 0.03%)</title><rect x="21.5882%" y="261" width="0.0326%" height="15" fill="rgb(243,200,47)" fg:x="138928" fg:w="210"/><text x="21.8382%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (276 samples, 0.04%)</title><rect x="21.5795%" y="277" width="0.0429%" height="15" fill="rgb(224,166,26)" fg:x="138872" fg:w="276"/><text x="21.8295%" y="287.50"></text></g><g><title>alloc_pages (75 samples, 0.01%)</title><rect x="21.6531%" y="181" width="0.0117%" height="15" fill="rgb(233,0,47)" fg:x="139346" fg:w="75"/><text x="21.9031%" y="191.50"></text></g><g><title>__alloc_pages (71 samples, 0.01%)</title><rect x="21.6538%" y="165" width="0.0110%" height="15" fill="rgb(253,80,5)" fg:x="139350" fg:w="71"/><text x="21.9038%" y="175.50"></text></g><g><title>[[falcon_kal]] (157 samples, 0.02%)</title><rect x="21.6410%" y="261" width="0.0244%" height="15" fill="rgb(214,133,25)" fg:x="139268" fg:w="157"/><text x="21.8910%" y="271.50"></text></g><g><title>vmalloc (128 samples, 0.02%)</title><rect x="21.6455%" y="245" width="0.0199%" height="15" fill="rgb(209,27,14)" fg:x="139297" fg:w="128"/><text x="21.8955%" y="255.50"></text></g><g><title>__vmalloc_node (128 samples, 0.02%)</title><rect x="21.6455%" y="229" width="0.0199%" height="15" fill="rgb(219,102,51)" fg:x="139297" fg:w="128"/><text x="21.8955%" y="239.50"></text></g><g><title>__vmalloc_node_range (128 samples, 0.02%)</title><rect x="21.6455%" y="213" width="0.0199%" height="15" fill="rgb(237,18,16)" fg:x="139297" fg:w="128"/><text x="21.8955%" y="223.50"></text></g><g><title>__vmalloc_area_node.constprop.0 (88 samples, 0.01%)</title><rect x="21.6517%" y="197" width="0.0137%" height="15" fill="rgb(241,85,17)" fg:x="139337" fg:w="88"/><text x="21.9017%" y="207.50"></text></g><g><title>[[falcon_kal]] (84 samples, 0.01%)</title><rect x="21.7812%" y="197" width="0.0131%" height="15" fill="rgb(236,90,42)" fg:x="140170" fg:w="84"/><text x="22.0312%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (189 samples, 0.03%)</title><rect x="21.8606%" y="149" width="0.0294%" height="15" fill="rgb(249,57,21)" fg:x="140681" fg:w="189"/><text x="22.1106%" y="159.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (182 samples, 0.03%)</title><rect x="21.8617%" y="133" width="0.0283%" height="15" fill="rgb(243,12,36)" fg:x="140688" fg:w="182"/><text x="22.1117%" y="143.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (353 samples, 0.05%)</title><rect x="21.8971%" y="117" width="0.0549%" height="15" fill="rgb(253,128,47)" fg:x="140916" fg:w="353"/><text x="22.1471%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (113 samples, 0.02%)</title><rect x="21.9344%" y="101" width="0.0176%" height="15" fill="rgb(207,33,20)" fg:x="141156" fg:w="113"/><text x="22.1844%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.02%)</title><rect x="21.9361%" y="85" width="0.0158%" height="15" fill="rgb(233,215,35)" fg:x="141167" fg:w="102"/><text x="22.1861%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (99 samples, 0.02%)</title><rect x="21.9366%" y="69" width="0.0154%" height="15" fill="rgb(249,188,52)" fg:x="141170" fg:w="99"/><text x="22.1866%" y="79.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (97 samples, 0.02%)</title><rect x="21.9369%" y="53" width="0.0151%" height="15" fill="rgb(225,12,32)" fg:x="141172" fg:w="97"/><text x="22.1869%" y="63.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (360 samples, 0.06%)</title><rect x="21.8963%" y="133" width="0.0559%" height="15" fill="rgb(247,98,14)" fg:x="140911" fg:w="360"/><text x="22.1463%" y="143.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (421 samples, 0.07%)</title><rect x="21.9823%" y="101" width="0.0654%" height="15" fill="rgb(247,219,48)" fg:x="141464" fg:w="421"/><text x="22.2323%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (405 samples, 0.06%)</title><rect x="21.9847%" y="85" width="0.0629%" height="15" fill="rgb(253,60,48)" fg:x="141480" fg:w="405"/><text x="22.2347%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (608 samples, 0.09%)</title><rect x="21.9706%" y="117" width="0.0945%" height="15" fill="rgb(245,15,52)" fg:x="141389" fg:w="608"/><text x="22.2206%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.02%)</title><rect x="22.0477%" y="101" width="0.0174%" height="15" fill="rgb(220,133,28)" fg:x="141885" fg:w="112"/><text x="22.2977%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (106 samples, 0.02%)</title><rect x="22.0486%" y="85" width="0.0165%" height="15" fill="rgb(217,180,4)" fg:x="141891" fg:w="106"/><text x="22.2986%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (101 samples, 0.02%)</title><rect x="22.0494%" y="69" width="0.0157%" height="15" fill="rgb(251,24,1)" fg:x="141896" fg:w="101"/><text x="22.2994%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (727 samples, 0.11%)</title><rect x="21.9523%" y="133" width="0.1130%" height="15" fill="rgb(212,185,49)" fg:x="141271" fg:w="727"/><text x="22.2023%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,144 samples, 0.18%)</title><rect x="21.8900%" y="149" width="0.1778%" height="15" fill="rgb(215,175,22)" fg:x="140870" fg:w="1144"/><text x="22.1400%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,419 samples, 0.22%)</title><rect x="21.8474%" y="165" width="0.2205%" height="15" fill="rgb(250,205,14)" fg:x="140596" fg:w="1419"/><text x="22.0974%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,531 samples, 0.24%)</title><rect x="21.8325%" y="181" width="0.2379%" height="15" fill="rgb(225,211,22)" fg:x="140500" fg:w="1531"/><text x="22.0825%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,693 samples, 0.26%)</title><rect x="21.8102%" y="197" width="0.2631%" height="15" fill="rgb(251,179,42)" fg:x="140357" fg:w="1693"/><text x="22.0602%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,000 samples, 0.31%)</title><rect x="21.7629%" y="213" width="0.3108%" height="15" fill="rgb(208,216,51)" fg:x="140052" fg:w="2000"/><text x="22.0129%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,265 samples, 0.35%)</title><rect x="21.7231%" y="229" width="0.3520%" height="15" fill="rgb(235,36,11)" fg:x="139796" fg:w="2265"/><text x="21.9731%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,514 samples, 0.39%)</title><rect x="21.6937%" y="245" width="0.3907%" height="15" fill="rgb(213,189,28)" fg:x="139607" fg:w="2514"/><text x="21.9437%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,688 samples, 0.42%)</title><rect x="21.6743%" y="261" width="0.4177%" height="15" fill="rgb(227,203,42)" fg:x="139482" fg:w="2688"/><text x="21.9243%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (3,030 samples, 0.47%)</title><rect x="21.6224%" y="277" width="0.4708%" height="15" fill="rgb(244,72,36)" fg:x="139148" fg:w="3030"/><text x="21.8724%" y="287.50"></text></g><g><title>memcmp (123 samples, 0.02%)</title><rect x="22.0932%" y="277" width="0.0191%" height="15" fill="rgb(213,53,17)" fg:x="142178" fg:w="123"/><text x="22.3432%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (3,730 samples, 0.58%)</title><rect x="21.5332%" y="293" width="0.5796%" height="15" fill="rgb(207,167,3)" fg:x="138574" fg:w="3730"/><text x="21.7832%" y="303.50"></text></g><g><title>memcmp (126 samples, 0.02%)</title><rect x="22.1128%" y="293" width="0.0196%" height="15" fill="rgb(216,98,30)" fg:x="142304" fg:w="126"/><text x="22.3628%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (4,346 samples, 0.68%)</title><rect x="21.4581%" y="309" width="0.6753%" height="15" fill="rgb(236,123,15)" fg:x="138091" fg:w="4346"/><text x="21.7081%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (4,574 samples, 0.71%)</title><rect x="21.4235%" y="325" width="0.7108%" height="15" fill="rgb(248,81,50)" fg:x="137868" fg:w="4574"/><text x="21.6735%" y="335.50"></text></g><g><title>_ZdlPv (7,594 samples, 1.18%)</title><rect x="20.9547%" y="341" width="1.1800%" height="15" fill="rgb(214,120,4)" fg:x="134851" fg:w="7594"/><text x="21.2047%" y="351.50"></text></g><g><title>_ZdlPv (7,707 samples, 1.20%)</title><rect x="20.9424%" y="373" width="1.1976%" height="15" fill="rgb(208,179,34)" fg:x="134772" fg:w="7707"/><text x="21.1924%" y="383.50"></text></g><g><title>_ZdlPv (7,694 samples, 1.20%)</title><rect x="20.9444%" y="357" width="1.1956%" height="15" fill="rgb(227,140,7)" fg:x="134785" fg:w="7694"/><text x="21.1944%" y="367.50"></text></g><g><title>cshook_security_inode_free_security (81 samples, 0.01%)</title><rect x="22.1420%" y="373" width="0.0126%" height="15" fill="rgb(214,22,6)" fg:x="142492" fg:w="81"/><text x="22.3920%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (81 samples, 0.01%)</title><rect x="22.1420%" y="357" width="0.0126%" height="15" fill="rgb(207,137,27)" fg:x="142492" fg:w="81"/><text x="22.3920%" y="367.50"></text></g><g><title>_ZdlPv (74 samples, 0.01%)</title><rect x="22.1917%" y="229" width="0.0115%" height="15" fill="rgb(210,8,46)" fg:x="142812" fg:w="74"/><text x="22.4417%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (72 samples, 0.01%)</title><rect x="22.1920%" y="213" width="0.0112%" height="15" fill="rgb(240,16,54)" fg:x="142814" fg:w="72"/><text x="22.4420%" y="223.50"></text></g><g><title>_ZdlPv (81 samples, 0.01%)</title><rect x="22.1908%" y="245" width="0.0126%" height="15" fill="rgb(211,209,29)" fg:x="142806" fg:w="81"/><text x="22.4408%" y="255.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (95 samples, 0.01%)</title><rect x="22.1897%" y="261" width="0.0148%" height="15" fill="rgb(226,228,24)" fg:x="142799" fg:w="95"/><text x="22.4397%" y="271.50"></text></g><g><title>_ZdlPv (82 samples, 0.01%)</title><rect x="22.2045%" y="261" width="0.0127%" height="15" fill="rgb(222,84,9)" fg:x="142894" fg:w="82"/><text x="22.4545%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (123 samples, 0.02%)</title><rect x="22.2626%" y="101" width="0.0191%" height="15" fill="rgb(234,203,30)" fg:x="143268" fg:w="123"/><text x="22.5126%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (107 samples, 0.02%)</title><rect x="22.2651%" y="85" width="0.0166%" height="15" fill="rgb(238,109,14)" fg:x="143284" fg:w="107"/><text x="22.5151%" y="95.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (106 samples, 0.02%)</title><rect x="22.2652%" y="69" width="0.0165%" height="15" fill="rgb(233,206,34)" fg:x="143285" fg:w="106"/><text x="22.5152%" y="79.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (106 samples, 0.02%)</title><rect x="22.2652%" y="53" width="0.0165%" height="15" fill="rgb(220,167,47)" fg:x="143285" fg:w="106"/><text x="22.5152%" y="63.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (306 samples, 0.05%)</title><rect x="22.2345%" y="197" width="0.0475%" height="15" fill="rgb(238,105,10)" fg:x="143087" fg:w="306"/><text x="22.4845%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (216 samples, 0.03%)</title><rect x="22.2484%" y="181" width="0.0336%" height="15" fill="rgb(213,227,17)" fg:x="143177" fg:w="216"/><text x="22.4984%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (145 samples, 0.02%)</title><rect x="22.2595%" y="165" width="0.0225%" height="15" fill="rgb(217,132,38)" fg:x="143248" fg:w="145"/><text x="22.5095%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.02%)</title><rect x="22.2601%" y="149" width="0.0219%" height="15" fill="rgb(242,146,4)" fg:x="143252" fg:w="141"/><text x="22.5101%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (135 samples, 0.02%)</title><rect x="22.2610%" y="133" width="0.0210%" height="15" fill="rgb(212,61,9)" fg:x="143258" fg:w="135"/><text x="22.5110%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (127 samples, 0.02%)</title><rect x="22.2623%" y="117" width="0.0197%" height="15" fill="rgb(247,126,22)" fg:x="143266" fg:w="127"/><text x="22.5123%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (344 samples, 0.05%)</title><rect x="22.2301%" y="213" width="0.0535%" height="15" fill="rgb(220,196,2)" fg:x="143059" fg:w="344"/><text x="22.4801%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (411 samples, 0.06%)</title><rect x="22.2228%" y="229" width="0.0639%" height="15" fill="rgb(208,46,4)" fg:x="143012" fg:w="411"/><text x="22.4728%" y="239.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (660 samples, 0.10%)</title><rect x="22.1850%" y="277" width="0.1026%" height="15" fill="rgb(252,104,46)" fg:x="142769" fg:w="660"/><text x="22.4350%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (446 samples, 0.07%)</title><rect x="22.2183%" y="261" width="0.0693%" height="15" fill="rgb(237,152,48)" fg:x="142983" fg:w="446"/><text x="22.4683%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (439 samples, 0.07%)</title><rect x="22.2194%" y="245" width="0.0682%" height="15" fill="rgb(221,59,37)" fg:x="142990" fg:w="439"/><text x="22.4694%" y="255.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (719 samples, 0.11%)</title><rect x="22.1777%" y="293" width="0.1117%" height="15" fill="rgb(209,202,51)" fg:x="142722" fg:w="719"/><text x="22.4277%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (76 samples, 0.01%)</title><rect x="22.3168%" y="197" width="0.0118%" height="15" fill="rgb(228,81,30)" fg:x="143617" fg:w="76"/><text x="22.5668%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (74 samples, 0.01%)</title><rect x="22.3171%" y="181" width="0.0115%" height="15" fill="rgb(227,42,39)" fg:x="143619" fg:w="74"/><text x="22.5671%" y="191.50"></text></g><g><title>_ZdlPv (131 samples, 0.02%)</title><rect x="22.3100%" y="213" width="0.0204%" height="15" fill="rgb(221,26,2)" fg:x="143573" fg:w="131"/><text x="22.5600%" y="223.50"></text></g><g><title>_ZdlPv (228 samples, 0.04%)</title><rect x="22.3075%" y="229" width="0.0354%" height="15" fill="rgb(254,61,31)" fg:x="143557" fg:w="228"/><text x="22.5575%" y="239.50"></text></g><g><title>cshook_security_inode_free_security (67 samples, 0.01%)</title><rect x="22.3432%" y="229" width="0.0104%" height="15" fill="rgb(222,173,38)" fg:x="143787" fg:w="67"/><text x="22.5932%" y="239.50"></text></g><g><title>_ZdlPv (397 samples, 0.06%)</title><rect x="22.3013%" y="245" width="0.0617%" height="15" fill="rgb(218,50,12)" fg:x="143517" fg:w="397"/><text x="22.5513%" y="255.50"></text></g><g><title>_ZdlPv (485 samples, 0.08%)</title><rect x="22.2957%" y="261" width="0.0754%" height="15" fill="rgb(223,88,40)" fg:x="143481" fg:w="485"/><text x="22.5457%" y="271.50"></text></g><g><title>_ZdlPv (555 samples, 0.09%)</title><rect x="22.2920%" y="277" width="0.0862%" height="15" fill="rgb(237,54,19)" fg:x="143457" fg:w="555"/><text x="22.5420%" y="287.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (65 samples, 0.01%)</title><rect x="22.3807%" y="261" width="0.0101%" height="15" fill="rgb(251,129,25)" fg:x="144028" fg:w="65"/><text x="22.6307%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (82 samples, 0.01%)</title><rect x="22.3782%" y="277" width="0.0127%" height="15" fill="rgb(238,97,19)" fg:x="144012" fg:w="82"/><text x="22.6282%" y="287.50"></text></g><g><title>_ZdlPv (692 samples, 0.11%)</title><rect x="22.2895%" y="293" width="0.1075%" height="15" fill="rgb(240,169,18)" fg:x="143441" fg:w="692"/><text x="22.5395%" y="303.50"></text></g><g><title>_ZdlPv (75 samples, 0.01%)</title><rect x="22.4110%" y="277" width="0.0117%" height="15" fill="rgb(230,187,49)" fg:x="144223" fg:w="75"/><text x="22.6610%" y="287.50"></text></g><g><title>_ZdlPv (77 samples, 0.01%)</title><rect x="22.4355%" y="261" width="0.0120%" height="15" fill="rgb(209,44,26)" fg:x="144381" fg:w="77"/><text x="22.6855%" y="271.50"></text></g><g><title>_ZdlPv (76 samples, 0.01%)</title><rect x="22.4722%" y="229" width="0.0118%" height="15" fill="rgb(244,0,6)" fg:x="144617" fg:w="76"/><text x="22.7222%" y="239.50"></text></g><g><title>_ZdlPv (148 samples, 0.02%)</title><rect x="22.4702%" y="245" width="0.0230%" height="15" fill="rgb(248,18,21)" fg:x="144604" fg:w="148"/><text x="22.7202%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (104 samples, 0.02%)</title><rect x="22.6764%" y="101" width="0.0162%" height="15" fill="rgb(245,180,19)" fg:x="145931" fg:w="104"/><text x="22.9264%" y="111.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (108 samples, 0.02%)</title><rect x="22.6761%" y="117" width="0.0168%" height="15" fill="rgb(252,118,36)" fg:x="145929" fg:w="108"/><text x="22.9261%" y="127.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (111 samples, 0.02%)</title><rect x="22.7177%" y="53" width="0.0172%" height="15" fill="rgb(210,224,19)" fg:x="146197" fg:w="111"/><text x="22.9677%" y="63.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (105 samples, 0.02%)</title><rect x="22.7187%" y="37" width="0.0163%" height="15" fill="rgb(218,30,24)" fg:x="146203" fg:w="105"/><text x="22.9687%" y="47.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (142 samples, 0.02%)</title><rect x="22.7152%" y="69" width="0.0221%" height="15" fill="rgb(219,75,50)" fg:x="146181" fg:w="142"/><text x="22.9652%" y="79.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (203 samples, 0.03%)</title><rect x="22.7062%" y="85" width="0.0315%" height="15" fill="rgb(234,72,50)" fg:x="146123" fg:w="203"/><text x="22.9562%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (460 samples, 0.07%)</title><rect x="22.6674%" y="133" width="0.0715%" height="15" fill="rgb(219,100,48)" fg:x="145873" fg:w="460"/><text x="22.9174%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (296 samples, 0.05%)</title><rect x="22.6929%" y="117" width="0.0460%" height="15" fill="rgb(253,5,41)" fg:x="146037" fg:w="296"/><text x="22.9429%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (237 samples, 0.04%)</title><rect x="22.7020%" y="101" width="0.0368%" height="15" fill="rgb(247,181,11)" fg:x="146096" fg:w="237"/><text x="22.9520%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (569 samples, 0.09%)</title><rect x="22.6539%" y="149" width="0.0884%" height="15" fill="rgb(222,223,25)" fg:x="145786" fg:w="569"/><text x="22.9039%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (795 samples, 0.12%)</title><rect x="22.6198%" y="165" width="0.1235%" height="15" fill="rgb(214,198,28)" fg:x="145567" fg:w="795"/><text x="22.8698%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,022 samples, 0.16%)</title><rect x="22.5856%" y="181" width="0.1588%" height="15" fill="rgb(230,46,43)" fg:x="145347" fg:w="1022"/><text x="22.8356%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,217 samples, 0.19%)</title><rect x="22.5602%" y="197" width="0.1891%" height="15" fill="rgb(233,65,53)" fg:x="145183" fg:w="1217"/><text x="22.8102%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,407 samples, 0.22%)</title><rect x="22.5393%" y="213" width="0.2186%" height="15" fill="rgb(221,121,27)" fg:x="145049" fg:w="1407"/><text x="22.7893%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,519 samples, 0.24%)</title><rect x="22.5244%" y="229" width="0.2360%" height="15" fill="rgb(247,70,47)" fg:x="144953" fg:w="1519"/><text x="22.7744%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,673 samples, 0.26%)</title><rect x="22.5008%" y="245" width="0.2600%" height="15" fill="rgb(228,85,35)" fg:x="144801" fg:w="1673"/><text x="22.7508%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,979 samples, 0.31%)</title><rect x="22.4547%" y="261" width="0.3075%" height="15" fill="rgb(209,50,18)" fg:x="144504" fg:w="1979"/><text x="22.7047%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,334 samples, 0.36%)</title><rect x="22.4054%" y="293" width="0.3627%" height="15" fill="rgb(250,19,35)" fg:x="144187" fg:w="2334"/><text x="22.6554%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,218 samples, 0.34%)</title><rect x="22.4234%" y="277" width="0.3447%" height="15" fill="rgb(253,107,29)" fg:x="144303" fg:w="2218"/><text x="22.6734%" y="287.50"></text></g><g><title>_ZdlPv (3,907 samples, 0.61%)</title><rect x="22.1611%" y="309" width="0.6071%" height="15" fill="rgb(252,179,29)" fg:x="142615" fg:w="3907"/><text x="22.4111%" y="319.50"></text></g><g><title>_ZdlPv (3,961 samples, 0.62%)</title><rect x="22.1561%" y="325" width="0.6155%" height="15" fill="rgb(238,194,6)" fg:x="142583" fg:w="3961"/><text x="22.4061%" y="335.50"></text></g><g><title>_ZdlPv (3,976 samples, 0.62%)</title><rect x="22.1558%" y="357" width="0.6178%" height="15" fill="rgb(238,164,29)" fg:x="142581" fg:w="3976"/><text x="22.4058%" y="367.50"></text></g><g><title>_ZdlPv (3,974 samples, 0.62%)</title><rect x="22.1561%" y="341" width="0.6175%" height="15" fill="rgb(224,25,9)" fg:x="142583" fg:w="3974"/><text x="22.4061%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (74 samples, 0.01%)</title><rect x="22.7783%" y="325" width="0.0115%" height="15" fill="rgb(244,153,23)" fg:x="146587" fg:w="74"/><text x="23.0283%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (90 samples, 0.01%)</title><rect x="22.7768%" y="341" width="0.0140%" height="15" fill="rgb(212,203,14)" fg:x="146577" fg:w="90"/><text x="23.0268%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (114 samples, 0.02%)</title><rect x="22.7737%" y="357" width="0.0177%" height="15" fill="rgb(220,164,20)" fg:x="146557" fg:w="114"/><text x="23.0237%" y="367.50"></text></g><g><title>[[falcon_kal]] (76 samples, 0.01%)</title><rect x="22.7946%" y="325" width="0.0118%" height="15" fill="rgb(222,203,48)" fg:x="146692" fg:w="76"/><text x="23.0446%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (198 samples, 0.03%)</title><rect x="22.7914%" y="357" width="0.0308%" height="15" fill="rgb(215,159,22)" fg:x="146671" fg:w="198"/><text x="23.0414%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (187 samples, 0.03%)</title><rect x="22.7931%" y="341" width="0.0291%" height="15" fill="rgb(216,183,47)" fg:x="146682" fg:w="187"/><text x="23.0431%" y="351.50"></text></g><g><title>cshook_security_sb_free_security (4,306 samples, 0.67%)</title><rect x="22.1546%" y="373" width="0.6691%" height="15" fill="rgb(229,195,25)" fg:x="142573" fg:w="4306"/><text x="22.4046%" y="383.50"></text></g><g><title>cshook_security_sb_free_security (12,158 samples, 1.89%)</title><rect x="20.9382%" y="405" width="1.8892%" height="15" fill="rgb(224,132,51)" fg:x="134745" fg:w="12158"/><text x="21.1882%" y="415.50">c..</text></g><g><title>cshook_security_sb_free_security (12,140 samples, 1.89%)</title><rect x="20.9410%" y="389" width="1.8864%" height="15" fill="rgb(240,63,7)" fg:x="134763" fg:w="12140"/><text x="21.1910%" y="399.50">c..</text></g><g><title>cshook_security_file_permission (12,174 samples, 1.89%)</title><rect x="20.9363%" y="421" width="1.8917%" height="15" fill="rgb(249,182,41)" fg:x="134733" fg:w="12174"/><text x="21.1863%" y="431.50">c..</text></g><g><title>cshook_security_file_permission (12,334 samples, 1.92%)</title><rect x="20.9236%" y="437" width="1.9166%" height="15" fill="rgb(243,47,26)" fg:x="134651" fg:w="12334"/><text x="21.1736%" y="447.50">c..</text></g><g><title>cshook_security_bprm_check_security (12,341 samples, 1.92%)</title><rect x="20.9227%" y="453" width="1.9177%" height="15" fill="rgb(233,48,2)" fg:x="134645" fg:w="12341"/><text x="21.1727%" y="463.50">c..</text></g><g><title>security_bprm_check (12,350 samples, 1.92%)</title><rect x="20.9214%" y="485" width="1.9191%" height="15" fill="rgb(244,165,34)" fg:x="134637" fg:w="12350"/><text x="21.1714%" y="495.50">s..</text></g><g><title>pinnedhook_security_bprm_check_security (12,343 samples, 1.92%)</title><rect x="20.9225%" y="469" width="1.9180%" height="15" fill="rgb(207,89,7)" fg:x="134644" fg:w="12343"/><text x="21.1725%" y="479.50">p..</text></g><g><title>search_binary_handler (12,605 samples, 1.96%)</title><rect x="20.8822%" y="501" width="1.9587%" height="15" fill="rgb(244,117,36)" fg:x="134385" fg:w="12605"/><text x="21.1322%" y="511.50">s..</text></g><g><title>exec_binprm (12,607 samples, 1.96%)</title><rect x="20.8822%" y="517" width="1.9590%" height="15" fill="rgb(226,144,34)" fg:x="134385" fg:w="12607"/><text x="21.1322%" y="527.50">e..</text></g><g><title>__perf_event_task_sched_in (660 samples, 0.10%)</title><rect x="22.8503%" y="437" width="0.1026%" height="15" fill="rgb(213,23,19)" fg:x="147050" fg:w="660"/><text x="23.1003%" y="447.50"></text></g><g><title>x86_pmu_enable (646 samples, 0.10%)</title><rect x="22.8525%" y="421" width="0.1004%" height="15" fill="rgb(217,75,12)" fg:x="147064" fg:w="646"/><text x="23.1025%" y="431.50"></text></g><g><title>intel_pmu_enable_all (640 samples, 0.10%)</title><rect x="22.8534%" y="405" width="0.0995%" height="15" fill="rgb(224,159,17)" fg:x="147070" fg:w="640"/><text x="23.1034%" y="415.50"></text></g><g><title>native_write_msr (636 samples, 0.10%)</title><rect x="22.8540%" y="389" width="0.0988%" height="15" fill="rgb(217,118,1)" fg:x="147074" fg:w="636"/><text x="23.1040%" y="399.50"></text></g><g><title>finish_task_switch.isra.0 (686 samples, 0.11%)</title><rect x="22.8475%" y="453" width="0.1066%" height="15" fill="rgb(232,180,48)" fg:x="147032" fg:w="686"/><text x="23.0975%" y="463.50"></text></g><g><title>__cond_resched (704 samples, 0.11%)</title><rect x="22.8456%" y="485" width="0.1094%" height="15" fill="rgb(230,27,33)" fg:x="147020" fg:w="704"/><text x="23.0956%" y="495.50"></text></g><g><title>__schedule (703 samples, 0.11%)</title><rect x="22.8458%" y="469" width="0.1092%" height="15" fill="rgb(205,31,21)" fg:x="147021" fg:w="703"/><text x="23.0958%" y="479.50"></text></g><g><title>stop_one_cpu (713 samples, 0.11%)</title><rect x="22.8455%" y="501" width="0.1108%" height="15" fill="rgb(253,59,4)" fg:x="147019" fg:w="713"/><text x="23.0955%" y="511.50"></text></g><g><title>sched_exec (741 samples, 0.12%)</title><rect x="22.8413%" y="517" width="0.1151%" height="15" fill="rgb(224,201,9)" fg:x="146992" fg:w="741"/><text x="23.0913%" y="527.50"></text></g><g><title>find_attach (81 samples, 0.01%)</title><rect x="22.9660%" y="469" width="0.0126%" height="15" fill="rgb(229,206,30)" fg:x="147795" fg:w="81"/><text x="23.2160%" y="479.50"></text></g><g><title>apparmor_bprm_creds_for_exec (170 samples, 0.03%)</title><rect x="22.9567%" y="501" width="0.0264%" height="15" fill="rgb(212,67,47)" fg:x="147735" fg:w="170"/><text x="23.2067%" y="511.50"></text></g><g><title>profile_transition (145 samples, 0.02%)</title><rect x="22.9606%" y="485" width="0.0225%" height="15" fill="rgb(211,96,50)" fg:x="147760" fg:w="145"/><text x="23.2106%" y="495.50"></text></g><g><title>security_bprm_creds_for_exec (173 samples, 0.03%)</title><rect x="22.9564%" y="517" width="0.0269%" height="15" fill="rgb(252,114,18)" fg:x="147733" fg:w="173"/><text x="23.2064%" y="527.50"></text></g><g><title>bprm_execve.part.0 (13,585 samples, 2.11%)</title><rect x="20.8725%" y="533" width="2.1110%" height="15" fill="rgb(223,58,37)" fg:x="134322" fg:w="13585"/><text x="21.1225%" y="543.50">b..</text></g><g><title>bprm_execve (13,602 samples, 2.11%)</title><rect x="20.8720%" y="549" width="2.1136%" height="15" fill="rgb(237,70,4)" fg:x="134319" fg:w="13602"/><text x="21.1220%" y="559.50">b..</text></g><g><title>do_execveat_common.isra.0 (13,752 samples, 2.14%)</title><rect x="20.8650%" y="565" width="2.1369%" height="15" fill="rgb(244,85,46)" fg:x="134274" fg:w="13752"/><text x="21.1150%" y="575.50">d..</text></g><g><title>__x64_sys_execve (13,760 samples, 2.14%)</title><rect x="20.8648%" y="581" width="2.1382%" height="15" fill="rgb(223,39,52)" fg:x="134273" fg:w="13760"/><text x="21.1148%" y="591.50">_..</text></g><g><title>entry_SYSCALL_64_after_hwframe (13,764 samples, 2.14%)</title><rect x="20.8645%" y="613" width="2.1388%" height="15" fill="rgb(218,200,14)" fg:x="134271" fg:w="13764"/><text x="21.1145%" y="623.50">e..</text></g><g><title>do_syscall_64 (13,763 samples, 2.14%)</title><rect x="20.8647%" y="597" width="2.1386%" height="15" fill="rgb(208,171,16)" fg:x="134272" fg:w="13763"/><text x="21.1147%" y="607.50">d..</text></g><g><title>__GI_execve (13,766 samples, 2.14%)</title><rect x="20.8644%" y="629" width="2.1391%" height="15" fill="rgb(234,200,18)" fg:x="134270" fg:w="13766"/><text x="21.1144%" y="639.50">_..</text></g><g><title>[dash] (14,161 samples, 2.20%)</title><rect x="20.8038%" y="645" width="2.2005%" height="15" fill="rgb(228,45,11)" fg:x="133880" fg:w="14161"/><text x="21.0538%" y="655.50">[..</text></g><g><title>__GI___libc_write (69 samples, 0.01%)</title><rect x="23.0049%" y="645" width="0.0107%" height="15" fill="rgb(237,182,11)" fg:x="148045" fg:w="69"/><text x="23.2549%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="23.0050%" y="629" width="0.0106%" height="15" fill="rgb(241,175,49)" fg:x="148046" fg:w="68"/><text x="23.2550%" y="639.50"></text></g><g><title>do_syscall_64 (68 samples, 0.01%)</title><rect x="23.0050%" y="613" width="0.0106%" height="15" fill="rgb(247,38,35)" fg:x="148046" fg:w="68"/><text x="23.2550%" y="623.50"></text></g><g><title>__GI__setjmp (69 samples, 0.01%)</title><rect x="23.0161%" y="645" width="0.0107%" height="15" fill="rgb(228,39,49)" fg:x="148117" fg:w="69"/><text x="23.2661%" y="655.50"></text></g><g><title>[dash] (14,369 samples, 2.23%)</title><rect x="20.7982%" y="661" width="2.2328%" height="15" fill="rgb(226,101,26)" fg:x="133844" fg:w="14369"/><text x="21.0482%" y="671.50">[..</text></g><g><title>_int_free (116 samples, 0.02%)</title><rect x="23.0408%" y="645" width="0.0180%" height="15" fill="rgb(206,141,19)" fg:x="148276" fg:w="116"/><text x="23.2908%" y="655.50"></text></g><g><title>tcache_put (80 samples, 0.01%)</title><rect x="23.0464%" y="629" width="0.0124%" height="15" fill="rgb(211,200,13)" fg:x="148312" fg:w="80"/><text x="23.2964%" y="639.50"></text></g><g><title>do_user_addr_fault (74 samples, 0.01%)</title><rect x="23.0591%" y="613" width="0.0115%" height="15" fill="rgb(241,121,6)" fg:x="148394" fg:w="74"/><text x="23.3091%" y="623.50"></text></g><g><title>asm_exc_page_fault (78 samples, 0.01%)</title><rect x="23.0588%" y="645" width="0.0121%" height="15" fill="rgb(234,221,29)" fg:x="148392" fg:w="78"/><text x="23.3088%" y="655.50"></text></g><g><title>exc_page_fault (77 samples, 0.01%)</title><rect x="23.0590%" y="629" width="0.0120%" height="15" fill="rgb(229,136,5)" fg:x="148393" fg:w="77"/><text x="23.3090%" y="639.50"></text></g><g><title>__GI___libc_free (230 samples, 0.04%)</title><rect x="23.0372%" y="661" width="0.0357%" height="15" fill="rgb(238,36,11)" fg:x="148253" fg:w="230"/><text x="23.2872%" y="671.50"></text></g><g><title>_int_malloc (78 samples, 0.01%)</title><rect x="23.0739%" y="645" width="0.0121%" height="15" fill="rgb(251,55,41)" fg:x="148489" fg:w="78"/><text x="23.3239%" y="655.50"></text></g><g><title>__GI___libc_malloc (90 samples, 0.01%)</title><rect x="23.0730%" y="661" width="0.0140%" height="15" fill="rgb(242,34,40)" fg:x="148483" fg:w="90"/><text x="23.3230%" y="671.50"></text></g><g><title>__mmdrop (84 samples, 0.01%)</title><rect x="23.1446%" y="501" width="0.0131%" height="15" fill="rgb(215,42,17)" fg:x="148944" fg:w="84"/><text x="23.3946%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (4,469 samples, 0.69%)</title><rect x="23.1576%" y="501" width="0.6944%" height="15" fill="rgb(207,44,46)" fg:x="149028" fg:w="4469"/><text x="23.4076%" y="511.50"></text></g><g><title>x86_pmu_enable (4,349 samples, 0.68%)</title><rect x="23.1763%" y="485" width="0.6758%" height="15" fill="rgb(211,206,28)" fg:x="149148" fg:w="4349"/><text x="23.4263%" y="495.50"></text></g><g><title>intel_pmu_enable_all (4,297 samples, 0.67%)</title><rect x="23.1844%" y="469" width="0.6677%" height="15" fill="rgb(237,167,16)" fg:x="149200" fg:w="4297"/><text x="23.4344%" y="479.50"></text></g><g><title>native_write_msr (4,272 samples, 0.66%)</title><rect x="23.1883%" y="453" width="0.6638%" height="15" fill="rgb(233,66,6)" fg:x="149225" fg:w="4272"/><text x="23.4383%" y="463.50"></text></g><g><title>account_kernel_stack.isra.0 (77 samples, 0.01%)</title><rect x="23.8686%" y="485" width="0.0120%" height="15" fill="rgb(246,123,29)" fg:x="153603" fg:w="77"/><text x="24.1186%" y="495.50"></text></g><g><title>put_task_stack (135 samples, 0.02%)</title><rect x="23.8633%" y="501" width="0.0210%" height="15" fill="rgb(209,62,40)" fg:x="153569" fg:w="135"/><text x="24.1133%" y="511.50"></text></g><g><title>finish_task_switch.isra.0 (4,884 samples, 0.76%)</title><rect x="23.1278%" y="517" width="0.7589%" height="15" fill="rgb(218,4,25)" fg:x="148836" fg:w="4884"/><text x="23.3778%" y="527.50"></text></g><g><title>pick_next_task_fair (72 samples, 0.01%)</title><rect x="23.8888%" y="501" width="0.0112%" height="15" fill="rgb(253,91,49)" fg:x="153733" fg:w="72"/><text x="24.1388%" y="511.50"></text></g><g><title>pick_next_task (75 samples, 0.01%)</title><rect x="23.8884%" y="517" width="0.0117%" height="15" fill="rgb(228,155,29)" fg:x="153731" fg:w="75"/><text x="24.1384%" y="527.50"></text></g><g><title>__schedule (5,125 samples, 0.80%)</title><rect x="23.1113%" y="533" width="0.7964%" height="15" fill="rgb(243,57,37)" fg:x="148730" fg:w="5125"/><text x="23.3613%" y="543.50"></text></g><g><title>schedule (5,138 samples, 0.80%)</title><rect x="23.1095%" y="549" width="0.7984%" height="15" fill="rgb(244,167,17)" fg:x="148718" fg:w="5138"/><text x="23.3595%" y="559.50"></text></g><g><title>__change_pid (75 samples, 0.01%)</title><rect x="23.9340%" y="469" width="0.0117%" height="15" fill="rgb(207,181,38)" fg:x="154024" fg:w="75"/><text x="24.1840%" y="479.50"></text></g><g><title>detach_pid (77 samples, 0.01%)</title><rect x="23.9340%" y="485" width="0.0120%" height="15" fill="rgb(211,8,23)" fg:x="154024" fg:w="77"/><text x="24.1840%" y="495.50"></text></g><g><title>__exit_signal (169 samples, 0.03%)</title><rect x="23.9219%" y="501" width="0.0263%" height="15" fill="rgb(235,11,44)" fg:x="153946" fg:w="169"/><text x="24.1719%" y="511.50"></text></g><g><title>release_task (273 samples, 0.04%)</title><rect x="23.9211%" y="517" width="0.0424%" height="15" fill="rgb(248,18,52)" fg:x="153941" fg:w="273"/><text x="24.1711%" y="527.50"></text></g><g><title>wait_consider_task (379 samples, 0.06%)</title><rect x="23.9079%" y="549" width="0.0589%" height="15" fill="rgb(208,4,7)" fg:x="153856" fg:w="379"/><text x="24.1579%" y="559.50"></text></g><g><title>wait_task_zombie (351 samples, 0.05%)</title><rect x="23.9122%" y="533" width="0.0545%" height="15" fill="rgb(240,17,39)" fg:x="153884" fg:w="351"/><text x="24.1622%" y="543.50"></text></g><g><title>do_wait (5,561 samples, 0.86%)</title><rect x="23.1029%" y="565" width="0.8641%" height="15" fill="rgb(207,170,3)" fg:x="148676" fg:w="5561"/><text x="23.3529%" y="575.50"></text></g><g><title>__do_sys_wait4 (5,587 samples, 0.87%)</title><rect x="23.0994%" y="597" width="0.8682%" height="15" fill="rgb(236,100,52)" fg:x="148653" fg:w="5587"/><text x="23.3494%" y="607.50"></text></g><g><title>kernel_wait4 (5,581 samples, 0.87%)</title><rect x="23.1003%" y="581" width="0.8672%" height="15" fill="rgb(246,78,51)" fg:x="148659" fg:w="5581"/><text x="23.3503%" y="591.50"></text></g><g><title>__x64_sys_wait4 (5,590 samples, 0.87%)</title><rect x="23.0994%" y="613" width="0.8686%" height="15" fill="rgb(211,17,15)" fg:x="148653" fg:w="5590"/><text x="23.3494%" y="623.50"></text></g><g><title>handle_signal (77 samples, 0.01%)</title><rect x="23.9750%" y="549" width="0.0120%" height="15" fill="rgb(209,59,46)" fg:x="154288" fg:w="77"/><text x="24.2250%" y="559.50"></text></g><g><title>arch_do_signal_or_restart (114 samples, 0.02%)</title><rect x="23.9694%" y="565" width="0.0177%" height="15" fill="rgb(210,92,25)" fg:x="154252" fg:w="114"/><text x="24.2194%" y="575.50"></text></g><g><title>do_syscall_64 (5,743 samples, 0.89%)</title><rect x="23.0950%" y="629" width="0.8924%" height="15" fill="rgb(238,174,52)" fg:x="148625" fg:w="5743"/><text x="23.3450%" y="639.50"></text></g><g><title>syscall_exit_to_user_mode (122 samples, 0.02%)</title><rect x="23.9685%" y="613" width="0.0190%" height="15" fill="rgb(230,73,7)" fg:x="154246" fg:w="122"/><text x="24.2185%" y="623.50"></text></g><g><title>exit_to_user_mode_prepare (122 samples, 0.02%)</title><rect x="23.9685%" y="597" width="0.0190%" height="15" fill="rgb(243,124,40)" fg:x="154246" fg:w="122"/><text x="24.2185%" y="607.50"></text></g><g><title>exit_to_user_mode_loop (117 samples, 0.02%)</title><rect x="23.9693%" y="581" width="0.0182%" height="15" fill="rgb(244,170,11)" fg:x="154251" fg:w="117"/><text x="24.2193%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (5,746 samples, 0.89%)</title><rect x="23.0949%" y="645" width="0.8929%" height="15" fill="rgb(207,114,54)" fg:x="148624" fg:w="5746"/><text x="23.3449%" y="655.50"></text></g><g><title>__GI___wait4 (5,799 samples, 0.90%)</title><rect x="23.0869%" y="661" width="0.9011%" height="15" fill="rgb(205,42,20)" fg:x="148573" fg:w="5799"/><text x="23.3369%" y="671.50"></text></g><g><title>__longjmp_chk (67 samples, 0.01%)</title><rect x="23.9885%" y="661" width="0.0104%" height="15" fill="rgb(230,30,28)" fg:x="154375" fg:w="67"/><text x="24.2385%" y="671.50"></text></g><g><title>handle_pte_fault (73 samples, 0.01%)</title><rect x="24.0017%" y="581" width="0.0113%" height="15" fill="rgb(205,73,54)" fg:x="154460" fg:w="73"/><text x="24.2517%" y="591.50"></text></g><g><title>__handle_mm_fault (80 samples, 0.01%)</title><rect x="24.0010%" y="597" width="0.0124%" height="15" fill="rgb(254,227,23)" fg:x="154455" fg:w="80"/><text x="24.2510%" y="607.50"></text></g><g><title>handle_mm_fault (84 samples, 0.01%)</title><rect x="24.0006%" y="613" width="0.0131%" height="15" fill="rgb(228,202,34)" fg:x="154453" fg:w="84"/><text x="24.2506%" y="623.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.01%)</title><rect x="23.9996%" y="629" width="0.0143%" height="15" fill="rgb(222,225,37)" fg:x="154446" fg:w="92"/><text x="24.2496%" y="639.50"></text></g><g><title>asm_exc_page_fault (96 samples, 0.01%)</title><rect x="23.9994%" y="661" width="0.0149%" height="15" fill="rgb(221,14,54)" fg:x="154445" fg:w="96"/><text x="24.2494%" y="671.50"></text></g><g><title>exc_page_fault (96 samples, 0.01%)</title><rect x="23.9994%" y="645" width="0.0149%" height="15" fill="rgb(254,102,2)" fg:x="154445" fg:w="96"/><text x="24.2494%" y="655.50"></text></g><g><title>[dash] (20,770 samples, 3.23%)</title><rect x="20.7873%" y="677" width="3.2275%" height="15" fill="rgb(232,104,17)" fg:x="133774" fg:w="20770"/><text x="21.0373%" y="687.50">[da..</text></g><g><title>lookup_fast (66 samples, 0.01%)</title><rect x="24.0389%" y="501" width="0.0103%" height="15" fill="rgb(250,220,14)" fg:x="154699" fg:w="66"/><text x="24.2889%" y="511.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (169 samples, 0.03%)</title><rect x="24.0258%" y="533" width="0.0263%" height="15" fill="rgb(241,158,9)" fg:x="154615" fg:w="169"/><text x="24.2758%" y="543.50"></text></g><g><title>walk_component (88 samples, 0.01%)</title><rect x="24.0384%" y="517" width="0.0137%" height="15" fill="rgb(246,9,43)" fg:x="154696" fg:w="88"/><text x="24.2884%" y="527.50"></text></g><g><title>filename_lookup (218 samples, 0.03%)</title><rect x="24.0243%" y="565" width="0.0339%" height="15" fill="rgb(206,73,33)" fg:x="154605" fg:w="218"/><text x="24.2743%" y="575.50"></text></g><g><title>path_lookupat (214 samples, 0.03%)</title><rect x="24.0249%" y="549" width="0.0333%" height="15" fill="rgb(222,79,8)" fg:x="154609" fg:w="214"/><text x="24.2749%" y="559.50"></text></g><g><title>user_path_at_empty (279 samples, 0.04%)</title><rect x="24.0241%" y="581" width="0.0434%" height="15" fill="rgb(234,8,54)" fg:x="154604" fg:w="279"/><text x="24.2741%" y="591.50"></text></g><g><title>__do_sys_newfstatat (292 samples, 0.05%)</title><rect x="24.0229%" y="613" width="0.0454%" height="15" fill="rgb(209,134,38)" fg:x="154596" fg:w="292"/><text x="24.2729%" y="623.50"></text></g><g><title>vfs_statx (288 samples, 0.04%)</title><rect x="24.0235%" y="597" width="0.0448%" height="15" fill="rgb(230,127,29)" fg:x="154600" fg:w="288"/><text x="24.2735%" y="607.50"></text></g><g><title>__x64_sys_newfstatat (293 samples, 0.05%)</title><rect x="24.0229%" y="629" width="0.0455%" height="15" fill="rgb(242,44,41)" fg:x="154596" fg:w="293"/><text x="24.2729%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (310 samples, 0.05%)</title><rect x="24.0216%" y="661" width="0.0482%" height="15" fill="rgb(222,56,43)" fg:x="154588" fg:w="310"/><text x="24.2716%" y="671.50"></text></g><g><title>do_syscall_64 (306 samples, 0.05%)</title><rect x="24.0222%" y="645" width="0.0475%" height="15" fill="rgb(238,39,47)" fg:x="154592" fg:w="306"/><text x="24.2722%" y="655.50"></text></g><g><title>__GI___fstatat64 (355 samples, 0.06%)</title><rect x="24.0163%" y="677" width="0.0552%" height="15" fill="rgb(226,79,43)" fg:x="154554" fg:w="355"/><text x="24.2663%" y="687.50"></text></g><g><title>handle_pte_fault (123 samples, 0.02%)</title><rect x="24.0828%" y="597" width="0.0191%" height="15" fill="rgb(242,105,53)" fg:x="154982" fg:w="123"/><text x="24.3328%" y="607.50"></text></g><g><title>do_user_addr_fault (151 samples, 0.02%)</title><rect x="24.0786%" y="645" width="0.0235%" height="15" fill="rgb(251,132,46)" fg:x="154955" fg:w="151"/><text x="24.3286%" y="655.50"></text></g><g><title>handle_mm_fault (133 samples, 0.02%)</title><rect x="24.0814%" y="629" width="0.0207%" height="15" fill="rgb(231,77,14)" fg:x="154973" fg:w="133"/><text x="24.3314%" y="639.50"></text></g><g><title>__handle_mm_fault (128 samples, 0.02%)</title><rect x="24.0822%" y="613" width="0.0199%" height="15" fill="rgb(240,135,9)" fg:x="154978" fg:w="128"/><text x="24.3322%" y="623.50"></text></g><g><title>exc_page_fault (161 samples, 0.03%)</title><rect x="24.0786%" y="661" width="0.0250%" height="15" fill="rgb(248,109,14)" fg:x="154955" fg:w="161"/><text x="24.3286%" y="671.50"></text></g><g><title>asm_exc_page_fault (162 samples, 0.03%)</title><rect x="24.0786%" y="677" width="0.0252%" height="15" fill="rgb(227,146,52)" fg:x="154955" fg:w="162"/><text x="24.3286%" y="687.50"></text></g><g><title>[dash] (21,410 samples, 3.33%)</title><rect x="20.7794%" y="693" width="3.3269%" height="15" fill="rgb(232,54,3)" fg:x="133723" fg:w="21410"/><text x="21.0294%" y="703.50">[da..</text></g><g><title>__GI___close (110 samples, 0.02%)</title><rect x="24.1063%" y="693" width="0.0171%" height="15" fill="rgb(229,201,43)" fg:x="155133" fg:w="110"/><text x="24.3563%" y="703.50"></text></g><g><title>__GI___pipe (65 samples, 0.01%)</title><rect x="24.1288%" y="693" width="0.0101%" height="15" fill="rgb(252,161,33)" fg:x="155278" fg:w="65"/><text x="24.3788%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.01%)</title><rect x="24.1288%" y="677" width="0.0101%" height="15" fill="rgb(226,146,40)" fg:x="155278" fg:w="65"/><text x="24.3788%" y="687.50"></text></g><g><title>do_syscall_64 (65 samples, 0.01%)</title><rect x="24.1288%" y="661" width="0.0101%" height="15" fill="rgb(219,47,25)" fg:x="155278" fg:w="65"/><text x="24.3788%" y="671.50"></text></g><g><title>__x64_sys_pipe2 (65 samples, 0.01%)</title><rect x="24.1288%" y="645" width="0.0101%" height="15" fill="rgb(250,135,13)" fg:x="155278" fg:w="65"/><text x="24.3788%" y="655.50"></text></g><g><title>xfs_filemap_map_pages (70 samples, 0.01%)</title><rect x="24.1486%" y="517" width="0.0109%" height="15" fill="rgb(219,229,18)" fg:x="155405" fg:w="70"/><text x="24.3986%" y="527.50"></text></g><g><title>do_read_fault (75 samples, 0.01%)</title><rect x="24.1481%" y="533" width="0.0117%" height="15" fill="rgb(217,152,27)" fg:x="155402" fg:w="75"/><text x="24.3981%" y="543.50"></text></g><g><title>handle_pte_fault (78 samples, 0.01%)</title><rect x="24.1478%" y="565" width="0.0121%" height="15" fill="rgb(225,71,47)" fg:x="155400" fg:w="78"/><text x="24.3978%" y="575.50"></text></g><g><title>do_fault (78 samples, 0.01%)</title><rect x="24.1478%" y="549" width="0.0121%" height="15" fill="rgb(220,139,14)" fg:x="155400" fg:w="78"/><text x="24.3978%" y="559.50"></text></g><g><title>do_user_addr_fault (95 samples, 0.01%)</title><rect x="24.1453%" y="613" width="0.0148%" height="15" fill="rgb(247,54,32)" fg:x="155384" fg:w="95"/><text x="24.3953%" y="623.50"></text></g><g><title>handle_mm_fault (87 samples, 0.01%)</title><rect x="24.1466%" y="597" width="0.0135%" height="15" fill="rgb(252,131,39)" fg:x="155392" fg:w="87"/><text x="24.3966%" y="607.50"></text></g><g><title>__handle_mm_fault (86 samples, 0.01%)</title><rect x="24.1467%" y="581" width="0.0134%" height="15" fill="rgb(210,108,39)" fg:x="155393" fg:w="86"/><text x="24.3967%" y="591.50"></text></g><g><title>asm_exc_page_fault (100 samples, 0.02%)</title><rect x="24.1450%" y="645" width="0.0155%" height="15" fill="rgb(205,23,29)" fg:x="155382" fg:w="100"/><text x="24.3950%" y="655.50"></text></g><g><title>exc_page_fault (99 samples, 0.02%)</title><rect x="24.1452%" y="629" width="0.0154%" height="15" fill="rgb(246,139,46)" fg:x="155383" fg:w="99"/><text x="24.3952%" y="639.50"></text></g><g><title>kmem_cache_alloc (79 samples, 0.01%)</title><rect x="24.2230%" y="485" width="0.0123%" height="15" fill="rgb(250,81,26)" fg:x="155884" fg:w="79"/><text x="24.4730%" y="495.50"></text></g><g><title>anon_vma_clone (175 samples, 0.03%)</title><rect x="24.2110%" y="501" width="0.0272%" height="15" fill="rgb(214,104,7)" fg:x="155807" fg:w="175"/><text x="24.4610%" y="511.50"></text></g><g><title>kmem_cache_alloc (80 samples, 0.01%)</title><rect x="24.2396%" y="501" width="0.0124%" height="15" fill="rgb(233,189,8)" fg:x="155991" fg:w="80"/><text x="24.4896%" y="511.50"></text></g><g><title>anon_vma_fork (284 samples, 0.04%)</title><rect x="24.2092%" y="517" width="0.0441%" height="15" fill="rgb(228,141,17)" fg:x="155795" fg:w="284"/><text x="24.4592%" y="527.50"></text></g><g><title>pte_alloc_one (65 samples, 0.01%)</title><rect x="24.2845%" y="437" width="0.0101%" height="15" fill="rgb(247,157,1)" fg:x="156280" fg:w="65"/><text x="24.5345%" y="447.50"></text></g><g><title>__pte_alloc (70 samples, 0.01%)</title><rect x="24.2839%" y="453" width="0.0109%" height="15" fill="rgb(249,225,5)" fg:x="156276" fg:w="70"/><text x="24.5339%" y="463.50"></text></g><g><title>copy_pte_range (132 samples, 0.02%)</title><rect x="24.2754%" y="469" width="0.0205%" height="15" fill="rgb(242,55,13)" fg:x="156221" fg:w="132"/><text x="24.5254%" y="479.50"></text></g><g><title>copy_pmd_range (206 samples, 0.03%)</title><rect x="24.2640%" y="485" width="0.0320%" height="15" fill="rgb(230,49,50)" fg:x="156148" fg:w="206"/><text x="24.5140%" y="495.50"></text></g><g><title>copy_p4d_range (263 samples, 0.04%)</title><rect x="24.2561%" y="501" width="0.0409%" height="15" fill="rgb(241,111,38)" fg:x="156097" fg:w="263"/><text x="24.5061%" y="511.50"></text></g><g><title>copy_page_range (283 samples, 0.04%)</title><rect x="24.2535%" y="517" width="0.0440%" height="15" fill="rgb(252,155,4)" fg:x="156080" fg:w="283"/><text x="24.5035%" y="527.50"></text></g><g><title>kmem_cache_alloc (76 samples, 0.01%)</title><rect x="24.3138%" y="501" width="0.0118%" height="15" fill="rgb(212,69,32)" fg:x="156468" fg:w="76"/><text x="24.5638%" y="511.50"></text></g><g><title>vm_area_dup (157 samples, 0.02%)</title><rect x="24.3029%" y="517" width="0.0244%" height="15" fill="rgb(243,107,47)" fg:x="156398" fg:w="157"/><text x="24.5529%" y="527.50"></text></g><g><title>dup_mmap (867 samples, 0.13%)</title><rect x="24.1985%" y="533" width="0.1347%" height="15" fill="rgb(247,130,12)" fg:x="155726" fg:w="867"/><text x="24.4485%" y="543.50"></text></g><g><title>dup_mm (925 samples, 0.14%)</title><rect x="24.1977%" y="549" width="0.1437%" height="15" fill="rgb(233,74,16)" fg:x="155721" fg:w="925"/><text x="24.4477%" y="559.50"></text></g><g><title>alloc_thread_stack_node (81 samples, 0.01%)</title><rect x="24.3444%" y="533" width="0.0126%" height="15" fill="rgb(208,58,18)" fg:x="156665" fg:w="81"/><text x="24.5944%" y="543.50"></text></g><g><title>__vmalloc_node_range (78 samples, 0.01%)</title><rect x="24.3448%" y="517" width="0.0121%" height="15" fill="rgb(242,225,1)" fg:x="156668" fg:w="78"/><text x="24.5948%" y="527.50"></text></g><g><title>dup_task_struct (147 samples, 0.02%)</title><rect x="24.3416%" y="549" width="0.0228%" height="15" fill="rgb(249,39,40)" fg:x="156647" fg:w="147"/><text x="24.5916%" y="559.50"></text></g><g><title>x86_pmu_event_init (126 samples, 0.02%)</title><rect x="24.3938%" y="437" width="0.0196%" height="15" fill="rgb(207,72,44)" fg:x="156983" fg:w="126"/><text x="24.6438%" y="447.50"></text></g><g><title>perf_try_init_event (135 samples, 0.02%)</title><rect x="24.3925%" y="453" width="0.0210%" height="15" fill="rgb(215,193,12)" fg:x="156975" fg:w="135"/><text x="24.6425%" y="463.50"></text></g><g><title>perf_init_event (144 samples, 0.02%)</title><rect x="24.3914%" y="469" width="0.0224%" height="15" fill="rgb(248,41,39)" fg:x="156968" fg:w="144"/><text x="24.6414%" y="479.50"></text></g><g><title>perf_event_alloc (225 samples, 0.03%)</title><rect x="24.3792%" y="485" width="0.0350%" height="15" fill="rgb(253,85,4)" fg:x="156889" fg:w="225"/><text x="24.6292%" y="495.50"></text></g><g><title>inherit_event.constprop.0 (271 samples, 0.04%)</title><rect x="24.3722%" y="501" width="0.0421%" height="15" fill="rgb(243,70,31)" fg:x="156844" fg:w="271"/><text x="24.6222%" y="511.50"></text></g><g><title>inherit_task_group.isra.0 (294 samples, 0.05%)</title><rect x="24.3698%" y="517" width="0.0457%" height="15" fill="rgb(253,195,26)" fg:x="156829" fg:w="294"/><text x="24.6198%" y="527.50"></text></g><g><title>perf_event_init_context (300 samples, 0.05%)</title><rect x="24.3692%" y="533" width="0.0466%" height="15" fill="rgb(243,42,11)" fg:x="156825" fg:w="300"/><text x="24.6192%" y="543.50"></text></g><g><title>perf_event_init_task (317 samples, 0.05%)</title><rect x="24.3689%" y="549" width="0.0493%" height="15" fill="rgb(239,66,17)" fg:x="156823" fg:w="317"/><text x="24.6189%" y="559.50"></text></g><g><title>copy_process (1,683 samples, 0.26%)</title><rect x="24.1624%" y="565" width="0.2615%" height="15" fill="rgb(217,132,21)" fg:x="155494" fg:w="1683"/><text x="24.4124%" y="575.50"></text></g><g><title>__x64_sys_clone (1,829 samples, 0.28%)</title><rect x="24.1616%" y="613" width="0.2842%" height="15" fill="rgb(252,202,21)" fg:x="155489" fg:w="1829"/><text x="24.4116%" y="623.50"></text></g><g><title>__do_sys_clone (1,829 samples, 0.28%)</title><rect x="24.1616%" y="597" width="0.2842%" height="15" fill="rgb(233,98,36)" fg:x="155489" fg:w="1829"/><text x="24.4116%" y="607.50"></text></g><g><title>kernel_clone (1,828 samples, 0.28%)</title><rect x="24.1618%" y="581" width="0.2841%" height="15" fill="rgb(216,153,54)" fg:x="155490" fg:w="1828"/><text x="24.4118%" y="591.50"></text></g><g><title>wake_up_new_task (94 samples, 0.01%)</title><rect x="24.4312%" y="565" width="0.0146%" height="15" fill="rgb(250,99,7)" fg:x="157224" fg:w="94"/><text x="24.6812%" y="575.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,847 samples, 0.29%)</title><rect x="24.1605%" y="645" width="0.2870%" height="15" fill="rgb(207,56,50)" fg:x="155482" fg:w="1847"/><text x="24.4105%" y="655.50"></text></g><g><title>do_syscall_64 (1,841 samples, 0.29%)</title><rect x="24.1615%" y="629" width="0.2861%" height="15" fill="rgb(244,61,34)" fg:x="155488" fg:w="1841"/><text x="24.4115%" y="639.50"></text></g><g><title>do_wp_page (90 samples, 0.01%)</title><rect x="24.4657%" y="517" width="0.0140%" height="15" fill="rgb(241,50,38)" fg:x="157446" fg:w="90"/><text x="24.7157%" y="527.50"></text></g><g><title>handle_pte_fault (111 samples, 0.02%)</title><rect x="24.4643%" y="533" width="0.0172%" height="15" fill="rgb(212,166,30)" fg:x="157437" fg:w="111"/><text x="24.7143%" y="543.50"></text></g><g><title>__handle_mm_fault (137 samples, 0.02%)</title><rect x="24.4606%" y="549" width="0.0213%" height="15" fill="rgb(249,127,32)" fg:x="157413" fg:w="137"/><text x="24.7106%" y="559.50"></text></g><g><title>handle_mm_fault (157 samples, 0.02%)</title><rect x="24.4576%" y="565" width="0.0244%" height="15" fill="rgb(209,103,0)" fg:x="157394" fg:w="157"/><text x="24.7076%" y="575.50"></text></g><g><title>do_user_addr_fault (202 samples, 0.03%)</title><rect x="24.4511%" y="581" width="0.0314%" height="15" fill="rgb(238,209,51)" fg:x="157352" fg:w="202"/><text x="24.7011%" y="591.50"></text></g><g><title>exc_page_fault (208 samples, 0.03%)</title><rect x="24.4507%" y="597" width="0.0323%" height="15" fill="rgb(237,56,23)" fg:x="157349" fg:w="208"/><text x="24.7007%" y="607.50"></text></g><g><title>__put_user_nocheck_4 (227 samples, 0.04%)</title><rect x="24.4479%" y="629" width="0.0353%" height="15" fill="rgb(215,153,46)" fg:x="157331" fg:w="227"/><text x="24.6979%" y="639.50"></text></g><g><title>asm_exc_page_fault (209 samples, 0.03%)</title><rect x="24.4507%" y="613" width="0.0325%" height="15" fill="rgb(224,49,31)" fg:x="157349" fg:w="209"/><text x="24.7007%" y="623.50"></text></g><g><title>asm_exc_page_fault (67 samples, 0.01%)</title><rect x="24.4833%" y="629" width="0.0104%" height="15" fill="rgb(250,18,42)" fg:x="157559" fg:w="67"/><text x="24.7333%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (4,664 samples, 0.72%)</title><rect x="24.5364%" y="597" width="0.7247%" height="15" fill="rgb(215,176,39)" fg:x="157901" fg:w="4664"/><text x="24.7864%" y="607.50"></text></g><g><title>x86_pmu_enable (4,567 samples, 0.71%)</title><rect x="24.5515%" y="581" width="0.7097%" height="15" fill="rgb(223,77,29)" fg:x="157998" fg:w="4567"/><text x="24.8015%" y="591.50"></text></g><g><title>intel_pmu_enable_all (4,545 samples, 0.71%)</title><rect x="24.5549%" y="565" width="0.7063%" height="15" fill="rgb(234,94,52)" fg:x="158020" fg:w="4545"/><text x="24.8049%" y="575.50"></text></g><g><title>native_write_msr (4,525 samples, 0.70%)</title><rect x="24.5580%" y="549" width="0.7031%" height="15" fill="rgb(220,154,50)" fg:x="158040" fg:w="4525"/><text x="24.8080%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (4,875 samples, 0.76%)</title><rect x="24.5176%" y="613" width="0.7575%" height="15" fill="rgb(212,11,10)" fg:x="157780" fg:w="4875"/><text x="24.7676%" y="623.50"></text></g><g><title>schedule_tail (5,027 samples, 0.78%)</title><rect x="24.4951%" y="629" width="0.7812%" height="15" fill="rgb(205,166,19)" fg:x="157635" fg:w="5027"/><text x="24.7451%" y="639.50"></text></g><g><title>do_wp_page (113 samples, 0.02%)</title><rect x="25.2842%" y="453" width="0.0176%" height="15" fill="rgb(244,198,16)" fg:x="162713" fg:w="113"/><text x="25.5342%" y="463.50"></text></g><g><title>wp_page_copy (94 samples, 0.01%)</title><rect x="25.2871%" y="437" width="0.0146%" height="15" fill="rgb(219,69,12)" fg:x="162732" fg:w="94"/><text x="25.5371%" y="447.50"></text></g><g><title>handle_pte_fault (122 samples, 0.02%)</title><rect x="25.2837%" y="469" width="0.0190%" height="15" fill="rgb(245,30,7)" fg:x="162710" fg:w="122"/><text x="25.5337%" y="479.50"></text></g><g><title>handle_mm_fault (133 samples, 0.02%)</title><rect x="25.2822%" y="501" width="0.0207%" height="15" fill="rgb(218,221,48)" fg:x="162700" fg:w="133"/><text x="25.5322%" y="511.50"></text></g><g><title>__handle_mm_fault (129 samples, 0.02%)</title><rect x="25.2828%" y="485" width="0.0200%" height="15" fill="rgb(216,66,15)" fg:x="162704" fg:w="129"/><text x="25.5328%" y="495.50"></text></g><g><title>do_user_addr_fault (153 samples, 0.02%)</title><rect x="25.2795%" y="517" width="0.0238%" height="15" fill="rgb(226,122,50)" fg:x="162683" fg:w="153"/><text x="25.5295%" y="527.50"></text></g><g><title>__put_user_nocheck_8 (161 samples, 0.03%)</title><rect x="25.2784%" y="565" width="0.0250%" height="15" fill="rgb(239,156,16)" fg:x="162676" fg:w="161"/><text x="25.5284%" y="575.50"></text></g><g><title>asm_exc_page_fault (156 samples, 0.02%)</title><rect x="25.2792%" y="549" width="0.0242%" height="15" fill="rgb(224,27,38)" fg:x="162681" fg:w="156"/><text x="25.5292%" y="559.50"></text></g><g><title>exc_page_fault (156 samples, 0.02%)</title><rect x="25.2792%" y="533" width="0.0242%" height="15" fill="rgb(224,39,27)" fg:x="162681" fg:w="156"/><text x="25.5292%" y="543.50"></text></g><g><title>__rseq_handle_notify_resume (226 samples, 0.04%)</title><rect x="25.2784%" y="581" width="0.0351%" height="15" fill="rgb(215,92,29)" fg:x="162676" fg:w="226"/><text x="25.5284%" y="591.50"></text></g><g><title>exit_to_user_mode_loop (268 samples, 0.04%)</title><rect x="25.2772%" y="597" width="0.0416%" height="15" fill="rgb(207,159,16)" fg:x="162668" fg:w="268"/><text x="25.5272%" y="607.50"></text></g><g><title>exit_to_user_mode_prepare (287 samples, 0.04%)</title><rect x="25.2769%" y="613" width="0.0446%" height="15" fill="rgb(238,163,47)" fg:x="162666" fg:w="287"/><text x="25.5269%" y="623.50"></text></g><g><title>ret_from_fork (5,623 samples, 0.87%)</title><rect x="24.4479%" y="645" width="0.8738%" height="15" fill="rgb(219,91,49)" fg:x="157331" fg:w="5623"/><text x="24.6979%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (292 samples, 0.05%)</title><rect x="25.2762%" y="629" width="0.0454%" height="15" fill="rgb(227,167,31)" fg:x="162662" fg:w="292"/><text x="25.5262%" y="639.50"></text></g><g><title>arch_fork (7,608 samples, 1.18%)</title><rect x="24.1419%" y="661" width="1.1822%" height="15" fill="rgb(234,80,54)" fg:x="155362" fg:w="7608"/><text x="24.3919%" y="671.50"></text></g><g><title>__GI__Fork (7,614 samples, 1.18%)</title><rect x="24.1414%" y="677" width="1.1831%" height="15" fill="rgb(212,114,2)" fg:x="155359" fg:w="7614"/><text x="24.3914%" y="687.50"></text></g><g><title>do_wp_page (86 samples, 0.01%)</title><rect x="25.3330%" y="581" width="0.0134%" height="15" fill="rgb(234,50,24)" fg:x="163027" fg:w="86"/><text x="25.5830%" y="591.50"></text></g><g><title>wp_page_copy (73 samples, 0.01%)</title><rect x="25.3350%" y="565" width="0.0113%" height="15" fill="rgb(221,68,8)" fg:x="163040" fg:w="73"/><text x="25.5850%" y="575.50"></text></g><g><title>handle_pte_fault (92 samples, 0.01%)</title><rect x="25.3325%" y="597" width="0.0143%" height="15" fill="rgb(254,180,31)" fg:x="163024" fg:w="92"/><text x="25.5825%" y="607.50"></text></g><g><title>__handle_mm_fault (104 samples, 0.02%)</title><rect x="25.3309%" y="613" width="0.0162%" height="15" fill="rgb(247,130,50)" fg:x="163014" fg:w="104"/><text x="25.5809%" y="623.50"></text></g><g><title>handle_mm_fault (116 samples, 0.02%)</title><rect x="25.3294%" y="629" width="0.0180%" height="15" fill="rgb(211,109,4)" fg:x="163004" fg:w="116"/><text x="25.5794%" y="639.50"></text></g><g><title>do_user_addr_fault (136 samples, 0.02%)</title><rect x="25.3272%" y="645" width="0.0211%" height="15" fill="rgb(238,50,21)" fg:x="162990" fg:w="136"/><text x="25.5772%" y="655.50"></text></g><g><title>asm_exc_page_fault (145 samples, 0.02%)</title><rect x="25.3269%" y="677" width="0.0225%" height="15" fill="rgb(225,57,45)" fg:x="162988" fg:w="145"/><text x="25.5769%" y="687.50"></text></g><g><title>exc_page_fault (143 samples, 0.02%)</title><rect x="25.3272%" y="661" width="0.0222%" height="15" fill="rgb(209,196,50)" fg:x="162990" fg:w="143"/><text x="25.5772%" y="671.50"></text></g><g><title>asm_exc_page_fault (68 samples, 0.01%)</title><rect x="25.3501%" y="661" width="0.0106%" height="15" fill="rgb(242,140,13)" fg:x="163137" fg:w="68"/><text x="25.6001%" y="671.50"></text></g><g><title>exc_page_fault (67 samples, 0.01%)</title><rect x="25.3502%" y="645" width="0.0104%" height="15" fill="rgb(217,111,7)" fg:x="163138" fg:w="67"/><text x="25.6002%" y="655.50"></text></g><g><title>fork_system_setup (73 samples, 0.01%)</title><rect x="25.3496%" y="677" width="0.0113%" height="15" fill="rgb(253,193,51)" fg:x="163134" fg:w="73"/><text x="25.5996%" y="687.50"></text></g><g><title>__libc_fork (7,934 samples, 1.23%)</title><rect x="24.1391%" y="693" width="1.2329%" height="15" fill="rgb(252,70,29)" fg:x="155344" fg:w="7934"/><text x="24.3891%" y="703.50"></text></g><g><title>do_read_fault (70 samples, 0.01%)</title><rect x="25.3745%" y="581" width="0.0109%" height="15" fill="rgb(232,127,12)" fg:x="163294" fg:w="70"/><text x="25.6245%" y="591.50"></text></g><g><title>xfs_filemap_map_pages (69 samples, 0.01%)</title><rect x="25.3746%" y="565" width="0.0107%" height="15" fill="rgb(211,180,21)" fg:x="163295" fg:w="69"/><text x="25.6246%" y="575.50"></text></g><g><title>do_fault (72 samples, 0.01%)</title><rect x="25.3743%" y="597" width="0.0112%" height="15" fill="rgb(229,72,13)" fg:x="163293" fg:w="72"/><text x="25.6243%" y="607.50"></text></g><g><title>asm_exc_page_fault (88 samples, 0.01%)</title><rect x="25.3720%" y="693" width="0.0137%" height="15" fill="rgb(240,211,49)" fg:x="163278" fg:w="88"/><text x="25.6220%" y="703.50"></text></g><g><title>exc_page_fault (88 samples, 0.01%)</title><rect x="25.3720%" y="677" width="0.0137%" height="15" fill="rgb(219,149,40)" fg:x="163278" fg:w="88"/><text x="25.6220%" y="687.50"></text></g><g><title>do_user_addr_fault (88 samples, 0.01%)</title><rect x="25.3720%" y="661" width="0.0137%" height="15" fill="rgb(210,127,46)" fg:x="163278" fg:w="88"/><text x="25.6220%" y="671.50"></text></g><g><title>handle_mm_fault (81 samples, 0.01%)</title><rect x="25.3731%" y="645" width="0.0126%" height="15" fill="rgb(220,106,7)" fg:x="163285" fg:w="81"/><text x="25.6231%" y="655.50"></text></g><g><title>__handle_mm_fault (79 samples, 0.01%)</title><rect x="25.3734%" y="629" width="0.0123%" height="15" fill="rgb(249,31,22)" fg:x="163287" fg:w="79"/><text x="25.6234%" y="639.50"></text></g><g><title>handle_pte_fault (75 samples, 0.01%)</title><rect x="25.3740%" y="613" width="0.0117%" height="15" fill="rgb(253,1,49)" fg:x="163291" fg:w="75"/><text x="25.6240%" y="623.50"></text></g><g><title>[dash] (29,663 samples, 4.61%)</title><rect x="20.7767%" y="709" width="4.6094%" height="15" fill="rgb(227,144,33)" fg:x="133706" fg:w="29663"/><text x="21.0267%" y="719.50">[dash]</text></g><g><title>__handle_mm_fault (76 samples, 0.01%)</title><rect x="25.3906%" y="629" width="0.0118%" height="15" fill="rgb(249,163,44)" fg:x="163398" fg:w="76"/><text x="25.6406%" y="639.50"></text></g><g><title>handle_pte_fault (76 samples, 0.01%)</title><rect x="25.3906%" y="613" width="0.0118%" height="15" fill="rgb(234,15,39)" fg:x="163398" fg:w="76"/><text x="25.6406%" y="623.50"></text></g><g><title>handle_mm_fault (78 samples, 0.01%)</title><rect x="25.3905%" y="645" width="0.0121%" height="15" fill="rgb(207,66,16)" fg:x="163397" fg:w="78"/><text x="25.6405%" y="655.50"></text></g><g><title>do_user_addr_fault (83 samples, 0.01%)</title><rect x="25.3898%" y="661" width="0.0129%" height="15" fill="rgb(233,112,24)" fg:x="163393" fg:w="83"/><text x="25.6398%" y="671.50"></text></g><g><title>asm_exc_page_fault (90 samples, 0.01%)</title><rect x="25.3892%" y="693" width="0.0140%" height="15" fill="rgb(230,90,22)" fg:x="163389" fg:w="90"/><text x="25.6392%" y="703.50"></text></g><g><title>exc_page_fault (87 samples, 0.01%)</title><rect x="25.3897%" y="677" width="0.0135%" height="15" fill="rgb(229,61,13)" fg:x="163392" fg:w="87"/><text x="25.6397%" y="687.50"></text></g><g><title>[libc.so.6] (112 samples, 0.02%)</title><rect x="25.3861%" y="709" width="0.0174%" height="15" fill="rgb(225,57,24)" fg:x="163369" fg:w="112"/><text x="25.6361%" y="719.50"></text></g><g><title>[dash] (29,813 samples, 4.63%)</title><rect x="20.7725%" y="725" width="4.6327%" height="15" fill="rgb(208,169,48)" fg:x="133679" fg:w="29813"/><text x="21.0225%" y="735.50">[dash]</text></g><g><title>[dash] (29,943 samples, 4.65%)</title><rect x="20.7679%" y="741" width="4.6529%" height="15" fill="rgb(244,218,51)" fg:x="133649" fg:w="29943"/><text x="21.0179%" y="751.50">[dash]</text></g><g><title>__GI___close (96 samples, 0.01%)</title><rect x="25.4214%" y="741" width="0.0149%" height="15" fill="rgb(214,148,10)" fg:x="163596" fg:w="96"/><text x="25.6714%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (190 samples, 0.03%)</title><rect x="25.4548%" y="581" width="0.0295%" height="15" fill="rgb(225,174,27)" fg:x="163811" fg:w="190"/><text x="25.7048%" y="591.50"></text></g><g><title>x86_pmu_enable (186 samples, 0.03%)</title><rect x="25.4554%" y="565" width="0.0289%" height="15" fill="rgb(230,96,26)" fg:x="163815" fg:w="186"/><text x="25.7054%" y="575.50"></text></g><g><title>intel_pmu_enable_all (185 samples, 0.03%)</title><rect x="25.4556%" y="549" width="0.0287%" height="15" fill="rgb(232,10,30)" fg:x="163816" fg:w="185"/><text x="25.7056%" y="559.50"></text></g><g><title>native_write_msr (184 samples, 0.03%)</title><rect x="25.4557%" y="533" width="0.0286%" height="15" fill="rgb(222,8,50)" fg:x="163817" fg:w="184"/><text x="25.7057%" y="543.50"></text></g><g><title>finish_task_switch.isra.0 (209 samples, 0.03%)</title><rect x="25.4539%" y="597" width="0.0325%" height="15" fill="rgb(213,81,27)" fg:x="163805" fg:w="209"/><text x="25.7039%" y="607.50"></text></g><g><title>schedule (220 samples, 0.03%)</title><rect x="25.4532%" y="629" width="0.0342%" height="15" fill="rgb(245,50,10)" fg:x="163801" fg:w="220"/><text x="25.7032%" y="639.50"></text></g><g><title>__schedule (219 samples, 0.03%)</title><rect x="25.4534%" y="613" width="0.0340%" height="15" fill="rgb(216,100,18)" fg:x="163802" fg:w="219"/><text x="25.7034%" y="623.50"></text></g><g><title>release_task (83 samples, 0.01%)</title><rect x="25.4899%" y="597" width="0.0129%" height="15" fill="rgb(236,147,54)" fg:x="164037" fg:w="83"/><text x="25.7399%" y="607.50"></text></g><g><title>do_wait (331 samples, 0.05%)</title><rect x="25.4523%" y="645" width="0.0514%" height="15" fill="rgb(205,143,26)" fg:x="163795" fg:w="331"/><text x="25.7023%" y="655.50"></text></g><g><title>wait_consider_task (105 samples, 0.02%)</title><rect x="25.4874%" y="629" width="0.0163%" height="15" fill="rgb(236,26,9)" fg:x="164021" fg:w="105"/><text x="25.7374%" y="639.50"></text></g><g><title>wait_task_zombie (97 samples, 0.02%)</title><rect x="25.4887%" y="613" width="0.0151%" height="15" fill="rgb(221,165,53)" fg:x="164029" fg:w="97"/><text x="25.7387%" y="623.50"></text></g><g><title>__x64_sys_wait4 (337 samples, 0.05%)</title><rect x="25.4517%" y="693" width="0.0524%" height="15" fill="rgb(214,110,17)" fg:x="163791" fg:w="337"/><text x="25.7017%" y="703.50"></text></g><g><title>__do_sys_wait4 (337 samples, 0.05%)</title><rect x="25.4517%" y="677" width="0.0524%" height="15" fill="rgb(237,197,12)" fg:x="163791" fg:w="337"/><text x="25.7017%" y="687.50"></text></g><g><title>kernel_wait4 (337 samples, 0.05%)</title><rect x="25.4517%" y="661" width="0.0524%" height="15" fill="rgb(205,84,17)" fg:x="163791" fg:w="337"/><text x="25.7017%" y="671.50"></text></g><g><title>do_syscall_64 (347 samples, 0.05%)</title><rect x="25.4511%" y="709" width="0.0539%" height="15" fill="rgb(237,18,45)" fg:x="163787" fg:w="347"/><text x="25.7011%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (353 samples, 0.05%)</title><rect x="25.4503%" y="725" width="0.0549%" height="15" fill="rgb(221,87,14)" fg:x="163782" fg:w="353"/><text x="25.7003%" y="735.50"></text></g><g><title>__GI___wait4 (382 samples, 0.06%)</title><rect x="25.4461%" y="741" width="0.0594%" height="15" fill="rgb(238,186,15)" fg:x="163755" fg:w="382"/><text x="25.6961%" y="751.50"></text></g><g><title>do_user_addr_fault (69 samples, 0.01%)</title><rect x="25.5157%" y="693" width="0.0107%" height="15" fill="rgb(208,115,11)" fg:x="164203" fg:w="69"/><text x="25.7657%" y="703.50"></text></g><g><title>asm_exc_page_fault (71 samples, 0.01%)</title><rect x="25.5155%" y="725" width="0.0110%" height="15" fill="rgb(254,175,0)" fg:x="164202" fg:w="71"/><text x="25.7655%" y="735.50"></text></g><g><title>exc_page_fault (70 samples, 0.01%)</title><rect x="25.5157%" y="709" width="0.0109%" height="15" fill="rgb(227,24,42)" fg:x="164203" fg:w="70"/><text x="25.7657%" y="719.50"></text></g><g><title>__longjmp_chk (141 samples, 0.02%)</title><rect x="25.5054%" y="741" width="0.0219%" height="15" fill="rgb(223,211,37)" fg:x="164137" fg:w="141"/><text x="25.7554%" y="751.50"></text></g><g><title>[dash] (30,675 samples, 4.77%)</title><rect x="20.7629%" y="757" width="4.7666%" height="15" fill="rgb(235,49,27)" fg:x="133617" fg:w="30675"/><text x="21.0129%" y="767.50">[dash]</text></g><g><title>do_user_addr_fault (79 samples, 0.01%)</title><rect x="25.5306%" y="725" width="0.0123%" height="15" fill="rgb(254,97,51)" fg:x="164299" fg:w="79"/><text x="25.7806%" y="735.50"></text></g><g><title>handle_mm_fault (69 samples, 0.01%)</title><rect x="25.5322%" y="709" width="0.0107%" height="15" fill="rgb(249,51,40)" fg:x="164309" fg:w="69"/><text x="25.7822%" y="719.50"></text></g><g><title>asm_exc_page_fault (81 samples, 0.01%)</title><rect x="25.5305%" y="757" width="0.0126%" height="15" fill="rgb(210,128,45)" fg:x="164298" fg:w="81"/><text x="25.7805%" y="767.50"></text></g><g><title>exc_page_fault (80 samples, 0.01%)</title><rect x="25.5306%" y="741" width="0.0124%" height="15" fill="rgb(224,137,50)" fg:x="164299" fg:w="80"/><text x="25.7806%" y="751.50"></text></g><g><title>[dash] (30,818 samples, 4.79%)</title><rect x="20.7556%" y="773" width="4.7888%" height="15" fill="rgb(242,15,9)" fg:x="133570" fg:w="30818"/><text x="21.0056%" y="783.50">[dash]</text></g><g><title>__fput (100 samples, 0.02%)</title><rect x="25.5513%" y="645" width="0.0155%" height="15" fill="rgb(233,187,41)" fg:x="164432" fg:w="100"/><text x="25.8013%" y="655.50"></text></g><g><title>____fput (102 samples, 0.02%)</title><rect x="25.5513%" y="661" width="0.0158%" height="15" fill="rgb(227,2,29)" fg:x="164432" fg:w="102"/><text x="25.8013%" y="671.50"></text></g><g><title>syscall_exit_to_user_mode (112 samples, 0.02%)</title><rect x="25.5499%" y="725" width="0.0174%" height="15" fill="rgb(222,70,3)" fg:x="164423" fg:w="112"/><text x="25.7999%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (112 samples, 0.02%)</title><rect x="25.5499%" y="709" width="0.0174%" height="15" fill="rgb(213,11,42)" fg:x="164423" fg:w="112"/><text x="25.7999%" y="719.50"></text></g><g><title>exit_to_user_mode_loop (111 samples, 0.02%)</title><rect x="25.5500%" y="693" width="0.0172%" height="15" fill="rgb(225,150,9)" fg:x="164424" fg:w="111"/><text x="25.8000%" y="703.50"></text></g><g><title>task_work_run (104 samples, 0.02%)</title><rect x="25.5511%" y="677" width="0.0162%" height="15" fill="rgb(230,162,45)" fg:x="164431" fg:w="104"/><text x="25.8011%" y="687.50"></text></g><g><title>do_syscall_64 (174 samples, 0.03%)</title><rect x="25.5490%" y="741" width="0.0270%" height="15" fill="rgb(222,14,52)" fg:x="164417" fg:w="174"/><text x="25.7990%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (175 samples, 0.03%)</title><rect x="25.5490%" y="757" width="0.0272%" height="15" fill="rgb(254,198,14)" fg:x="164417" fg:w="175"/><text x="25.7990%" y="767.50"></text></g><g><title>__GI___close (186 samples, 0.03%)</title><rect x="25.5476%" y="773" width="0.0289%" height="15" fill="rgb(220,217,30)" fg:x="164408" fg:w="186"/><text x="25.7976%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (121 samples, 0.02%)</title><rect x="25.5828%" y="693" width="0.0188%" height="15" fill="rgb(215,146,41)" fg:x="164635" fg:w="121"/><text x="25.8328%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (129 samples, 0.02%)</title><rect x="25.5827%" y="709" width="0.0200%" height="15" fill="rgb(217,27,36)" fg:x="164634" fg:w="129"/><text x="25.8327%" y="719.50"></text></g><g><title>syscall_exit_to_user_mode (130 samples, 0.02%)</title><rect x="25.5827%" y="725" width="0.0202%" height="15" fill="rgb(219,218,39)" fg:x="164634" fg:w="130"/><text x="25.8327%" y="735.50"></text></g><g><title>__mmdrop (73 samples, 0.01%)</title><rect x="25.6378%" y="581" width="0.0113%" height="15" fill="rgb(219,4,42)" fg:x="164989" fg:w="73"/><text x="25.8878%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (2,826 samples, 0.44%)</title><rect x="25.6492%" y="581" width="0.4391%" height="15" fill="rgb(249,119,36)" fg:x="165062" fg:w="2826"/><text x="25.8992%" y="591.50"></text></g><g><title>x86_pmu_enable (2,766 samples, 0.43%)</title><rect x="25.6585%" y="565" width="0.4298%" height="15" fill="rgb(209,23,33)" fg:x="165122" fg:w="2766"/><text x="25.9085%" y="575.50"></text></g><g><title>intel_pmu_enable_all (2,740 samples, 0.43%)</title><rect x="25.6625%" y="549" width="0.4258%" height="15" fill="rgb(211,10,0)" fg:x="165148" fg:w="2740"/><text x="25.9125%" y="559.50"></text></g><g><title>native_write_msr (2,720 samples, 0.42%)</title><rect x="25.6657%" y="533" width="0.4227%" height="15" fill="rgb(208,99,37)" fg:x="165168" fg:w="2720"/><text x="25.9157%" y="543.50"></text></g><g><title>put_task_stack (133 samples, 0.02%)</title><rect x="26.0955%" y="581" width="0.0207%" height="15" fill="rgb(213,132,31)" fg:x="167934" fg:w="133"/><text x="26.3455%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (3,147 samples, 0.49%)</title><rect x="25.6285%" y="597" width="0.4890%" height="15" fill="rgb(243,129,40)" fg:x="164929" fg:w="3147"/><text x="25.8785%" y="607.50"></text></g><g><title>__schedule (3,284 samples, 0.51%)</title><rect x="25.6169%" y="613" width="0.5103%" height="15" fill="rgb(210,66,33)" fg:x="164854" fg:w="3284"/><text x="25.8669%" y="623.50"></text></g><g><title>schedule (3,291 samples, 0.51%)</title><rect x="25.6159%" y="629" width="0.5114%" height="15" fill="rgb(209,189,4)" fg:x="164848" fg:w="3291"/><text x="25.8659%" y="639.50"></text></g><g><title>pipe_read (3,342 samples, 0.52%)</title><rect x="25.6094%" y="645" width="0.5193%" height="15" fill="rgb(214,107,37)" fg:x="164806" fg:w="3342"/><text x="25.8594%" y="655.50"></text></g><g><title>new_sync_read (3,364 samples, 0.52%)</title><rect x="25.6071%" y="661" width="0.5227%" height="15" fill="rgb(245,88,54)" fg:x="164791" fg:w="3364"/><text x="25.8571%" y="671.50"></text></g><g><title>__x64_sys_read (3,392 samples, 0.53%)</title><rect x="25.6046%" y="709" width="0.5271%" height="15" fill="rgb(205,146,20)" fg:x="164775" fg:w="3392"/><text x="25.8546%" y="719.50"></text></g><g><title>ksys_read (3,391 samples, 0.53%)</title><rect x="25.6047%" y="693" width="0.5269%" height="15" fill="rgb(220,161,25)" fg:x="164776" fg:w="3391"/><text x="25.8547%" y="703.50"></text></g><g><title>vfs_read (3,383 samples, 0.53%)</title><rect x="25.6060%" y="677" width="0.5257%" height="15" fill="rgb(215,152,15)" fg:x="164784" fg:w="3383"/><text x="25.8560%" y="687.50"></text></g><g><title>do_syscall_64 (3,558 samples, 0.55%)</title><rect x="25.5802%" y="741" width="0.5529%" height="15" fill="rgb(233,192,44)" fg:x="164618" fg:w="3558"/><text x="25.8302%" y="751.50"></text></g><g><title>unload_network_ops_symbols (3,412 samples, 0.53%)</title><rect x="25.6029%" y="725" width="0.5302%" height="15" fill="rgb(240,170,46)" fg:x="164764" fg:w="3412"/><text x="25.8529%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,560 samples, 0.55%)</title><rect x="25.5800%" y="757" width="0.5532%" height="15" fill="rgb(207,104,33)" fg:x="164617" fg:w="3560"/><text x="25.8300%" y="767.50"></text></g><g><title>__GI___libc_read (3,584 samples, 0.56%)</title><rect x="25.5769%" y="773" width="0.5569%" height="15" fill="rgb(219,21,39)" fg:x="164597" fg:w="3584"/><text x="25.8269%" y="783.50"></text></g><g><title>_ZdlPv (107 samples, 0.02%)</title><rect x="26.1537%" y="421" width="0.0166%" height="15" fill="rgb(214,133,29)" fg:x="168309" fg:w="107"/><text x="26.4037%" y="431.50"></text></g><g><title>_ZdlPv (104 samples, 0.02%)</title><rect x="26.1542%" y="405" width="0.0162%" height="15" fill="rgb(226,93,6)" fg:x="168312" fg:w="104"/><text x="26.4042%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (101 samples, 0.02%)</title><rect x="26.1547%" y="389" width="0.0157%" height="15" fill="rgb(252,222,34)" fg:x="168315" fg:w="101"/><text x="26.4047%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (90 samples, 0.01%)</title><rect x="26.1564%" y="373" width="0.0140%" height="15" fill="rgb(252,92,48)" fg:x="168326" fg:w="90"/><text x="26.4064%" y="383.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (110 samples, 0.02%)</title><rect x="26.1534%" y="437" width="0.0171%" height="15" fill="rgb(245,223,24)" fg:x="168307" fg:w="110"/><text x="26.4034%" y="447.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (169 samples, 0.03%)</title><rect x="26.1522%" y="453" width="0.0263%" height="15" fill="rgb(205,176,3)" fg:x="168299" fg:w="169"/><text x="26.4022%" y="463.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (182 samples, 0.03%)</title><rect x="26.1503%" y="469" width="0.0283%" height="15" fill="rgb(235,151,15)" fg:x="168287" fg:w="182"/><text x="26.4003%" y="479.50"></text></g><g><title>_ZdlPv (65 samples, 0.01%)</title><rect x="26.1808%" y="405" width="0.0101%" height="15" fill="rgb(237,209,11)" fg:x="168483" fg:w="65"/><text x="26.4308%" y="415.50"></text></g><g><title>_ZdlPv (82 samples, 0.01%)</title><rect x="26.1803%" y="421" width="0.0127%" height="15" fill="rgb(243,227,24)" fg:x="168480" fg:w="82"/><text x="26.4303%" y="431.50"></text></g><g><title>_ZdlPv (90 samples, 0.01%)</title><rect x="26.1795%" y="437" width="0.0140%" height="15" fill="rgb(239,193,16)" fg:x="168475" fg:w="90"/><text x="26.4295%" y="447.50"></text></g><g><title>_ZdlPv (98 samples, 0.02%)</title><rect x="26.1789%" y="453" width="0.0152%" height="15" fill="rgb(231,27,9)" fg:x="168471" fg:w="98"/><text x="26.4289%" y="463.50"></text></g><g><title>_ZdlPv (123 samples, 0.02%)</title><rect x="26.1786%" y="469" width="0.0191%" height="15" fill="rgb(219,169,10)" fg:x="168469" fg:w="123"/><text x="26.4286%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (108 samples, 0.02%)</title><rect x="26.2328%" y="325" width="0.0168%" height="15" fill="rgb(244,229,43)" fg:x="168818" fg:w="108"/><text x="26.4828%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.02%)</title><rect x="26.2338%" y="309" width="0.0158%" height="15" fill="rgb(254,38,20)" fg:x="168824" fg:w="102"/><text x="26.4838%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (85 samples, 0.01%)</title><rect x="26.2364%" y="293" width="0.0132%" height="15" fill="rgb(250,47,30)" fg:x="168841" fg:w="85"/><text x="26.4864%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (117 samples, 0.02%)</title><rect x="26.2319%" y="341" width="0.0182%" height="15" fill="rgb(224,124,36)" fg:x="168812" fg:w="117"/><text x="26.4819%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (139 samples, 0.02%)</title><rect x="26.2286%" y="357" width="0.0216%" height="15" fill="rgb(246,68,51)" fg:x="168791" fg:w="139"/><text x="26.4786%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (168 samples, 0.03%)</title><rect x="26.2244%" y="373" width="0.0261%" height="15" fill="rgb(253,43,49)" fg:x="168764" fg:w="168"/><text x="26.4744%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (182 samples, 0.03%)</title><rect x="26.2226%" y="389" width="0.0283%" height="15" fill="rgb(219,54,36)" fg:x="168752" fg:w="182"/><text x="26.4726%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (199 samples, 0.03%)</title><rect x="26.2206%" y="405" width="0.0309%" height="15" fill="rgb(227,133,34)" fg:x="168739" fg:w="199"/><text x="26.4706%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (225 samples, 0.03%)</title><rect x="26.2167%" y="421" width="0.0350%" height="15" fill="rgb(247,227,15)" fg:x="168714" fg:w="225"/><text x="26.4667%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (268 samples, 0.04%)</title><rect x="26.2114%" y="437" width="0.0416%" height="15" fill="rgb(229,96,14)" fg:x="168680" fg:w="268"/><text x="26.4614%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (314 samples, 0.05%)</title><rect x="26.2055%" y="453" width="0.0488%" height="15" fill="rgb(220,79,17)" fg:x="168642" fg:w="314"/><text x="26.4555%" y="463.50"></text></g><g><title>_ZdlPv (680 samples, 0.11%)</title><rect x="26.1488%" y="485" width="0.1057%" height="15" fill="rgb(205,131,53)" fg:x="168277" fg:w="680"/><text x="26.3988%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (363 samples, 0.06%)</title><rect x="26.1980%" y="469" width="0.0564%" height="15" fill="rgb(209,50,29)" fg:x="168594" fg:w="363"/><text x="26.4480%" y="479.50"></text></g><g><title>_ZdlPv (689 samples, 0.11%)</title><rect x="26.1475%" y="517" width="0.1071%" height="15" fill="rgb(245,86,46)" fg:x="168269" fg:w="689"/><text x="26.3975%" y="527.50"></text></g><g><title>_ZdlPv (687 samples, 0.11%)</title><rect x="26.1478%" y="501" width="0.1068%" height="15" fill="rgb(235,66,46)" fg:x="168271" fg:w="687"/><text x="26.3978%" y="511.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (78 samples, 0.01%)</title><rect x="26.2574%" y="421" width="0.0121%" height="15" fill="rgb(232,148,31)" fg:x="168976" fg:w="78"/><text x="26.5074%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (86 samples, 0.01%)</title><rect x="26.2563%" y="437" width="0.0134%" height="15" fill="rgb(217,149,8)" fg:x="168969" fg:w="86"/><text x="26.5063%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (66 samples, 0.01%)</title><rect x="26.3048%" y="325" width="0.0103%" height="15" fill="rgb(209,183,11)" fg:x="169281" fg:w="66"/><text x="26.5548%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (86 samples, 0.01%)</title><rect x="26.3023%" y="341" width="0.0134%" height="15" fill="rgb(208,55,20)" fg:x="169265" fg:w="86"/><text x="26.5523%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (96 samples, 0.01%)</title><rect x="26.3011%" y="357" width="0.0149%" height="15" fill="rgb(218,39,14)" fg:x="169257" fg:w="96"/><text x="26.5511%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (118 samples, 0.02%)</title><rect x="26.2978%" y="389" width="0.0183%" height="15" fill="rgb(216,169,33)" fg:x="169236" fg:w="118"/><text x="26.5478%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (102 samples, 0.02%)</title><rect x="26.3003%" y="373" width="0.0158%" height="15" fill="rgb(233,80,24)" fg:x="169252" fg:w="102"/><text x="26.5503%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (144 samples, 0.02%)</title><rect x="26.2939%" y="405" width="0.0224%" height="15" fill="rgb(213,179,31)" fg:x="169211" fg:w="144"/><text x="26.5439%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (241 samples, 0.04%)</title><rect x="26.2790%" y="437" width="0.0374%" height="15" fill="rgb(209,19,5)" fg:x="169115" fg:w="241"/><text x="26.5290%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (181 samples, 0.03%)</title><rect x="26.2883%" y="421" width="0.0281%" height="15" fill="rgb(219,18,35)" fg:x="169175" fg:w="181"/><text x="26.5383%" y="431.50"></text></g><g><title>_ZdlPv (397 samples, 0.06%)</title><rect x="26.2549%" y="453" width="0.0617%" height="15" fill="rgb(209,169,16)" fg:x="168960" fg:w="397"/><text x="26.5049%" y="463.50"></text></g><g><title>_ZdlPv (400 samples, 0.06%)</title><rect x="26.2547%" y="469" width="0.0622%" height="15" fill="rgb(245,90,51)" fg:x="168959" fg:w="400"/><text x="26.5047%" y="479.50"></text></g><g><title>_ZdlPv (404 samples, 0.06%)</title><rect x="26.2546%" y="501" width="0.0628%" height="15" fill="rgb(220,99,45)" fg:x="168958" fg:w="404"/><text x="26.5046%" y="511.50"></text></g><g><title>_ZdlPv (403 samples, 0.06%)</title><rect x="26.2547%" y="485" width="0.0626%" height="15" fill="rgb(249,89,25)" fg:x="168959" fg:w="403"/><text x="26.5047%" y="495.50"></text></g><g><title>cshook_security_sb_free_security (452 samples, 0.07%)</title><rect x="26.2546%" y="517" width="0.0702%" height="15" fill="rgb(239,193,0)" fg:x="168958" fg:w="452"/><text x="26.5046%" y="527.50"></text></g><g><title>cshook_security_file_permission (1,157 samples, 0.18%)</title><rect x="26.1472%" y="565" width="0.1798%" height="15" fill="rgb(231,126,1)" fg:x="168267" fg:w="1157"/><text x="26.3972%" y="575.50"></text></g><g><title>cshook_security_sb_free_security (1,155 samples, 0.18%)</title><rect x="26.1475%" y="549" width="0.1795%" height="15" fill="rgb(243,166,3)" fg:x="168269" fg:w="1155"/><text x="26.3975%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (1,155 samples, 0.18%)</title><rect x="26.1475%" y="533" width="0.1795%" height="15" fill="rgb(223,22,34)" fg:x="168269" fg:w="1155"/><text x="26.3975%" y="543.50"></text></g><g><title>exec_binprm (1,193 samples, 0.19%)</title><rect x="26.1424%" y="661" width="0.1854%" height="15" fill="rgb(251,52,51)" fg:x="168236" fg:w="1193"/><text x="26.3924%" y="671.50"></text></g><g><title>search_binary_handler (1,193 samples, 0.19%)</title><rect x="26.1424%" y="645" width="0.1854%" height="15" fill="rgb(221,165,28)" fg:x="168236" fg:w="1193"/><text x="26.3924%" y="655.50"></text></g><g><title>security_bprm_check (1,169 samples, 0.18%)</title><rect x="26.1461%" y="629" width="0.1817%" height="15" fill="rgb(218,121,47)" fg:x="168260" fg:w="1169"/><text x="26.3961%" y="639.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,169 samples, 0.18%)</title><rect x="26.1461%" y="613" width="0.1817%" height="15" fill="rgb(209,120,9)" fg:x="168260" fg:w="1169"/><text x="26.3961%" y="623.50"></text></g><g><title>cshook_security_bprm_check_security (1,169 samples, 0.18%)</title><rect x="26.1461%" y="597" width="0.1817%" height="15" fill="rgb(236,68,12)" fg:x="168260" fg:w="1169"/><text x="26.3961%" y="607.50"></text></g><g><title>cshook_security_file_permission (1,168 samples, 0.18%)</title><rect x="26.1463%" y="581" width="0.1815%" height="15" fill="rgb(225,194,26)" fg:x="168261" fg:w="1168"/><text x="26.3963%" y="591.50"></text></g><g><title>bprm_execve (1,239 samples, 0.19%)</title><rect x="26.1408%" y="693" width="0.1925%" height="15" fill="rgb(231,84,39)" fg:x="168226" fg:w="1239"/><text x="26.3908%" y="703.50"></text></g><g><title>bprm_execve.part.0 (1,239 samples, 0.19%)</title><rect x="26.1408%" y="677" width="0.1925%" height="15" fill="rgb(210,11,45)" fg:x="168226" fg:w="1239"/><text x="26.3908%" y="687.50"></text></g><g><title>__GI_execve (1,256 samples, 0.20%)</title><rect x="26.1401%" y="773" width="0.1952%" height="15" fill="rgb(224,54,52)" fg:x="168221" fg:w="1256"/><text x="26.3901%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,255 samples, 0.20%)</title><rect x="26.1402%" y="757" width="0.1950%" height="15" fill="rgb(238,102,14)" fg:x="168222" fg:w="1255"/><text x="26.3902%" y="767.50"></text></g><g><title>do_syscall_64 (1,255 samples, 0.20%)</title><rect x="26.1402%" y="741" width="0.1950%" height="15" fill="rgb(243,160,52)" fg:x="168222" fg:w="1255"/><text x="26.3902%" y="751.50"></text></g><g><title>__x64_sys_execve (1,255 samples, 0.20%)</title><rect x="26.1402%" y="725" width="0.1950%" height="15" fill="rgb(216,114,19)" fg:x="168222" fg:w="1255"/><text x="26.3902%" y="735.50"></text></g><g><title>do_execveat_common.isra.0 (1,255 samples, 0.20%)</title><rect x="26.1402%" y="709" width="0.1950%" height="15" fill="rgb(244,166,37)" fg:x="168222" fg:w="1255"/><text x="26.3902%" y="719.50"></text></g><g><title>anon_vma_fork (101 samples, 0.02%)</title><rect x="26.3735%" y="597" width="0.0157%" height="15" fill="rgb(246,29,44)" fg:x="169723" fg:w="101"/><text x="26.6235%" y="607.50"></text></g><g><title>copy_pmd_range (121 samples, 0.02%)</title><rect x="26.3971%" y="565" width="0.0188%" height="15" fill="rgb(215,56,53)" fg:x="169875" fg:w="121"/><text x="26.6471%" y="575.50"></text></g><g><title>copy_pte_range (76 samples, 0.01%)</title><rect x="26.4041%" y="549" width="0.0118%" height="15" fill="rgb(217,60,2)" fg:x="169920" fg:w="76"/><text x="26.6541%" y="559.50"></text></g><g><title>copy_p4d_range (160 samples, 0.02%)</title><rect x="26.3913%" y="581" width="0.0249%" height="15" fill="rgb(207,26,24)" fg:x="169838" fg:w="160"/><text x="26.6413%" y="591.50"></text></g><g><title>copy_page_range (176 samples, 0.03%)</title><rect x="26.3892%" y="597" width="0.0273%" height="15" fill="rgb(252,210,15)" fg:x="169824" fg:w="176"/><text x="26.6392%" y="607.50"></text></g><g><title>vm_area_dup (91 samples, 0.01%)</title><rect x="26.4196%" y="597" width="0.0141%" height="15" fill="rgb(253,209,26)" fg:x="170020" fg:w="91"/><text x="26.6696%" y="607.50"></text></g><g><title>dup_mmap (434 samples, 0.07%)</title><rect x="26.3676%" y="613" width="0.0674%" height="15" fill="rgb(238,170,14)" fg:x="169685" fg:w="434"/><text x="26.6176%" y="623.50"></text></g><g><title>dup_mm (489 samples, 0.08%)</title><rect x="26.3672%" y="629" width="0.0760%" height="15" fill="rgb(216,178,15)" fg:x="169683" fg:w="489"/><text x="26.6172%" y="639.50"></text></g><g><title>perf_event_alloc (130 samples, 0.02%)</title><rect x="26.4606%" y="565" width="0.0202%" height="15" fill="rgb(250,197,2)" fg:x="170284" fg:w="130"/><text x="26.7106%" y="575.50"></text></g><g><title>perf_init_event (87 samples, 0.01%)</title><rect x="26.4673%" y="549" width="0.0135%" height="15" fill="rgb(212,70,42)" fg:x="170327" fg:w="87"/><text x="26.7173%" y="559.50"></text></g><g><title>perf_try_init_event (86 samples, 0.01%)</title><rect x="26.4675%" y="533" width="0.0134%" height="15" fill="rgb(227,213,9)" fg:x="170328" fg:w="86"/><text x="26.7175%" y="543.50"></text></g><g><title>x86_pmu_event_init (82 samples, 0.01%)</title><rect x="26.4681%" y="517" width="0.0127%" height="15" fill="rgb(245,99,25)" fg:x="170332" fg:w="82"/><text x="26.7181%" y="527.50"></text></g><g><title>inherit_event.constprop.0 (166 samples, 0.03%)</title><rect x="26.4552%" y="581" width="0.0258%" height="15" fill="rgb(250,82,29)" fg:x="170249" fg:w="166"/><text x="26.7052%" y="591.50"></text></g><g><title>perf_event_init_context (189 samples, 0.03%)</title><rect x="26.4526%" y="613" width="0.0294%" height="15" fill="rgb(241,226,54)" fg:x="170232" fg:w="189"/><text x="26.7026%" y="623.50"></text></g><g><title>inherit_task_group.isra.0 (184 samples, 0.03%)</title><rect x="26.4533%" y="597" width="0.0286%" height="15" fill="rgb(221,99,41)" fg:x="170237" fg:w="184"/><text x="26.7033%" y="607.50"></text></g><g><title>perf_event_init_task (197 samples, 0.03%)</title><rect x="26.4522%" y="629" width="0.0306%" height="15" fill="rgb(213,90,21)" fg:x="170230" fg:w="197"/><text x="26.7022%" y="639.50"></text></g><g><title>copy_process (904 samples, 0.14%)</title><rect x="26.3461%" y="645" width="0.1405%" height="15" fill="rgb(205,208,24)" fg:x="169547" fg:w="904"/><text x="26.5961%" y="655.50"></text></g><g><title>__x64_sys_clone (1,017 samples, 0.16%)</title><rect x="26.3444%" y="693" width="0.1580%" height="15" fill="rgb(246,31,12)" fg:x="169536" fg:w="1017"/><text x="26.5944%" y="703.50"></text></g><g><title>__do_sys_clone (1,017 samples, 0.16%)</title><rect x="26.3444%" y="677" width="0.1580%" height="15" fill="rgb(213,154,6)" fg:x="169536" fg:w="1017"/><text x="26.5944%" y="687.50"></text></g><g><title>kernel_clone (1,016 samples, 0.16%)</title><rect x="26.3446%" y="661" width="0.1579%" height="15" fill="rgb(222,163,29)" fg:x="169537" fg:w="1016"/><text x="26.5946%" y="671.50"></text></g><g><title>wake_up_new_task (71 samples, 0.01%)</title><rect x="26.4914%" y="645" width="0.0110%" height="15" fill="rgb(227,201,8)" fg:x="170482" fg:w="71"/><text x="26.7414%" y="655.50"></text></g><g><title>do_syscall_64 (1,021 samples, 0.16%)</title><rect x="26.3443%" y="709" width="0.1587%" height="15" fill="rgb(233,9,32)" fg:x="169535" fg:w="1021"/><text x="26.5943%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,022 samples, 0.16%)</title><rect x="26.3443%" y="725" width="0.1588%" height="15" fill="rgb(217,54,24)" fg:x="169535" fg:w="1022"/><text x="26.5943%" y="735.50"></text></g><g><title>do_wp_page (190 samples, 0.03%)</title><rect x="26.5139%" y="597" width="0.0295%" height="15" fill="rgb(235,192,0)" fg:x="170627" fg:w="190"/><text x="26.7639%" y="607.50"></text></g><g><title>wp_page_copy (170 samples, 0.03%)</title><rect x="26.5170%" y="581" width="0.0264%" height="15" fill="rgb(235,45,9)" fg:x="170647" fg:w="170"/><text x="26.7670%" y="591.50"></text></g><g><title>handle_pte_fault (195 samples, 0.03%)</title><rect x="26.5135%" y="613" width="0.0303%" height="15" fill="rgb(246,42,40)" fg:x="170624" fg:w="195"/><text x="26.7635%" y="623.50"></text></g><g><title>__handle_mm_fault (206 samples, 0.03%)</title><rect x="26.5121%" y="629" width="0.0320%" height="15" fill="rgb(248,111,24)" fg:x="170615" fg:w="206"/><text x="26.7621%" y="639.50"></text></g><g><title>handle_mm_fault (215 samples, 0.03%)</title><rect x="26.5108%" y="645" width="0.0334%" height="15" fill="rgb(249,65,22)" fg:x="170607" fg:w="215"/><text x="26.7608%" y="655.50"></text></g><g><title>do_user_addr_fault (257 samples, 0.04%)</title><rect x="26.5046%" y="661" width="0.0399%" height="15" fill="rgb(238,111,51)" fg:x="170567" fg:w="257"/><text x="26.7546%" y="671.50"></text></g><g><title>exc_page_fault (266 samples, 0.04%)</title><rect x="26.5041%" y="677" width="0.0413%" height="15" fill="rgb(250,118,22)" fg:x="170564" fg:w="266"/><text x="26.7541%" y="687.50"></text></g><g><title>__put_user_nocheck_4 (274 samples, 0.04%)</title><rect x="26.5031%" y="709" width="0.0426%" height="15" fill="rgb(234,84,26)" fg:x="170557" fg:w="274"/><text x="26.7531%" y="719.50"></text></g><g><title>asm_exc_page_fault (268 samples, 0.04%)</title><rect x="26.5040%" y="693" width="0.0416%" height="15" fill="rgb(243,172,12)" fg:x="170563" fg:w="268"/><text x="26.7540%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (2,561 samples, 0.40%)</title><rect x="26.5761%" y="677" width="0.3980%" height="15" fill="rgb(236,150,49)" fg:x="171027" fg:w="2561"/><text x="26.8261%" y="687.50"></text></g><g><title>x86_pmu_enable (2,521 samples, 0.39%)</title><rect x="26.5823%" y="661" width="0.3917%" height="15" fill="rgb(225,197,26)" fg:x="171067" fg:w="2521"/><text x="26.8323%" y="671.50"></text></g><g><title>intel_pmu_enable_all (2,511 samples, 0.39%)</title><rect x="26.5839%" y="645" width="0.3902%" height="15" fill="rgb(214,17,42)" fg:x="171077" fg:w="2511"/><text x="26.8339%" y="655.50"></text></g><g><title>native_write_msr (2,498 samples, 0.39%)</title><rect x="26.5859%" y="629" width="0.3882%" height="15" fill="rgb(224,165,40)" fg:x="171090" fg:w="2498"/><text x="26.8359%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (2,712 samples, 0.42%)</title><rect x="26.5609%" y="693" width="0.4214%" height="15" fill="rgb(246,100,4)" fg:x="170929" fg:w="2712"/><text x="26.8109%" y="703.50"></text></g><g><title>schedule_tail (2,781 samples, 0.43%)</title><rect x="26.5505%" y="709" width="0.4321%" height="15" fill="rgb(222,103,0)" fg:x="170862" fg:w="2781"/><text x="26.8005%" y="719.50"></text></g><g><title>ret_from_fork (3,148 samples, 0.49%)</title><rect x="26.5031%" y="725" width="0.4892%" height="15" fill="rgb(227,189,26)" fg:x="170557" fg:w="3148"/><text x="26.7531%" y="735.50"></text></g><g><title>arch_fork (4,212 samples, 0.65%)</title><rect x="26.3380%" y="741" width="0.6545%" height="15" fill="rgb(214,202,17)" fg:x="169495" fg:w="4212"/><text x="26.5880%" y="751.50"></text></g><g><title>__GI__Fork (4,218 samples, 0.66%)</title><rect x="26.3376%" y="757" width="0.6554%" height="15" fill="rgb(229,111,3)" fg:x="169492" fg:w="4218"/><text x="26.5876%" y="767.50"></text></g><g><title>handle_mm_fault (72 samples, 0.01%)</title><rect x="26.9957%" y="709" width="0.0112%" height="15" fill="rgb(229,172,15)" fg:x="173727" fg:w="72"/><text x="27.2457%" y="719.50"></text></g><g><title>__handle_mm_fault (69 samples, 0.01%)</title><rect x="26.9961%" y="693" width="0.0107%" height="15" fill="rgb(230,224,35)" fg:x="173730" fg:w="69"/><text x="27.2461%" y="703.50"></text></g><g><title>do_user_addr_fault (80 samples, 0.01%)</title><rect x="26.9946%" y="725" width="0.0124%" height="15" fill="rgb(251,141,6)" fg:x="173720" fg:w="80"/><text x="27.2446%" y="735.50"></text></g><g><title>asm_exc_page_fault (84 samples, 0.01%)</title><rect x="26.9944%" y="757" width="0.0131%" height="15" fill="rgb(225,208,6)" fg:x="173719" fg:w="84"/><text x="27.2444%" y="767.50"></text></g><g><title>exc_page_fault (83 samples, 0.01%)</title><rect x="26.9946%" y="741" width="0.0129%" height="15" fill="rgb(246,181,16)" fg:x="173720" fg:w="83"/><text x="27.2446%" y="751.50"></text></g><g><title>__libc_fork (4,406 samples, 0.68%)</title><rect x="26.3354%" y="773" width="0.6847%" height="15" fill="rgb(227,129,36)" fg:x="169478" fg:w="4406"/><text x="26.5854%" y="783.50"></text></g><g><title>[dash] (40,422 samples, 6.28%)</title><rect x="20.7475%" y="789" width="6.2812%" height="15" fill="rgb(248,117,24)" fg:x="133518" fg:w="40422"/><text x="20.9975%" y="799.50">[dash]</text></g><g><title>[dash] (40,485 samples, 6.29%)</title><rect x="20.7432%" y="805" width="6.2910%" height="15" fill="rgb(214,185,35)" fg:x="133490" fg:w="40485"/><text x="20.9932%" y="815.50">[dash]</text></g><g><title>[dash] (40,526 samples, 6.30%)</title><rect x="20.7393%" y="821" width="6.2974%" height="15" fill="rgb(236,150,34)" fg:x="133465" fg:w="40526"/><text x="20.9893%" y="831.50">[dash]</text></g><g><title>[dash] (40,539 samples, 6.30%)</title><rect x="20.7377%" y="837" width="6.2994%" height="15" fill="rgb(243,228,27)" fg:x="133455" fg:w="40539"/><text x="20.9877%" y="847.50">[dash]</text></g><g><title>[dash] (40,553 samples, 6.30%)</title><rect x="20.7371%" y="853" width="6.3016%" height="15" fill="rgb(245,77,44)" fg:x="133451" fg:w="40553"/><text x="20.9871%" y="863.50">[dash]</text></g><g><title>[dash] (40,579 samples, 6.31%)</title><rect x="20.7366%" y="869" width="6.3056%" height="15" fill="rgb(235,214,42)" fg:x="133448" fg:w="40579"/><text x="20.9866%" y="879.50">[dash]</text></g><g><title>taskstats_exit (86 samples, 0.01%)</title><rect x="27.0524%" y="773" width="0.0134%" height="15" fill="rgb(221,74,3)" fg:x="174092" fg:w="86"/><text x="27.3024%" y="783.50"></text></g><g><title>do_exit (130 samples, 0.02%)</title><rect x="27.0457%" y="789" width="0.0202%" height="15" fill="rgb(206,121,29)" fg:x="174049" fg:w="130"/><text x="27.2957%" y="799.50"></text></g><g><title>__GI__exit (136 samples, 0.02%)</title><rect x="27.0451%" y="869" width="0.0211%" height="15" fill="rgb(249,131,53)" fg:x="174045" fg:w="136"/><text x="27.2951%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (133 samples, 0.02%)</title><rect x="27.0455%" y="853" width="0.0207%" height="15" fill="rgb(236,170,29)" fg:x="174048" fg:w="133"/><text x="27.2955%" y="863.50"></text></g><g><title>do_syscall_64 (133 samples, 0.02%)</title><rect x="27.0455%" y="837" width="0.0207%" height="15" fill="rgb(247,96,15)" fg:x="174048" fg:w="133"/><text x="27.2955%" y="847.50"></text></g><g><title>__x64_sys_exit_group (133 samples, 0.02%)</title><rect x="27.0455%" y="821" width="0.0207%" height="15" fill="rgb(211,210,7)" fg:x="174048" fg:w="133"/><text x="27.2955%" y="831.50"></text></g><g><title>do_group_exit (133 samples, 0.02%)</title><rect x="27.0455%" y="805" width="0.0207%" height="15" fill="rgb(240,88,50)" fg:x="174048" fg:w="133"/><text x="27.2955%" y="815.50"></text></g><g><title>[dash] (40,743 samples, 6.33%)</title><rect x="20.7357%" y="885" width="6.3311%" height="15" fill="rgb(209,229,26)" fg:x="133442" fg:w="40743"/><text x="20.9857%" y="895.50">[dash]</text></g><g><title>[dash] (40,792 samples, 6.34%)</title><rect x="20.7320%" y="949" width="6.3387%" height="15" fill="rgb(210,68,23)" fg:x="133418" fg:w="40792"/><text x="20.9820%" y="959.50">[dash]</text></g><g><title>__libc_start_main_impl (40,772 samples, 6.34%)</title><rect x="20.7351%" y="933" width="6.3356%" height="15" fill="rgb(229,180,13)" fg:x="133438" fg:w="40772"/><text x="20.9851%" y="943.50">__libc_s..</text></g><g><title>__libc_start_call_main (40,771 samples, 6.34%)</title><rect x="20.7352%" y="917" width="6.3355%" height="15" fill="rgb(236,53,44)" fg:x="133439" fg:w="40771"/><text x="20.9852%" y="927.50">__libc_s..</text></g><g><title>[dash] (40,771 samples, 6.34%)</title><rect x="20.7352%" y="901" width="6.3355%" height="15" fill="rgb(244,214,29)" fg:x="133439" fg:w="40771"/><text x="20.9852%" y="911.50">[dash]</text></g><g><title>_dl_map_object_deps (71 samples, 0.01%)</title><rect x="27.0889%" y="869" width="0.0110%" height="15" fill="rgb(220,75,29)" fg:x="174327" fg:w="71"/><text x="27.3389%" y="879.50"></text></g><g><title>_dl_catch_exception (70 samples, 0.01%)</title><rect x="27.0890%" y="853" width="0.0109%" height="15" fill="rgb(214,183,37)" fg:x="174328" fg:w="70"/><text x="27.3390%" y="863.50"></text></g><g><title>openaux (69 samples, 0.01%)</title><rect x="27.0892%" y="837" width="0.0107%" height="15" fill="rgb(239,117,29)" fg:x="174329" fg:w="69"/><text x="27.3392%" y="847.50"></text></g><g><title>_dl_map_object (69 samples, 0.01%)</title><rect x="27.0892%" y="821" width="0.0107%" height="15" fill="rgb(237,171,35)" fg:x="174329" fg:w="69"/><text x="27.3392%" y="831.50"></text></g><g><title>dl_main (188 samples, 0.03%)</title><rect x="27.0847%" y="885" width="0.0292%" height="15" fill="rgb(229,178,53)" fg:x="174300" fg:w="188"/><text x="27.3347%" y="895.50"></text></g><g><title>_dl_start_final (196 samples, 0.03%)</title><rect x="27.0842%" y="917" width="0.0305%" height="15" fill="rgb(210,102,19)" fg:x="174297" fg:w="196"/><text x="27.3342%" y="927.50"></text></g><g><title>_dl_sysdep_start (195 samples, 0.03%)</title><rect x="27.0844%" y="901" width="0.0303%" height="15" fill="rgb(235,127,22)" fg:x="174298" fg:w="195"/><text x="27.3344%" y="911.50"></text></g><g><title>_dl_start (201 samples, 0.03%)</title><rect x="27.0842%" y="933" width="0.0312%" height="15" fill="rgb(244,31,31)" fg:x="174297" fg:w="201"/><text x="27.3342%" y="943.50"></text></g><g><title>_start (219 samples, 0.03%)</title><rect x="27.0841%" y="949" width="0.0340%" height="15" fill="rgb(231,43,21)" fg:x="174296" fg:w="219"/><text x="27.3341%" y="959.50"></text></g><g><title>asm_exc_page_fault (365 samples, 0.06%)</title><rect x="27.1181%" y="949" width="0.0567%" height="15" fill="rgb(217,131,35)" fg:x="174515" fg:w="365"/><text x="27.3681%" y="959.50"></text></g><g><title>unlink_anon_vmas (122 samples, 0.02%)</title><rect x="27.1846%" y="725" width="0.0190%" height="15" fill="rgb(221,149,4)" fg:x="174943" fg:w="122"/><text x="27.4346%" y="735.50"></text></g><g><title>free_pgtables (179 samples, 0.03%)</title><rect x="27.1815%" y="741" width="0.0278%" height="15" fill="rgb(232,170,28)" fg:x="174923" fg:w="179"/><text x="27.4315%" y="751.50"></text></g><g><title>free_pages_and_swap_cache (73 samples, 0.01%)</title><rect x="27.2211%" y="725" width="0.0113%" height="15" fill="rgb(238,56,10)" fg:x="175178" fg:w="73"/><text x="27.4711%" y="735.50"></text></g><g><title>release_pages (69 samples, 0.01%)</title><rect x="27.2217%" y="709" width="0.0107%" height="15" fill="rgb(235,196,14)" fg:x="175182" fg:w="69"/><text x="27.4717%" y="719.50"></text></g><g><title>tlb_finish_mmu (85 samples, 0.01%)</title><rect x="27.2203%" y="741" width="0.0132%" height="15" fill="rgb(216,45,48)" fg:x="175173" fg:w="85"/><text x="27.4703%" y="751.50"></text></g><g><title>unmap_single_vma (232 samples, 0.04%)</title><rect x="27.2354%" y="725" width="0.0361%" height="15" fill="rgb(238,213,17)" fg:x="175270" fg:w="232"/><text x="27.4854%" y="735.50"></text></g><g><title>unmap_page_range (225 samples, 0.03%)</title><rect x="27.2365%" y="709" width="0.0350%" height="15" fill="rgb(212,13,2)" fg:x="175277" fg:w="225"/><text x="27.4865%" y="719.50"></text></g><g><title>zap_pmd_range.isra.0 (214 samples, 0.03%)</title><rect x="27.2382%" y="693" width="0.0333%" height="15" fill="rgb(240,114,20)" fg:x="175288" fg:w="214"/><text x="27.4882%" y="703.50"></text></g><g><title>zap_pte_range (189 samples, 0.03%)</title><rect x="27.2421%" y="677" width="0.0294%" height="15" fill="rgb(228,41,40)" fg:x="175313" fg:w="189"/><text x="27.4921%" y="687.50"></text></g><g><title>mmput (598 samples, 0.09%)</title><rect x="27.1789%" y="773" width="0.0929%" height="15" fill="rgb(244,132,35)" fg:x="174906" fg:w="598"/><text x="27.4289%" y="783.50"></text></g><g><title>exit_mmap (585 samples, 0.09%)</title><rect x="27.1809%" y="757" width="0.0909%" height="15" fill="rgb(253,189,4)" fg:x="174919" fg:w="585"/><text x="27.4309%" y="767.50"></text></g><g><title>unmap_vmas (244 samples, 0.04%)</title><rect x="27.2339%" y="741" width="0.0379%" height="15" fill="rgb(224,37,19)" fg:x="175260" fg:w="244"/><text x="27.4839%" y="751.50"></text></g><g><title>exec_mmap (606 samples, 0.09%)</title><rect x="27.1784%" y="789" width="0.0942%" height="15" fill="rgb(235,223,18)" fg:x="174903" fg:w="606"/><text x="27.4284%" y="799.50"></text></g><g><title>begin_new_exec (650 samples, 0.10%)</title><rect x="27.1759%" y="805" width="0.1010%" height="15" fill="rgb(235,163,25)" fg:x="174887" fg:w="650"/><text x="27.4259%" y="815.50"></text></g><g><title>load_elf_binary (706 samples, 0.11%)</title><rect x="27.1756%" y="821" width="0.1097%" height="15" fill="rgb(217,145,28)" fg:x="174885" fg:w="706"/><text x="27.4256%" y="831.50"></text></g><g><title>__x64_sys_execve (709 samples, 0.11%)</title><rect x="27.1754%" y="917" width="0.1102%" height="15" fill="rgb(223,223,32)" fg:x="174884" fg:w="709"/><text x="27.4254%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (709 samples, 0.11%)</title><rect x="27.1754%" y="901" width="0.1102%" height="15" fill="rgb(227,189,39)" fg:x="174884" fg:w="709"/><text x="27.4254%" y="911.50"></text></g><g><title>bprm_execve (709 samples, 0.11%)</title><rect x="27.1754%" y="885" width="0.1102%" height="15" fill="rgb(248,10,22)" fg:x="174884" fg:w="709"/><text x="27.4254%" y="895.50"></text></g><g><title>bprm_execve.part.0 (709 samples, 0.11%)</title><rect x="27.1754%" y="869" width="0.1102%" height="15" fill="rgb(248,46,39)" fg:x="174884" fg:w="709"/><text x="27.4254%" y="879.50"></text></g><g><title>exec_binprm (708 samples, 0.11%)</title><rect x="27.1756%" y="853" width="0.1100%" height="15" fill="rgb(248,113,48)" fg:x="174885" fg:w="708"/><text x="27.4256%" y="863.50"></text></g><g><title>search_binary_handler (708 samples, 0.11%)</title><rect x="27.1756%" y="837" width="0.1100%" height="15" fill="rgb(245,16,25)" fg:x="174885" fg:w="708"/><text x="27.4256%" y="847.50"></text></g><g><title>acct_process (65 samples, 0.01%)</title><rect x="27.2867%" y="869" width="0.0101%" height="15" fill="rgb(249,152,16)" fg:x="175600" fg:w="65"/><text x="27.5367%" y="879.50"></text></g><g><title>kmem_cache_free (103 samples, 0.02%)</title><rect x="27.3391%" y="789" width="0.0160%" height="15" fill="rgb(250,16,1)" fg:x="175937" fg:w="103"/><text x="27.5891%" y="799.50"></text></g><g><title>unlink_anon_vmas (246 samples, 0.04%)</title><rect x="27.3172%" y="805" width="0.0382%" height="15" fill="rgb(249,138,3)" fg:x="175796" fg:w="246"/><text x="27.5672%" y="815.50"></text></g><g><title>unlink_file_vma (65 samples, 0.01%)</title><rect x="27.3554%" y="805" width="0.0101%" height="15" fill="rgb(227,71,41)" fg:x="176042" fg:w="65"/><text x="27.6054%" y="815.50"></text></g><g><title>free_pgtables (358 samples, 0.06%)</title><rect x="27.3113%" y="821" width="0.0556%" height="15" fill="rgb(209,184,23)" fg:x="175758" fg:w="358"/><text x="27.5613%" y="831.50"></text></g><g><title>vm_area_free (97 samples, 0.02%)</title><rect x="27.3745%" y="805" width="0.0151%" height="15" fill="rgb(223,215,31)" fg:x="176165" fg:w="97"/><text x="27.6245%" y="815.50"></text></g><g><title>kmem_cache_free (96 samples, 0.01%)</title><rect x="27.3746%" y="789" width="0.0149%" height="15" fill="rgb(210,146,28)" fg:x="176166" fg:w="96"/><text x="27.6246%" y="799.50"></text></g><g><title>remove_vma (115 samples, 0.02%)</title><rect x="27.3728%" y="821" width="0.0179%" height="15" fill="rgb(209,183,41)" fg:x="176154" fg:w="115"/><text x="27.6228%" y="831.50"></text></g><g><title>free_pages_and_swap_cache (156 samples, 0.02%)</title><rect x="27.3938%" y="805" width="0.0242%" height="15" fill="rgb(209,224,45)" fg:x="176289" fg:w="156"/><text x="27.6438%" y="815.50"></text></g><g><title>release_pages (153 samples, 0.02%)</title><rect x="27.3942%" y="789" width="0.0238%" height="15" fill="rgb(224,209,51)" fg:x="176292" fg:w="153"/><text x="27.6442%" y="799.50"></text></g><g><title>tlb_finish_mmu (207 samples, 0.03%)</title><rect x="27.3910%" y="821" width="0.0322%" height="15" fill="rgb(223,17,39)" fg:x="176271" fg:w="207"/><text x="27.6410%" y="831.50"></text></g><g><title>page_remove_rmap (104 samples, 0.02%)</title><rect x="27.4819%" y="741" width="0.0162%" height="15" fill="rgb(234,204,37)" fg:x="176856" fg:w="104"/><text x="27.7319%" y="751.50"></text></g><g><title>zap_pmd_range.isra.0 (437 samples, 0.07%)</title><rect x="27.4321%" y="773" width="0.0679%" height="15" fill="rgb(236,120,5)" fg:x="176536" fg:w="437"/><text x="27.6821%" y="783.50"></text></g><g><title>zap_pte_range (397 samples, 0.06%)</title><rect x="27.4384%" y="757" width="0.0617%" height="15" fill="rgb(248,97,27)" fg:x="176576" fg:w="397"/><text x="27.6884%" y="767.50"></text></g><g><title>unmap_page_range (467 samples, 0.07%)</title><rect x="27.4276%" y="789" width="0.0726%" height="15" fill="rgb(240,66,17)" fg:x="176507" fg:w="467"/><text x="27.6776%" y="799.50"></text></g><g><title>unmap_single_vma (484 samples, 0.08%)</title><rect x="27.4253%" y="805" width="0.0752%" height="15" fill="rgb(210,79,3)" fg:x="176492" fg:w="484"/><text x="27.6753%" y="815.50"></text></g><g><title>unmap_vmas (497 samples, 0.08%)</title><rect x="27.4236%" y="821" width="0.0772%" height="15" fill="rgb(214,176,27)" fg:x="176481" fg:w="497"/><text x="27.6736%" y="831.50"></text></g><g><title>exit_mmap (1,245 samples, 0.19%)</title><rect x="27.3080%" y="837" width="0.1935%" height="15" fill="rgb(235,185,3)" fg:x="175737" fg:w="1245"/><text x="27.5580%" y="847.50"></text></g><g><title>exit_mm (1,256 samples, 0.20%)</title><rect x="27.3072%" y="869" width="0.1952%" height="15" fill="rgb(227,24,12)" fg:x="175732" fg:w="1256"/><text x="27.5572%" y="879.50"></text></g><g><title>mmput (1,255 samples, 0.20%)</title><rect x="27.3074%" y="853" width="0.1950%" height="15" fill="rgb(252,169,48)" fg:x="175733" fg:w="1255"/><text x="27.5574%" y="863.50"></text></g><g><title>__fput (134 samples, 0.02%)</title><rect x="27.5055%" y="837" width="0.0208%" height="15" fill="rgb(212,65,1)" fg:x="177008" fg:w="134"/><text x="27.7555%" y="847.50"></text></g><g><title>____fput (136 samples, 0.02%)</title><rect x="27.5055%" y="853" width="0.0211%" height="15" fill="rgb(242,39,24)" fg:x="177008" fg:w="136"/><text x="27.7555%" y="863.50"></text></g><g><title>do_exit (1,552 samples, 0.24%)</title><rect x="27.2856%" y="885" width="0.2412%" height="15" fill="rgb(249,32,23)" fg:x="175593" fg:w="1552"/><text x="27.5356%" y="895.50"></text></g><g><title>task_work_run (139 samples, 0.02%)</title><rect x="27.5052%" y="869" width="0.0216%" height="15" fill="rgb(251,195,23)" fg:x="177006" fg:w="139"/><text x="27.7552%" y="879.50"></text></g><g><title>__x64_sys_exit_group (1,554 samples, 0.24%)</title><rect x="27.2856%" y="917" width="0.2415%" height="15" fill="rgb(236,174,8)" fg:x="175593" fg:w="1554"/><text x="27.5356%" y="927.50"></text></g><g><title>do_group_exit (1,554 samples, 0.24%)</title><rect x="27.2856%" y="901" width="0.2415%" height="15" fill="rgb(220,197,8)" fg:x="175593" fg:w="1554"/><text x="27.5356%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,274 samples, 0.35%)</title><rect x="27.1750%" y="949" width="0.3534%" height="15" fill="rgb(240,108,37)" fg:x="174881" fg:w="2274"/><text x="27.4250%" y="959.50"></text></g><g><title>do_syscall_64 (2,271 samples, 0.35%)</title><rect x="27.1754%" y="933" width="0.3529%" height="15" fill="rgb(232,176,24)" fg:x="174884" fg:w="2271"/><text x="27.4254%" y="943.50"></text></g><g><title>c++ (43,781 samples, 6.80%)</title><rect x="20.7267%" y="965" width="6.8032%" height="15" fill="rgb(243,35,29)" fg:x="133384" fg:w="43781"/><text x="20.9767%" y="975.50">c++</text></g><g><title>[perf-733733.map] (236 samples, 0.04%)</title><rect x="27.5356%" y="949" width="0.0367%" height="15" fill="rgb(210,37,18)" fg:x="177202" fg:w="236"/><text x="27.7856%" y="959.50"></text></g><g><title>find-action-loo (268 samples, 0.04%)</title><rect x="27.5352%" y="965" width="0.0416%" height="15" fill="rgb(224,184,40)" fg:x="177199" fg:w="268"/><text x="27.7852%" y="975.50"></text></g><g><title>[perf-733733.map] (65 samples, 0.01%)</title><rect x="27.5776%" y="949" width="0.0101%" height="15" fill="rgb(236,39,29)" fg:x="177472" fg:w="65"/><text x="27.8276%" y="959.50"></text></g><g><title>globbing_pool-0 (97 samples, 0.02%)</title><rect x="27.5768%" y="965" width="0.0151%" height="15" fill="rgb(232,48,39)" fg:x="177467" fg:w="97"/><text x="27.8268%" y="975.50"></text></g><g><title>___pthread_cond_wait (67 samples, 0.01%)</title><rect x="27.6443%" y="901" width="0.0104%" height="15" fill="rgb(236,34,42)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (67 samples, 0.01%)</title><rect x="27.6443%" y="885" width="0.0104%" height="15" fill="rgb(243,106,37)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (67 samples, 0.01%)</title><rect x="27.6443%" y="869" width="0.0104%" height="15" fill="rgb(218,96,6)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (67 samples, 0.01%)</title><rect x="27.6443%" y="853" width="0.0104%" height="15" fill="rgb(235,130,12)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (67 samples, 0.01%)</title><rect x="27.6443%" y="837" width="0.0104%" height="15" fill="rgb(231,95,0)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.01%)</title><rect x="27.6443%" y="821" width="0.0104%" height="15" fill="rgb(228,12,23)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="831.50"></text></g><g><title>do_syscall_64 (67 samples, 0.01%)</title><rect x="27.6443%" y="805" width="0.0104%" height="15" fill="rgb(216,12,1)" fg:x="177901" fg:w="67"/><text x="27.8943%" y="815.50"></text></g><g><title>Parker::park (70 samples, 0.01%)</title><rect x="27.6439%" y="917" width="0.0109%" height="15" fill="rgb(219,59,3)" fg:x="177899" fg:w="70"/><text x="27.8939%" y="927.50"></text></g><g><title>Unsafe_Park (71 samples, 0.01%)</title><rect x="27.6439%" y="933" width="0.0110%" height="15" fill="rgb(215,208,46)" fg:x="177899" fg:w="71"/><text x="27.8939%" y="943.50"></text></g><g><title>[perf-733733.map] (368 samples, 0.06%)</title><rect x="27.5990%" y="949" width="0.0572%" height="15" fill="rgb(254,224,29)" fg:x="177610" fg:w="368"/><text x="27.8490%" y="959.50"></text></g><g><title>globbing_pool-1 (471 samples, 0.07%)</title><rect x="27.5919%" y="965" width="0.0732%" height="15" fill="rgb(232,14,29)" fg:x="177564" fg:w="471"/><text x="27.8419%" y="975.50"></text></g><g><title>Unsafe_Park (67 samples, 0.01%)</title><rect x="27.7033%" y="933" width="0.0104%" height="15" fill="rgb(208,45,52)" fg:x="178281" fg:w="67"/><text x="27.9533%" y="943.50"></text></g><g><title>Parker::park (67 samples, 0.01%)</title><rect x="27.7033%" y="917" width="0.0104%" height="15" fill="rgb(234,191,28)" fg:x="178281" fg:w="67"/><text x="27.9533%" y="927.50"></text></g><g><title>[perf-733733.map] (275 samples, 0.04%)</title><rect x="27.6716%" y="949" width="0.0427%" height="15" fill="rgb(244,67,43)" fg:x="178077" fg:w="275"/><text x="27.9216%" y="959.50"></text></g><g><title>globbing_pool-2 (392 samples, 0.06%)</title><rect x="27.6651%" y="965" width="0.0609%" height="15" fill="rgb(236,189,24)" fg:x="178035" fg:w="392"/><text x="27.9151%" y="975.50"></text></g><g><title>[libunix_jni.so] (77 samples, 0.01%)</title><rect x="27.7271%" y="949" width="0.0120%" height="15" fill="rgb(239,214,33)" fg:x="178434" fg:w="77"/><text x="27.9771%" y="959.50"></text></g><g><title>__x64_sys_futex (67 samples, 0.01%)</title><rect x="27.7829%" y="789" width="0.0104%" height="15" fill="rgb(226,176,41)" fg:x="178793" fg:w="67"/><text x="28.0329%" y="799.50"></text></g><g><title>do_futex (65 samples, 0.01%)</title><rect x="27.7832%" y="773" width="0.0101%" height="15" fill="rgb(248,47,8)" fg:x="178795" fg:w="65"/><text x="28.0332%" y="783.50"></text></g><g><title>futex_wait (65 samples, 0.01%)</title><rect x="27.7832%" y="757" width="0.0101%" height="15" fill="rgb(218,81,44)" fg:x="178795" fg:w="65"/><text x="28.0332%" y="767.50"></text></g><g><title>futex_wait_queue_me (65 samples, 0.01%)</title><rect x="27.7832%" y="741" width="0.0101%" height="15" fill="rgb(213,98,6)" fg:x="178795" fg:w="65"/><text x="28.0332%" y="751.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="27.7832%" y="725" width="0.0101%" height="15" fill="rgb(222,85,22)" fg:x="178795" fg:w="65"/><text x="28.0332%" y="735.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="27.7832%" y="709" width="0.0101%" height="15" fill="rgb(239,46,39)" fg:x="178795" fg:w="65"/><text x="28.0332%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="27.7829%" y="821" width="0.0107%" height="15" fill="rgb(237,12,29)" fg:x="178793" fg:w="69"/><text x="28.0329%" y="831.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="27.7829%" y="805" width="0.0107%" height="15" fill="rgb(214,77,8)" fg:x="178793" fg:w="69"/><text x="28.0329%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (71 samples, 0.01%)</title><rect x="27.7827%" y="869" width="0.0110%" height="15" fill="rgb(217,168,37)" fg:x="178792" fg:w="71"/><text x="28.0327%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (71 samples, 0.01%)</title><rect x="27.7827%" y="853" width="0.0110%" height="15" fill="rgb(221,217,23)" fg:x="178792" fg:w="71"/><text x="28.0327%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (71 samples, 0.01%)</title><rect x="27.7827%" y="837" width="0.0110%" height="15" fill="rgb(243,229,36)" fg:x="178792" fg:w="71"/><text x="28.0327%" y="847.50"></text></g><g><title>___pthread_cond_wait (72 samples, 0.01%)</title><rect x="27.7827%" y="901" width="0.0112%" height="15" fill="rgb(251,163,40)" fg:x="178792" fg:w="72"/><text x="28.0327%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (72 samples, 0.01%)</title><rect x="27.7827%" y="885" width="0.0112%" height="15" fill="rgb(237,222,12)" fg:x="178792" fg:w="72"/><text x="28.0327%" y="895.50"></text></g><g><title>Parker::park (73 samples, 0.01%)</title><rect x="27.7827%" y="917" width="0.0113%" height="15" fill="rgb(248,132,6)" fg:x="178792" fg:w="73"/><text x="28.0327%" y="927.50"></text></g><g><title>Unsafe_Park (74 samples, 0.01%)</title><rect x="27.7827%" y="933" width="0.0115%" height="15" fill="rgb(227,167,50)" fg:x="178792" fg:w="74"/><text x="28.0327%" y="943.50"></text></g><g><title>[perf-733733.map] (366 samples, 0.06%)</title><rect x="27.7390%" y="949" width="0.0569%" height="15" fill="rgb(242,84,37)" fg:x="178511" fg:w="366"/><text x="27.9890%" y="959.50"></text></g><g><title>globbing_pool-3 (496 samples, 0.08%)</title><rect x="27.7260%" y="965" width="0.0771%" height="15" fill="rgb(212,4,50)" fg:x="178427" fg:w="496"/><text x="27.9760%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="27.8351%" y="677" width="0.0101%" height="15" fill="rgb(230,228,32)" fg:x="179129" fg:w="65"/><text x="28.0851%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (68 samples, 0.01%)</title><rect x="27.8351%" y="693" width="0.0106%" height="15" fill="rgb(248,217,23)" fg:x="179129" fg:w="68"/><text x="28.0851%" y="703.50"></text></g><g><title>futex_wait_queue_me (72 samples, 0.01%)</title><rect x="27.8348%" y="741" width="0.0112%" height="15" fill="rgb(238,197,32)" fg:x="179127" fg:w="72"/><text x="28.0848%" y="751.50"></text></g><g><title>schedule (72 samples, 0.01%)</title><rect x="27.8348%" y="725" width="0.0112%" height="15" fill="rgb(236,106,1)" fg:x="179127" fg:w="72"/><text x="28.0848%" y="735.50"></text></g><g><title>__schedule (72 samples, 0.01%)</title><rect x="27.8348%" y="709" width="0.0112%" height="15" fill="rgb(219,228,13)" fg:x="179127" fg:w="72"/><text x="28.0848%" y="719.50"></text></g><g><title>__x64_sys_futex (73 samples, 0.01%)</title><rect x="27.8348%" y="789" width="0.0113%" height="15" fill="rgb(238,30,35)" fg:x="179127" fg:w="73"/><text x="28.0848%" y="799.50"></text></g><g><title>do_futex (73 samples, 0.01%)</title><rect x="27.8348%" y="773" width="0.0113%" height="15" fill="rgb(236,70,23)" fg:x="179127" fg:w="73"/><text x="28.0848%" y="783.50"></text></g><g><title>futex_wait (73 samples, 0.01%)</title><rect x="27.8348%" y="757" width="0.0113%" height="15" fill="rgb(249,104,48)" fg:x="179127" fg:w="73"/><text x="28.0848%" y="767.50"></text></g><g><title>___pthread_cond_wait (76 samples, 0.01%)</title><rect x="27.8346%" y="901" width="0.0118%" height="15" fill="rgb(254,117,50)" fg:x="179126" fg:w="76"/><text x="28.0846%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (76 samples, 0.01%)</title><rect x="27.8346%" y="885" width="0.0118%" height="15" fill="rgb(223,152,4)" fg:x="179126" fg:w="76"/><text x="28.0846%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (76 samples, 0.01%)</title><rect x="27.8346%" y="869" width="0.0118%" height="15" fill="rgb(245,6,2)" fg:x="179126" fg:w="76"/><text x="28.0846%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (76 samples, 0.01%)</title><rect x="27.8346%" y="853" width="0.0118%" height="15" fill="rgb(249,150,24)" fg:x="179126" fg:w="76"/><text x="28.0846%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (75 samples, 0.01%)</title><rect x="27.8348%" y="837" width="0.0117%" height="15" fill="rgb(228,185,42)" fg:x="179127" fg:w="75"/><text x="28.0848%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (75 samples, 0.01%)</title><rect x="27.8348%" y="821" width="0.0117%" height="15" fill="rgb(226,39,33)" fg:x="179127" fg:w="75"/><text x="28.0848%" y="831.50"></text></g><g><title>do_syscall_64 (75 samples, 0.01%)</title><rect x="27.8348%" y="805" width="0.0117%" height="15" fill="rgb(221,166,19)" fg:x="179127" fg:w="75"/><text x="28.0848%" y="815.50"></text></g><g><title>Unsafe_Park (79 samples, 0.01%)</title><rect x="27.8343%" y="933" width="0.0123%" height="15" fill="rgb(209,109,2)" fg:x="179124" fg:w="79"/><text x="28.0843%" y="943.50"></text></g><g><title>Parker::park (79 samples, 0.01%)</title><rect x="27.8343%" y="917" width="0.0123%" height="15" fill="rgb(252,216,26)" fg:x="179124" fg:w="79"/><text x="28.0843%" y="927.50"></text></g><g><title>[perf-733733.map] (238 samples, 0.04%)</title><rect x="27.8105%" y="949" width="0.0370%" height="15" fill="rgb(227,173,36)" fg:x="178971" fg:w="238"/><text x="28.0605%" y="959.50"></text></g><g><title>globbing_pool-4 (306 samples, 0.05%)</title><rect x="27.8031%" y="965" width="0.0475%" height="15" fill="rgb(209,90,7)" fg:x="178923" fg:w="306"/><text x="28.0531%" y="975.50"></text></g><g><title>[perf-733733.map] (198 samples, 0.03%)</title><rect x="27.8578%" y="949" width="0.0308%" height="15" fill="rgb(250,194,11)" fg:x="179275" fg:w="198"/><text x="28.1078%" y="959.50"></text></g><g><title>globbing_pool-5 (247 samples, 0.04%)</title><rect x="27.8506%" y="965" width="0.0384%" height="15" fill="rgb(220,72,50)" fg:x="179229" fg:w="247"/><text x="28.1006%" y="975.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="27.9213%" y="709" width="0.0106%" height="15" fill="rgb(222,106,48)" fg:x="179684" fg:w="68"/><text x="28.1713%" y="719.50"></text></g><g><title>__x64_sys_futex (71 samples, 0.01%)</title><rect x="27.9210%" y="789" width="0.0110%" height="15" fill="rgb(216,220,45)" fg:x="179682" fg:w="71"/><text x="28.1710%" y="799.50"></text></g><g><title>do_futex (71 samples, 0.01%)</title><rect x="27.9210%" y="773" width="0.0110%" height="15" fill="rgb(234,112,18)" fg:x="179682" fg:w="71"/><text x="28.1710%" y="783.50"></text></g><g><title>futex_wait (70 samples, 0.01%)</title><rect x="27.9212%" y="757" width="0.0109%" height="15" fill="rgb(206,179,9)" fg:x="179683" fg:w="70"/><text x="28.1712%" y="767.50"></text></g><g><title>futex_wait_queue_me (70 samples, 0.01%)</title><rect x="27.9212%" y="741" width="0.0109%" height="15" fill="rgb(215,115,40)" fg:x="179683" fg:w="70"/><text x="28.1712%" y="751.50"></text></g><g><title>schedule (69 samples, 0.01%)</title><rect x="27.9213%" y="725" width="0.0107%" height="15" fill="rgb(222,69,34)" fg:x="179684" fg:w="69"/><text x="28.1713%" y="735.50"></text></g><g><title>Parker::park (74 samples, 0.01%)</title><rect x="27.9207%" y="917" width="0.0115%" height="15" fill="rgb(209,161,10)" fg:x="179680" fg:w="74"/><text x="28.1707%" y="927.50"></text></g><g><title>___pthread_cond_wait (73 samples, 0.01%)</title><rect x="27.9208%" y="901" width="0.0113%" height="15" fill="rgb(217,6,38)" fg:x="179681" fg:w="73"/><text x="28.1708%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (73 samples, 0.01%)</title><rect x="27.9208%" y="885" width="0.0113%" height="15" fill="rgb(229,229,48)" fg:x="179681" fg:w="73"/><text x="28.1708%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (73 samples, 0.01%)</title><rect x="27.9208%" y="869" width="0.0113%" height="15" fill="rgb(225,21,28)" fg:x="179681" fg:w="73"/><text x="28.1708%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (73 samples, 0.01%)</title><rect x="27.9208%" y="853" width="0.0113%" height="15" fill="rgb(206,33,13)" fg:x="179681" fg:w="73"/><text x="28.1708%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (73 samples, 0.01%)</title><rect x="27.9208%" y="837" width="0.0113%" height="15" fill="rgb(242,178,17)" fg:x="179681" fg:w="73"/><text x="28.1708%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (72 samples, 0.01%)</title><rect x="27.9210%" y="821" width="0.0112%" height="15" fill="rgb(220,162,5)" fg:x="179682" fg:w="72"/><text x="28.1710%" y="831.50"></text></g><g><title>do_syscall_64 (72 samples, 0.01%)</title><rect x="27.9210%" y="805" width="0.0112%" height="15" fill="rgb(210,33,43)" fg:x="179682" fg:w="72"/><text x="28.1710%" y="815.50"></text></g><g><title>Unsafe_Park (75 samples, 0.01%)</title><rect x="27.9207%" y="933" width="0.0117%" height="15" fill="rgb(216,116,54)" fg:x="179680" fg:w="75"/><text x="28.1707%" y="943.50"></text></g><g><title>[perf-733733.map] (238 samples, 0.04%)</title><rect x="27.8960%" y="949" width="0.0370%" height="15" fill="rgb(249,92,24)" fg:x="179521" fg:w="238"/><text x="28.1460%" y="959.50"></text></g><g><title>free_unref_page_list (102 samples, 0.02%)</title><rect x="27.9574%" y="629" width="0.0158%" height="15" fill="rgb(231,189,14)" fg:x="179916" fg:w="102"/><text x="28.2074%" y="639.50"></text></g><g><title>free_unref_page_commit.constprop.0 (84 samples, 0.01%)</title><rect x="27.9602%" y="613" width="0.0131%" height="15" fill="rgb(230,8,41)" fg:x="179934" fg:w="84"/><text x="28.2102%" y="623.50"></text></g><g><title>free_pcppages_bulk (74 samples, 0.01%)</title><rect x="27.9617%" y="597" width="0.0115%" height="15" fill="rgb(249,7,27)" fg:x="179944" fg:w="74"/><text x="28.2117%" y="607.50"></text></g><g><title>free_pages_and_swap_cache (151 samples, 0.02%)</title><rect x="27.9499%" y="661" width="0.0235%" height="15" fill="rgb(232,86,5)" fg:x="179868" fg:w="151"/><text x="28.1999%" y="671.50"></text></g><g><title>release_pages (148 samples, 0.02%)</title><rect x="27.9504%" y="645" width="0.0230%" height="15" fill="rgb(224,175,18)" fg:x="179871" fg:w="148"/><text x="28.2004%" y="655.50"></text></g><g><title>tlb_flush_mmu (164 samples, 0.03%)</title><rect x="27.9499%" y="677" width="0.0255%" height="15" fill="rgb(220,129,12)" fg:x="179868" fg:w="164"/><text x="28.1999%" y="687.50"></text></g><g><title>globbing_pool-6 (560 samples, 0.09%)</title><rect x="27.8890%" y="965" width="0.0870%" height="15" fill="rgb(210,19,36)" fg:x="179476" fg:w="560"/><text x="28.1390%" y="975.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (272 samples, 0.04%)</title><rect x="27.9337%" y="949" width="0.0423%" height="15" fill="rgb(219,96,14)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="959.50"></text></g><g><title>do_syscall_64 (272 samples, 0.04%)</title><rect x="27.9337%" y="933" width="0.0423%" height="15" fill="rgb(249,106,1)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="943.50"></text></g><g><title>syscall_exit_to_user_mode (272 samples, 0.04%)</title><rect x="27.9337%" y="917" width="0.0423%" height="15" fill="rgb(249,155,20)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="927.50"></text></g><g><title>exit_to_user_mode_prepare (272 samples, 0.04%)</title><rect x="27.9337%" y="901" width="0.0423%" height="15" fill="rgb(244,168,9)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (272 samples, 0.04%)</title><rect x="27.9337%" y="885" width="0.0423%" height="15" fill="rgb(216,23,50)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="895.50"></text></g><g><title>arch_do_signal_or_restart (272 samples, 0.04%)</title><rect x="27.9337%" y="869" width="0.0423%" height="15" fill="rgb(224,219,20)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="879.50"></text></g><g><title>get_signal (272 samples, 0.04%)</title><rect x="27.9337%" y="853" width="0.0423%" height="15" fill="rgb(222,156,15)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="863.50"></text></g><g><title>do_group_exit (272 samples, 0.04%)</title><rect x="27.9337%" y="837" width="0.0423%" height="15" fill="rgb(231,97,17)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="847.50"></text></g><g><title>do_exit (272 samples, 0.04%)</title><rect x="27.9337%" y="821" width="0.0423%" height="15" fill="rgb(218,70,48)" fg:x="179764" fg:w="272"/><text x="28.1837%" y="831.50"></text></g><g><title>exit_mm (271 samples, 0.04%)</title><rect x="27.9339%" y="805" width="0.0421%" height="15" fill="rgb(212,196,52)" fg:x="179765" fg:w="271"/><text x="28.1839%" y="815.50"></text></g><g><title>mmput (271 samples, 0.04%)</title><rect x="27.9339%" y="789" width="0.0421%" height="15" fill="rgb(243,203,18)" fg:x="179765" fg:w="271"/><text x="28.1839%" y="799.50"></text></g><g><title>exit_mmap (271 samples, 0.04%)</title><rect x="27.9339%" y="773" width="0.0421%" height="15" fill="rgb(252,125,41)" fg:x="179765" fg:w="271"/><text x="28.1839%" y="783.50"></text></g><g><title>unmap_vmas (270 samples, 0.04%)</title><rect x="27.9341%" y="757" width="0.0420%" height="15" fill="rgb(223,180,33)" fg:x="179766" fg:w="270"/><text x="28.1841%" y="767.50"></text></g><g><title>unmap_single_vma (270 samples, 0.04%)</title><rect x="27.9341%" y="741" width="0.0420%" height="15" fill="rgb(254,159,46)" fg:x="179766" fg:w="270"/><text x="28.1841%" y="751.50"></text></g><g><title>unmap_page_range (270 samples, 0.04%)</title><rect x="27.9341%" y="725" width="0.0420%" height="15" fill="rgb(254,38,10)" fg:x="179766" fg:w="270"/><text x="28.1841%" y="735.50"></text></g><g><title>zap_pmd_range.isra.0 (270 samples, 0.04%)</title><rect x="27.9341%" y="709" width="0.0420%" height="15" fill="rgb(208,217,32)" fg:x="179766" fg:w="270"/><text x="28.1841%" y="719.50"></text></g><g><title>zap_pte_range (267 samples, 0.04%)</title><rect x="27.9345%" y="693" width="0.0415%" height="15" fill="rgb(221,120,13)" fg:x="179769" fg:w="267"/><text x="28.1845%" y="703.50"></text></g><g><title>[perf-733733.map] (140 samples, 0.02%)</title><rect x="27.9782%" y="949" width="0.0218%" height="15" fill="rgb(246,54,52)" fg:x="180050" fg:w="140"/><text x="28.2282%" y="959.50"></text></g><g><title>globbing_pool-7 (158 samples, 0.02%)</title><rect x="27.9760%" y="965" width="0.0246%" height="15" fill="rgb(242,34,25)" fg:x="180036" fg:w="158"/><text x="28.2260%" y="975.50"></text></g><g><title>finish_task_switch.isra.0 (65 samples, 0.01%)</title><rect x="28.0495%" y="693" width="0.0101%" height="15" fill="rgb(247,209,9)" fg:x="180509" fg:w="65"/><text x="28.2995%" y="703.50"></text></g><g><title>__x64_sys_futex (71 samples, 0.01%)</title><rect x="28.0489%" y="789" width="0.0110%" height="15" fill="rgb(228,71,26)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="799.50"></text></g><g><title>do_futex (71 samples, 0.01%)</title><rect x="28.0489%" y="773" width="0.0110%" height="15" fill="rgb(222,145,49)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="783.50"></text></g><g><title>futex_wait (71 samples, 0.01%)</title><rect x="28.0489%" y="757" width="0.0110%" height="15" fill="rgb(218,121,17)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="767.50"></text></g><g><title>futex_wait_queue_me (71 samples, 0.01%)</title><rect x="28.0489%" y="741" width="0.0110%" height="15" fill="rgb(244,50,7)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="751.50"></text></g><g><title>schedule (71 samples, 0.01%)</title><rect x="28.0489%" y="725" width="0.0110%" height="15" fill="rgb(246,229,37)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="735.50"></text></g><g><title>__schedule (71 samples, 0.01%)</title><rect x="28.0489%" y="709" width="0.0110%" height="15" fill="rgb(225,18,5)" fg:x="180505" fg:w="71"/><text x="28.2989%" y="719.50"></text></g><g><title>___pthread_cond_wait (74 samples, 0.01%)</title><rect x="28.0487%" y="901" width="0.0115%" height="15" fill="rgb(213,204,8)" fg:x="180504" fg:w="74"/><text x="28.2987%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (74 samples, 0.01%)</title><rect x="28.0487%" y="885" width="0.0115%" height="15" fill="rgb(238,103,6)" fg:x="180504" fg:w="74"/><text x="28.2987%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (74 samples, 0.01%)</title><rect x="28.0487%" y="869" width="0.0115%" height="15" fill="rgb(222,25,35)" fg:x="180504" fg:w="74"/><text x="28.2987%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (74 samples, 0.01%)</title><rect x="28.0487%" y="853" width="0.0115%" height="15" fill="rgb(213,203,35)" fg:x="180504" fg:w="74"/><text x="28.2987%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (74 samples, 0.01%)</title><rect x="28.0487%" y="837" width="0.0115%" height="15" fill="rgb(221,79,53)" fg:x="180504" fg:w="74"/><text x="28.2987%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (73 samples, 0.01%)</title><rect x="28.0489%" y="821" width="0.0113%" height="15" fill="rgb(243,200,35)" fg:x="180505" fg:w="73"/><text x="28.2989%" y="831.50"></text></g><g><title>do_syscall_64 (73 samples, 0.01%)</title><rect x="28.0489%" y="805" width="0.0113%" height="15" fill="rgb(248,60,25)" fg:x="180505" fg:w="73"/><text x="28.2989%" y="815.50"></text></g><g><title>Unsafe_Park (84 samples, 0.01%)</title><rect x="28.0473%" y="933" width="0.0131%" height="15" fill="rgb(227,53,46)" fg:x="180495" fg:w="84"/><text x="28.2973%" y="943.50"></text></g><g><title>Parker::park (84 samples, 0.01%)</title><rect x="28.0473%" y="917" width="0.0131%" height="15" fill="rgb(216,120,32)" fg:x="180495" fg:w="84"/><text x="28.2973%" y="927.50"></text></g><g><title>[perf-733733.map] (332 samples, 0.05%)</title><rect x="28.0108%" y="949" width="0.0516%" height="15" fill="rgb(220,134,1)" fg:x="180260" fg:w="332"/><text x="28.2608%" y="959.50"></text></g><g><title>globbing_pool-8 (402 samples, 0.06%)</title><rect x="28.0006%" y="965" width="0.0625%" height="15" fill="rgb(237,168,5)" fg:x="180194" fg:w="402"/><text x="28.2506%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="28.0954%" y="677" width="0.0101%" height="15" fill="rgb(231,100,33)" fg:x="180804" fg:w="65"/><text x="28.3454%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (67 samples, 0.01%)</title><rect x="28.0954%" y="693" width="0.0104%" height="15" fill="rgb(236,177,47)" fg:x="180804" fg:w="67"/><text x="28.3454%" y="703.50"></text></g><g><title>__x64_sys_futex (74 samples, 0.01%)</title><rect x="28.0946%" y="789" width="0.0115%" height="15" fill="rgb(235,7,49)" fg:x="180799" fg:w="74"/><text x="28.3446%" y="799.50"></text></g><g><title>do_futex (74 samples, 0.01%)</title><rect x="28.0946%" y="773" width="0.0115%" height="15" fill="rgb(232,119,22)" fg:x="180799" fg:w="74"/><text x="28.3446%" y="783.50"></text></g><g><title>futex_wait (74 samples, 0.01%)</title><rect x="28.0946%" y="757" width="0.0115%" height="15" fill="rgb(254,73,53)" fg:x="180799" fg:w="74"/><text x="28.3446%" y="767.50"></text></g><g><title>futex_wait_queue_me (73 samples, 0.01%)</title><rect x="28.0947%" y="741" width="0.0113%" height="15" fill="rgb(251,35,20)" fg:x="180800" fg:w="73"/><text x="28.3447%" y="751.50"></text></g><g><title>schedule (73 samples, 0.01%)</title><rect x="28.0947%" y="725" width="0.0113%" height="15" fill="rgb(241,119,20)" fg:x="180800" fg:w="73"/><text x="28.3447%" y="735.50"></text></g><g><title>__schedule (73 samples, 0.01%)</title><rect x="28.0947%" y="709" width="0.0113%" height="15" fill="rgb(207,102,14)" fg:x="180800" fg:w="73"/><text x="28.3447%" y="719.50"></text></g><g><title>___pthread_cond_wait (77 samples, 0.01%)</title><rect x="28.0944%" y="901" width="0.0120%" height="15" fill="rgb(248,201,50)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (77 samples, 0.01%)</title><rect x="28.0944%" y="885" width="0.0120%" height="15" fill="rgb(222,185,44)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="895.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (77 samples, 0.01%)</title><rect x="28.0944%" y="869" width="0.0120%" height="15" fill="rgb(218,107,18)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (77 samples, 0.01%)</title><rect x="28.0944%" y="853" width="0.0120%" height="15" fill="rgb(237,177,39)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (77 samples, 0.01%)</title><rect x="28.0944%" y="837" width="0.0120%" height="15" fill="rgb(246,69,6)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.01%)</title><rect x="28.0944%" y="821" width="0.0120%" height="15" fill="rgb(234,208,37)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="831.50"></text></g><g><title>do_syscall_64 (77 samples, 0.01%)</title><rect x="28.0944%" y="805" width="0.0120%" height="15" fill="rgb(225,4,6)" fg:x="180798" fg:w="77"/><text x="28.3444%" y="815.50"></text></g><g><title>Parker::park (88 samples, 0.01%)</title><rect x="28.0929%" y="917" width="0.0137%" height="15" fill="rgb(233,45,0)" fg:x="180788" fg:w="88"/><text x="28.3429%" y="927.50"></text></g><g><title>Unsafe_Park (89 samples, 0.01%)</title><rect x="28.0929%" y="933" width="0.0138%" height="15" fill="rgb(226,136,5)" fg:x="180788" fg:w="89"/><text x="28.3429%" y="943.50"></text></g><g><title>[perf-733733.map] (269 samples, 0.04%)</title><rect x="28.0666%" y="949" width="0.0418%" height="15" fill="rgb(211,91,47)" fg:x="180619" fg:w="269"/><text x="28.3166%" y="959.50"></text></g><g><title>globbing_pool-9 (303 samples, 0.05%)</title><rect x="28.0630%" y="965" width="0.0471%" height="15" fill="rgb(242,88,51)" fg:x="180596" fg:w="303"/><text x="28.3130%" y="975.50"></text></g><g><title>[anon] (258 samples, 0.04%)</title><rect x="28.1126%" y="949" width="0.0401%" height="15" fill="rgb(230,91,28)" fg:x="180915" fg:w="258"/><text x="28.3626%" y="959.50"></text></g><g><title>__btrfs_update_delayed_inode (99 samples, 0.02%)</title><rect x="28.1776%" y="773" width="0.0154%" height="15" fill="rgb(254,186,29)" fg:x="181333" fg:w="99"/><text x="28.4276%" y="783.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (111 samples, 0.02%)</title><rect x="28.1769%" y="789" width="0.0172%" height="15" fill="rgb(238,6,4)" fg:x="181329" fg:w="111"/><text x="28.4269%" y="799.50"></text></g><g><title>btrfs_truncate_inode_items (84 samples, 0.01%)</title><rect x="28.2012%" y="789" width="0.0131%" height="15" fill="rgb(221,151,16)" fg:x="181485" fg:w="84"/><text x="28.4512%" y="799.50"></text></g><g><title>btrfs_evict_inode (291 samples, 0.05%)</title><rect x="28.1762%" y="805" width="0.0452%" height="15" fill="rgb(251,143,52)" fg:x="181324" fg:w="291"/><text x="28.4262%" y="815.50"></text></g><g><title>iput (315 samples, 0.05%)</title><rect x="28.1755%" y="837" width="0.0489%" height="15" fill="rgb(206,90,15)" fg:x="181320" fg:w="315"/><text x="28.4255%" y="847.50"></text></g><g><title>evict (313 samples, 0.05%)</title><rect x="28.1758%" y="821" width="0.0486%" height="15" fill="rgb(218,35,8)" fg:x="181322" fg:w="313"/><text x="28.4258%" y="831.50"></text></g><g><title>__btrfs_unlink_inode (157 samples, 0.02%)</title><rect x="28.2256%" y="805" width="0.0244%" height="15" fill="rgb(239,215,6)" fg:x="181642" fg:w="157"/><text x="28.4756%" y="815.50"></text></g><g><title>btrfs_unlink (215 samples, 0.03%)</title><rect x="28.2254%" y="821" width="0.0334%" height="15" fill="rgb(245,116,39)" fg:x="181641" fg:w="215"/><text x="28.4754%" y="831.50"></text></g><g><title>__x64_sys_unlinkat (620 samples, 0.10%)</title><rect x="28.1634%" y="869" width="0.0963%" height="15" fill="rgb(242,65,28)" fg:x="181242" fg:w="620"/><text x="28.4134%" y="879.50"></text></g><g><title>do_unlinkat (557 samples, 0.09%)</title><rect x="28.1732%" y="853" width="0.0866%" height="15" fill="rgb(252,132,53)" fg:x="181305" fg:w="557"/><text x="28.4232%" y="863.50"></text></g><g><title>vfs_unlink (222 samples, 0.03%)</title><rect x="28.2253%" y="837" width="0.0345%" height="15" fill="rgb(224,159,50)" fg:x="181640" fg:w="222"/><text x="28.4753%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (74 samples, 0.01%)</title><rect x="28.2621%" y="853" width="0.0115%" height="15" fill="rgb(224,93,4)" fg:x="181877" fg:w="74"/><text x="28.5121%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (66 samples, 0.01%)</title><rect x="28.2633%" y="837" width="0.0103%" height="15" fill="rgb(208,81,34)" fg:x="181885" fg:w="66"/><text x="28.5133%" y="847.50"></text></g><g><title>do_syscall_64 (716 samples, 0.11%)</title><rect x="28.1628%" y="901" width="0.1113%" height="15" fill="rgb(233,92,54)" fg:x="181238" fg:w="716"/><text x="28.4128%" y="911.50"></text></g><g><title>unload_network_ops_symbols (713 samples, 0.11%)</title><rect x="28.1633%" y="885" width="0.1108%" height="15" fill="rgb(237,21,14)" fg:x="181241" fg:w="713"/><text x="28.4133%" y="895.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (77 samples, 0.01%)</title><rect x="28.2621%" y="869" width="0.0120%" height="15" fill="rgb(249,128,51)" fg:x="181877" fg:w="77"/><text x="28.5121%" y="879.50"></text></g><g><title>__GI_unlinkat (719 samples, 0.11%)</title><rect x="28.1625%" y="933" width="0.1117%" height="15" fill="rgb(223,129,24)" fg:x="181236" fg:w="719"/><text x="28.4125%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (717 samples, 0.11%)</title><rect x="28.1628%" y="917" width="0.1114%" height="15" fill="rgb(231,168,25)" fg:x="181238" fg:w="717"/><text x="28.4128%" y="927.50"></text></g><g><title>[libunix_jni.so] (806 samples, 0.13%)</title><rect x="28.1527%" y="949" width="0.1252%" height="15" fill="rgb(224,39,20)" fg:x="181173" fg:w="806"/><text x="28.4027%" y="959.50"></text></g><g><title>ClassFileParser::ClassFileParser (76 samples, 0.01%)</title><rect x="28.6122%" y="821" width="0.0118%" height="15" fill="rgb(225,152,53)" fg:x="184130" fg:w="76"/><text x="28.8622%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (76 samples, 0.01%)</title><rect x="28.6122%" y="805" width="0.0118%" height="15" fill="rgb(252,17,24)" fg:x="184130" fg:w="76"/><text x="28.8622%" y="815.50"></text></g><g><title>ClassLoader::load_class (157 samples, 0.02%)</title><rect x="28.6072%" y="853" width="0.0244%" height="15" fill="rgb(250,114,30)" fg:x="184098" fg:w="157"/><text x="28.8572%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (125 samples, 0.02%)</title><rect x="28.6122%" y="837" width="0.0194%" height="15" fill="rgb(229,5,4)" fg:x="184130" fg:w="125"/><text x="28.8622%" y="847.50"></text></g><g><title>SystemDictionary::load_instance_class (169 samples, 0.03%)</title><rect x="28.6072%" y="869" width="0.0263%" height="15" fill="rgb(225,176,49)" fg:x="184098" fg:w="169"/><text x="28.8572%" y="879.50"></text></g><g><title>ConstantPool::klass_at_impl (188 samples, 0.03%)</title><rect x="28.6047%" y="917" width="0.0292%" height="15" fill="rgb(224,221,49)" fg:x="184082" fg:w="188"/><text x="28.8547%" y="927.50"></text></g><g><title>SystemDictionary::resolve_or_fail (183 samples, 0.03%)</title><rect x="28.6055%" y="901" width="0.0284%" height="15" fill="rgb(253,169,27)" fg:x="184087" fg:w="183"/><text x="28.8555%" y="911.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (182 samples, 0.03%)</title><rect x="28.6057%" y="885" width="0.0283%" height="15" fill="rgb(211,206,16)" fg:x="184088" fg:w="182"/><text x="28.8557%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (147 samples, 0.02%)</title><rect x="28.6343%" y="901" width="0.0228%" height="15" fill="rgb(244,87,35)" fg:x="184272" fg:w="147"/><text x="28.8843%" y="911.50"></text></g><g><title>InterpreterRuntime::_new (341 samples, 0.05%)</title><rect x="28.6046%" y="933" width="0.0530%" height="15" fill="rgb(246,28,10)" fg:x="184081" fg:w="341"/><text x="28.8546%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (152 samples, 0.02%)</title><rect x="28.6339%" y="917" width="0.0236%" height="15" fill="rgb(229,12,44)" fg:x="184270" fg:w="152"/><text x="28.8839%" y="927.50"></text></g><g><title>LinkResolver::resolve_field_access (95 samples, 0.01%)</title><rect x="28.6854%" y="901" width="0.0148%" height="15" fill="rgb(210,145,37)" fg:x="184601" fg:w="95"/><text x="28.9354%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (106 samples, 0.02%)</title><rect x="28.6843%" y="917" width="0.0165%" height="15" fill="rgb(227,112,52)" fg:x="184594" fg:w="106"/><text x="28.9343%" y="927.50"></text></g><g><title>ClassLoader::load_class (76 samples, 0.01%)</title><rect x="28.7096%" y="821" width="0.0118%" height="15" fill="rgb(238,155,34)" fg:x="184757" fg:w="76"/><text x="28.9596%" y="831.50"></text></g><g><title>SystemDictionary::load_instance_class (81 samples, 0.01%)</title><rect x="28.7096%" y="837" width="0.0126%" height="15" fill="rgb(239,226,36)" fg:x="184757" fg:w="81"/><text x="28.9596%" y="847.50"></text></g><g><title>SystemDictionary::resolve_or_fail (93 samples, 0.01%)</title><rect x="28.7079%" y="869" width="0.0145%" height="15" fill="rgb(230,16,23)" fg:x="184746" fg:w="93"/><text x="28.9579%" y="879.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (92 samples, 0.01%)</title><rect x="28.7081%" y="853" width="0.0143%" height="15" fill="rgb(236,171,36)" fg:x="184747" fg:w="92"/><text x="28.9581%" y="863.50"></text></g><g><title>ConstantPool::klass_ref_at (104 samples, 0.02%)</title><rect x="28.7065%" y="885" width="0.0162%" height="15" fill="rgb(221,22,14)" fg:x="184737" fg:w="104"/><text x="28.9565%" y="895.50"></text></g><g><title>InstanceKlass::link_class_impl (78 samples, 0.01%)</title><rect x="28.7342%" y="853" width="0.0121%" height="15" fill="rgb(242,43,11)" fg:x="184915" fg:w="78"/><text x="28.9842%" y="863.50"></text></g><g><title>InstanceKlass::initialize_impl (80 samples, 0.01%)</title><rect x="28.7340%" y="869" width="0.0124%" height="15" fill="rgb(232,69,23)" fg:x="184914" fg:w="80"/><text x="28.9840%" y="879.50"></text></g><g><title>LinkResolver::resolve_static_call (100 samples, 0.02%)</title><rect x="28.7335%" y="885" width="0.0155%" height="15" fill="rgb(216,180,54)" fg:x="184911" fg:w="100"/><text x="28.9835%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (282 samples, 0.04%)</title><rect x="28.7062%" y="901" width="0.0438%" height="15" fill="rgb(216,5,24)" fg:x="184735" fg:w="282"/><text x="28.9562%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (332 samples, 0.05%)</title><rect x="28.7008%" y="917" width="0.0516%" height="15" fill="rgb(225,89,9)" fg:x="184700" fg:w="332"/><text x="28.9508%" y="927.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (506 samples, 0.08%)</title><rect x="28.6827%" y="933" width="0.0786%" height="15" fill="rgb(243,75,33)" fg:x="184584" fg:w="506"/><text x="28.9327%" y="943.50"></text></g><g><title>SymbolTable::lookup_only (468 samples, 0.07%)</title><rect x="28.8286%" y="789" width="0.0727%" height="15" fill="rgb(247,141,45)" fg:x="185523" fg:w="468"/><text x="29.0786%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (556 samples, 0.09%)</title><rect x="28.8153%" y="805" width="0.0864%" height="15" fill="rgb(232,177,36)" fg:x="185437" fg:w="556"/><text x="29.0653%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool (576 samples, 0.09%)</title><rect x="28.8134%" y="821" width="0.0895%" height="15" fill="rgb(219,125,36)" fg:x="185425" fg:w="576"/><text x="29.0634%" y="831.50"></text></g><g><title>ClassFileParser::parse_method (166 samples, 0.03%)</title><rect x="28.9063%" y="805" width="0.0258%" height="15" fill="rgb(227,94,9)" fg:x="186023" fg:w="166"/><text x="29.1563%" y="815.50"></text></g><g><title>ClassFileParser::parse_methods (169 samples, 0.03%)</title><rect x="28.9063%" y="821" width="0.0263%" height="15" fill="rgb(240,34,52)" fg:x="186023" fg:w="169"/><text x="29.1563%" y="831.50"></text></g><g><title>ClassFileParser::parse_stream (792 samples, 0.12%)</title><rect x="28.8123%" y="837" width="0.1231%" height="15" fill="rgb(216,45,12)" fg:x="185418" fg:w="792"/><text x="29.0623%" y="847.50"></text></g><g><title>ClassFileParser::ClassFileParser (796 samples, 0.12%)</title><rect x="28.8119%" y="853" width="0.1237%" height="15" fill="rgb(246,21,19)" fg:x="185415" fg:w="796"/><text x="29.0619%" y="863.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (84 samples, 0.01%)</title><rect x="28.9394%" y="805" width="0.0131%" height="15" fill="rgb(213,98,42)" fg:x="186236" fg:w="84"/><text x="29.1894%" y="815.50"></text></g><g><title>DefaultMethods::generate_default_methods (127 samples, 0.02%)</title><rect x="28.9371%" y="821" width="0.0197%" height="15" fill="rgb(250,136,47)" fg:x="186221" fg:w="127"/><text x="29.1871%" y="831.50"></text></g><g><title>ClassFileParser::fill_instance_klass (170 samples, 0.03%)</title><rect x="28.9356%" y="837" width="0.0264%" height="15" fill="rgb(251,124,27)" fg:x="186211" fg:w="170"/><text x="29.1856%" y="847.50"></text></g><g><title>ClassFileParser::create_instance_klass (180 samples, 0.03%)</title><rect x="28.9356%" y="853" width="0.0280%" height="15" fill="rgb(229,180,14)" fg:x="186211" fg:w="180"/><text x="29.1856%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (1,026 samples, 0.16%)</title><rect x="28.8116%" y="869" width="0.1594%" height="15" fill="rgb(245,216,25)" fg:x="185413" fg:w="1026"/><text x="29.0616%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (1,081 samples, 0.17%)</title><rect x="28.8091%" y="917" width="0.1680%" height="15" fill="rgb(251,43,5)" fg:x="185397" fg:w="1081"/><text x="29.0591%" y="927.50"></text></g><g><title>jvm_define_class_common (1,081 samples, 0.17%)</title><rect x="28.8091%" y="901" width="0.1680%" height="15" fill="rgb(250,128,24)" fg:x="185397" fg:w="1081"/><text x="29.0591%" y="911.50"></text></g><g><title>SystemDictionary::resolve_from_stream (1,065 samples, 0.17%)</title><rect x="28.8116%" y="885" width="0.1655%" height="15" fill="rgb(217,117,27)" fg:x="185413" fg:w="1065"/><text x="29.0616%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,127 samples, 0.18%)</title><rect x="28.8089%" y="933" width="0.1751%" height="15" fill="rgb(245,147,4)" fg:x="185396" fg:w="1127"/><text x="29.0589%" y="943.50"></text></g><g><title>SystemDictionary::load_instance_class (69 samples, 0.01%)</title><rect x="28.9861%" y="869" width="0.0107%" height="15" fill="rgb(242,201,35)" fg:x="186536" fg:w="69"/><text x="29.2361%" y="879.50"></text></g><g><title>JVM_FindClassFromBootLoader (82 samples, 0.01%)</title><rect x="28.9842%" y="917" width="0.0127%" height="15" fill="rgb(218,181,1)" fg:x="186524" fg:w="82"/><text x="29.2342%" y="927.50"></text></g><g><title>SystemDictionary::resolve_or_null (80 samples, 0.01%)</title><rect x="28.9845%" y="901" width="0.0124%" height="15" fill="rgb(222,6,29)" fg:x="186526" fg:w="80"/><text x="29.2345%" y="911.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (80 samples, 0.01%)</title><rect x="28.9845%" y="885" width="0.0124%" height="15" fill="rgb(208,186,3)" fg:x="186526" fg:w="80"/><text x="29.2345%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (99 samples, 0.02%)</title><rect x="28.9840%" y="933" width="0.0154%" height="15" fill="rgb(216,36,26)" fg:x="186523" fg:w="99"/><text x="29.2340%" y="943.50"></text></g><g><title>SystemDictionary::parse_stream (72 samples, 0.01%)</title><rect x="29.0167%" y="917" width="0.0112%" height="15" fill="rgb(248,201,23)" fg:x="186733" fg:w="72"/><text x="29.2667%" y="927.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (74 samples, 0.01%)</title><rect x="29.0165%" y="933" width="0.0115%" height="15" fill="rgb(251,170,31)" fg:x="186732" fg:w="74"/><text x="29.2665%" y="943.50"></text></g><g><title>[perf-733733.map] (4,920 samples, 0.76%)</title><rect x="28.2779%" y="949" width="0.7645%" height="15" fill="rgb(207,110,25)" fg:x="181979" fg:w="4920"/><text x="28.5279%" y="959.50"></text></g><g><title>filemap_get_pages (119 samples, 0.02%)</title><rect x="29.0653%" y="725" width="0.0185%" height="15" fill="rgb(250,54,15)" fg:x="187046" fg:w="119"/><text x="29.3153%" y="735.50"></text></g><g><title>btrfs_file_read_iter (158 samples, 0.02%)</title><rect x="29.0602%" y="757" width="0.0246%" height="15" fill="rgb(227,68,33)" fg:x="187013" fg:w="158"/><text x="29.3102%" y="767.50"></text></g><g><title>filemap_read (158 samples, 0.02%)</title><rect x="29.0602%" y="741" width="0.0246%" height="15" fill="rgb(238,34,41)" fg:x="187013" fg:w="158"/><text x="29.3102%" y="751.50"></text></g><g><title>new_sync_read (159 samples, 0.02%)</title><rect x="29.0602%" y="773" width="0.0247%" height="15" fill="rgb(220,11,15)" fg:x="187013" fg:w="159"/><text x="29.3102%" y="783.50"></text></g><g><title>__x64_sys_read (171 samples, 0.03%)</title><rect x="29.0596%" y="821" width="0.0266%" height="15" fill="rgb(246,111,35)" fg:x="187009" fg:w="171"/><text x="29.3096%" y="831.50"></text></g><g><title>ksys_read (171 samples, 0.03%)</title><rect x="29.0596%" y="805" width="0.0266%" height="15" fill="rgb(209,88,53)" fg:x="187009" fg:w="171"/><text x="29.3096%" y="815.50"></text></g><g><title>vfs_read (168 samples, 0.03%)</title><rect x="29.0600%" y="789" width="0.0261%" height="15" fill="rgb(231,185,47)" fg:x="187012" fg:w="168"/><text x="29.3100%" y="799.50"></text></g><g><title>do_syscall_64 (180 samples, 0.03%)</title><rect x="29.0586%" y="853" width="0.0280%" height="15" fill="rgb(233,154,1)" fg:x="187003" fg:w="180"/><text x="29.3086%" y="863.50"></text></g><g><title>unload_network_ops_symbols (176 samples, 0.03%)</title><rect x="29.0592%" y="837" width="0.0273%" height="15" fill="rgb(225,15,46)" fg:x="187007" fg:w="176"/><text x="29.3092%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (183 samples, 0.03%)</title><rect x="29.0583%" y="869" width="0.0284%" height="15" fill="rgb(211,135,41)" fg:x="187001" fg:w="183"/><text x="29.3083%" y="879.50"></text></g><g><title>__GI___libc_read (190 samples, 0.03%)</title><rect x="29.0574%" y="901" width="0.0295%" height="15" fill="rgb(208,54,0)" fg:x="186995" fg:w="190"/><text x="29.3074%" y="911.50"></text></g><g><title>__GI___libc_read (188 samples, 0.03%)</title><rect x="29.0577%" y="885" width="0.0292%" height="15" fill="rgb(244,136,14)" fg:x="186997" fg:w="188"/><text x="29.3077%" y="895.50"></text></g><g><title>handleRead (191 samples, 0.03%)</title><rect x="29.0574%" y="917" width="0.0297%" height="15" fill="rgb(241,56,14)" fg:x="186995" fg:w="191"/><text x="29.3074%" y="927.50"></text></g><g><title>readBytes (213 samples, 0.03%)</title><rect x="29.0564%" y="933" width="0.0331%" height="15" fill="rgb(205,80,24)" fg:x="186989" fg:w="213"/><text x="29.3064%" y="943.50"></text></g><g><title>[unknown] (308 samples, 0.05%)</title><rect x="29.0425%" y="949" width="0.0479%" height="15" fill="rgb(220,57,4)" fg:x="186899" fg:w="308"/><text x="29.2925%" y="959.50"></text></g><g><title>schedule_tail (99 samples, 0.02%)</title><rect x="29.0925%" y="917" width="0.0154%" height="15" fill="rgb(226,193,50)" fg:x="187221" fg:w="99"/><text x="29.3425%" y="927.50"></text></g><g><title>finish_task_switch.isra.0 (98 samples, 0.02%)</title><rect x="29.0927%" y="901" width="0.0152%" height="15" fill="rgb(231,168,22)" fg:x="187222" fg:w="98"/><text x="29.3427%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (96 samples, 0.01%)</title><rect x="29.0930%" y="885" width="0.0149%" height="15" fill="rgb(254,215,14)" fg:x="187224" fg:w="96"/><text x="29.3430%" y="895.50"></text></g><g><title>x86_pmu_enable (96 samples, 0.01%)</title><rect x="29.0930%" y="869" width="0.0149%" height="15" fill="rgb(211,115,16)" fg:x="187224" fg:w="96"/><text x="29.3430%" y="879.50"></text></g><g><title>intel_pmu_enable_all (96 samples, 0.01%)</title><rect x="29.0930%" y="853" width="0.0149%" height="15" fill="rgb(236,210,16)" fg:x="187224" fg:w="96"/><text x="29.3430%" y="863.50"></text></g><g><title>native_write_msr (96 samples, 0.01%)</title><rect x="29.0930%" y="837" width="0.0149%" height="15" fill="rgb(221,94,12)" fg:x="187224" fg:w="96"/><text x="29.3430%" y="847.50"></text></g><g><title>ret_from_fork (101 samples, 0.02%)</title><rect x="29.0923%" y="933" width="0.0157%" height="15" fill="rgb(235,218,49)" fg:x="187220" fg:w="101"/><text x="29.3423%" y="943.50"></text></g><g><title>JNI_CreateJavaVM (73 samples, 0.01%)</title><rect x="29.1080%" y="901" width="0.0113%" height="15" fill="rgb(217,114,14)" fg:x="187321" fg:w="73"/><text x="29.3580%" y="911.50"></text></g><g><title>Threads::create_vm (73 samples, 0.01%)</title><rect x="29.1080%" y="885" width="0.0113%" height="15" fill="rgb(216,145,22)" fg:x="187321" fg:w="73"/><text x="29.3580%" y="895.50"></text></g><g><title>JavaMain (76 samples, 0.01%)</title><rect x="29.1080%" y="917" width="0.0118%" height="15" fill="rgb(217,112,39)" fg:x="187321" fg:w="76"/><text x="29.3580%" y="927.50"></text></g><g><title>__clone3 (253 samples, 0.04%)</title><rect x="29.0905%" y="949" width="0.0393%" height="15" fill="rgb(225,85,32)" fg:x="187208" fg:w="253"/><text x="29.3405%" y="959.50"></text></g><g><title>start_thread (140 samples, 0.02%)</title><rect x="29.1080%" y="933" width="0.0218%" height="15" fill="rgb(245,209,47)" fg:x="187321" fg:w="140"/><text x="29.3580%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.02%)</title><rect x="29.1393%" y="901" width="0.0176%" height="15" fill="rgb(218,220,15)" fg:x="187522" fg:w="113"/><text x="29.3893%" y="911.50"></text></g><g><title>x86_pmu_enable (111 samples, 0.02%)</title><rect x="29.1396%" y="885" width="0.0172%" height="15" fill="rgb(222,202,31)" fg:x="187524" fg:w="111"/><text x="29.3896%" y="895.50"></text></g><g><title>intel_pmu_enable_all (111 samples, 0.02%)</title><rect x="29.1396%" y="869" width="0.0172%" height="15" fill="rgb(243,203,4)" fg:x="187524" fg:w="111"/><text x="29.3896%" y="879.50"></text></g><g><title>native_write_msr (111 samples, 0.02%)</title><rect x="29.1396%" y="853" width="0.0172%" height="15" fill="rgb(237,92,17)" fg:x="187524" fg:w="111"/><text x="29.3896%" y="863.50"></text></g><g><title>schedule_tail (120 samples, 0.02%)</title><rect x="29.1388%" y="933" width="0.0186%" height="15" fill="rgb(231,119,7)" fg:x="187519" fg:w="120"/><text x="29.3888%" y="943.50"></text></g><g><title>finish_task_switch.isra.0 (120 samples, 0.02%)</title><rect x="29.1388%" y="917" width="0.0186%" height="15" fill="rgb(237,82,41)" fg:x="187519" fg:w="120"/><text x="29.3888%" y="927.50"></text></g><g><title>ret_from_fork (122 samples, 0.02%)</title><rect x="29.1388%" y="949" width="0.0190%" height="15" fill="rgb(226,81,48)" fg:x="187519" fg:w="122"/><text x="29.3888%" y="959.50"></text></g><g><title>java (6,745 samples, 1.05%)</title><rect x="28.1101%" y="965" width="1.0481%" height="15" fill="rgb(234,70,51)" fg:x="180899" fg:w="6745"/><text x="28.3601%" y="975.50"></text></g><g><title>[bash] (70 samples, 0.01%)</title><rect x="29.1800%" y="485" width="0.0109%" height="15" fill="rgb(251,86,4)" fg:x="187784" fg:w="70"/><text x="29.4300%" y="495.50"></text></g><g><title>[bash] (70 samples, 0.01%)</title><rect x="29.1800%" y="469" width="0.0109%" height="15" fill="rgb(244,144,28)" fg:x="187784" fg:w="70"/><text x="29.4300%" y="479.50"></text></g><g><title>[bash] (168 samples, 0.03%)</title><rect x="29.1674%" y="933" width="0.0261%" height="15" fill="rgb(232,161,39)" fg:x="187703" fg:w="168"/><text x="29.4174%" y="943.50"></text></g><g><title>execute_command_internal (116 samples, 0.02%)</title><rect x="29.1755%" y="917" width="0.0180%" height="15" fill="rgb(247,34,51)" fg:x="187755" fg:w="116"/><text x="29.4255%" y="927.50"></text></g><g><title>execute_command_internal (116 samples, 0.02%)</title><rect x="29.1755%" y="901" width="0.0180%" height="15" fill="rgb(225,132,2)" fg:x="187755" fg:w="116"/><text x="29.4255%" y="911.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="885" width="0.0135%" height="15" fill="rgb(209,159,44)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="895.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="869" width="0.0135%" height="15" fill="rgb(251,214,1)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="879.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="853" width="0.0135%" height="15" fill="rgb(247,84,47)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="863.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="837" width="0.0135%" height="15" fill="rgb(240,111,43)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="847.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="821" width="0.0135%" height="15" fill="rgb(215,214,35)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="831.50"></text></g><g><title>execute_command (87 samples, 0.01%)</title><rect x="29.1800%" y="805" width="0.0135%" height="15" fill="rgb(248,207,23)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="815.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="789" width="0.0135%" height="15" fill="rgb(214,186,4)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="799.50"></text></g><g><title>execute_command (87 samples, 0.01%)</title><rect x="29.1800%" y="773" width="0.0135%" height="15" fill="rgb(220,133,22)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="783.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="757" width="0.0135%" height="15" fill="rgb(239,134,19)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="767.50"></text></g><g><title>execute_command (87 samples, 0.01%)</title><rect x="29.1800%" y="741" width="0.0135%" height="15" fill="rgb(250,140,9)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="751.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="725" width="0.0135%" height="15" fill="rgb(225,59,14)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="735.50"></text></g><g><title>execute_command (87 samples, 0.01%)</title><rect x="29.1800%" y="709" width="0.0135%" height="15" fill="rgb(214,152,51)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="719.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="693" width="0.0135%" height="15" fill="rgb(251,227,43)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="703.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="677" width="0.0135%" height="15" fill="rgb(241,96,17)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="687.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="661" width="0.0135%" height="15" fill="rgb(234,198,43)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="671.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="645" width="0.0135%" height="15" fill="rgb(220,108,29)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="655.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="629" width="0.0135%" height="15" fill="rgb(226,163,33)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="639.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="613" width="0.0135%" height="15" fill="rgb(205,194,45)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="623.50"></text></g><g><title>expand_string_assignment (87 samples, 0.01%)</title><rect x="29.1800%" y="597" width="0.0135%" height="15" fill="rgb(206,143,44)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="607.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="581" width="0.0135%" height="15" fill="rgb(236,136,36)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="591.50"></text></g><g><title>command_substitute (87 samples, 0.01%)</title><rect x="29.1800%" y="565" width="0.0135%" height="15" fill="rgb(249,172,42)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="575.50"></text></g><g><title>parse_and_execute (87 samples, 0.01%)</title><rect x="29.1800%" y="549" width="0.0135%" height="15" fill="rgb(216,139,23)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="559.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="533" width="0.0135%" height="15" fill="rgb(207,166,20)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="543.50"></text></g><g><title>[bash] (87 samples, 0.01%)</title><rect x="29.1800%" y="517" width="0.0135%" height="15" fill="rgb(210,209,22)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="527.50"></text></g><g><title>execute_command_internal (87 samples, 0.01%)</title><rect x="29.1800%" y="501" width="0.0135%" height="15" fill="rgb(232,118,20)" fg:x="187784" fg:w="87"/><text x="29.4300%" y="511.50"></text></g><g><title>schedule_tail (75 samples, 0.01%)</title><rect x="29.2062%" y="421" width="0.0117%" height="15" fill="rgb(238,113,42)" fg:x="187953" fg:w="75"/><text x="29.4562%" y="431.50"></text></g><g><title>finish_task_switch.isra.0 (74 samples, 0.01%)</title><rect x="29.2064%" y="405" width="0.0115%" height="15" fill="rgb(231,42,5)" fg:x="187954" fg:w="74"/><text x="29.4564%" y="415.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.01%)</title><rect x="29.2069%" y="389" width="0.0110%" height="15" fill="rgb(243,166,24)" fg:x="187957" fg:w="71"/><text x="29.4569%" y="399.50"></text></g><g><title>x86_pmu_enable (70 samples, 0.01%)</title><rect x="29.2070%" y="373" width="0.0109%" height="15" fill="rgb(237,226,12)" fg:x="187958" fg:w="70"/><text x="29.4570%" y="383.50"></text></g><g><title>intel_pmu_enable_all (70 samples, 0.01%)</title><rect x="29.2070%" y="357" width="0.0109%" height="15" fill="rgb(229,133,24)" fg:x="187958" fg:w="70"/><text x="29.4570%" y="367.50"></text></g><g><title>native_write_msr (70 samples, 0.01%)</title><rect x="29.2070%" y="341" width="0.0109%" height="15" fill="rgb(238,33,43)" fg:x="187958" fg:w="70"/><text x="29.4570%" y="351.50"></text></g><g><title>__GI__Fork (93 samples, 0.01%)</title><rect x="29.2036%" y="469" width="0.0145%" height="15" fill="rgb(227,59,38)" fg:x="187936" fg:w="93"/><text x="29.4536%" y="479.50"></text></g><g><title>arch_fork (93 samples, 0.01%)</title><rect x="29.2036%" y="453" width="0.0145%" height="15" fill="rgb(230,97,0)" fg:x="187936" fg:w="93"/><text x="29.4536%" y="463.50"></text></g><g><title>ret_from_fork (83 samples, 0.01%)</title><rect x="29.2052%" y="437" width="0.0129%" height="15" fill="rgb(250,173,50)" fg:x="187946" fg:w="83"/><text x="29.4552%" y="447.50"></text></g><g><title>execute_command (99 samples, 0.02%)</title><rect x="29.2034%" y="837" width="0.0154%" height="15" fill="rgb(240,15,50)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="847.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="821" width="0.0154%" height="15" fill="rgb(221,93,22)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="831.50"></text></g><g><title>execute_command (99 samples, 0.02%)</title><rect x="29.2034%" y="805" width="0.0154%" height="15" fill="rgb(245,180,53)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="815.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="789" width="0.0154%" height="15" fill="rgb(231,88,51)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="799.50"></text></g><g><title>execute_command (99 samples, 0.02%)</title><rect x="29.2034%" y="773" width="0.0154%" height="15" fill="rgb(240,58,21)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="783.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="757" width="0.0154%" height="15" fill="rgb(237,21,10)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="767.50"></text></g><g><title>execute_command (99 samples, 0.02%)</title><rect x="29.2034%" y="741" width="0.0154%" height="15" fill="rgb(218,43,11)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="751.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="725" width="0.0154%" height="15" fill="rgb(218,221,29)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="735.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="709" width="0.0154%" height="15" fill="rgb(214,118,42)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="719.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="693" width="0.0154%" height="15" fill="rgb(251,200,26)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="703.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="677" width="0.0154%" height="15" fill="rgb(237,101,39)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="687.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="661" width="0.0154%" height="15" fill="rgb(251,117,11)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="671.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="645" width="0.0154%" height="15" fill="rgb(216,223,23)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="655.50"></text></g><g><title>expand_string_assignment (99 samples, 0.02%)</title><rect x="29.2034%" y="629" width="0.0154%" height="15" fill="rgb(251,54,12)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="639.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="613" width="0.0154%" height="15" fill="rgb(254,176,54)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="623.50"></text></g><g><title>command_substitute (99 samples, 0.02%)</title><rect x="29.2034%" y="597" width="0.0154%" height="15" fill="rgb(210,32,8)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="607.50"></text></g><g><title>parse_and_execute (99 samples, 0.02%)</title><rect x="29.2034%" y="581" width="0.0154%" height="15" fill="rgb(235,52,38)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="591.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="565" width="0.0154%" height="15" fill="rgb(231,4,44)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="575.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="549" width="0.0154%" height="15" fill="rgb(249,2,32)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="559.50"></text></g><g><title>execute_command_internal (99 samples, 0.02%)</title><rect x="29.2034%" y="533" width="0.0154%" height="15" fill="rgb(224,65,26)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="543.50"></text></g><g><title>[bash] (99 samples, 0.02%)</title><rect x="29.2034%" y="517" width="0.0154%" height="15" fill="rgb(250,73,40)" fg:x="187935" fg:w="99"/><text x="29.4534%" y="527.50"></text></g><g><title>make_child (98 samples, 0.02%)</title><rect x="29.2036%" y="501" width="0.0152%" height="15" fill="rgb(253,177,16)" fg:x="187936" fg:w="98"/><text x="29.4536%" y="511.50"></text></g><g><title>__libc_fork (98 samples, 0.02%)</title><rect x="29.2036%" y="485" width="0.0152%" height="15" fill="rgb(217,32,34)" fg:x="187936" fg:w="98"/><text x="29.4536%" y="495.50"></text></g><g><title>[bash] (141 samples, 0.02%)</title><rect x="29.2034%" y="885" width="0.0219%" height="15" fill="rgb(212,7,10)" fg:x="187935" fg:w="141"/><text x="29.4534%" y="895.50"></text></g><g><title>execute_command_internal (141 samples, 0.02%)</title><rect x="29.2034%" y="869" width="0.0219%" height="15" fill="rgb(245,89,8)" fg:x="187935" fg:w="141"/><text x="29.4534%" y="879.50"></text></g><g><title>execute_command_internal (141 samples, 0.02%)</title><rect x="29.2034%" y="853" width="0.0219%" height="15" fill="rgb(237,16,53)" fg:x="187935" fg:w="141"/><text x="29.4534%" y="863.50"></text></g><g><title>[bash] (142 samples, 0.02%)</title><rect x="29.2034%" y="901" width="0.0221%" height="15" fill="rgb(250,204,30)" fg:x="187935" fg:w="142"/><text x="29.4534%" y="911.50"></text></g><g><title>execute_command_internal (197 samples, 0.03%)</title><rect x="29.1986%" y="933" width="0.0306%" height="15" fill="rgb(208,77,27)" fg:x="187904" fg:w="197"/><text x="29.4486%" y="943.50"></text></g><g><title>execute_command_internal (166 samples, 0.03%)</title><rect x="29.2034%" y="917" width="0.0258%" height="15" fill="rgb(250,204,28)" fg:x="187935" fg:w="166"/><text x="29.4534%" y="927.50"></text></g><g><title>[unknown] (417 samples, 0.06%)</title><rect x="29.1674%" y="949" width="0.0648%" height="15" fill="rgb(244,63,21)" fg:x="187703" fg:w="417"/><text x="29.4174%" y="959.50"></text></g><g><title>bprm_execve (80 samples, 0.01%)</title><rect x="29.2533%" y="533" width="0.0124%" height="15" fill="rgb(236,85,44)" fg:x="188256" fg:w="80"/><text x="29.5033%" y="543.50"></text></g><g><title>bprm_execve.part.0 (80 samples, 0.01%)</title><rect x="29.2533%" y="517" width="0.0124%" height="15" fill="rgb(215,98,4)" fg:x="188256" fg:w="80"/><text x="29.5033%" y="527.50"></text></g><g><title>shell_execve (83 samples, 0.01%)</title><rect x="29.2530%" y="629" width="0.0129%" height="15" fill="rgb(235,38,11)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="639.50"></text></g><g><title>__GI_execve (83 samples, 0.01%)</title><rect x="29.2530%" y="613" width="0.0129%" height="15" fill="rgb(254,186,25)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (83 samples, 0.01%)</title><rect x="29.2530%" y="597" width="0.0129%" height="15" fill="rgb(225,55,31)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="607.50"></text></g><g><title>do_syscall_64 (83 samples, 0.01%)</title><rect x="29.2530%" y="581" width="0.0129%" height="15" fill="rgb(211,15,21)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="591.50"></text></g><g><title>__x64_sys_execve (83 samples, 0.01%)</title><rect x="29.2530%" y="565" width="0.0129%" height="15" fill="rgb(215,187,41)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="575.50"></text></g><g><title>do_execveat_common.isra.0 (83 samples, 0.01%)</title><rect x="29.2530%" y="549" width="0.0129%" height="15" fill="rgb(248,69,32)" fg:x="188254" fg:w="83"/><text x="29.5030%" y="559.50"></text></g><g><title>[bash] (103 samples, 0.02%)</title><rect x="29.2501%" y="645" width="0.0160%" height="15" fill="rgb(252,102,52)" fg:x="188235" fg:w="103"/><text x="29.5001%" y="655.50"></text></g><g><title>schedule_tail (89 samples, 0.01%)</title><rect x="29.2701%" y="565" width="0.0138%" height="15" fill="rgb(253,140,32)" fg:x="188364" fg:w="89"/><text x="29.5201%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (89 samples, 0.01%)</title><rect x="29.2701%" y="549" width="0.0138%" height="15" fill="rgb(216,56,42)" fg:x="188364" fg:w="89"/><text x="29.5201%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (82 samples, 0.01%)</title><rect x="29.2712%" y="533" width="0.0127%" height="15" fill="rgb(216,184,14)" fg:x="188371" fg:w="82"/><text x="29.5212%" y="543.50"></text></g><g><title>x86_pmu_enable (82 samples, 0.01%)</title><rect x="29.2712%" y="517" width="0.0127%" height="15" fill="rgb(237,187,27)" fg:x="188371" fg:w="82"/><text x="29.5212%" y="527.50"></text></g><g><title>intel_pmu_enable_all (82 samples, 0.01%)</title><rect x="29.2712%" y="501" width="0.0127%" height="15" fill="rgb(219,65,3)" fg:x="188371" fg:w="82"/><text x="29.5212%" y="511.50"></text></g><g><title>native_write_msr (82 samples, 0.01%)</title><rect x="29.2712%" y="485" width="0.0127%" height="15" fill="rgb(245,83,25)" fg:x="188371" fg:w="82"/><text x="29.5212%" y="495.50"></text></g><g><title>__GI__Fork (112 samples, 0.02%)</title><rect x="29.2668%" y="613" width="0.0174%" height="15" fill="rgb(214,205,45)" fg:x="188343" fg:w="112"/><text x="29.5168%" y="623.50"></text></g><g><title>arch_fork (112 samples, 0.02%)</title><rect x="29.2668%" y="597" width="0.0174%" height="15" fill="rgb(241,20,18)" fg:x="188343" fg:w="112"/><text x="29.5168%" y="607.50"></text></g><g><title>ret_from_fork (97 samples, 0.02%)</title><rect x="29.2692%" y="581" width="0.0151%" height="15" fill="rgb(232,163,23)" fg:x="188358" fg:w="97"/><text x="29.5192%" y="591.50"></text></g><g><title>__libc_fork (119 samples, 0.02%)</title><rect x="29.2667%" y="629" width="0.0185%" height="15" fill="rgb(214,5,46)" fg:x="188342" fg:w="119"/><text x="29.5167%" y="639.50"></text></g><g><title>make_child (123 samples, 0.02%)</title><rect x="29.2667%" y="645" width="0.0191%" height="15" fill="rgb(229,78,17)" fg:x="188342" fg:w="123"/><text x="29.5167%" y="655.50"></text></g><g><title>[bash] (231 samples, 0.04%)</title><rect x="29.2501%" y="661" width="0.0359%" height="15" fill="rgb(248,89,10)" fg:x="188235" fg:w="231"/><text x="29.5001%" y="671.50"></text></g><g><title>execute_command_internal (246 samples, 0.04%)</title><rect x="29.2499%" y="709" width="0.0382%" height="15" fill="rgb(248,54,15)" fg:x="188234" fg:w="246"/><text x="29.4999%" y="719.50"></text></g><g><title>[bash] (246 samples, 0.04%)</title><rect x="29.2499%" y="693" width="0.0382%" height="15" fill="rgb(223,116,6)" fg:x="188234" fg:w="246"/><text x="29.4999%" y="703.50"></text></g><g><title>execute_command_internal (245 samples, 0.04%)</title><rect x="29.2501%" y="677" width="0.0381%" height="15" fill="rgb(205,125,38)" fg:x="188235" fg:w="245"/><text x="29.5001%" y="687.50"></text></g><g><title>parse_and_execute (249 samples, 0.04%)</title><rect x="29.2496%" y="725" width="0.0387%" height="15" fill="rgb(251,78,38)" fg:x="188232" fg:w="249"/><text x="29.4996%" y="735.50"></text></g><g><title>command_substitute (308 samples, 0.05%)</title><rect x="29.2425%" y="741" width="0.0479%" height="15" fill="rgb(253,78,28)" fg:x="188186" fg:w="308"/><text x="29.4925%" y="751.50"></text></g><g><title>expand_string_assignment (315 samples, 0.05%)</title><rect x="29.2415%" y="773" width="0.0489%" height="15" fill="rgb(209,120,3)" fg:x="188180" fg:w="315"/><text x="29.4915%" y="783.50"></text></g><g><title>[bash] (314 samples, 0.05%)</title><rect x="29.2417%" y="757" width="0.0488%" height="15" fill="rgb(238,229,9)" fg:x="188181" fg:w="314"/><text x="29.4917%" y="767.50"></text></g><g><title>[bash] (325 samples, 0.05%)</title><rect x="29.2406%" y="789" width="0.0505%" height="15" fill="rgb(253,159,18)" fg:x="188174" fg:w="325"/><text x="29.4906%" y="799.50"></text></g><g><title>[bash] (327 samples, 0.05%)</title><rect x="29.2404%" y="805" width="0.0508%" height="15" fill="rgb(244,42,34)" fg:x="188173" fg:w="327"/><text x="29.4904%" y="815.50"></text></g><g><title>[bash] (352 samples, 0.05%)</title><rect x="29.2404%" y="821" width="0.0547%" height="15" fill="rgb(224,8,7)" fg:x="188173" fg:w="352"/><text x="29.4904%" y="831.50"></text></g><g><title>[bash] (356 samples, 0.06%)</title><rect x="29.2403%" y="837" width="0.0553%" height="15" fill="rgb(210,201,45)" fg:x="188172" fg:w="356"/><text x="29.4903%" y="847.50"></text></g><g><title>copy_command (65 samples, 0.01%)</title><rect x="29.2961%" y="789" width="0.0101%" height="15" fill="rgb(252,185,21)" fg:x="188531" fg:w="65"/><text x="29.5461%" y="799.50"></text></g><g><title>copy_command (68 samples, 0.01%)</title><rect x="29.2958%" y="821" width="0.0106%" height="15" fill="rgb(223,131,1)" fg:x="188529" fg:w="68"/><text x="29.5458%" y="831.50"></text></g><g><title>copy_command (67 samples, 0.01%)</title><rect x="29.2959%" y="805" width="0.0104%" height="15" fill="rgb(245,141,16)" fg:x="188530" fg:w="67"/><text x="29.5459%" y="815.50"></text></g><g><title>bind_function (70 samples, 0.01%)</title><rect x="29.2956%" y="837" width="0.0109%" height="15" fill="rgb(229,55,45)" fg:x="188528" fg:w="70"/><text x="29.5456%" y="847.50"></text></g><g><title>copy_function_def_contents (66 samples, 0.01%)</title><rect x="29.3066%" y="837" width="0.0103%" height="15" fill="rgb(208,92,15)" fg:x="188599" fg:w="66"/><text x="29.5566%" y="847.50"></text></g><g><title>copy_command (66 samples, 0.01%)</title><rect x="29.3066%" y="821" width="0.0103%" height="15" fill="rgb(234,185,47)" fg:x="188599" fg:w="66"/><text x="29.5566%" y="831.50"></text></g><g><title>parse_and_execute (73 samples, 0.01%)</title><rect x="29.3371%" y="757" width="0.0113%" height="15" fill="rgb(253,104,50)" fg:x="188795" fg:w="73"/><text x="29.5871%" y="767.50"></text></g><g><title>execute_command_internal (72 samples, 0.01%)</title><rect x="29.3372%" y="741" width="0.0112%" height="15" fill="rgb(205,70,7)" fg:x="188796" fg:w="72"/><text x="29.5872%" y="751.50"></text></g><g><title>expand_word_leave_quoted (205 samples, 0.03%)</title><rect x="29.3248%" y="805" width="0.0319%" height="15" fill="rgb(240,178,43)" fg:x="188716" fg:w="205"/><text x="29.5748%" y="815.50"></text></g><g><title>[bash] (205 samples, 0.03%)</title><rect x="29.3248%" y="789" width="0.0319%" height="15" fill="rgb(214,112,2)" fg:x="188716" fg:w="205"/><text x="29.5748%" y="799.50"></text></g><g><title>command_substitute (204 samples, 0.03%)</title><rect x="29.3250%" y="773" width="0.0317%" height="15" fill="rgb(206,46,17)" fg:x="188717" fg:w="204"/><text x="29.5750%" y="783.50"></text></g><g><title>execute_command (323 samples, 0.05%)</title><rect x="29.3169%" y="837" width="0.0502%" height="15" fill="rgb(225,220,16)" fg:x="188665" fg:w="323"/><text x="29.5669%" y="847.50"></text></g><g><title>execute_command_internal (323 samples, 0.05%)</title><rect x="29.3169%" y="821" width="0.0502%" height="15" fill="rgb(238,65,40)" fg:x="188665" fg:w="323"/><text x="29.5669%" y="831.50"></text></g><g><title>execute_command (821 samples, 0.13%)</title><rect x="29.2398%" y="869" width="0.1276%" height="15" fill="rgb(230,151,21)" fg:x="188169" fg:w="821"/><text x="29.4898%" y="879.50"></text></g><g><title>execute_command_internal (819 samples, 0.13%)</title><rect x="29.2401%" y="853" width="0.1273%" height="15" fill="rgb(218,58,49)" fg:x="188171" fg:w="819"/><text x="29.4901%" y="863.50"></text></g><g><title>[bash] (233 samples, 0.04%)</title><rect x="29.3862%" y="805" width="0.0362%" height="15" fill="rgb(219,179,14)" fg:x="189111" fg:w="233"/><text x="29.6362%" y="815.50"></text></g><g><title>[bash] (365 samples, 0.06%)</title><rect x="29.3758%" y="821" width="0.0567%" height="15" fill="rgb(223,72,1)" fg:x="189044" fg:w="365"/><text x="29.6258%" y="831.50"></text></g><g><title>reader_loop (1,312 samples, 0.20%)</title><rect x="29.2341%" y="885" width="0.2039%" height="15" fill="rgb(238,126,10)" fg:x="188132" fg:w="1312"/><text x="29.4841%" y="895.50"></text></g><g><title>read_command (454 samples, 0.07%)</title><rect x="29.3674%" y="869" width="0.0705%" height="15" fill="rgb(224,206,38)" fg:x="188990" fg:w="454"/><text x="29.6174%" y="879.50"></text></g><g><title>parse_command (454 samples, 0.07%)</title><rect x="29.3674%" y="853" width="0.0705%" height="15" fill="rgb(212,201,54)" fg:x="188990" fg:w="454"/><text x="29.6174%" y="863.50"></text></g><g><title>yyparse (453 samples, 0.07%)</title><rect x="29.3675%" y="837" width="0.0704%" height="15" fill="rgb(218,154,48)" fg:x="188991" fg:w="453"/><text x="29.6175%" y="847.50"></text></g><g><title>__libc_start_main_impl (1,328 samples, 0.21%)</title><rect x="29.2324%" y="933" width="0.2064%" height="15" fill="rgb(232,93,24)" fg:x="188121" fg:w="1328"/><text x="29.4824%" y="943.50"></text></g><g><title>__libc_start_call_main (1,328 samples, 0.21%)</title><rect x="29.2324%" y="917" width="0.2064%" height="15" fill="rgb(245,30,21)" fg:x="188121" fg:w="1328"/><text x="29.4824%" y="927.50"></text></g><g><title>main (1,328 samples, 0.21%)</title><rect x="29.2324%" y="901" width="0.2064%" height="15" fill="rgb(242,148,29)" fg:x="188121" fg:w="1328"/><text x="29.4824%" y="911.50"></text></g><g><title>_start (1,359 samples, 0.21%)</title><rect x="29.2324%" y="949" width="0.2112%" height="15" fill="rgb(244,153,54)" fg:x="188121" fg:w="1359"/><text x="29.4824%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.01%)</title><rect x="29.4497%" y="949" width="0.0107%" height="15" fill="rgb(252,87,22)" fg:x="189520" fg:w="69"/><text x="29.6997%" y="959.50"></text></g><g><title>do_syscall_64 (69 samples, 0.01%)</title><rect x="29.4497%" y="933" width="0.0107%" height="15" fill="rgb(210,51,29)" fg:x="189520" fg:w="69"/><text x="29.6997%" y="943.50"></text></g><g><title>libtool (1,950 samples, 0.30%)</title><rect x="29.1582%" y="965" width="0.3030%" height="15" fill="rgb(242,136,47)" fg:x="187644" fg:w="1950"/><text x="29.4082%" y="975.50"></text></g><g><title>copy_namespaces (73 samples, 0.01%)</title><rect x="29.4703%" y="805" width="0.0113%" height="15" fill="rgb(238,68,4)" fg:x="189652" fg:w="73"/><text x="29.7203%" y="815.50"></text></g><g><title>create_new_namespaces (73 samples, 0.01%)</title><rect x="29.4703%" y="789" width="0.0113%" height="15" fill="rgb(242,161,30)" fg:x="189652" fg:w="73"/><text x="29.7203%" y="799.50"></text></g><g><title>copy_process (156 samples, 0.02%)</title><rect x="29.4681%" y="821" width="0.0242%" height="15" fill="rgb(218,58,44)" fg:x="189638" fg:w="156"/><text x="29.7181%" y="831.50"></text></g><g><title>[libc.so.6] (160 samples, 0.02%)</title><rect x="29.4681%" y="949" width="0.0249%" height="15" fill="rgb(252,125,32)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="959.50"></text></g><g><title>__libc_start_call_main (160 samples, 0.02%)</title><rect x="29.4681%" y="933" width="0.0249%" height="15" fill="rgb(219,178,0)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="943.50"></text></g><g><title>__GI___clone (160 samples, 0.02%)</title><rect x="29.4681%" y="917" width="0.0249%" height="15" fill="rgb(213,152,7)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (160 samples, 0.02%)</title><rect x="29.4681%" y="901" width="0.0249%" height="15" fill="rgb(249,109,34)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="911.50"></text></g><g><title>do_syscall_64 (160 samples, 0.02%)</title><rect x="29.4681%" y="885" width="0.0249%" height="15" fill="rgb(232,96,21)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="895.50"></text></g><g><title>__x64_sys_clone (160 samples, 0.02%)</title><rect x="29.4681%" y="869" width="0.0249%" height="15" fill="rgb(228,27,39)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="879.50"></text></g><g><title>__do_sys_clone (160 samples, 0.02%)</title><rect x="29.4681%" y="853" width="0.0249%" height="15" fill="rgb(211,182,52)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="863.50"></text></g><g><title>kernel_clone (160 samples, 0.02%)</title><rect x="29.4681%" y="837" width="0.0249%" height="15" fill="rgb(234,178,38)" fg:x="189638" fg:w="160"/><text x="29.7181%" y="847.50"></text></g><g><title>WriteFile (88 samples, 0.01%)</title><rect x="29.5026%" y="917" width="0.0137%" height="15" fill="rgb(221,111,3)" fg:x="189860" fg:w="88"/><text x="29.7526%" y="927.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (72 samples, 0.01%)</title><rect x="29.5332%" y="565" width="0.0112%" height="15" fill="rgb(228,175,21)" fg:x="190057" fg:w="72"/><text x="29.7832%" y="575.50"></text></g><g><title>_ZdlPv (72 samples, 0.01%)</title><rect x="29.5332%" y="549" width="0.0112%" height="15" fill="rgb(228,174,43)" fg:x="190057" fg:w="72"/><text x="29.7832%" y="559.50"></text></g><g><title>_ZdlPv (68 samples, 0.01%)</title><rect x="29.5338%" y="533" width="0.0106%" height="15" fill="rgb(211,191,0)" fg:x="190061" fg:w="68"/><text x="29.7838%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (68 samples, 0.01%)</title><rect x="29.5338%" y="517" width="0.0106%" height="15" fill="rgb(253,117,3)" fg:x="190061" fg:w="68"/><text x="29.7838%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (115 samples, 0.02%)</title><rect x="29.5321%" y="581" width="0.0179%" height="15" fill="rgb(241,127,19)" fg:x="190050" fg:w="115"/><text x="29.7821%" y="591.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (132 samples, 0.02%)</title><rect x="29.5301%" y="597" width="0.0205%" height="15" fill="rgb(218,103,12)" fg:x="190037" fg:w="132"/><text x="29.7801%" y="607.50"></text></g><g><title>_ZdlPv (78 samples, 0.01%)</title><rect x="29.5520%" y="549" width="0.0121%" height="15" fill="rgb(236,214,43)" fg:x="190178" fg:w="78"/><text x="29.8020%" y="559.50"></text></g><g><title>_ZdlPv (83 samples, 0.01%)</title><rect x="29.5517%" y="565" width="0.0129%" height="15" fill="rgb(244,144,19)" fg:x="190176" fg:w="83"/><text x="29.8017%" y="575.50"></text></g><g><title>_ZdlPv (91 samples, 0.01%)</title><rect x="29.5509%" y="581" width="0.0141%" height="15" fill="rgb(246,188,10)" fg:x="190171" fg:w="91"/><text x="29.8009%" y="591.50"></text></g><g><title>_ZdlPv (104 samples, 0.02%)</title><rect x="29.5506%" y="597" width="0.0162%" height="15" fill="rgb(212,193,33)" fg:x="190169" fg:w="104"/><text x="29.8006%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (96 samples, 0.01%)</title><rect x="29.5978%" y="437" width="0.0149%" height="15" fill="rgb(241,51,29)" fg:x="190473" fg:w="96"/><text x="29.8478%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (78 samples, 0.01%)</title><rect x="29.6006%" y="421" width="0.0121%" height="15" fill="rgb(211,58,19)" fg:x="190491" fg:w="78"/><text x="29.8506%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (105 samples, 0.02%)</title><rect x="29.5969%" y="453" width="0.0163%" height="15" fill="rgb(229,111,26)" fg:x="190467" fg:w="105"/><text x="29.8469%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (114 samples, 0.02%)</title><rect x="29.5957%" y="469" width="0.0177%" height="15" fill="rgb(213,115,40)" fg:x="190459" fg:w="114"/><text x="29.8457%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (160 samples, 0.02%)</title><rect x="29.5887%" y="501" width="0.0249%" height="15" fill="rgb(209,56,44)" fg:x="190414" fg:w="160"/><text x="29.8387%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (149 samples, 0.02%)</title><rect x="29.5904%" y="485" width="0.0232%" height="15" fill="rgb(230,108,32)" fg:x="190425" fg:w="149"/><text x="29.8404%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (173 samples, 0.03%)</title><rect x="29.5876%" y="517" width="0.0269%" height="15" fill="rgb(216,165,31)" fg:x="190407" fg:w="173"/><text x="29.8376%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (181 samples, 0.03%)</title><rect x="29.5865%" y="533" width="0.0281%" height="15" fill="rgb(218,122,21)" fg:x="190400" fg:w="181"/><text x="29.8365%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (209 samples, 0.03%)</title><rect x="29.5824%" y="549" width="0.0325%" height="15" fill="rgb(223,224,47)" fg:x="190374" fg:w="209"/><text x="29.8324%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (252 samples, 0.04%)</title><rect x="29.5767%" y="565" width="0.0392%" height="15" fill="rgb(238,102,44)" fg:x="190337" fg:w="252"/><text x="29.8267%" y="575.50"></text></g><g><title>_ZdlPv (577 samples, 0.09%)</title><rect x="29.5271%" y="613" width="0.0897%" height="15" fill="rgb(236,46,40)" fg:x="190018" fg:w="577"/><text x="29.7771%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (315 samples, 0.05%)</title><rect x="29.5678%" y="597" width="0.0489%" height="15" fill="rgb(247,202,50)" fg:x="190280" fg:w="315"/><text x="29.8178%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (276 samples, 0.04%)</title><rect x="29.5739%" y="581" width="0.0429%" height="15" fill="rgb(209,99,20)" fg:x="190319" fg:w="276"/><text x="29.8239%" y="591.50"></text></g><g><title>_ZdlPv (586 samples, 0.09%)</title><rect x="29.5262%" y="645" width="0.0911%" height="15" fill="rgb(252,27,34)" fg:x="190012" fg:w="586"/><text x="29.7762%" y="655.50"></text></g><g><title>_ZdlPv (585 samples, 0.09%)</title><rect x="29.5264%" y="629" width="0.0909%" height="15" fill="rgb(215,206,23)" fg:x="190013" fg:w="585"/><text x="29.7764%" y="639.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (83 samples, 0.01%)</title><rect x="29.6207%" y="549" width="0.0129%" height="15" fill="rgb(212,135,36)" fg:x="190620" fg:w="83"/><text x="29.8707%" y="559.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (89 samples, 0.01%)</title><rect x="29.6199%" y="565" width="0.0138%" height="15" fill="rgb(240,189,1)" fg:x="190615" fg:w="89"/><text x="29.8699%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (75 samples, 0.01%)</title><rect x="29.6653%" y="453" width="0.0117%" height="15" fill="rgb(242,56,20)" fg:x="190907" fg:w="75"/><text x="29.9153%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (94 samples, 0.01%)</title><rect x="29.6625%" y="469" width="0.0146%" height="15" fill="rgb(247,132,33)" fg:x="190889" fg:w="94"/><text x="29.9125%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (101 samples, 0.02%)</title><rect x="29.6619%" y="485" width="0.0157%" height="15" fill="rgb(208,149,11)" fg:x="190885" fg:w="101"/><text x="29.9119%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (125 samples, 0.02%)</title><rect x="29.6586%" y="517" width="0.0194%" height="15" fill="rgb(211,33,11)" fg:x="190864" fg:w="125"/><text x="29.9086%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (111 samples, 0.02%)</title><rect x="29.6608%" y="501" width="0.0172%" height="15" fill="rgb(221,29,38)" fg:x="190878" fg:w="111"/><text x="29.9108%" y="511.50"></text></g><g><title>_ZdlPv (379 samples, 0.06%)</title><rect x="29.6193%" y="581" width="0.0589%" height="15" fill="rgb(206,182,49)" fg:x="190611" fg:w="379"/><text x="29.8693%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (229 samples, 0.04%)</title><rect x="29.6426%" y="565" width="0.0356%" height="15" fill="rgb(216,140,1)" fg:x="190761" fg:w="229"/><text x="29.8926%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (171 samples, 0.03%)</title><rect x="29.6516%" y="549" width="0.0266%" height="15" fill="rgb(232,57,40)" fg:x="190819" fg:w="171"/><text x="29.9016%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (154 samples, 0.02%)</title><rect x="29.6542%" y="533" width="0.0239%" height="15" fill="rgb(224,186,18)" fg:x="190836" fg:w="154"/><text x="29.9042%" y="543.50"></text></g><g><title>_ZdlPv (396 samples, 0.06%)</title><rect x="29.6190%" y="597" width="0.0615%" height="15" fill="rgb(215,121,11)" fg:x="190609" fg:w="396"/><text x="29.8690%" y="607.50"></text></g><g><title>_ZdlPv (397 samples, 0.06%)</title><rect x="29.6190%" y="613" width="0.0617%" height="15" fill="rgb(245,147,10)" fg:x="190609" fg:w="397"/><text x="29.8690%" y="623.50"></text></g><g><title>_ZdlPv (401 samples, 0.06%)</title><rect x="29.6190%" y="629" width="0.0623%" height="15" fill="rgb(238,153,13)" fg:x="190609" fg:w="401"/><text x="29.8690%" y="639.50"></text></g><g><title>cshook_security_sb_free_security (435 samples, 0.07%)</title><rect x="29.6188%" y="645" width="0.0676%" height="15" fill="rgb(233,108,0)" fg:x="190608" fg:w="435"/><text x="29.8688%" y="655.50"></text></g><g><title>cshook_security_file_permission (1,043 samples, 0.16%)</title><rect x="29.5253%" y="693" width="0.1621%" height="15" fill="rgb(212,157,17)" fg:x="190006" fg:w="1043"/><text x="29.7753%" y="703.50"></text></g><g><title>cshook_security_sb_free_security (1,042 samples, 0.16%)</title><rect x="29.5254%" y="677" width="0.1619%" height="15" fill="rgb(225,213,38)" fg:x="190007" fg:w="1042"/><text x="29.7754%" y="687.50"></text></g><g><title>cshook_security_sb_free_security (1,039 samples, 0.16%)</title><rect x="29.5259%" y="661" width="0.1615%" height="15" fill="rgb(248,16,11)" fg:x="190010" fg:w="1039"/><text x="29.7759%" y="671.50"></text></g><g><title>exec_binprm (1,087 samples, 0.17%)</title><rect x="29.5192%" y="789" width="0.1689%" height="15" fill="rgb(241,33,4)" fg:x="189967" fg:w="1087"/><text x="29.7692%" y="799.50"></text></g><g><title>search_binary_handler (1,087 samples, 0.17%)</title><rect x="29.5192%" y="773" width="0.1689%" height="15" fill="rgb(222,26,43)" fg:x="189967" fg:w="1087"/><text x="29.7692%" y="783.50"></text></g><g><title>security_bprm_check (1,064 samples, 0.17%)</title><rect x="29.5228%" y="757" width="0.1653%" height="15" fill="rgb(243,29,36)" fg:x="189990" fg:w="1064"/><text x="29.7728%" y="767.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,064 samples, 0.17%)</title><rect x="29.5228%" y="741" width="0.1653%" height="15" fill="rgb(241,9,27)" fg:x="189990" fg:w="1064"/><text x="29.7728%" y="751.50"></text></g><g><title>cshook_security_bprm_check_security (1,064 samples, 0.17%)</title><rect x="29.5228%" y="725" width="0.1653%" height="15" fill="rgb(205,117,26)" fg:x="189990" fg:w="1064"/><text x="29.7728%" y="735.50"></text></g><g><title>cshook_security_file_permission (1,063 samples, 0.17%)</title><rect x="29.5229%" y="709" width="0.1652%" height="15" fill="rgb(209,80,39)" fg:x="189991" fg:w="1063"/><text x="29.7729%" y="719.50"></text></g><g><title>bprm_execve.part.0 (1,154 samples, 0.18%)</title><rect x="29.5172%" y="805" width="0.1793%" height="15" fill="rgb(239,155,6)" fg:x="189954" fg:w="1154"/><text x="29.7672%" y="815.50"></text></g><g><title>bprm_execve (1,155 samples, 0.18%)</title><rect x="29.5172%" y="821" width="0.1795%" height="15" fill="rgb(212,104,12)" fg:x="189954" fg:w="1155"/><text x="29.7672%" y="831.50"></text></g><g><title>[libc.so.6] (1,168 samples, 0.18%)</title><rect x="29.5163%" y="917" width="0.1815%" height="15" fill="rgb(234,204,3)" fg:x="189948" fg:w="1168"/><text x="29.7663%" y="927.50"></text></g><g><title>__GI_execve (1,167 samples, 0.18%)</title><rect x="29.5164%" y="901" width="0.1813%" height="15" fill="rgb(251,218,7)" fg:x="189949" fg:w="1167"/><text x="29.7664%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,167 samples, 0.18%)</title><rect x="29.5164%" y="885" width="0.1813%" height="15" fill="rgb(221,81,32)" fg:x="189949" fg:w="1167"/><text x="29.7664%" y="895.50"></text></g><g><title>do_syscall_64 (1,167 samples, 0.18%)</title><rect x="29.5164%" y="869" width="0.1813%" height="15" fill="rgb(214,152,26)" fg:x="189949" fg:w="1167"/><text x="29.7664%" y="879.50"></text></g><g><title>__x64_sys_execve (1,167 samples, 0.18%)</title><rect x="29.5164%" y="853" width="0.1813%" height="15" fill="rgb(223,22,3)" fg:x="189949" fg:w="1167"/><text x="29.7664%" y="863.50"></text></g><g><title>do_execveat_common.isra.0 (1,167 samples, 0.18%)</title><rect x="29.5164%" y="837" width="0.1813%" height="15" fill="rgb(207,174,7)" fg:x="189949" fg:w="1167"/><text x="29.7664%" y="847.50"></text></g><g><title>__GI___getmntent_r (92 samples, 0.01%)</title><rect x="29.6999%" y="917" width="0.0143%" height="15" fill="rgb(224,19,52)" fg:x="191130" fg:w="92"/><text x="29.9499%" y="927.50"></text></g><g><title>get_mnt_entry (91 samples, 0.01%)</title><rect x="29.7001%" y="901" width="0.0141%" height="15" fill="rgb(228,24,14)" fg:x="191131" fg:w="91"/><text x="29.9501%" y="911.50"></text></g><g><title>__x64_sys_mount (96 samples, 0.01%)</title><rect x="29.7203%" y="853" width="0.0149%" height="15" fill="rgb(230,153,43)" fg:x="191261" fg:w="96"/><text x="29.9703%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_mount (75 samples, 0.01%)</title><rect x="29.7357%" y="853" width="0.0117%" height="15" fill="rgb(231,106,12)" fg:x="191360" fg:w="75"/><text x="29.9857%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (75 samples, 0.01%)</title><rect x="29.7357%" y="837" width="0.0117%" height="15" fill="rgb(215,92,2)" fg:x="191360" fg:w="75"/><text x="29.9857%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (179 samples, 0.03%)</title><rect x="29.7197%" y="901" width="0.0278%" height="15" fill="rgb(249,143,25)" fg:x="191257" fg:w="179"/><text x="29.9697%" y="911.50"></text></g><g><title>do_syscall_64 (179 samples, 0.03%)</title><rect x="29.7197%" y="885" width="0.0278%" height="15" fill="rgb(252,7,35)" fg:x="191257" fg:w="179"/><text x="29.9697%" y="895.50"></text></g><g><title>unload_network_ops_symbols (176 samples, 0.03%)</title><rect x="29.7201%" y="869" width="0.0273%" height="15" fill="rgb(216,69,40)" fg:x="191260" fg:w="176"/><text x="29.9701%" y="879.50"></text></g><g><title>__GI___mount (182 samples, 0.03%)</title><rect x="29.7193%" y="917" width="0.0283%" height="15" fill="rgb(240,36,33)" fg:x="191255" fg:w="182"/><text x="29.9693%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (192 samples, 0.03%)</title><rect x="29.7507%" y="757" width="0.0298%" height="15" fill="rgb(231,128,14)" fg:x="191457" fg:w="192"/><text x="30.0007%" y="767.50"></text></g><g><title>x86_pmu_enable (185 samples, 0.03%)</title><rect x="29.7518%" y="741" width="0.0287%" height="15" fill="rgb(245,143,14)" fg:x="191464" fg:w="185"/><text x="30.0018%" y="751.50"></text></g><g><title>intel_pmu_enable_all (178 samples, 0.03%)</title><rect x="29.7529%" y="725" width="0.0277%" height="15" fill="rgb(222,130,28)" fg:x="191471" fg:w="178"/><text x="30.0029%" y="735.50"></text></g><g><title>native_write_msr (174 samples, 0.03%)</title><rect x="29.7535%" y="709" width="0.0270%" height="15" fill="rgb(212,10,48)" fg:x="191475" fg:w="174"/><text x="30.0035%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (209 samples, 0.03%)</title><rect x="29.7495%" y="773" width="0.0325%" height="15" fill="rgb(254,118,45)" fg:x="191449" fg:w="209"/><text x="29.9995%" y="783.50"></text></g><g><title>schedule (213 samples, 0.03%)</title><rect x="29.7493%" y="805" width="0.0331%" height="15" fill="rgb(228,6,45)" fg:x="191448" fg:w="213"/><text x="29.9993%" y="815.50"></text></g><g><title>__schedule (213 samples, 0.03%)</title><rect x="29.7493%" y="789" width="0.0331%" height="15" fill="rgb(241,18,35)" fg:x="191448" fg:w="213"/><text x="29.9993%" y="799.50"></text></g><g><title>__x64_sys_wait4 (248 samples, 0.04%)</title><rect x="29.7492%" y="869" width="0.0385%" height="15" fill="rgb(227,214,53)" fg:x="191447" fg:w="248"/><text x="29.9992%" y="879.50"></text></g><g><title>__do_sys_wait4 (248 samples, 0.04%)</title><rect x="29.7492%" y="853" width="0.0385%" height="15" fill="rgb(224,107,51)" fg:x="191447" fg:w="248"/><text x="29.9992%" y="863.50"></text></g><g><title>kernel_wait4 (248 samples, 0.04%)</title><rect x="29.7492%" y="837" width="0.0385%" height="15" fill="rgb(248,60,28)" fg:x="191447" fg:w="248"/><text x="29.9992%" y="847.50"></text></g><g><title>do_wait (247 samples, 0.04%)</title><rect x="29.7493%" y="821" width="0.0384%" height="15" fill="rgb(249,101,23)" fg:x="191448" fg:w="247"/><text x="29.9993%" y="831.50"></text></g><g><title>__GI___wait4 (251 samples, 0.04%)</title><rect x="29.7492%" y="917" width="0.0390%" height="15" fill="rgb(228,51,19)" fg:x="191447" fg:w="251"/><text x="29.9992%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (251 samples, 0.04%)</title><rect x="29.7492%" y="901" width="0.0390%" height="15" fill="rgb(213,20,6)" fg:x="191447" fg:w="251"/><text x="29.9992%" y="911.50"></text></g><g><title>do_syscall_64 (251 samples, 0.04%)</title><rect x="29.7492%" y="885" width="0.0390%" height="15" fill="rgb(212,124,10)" fg:x="191447" fg:w="251"/><text x="29.9992%" y="895.50"></text></g><g><title>dup_mm (67 samples, 0.01%)</title><rect x="29.7935%" y="773" width="0.0104%" height="15" fill="rgb(248,3,40)" fg:x="191732" fg:w="67"/><text x="30.0435%" y="783.50"></text></g><g><title>copy_process (89 samples, 0.01%)</title><rect x="29.7918%" y="789" width="0.0138%" height="15" fill="rgb(223,178,23)" fg:x="191721" fg:w="89"/><text x="30.0418%" y="799.50"></text></g><g><title>__x64_sys_clone (91 samples, 0.01%)</title><rect x="29.7918%" y="837" width="0.0141%" height="15" fill="rgb(240,132,45)" fg:x="191721" fg:w="91"/><text x="30.0418%" y="847.50"></text></g><g><title>__do_sys_clone (91 samples, 0.01%)</title><rect x="29.7918%" y="821" width="0.0141%" height="15" fill="rgb(245,164,36)" fg:x="191721" fg:w="91"/><text x="30.0418%" y="831.50"></text></g><g><title>kernel_clone (91 samples, 0.01%)</title><rect x="29.7918%" y="805" width="0.0141%" height="15" fill="rgb(231,188,53)" fg:x="191721" fg:w="91"/><text x="30.0418%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (100 samples, 0.02%)</title><rect x="29.7918%" y="869" width="0.0155%" height="15" fill="rgb(237,198,39)" fg:x="191721" fg:w="100"/><text x="30.0418%" y="879.50"></text></g><g><title>do_syscall_64 (100 samples, 0.02%)</title><rect x="29.7918%" y="853" width="0.0155%" height="15" fill="rgb(223,120,35)" fg:x="191721" fg:w="100"/><text x="30.0418%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (203 samples, 0.03%)</title><rect x="29.8127%" y="821" width="0.0315%" height="15" fill="rgb(253,107,49)" fg:x="191856" fg:w="203"/><text x="30.0627%" y="831.50"></text></g><g><title>x86_pmu_enable (196 samples, 0.03%)</title><rect x="29.8138%" y="805" width="0.0305%" height="15" fill="rgb(216,44,31)" fg:x="191863" fg:w="196"/><text x="30.0638%" y="815.50"></text></g><g><title>intel_pmu_enable_all (194 samples, 0.03%)</title><rect x="29.8141%" y="789" width="0.0301%" height="15" fill="rgb(253,87,21)" fg:x="191865" fg:w="194"/><text x="30.0641%" y="799.50"></text></g><g><title>native_write_msr (193 samples, 0.03%)</title><rect x="29.8143%" y="773" width="0.0300%" height="15" fill="rgb(226,18,2)" fg:x="191866" fg:w="193"/><text x="30.0643%" y="783.50"></text></g><g><title>finish_task_switch.isra.0 (219 samples, 0.03%)</title><rect x="29.8113%" y="837" width="0.0340%" height="15" fill="rgb(216,8,46)" fg:x="191847" fg:w="219"/><text x="30.0613%" y="847.50"></text></g><g><title>__GI__Fork (353 samples, 0.05%)</title><rect x="29.7907%" y="901" width="0.0549%" height="15" fill="rgb(226,140,39)" fg:x="191714" fg:w="353"/><text x="30.0407%" y="911.50"></text></g><g><title>arch_fork (353 samples, 0.05%)</title><rect x="29.7907%" y="885" width="0.0549%" height="15" fill="rgb(221,194,54)" fg:x="191714" fg:w="353"/><text x="30.0407%" y="895.50"></text></g><g><title>ret_from_fork (246 samples, 0.04%)</title><rect x="29.8073%" y="869" width="0.0382%" height="15" fill="rgb(213,92,11)" fg:x="191821" fg:w="246"/><text x="30.0573%" y="879.50"></text></g><g><title>schedule_tail (224 samples, 0.03%)</title><rect x="29.8107%" y="853" width="0.0348%" height="15" fill="rgb(229,162,46)" fg:x="191843" fg:w="224"/><text x="30.0607%" y="863.50"></text></g><g><title>__libc_fork (371 samples, 0.06%)</title><rect x="29.7902%" y="917" width="0.0577%" height="15" fill="rgb(214,111,36)" fg:x="191711" fg:w="371"/><text x="30.0402%" y="927.50"></text></g><g><title>Pid1Main (2,355 samples, 0.37%)</title><rect x="29.4973%" y="933" width="0.3659%" height="15" fill="rgb(207,6,21)" fg:x="189826" fg:w="2355"/><text x="29.7473%" y="943.50"></text></g><g><title>__perf_event_task_sched_in (226 samples, 0.04%)</title><rect x="29.8671%" y="885" width="0.0351%" height="15" fill="rgb(213,127,38)" fg:x="192206" fg:w="226"/><text x="30.1171%" y="895.50"></text></g><g><title>x86_pmu_enable (219 samples, 0.03%)</title><rect x="29.8682%" y="869" width="0.0340%" height="15" fill="rgb(238,118,32)" fg:x="192213" fg:w="219"/><text x="30.1182%" y="879.50"></text></g><g><title>intel_pmu_enable_all (217 samples, 0.03%)</title><rect x="29.8685%" y="853" width="0.0337%" height="15" fill="rgb(240,139,39)" fg:x="192215" fg:w="217"/><text x="30.1185%" y="863.50"></text></g><g><title>native_write_msr (217 samples, 0.03%)</title><rect x="29.8685%" y="837" width="0.0337%" height="15" fill="rgb(235,10,37)" fg:x="192215" fg:w="217"/><text x="30.1185%" y="847.50"></text></g><g><title>finish_task_switch.isra.0 (237 samples, 0.04%)</title><rect x="29.8667%" y="901" width="0.0368%" height="15" fill="rgb(249,171,38)" fg:x="192203" fg:w="237"/><text x="30.1167%" y="911.50"></text></g><g><title>schedule_tail (247 samples, 0.04%)</title><rect x="29.8653%" y="917" width="0.0384%" height="15" fill="rgb(242,144,32)" fg:x="192194" fg:w="247"/><text x="30.1153%" y="927.50"></text></g><g><title>__GI___clone (2,641 samples, 0.41%)</title><rect x="29.4971%" y="949" width="0.4104%" height="15" fill="rgb(217,117,21)" fg:x="189825" fg:w="2641"/><text x="29.7471%" y="959.50"></text></g><g><title>ret_from_fork (274 samples, 0.04%)</title><rect x="29.8649%" y="933" width="0.0426%" height="15" fill="rgb(249,87,1)" fg:x="192192" fg:w="274"/><text x="30.1149%" y="943.50"></text></g><g><title>do_anonymous_page (124 samples, 0.02%)</title><rect x="29.9458%" y="773" width="0.0193%" height="15" fill="rgb(248,196,48)" fg:x="192712" fg:w="124"/><text x="30.1958%" y="783.50"></text></g><g><title>__handle_mm_fault (143 samples, 0.02%)</title><rect x="29.9434%" y="805" width="0.0222%" height="15" fill="rgb(251,206,33)" fg:x="192697" fg:w="143"/><text x="30.1934%" y="815.50"></text></g><g><title>handle_pte_fault (134 samples, 0.02%)</title><rect x="29.9448%" y="789" width="0.0208%" height="15" fill="rgb(232,141,28)" fg:x="192706" fg:w="134"/><text x="30.1948%" y="799.50"></text></g><g><title>handle_mm_fault (154 samples, 0.02%)</title><rect x="29.9422%" y="821" width="0.0239%" height="15" fill="rgb(209,167,14)" fg:x="192689" fg:w="154"/><text x="30.1922%" y="831.50"></text></g><g><title>do_user_addr_fault (168 samples, 0.03%)</title><rect x="29.9403%" y="837" width="0.0261%" height="15" fill="rgb(225,11,50)" fg:x="192677" fg:w="168"/><text x="30.1903%" y="847.50"></text></g><g><title>asm_exc_page_fault (190 samples, 0.03%)</title><rect x="29.9394%" y="869" width="0.0295%" height="15" fill="rgb(209,50,20)" fg:x="192671" fg:w="190"/><text x="30.1894%" y="879.50"></text></g><g><title>exc_page_fault (187 samples, 0.03%)</title><rect x="29.9398%" y="853" width="0.0291%" height="15" fill="rgb(212,17,46)" fg:x="192674" fg:w="187"/><text x="30.1898%" y="863.50"></text></g><g><title>[libc.so.6] (239 samples, 0.04%)</title><rect x="29.9357%" y="885" width="0.0371%" height="15" fill="rgb(216,101,39)" fg:x="192647" fg:w="239"/><text x="30.1857%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (177 samples, 0.03%)</title><rect x="29.9894%" y="725" width="0.0275%" height="15" fill="rgb(212,228,48)" fg:x="192993" fg:w="177"/><text x="30.2394%" y="735.50"></text></g><g><title>x86_pmu_enable (173 samples, 0.03%)</title><rect x="29.9900%" y="709" width="0.0269%" height="15" fill="rgb(250,6,50)" fg:x="192997" fg:w="173"/><text x="30.2400%" y="719.50"></text></g><g><title>intel_pmu_enable_all (172 samples, 0.03%)</title><rect x="29.9902%" y="693" width="0.0267%" height="15" fill="rgb(250,160,48)" fg:x="192998" fg:w="172"/><text x="30.2402%" y="703.50"></text></g><g><title>native_write_msr (172 samples, 0.03%)</title><rect x="29.9902%" y="677" width="0.0267%" height="15" fill="rgb(244,216,33)" fg:x="192998" fg:w="172"/><text x="30.2402%" y="687.50"></text></g><g><title>finish_task_switch.isra.0 (200 samples, 0.03%)</title><rect x="29.9890%" y="741" width="0.0311%" height="15" fill="rgb(207,157,5)" fg:x="192990" fg:w="200"/><text x="30.2390%" y="751.50"></text></g><g><title>schedule (209 samples, 0.03%)</title><rect x="29.9877%" y="773" width="0.0325%" height="15" fill="rgb(228,199,8)" fg:x="192982" fg:w="209"/><text x="30.2377%" y="783.50"></text></g><g><title>__schedule (208 samples, 0.03%)</title><rect x="29.9879%" y="757" width="0.0323%" height="15" fill="rgb(227,80,20)" fg:x="192983" fg:w="208"/><text x="30.2379%" y="767.50"></text></g><g><title>do_wait (222 samples, 0.03%)</title><rect x="29.9877%" y="789" width="0.0345%" height="15" fill="rgb(222,9,33)" fg:x="192982" fg:w="222"/><text x="30.2377%" y="799.50"></text></g><g><title>__x64_sys_wait4 (226 samples, 0.04%)</title><rect x="29.9872%" y="837" width="0.0351%" height="15" fill="rgb(239,44,28)" fg:x="192979" fg:w="226"/><text x="30.2372%" y="847.50"></text></g><g><title>__do_sys_wait4 (226 samples, 0.04%)</title><rect x="29.9872%" y="821" width="0.0351%" height="15" fill="rgb(249,187,43)" fg:x="192979" fg:w="226"/><text x="30.2372%" y="831.50"></text></g><g><title>kernel_wait4 (225 samples, 0.03%)</title><rect x="29.9874%" y="805" width="0.0350%" height="15" fill="rgb(216,141,28)" fg:x="192980" fg:w="225"/><text x="30.2374%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (227 samples, 0.04%)</title><rect x="29.9872%" y="869" width="0.0353%" height="15" fill="rgb(230,154,53)" fg:x="192979" fg:w="227"/><text x="30.2372%" y="879.50"></text></g><g><title>do_syscall_64 (227 samples, 0.04%)</title><rect x="29.9872%" y="853" width="0.0353%" height="15" fill="rgb(227,82,4)" fg:x="192979" fg:w="227"/><text x="30.2372%" y="863.50"></text></g><g><title>__GI___wait4 (228 samples, 0.04%)</title><rect x="29.9872%" y="885" width="0.0354%" height="15" fill="rgb(220,107,16)" fg:x="192979" fg:w="228"/><text x="30.2372%" y="895.50"></text></g><g><title>__libc_start_main_impl (734 samples, 0.11%)</title><rect x="29.9130%" y="933" width="0.1141%" height="15" fill="rgb(207,187,2)" fg:x="192501" fg:w="734"/><text x="30.1630%" y="943.50"></text></g><g><title>__libc_start_call_main (671 samples, 0.10%)</title><rect x="29.9228%" y="917" width="0.1043%" height="15" fill="rgb(210,162,52)" fg:x="192564" fg:w="671"/><text x="30.1728%" y="927.50"></text></g><g><title>main (623 samples, 0.10%)</title><rect x="29.9302%" y="901" width="0.0968%" height="15" fill="rgb(217,216,49)" fg:x="192612" fg:w="623"/><text x="30.1802%" y="911.50"></text></g><g><title>mmap_region (75 samples, 0.01%)</title><rect x="30.0478%" y="629" width="0.0117%" height="15" fill="rgb(218,146,49)" fg:x="193369" fg:w="75"/><text x="30.2978%" y="639.50"></text></g><g><title>do_mmap (82 samples, 0.01%)</title><rect x="30.0471%" y="645" width="0.0127%" height="15" fill="rgb(216,55,40)" fg:x="193364" fg:w="82"/><text x="30.2971%" y="655.50"></text></g><g><title>__x64_sys_mmap (85 samples, 0.01%)</title><rect x="30.0468%" y="693" width="0.0132%" height="15" fill="rgb(208,196,21)" fg:x="193362" fg:w="85"/><text x="30.2968%" y="703.50"></text></g><g><title>ksys_mmap_pgoff (85 samples, 0.01%)</title><rect x="30.0468%" y="677" width="0.0132%" height="15" fill="rgb(242,117,42)" fg:x="193362" fg:w="85"/><text x="30.2968%" y="687.50"></text></g><g><title>vm_mmap_pgoff (83 samples, 0.01%)</title><rect x="30.0471%" y="661" width="0.0129%" height="15" fill="rgb(210,11,23)" fg:x="193364" fg:w="83"/><text x="30.2971%" y="671.50"></text></g><g><title>__mmap64 (98 samples, 0.02%)</title><rect x="30.0461%" y="773" width="0.0152%" height="15" fill="rgb(217,110,2)" fg:x="193358" fg:w="98"/><text x="30.2961%" y="783.50"></text></g><g><title>__mmap64 (98 samples, 0.02%)</title><rect x="30.0461%" y="757" width="0.0152%" height="15" fill="rgb(229,77,54)" fg:x="193358" fg:w="98"/><text x="30.2961%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (97 samples, 0.02%)</title><rect x="30.0463%" y="741" width="0.0151%" height="15" fill="rgb(218,53,16)" fg:x="193359" fg:w="97"/><text x="30.2963%" y="751.50"></text></g><g><title>do_syscall_64 (97 samples, 0.02%)</title><rect x="30.0463%" y="725" width="0.0151%" height="15" fill="rgb(215,38,13)" fg:x="193359" fg:w="97"/><text x="30.2963%" y="735.50"></text></g><g><title>unload_network_ops_symbols (96 samples, 0.01%)</title><rect x="30.0464%" y="709" width="0.0149%" height="15" fill="rgb(235,42,18)" fg:x="193360" fg:w="96"/><text x="30.2964%" y="719.50"></text></g><g><title>_dl_map_segments (135 samples, 0.02%)</title><rect x="30.0435%" y="789" width="0.0210%" height="15" fill="rgb(219,66,54)" fg:x="193341" fg:w="135"/><text x="30.2935%" y="799.50"></text></g><g><title>_dl_map_object_from_fd (193 samples, 0.03%)</title><rect x="30.0401%" y="805" width="0.0300%" height="15" fill="rgb(222,205,4)" fg:x="193319" fg:w="193"/><text x="30.2901%" y="815.50"></text></g><g><title>_dl_catch_exception (282 samples, 0.04%)</title><rect x="30.0340%" y="853" width="0.0438%" height="15" fill="rgb(227,213,46)" fg:x="193280" fg:w="282"/><text x="30.2840%" y="863.50"></text></g><g><title>openaux (281 samples, 0.04%)</title><rect x="30.0342%" y="837" width="0.0437%" height="15" fill="rgb(250,145,42)" fg:x="193281" fg:w="281"/><text x="30.2842%" y="847.50"></text></g><g><title>_dl_map_object (279 samples, 0.04%)</title><rect x="30.0345%" y="821" width="0.0434%" height="15" fill="rgb(219,15,2)" fg:x="193283" fg:w="279"/><text x="30.2845%" y="831.50"></text></g><g><title>_dl_map_object_deps (286 samples, 0.04%)</title><rect x="30.0335%" y="869" width="0.0444%" height="15" fill="rgb(231,181,52)" fg:x="193277" fg:w="286"/><text x="30.2835%" y="879.50"></text></g><g><title>dl_new_hash (107 samples, 0.02%)</title><rect x="30.1057%" y="805" width="0.0166%" height="15" fill="rgb(235,1,42)" fg:x="193741" fg:w="107"/><text x="30.3557%" y="815.50"></text></g><g><title>_dl_lookup_symbol_x (367 samples, 0.06%)</title><rect x="30.1018%" y="821" width="0.0570%" height="15" fill="rgb(249,88,27)" fg:x="193716" fg:w="367"/><text x="30.3518%" y="831.50"></text></g><g><title>do_lookup_x (235 samples, 0.04%)</title><rect x="30.1223%" y="805" width="0.0365%" height="15" fill="rgb(235,145,16)" fg:x="193848" fg:w="235"/><text x="30.3723%" y="815.50"></text></g><g><title>elf_machine_rela (441 samples, 0.07%)</title><rect x="30.0907%" y="837" width="0.0685%" height="15" fill="rgb(237,114,19)" fg:x="193645" fg:w="441"/><text x="30.3407%" y="847.50"></text></g><g><title>elf_dynamic_do_Rela (522 samples, 0.08%)</title><rect x="30.0833%" y="853" width="0.0811%" height="15" fill="rgb(238,51,50)" fg:x="193597" fg:w="522"/><text x="30.3333%" y="863.50"></text></g><g><title>_dl_relocate_object (549 samples, 0.09%)</title><rect x="30.0795%" y="869" width="0.0853%" height="15" fill="rgb(205,194,25)" fg:x="193573" fg:w="549"/><text x="30.3295%" y="879.50"></text></g><g><title>dl_main (919 samples, 0.14%)</title><rect x="30.0280%" y="885" width="0.1428%" height="15" fill="rgb(215,203,17)" fg:x="193241" fg:w="919"/><text x="30.2780%" y="895.50"></text></g><g><title>_dl_start_final (932 samples, 0.14%)</title><rect x="30.0270%" y="917" width="0.1448%" height="15" fill="rgb(233,112,49)" fg:x="193235" fg:w="932"/><text x="30.2770%" y="927.50"></text></g><g><title>_dl_sysdep_start (931 samples, 0.14%)</title><rect x="30.0272%" y="901" width="0.1447%" height="15" fill="rgb(241,130,26)" fg:x="193236" fg:w="931"/><text x="30.2772%" y="911.50"></text></g><g><title>_dl_start (936 samples, 0.15%)</title><rect x="30.0270%" y="933" width="0.1454%" height="15" fill="rgb(252,223,19)" fg:x="193235" fg:w="936"/><text x="30.2770%" y="943.50"></text></g><g><title>_start (1,678 samples, 0.26%)</title><rect x="29.9128%" y="949" width="0.2607%" height="15" fill="rgb(211,95,25)" fg:x="192500" fg:w="1678"/><text x="30.1628%" y="959.50"></text></g><g><title>asm_exc_page_fault (171 samples, 0.03%)</title><rect x="30.1736%" y="949" width="0.0266%" height="15" fill="rgb(251,182,27)" fg:x="194178" fg:w="171"/><text x="30.4236%" y="959.50"></text></g><g><title>mmput (74 samples, 0.01%)</title><rect x="30.2012%" y="773" width="0.0115%" height="15" fill="rgb(238,24,4)" fg:x="194356" fg:w="74"/><text x="30.4512%" y="783.50"></text></g><g><title>exit_mmap (72 samples, 0.01%)</title><rect x="30.2015%" y="757" width="0.0112%" height="15" fill="rgb(224,220,25)" fg:x="194358" fg:w="72"/><text x="30.4515%" y="767.50"></text></g><g><title>exec_mmap (75 samples, 0.01%)</title><rect x="30.2012%" y="789" width="0.0117%" height="15" fill="rgb(239,133,26)" fg:x="194356" fg:w="75"/><text x="30.4512%" y="799.50"></text></g><g><title>begin_new_exec (78 samples, 0.01%)</title><rect x="30.2009%" y="805" width="0.0121%" height="15" fill="rgb(211,94,48)" fg:x="194354" fg:w="78"/><text x="30.4509%" y="815.50"></text></g><g><title>__x64_sys_execve (125 samples, 0.02%)</title><rect x="30.2004%" y="917" width="0.0194%" height="15" fill="rgb(239,87,6)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (125 samples, 0.02%)</title><rect x="30.2004%" y="901" width="0.0194%" height="15" fill="rgb(227,62,0)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="911.50"></text></g><g><title>bprm_execve (125 samples, 0.02%)</title><rect x="30.2004%" y="885" width="0.0194%" height="15" fill="rgb(211,226,4)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="895.50"></text></g><g><title>bprm_execve.part.0 (125 samples, 0.02%)</title><rect x="30.2004%" y="869" width="0.0194%" height="15" fill="rgb(253,38,52)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="879.50"></text></g><g><title>exec_binprm (125 samples, 0.02%)</title><rect x="30.2004%" y="853" width="0.0194%" height="15" fill="rgb(229,126,40)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="863.50"></text></g><g><title>search_binary_handler (125 samples, 0.02%)</title><rect x="30.2004%" y="837" width="0.0194%" height="15" fill="rgb(229,165,44)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="847.50"></text></g><g><title>load_elf_binary (125 samples, 0.02%)</title><rect x="30.2004%" y="821" width="0.0194%" height="15" fill="rgb(247,95,47)" fg:x="194351" fg:w="125"/><text x="30.4504%" y="831.50"></text></g><g><title>unmap_single_vma (72 samples, 0.01%)</title><rect x="30.2323%" y="821" width="0.0112%" height="15" fill="rgb(216,140,30)" fg:x="194556" fg:w="72"/><text x="30.4823%" y="831.50"></text></g><g><title>unmap_page_range (71 samples, 0.01%)</title><rect x="30.2324%" y="805" width="0.0110%" height="15" fill="rgb(246,214,8)" fg:x="194557" fg:w="71"/><text x="30.4824%" y="815.50"></text></g><g><title>zap_pmd_range.isra.0 (70 samples, 0.01%)</title><rect x="30.2326%" y="789" width="0.0109%" height="15" fill="rgb(227,224,15)" fg:x="194558" fg:w="70"/><text x="30.4826%" y="799.50"></text></g><g><title>zap_pte_range (67 samples, 0.01%)</title><rect x="30.2331%" y="773" width="0.0104%" height="15" fill="rgb(233,175,4)" fg:x="194561" fg:w="67"/><text x="30.4831%" y="783.50"></text></g><g><title>exit_mm (147 samples, 0.02%)</title><rect x="30.2208%" y="885" width="0.0228%" height="15" fill="rgb(221,66,45)" fg:x="194482" fg:w="147"/><text x="30.4708%" y="895.50"></text></g><g><title>mmput (147 samples, 0.02%)</title><rect x="30.2208%" y="869" width="0.0228%" height="15" fill="rgb(221,178,18)" fg:x="194482" fg:w="147"/><text x="30.4708%" y="879.50"></text></g><g><title>exit_mmap (147 samples, 0.02%)</title><rect x="30.2208%" y="853" width="0.0228%" height="15" fill="rgb(213,81,29)" fg:x="194482" fg:w="147"/><text x="30.4708%" y="863.50"></text></g><g><title>unmap_vmas (74 samples, 0.01%)</title><rect x="30.2321%" y="837" width="0.0115%" height="15" fill="rgb(220,89,49)" fg:x="194555" fg:w="74"/><text x="30.4821%" y="847.50"></text></g><g><title>do_exit (260 samples, 0.04%)</title><rect x="30.2199%" y="901" width="0.0404%" height="15" fill="rgb(227,60,33)" fg:x="194476" fg:w="260"/><text x="30.4699%" y="911.50"></text></g><g><title>__x64_sys_exit (261 samples, 0.04%)</title><rect x="30.2199%" y="917" width="0.0406%" height="15" fill="rgb(205,113,12)" fg:x="194476" fg:w="261"/><text x="30.4699%" y="927.50"></text></g><g><title>exit_mmap (120 samples, 0.02%)</title><rect x="30.2620%" y="837" width="0.0186%" height="15" fill="rgb(211,32,1)" fg:x="194747" fg:w="120"/><text x="30.5120%" y="847.50"></text></g><g><title>unmap_vmas (66 samples, 0.01%)</title><rect x="30.2704%" y="821" width="0.0103%" height="15" fill="rgb(246,2,12)" fg:x="194801" fg:w="66"/><text x="30.5204%" y="831.50"></text></g><g><title>unmap_single_vma (65 samples, 0.01%)</title><rect x="30.2705%" y="805" width="0.0101%" height="15" fill="rgb(243,37,27)" fg:x="194802" fg:w="65"/><text x="30.5205%" y="815.50"></text></g><g><title>unmap_page_range (65 samples, 0.01%)</title><rect x="30.2705%" y="789" width="0.0101%" height="15" fill="rgb(248,211,31)" fg:x="194802" fg:w="65"/><text x="30.5205%" y="799.50"></text></g><g><title>exit_mm (121 samples, 0.02%)</title><rect x="30.2620%" y="869" width="0.0188%" height="15" fill="rgb(242,146,47)" fg:x="194747" fg:w="121"/><text x="30.5120%" y="879.50"></text></g><g><title>mmput (121 samples, 0.02%)</title><rect x="30.2620%" y="853" width="0.0188%" height="15" fill="rgb(206,70,20)" fg:x="194747" fg:w="121"/><text x="30.5120%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (550 samples, 0.09%)</title><rect x="30.2001%" y="949" width="0.0855%" height="15" fill="rgb(215,10,51)" fg:x="194349" fg:w="550"/><text x="30.4501%" y="959.50"></text></g><g><title>do_syscall_64 (548 samples, 0.09%)</title><rect x="30.2004%" y="933" width="0.0852%" height="15" fill="rgb(243,178,53)" fg:x="194351" fg:w="548"/><text x="30.4504%" y="943.50"></text></g><g><title>__x64_sys_exit_group (162 samples, 0.03%)</title><rect x="30.2604%" y="917" width="0.0252%" height="15" fill="rgb(233,221,20)" fg:x="194737" fg:w="162"/><text x="30.5104%" y="927.50"></text></g><g><title>do_group_exit (162 samples, 0.03%)</title><rect x="30.2604%" y="901" width="0.0252%" height="15" fill="rgb(218,95,35)" fg:x="194737" fg:w="162"/><text x="30.5104%" y="911.50"></text></g><g><title>do_exit (162 samples, 0.03%)</title><rect x="30.2604%" y="885" width="0.0252%" height="15" fill="rgb(229,13,5)" fg:x="194737" fg:w="162"/><text x="30.5104%" y="895.50"></text></g><g><title>linux-sandbox (5,307 samples, 0.82%)</title><rect x="29.4612%" y="965" width="0.8247%" height="15" fill="rgb(252,164,30)" fg:x="189594" fg:w="5307"/><text x="29.7112%" y="975.50"></text></g><g><title>_ZdlPv (65 samples, 0.01%)</title><rect x="30.2909%" y="581" width="0.0101%" height="15" fill="rgb(232,68,36)" fg:x="194933" fg:w="65"/><text x="30.5409%" y="591.50"></text></g><g><title>_ZdlPv (65 samples, 0.01%)</title><rect x="30.2909%" y="565" width="0.0101%" height="15" fill="rgb(219,59,54)" fg:x="194933" fg:w="65"/><text x="30.5409%" y="575.50"></text></g><g><title>cshook_security_file_permission (95 samples, 0.01%)</title><rect x="30.2909%" y="629" width="0.0148%" height="15" fill="rgb(250,92,33)" fg:x="194933" fg:w="95"/><text x="30.5409%" y="639.50"></text></g><g><title>cshook_security_sb_free_security (95 samples, 0.01%)</title><rect x="30.2909%" y="613" width="0.0148%" height="15" fill="rgb(229,162,54)" fg:x="194933" fg:w="95"/><text x="30.5409%" y="623.50"></text></g><g><title>cshook_security_sb_free_security (95 samples, 0.01%)</title><rect x="30.2909%" y="597" width="0.0148%" height="15" fill="rgb(244,114,52)" fg:x="194933" fg:w="95"/><text x="30.5409%" y="607.50"></text></g><g><title>search_binary_handler (109 samples, 0.02%)</title><rect x="30.2890%" y="709" width="0.0169%" height="15" fill="rgb(212,211,43)" fg:x="194921" fg:w="109"/><text x="30.5390%" y="719.50"></text></g><g><title>security_bprm_check (101 samples, 0.02%)</title><rect x="30.2903%" y="693" width="0.0157%" height="15" fill="rgb(226,147,8)" fg:x="194929" fg:w="101"/><text x="30.5403%" y="703.50"></text></g><g><title>pinnedhook_security_bprm_check_security (101 samples, 0.02%)</title><rect x="30.2903%" y="677" width="0.0157%" height="15" fill="rgb(226,23,13)" fg:x="194929" fg:w="101"/><text x="30.5403%" y="687.50"></text></g><g><title>cshook_security_bprm_check_security (101 samples, 0.02%)</title><rect x="30.2903%" y="661" width="0.0157%" height="15" fill="rgb(240,63,4)" fg:x="194929" fg:w="101"/><text x="30.5403%" y="671.50"></text></g><g><title>cshook_security_file_permission (101 samples, 0.02%)</title><rect x="30.2903%" y="645" width="0.0157%" height="15" fill="rgb(221,1,32)" fg:x="194929" fg:w="101"/><text x="30.5403%" y="655.50"></text></g><g><title>exec_binprm (110 samples, 0.02%)</title><rect x="30.2890%" y="725" width="0.0171%" height="15" fill="rgb(242,117,10)" fg:x="194921" fg:w="110"/><text x="30.5390%" y="735.50"></text></g><g><title>do_execveat_common.isra.0 (114 samples, 0.02%)</title><rect x="30.2889%" y="773" width="0.0177%" height="15" fill="rgb(249,172,44)" fg:x="194920" fg:w="114"/><text x="30.5389%" y="783.50"></text></g><g><title>bprm_execve (114 samples, 0.02%)</title><rect x="30.2889%" y="757" width="0.0177%" height="15" fill="rgb(244,46,45)" fg:x="194920" fg:w="114"/><text x="30.5389%" y="767.50"></text></g><g><title>bprm_execve.part.0 (114 samples, 0.02%)</title><rect x="30.2889%" y="741" width="0.0177%" height="15" fill="rgb(206,43,17)" fg:x="194920" fg:w="114"/><text x="30.5389%" y="751.50"></text></g><g><title>[libc.so.6] (116 samples, 0.02%)</title><rect x="30.2889%" y="853" width="0.0180%" height="15" fill="rgb(239,218,39)" fg:x="194920" fg:w="116"/><text x="30.5389%" y="863.50"></text></g><g><title>__GI_execve (116 samples, 0.02%)</title><rect x="30.2889%" y="837" width="0.0180%" height="15" fill="rgb(208,169,54)" fg:x="194920" fg:w="116"/><text x="30.5389%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (116 samples, 0.02%)</title><rect x="30.2889%" y="821" width="0.0180%" height="15" fill="rgb(247,25,42)" fg:x="194920" fg:w="116"/><text x="30.5389%" y="831.50"></text></g><g><title>do_syscall_64 (116 samples, 0.02%)</title><rect x="30.2889%" y="805" width="0.0180%" height="15" fill="rgb(226,23,31)" fg:x="194920" fg:w="116"/><text x="30.5389%" y="815.50"></text></g><g><title>__x64_sys_execve (116 samples, 0.02%)</title><rect x="30.2889%" y="789" width="0.0180%" height="15" fill="rgb(247,16,28)" fg:x="194920" fg:w="116"/><text x="30.5389%" y="799.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (163 samples, 0.03%)</title><rect x="30.2884%" y="885" width="0.0253%" height="15" fill="rgb(231,147,38)" fg:x="194917" fg:w="163"/><text x="30.5384%" y="895.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (163 samples, 0.03%)</title><rect x="30.2884%" y="869" width="0.0253%" height="15" fill="rgb(253,81,48)" fg:x="194917" fg:w="163"/><text x="30.5384%" y="879.50"></text></g><g><title>__libc_start_call_main (216 samples, 0.03%)</title><rect x="30.2884%" y="917" width="0.0336%" height="15" fill="rgb(249,222,43)" fg:x="194917" fg:w="216"/><text x="30.5384%" y="927.50"></text></g><g><title>main (216 samples, 0.03%)</title><rect x="30.2884%" y="901" width="0.0336%" height="15" fill="rgb(221,3,27)" fg:x="194917" fg:w="216"/><text x="30.5384%" y="911.50"></text></g><g><title>__libc_start_main_impl (222 samples, 0.03%)</title><rect x="30.2876%" y="933" width="0.0345%" height="15" fill="rgb(228,180,5)" fg:x="194912" fg:w="222"/><text x="30.5376%" y="943.50"></text></g><g><title>_dl_start (74 samples, 0.01%)</title><rect x="30.3221%" y="933" width="0.0115%" height="15" fill="rgb(227,131,42)" fg:x="195134" fg:w="74"/><text x="30.5721%" y="943.50"></text></g><g><title>_dl_start_final (74 samples, 0.01%)</title><rect x="30.3221%" y="917" width="0.0115%" height="15" fill="rgb(212,3,39)" fg:x="195134" fg:w="74"/><text x="30.5721%" y="927.50"></text></g><g><title>_dl_sysdep_start (74 samples, 0.01%)</title><rect x="30.3221%" y="901" width="0.0115%" height="15" fill="rgb(226,45,5)" fg:x="195134" fg:w="74"/><text x="30.5721%" y="911.50"></text></g><g><title>dl_main (74 samples, 0.01%)</title><rect x="30.3221%" y="885" width="0.0115%" height="15" fill="rgb(215,167,45)" fg:x="195134" fg:w="74"/><text x="30.5721%" y="895.50"></text></g><g><title>_start (297 samples, 0.05%)</title><rect x="30.2876%" y="949" width="0.0462%" height="15" fill="rgb(250,218,53)" fg:x="194912" fg:w="297"/><text x="30.5376%" y="959.50"></text></g><g><title>process-wrapper (324 samples, 0.05%)</title><rect x="30.2868%" y="965" width="0.0503%" height="15" fill="rgb(207,140,0)" fg:x="194907" fg:w="324"/><text x="30.5368%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (127 samples, 0.02%)</title><rect x="30.3571%" y="757" width="0.0197%" height="15" fill="rgb(238,133,51)" fg:x="195359" fg:w="127"/><text x="30.6071%" y="767.50"></text></g><g><title>x86_pmu_enable (121 samples, 0.02%)</title><rect x="30.3580%" y="741" width="0.0188%" height="15" fill="rgb(218,203,53)" fg:x="195365" fg:w="121"/><text x="30.6080%" y="751.50"></text></g><g><title>intel_pmu_enable_all (121 samples, 0.02%)</title><rect x="30.3580%" y="725" width="0.0188%" height="15" fill="rgb(226,184,25)" fg:x="195365" fg:w="121"/><text x="30.6080%" y="735.50"></text></g><g><title>native_write_msr (121 samples, 0.02%)</title><rect x="30.3580%" y="709" width="0.0188%" height="15" fill="rgb(231,121,21)" fg:x="195365" fg:w="121"/><text x="30.6080%" y="719.50"></text></g><g><title>finish_task_switch.isra.0 (146 samples, 0.02%)</title><rect x="30.3560%" y="773" width="0.0227%" height="15" fill="rgb(251,14,34)" fg:x="195352" fg:w="146"/><text x="30.6060%" y="783.50"></text></g><g><title>__schedule (154 samples, 0.02%)</title><rect x="30.3557%" y="789" width="0.0239%" height="15" fill="rgb(249,193,11)" fg:x="195350" fg:w="154"/><text x="30.6057%" y="799.50"></text></g><g><title>schedule (155 samples, 0.02%)</title><rect x="30.3557%" y="805" width="0.0241%" height="15" fill="rgb(220,172,37)" fg:x="195350" fg:w="155"/><text x="30.6057%" y="815.50"></text></g><g><title>do_wait (210 samples, 0.03%)</title><rect x="30.3551%" y="821" width="0.0326%" height="15" fill="rgb(231,229,43)" fg:x="195346" fg:w="210"/><text x="30.6051%" y="831.50"></text></g><g><title>__x64_sys_wait4 (212 samples, 0.03%)</title><rect x="30.3551%" y="869" width="0.0329%" height="15" fill="rgb(250,161,5)" fg:x="195346" fg:w="212"/><text x="30.6051%" y="879.50"></text></g><g><title>__do_sys_wait4 (212 samples, 0.03%)</title><rect x="30.3551%" y="853" width="0.0329%" height="15" fill="rgb(218,225,18)" fg:x="195346" fg:w="212"/><text x="30.6051%" y="863.50"></text></g><g><title>kernel_wait4 (212 samples, 0.03%)</title><rect x="30.3551%" y="837" width="0.0329%" height="15" fill="rgb(245,45,42)" fg:x="195346" fg:w="212"/><text x="30.6051%" y="847.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (214 samples, 0.03%)</title><rect x="30.3549%" y="933" width="0.0333%" height="15" fill="rgb(211,115,1)" fg:x="195345" fg:w="214"/><text x="30.6049%" y="943.50"></text></g><g><title>__GI___wait4 (213 samples, 0.03%)</title><rect x="30.3551%" y="917" width="0.0331%" height="15" fill="rgb(248,133,52)" fg:x="195346" fg:w="213"/><text x="30.6051%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (213 samples, 0.03%)</title><rect x="30.3551%" y="901" width="0.0331%" height="15" fill="rgb(238,100,21)" fg:x="195346" fg:w="213"/><text x="30.6051%" y="911.50"></text></g><g><title>do_syscall_64 (213 samples, 0.03%)</title><rect x="30.3551%" y="885" width="0.0331%" height="15" fill="rgb(247,144,11)" fg:x="195346" fg:w="213"/><text x="30.6051%" y="895.50"></text></g><g><title>[perf-733733.map] (373 samples, 0.06%)</title><rect x="30.3381%" y="949" width="0.0580%" height="15" fill="rgb(206,164,16)" fg:x="195237" fg:w="373"/><text x="30.5881%" y="959.50"></text></g><g><title>process_reaper (384 samples, 0.06%)</title><rect x="30.3372%" y="965" width="0.0597%" height="15" fill="rgb(222,34,3)" fg:x="195231" fg:w="384"/><text x="30.5872%" y="975.50"></text></g><g><title>__perf_event_task_sched_in (166 samples, 0.03%)</title><rect x="30.4778%" y="677" width="0.0258%" height="15" fill="rgb(248,82,4)" fg:x="196136" fg:w="166"/><text x="30.7278%" y="687.50"></text></g><g><title>x86_pmu_enable (162 samples, 0.03%)</title><rect x="30.4784%" y="661" width="0.0252%" height="15" fill="rgb(228,81,46)" fg:x="196140" fg:w="162"/><text x="30.7284%" y="671.50"></text></g><g><title>intel_pmu_enable_all (156 samples, 0.02%)</title><rect x="30.4794%" y="645" width="0.0242%" height="15" fill="rgb(227,67,47)" fg:x="196146" fg:w="156"/><text x="30.7294%" y="655.50"></text></g><g><title>native_write_msr (153 samples, 0.02%)</title><rect x="30.4798%" y="629" width="0.0238%" height="15" fill="rgb(215,93,53)" fg:x="196149" fg:w="153"/><text x="30.7298%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (173 samples, 0.03%)</title><rect x="30.4775%" y="693" width="0.0269%" height="15" fill="rgb(248,194,39)" fg:x="196134" fg:w="173"/><text x="30.7275%" y="703.50"></text></g><g><title>futex_wait_queue_me (214 samples, 0.03%)</title><rect x="30.4745%" y="741" width="0.0333%" height="15" fill="rgb(215,5,19)" fg:x="196115" fg:w="214"/><text x="30.7245%" y="751.50"></text></g><g><title>schedule (211 samples, 0.03%)</title><rect x="30.4750%" y="725" width="0.0328%" height="15" fill="rgb(226,215,51)" fg:x="196118" fg:w="211"/><text x="30.7250%" y="735.50"></text></g><g><title>__schedule (211 samples, 0.03%)</title><rect x="30.4750%" y="709" width="0.0328%" height="15" fill="rgb(225,56,26)" fg:x="196118" fg:w="211"/><text x="30.7250%" y="719.50"></text></g><g><title>do_futex (222 samples, 0.03%)</title><rect x="30.4744%" y="773" width="0.0345%" height="15" fill="rgb(222,75,29)" fg:x="196114" fg:w="222"/><text x="30.7244%" y="783.50"></text></g><g><title>futex_wait (222 samples, 0.03%)</title><rect x="30.4744%" y="757" width="0.0345%" height="15" fill="rgb(236,139,6)" fg:x="196114" fg:w="222"/><text x="30.7244%" y="767.50"></text></g><g><title>__x64_sys_futex (224 samples, 0.03%)</title><rect x="30.4742%" y="789" width="0.0348%" height="15" fill="rgb(223,137,36)" fg:x="196113" fg:w="224"/><text x="30.7242%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (234 samples, 0.04%)</title><rect x="30.4739%" y="821" width="0.0364%" height="15" fill="rgb(226,99,2)" fg:x="196111" fg:w="234"/><text x="30.7239%" y="831.50"></text></g><g><title>do_syscall_64 (232 samples, 0.04%)</title><rect x="30.4742%" y="805" width="0.0361%" height="15" fill="rgb(206,133,23)" fg:x="196113" fg:w="232"/><text x="30.7242%" y="815.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (238 samples, 0.04%)</title><rect x="30.4735%" y="869" width="0.0370%" height="15" fill="rgb(243,173,15)" fg:x="196108" fg:w="238"/><text x="30.7235%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (238 samples, 0.04%)</title><rect x="30.4735%" y="853" width="0.0370%" height="15" fill="rgb(228,69,28)" fg:x="196108" fg:w="238"/><text x="30.7235%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (238 samples, 0.04%)</title><rect x="30.4735%" y="837" width="0.0370%" height="15" fill="rgb(212,51,22)" fg:x="196108" fg:w="238"/><text x="30.7235%" y="847.50"></text></g><g><title>___pthread_cond_wait (252 samples, 0.04%)</title><rect x="30.4721%" y="901" width="0.0392%" height="15" fill="rgb(227,113,0)" fg:x="196099" fg:w="252"/><text x="30.7221%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (252 samples, 0.04%)</title><rect x="30.4721%" y="885" width="0.0392%" height="15" fill="rgb(252,84,27)" fg:x="196099" fg:w="252"/><text x="30.7221%" y="895.50"></text></g><g><title>Unsafe_Park (277 samples, 0.04%)</title><rect x="30.4700%" y="933" width="0.0430%" height="15" fill="rgb(223,145,39)" fg:x="196086" fg:w="277"/><text x="30.7200%" y="943.50"></text></g><g><title>Parker::park (275 samples, 0.04%)</title><rect x="30.4704%" y="917" width="0.0427%" height="15" fill="rgb(239,219,30)" fg:x="196088" fg:w="275"/><text x="30.7204%" y="927.50"></text></g><g><title>[perf-733733.map] (754 samples, 0.12%)</title><rect x="30.3989%" y="949" width="0.1172%" height="15" fill="rgb(224,196,39)" fg:x="195628" fg:w="754"/><text x="30.6489%" y="959.50"></text></g><g><title>profile-writer- (782 samples, 0.12%)</title><rect x="30.3969%" y="965" width="0.1215%" height="15" fill="rgb(205,35,43)" fg:x="195615" fg:w="782"/><text x="30.6469%" y="975.50"></text></g><g><title>_PyFunction_Vectorcall (104 samples, 0.02%)</title><rect x="30.5555%" y="917" width="0.0162%" height="15" fill="rgb(228,201,21)" fg:x="196636" fg:w="104"/><text x="30.8055%" y="927.50"></text></g><g><title>_PyEval_EvalFrameDefault (104 samples, 0.02%)</title><rect x="30.5555%" y="901" width="0.0162%" height="15" fill="rgb(237,118,16)" fg:x="196636" fg:w="104"/><text x="30.8055%" y="911.50"></text></g><g><title>_PyFunction_Vectorcall (90 samples, 0.01%)</title><rect x="30.5577%" y="885" width="0.0140%" height="15" fill="rgb(241,17,19)" fg:x="196650" fg:w="90"/><text x="30.8077%" y="895.50"></text></g><g><title>_PyEval_EvalFrameDefault (90 samples, 0.01%)</title><rect x="30.5577%" y="869" width="0.0140%" height="15" fill="rgb(214,10,25)" fg:x="196650" fg:w="90"/><text x="30.8077%" y="879.50"></text></g><g><title>_PyFunction_Vectorcall (76 samples, 0.01%)</title><rect x="30.5599%" y="853" width="0.0118%" height="15" fill="rgb(238,37,29)" fg:x="196664" fg:w="76"/><text x="30.8099%" y="863.50"></text></g><g><title>_PyEval_EvalFrameDefault (76 samples, 0.01%)</title><rect x="30.5599%" y="837" width="0.0118%" height="15" fill="rgb(253,83,25)" fg:x="196664" fg:w="76"/><text x="30.8099%" y="847.50"></text></g><g><title>_PyEval_EvalFrameDefault (162 samples, 0.03%)</title><rect x="30.5467%" y="933" width="0.0252%" height="15" fill="rgb(234,192,12)" fg:x="196579" fg:w="162"/><text x="30.7967%" y="943.50"></text></g><g><title>[unknown] (353 samples, 0.05%)</title><rect x="30.5257%" y="949" width="0.0549%" height="15" fill="rgb(241,216,45)" fg:x="196444" fg:w="353"/><text x="30.7757%" y="959.50"></text></g><g><title>Py_RunMain (96 samples, 0.01%)</title><rect x="30.5805%" y="885" width="0.0149%" height="15" fill="rgb(242,22,33)" fg:x="196797" fg:w="96"/><text x="30.8305%" y="895.50"></text></g><g><title>Py_FinalizeEx (68 samples, 0.01%)</title><rect x="30.5849%" y="869" width="0.0106%" height="15" fill="rgb(231,105,49)" fg:x="196825" fg:w="68"/><text x="30.8349%" y="879.50"></text></g><g><title>Py_InitializeFromConfig (84 samples, 0.01%)</title><rect x="30.5954%" y="853" width="0.0131%" height="15" fill="rgb(218,204,15)" fg:x="196893" fg:w="84"/><text x="30.8454%" y="863.50"></text></g><g><title>[python3.10] (84 samples, 0.01%)</title><rect x="30.5954%" y="837" width="0.0131%" height="15" fill="rgb(235,138,41)" fg:x="196893" fg:w="84"/><text x="30.8454%" y="847.50"></text></g><g><title>[python3.10] (83 samples, 0.01%)</title><rect x="30.5956%" y="821" width="0.0129%" height="15" fill="rgb(246,0,9)" fg:x="196894" fg:w="83"/><text x="30.8456%" y="831.50"></text></g><g><title>__libc_start_main_impl (183 samples, 0.03%)</title><rect x="30.5805%" y="933" width="0.0284%" height="15" fill="rgb(210,74,4)" fg:x="196797" fg:w="183"/><text x="30.8305%" y="943.50"></text></g><g><title>__libc_start_call_main (183 samples, 0.03%)</title><rect x="30.5805%" y="917" width="0.0284%" height="15" fill="rgb(250,60,41)" fg:x="196797" fg:w="183"/><text x="30.8305%" y="927.50"></text></g><g><title>Py_BytesMain (183 samples, 0.03%)</title><rect x="30.5805%" y="901" width="0.0284%" height="15" fill="rgb(220,115,12)" fg:x="196797" fg:w="183"/><text x="30.8305%" y="911.50"></text></g><g><title>[python3.10] (87 samples, 0.01%)</title><rect x="30.5954%" y="885" width="0.0135%" height="15" fill="rgb(237,100,13)" fg:x="196893" fg:w="87"/><text x="30.8454%" y="895.50"></text></g><g><title>[python3.10] (87 samples, 0.01%)</title><rect x="30.5954%" y="869" width="0.0135%" height="15" fill="rgb(213,55,26)" fg:x="196893" fg:w="87"/><text x="30.8454%" y="879.50"></text></g><g><title>_start (201 samples, 0.03%)</title><rect x="30.5805%" y="949" width="0.0312%" height="15" fill="rgb(216,17,4)" fg:x="196797" fg:w="201"/><text x="30.8305%" y="959.50"></text></g><g><title>python3 (592 samples, 0.09%)</title><rect x="30.5221%" y="965" width="0.0920%" height="15" fill="rgb(220,153,47)" fg:x="196421" fg:w="592"/><text x="30.7721%" y="975.50"></text></g><g><title>[sed] (262 samples, 0.04%)</title><rect x="30.6693%" y="837" width="0.0407%" height="15" fill="rgb(215,131,9)" fg:x="197368" fg:w="262"/><text x="30.9193%" y="847.50"></text></g><g><title>[sed] (320 samples, 0.05%)</title><rect x="30.6665%" y="853" width="0.0497%" height="15" fill="rgb(233,46,42)" fg:x="197350" fg:w="320"/><text x="30.9165%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (116 samples, 0.02%)</title><rect x="30.7202%" y="613" width="0.0180%" height="15" fill="rgb(226,86,7)" fg:x="197696" fg:w="116"/><text x="30.9702%" y="623.50"></text></g><g><title>x86_pmu_enable (116 samples, 0.02%)</title><rect x="30.7202%" y="597" width="0.0180%" height="15" fill="rgb(239,226,21)" fg:x="197696" fg:w="116"/><text x="30.9702%" y="607.50"></text></g><g><title>intel_pmu_enable_all (115 samples, 0.02%)</title><rect x="30.7204%" y="581" width="0.0179%" height="15" fill="rgb(244,137,22)" fg:x="197697" fg:w="115"/><text x="30.9704%" y="591.50"></text></g><g><title>native_write_msr (113 samples, 0.02%)</title><rect x="30.7207%" y="565" width="0.0176%" height="15" fill="rgb(211,139,35)" fg:x="197699" fg:w="113"/><text x="30.9707%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (123 samples, 0.02%)</title><rect x="30.7198%" y="629" width="0.0191%" height="15" fill="rgb(214,62,50)" fg:x="197693" fg:w="123"/><text x="30.9698%" y="639.50"></text></g><g><title>exit_to_user_mode_loop (144 samples, 0.02%)</title><rect x="30.7184%" y="677" width="0.0224%" height="15" fill="rgb(212,113,44)" fg:x="197684" fg:w="144"/><text x="30.9684%" y="687.50"></text></g><g><title>schedule (141 samples, 0.02%)</title><rect x="30.7188%" y="661" width="0.0219%" height="15" fill="rgb(226,150,43)" fg:x="197687" fg:w="141"/><text x="30.9688%" y="671.50"></text></g><g><title>__schedule (141 samples, 0.02%)</title><rect x="30.7188%" y="645" width="0.0219%" height="15" fill="rgb(250,71,37)" fg:x="197687" fg:w="141"/><text x="30.9688%" y="655.50"></text></g><g><title>syscall_exit_to_user_mode (146 samples, 0.02%)</title><rect x="30.7182%" y="709" width="0.0227%" height="15" fill="rgb(219,76,19)" fg:x="197683" fg:w="146"/><text x="30.9682%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (145 samples, 0.02%)</title><rect x="30.7184%" y="693" width="0.0225%" height="15" fill="rgb(250,39,11)" fg:x="197684" fg:w="145"/><text x="30.9684%" y="703.50"></text></g><g><title>do_syscall_64 (214 samples, 0.03%)</title><rect x="30.7179%" y="725" width="0.0333%" height="15" fill="rgb(230,64,31)" fg:x="197681" fg:w="214"/><text x="30.9679%" y="735.50"></text></g><g><title>unload_network_ops_symbols (66 samples, 0.01%)</title><rect x="30.7409%" y="709" width="0.0103%" height="15" fill="rgb(208,222,23)" fg:x="197829" fg:w="66"/><text x="30.9909%" y="719.50"></text></g><g><title>__GI___fflush_unlocked (226 samples, 0.04%)</title><rect x="30.7162%" y="853" width="0.0351%" height="15" fill="rgb(227,125,18)" fg:x="197670" fg:w="226"/><text x="30.9662%" y="863.50"></text></g><g><title>_IO_new_file_sync (226 samples, 0.04%)</title><rect x="30.7162%" y="837" width="0.0351%" height="15" fill="rgb(234,210,9)" fg:x="197670" fg:w="226"/><text x="30.9662%" y="847.50"></text></g><g><title>_IO_new_do_write (223 samples, 0.03%)</title><rect x="30.7166%" y="821" width="0.0347%" height="15" fill="rgb(217,127,24)" fg:x="197673" fg:w="223"/><text x="30.9666%" y="831.50"></text></g><g><title>_IO_new_do_write (223 samples, 0.03%)</title><rect x="30.7166%" y="805" width="0.0347%" height="15" fill="rgb(239,141,48)" fg:x="197673" fg:w="223"/><text x="30.9666%" y="815.50"></text></g><g><title>new_do_write (223 samples, 0.03%)</title><rect x="30.7166%" y="789" width="0.0347%" height="15" fill="rgb(227,109,8)" fg:x="197673" fg:w="223"/><text x="30.9666%" y="799.50"></text></g><g><title>_IO_new_file_write (221 samples, 0.03%)</title><rect x="30.7170%" y="773" width="0.0343%" height="15" fill="rgb(235,184,23)" fg:x="197675" fg:w="221"/><text x="30.9670%" y="783.50"></text></g><g><title>__GI___libc_write (217 samples, 0.03%)</title><rect x="30.7176%" y="757" width="0.0337%" height="15" fill="rgb(227,226,48)" fg:x="197679" fg:w="217"/><text x="30.9676%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (216 samples, 0.03%)</title><rect x="30.7177%" y="741" width="0.0336%" height="15" fill="rgb(206,150,11)" fg:x="197680" fg:w="216"/><text x="30.9677%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (121 samples, 0.02%)</title><rect x="30.7668%" y="629" width="0.0188%" height="15" fill="rgb(254,2,33)" fg:x="197996" fg:w="121"/><text x="31.0168%" y="639.50"></text></g><g><title>x86_pmu_enable (121 samples, 0.02%)</title><rect x="30.7668%" y="613" width="0.0188%" height="15" fill="rgb(243,160,20)" fg:x="197996" fg:w="121"/><text x="31.0168%" y="623.50"></text></g><g><title>intel_pmu_enable_all (121 samples, 0.02%)</title><rect x="30.7668%" y="597" width="0.0188%" height="15" fill="rgb(218,208,30)" fg:x="197996" fg:w="121"/><text x="31.0168%" y="607.50"></text></g><g><title>native_write_msr (120 samples, 0.02%)</title><rect x="30.7670%" y="581" width="0.0186%" height="15" fill="rgb(224,120,49)" fg:x="197997" fg:w="120"/><text x="31.0170%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (131 samples, 0.02%)</title><rect x="30.7661%" y="645" width="0.0204%" height="15" fill="rgb(246,12,2)" fg:x="197991" fg:w="131"/><text x="31.0161%" y="655.50"></text></g><g><title>schedule (152 samples, 0.02%)</title><rect x="30.7647%" y="677" width="0.0236%" height="15" fill="rgb(236,117,3)" fg:x="197982" fg:w="152"/><text x="31.0147%" y="687.50"></text></g><g><title>__schedule (152 samples, 0.02%)</title><rect x="30.7647%" y="661" width="0.0236%" height="15" fill="rgb(216,128,52)" fg:x="197982" fg:w="152"/><text x="31.0147%" y="671.50"></text></g><g><title>new_sync_read (175 samples, 0.03%)</title><rect x="30.7623%" y="709" width="0.0272%" height="15" fill="rgb(246,145,19)" fg:x="197967" fg:w="175"/><text x="31.0123%" y="719.50"></text></g><g><title>pipe_read (172 samples, 0.03%)</title><rect x="30.7628%" y="693" width="0.0267%" height="15" fill="rgb(222,11,46)" fg:x="197970" fg:w="172"/><text x="31.0128%" y="703.50"></text></g><g><title>__x64_sys_read (179 samples, 0.03%)</title><rect x="30.7620%" y="757" width="0.0278%" height="15" fill="rgb(245,82,36)" fg:x="197965" fg:w="179"/><text x="31.0120%" y="767.50"></text></g><g><title>ksys_read (179 samples, 0.03%)</title><rect x="30.7620%" y="741" width="0.0278%" height="15" fill="rgb(250,73,51)" fg:x="197965" fg:w="179"/><text x="31.0120%" y="751.50"></text></g><g><title>vfs_read (178 samples, 0.03%)</title><rect x="30.7622%" y="725" width="0.0277%" height="15" fill="rgb(221,189,23)" fg:x="197966" fg:w="178"/><text x="31.0122%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (185 samples, 0.03%)</title><rect x="30.7612%" y="805" width="0.0287%" height="15" fill="rgb(210,33,7)" fg:x="197960" fg:w="185"/><text x="31.0112%" y="815.50"></text></g><g><title>do_syscall_64 (185 samples, 0.03%)</title><rect x="30.7612%" y="789" width="0.0287%" height="15" fill="rgb(210,107,22)" fg:x="197960" fg:w="185"/><text x="31.0112%" y="799.50"></text></g><g><title>unload_network_ops_symbols (181 samples, 0.03%)</title><rect x="30.7619%" y="773" width="0.0281%" height="15" fill="rgb(222,116,37)" fg:x="197964" fg:w="181"/><text x="31.0119%" y="783.50"></text></g><g><title>_IO_new_file_underflow (243 samples, 0.04%)</title><rect x="30.7524%" y="837" width="0.0378%" height="15" fill="rgb(254,17,48)" fg:x="197903" fg:w="243"/><text x="31.0024%" y="847.50"></text></g><g><title>__GI___libc_read (186 samples, 0.03%)</title><rect x="30.7612%" y="821" width="0.0289%" height="15" fill="rgb(224,36,32)" fg:x="197960" fg:w="186"/><text x="31.0112%" y="831.50"></text></g><g><title>__GI___getdelim (254 samples, 0.04%)</title><rect x="30.7513%" y="853" width="0.0395%" height="15" fill="rgb(232,90,46)" fg:x="197896" fg:w="254"/><text x="31.0013%" y="863.50"></text></g><g><title>[sed] (825 samples, 0.13%)</title><rect x="30.6635%" y="869" width="0.1282%" height="15" fill="rgb(241,66,40)" fg:x="197331" fg:w="825"/><text x="30.9135%" y="879.50"></text></g><g><title>[sed] (899 samples, 0.14%)</title><rect x="30.6582%" y="885" width="0.1397%" height="15" fill="rgb(249,184,29)" fg:x="197297" fg:w="899"/><text x="30.9082%" y="895.50"></text></g><g><title>__GI___mbrtowc (81 samples, 0.01%)</title><rect x="30.7979%" y="885" width="0.0126%" height="15" fill="rgb(231,181,1)" fg:x="198196" fg:w="81"/><text x="31.0479%" y="895.50"></text></g><g><title>[sed] (1,169 samples, 0.18%)</title><rect x="30.6511%" y="901" width="0.1817%" height="15" fill="rgb(224,94,2)" fg:x="197251" fg:w="1169"/><text x="30.9011%" y="911.50"></text></g><g><title>do_exit (78 samples, 0.01%)</title><rect x="30.8354%" y="789" width="0.0121%" height="15" fill="rgb(229,170,15)" fg:x="198437" fg:w="78"/><text x="31.0854%" y="799.50"></text></g><g><title>__x64_sys_exit_group (81 samples, 0.01%)</title><rect x="30.8352%" y="821" width="0.0126%" height="15" fill="rgb(240,127,35)" fg:x="198436" fg:w="81"/><text x="31.0852%" y="831.50"></text></g><g><title>do_group_exit (81 samples, 0.01%)</title><rect x="30.8352%" y="805" width="0.0126%" height="15" fill="rgb(248,196,34)" fg:x="198436" fg:w="81"/><text x="31.0852%" y="815.50"></text></g><g><title>__GI__exit (86 samples, 0.01%)</title><rect x="30.8347%" y="869" width="0.0134%" height="15" fill="rgb(236,137,7)" fg:x="198433" fg:w="86"/><text x="31.0847%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.01%)</title><rect x="30.8349%" y="853" width="0.0132%" height="15" fill="rgb(235,127,16)" fg:x="198434" fg:w="85"/><text x="31.0849%" y="863.50"></text></g><g><title>do_syscall_64 (85 samples, 0.01%)</title><rect x="30.8349%" y="837" width="0.0132%" height="15" fill="rgb(250,192,54)" fg:x="198434" fg:w="85"/><text x="31.0849%" y="847.50"></text></g><g><title>[libselinux.so.1] (71 samples, 0.01%)</title><rect x="30.8504%" y="853" width="0.0110%" height="15" fill="rgb(218,98,20)" fg:x="198534" fg:w="71"/><text x="31.1004%" y="863.50"></text></g><g><title>__libc_start_call_main (1,376 samples, 0.21%)</title><rect x="30.6511%" y="917" width="0.2138%" height="15" fill="rgb(230,176,47)" fg:x="197251" fg:w="1376"/><text x="30.9011%" y="927.50"></text></g><g><title>__GI_exit (206 samples, 0.03%)</title><rect x="30.8329%" y="901" width="0.0320%" height="15" fill="rgb(244,2,33)" fg:x="198421" fg:w="206"/><text x="31.0829%" y="911.50"></text></g><g><title>__run_exit_handlers (205 samples, 0.03%)</title><rect x="30.8330%" y="885" width="0.0319%" height="15" fill="rgb(231,100,17)" fg:x="198422" fg:w="205"/><text x="31.0830%" y="895.50"></text></g><g><title>_dl_fini (108 samples, 0.02%)</title><rect x="30.8481%" y="869" width="0.0168%" height="15" fill="rgb(245,23,12)" fg:x="198519" fg:w="108"/><text x="31.0981%" y="879.50"></text></g><g><title>__libc_start_main_impl (1,385 samples, 0.22%)</title><rect x="30.6509%" y="933" width="0.2152%" height="15" fill="rgb(249,55,22)" fg:x="197250" fg:w="1385"/><text x="30.9009%" y="943.50"></text></g><g><title>[sed] (1,393 samples, 0.22%)</title><rect x="30.6503%" y="949" width="0.2165%" height="15" fill="rgb(207,134,9)" fg:x="197246" fg:w="1393"/><text x="30.9003%" y="959.50"></text></g><g><title>[unknown] (136 samples, 0.02%)</title><rect x="30.8668%" y="949" width="0.0211%" height="15" fill="rgb(218,134,0)" fg:x="198639" fg:w="136"/><text x="31.1168%" y="959.50"></text></g><g><title>__x64_sys_statfs (88 samples, 0.01%)</title><rect x="30.8940%" y="805" width="0.0137%" height="15" fill="rgb(213,212,33)" fg:x="198814" fg:w="88"/><text x="31.1440%" y="815.50"></text></g><g><title>__do_sys_statfs (88 samples, 0.01%)</title><rect x="30.8940%" y="789" width="0.0137%" height="15" fill="rgb(252,106,18)" fg:x="198814" fg:w="88"/><text x="31.1440%" y="799.50"></text></g><g><title>user_statfs (88 samples, 0.01%)</title><rect x="30.8940%" y="773" width="0.0137%" height="15" fill="rgb(208,126,42)" fg:x="198814" fg:w="88"/><text x="31.1440%" y="783.50"></text></g><g><title>user_path_at_empty (88 samples, 0.01%)</title><rect x="30.8940%" y="757" width="0.0137%" height="15" fill="rgb(246,175,29)" fg:x="198814" fg:w="88"/><text x="31.1440%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (89 samples, 0.01%)</title><rect x="30.8940%" y="837" width="0.0138%" height="15" fill="rgb(215,13,50)" fg:x="198814" fg:w="89"/><text x="31.1440%" y="847.50"></text></g><g><title>do_syscall_64 (89 samples, 0.01%)</title><rect x="30.8940%" y="821" width="0.0138%" height="15" fill="rgb(216,172,15)" fg:x="198814" fg:w="89"/><text x="31.1440%" y="831.50"></text></g><g><title>[libselinux.so.1] (108 samples, 0.02%)</title><rect x="30.8912%" y="869" width="0.0168%" height="15" fill="rgb(212,103,13)" fg:x="198796" fg:w="108"/><text x="31.1412%" y="879.50"></text></g><g><title>__statfs64 (104 samples, 0.02%)</title><rect x="30.8918%" y="853" width="0.0162%" height="15" fill="rgb(231,171,36)" fg:x="198800" fg:w="104"/><text x="31.1418%" y="863.50"></text></g><g><title>__GI___sysconf (72 samples, 0.01%)</title><rect x="30.9138%" y="869" width="0.0112%" height="15" fill="rgb(250,123,20)" fg:x="198942" fg:w="72"/><text x="31.1638%" y="879.50"></text></g><g><title>__x64_sys_openat (72 samples, 0.01%)</title><rect x="30.9370%" y="725" width="0.0112%" height="15" fill="rgb(212,53,50)" fg:x="199091" fg:w="72"/><text x="31.1870%" y="735.50"></text></g><g><title>do_sys_openat2 (71 samples, 0.01%)</title><rect x="30.9371%" y="709" width="0.0110%" height="15" fill="rgb(243,54,12)" fg:x="199092" fg:w="71"/><text x="31.1871%" y="719.50"></text></g><g><title>__GI__IO_file_open (94 samples, 0.01%)</title><rect x="30.9359%" y="805" width="0.0146%" height="15" fill="rgb(234,101,34)" fg:x="199084" fg:w="94"/><text x="31.1859%" y="815.50"></text></g><g><title>__libc_open64 (93 samples, 0.01%)</title><rect x="30.9361%" y="789" width="0.0145%" height="15" fill="rgb(254,67,22)" fg:x="199085" fg:w="93"/><text x="31.1861%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.01%)</title><rect x="30.9365%" y="773" width="0.0140%" height="15" fill="rgb(250,35,47)" fg:x="199088" fg:w="90"/><text x="31.1865%" y="783.50"></text></g><g><title>do_syscall_64 (90 samples, 0.01%)</title><rect x="30.9365%" y="757" width="0.0140%" height="15" fill="rgb(226,126,38)" fg:x="199088" fg:w="90"/><text x="31.1865%" y="767.50"></text></g><g><title>unload_network_ops_symbols (87 samples, 0.01%)</title><rect x="30.9370%" y="741" width="0.0135%" height="15" fill="rgb(216,138,53)" fg:x="199091" fg:w="87"/><text x="31.1870%" y="751.50"></text></g><g><title>_IO_new_file_fopen (114 samples, 0.02%)</title><rect x="30.9354%" y="821" width="0.0177%" height="15" fill="rgb(246,199,43)" fg:x="199081" fg:w="114"/><text x="31.1854%" y="831.50"></text></g><g><title>__fopen_internal (249 samples, 0.04%)</title><rect x="30.9354%" y="837" width="0.0387%" height="15" fill="rgb(232,125,11)" fg:x="199081" fg:w="249"/><text x="31.1854%" y="847.50"></text></g><g><title>__GI___libc_malloc (105 samples, 0.02%)</title><rect x="30.9578%" y="821" width="0.0163%" height="15" fill="rgb(218,219,45)" fg:x="199225" fg:w="105"/><text x="31.2078%" y="831.50"></text></g><g><title>tcache_init (73 samples, 0.01%)</title><rect x="30.9628%" y="805" width="0.0113%" height="15" fill="rgb(216,102,54)" fg:x="199257" fg:w="73"/><text x="31.2128%" y="815.50"></text></g><g><title>tcache_init (73 samples, 0.01%)</title><rect x="30.9628%" y="789" width="0.0113%" height="15" fill="rgb(250,228,7)" fg:x="199257" fg:w="73"/><text x="31.2128%" y="799.50"></text></g><g><title>_int_malloc (73 samples, 0.01%)</title><rect x="30.9628%" y="773" width="0.0113%" height="15" fill="rgb(226,125,25)" fg:x="199257" fg:w="73"/><text x="31.2128%" y="783.50"></text></g><g><title>sysmalloc (72 samples, 0.01%)</title><rect x="30.9629%" y="757" width="0.0112%" height="15" fill="rgb(224,165,27)" fg:x="199258" fg:w="72"/><text x="31.2129%" y="767.50"></text></g><g><title>_IO_new_fopen (285 samples, 0.04%)</title><rect x="30.9348%" y="853" width="0.0443%" height="15" fill="rgb(233,86,3)" fg:x="199077" fg:w="285"/><text x="31.1848%" y="863.50"></text></g><g><title>filesystems_proc_show (120 samples, 0.02%)</title><rect x="30.9901%" y="661" width="0.0186%" height="15" fill="rgb(228,116,20)" fg:x="199433" fg:w="120"/><text x="31.2401%" y="671.50"></text></g><g><title>seq_printf (84 samples, 0.01%)</title><rect x="30.9957%" y="645" width="0.0131%" height="15" fill="rgb(209,192,17)" fg:x="199469" fg:w="84"/><text x="31.2457%" y="655.50"></text></g><g><title>vsnprintf (72 samples, 0.01%)</title><rect x="30.9976%" y="629" width="0.0112%" height="15" fill="rgb(224,88,34)" fg:x="199481" fg:w="72"/><text x="31.2476%" y="639.50"></text></g><g><title>new_sync_read (148 samples, 0.02%)</title><rect x="30.9881%" y="709" width="0.0230%" height="15" fill="rgb(233,38,6)" fg:x="199420" fg:w="148"/><text x="31.2381%" y="719.50"></text></g><g><title>proc_reg_read_iter (145 samples, 0.02%)</title><rect x="30.9886%" y="693" width="0.0225%" height="15" fill="rgb(212,59,30)" fg:x="199423" fg:w="145"/><text x="31.2386%" y="703.50"></text></g><g><title>seq_read_iter (141 samples, 0.02%)</title><rect x="30.9892%" y="677" width="0.0219%" height="15" fill="rgb(213,80,3)" fg:x="199427" fg:w="141"/><text x="31.2392%" y="687.50"></text></g><g><title>__x64_sys_read (162 samples, 0.03%)</title><rect x="30.9877%" y="757" width="0.0252%" height="15" fill="rgb(251,178,7)" fg:x="199417" fg:w="162"/><text x="31.2377%" y="767.50"></text></g><g><title>ksys_read (162 samples, 0.03%)</title><rect x="30.9877%" y="741" width="0.0252%" height="15" fill="rgb(213,154,26)" fg:x="199417" fg:w="162"/><text x="31.2377%" y="751.50"></text></g><g><title>vfs_read (161 samples, 0.03%)</title><rect x="30.9878%" y="725" width="0.0250%" height="15" fill="rgb(238,165,49)" fg:x="199418" fg:w="161"/><text x="31.2378%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (165 samples, 0.03%)</title><rect x="30.9873%" y="805" width="0.0256%" height="15" fill="rgb(248,91,46)" fg:x="199415" fg:w="165"/><text x="31.2373%" y="815.50"></text></g><g><title>do_syscall_64 (165 samples, 0.03%)</title><rect x="30.9873%" y="789" width="0.0256%" height="15" fill="rgb(244,21,52)" fg:x="199415" fg:w="165"/><text x="31.2373%" y="799.50"></text></g><g><title>unload_network_ops_symbols (163 samples, 0.03%)</title><rect x="30.9877%" y="773" width="0.0253%" height="15" fill="rgb(247,122,20)" fg:x="199417" fg:w="163"/><text x="31.2377%" y="783.50"></text></g><g><title>_IO_new_file_underflow (196 samples, 0.03%)</title><rect x="30.9827%" y="837" width="0.0305%" height="15" fill="rgb(218,27,9)" fg:x="199385" fg:w="196"/><text x="31.2327%" y="847.50"></text></g><g><title>__GI___libc_read (168 samples, 0.03%)</title><rect x="30.9870%" y="821" width="0.0261%" height="15" fill="rgb(246,7,6)" fg:x="199413" fg:w="168"/><text x="31.2370%" y="831.50"></text></g><g><title>__GI___getdelim (221 samples, 0.03%)</title><rect x="30.9793%" y="853" width="0.0343%" height="15" fill="rgb(227,135,54)" fg:x="199363" fg:w="221"/><text x="31.2293%" y="863.50"></text></g><g><title>[libselinux.so.1] (804 samples, 0.12%)</title><rect x="30.8905%" y="885" width="0.1249%" height="15" fill="rgb(247,14,11)" fg:x="198792" fg:w="804"/><text x="31.1405%" y="895.50"></text></g><g><title>selinuxfs_exists (582 samples, 0.09%)</title><rect x="30.9250%" y="869" width="0.0904%" height="15" fill="rgb(206,149,34)" fg:x="199014" fg:w="582"/><text x="31.1750%" y="879.50"></text></g><g><title>_dl_init (875 samples, 0.14%)</title><rect x="30.8896%" y="933" width="0.1360%" height="15" fill="rgb(227,228,4)" fg:x="198786" fg:w="875"/><text x="31.1396%" y="943.50"></text></g><g><title>call_init (871 samples, 0.14%)</title><rect x="30.8902%" y="917" width="0.1353%" height="15" fill="rgb(238,218,28)" fg:x="198790" fg:w="871"/><text x="31.1402%" y="927.50"></text></g><g><title>call_init (871 samples, 0.14%)</title><rect x="30.8902%" y="901" width="0.1353%" height="15" fill="rgb(252,86,40)" fg:x="198790" fg:w="871"/><text x="31.1402%" y="911.50"></text></g><g><title>_dl_start_user (881 samples, 0.14%)</title><rect x="30.8888%" y="949" width="0.1369%" height="15" fill="rgb(251,225,11)" fg:x="198781" fg:w="881"/><text x="31.1388%" y="959.50"></text></g><g><title>__pthread_early_init (117 samples, 0.02%)</title><rect x="31.0615%" y="853" width="0.0182%" height="15" fill="rgb(206,46,49)" fg:x="199892" fg:w="117"/><text x="31.3115%" y="863.50"></text></g><g><title>do_user_addr_fault (73 samples, 0.01%)</title><rect x="31.0796%" y="821" width="0.0113%" height="15" fill="rgb(245,128,24)" fg:x="200009" fg:w="73"/><text x="31.3296%" y="831.50"></text></g><g><title>handle_mm_fault (71 samples, 0.01%)</title><rect x="31.0800%" y="805" width="0.0110%" height="15" fill="rgb(219,177,34)" fg:x="200011" fg:w="71"/><text x="31.3300%" y="815.50"></text></g><g><title>__handle_mm_fault (67 samples, 0.01%)</title><rect x="31.0806%" y="789" width="0.0104%" height="15" fill="rgb(218,60,48)" fg:x="200015" fg:w="67"/><text x="31.3306%" y="799.50"></text></g><g><title>asm_exc_page_fault (81 samples, 0.01%)</title><rect x="31.0796%" y="853" width="0.0126%" height="15" fill="rgb(221,11,5)" fg:x="200009" fg:w="81"/><text x="31.3296%" y="863.50"></text></g><g><title>exc_page_fault (81 samples, 0.01%)</title><rect x="31.0796%" y="837" width="0.0126%" height="15" fill="rgb(220,148,13)" fg:x="200009" fg:w="81"/><text x="31.3296%" y="847.50"></text></g><g><title>__libc_early_init (237 samples, 0.04%)</title><rect x="31.0563%" y="869" width="0.0368%" height="15" fill="rgb(210,16,3)" fg:x="199859" fg:w="237"/><text x="31.3063%" y="879.50"></text></g><g><title>do_syscall_64 (100 samples, 0.02%)</title><rect x="31.1222%" y="741" width="0.0155%" height="15" fill="rgb(236,80,2)" fg:x="200283" fg:w="100"/><text x="31.3722%" y="751.50"></text></g><g><title>unload_network_ops_symbols (96 samples, 0.01%)</title><rect x="31.1228%" y="725" width="0.0149%" height="15" fill="rgb(239,129,19)" fg:x="200287" fg:w="96"/><text x="31.3728%" y="735.50"></text></g><g><title>__GI___open64_nocancel (105 samples, 0.02%)</title><rect x="31.1216%" y="773" width="0.0163%" height="15" fill="rgb(220,106,35)" fg:x="200279" fg:w="105"/><text x="31.3716%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (102 samples, 0.02%)</title><rect x="31.1221%" y="757" width="0.0158%" height="15" fill="rgb(252,139,45)" fg:x="200282" fg:w="102"/><text x="31.3721%" y="767.50"></text></g><g><title>_dl_sysdep_read_whole_file (190 samples, 0.03%)</title><rect x="31.1152%" y="789" width="0.0295%" height="15" fill="rgb(229,8,36)" fg:x="200238" fg:w="190"/><text x="31.3652%" y="799.50"></text></g><g><title>_dl_load_cache_lookup (341 samples, 0.05%)</title><rect x="31.1132%" y="805" width="0.0530%" height="15" fill="rgb(230,126,33)" fg:x="200225" fg:w="341"/><text x="31.3632%" y="815.50"></text></g><g><title>search_cache (90 samples, 0.01%)</title><rect x="31.1522%" y="789" width="0.0140%" height="15" fill="rgb(239,140,21)" fg:x="200476" fg:w="90"/><text x="31.4022%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (74 samples, 0.01%)</title><rect x="31.1751%" y="709" width="0.0115%" height="15" fill="rgb(254,104,9)" fg:x="200623" fg:w="74"/><text x="31.4251%" y="719.50"></text></g><g><title>do_syscall_64 (90 samples, 0.01%)</title><rect x="31.1727%" y="757" width="0.0140%" height="15" fill="rgb(239,52,14)" fg:x="200608" fg:w="90"/><text x="31.4227%" y="767.50"></text></g><g><title>unload_network_ops_symbols (84 samples, 0.01%)</title><rect x="31.1737%" y="741" width="0.0131%" height="15" fill="rgb(208,227,44)" fg:x="200614" fg:w="84"/><text x="31.4237%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_close (75 samples, 0.01%)</title><rect x="31.1751%" y="725" width="0.0117%" height="15" fill="rgb(246,18,19)" fg:x="200623" fg:w="75"/><text x="31.4251%" y="735.50"></text></g><g><title>__GI___close_nocancel (94 samples, 0.01%)</title><rect x="31.1723%" y="789" width="0.0146%" height="15" fill="rgb(235,228,25)" fg:x="200605" fg:w="94"/><text x="31.4223%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.01%)</title><rect x="31.1727%" y="773" width="0.0141%" height="15" fill="rgb(240,156,20)" fg:x="200608" fg:w="91"/><text x="31.4227%" y="783.50"></text></g><g><title>_dl_get_file_id (67 samples, 0.01%)</title><rect x="31.1892%" y="789" width="0.0104%" height="15" fill="rgb(224,8,20)" fg:x="200714" fg:w="67"/><text x="31.4392%" y="799.50"></text></g><g><title>__GI___fstatat64 (67 samples, 0.01%)</title><rect x="31.1892%" y="773" width="0.0104%" height="15" fill="rgb(214,12,52)" fg:x="200714" fg:w="67"/><text x="31.4392%" y="783.50"></text></g><g><title>__handle_mm_fault (108 samples, 0.02%)</title><rect x="31.2050%" y="693" width="0.0168%" height="15" fill="rgb(211,220,47)" fg:x="200816" fg:w="108"/><text x="31.4550%" y="703.50"></text></g><g><title>handle_pte_fault (101 samples, 0.02%)</title><rect x="31.2061%" y="677" width="0.0157%" height="15" fill="rgb(250,173,5)" fg:x="200823" fg:w="101"/><text x="31.4561%" y="687.50"></text></g><g><title>do_fault (98 samples, 0.02%)</title><rect x="31.2066%" y="661" width="0.0152%" height="15" fill="rgb(250,125,52)" fg:x="200826" fg:w="98"/><text x="31.4566%" y="671.50"></text></g><g><title>handle_mm_fault (116 samples, 0.02%)</title><rect x="31.2046%" y="709" width="0.0180%" height="15" fill="rgb(209,133,18)" fg:x="200813" fg:w="116"/><text x="31.4546%" y="719.50"></text></g><g><title>do_user_addr_fault (125 samples, 0.02%)</title><rect x="31.2033%" y="725" width="0.0194%" height="15" fill="rgb(216,173,22)" fg:x="200805" fg:w="125"/><text x="31.4533%" y="735.50"></text></g><g><title>exc_page_fault (127 samples, 0.02%)</title><rect x="31.2033%" y="741" width="0.0197%" height="15" fill="rgb(205,3,22)" fg:x="200805" fg:w="127"/><text x="31.4533%" y="751.50"></text></g><g><title>asm_exc_page_fault (128 samples, 0.02%)</title><rect x="31.2033%" y="757" width="0.0199%" height="15" fill="rgb(248,22,20)" fg:x="200805" fg:w="128"/><text x="31.4533%" y="767.50"></text></g><g><title>[ld-linux-x86-64.so.2] (148 samples, 0.02%)</title><rect x="31.2012%" y="773" width="0.0230%" height="15" fill="rgb(233,6,29)" fg:x="200791" fg:w="148"/><text x="31.4512%" y="783.50"></text></g><g><title>__vma_adjust (166 samples, 0.03%)</title><rect x="31.2364%" y="581" width="0.0258%" height="15" fill="rgb(240,22,54)" fg:x="201018" fg:w="166"/><text x="31.4864%" y="591.50"></text></g><g><title>__split_vma (226 samples, 0.04%)</title><rect x="31.2357%" y="597" width="0.0351%" height="15" fill="rgb(231,133,32)" fg:x="201013" fg:w="226"/><text x="31.4857%" y="607.50"></text></g><g><title>unmap_region (130 samples, 0.02%)</title><rect x="31.2807%" y="597" width="0.0202%" height="15" fill="rgb(248,193,4)" fg:x="201303" fg:w="130"/><text x="31.5307%" y="607.50"></text></g><g><title>__do_munmap (440 samples, 0.07%)</title><rect x="31.2339%" y="613" width="0.0684%" height="15" fill="rgb(211,178,46)" fg:x="201002" fg:w="440"/><text x="31.4839%" y="623.50"></text></g><g><title>perf_iterate_ctx (79 samples, 0.01%)</title><rect x="31.3147%" y="565" width="0.0123%" height="15" fill="rgb(224,5,42)" fg:x="201522" fg:w="79"/><text x="31.5647%" y="575.50"></text></g><g><title>perf_event_mmap_event (151 samples, 0.02%)</title><rect x="31.3039%" y="597" width="0.0235%" height="15" fill="rgb(239,176,25)" fg:x="201452" fg:w="151"/><text x="31.5539%" y="607.50"></text></g><g><title>perf_iterate_sb (91 samples, 0.01%)</title><rect x="31.3132%" y="581" width="0.0141%" height="15" fill="rgb(245,187,50)" fg:x="201512" fg:w="91"/><text x="31.5632%" y="591.50"></text></g><g><title>perf_event_mmap (157 samples, 0.02%)</title><rect x="31.3036%" y="613" width="0.0244%" height="15" fill="rgb(248,24,15)" fg:x="201450" fg:w="157"/><text x="31.5536%" y="623.50"></text></g><g><title>mmap_region (707 samples, 0.11%)</title><rect x="31.2308%" y="629" width="0.1099%" height="15" fill="rgb(205,166,13)" fg:x="200982" fg:w="707"/><text x="31.4808%" y="639.50"></text></g><g><title>do_mmap (719 samples, 0.11%)</title><rect x="31.2293%" y="645" width="0.1117%" height="15" fill="rgb(208,114,23)" fg:x="200972" fg:w="719"/><text x="31.4793%" y="655.50"></text></g><g><title>__x64_sys_mmap (745 samples, 0.12%)</title><rect x="31.2280%" y="693" width="0.1158%" height="15" fill="rgb(239,127,18)" fg:x="200964" fg:w="745"/><text x="31.4780%" y="703.50"></text></g><g><title>ksys_mmap_pgoff (744 samples, 0.12%)</title><rect x="31.2282%" y="677" width="0.1156%" height="15" fill="rgb(219,154,28)" fg:x="200965" fg:w="744"/><text x="31.4782%" y="687.50"></text></g><g><title>vm_mmap_pgoff (739 samples, 0.11%)</title><rect x="31.2290%" y="661" width="0.1148%" height="15" fill="rgb(225,157,23)" fg:x="200970" fg:w="739"/><text x="31.4790%" y="671.50"></text></g><g><title>do_syscall_64 (857 samples, 0.13%)</title><rect x="31.2254%" y="725" width="0.1332%" height="15" fill="rgb(219,8,6)" fg:x="200947" fg:w="857"/><text x="31.4754%" y="735.50"></text></g><g><title>unload_network_ops_symbols (845 samples, 0.13%)</title><rect x="31.2273%" y="709" width="0.1313%" height="15" fill="rgb(212,47,6)" fg:x="200959" fg:w="845"/><text x="31.4773%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (862 samples, 0.13%)</title><rect x="31.2251%" y="741" width="0.1339%" height="15" fill="rgb(224,190,4)" fg:x="200945" fg:w="862"/><text x="31.4751%" y="751.50"></text></g><g><title>__mmap64 (871 samples, 0.14%)</title><rect x="31.2242%" y="773" width="0.1353%" height="15" fill="rgb(239,183,29)" fg:x="200939" fg:w="871"/><text x="31.4742%" y="783.50"></text></g><g><title>__mmap64 (871 samples, 0.14%)</title><rect x="31.2242%" y="757" width="0.1353%" height="15" fill="rgb(213,57,7)" fg:x="200939" fg:w="871"/><text x="31.4742%" y="767.50"></text></g><g><title>__vma_adjust (67 samples, 0.01%)</title><rect x="31.3679%" y="645" width="0.0104%" height="15" fill="rgb(216,148,1)" fg:x="201864" fg:w="67"/><text x="31.6179%" y="655.50"></text></g><g><title>__split_vma (83 samples, 0.01%)</title><rect x="31.3676%" y="661" width="0.0129%" height="15" fill="rgb(236,182,29)" fg:x="201862" fg:w="83"/><text x="31.6176%" y="671.50"></text></g><g><title>split_vma (84 samples, 0.01%)</title><rect x="31.3676%" y="677" width="0.0131%" height="15" fill="rgb(244,120,48)" fg:x="201862" fg:w="84"/><text x="31.6176%" y="687.50"></text></g><g><title>mprotect_fixup (126 samples, 0.02%)</title><rect x="31.3615%" y="693" width="0.0196%" height="15" fill="rgb(206,71,34)" fg:x="201823" fg:w="126"/><text x="31.6115%" y="703.50"></text></g><g><title>do_mprotect_pkey (138 samples, 0.02%)</title><rect x="31.3600%" y="709" width="0.0214%" height="15" fill="rgb(242,32,6)" fg:x="201813" fg:w="138"/><text x="31.6100%" y="719.50"></text></g><g><title>__x64_sys_mprotect (140 samples, 0.02%)</title><rect x="31.3600%" y="725" width="0.0218%" height="15" fill="rgb(241,35,3)" fg:x="201813" fg:w="140"/><text x="31.6100%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (144 samples, 0.02%)</title><rect x="31.3597%" y="757" width="0.0224%" height="15" fill="rgb(222,62,19)" fg:x="201811" fg:w="144"/><text x="31.6097%" y="767.50"></text></g><g><title>do_syscall_64 (142 samples, 0.02%)</title><rect x="31.3600%" y="741" width="0.0221%" height="15" fill="rgb(223,110,41)" fg:x="201813" fg:w="142"/><text x="31.6100%" y="751.50"></text></g><g><title>__mprotect (147 samples, 0.02%)</title><rect x="31.3595%" y="773" width="0.0228%" height="15" fill="rgb(208,224,4)" fg:x="201810" fg:w="147"/><text x="31.6095%" y="783.50"></text></g><g><title>vma_link (72 samples, 0.01%)</title><rect x="31.3994%" y="597" width="0.0112%" height="15" fill="rgb(241,137,19)" fg:x="202067" fg:w="72"/><text x="31.6494%" y="607.50"></text></g><g><title>mmap_region (148 samples, 0.02%)</title><rect x="31.3886%" y="613" width="0.0230%" height="15" fill="rgb(244,24,17)" fg:x="201997" fg:w="148"/><text x="31.6386%" y="623.50"></text></g><g><title>do_mmap (174 samples, 0.03%)</title><rect x="31.3847%" y="629" width="0.0270%" height="15" fill="rgb(245,178,49)" fg:x="201972" fg:w="174"/><text x="31.6347%" y="639.50"></text></g><g><title>ksys_mmap_pgoff (188 samples, 0.03%)</title><rect x="31.3836%" y="661" width="0.0292%" height="15" fill="rgb(219,160,38)" fg:x="201965" fg:w="188"/><text x="31.6336%" y="671.50"></text></g><g><title>vm_mmap_pgoff (182 samples, 0.03%)</title><rect x="31.3845%" y="645" width="0.0283%" height="15" fill="rgb(228,137,14)" fg:x="201971" fg:w="182"/><text x="31.6345%" y="655.50"></text></g><g><title>__x64_sys_mmap (189 samples, 0.03%)</title><rect x="31.3836%" y="677" width="0.0294%" height="15" fill="rgb(237,134,11)" fg:x="201965" fg:w="189"/><text x="31.6336%" y="687.50"></text></g><g><title>do_syscall_64 (232 samples, 0.04%)</title><rect x="31.3823%" y="709" width="0.0361%" height="15" fill="rgb(211,126,44)" fg:x="201957" fg:w="232"/><text x="31.6323%" y="719.50"></text></g><g><title>unload_network_ops_symbols (228 samples, 0.04%)</title><rect x="31.3830%" y="693" width="0.0354%" height="15" fill="rgb(226,171,33)" fg:x="201961" fg:w="228"/><text x="31.6330%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (233 samples, 0.04%)</title><rect x="31.3823%" y="725" width="0.0362%" height="15" fill="rgb(253,99,13)" fg:x="201957" fg:w="233"/><text x="31.6323%" y="735.50"></text></g><g><title>_dl_map_segment (234 samples, 0.04%)</title><rect x="31.3823%" y="773" width="0.0364%" height="15" fill="rgb(244,48,7)" fg:x="201957" fg:w="234"/><text x="31.6323%" y="783.50"></text></g><g><title>__mmap64 (234 samples, 0.04%)</title><rect x="31.3823%" y="757" width="0.0364%" height="15" fill="rgb(244,217,54)" fg:x="201957" fg:w="234"/><text x="31.6323%" y="767.50"></text></g><g><title>__mmap64 (234 samples, 0.04%)</title><rect x="31.3823%" y="741" width="0.0364%" height="15" fill="rgb(224,15,18)" fg:x="201957" fg:w="234"/><text x="31.6323%" y="751.50"></text></g><g><title>_dl_map_segments (1,413 samples, 0.22%)</title><rect x="31.1996%" y="789" width="0.2196%" height="15" fill="rgb(244,99,12)" fg:x="200781" fg:w="1413"/><text x="31.4496%" y="799.50"></text></g><g><title>do_wp_page (80 samples, 0.01%)</title><rect x="31.4426%" y="677" width="0.0124%" height="15" fill="rgb(233,226,8)" fg:x="202345" fg:w="80"/><text x="31.6926%" y="687.50"></text></g><g><title>wp_page_copy (73 samples, 0.01%)</title><rect x="31.4437%" y="661" width="0.0113%" height="15" fill="rgb(229,211,3)" fg:x="202352" fg:w="73"/><text x="31.6937%" y="671.50"></text></g><g><title>handle_pte_fault (107 samples, 0.02%)</title><rect x="31.4386%" y="693" width="0.0166%" height="15" fill="rgb(216,140,21)" fg:x="202319" fg:w="107"/><text x="31.6886%" y="703.50"></text></g><g><title>__handle_mm_fault (115 samples, 0.02%)</title><rect x="31.4375%" y="709" width="0.0179%" height="15" fill="rgb(234,122,30)" fg:x="202312" fg:w="115"/><text x="31.6875%" y="719.50"></text></g><g><title>handle_mm_fault (120 samples, 0.02%)</title><rect x="31.4369%" y="725" width="0.0186%" height="15" fill="rgb(236,25,46)" fg:x="202308" fg:w="120"/><text x="31.6869%" y="735.50"></text></g><g><title>do_user_addr_fault (128 samples, 0.02%)</title><rect x="31.4358%" y="741" width="0.0199%" height="15" fill="rgb(217,52,54)" fg:x="202301" fg:w="128"/><text x="31.6858%" y="751.50"></text></g><g><title>asm_exc_page_fault (133 samples, 0.02%)</title><rect x="31.4355%" y="773" width="0.0207%" height="15" fill="rgb(222,29,26)" fg:x="202299" fg:w="133"/><text x="31.6855%" y="783.50"></text></g><g><title>exc_page_fault (131 samples, 0.02%)</title><rect x="31.4358%" y="757" width="0.0204%" height="15" fill="rgb(216,177,29)" fg:x="202301" fg:w="131"/><text x="31.6858%" y="767.50"></text></g><g><title>elf_get_dynamic_info (156 samples, 0.02%)</title><rect x="31.4328%" y="789" width="0.0242%" height="15" fill="rgb(247,136,51)" fg:x="202282" fg:w="156"/><text x="31.6828%" y="799.50"></text></g><g><title>_dl_map_object_from_fd (1,900 samples, 0.30%)</title><rect x="31.1662%" y="805" width="0.2952%" height="15" fill="rgb(231,47,47)" fg:x="200566" fg:w="1900"/><text x="31.4162%" y="815.50"></text></g><g><title>do_filp_open (133 samples, 0.02%)</title><rect x="31.4703%" y="693" width="0.0207%" height="15" fill="rgb(211,192,36)" fg:x="202523" fg:w="133"/><text x="31.7203%" y="703.50"></text></g><g><title>path_openat (128 samples, 0.02%)</title><rect x="31.4711%" y="677" width="0.0199%" height="15" fill="rgb(229,156,32)" fg:x="202528" fg:w="128"/><text x="31.7211%" y="687.50"></text></g><g><title>do_sys_openat2 (158 samples, 0.02%)</title><rect x="31.4701%" y="709" width="0.0246%" height="15" fill="rgb(248,213,20)" fg:x="202522" fg:w="158"/><text x="31.7201%" y="719.50"></text></g><g><title>__x64_sys_openat (168 samples, 0.03%)</title><rect x="31.4692%" y="725" width="0.0261%" height="15" fill="rgb(217,64,7)" fg:x="202516" fg:w="168"/><text x="31.7192%" y="735.50"></text></g><g><title>cshook_systemcalltable_post_openat (148 samples, 0.02%)</title><rect x="31.4953%" y="725" width="0.0230%" height="15" fill="rgb(232,142,8)" fg:x="202684" fg:w="148"/><text x="31.7453%" y="735.50"></text></g><g><title>fshook_syscalltable_pre_lchown (114 samples, 0.02%)</title><rect x="31.5006%" y="709" width="0.0177%" height="15" fill="rgb(224,92,44)" fg:x="202718" fg:w="114"/><text x="31.7506%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (332 samples, 0.05%)</title><rect x="31.4675%" y="773" width="0.0516%" height="15" fill="rgb(214,169,17)" fg:x="202505" fg:w="332"/><text x="31.7175%" y="783.50"></text></g><g><title>do_syscall_64 (331 samples, 0.05%)</title><rect x="31.4677%" y="757" width="0.0514%" height="15" fill="rgb(210,59,37)" fg:x="202506" fg:w="331"/><text x="31.7177%" y="767.50"></text></g><g><title>unload_network_ops_symbols (323 samples, 0.05%)</title><rect x="31.4689%" y="741" width="0.0502%" height="15" fill="rgb(214,116,48)" fg:x="202514" fg:w="323"/><text x="31.7189%" y="751.50"></text></g><g><title>__GI___open64_nocancel (338 samples, 0.05%)</title><rect x="31.4667%" y="789" width="0.0525%" height="15" fill="rgb(244,191,6)" fg:x="202500" fg:w="338"/><text x="31.7167%" y="799.50"></text></g><g><title>__x64_sys_read (67 samples, 0.01%)</title><rect x="31.5217%" y="725" width="0.0104%" height="15" fill="rgb(241,50,52)" fg:x="202854" fg:w="67"/><text x="31.7717%" y="735.50"></text></g><g><title>ksys_read (66 samples, 0.01%)</title><rect x="31.5219%" y="709" width="0.0103%" height="15" fill="rgb(236,75,39)" fg:x="202855" fg:w="66"/><text x="31.7719%" y="719.50"></text></g><g><title>__GI___read_nocancel (81 samples, 0.01%)</title><rect x="31.5205%" y="789" width="0.0126%" height="15" fill="rgb(236,99,0)" fg:x="202846" fg:w="81"/><text x="31.7705%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.01%)</title><rect x="31.5205%" y="773" width="0.0126%" height="15" fill="rgb(207,202,15)" fg:x="202846" fg:w="81"/><text x="31.7705%" y="783.50"></text></g><g><title>do_syscall_64 (80 samples, 0.01%)</title><rect x="31.5206%" y="757" width="0.0124%" height="15" fill="rgb(233,207,14)" fg:x="202847" fg:w="80"/><text x="31.7706%" y="767.50"></text></g><g><title>unload_network_ops_symbols (74 samples, 0.01%)</title><rect x="31.5216%" y="741" width="0.0115%" height="15" fill="rgb(226,27,51)" fg:x="202853" fg:w="74"/><text x="31.7716%" y="751.50"></text></g><g><title>open_verify (436 samples, 0.07%)</title><rect x="31.4658%" y="805" width="0.0678%" height="15" fill="rgb(206,104,42)" fg:x="202494" fg:w="436"/><text x="31.7158%" y="815.50"></text></g><g><title>_dl_map_object_deps (2,788 samples, 0.43%)</title><rect x="31.1016%" y="869" width="0.4332%" height="15" fill="rgb(212,225,4)" fg:x="200150" fg:w="2788"/><text x="31.3516%" y="879.50"></text></g><g><title>_dl_catch_exception (2,766 samples, 0.43%)</title><rect x="31.1050%" y="853" width="0.4298%" height="15" fill="rgb(233,96,42)" fg:x="200172" fg:w="2766"/><text x="31.3550%" y="863.50"></text></g><g><title>openaux (2,761 samples, 0.43%)</title><rect x="31.1057%" y="837" width="0.4290%" height="15" fill="rgb(229,21,32)" fg:x="200177" fg:w="2761"/><text x="31.3557%" y="847.50"></text></g><g><title>_dl_map_object (2,759 samples, 0.43%)</title><rect x="31.1061%" y="821" width="0.4287%" height="15" fill="rgb(226,216,24)" fg:x="200179" fg:w="2759"/><text x="31.3561%" y="831.50"></text></g><g><title>_dl_receive_error (80 samples, 0.01%)</title><rect x="31.5377%" y="869" width="0.0124%" height="15" fill="rgb(221,163,17)" fg:x="202957" fg:w="80"/><text x="31.7877%" y="879.50"></text></g><g><title>version_check_doit (80 samples, 0.01%)</title><rect x="31.5377%" y="853" width="0.0124%" height="15" fill="rgb(216,216,42)" fg:x="202957" fg:w="80"/><text x="31.7877%" y="863.50"></text></g><g><title>_dl_check_all_versions (78 samples, 0.01%)</title><rect x="31.5380%" y="837" width="0.0121%" height="15" fill="rgb(240,118,7)" fg:x="202959" fg:w="78"/><text x="31.7880%" y="847.50"></text></g><g><title>_dl_check_map_versions (77 samples, 0.01%)</title><rect x="31.5382%" y="821" width="0.0120%" height="15" fill="rgb(221,67,37)" fg:x="202960" fg:w="77"/><text x="31.7882%" y="831.50"></text></g><g><title>perf_event_mmap_event (90 samples, 0.01%)</title><rect x="31.5631%" y="725" width="0.0140%" height="15" fill="rgb(241,32,44)" fg:x="203120" fg:w="90"/><text x="31.8131%" y="735.50"></text></g><g><title>perf_event_mmap (97 samples, 0.02%)</title><rect x="31.5624%" y="741" width="0.0151%" height="15" fill="rgb(235,204,43)" fg:x="203116" fg:w="97"/><text x="31.8124%" y="751.50"></text></g><g><title>__vma_adjust (89 samples, 0.01%)</title><rect x="31.5781%" y="709" width="0.0138%" height="15" fill="rgb(213,116,10)" fg:x="203217" fg:w="89"/><text x="31.8281%" y="719.50"></text></g><g><title>split_vma (128 samples, 0.02%)</title><rect x="31.5777%" y="741" width="0.0199%" height="15" fill="rgb(239,15,48)" fg:x="203214" fg:w="128"/><text x="31.8277%" y="751.50"></text></g><g><title>__split_vma (128 samples, 0.02%)</title><rect x="31.5777%" y="725" width="0.0199%" height="15" fill="rgb(207,123,36)" fg:x="203214" fg:w="128"/><text x="31.8277%" y="735.50"></text></g><g><title>mprotect_fixup (274 samples, 0.04%)</title><rect x="31.5553%" y="757" width="0.0426%" height="15" fill="rgb(209,103,30)" fg:x="203070" fg:w="274"/><text x="31.8053%" y="767.50"></text></g><g><title>do_mprotect_pkey (297 samples, 0.05%)</title><rect x="31.5534%" y="773" width="0.0462%" height="15" fill="rgb(238,100,19)" fg:x="203058" fg:w="297"/><text x="31.8034%" y="783.50"></text></g><g><title>__x64_sys_mprotect (306 samples, 0.05%)</title><rect x="31.5533%" y="789" width="0.0475%" height="15" fill="rgb(244,30,14)" fg:x="203057" fg:w="306"/><text x="31.8033%" y="799.50"></text></g><g><title>do_syscall_64 (313 samples, 0.05%)</title><rect x="31.5531%" y="805" width="0.0486%" height="15" fill="rgb(249,174,6)" fg:x="203056" fg:w="313"/><text x="31.8031%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (314 samples, 0.05%)</title><rect x="31.5531%" y="821" width="0.0488%" height="15" fill="rgb(235,213,41)" fg:x="203056" fg:w="314"/><text x="31.8031%" y="831.50"></text></g><g><title>_dl_protect_relro (322 samples, 0.05%)</title><rect x="31.5520%" y="853" width="0.0500%" height="15" fill="rgb(213,118,6)" fg:x="203049" fg:w="322"/><text x="31.8020%" y="863.50"></text></g><g><title>__mprotect (320 samples, 0.05%)</title><rect x="31.5523%" y="837" width="0.0497%" height="15" fill="rgb(235,44,51)" fg:x="203051" fg:w="320"/><text x="31.8023%" y="847.50"></text></g><g><title>elf_machine_lazy_rel (72 samples, 0.01%)</title><rect x="31.6101%" y="837" width="0.0112%" height="15" fill="rgb(217,9,53)" fg:x="203423" fg:w="72"/><text x="31.8601%" y="847.50"></text></g><g><title>dl_new_hash (97 samples, 0.02%)</title><rect x="31.6636%" y="805" width="0.0151%" height="15" fill="rgb(237,172,34)" fg:x="203767" fg:w="97"/><text x="31.9136%" y="815.50"></text></g><g><title>check_match (307 samples, 0.05%)</title><rect x="31.7407%" y="789" width="0.0477%" height="15" fill="rgb(206,206,11)" fg:x="204263" fg:w="307"/><text x="31.9907%" y="799.50"></text></g><g><title>strcmp (187 samples, 0.03%)</title><rect x="31.7593%" y="773" width="0.0291%" height="15" fill="rgb(214,149,29)" fg:x="204383" fg:w="187"/><text x="32.0093%" y="783.50"></text></g><g><title>_dl_lookup_symbol_x (876 samples, 0.14%)</title><rect x="31.6535%" y="821" width="0.1361%" height="15" fill="rgb(208,123,3)" fg:x="203702" fg:w="876"/><text x="31.9035%" y="831.50"></text></g><g><title>do_lookup_x (714 samples, 0.11%)</title><rect x="31.6787%" y="805" width="0.1109%" height="15" fill="rgb(229,126,4)" fg:x="203864" fg:w="714"/><text x="31.9287%" y="815.50"></text></g><g><title>elf_machine_rela (1,102 samples, 0.17%)</title><rect x="31.6213%" y="837" width="0.1712%" height="15" fill="rgb(222,92,36)" fg:x="203495" fg:w="1102"/><text x="31.8713%" y="847.50"></text></g><g><title>elf_dynamic_do_Rela (1,336 samples, 0.21%)</title><rect x="31.6021%" y="853" width="0.2076%" height="15" fill="rgb(216,39,41)" fg:x="203371" fg:w="1336"/><text x="31.8521%" y="863.50"></text></g><g><title>elf_machine_rela_relative (110 samples, 0.02%)</title><rect x="31.7926%" y="837" width="0.0171%" height="15" fill="rgb(253,127,28)" fg:x="204597" fg:w="110"/><text x="32.0426%" y="847.50"></text></g><g><title>_dl_relocate_object (1,694 samples, 0.26%)</title><rect x="31.5502%" y="869" width="0.2632%" height="15" fill="rgb(249,152,51)" fg:x="203037" fg:w="1694"/><text x="31.8002%" y="879.50"></text></g><g><title>unmap_region (112 samples, 0.02%)</title><rect x="31.8156%" y="757" width="0.0174%" height="15" fill="rgb(209,123,42)" fg:x="204745" fg:w="112"/><text x="32.0656%" y="767.50"></text></g><g><title>__vm_munmap (124 samples, 0.02%)</title><rect x="31.8139%" y="789" width="0.0193%" height="15" fill="rgb(241,118,22)" fg:x="204734" fg:w="124"/><text x="32.0639%" y="799.50"></text></g><g><title>__do_munmap (123 samples, 0.02%)</title><rect x="31.8140%" y="773" width="0.0191%" height="15" fill="rgb(208,25,7)" fg:x="204735" fg:w="123"/><text x="32.0640%" y="783.50"></text></g><g><title>__x64_sys_munmap (125 samples, 0.02%)</title><rect x="31.8139%" y="805" width="0.0194%" height="15" fill="rgb(243,144,39)" fg:x="204734" fg:w="125"/><text x="32.0639%" y="815.50"></text></g><g><title>_dl_unload_cache (181 samples, 0.03%)</title><rect x="31.8134%" y="869" width="0.0281%" height="15" fill="rgb(250,50,5)" fg:x="204731" fg:w="181"/><text x="32.0634%" y="879.50"></text></g><g><title>munmap (181 samples, 0.03%)</title><rect x="31.8134%" y="853" width="0.0281%" height="15" fill="rgb(207,67,11)" fg:x="204731" fg:w="181"/><text x="32.0634%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (178 samples, 0.03%)</title><rect x="31.8139%" y="837" width="0.0277%" height="15" fill="rgb(245,204,40)" fg:x="204734" fg:w="178"/><text x="32.0639%" y="847.50"></text></g><g><title>do_syscall_64 (178 samples, 0.03%)</title><rect x="31.8139%" y="821" width="0.0277%" height="15" fill="rgb(238,228,24)" fg:x="204734" fg:w="178"/><text x="32.0639%" y="831.50"></text></g><g><title>call_init_paths (102 samples, 0.02%)</title><rect x="31.8417%" y="869" width="0.0158%" height="15" fill="rgb(217,116,22)" fg:x="204913" fg:w="102"/><text x="32.0917%" y="879.50"></text></g><g><title>_dl_init_paths (102 samples, 0.02%)</title><rect x="31.8417%" y="853" width="0.0158%" height="15" fill="rgb(234,98,12)" fg:x="204913" fg:w="102"/><text x="32.0917%" y="863.50"></text></g><g><title>init_tls (86 samples, 0.01%)</title><rect x="31.8650%" y="869" width="0.0134%" height="15" fill="rgb(242,170,50)" fg:x="205063" fg:w="86"/><text x="32.1150%" y="879.50"></text></g><g><title>dl_main (5,477 samples, 0.85%)</title><rect x="31.0405%" y="885" width="0.8511%" height="15" fill="rgb(235,7,5)" fg:x="199757" fg:w="5477"/><text x="31.2905%" y="895.50"></text></g><g><title>dl_init_cacheinfo (84 samples, 0.01%)</title><rect x="31.8940%" y="853" width="0.0131%" height="15" fill="rgb(241,114,28)" fg:x="205250" fg:w="84"/><text x="32.1440%" y="863.50"></text></g><g><title>handle_intel (74 samples, 0.01%)</title><rect x="31.8956%" y="837" width="0.0115%" height="15" fill="rgb(246,112,42)" fg:x="205260" fg:w="74"/><text x="32.1456%" y="847.50"></text></g><g><title>dl_platform_init (130 samples, 0.02%)</title><rect x="31.8916%" y="885" width="0.0202%" height="15" fill="rgb(248,228,14)" fg:x="205234" fg:w="130"/><text x="32.1416%" y="895.50"></text></g><g><title>init_cpu_features (120 samples, 0.02%)</title><rect x="31.8931%" y="869" width="0.0186%" height="15" fill="rgb(208,133,18)" fg:x="205244" fg:w="120"/><text x="32.1431%" y="879.50"></text></g><g><title>_dl_start_final (5,697 samples, 0.89%)</title><rect x="31.0288%" y="917" width="0.8853%" height="15" fill="rgb(207,35,49)" fg:x="199682" fg:w="5697"/><text x="31.2788%" y="927.50"></text></g><g><title>_dl_sysdep_start (5,671 samples, 0.88%)</title><rect x="31.0329%" y="901" width="0.8812%" height="15" fill="rgb(205,68,36)" fg:x="199708" fg:w="5671"/><text x="31.2829%" y="911.50"></text></g><g><title>_dl_start (5,783 samples, 0.90%)</title><rect x="31.0270%" y="933" width="0.8986%" height="15" fill="rgb(245,62,40)" fg:x="199670" fg:w="5783"/><text x="31.2770%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (90 samples, 0.01%)</title><rect x="31.9334%" y="933" width="0.0140%" height="15" fill="rgb(228,27,24)" fg:x="205503" fg:w="90"/><text x="32.1834%" y="943.50"></text></g><g><title>do_syscall_64 (90 samples, 0.01%)</title><rect x="31.9334%" y="917" width="0.0140%" height="15" fill="rgb(253,19,12)" fg:x="205503" fg:w="90"/><text x="32.1834%" y="927.50"></text></g><g><title>_start (5,933 samples, 0.92%)</title><rect x="31.0257%" y="949" width="0.9219%" height="15" fill="rgb(232,28,20)" fg:x="199662" fg:w="5933"/><text x="31.2757%" y="959.50"></text></g><g><title>asm_exc_page_fault (254 samples, 0.04%)</title><rect x="31.9477%" y="949" width="0.0395%" height="15" fill="rgb(218,35,51)" fg:x="205595" fg:w="254"/><text x="32.1977%" y="959.50"></text></g><g><title>__clear_user (74 samples, 0.01%)</title><rect x="31.9994%" y="789" width="0.0115%" height="15" fill="rgb(212,90,40)" fg:x="205928" fg:w="74"/><text x="32.2494%" y="799.50"></text></g><g><title>asm_exc_page_fault (72 samples, 0.01%)</title><rect x="31.9997%" y="773" width="0.0112%" height="15" fill="rgb(220,172,12)" fg:x="205930" fg:w="72"/><text x="32.2497%" y="783.50"></text></g><g><title>exc_page_fault (72 samples, 0.01%)</title><rect x="31.9997%" y="757" width="0.0112%" height="15" fill="rgb(226,159,20)" fg:x="205930" fg:w="72"/><text x="32.2497%" y="767.50"></text></g><g><title>do_user_addr_fault (72 samples, 0.01%)</title><rect x="31.9997%" y="741" width="0.0112%" height="15" fill="rgb(234,205,16)" fg:x="205930" fg:w="72"/><text x="32.2497%" y="751.50"></text></g><g><title>handle_mm_fault (70 samples, 0.01%)</title><rect x="32.0000%" y="725" width="0.0109%" height="15" fill="rgb(207,9,39)" fg:x="205932" fg:w="70"/><text x="32.2500%" y="735.50"></text></g><g><title>__handle_mm_fault (69 samples, 0.01%)</title><rect x="32.0002%" y="709" width="0.0107%" height="15" fill="rgb(249,143,15)" fg:x="205933" fg:w="69"/><text x="32.2502%" y="719.50"></text></g><g><title>clear_user (78 samples, 0.01%)</title><rect x="31.9992%" y="805" width="0.0121%" height="15" fill="rgb(253,133,29)" fg:x="205927" fg:w="78"/><text x="32.2492%" y="815.50"></text></g><g><title>mmap_region (84 samples, 0.01%)</title><rect x="32.0176%" y="741" width="0.0131%" height="15" fill="rgb(221,187,0)" fg:x="206045" fg:w="84"/><text x="32.2676%" y="751.50"></text></g><g><title>do_mmap (90 samples, 0.01%)</title><rect x="32.0170%" y="757" width="0.0140%" height="15" fill="rgb(205,204,26)" fg:x="206041" fg:w="90"/><text x="32.2670%" y="767.50"></text></g><g><title>vm_mmap (102 samples, 0.02%)</title><rect x="32.0165%" y="789" width="0.0158%" height="15" fill="rgb(224,68,54)" fg:x="206038" fg:w="102"/><text x="32.2665%" y="799.50"></text></g><g><title>vm_mmap_pgoff (100 samples, 0.02%)</title><rect x="32.0168%" y="773" width="0.0155%" height="15" fill="rgb(209,67,4)" fg:x="206040" fg:w="100"/><text x="32.2668%" y="783.50"></text></g><g><title>elf_map (136 samples, 0.02%)</title><rect x="32.0162%" y="805" width="0.0211%" height="15" fill="rgb(228,229,18)" fg:x="206036" fg:w="136"/><text x="32.2662%" y="815.50"></text></g><g><title>mmap_region (85 samples, 0.01%)</title><rect x="32.0462%" y="725" width="0.0132%" height="15" fill="rgb(231,89,13)" fg:x="206229" fg:w="85"/><text x="32.2962%" y="735.50"></text></g><g><title>do_mmap (94 samples, 0.01%)</title><rect x="32.0451%" y="741" width="0.0146%" height="15" fill="rgb(210,182,18)" fg:x="206222" fg:w="94"/><text x="32.2951%" y="751.50"></text></g><g><title>vm_mmap (100 samples, 0.02%)</title><rect x="32.0448%" y="773" width="0.0155%" height="15" fill="rgb(240,105,2)" fg:x="206220" fg:w="100"/><text x="32.2948%" y="783.50"></text></g><g><title>vm_mmap_pgoff (98 samples, 0.02%)</title><rect x="32.0451%" y="757" width="0.0152%" height="15" fill="rgb(207,170,50)" fg:x="206222" fg:w="98"/><text x="32.2951%" y="767.50"></text></g><g><title>elf_map (146 samples, 0.02%)</title><rect x="32.0446%" y="789" width="0.0227%" height="15" fill="rgb(232,133,24)" fg:x="206219" fg:w="146"/><text x="32.2946%" y="799.50"></text></g><g><title>load_elf_interp.constprop.0 (192 samples, 0.03%)</title><rect x="32.0379%" y="805" width="0.0298%" height="15" fill="rgb(235,166,27)" fg:x="206176" fg:w="192"/><text x="32.2879%" y="815.50"></text></g><g><title>setup_arg_pages (97 samples, 0.02%)</title><rect x="32.0686%" y="805" width="0.0151%" height="15" fill="rgb(209,19,13)" fg:x="206373" fg:w="97"/><text x="32.3186%" y="815.50"></text></g><g><title>load_elf_binary (626 samples, 0.10%)</title><rect x="31.9882%" y="821" width="0.0973%" height="15" fill="rgb(226,79,39)" fg:x="205856" fg:w="626"/><text x="32.2382%" y="831.50"></text></g><g><title>__x64_sys_execve (632 samples, 0.10%)</title><rect x="31.9879%" y="917" width="0.0982%" height="15" fill="rgb(222,163,10)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (632 samples, 0.10%)</title><rect x="31.9879%" y="901" width="0.0982%" height="15" fill="rgb(214,44,19)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="911.50"></text></g><g><title>bprm_execve (632 samples, 0.10%)</title><rect x="31.9879%" y="885" width="0.0982%" height="15" fill="rgb(210,217,13)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="895.50"></text></g><g><title>bprm_execve.part.0 (632 samples, 0.10%)</title><rect x="31.9879%" y="869" width="0.0982%" height="15" fill="rgb(237,61,54)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="879.50"></text></g><g><title>exec_binprm (632 samples, 0.10%)</title><rect x="31.9879%" y="853" width="0.0982%" height="15" fill="rgb(226,184,24)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="863.50"></text></g><g><title>search_binary_handler (632 samples, 0.10%)</title><rect x="31.9879%" y="837" width="0.0982%" height="15" fill="rgb(223,226,4)" fg:x="205854" fg:w="632"/><text x="32.2379%" y="847.50"></text></g><g><title>free_pgtables (96 samples, 0.01%)</title><rect x="32.1147%" y="821" width="0.0149%" height="15" fill="rgb(210,26,41)" fg:x="206670" fg:w="96"/><text x="32.3647%" y="831.50"></text></g><g><title>free_pages_and_swap_cache (162 samples, 0.03%)</title><rect x="32.1433%" y="805" width="0.0252%" height="15" fill="rgb(220,221,6)" fg:x="206854" fg:w="162"/><text x="32.3933%" y="815.50"></text></g><g><title>release_pages (155 samples, 0.02%)</title><rect x="32.1444%" y="789" width="0.0241%" height="15" fill="rgb(225,89,49)" fg:x="206861" fg:w="155"/><text x="32.3944%" y="799.50"></text></g><g><title>tlb_finish_mmu (193 samples, 0.03%)</title><rect x="32.1421%" y="821" width="0.0300%" height="15" fill="rgb(218,70,45)" fg:x="206846" fg:w="193"/><text x="32.3921%" y="831.50"></text></g><g><title>page_remove_file_rmap (81 samples, 0.01%)</title><rect x="32.2420%" y="725" width="0.0126%" height="15" fill="rgb(238,166,21)" fg:x="207489" fg:w="81"/><text x="32.4920%" y="735.50"></text></g><g><title>page_remove_rmap (153 samples, 0.02%)</title><rect x="32.2331%" y="741" width="0.0238%" height="15" fill="rgb(224,141,44)" fg:x="207432" fg:w="153"/><text x="32.4831%" y="751.50"></text></g><g><title>unmap_single_vma (564 samples, 0.09%)</title><rect x="32.1741%" y="805" width="0.0876%" height="15" fill="rgb(230,12,49)" fg:x="207052" fg:w="564"/><text x="32.4241%" y="815.50"></text></g><g><title>unmap_page_range (558 samples, 0.09%)</title><rect x="32.1750%" y="789" width="0.0867%" height="15" fill="rgb(212,174,12)" fg:x="207058" fg:w="558"/><text x="32.4250%" y="799.50"></text></g><g><title>zap_pmd_range.isra.0 (534 samples, 0.08%)</title><rect x="32.1787%" y="773" width="0.0830%" height="15" fill="rgb(246,67,9)" fg:x="207082" fg:w="534"/><text x="32.4287%" y="783.50"></text></g><g><title>zap_pte_range (492 samples, 0.08%)</title><rect x="32.1853%" y="757" width="0.0765%" height="15" fill="rgb(239,35,23)" fg:x="207124" fg:w="492"/><text x="32.4353%" y="767.50"></text></g><g><title>unmap_vmas (575 samples, 0.09%)</title><rect x="32.1728%" y="821" width="0.0893%" height="15" fill="rgb(211,167,0)" fg:x="207044" fg:w="575"/><text x="32.4228%" y="831.50"></text></g><g><title>exit_mmap (954 samples, 0.15%)</title><rect x="32.1142%" y="837" width="0.1482%" height="15" fill="rgb(225,119,45)" fg:x="206667" fg:w="954"/><text x="32.3642%" y="847.50"></text></g><g><title>exit_mm (962 samples, 0.15%)</title><rect x="32.1135%" y="869" width="0.1495%" height="15" fill="rgb(210,162,6)" fg:x="206662" fg:w="962"/><text x="32.3635%" y="879.50"></text></g><g><title>mmput (959 samples, 0.15%)</title><rect x="32.1139%" y="853" width="0.1490%" height="15" fill="rgb(208,118,35)" fg:x="206665" fg:w="959"/><text x="32.3639%" y="863.50"></text></g><g><title>__fput (153 samples, 0.02%)</title><rect x="32.2642%" y="837" width="0.0238%" height="15" fill="rgb(239,4,53)" fg:x="207632" fg:w="153"/><text x="32.5142%" y="847.50"></text></g><g><title>do_exit (1,302 samples, 0.20%)</title><rect x="32.0861%" y="885" width="0.2023%" height="15" fill="rgb(213,130,21)" fg:x="206486" fg:w="1302"/><text x="32.3361%" y="895.50"></text></g><g><title>task_work_run (157 samples, 0.02%)</title><rect x="32.2640%" y="869" width="0.0244%" height="15" fill="rgb(235,148,0)" fg:x="207631" fg:w="157"/><text x="32.5140%" y="879.50"></text></g><g><title>____fput (156 samples, 0.02%)</title><rect x="32.2642%" y="853" width="0.0242%" height="15" fill="rgb(244,224,18)" fg:x="207632" fg:w="156"/><text x="32.5142%" y="863.50"></text></g><g><title>__x64_sys_exit_group (1,304 samples, 0.20%)</title><rect x="32.0861%" y="917" width="0.2026%" height="15" fill="rgb(211,214,4)" fg:x="206486" fg:w="1304"/><text x="32.3361%" y="927.50"></text></g><g><title>do_group_exit (1,304 samples, 0.20%)</title><rect x="32.0861%" y="901" width="0.2026%" height="15" fill="rgb(206,119,25)" fg:x="206486" fg:w="1304"/><text x="32.3361%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,939 samples, 0.30%)</title><rect x="31.9876%" y="949" width="0.3013%" height="15" fill="rgb(243,93,47)" fg:x="205852" fg:w="1939"/><text x="32.2376%" y="959.50"></text></g><g><title>do_syscall_64 (1,937 samples, 0.30%)</title><rect x="31.9879%" y="933" width="0.3010%" height="15" fill="rgb(224,194,6)" fg:x="205854" fg:w="1937"/><text x="32.2379%" y="943.50"></text></g><g><title>sed (10,786 samples, 1.68%)</title><rect x="30.6141%" y="965" width="1.6760%" height="15" fill="rgb(243,229,6)" fg:x="197013" fg:w="10786"/><text x="30.8641%" y="975.50"></text></g><g><title>[anon] (1,195 samples, 0.19%)</title><rect x="32.2942%" y="949" width="0.1857%" height="15" fill="rgb(207,23,50)" fg:x="207825" fg:w="1195"/><text x="32.5442%" y="959.50"></text></g><g><title>[libc.so.6] (90 samples, 0.01%)</title><rect x="32.6782%" y="933" width="0.0140%" height="15" fill="rgb(253,192,32)" fg:x="210296" fg:w="90"/><text x="32.9282%" y="943.50"></text></g><g><title>[libstdc++.so.6.0.30] (120 samples, 0.02%)</title><rect x="32.6921%" y="933" width="0.0186%" height="15" fill="rgb(213,21,6)" fg:x="210386" fg:w="120"/><text x="32.9421%" y="943.50"></text></g><g><title>__fput (203 samples, 0.03%)</title><rect x="32.7273%" y="805" width="0.0315%" height="15" fill="rgb(243,151,13)" fg:x="210612" fg:w="203"/><text x="32.9773%" y="815.50"></text></g><g><title>security_file_free (92 samples, 0.01%)</title><rect x="32.7445%" y="789" width="0.0143%" height="15" fill="rgb(233,165,41)" fg:x="210723" fg:w="92"/><text x="32.9945%" y="799.50"></text></g><g><title>____fput (228 samples, 0.04%)</title><rect x="32.7273%" y="821" width="0.0354%" height="15" fill="rgb(246,176,45)" fg:x="210612" fg:w="228"/><text x="32.9773%" y="831.50"></text></g><g><title>exit_to_user_mode_loop (266 samples, 0.04%)</title><rect x="32.7217%" y="853" width="0.0413%" height="15" fill="rgb(217,170,52)" fg:x="210576" fg:w="266"/><text x="32.9717%" y="863.50"></text></g><g><title>task_work_run (234 samples, 0.04%)</title><rect x="32.7266%" y="837" width="0.0364%" height="15" fill="rgb(214,203,54)" fg:x="210608" fg:w="234"/><text x="32.9766%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (273 samples, 0.04%)</title><rect x="32.7212%" y="869" width="0.0424%" height="15" fill="rgb(248,215,49)" fg:x="210573" fg:w="273"/><text x="32.9712%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (276 samples, 0.04%)</title><rect x="32.7209%" y="885" width="0.0429%" height="15" fill="rgb(208,46,10)" fg:x="210571" fg:w="276"/><text x="32.9709%" y="895.50"></text></g><g><title>cshook_security_file_free_security (83 samples, 0.01%)</title><rect x="32.7848%" y="821" width="0.0129%" height="15" fill="rgb(254,5,31)" fg:x="210982" fg:w="83"/><text x="33.0348%" y="831.50"></text></g><g><title>cshook_security_file_free_security (105 samples, 0.02%)</title><rect x="32.7815%" y="837" width="0.0163%" height="15" fill="rgb(222,104,33)" fg:x="210961" fg:w="105"/><text x="33.0315%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (274 samples, 0.04%)</title><rect x="32.7785%" y="853" width="0.0426%" height="15" fill="rgb(248,49,16)" fg:x="210942" fg:w="274"/><text x="33.0285%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (147 samples, 0.02%)</title><rect x="32.7983%" y="837" width="0.0228%" height="15" fill="rgb(232,198,41)" fg:x="211069" fg:w="147"/><text x="33.0483%" y="847.50"></text></g><g><title>do_syscall_64 (659 samples, 0.10%)</title><rect x="32.7192%" y="901" width="0.1024%" height="15" fill="rgb(214,125,3)" fg:x="210560" fg:w="659"/><text x="32.9692%" y="911.50"></text></g><g><title>unload_network_ops_symbols (372 samples, 0.06%)</title><rect x="32.7638%" y="885" width="0.0578%" height="15" fill="rgb(229,220,28)" fg:x="210847" fg:w="372"/><text x="33.0138%" y="895.50"></text></g><g><title>cshook_systemcalltable_pre_close (277 samples, 0.04%)</title><rect x="32.7785%" y="869" width="0.0430%" height="15" fill="rgb(222,64,37)" fg:x="210942" fg:w="277"/><text x="33.0285%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (671 samples, 0.10%)</title><rect x="32.7186%" y="917" width="0.1043%" height="15" fill="rgb(249,184,13)" fg:x="210556" fg:w="671"/><text x="32.9686%" y="927.50"></text></g><g><title>__GI___close_nocancel (687 samples, 0.11%)</title><rect x="32.7170%" y="933" width="0.1068%" height="15" fill="rgb(252,176,6)" fg:x="210546" fg:w="687"/><text x="32.9670%" y="943.50"></text></g><g><title>_int_free (84 samples, 0.01%)</title><rect x="32.8384%" y="917" width="0.0131%" height="15" fill="rgb(228,153,7)" fg:x="211327" fg:w="84"/><text x="33.0884%" y="927.50"></text></g><g><title>__GI___libc_free (205 samples, 0.03%)</title><rect x="32.8244%" y="933" width="0.0319%" height="15" fill="rgb(242,193,5)" fg:x="211237" fg:w="205"/><text x="33.0744%" y="943.50"></text></g><g><title>filldir64 (154 samples, 0.02%)</title><rect x="32.9204%" y="805" width="0.0239%" height="15" fill="rgb(232,140,9)" fg:x="211855" fg:w="154"/><text x="33.1704%" y="815.50"></text></g><g><title>btrfs_filldir (178 samples, 0.03%)</title><rect x="32.9173%" y="821" width="0.0277%" height="15" fill="rgb(213,222,16)" fg:x="211835" fg:w="178"/><text x="33.1673%" y="831.50"></text></g><g><title>btrfs_release_path (76 samples, 0.01%)</title><rect x="32.9838%" y="821" width="0.0118%" height="15" fill="rgb(222,75,50)" fg:x="212263" fg:w="76"/><text x="33.2338%" y="831.50"></text></g><g><title>btrfs_bin_search (170 samples, 0.03%)</title><rect x="33.0034%" y="805" width="0.0264%" height="15" fill="rgb(205,180,2)" fg:x="212389" fg:w="170"/><text x="33.2534%" y="815.50"></text></g><g><title>generic_bin_search.constprop.0 (165 samples, 0.03%)</title><rect x="33.0042%" y="789" width="0.0256%" height="15" fill="rgb(216,34,7)" fg:x="212394" fg:w="165"/><text x="33.2542%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (193 samples, 0.03%)</title><rect x="33.0410%" y="693" width="0.0300%" height="15" fill="rgb(253,16,32)" fg:x="212631" fg:w="193"/><text x="33.2910%" y="703.50"></text></g><g><title>x86_pmu_enable (189 samples, 0.03%)</title><rect x="33.0416%" y="677" width="0.0294%" height="15" fill="rgb(208,97,28)" fg:x="212635" fg:w="189"/><text x="33.2916%" y="687.50"></text></g><g><title>intel_pmu_enable_all (189 samples, 0.03%)</title><rect x="33.0416%" y="661" width="0.0294%" height="15" fill="rgb(225,92,11)" fg:x="212635" fg:w="189"/><text x="33.2916%" y="671.50"></text></g><g><title>native_write_msr (189 samples, 0.03%)</title><rect x="33.0416%" y="645" width="0.0294%" height="15" fill="rgb(243,38,12)" fg:x="212635" fg:w="189"/><text x="33.2916%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (201 samples, 0.03%)</title><rect x="33.0404%" y="709" width="0.0312%" height="15" fill="rgb(208,139,16)" fg:x="212627" fg:w="201"/><text x="33.2904%" y="719.50"></text></g><g><title>__schedule (297 samples, 0.05%)</title><rect x="33.0348%" y="725" width="0.0462%" height="15" fill="rgb(227,24,9)" fg:x="212591" fg:w="297"/><text x="33.2848%" y="735.50"></text></g><g><title>schedule (300 samples, 0.05%)</title><rect x="33.0345%" y="741" width="0.0466%" height="15" fill="rgb(206,62,11)" fg:x="212589" fg:w="300"/><text x="33.2845%" y="751.50"></text></g><g><title>rwsem_down_read_slowpath (311 samples, 0.05%)</title><rect x="33.0334%" y="757" width="0.0483%" height="15" fill="rgb(228,134,27)" fg:x="212582" fg:w="311"/><text x="33.2834%" y="767.50"></text></g><g><title>__btrfs_tree_read_lock (317 samples, 0.05%)</title><rect x="33.0326%" y="789" width="0.0493%" height="15" fill="rgb(205,55,33)" fg:x="212577" fg:w="317"/><text x="33.2826%" y="799.50"></text></g><g><title>down_read (314 samples, 0.05%)</title><rect x="33.0331%" y="773" width="0.0488%" height="15" fill="rgb(243,75,43)" fg:x="212580" fg:w="314"/><text x="33.2831%" y="783.50"></text></g><g><title>btrfs_read_lock_root_node (341 samples, 0.05%)</title><rect x="33.0321%" y="805" width="0.0530%" height="15" fill="rgb(223,27,42)" fg:x="212574" fg:w="341"/><text x="33.2821%" y="815.50"></text></g><g><title>__btrfs_tree_read_lock (101 samples, 0.02%)</title><rect x="33.0859%" y="789" width="0.0157%" height="15" fill="rgb(232,189,33)" fg:x="212920" fg:w="101"/><text x="33.3359%" y="799.50"></text></g><g><title>down_read (96 samples, 0.01%)</title><rect x="33.0867%" y="773" width="0.0149%" height="15" fill="rgb(210,9,39)" fg:x="212925" fg:w="96"/><text x="33.3367%" y="783.50"></text></g><g><title>rwsem_down_read_slowpath (68 samples, 0.01%)</title><rect x="33.0910%" y="757" width="0.0106%" height="15" fill="rgb(242,85,26)" fg:x="212953" fg:w="68"/><text x="33.3410%" y="767.50"></text></g><g><title>schedule (67 samples, 0.01%)</title><rect x="33.0912%" y="741" width="0.0104%" height="15" fill="rgb(248,44,4)" fg:x="212954" fg:w="67"/><text x="33.3412%" y="751.50"></text></g><g><title>__schedule (67 samples, 0.01%)</title><rect x="33.0912%" y="725" width="0.0104%" height="15" fill="rgb(250,96,46)" fg:x="212954" fg:w="67"/><text x="33.3412%" y="735.50"></text></g><g><title>btrfs_tree_read_lock (104 samples, 0.02%)</title><rect x="33.0856%" y="805" width="0.0162%" height="15" fill="rgb(229,116,26)" fg:x="212918" fg:w="104"/><text x="33.3356%" y="815.50"></text></g><g><title>find_extent_buffer_nolock (182 samples, 0.03%)</title><rect x="33.1331%" y="773" width="0.0283%" height="15" fill="rgb(246,94,34)" fg:x="213224" fg:w="182"/><text x="33.3831%" y="783.50"></text></g><g><title>radix_tree_lookup (122 samples, 0.02%)</title><rect x="33.1425%" y="757" width="0.0190%" height="15" fill="rgb(251,73,21)" fg:x="213284" fg:w="122"/><text x="33.3925%" y="767.50"></text></g><g><title>__radix_tree_lookup (122 samples, 0.02%)</title><rect x="33.1425%" y="741" width="0.0190%" height="15" fill="rgb(254,121,25)" fg:x="213284" fg:w="122"/><text x="33.3925%" y="751.50"></text></g><g><title>find_extent_buffer (251 samples, 0.04%)</title><rect x="33.1313%" y="789" width="0.0390%" height="15" fill="rgb(215,161,49)" fg:x="213212" fg:w="251"/><text x="33.3813%" y="799.50"></text></g><g><title>read_block_for_search (406 samples, 0.06%)</title><rect x="33.1101%" y="805" width="0.0631%" height="15" fill="rgb(221,43,13)" fg:x="213076" fg:w="406"/><text x="33.3601%" y="815.50"></text></g><g><title>btrfs_search_slot (1,190 samples, 0.18%)</title><rect x="32.9956%" y="821" width="0.1849%" height="15" fill="rgb(249,5,37)" fg:x="212339" fg:w="1190"/><text x="33.2456%" y="831.50"></text></g><g><title>read_extent_buffer (198 samples, 0.03%)</title><rect x="33.1923%" y="821" width="0.0308%" height="15" fill="rgb(226,25,44)" fg:x="213605" fg:w="198"/><text x="33.4423%" y="831.50"></text></g><g><title>btrfs_real_readdir (2,127 samples, 0.33%)</title><rect x="32.8945%" y="837" width="0.3305%" height="15" fill="rgb(238,189,16)" fg:x="211688" fg:w="2127"/><text x="33.1445%" y="847.50"></text></g><g><title>security_file_permission (73 samples, 0.01%)</title><rect x="33.2329%" y="837" width="0.0113%" height="15" fill="rgb(251,186,8)" fg:x="213866" fg:w="73"/><text x="33.4829%" y="847.50"></text></g><g><title>btrfs_update_inode (78 samples, 0.01%)</title><rect x="33.2573%" y="789" width="0.0121%" height="15" fill="rgb(254,34,31)" fg:x="214023" fg:w="78"/><text x="33.5073%" y="799.50"></text></g><g><title>btrfs_dirty_inode (130 samples, 0.02%)</title><rect x="33.2497%" y="805" width="0.0202%" height="15" fill="rgb(225,215,27)" fg:x="213974" fg:w="130"/><text x="33.4997%" y="815.50"></text></g><g><title>btrfs_update_time (133 samples, 0.02%)</title><rect x="33.2495%" y="821" width="0.0207%" height="15" fill="rgb(221,192,48)" fg:x="213973" fg:w="133"/><text x="33.4995%" y="831.50"></text></g><g><title>iterate_dir (2,491 samples, 0.39%)</title><rect x="32.8842%" y="853" width="0.3871%" height="15" fill="rgb(219,137,20)" fg:x="211622" fg:w="2491"/><text x="33.1342%" y="863.50"></text></g><g><title>touch_atime (174 samples, 0.03%)</title><rect x="33.2442%" y="837" width="0.0270%" height="15" fill="rgb(219,84,11)" fg:x="213939" fg:w="174"/><text x="33.4942%" y="847.50"></text></g><g><title>__x64_sys_getdents64 (2,553 samples, 0.40%)</title><rect x="32.8764%" y="869" width="0.3967%" height="15" fill="rgb(224,10,23)" fg:x="211572" fg:w="2553"/><text x="33.1264%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,630 samples, 0.41%)</title><rect x="32.8724%" y="901" width="0.4087%" height="15" fill="rgb(248,22,39)" fg:x="211546" fg:w="2630"/><text x="33.1224%" y="911.50"></text></g><g><title>do_syscall_64 (2,623 samples, 0.41%)</title><rect x="32.8735%" y="885" width="0.4076%" height="15" fill="rgb(212,154,20)" fg:x="211553" fg:w="2623"/><text x="33.1235%" y="895.50"></text></g><g><title>__GI___readdir64 (2,715 samples, 0.42%)</title><rect x="32.8600%" y="933" width="0.4219%" height="15" fill="rgb(236,199,50)" fg:x="211466" fg:w="2715"/><text x="33.1100%" y="943.50"></text></g><g><title>__GI___getdents64 (2,649 samples, 0.41%)</title><rect x="32.8702%" y="917" width="0.4116%" height="15" fill="rgb(211,9,17)" fg:x="211532" fg:w="2649"/><text x="33.1202%" y="927.50"></text></g><g><title>__btrfs_tree_read_lock (65 samples, 0.01%)</title><rect x="33.3160%" y="725" width="0.0101%" height="15" fill="rgb(243,216,36)" fg:x="214401" fg:w="65"/><text x="33.5660%" y="735.50"></text></g><g><title>down_read (65 samples, 0.01%)</title><rect x="33.3160%" y="709" width="0.0101%" height="15" fill="rgb(250,2,10)" fg:x="214401" fg:w="65"/><text x="33.5660%" y="719.50"></text></g><g><title>rwsem_down_read_slowpath (65 samples, 0.01%)</title><rect x="33.3160%" y="693" width="0.0101%" height="15" fill="rgb(226,50,48)" fg:x="214401" fg:w="65"/><text x="33.5660%" y="703.50"></text></g><g><title>btrfs_read_lock_root_node (70 samples, 0.01%)</title><rect x="33.3160%" y="741" width="0.0109%" height="15" fill="rgb(243,81,16)" fg:x="214401" fg:w="70"/><text x="33.5660%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.01%)</title><rect x="33.3303%" y="629" width="0.0124%" height="15" fill="rgb(250,14,2)" fg:x="214493" fg:w="80"/><text x="33.5803%" y="639.50"></text></g><g><title>x86_pmu_enable (79 samples, 0.01%)</title><rect x="33.3305%" y="613" width="0.0123%" height="15" fill="rgb(233,135,29)" fg:x="214494" fg:w="79"/><text x="33.5805%" y="623.50"></text></g><g><title>intel_pmu_enable_all (79 samples, 0.01%)</title><rect x="33.3305%" y="597" width="0.0123%" height="15" fill="rgb(224,64,43)" fg:x="214494" fg:w="79"/><text x="33.5805%" y="607.50"></text></g><g><title>native_write_msr (77 samples, 0.01%)</title><rect x="33.3308%" y="581" width="0.0120%" height="15" fill="rgb(238,84,13)" fg:x="214496" fg:w="77"/><text x="33.5808%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (82 samples, 0.01%)</title><rect x="33.3303%" y="645" width="0.0127%" height="15" fill="rgb(253,48,26)" fg:x="214493" fg:w="82"/><text x="33.5803%" y="655.50"></text></g><g><title>schedule (116 samples, 0.02%)</title><rect x="33.3280%" y="677" width="0.0180%" height="15" fill="rgb(205,223,31)" fg:x="214478" fg:w="116"/><text x="33.5780%" y="687.50"></text></g><g><title>__schedule (116 samples, 0.02%)</title><rect x="33.3280%" y="661" width="0.0180%" height="15" fill="rgb(221,41,32)" fg:x="214478" fg:w="116"/><text x="33.5780%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (124 samples, 0.02%)</title><rect x="33.3269%" y="725" width="0.0193%" height="15" fill="rgb(213,158,31)" fg:x="214471" fg:w="124"/><text x="33.5769%" y="735.50"></text></g><g><title>down_read (124 samples, 0.02%)</title><rect x="33.3269%" y="709" width="0.0193%" height="15" fill="rgb(245,126,43)" fg:x="214471" fg:w="124"/><text x="33.5769%" y="719.50"></text></g><g><title>rwsem_down_read_slowpath (120 samples, 0.02%)</title><rect x="33.3275%" y="693" width="0.0186%" height="15" fill="rgb(227,7,22)" fg:x="214475" fg:w="120"/><text x="33.5775%" y="703.50"></text></g><g><title>btrfs_tree_read_lock (125 samples, 0.02%)</title><rect x="33.3269%" y="741" width="0.0194%" height="15" fill="rgb(252,90,44)" fg:x="214471" fg:w="125"/><text x="33.5769%" y="751.50"></text></g><g><title>read_block_for_search (85 samples, 0.01%)</title><rect x="33.3487%" y="741" width="0.0132%" height="15" fill="rgb(253,91,0)" fg:x="214611" fg:w="85"/><text x="33.5987%" y="751.50"></text></g><g><title>btrfs_search_slot (380 samples, 0.06%)</title><rect x="33.3048%" y="757" width="0.0590%" height="15" fill="rgb(252,175,49)" fg:x="214329" fg:w="380"/><text x="33.5548%" y="767.50"></text></g><g><title>btrfs_lookup_dir_item (392 samples, 0.06%)</title><rect x="33.3041%" y="773" width="0.0609%" height="15" fill="rgb(246,150,1)" fg:x="214324" fg:w="392"/><text x="33.5541%" y="783.50"></text></g><g><title>btrfs_lookup_dentry (438 samples, 0.07%)</title><rect x="33.2974%" y="789" width="0.0681%" height="15" fill="rgb(241,192,25)" fg:x="214281" fg:w="438"/><text x="33.5474%" y="799.50"></text></g><g><title>btrfs_lookup (452 samples, 0.07%)</title><rect x="33.2966%" y="805" width="0.0702%" height="15" fill="rgb(239,187,11)" fg:x="214276" fg:w="452"/><text x="33.5466%" y="815.50"></text></g><g><title>__lookup_hash (496 samples, 0.08%)</title><rect x="33.2965%" y="821" width="0.0771%" height="15" fill="rgb(218,202,51)" fg:x="214275" fg:w="496"/><text x="33.5465%" y="831.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (185 samples, 0.03%)</title><rect x="33.3771%" y="789" width="0.0287%" height="15" fill="rgb(225,176,8)" fg:x="214794" fg:w="185"/><text x="33.6271%" y="799.50"></text></g><g><title>walk_component (84 samples, 0.01%)</title><rect x="33.3928%" y="773" width="0.0131%" height="15" fill="rgb(219,122,41)" fg:x="214895" fg:w="84"/><text x="33.6428%" y="783.50"></text></g><g><title>path_parentat (205 samples, 0.03%)</title><rect x="33.3759%" y="805" width="0.0319%" height="15" fill="rgb(248,140,20)" fg:x="214786" fg:w="205"/><text x="33.6259%" y="815.50"></text></g><g><title>filename_parentat (210 samples, 0.03%)</title><rect x="33.3754%" y="821" width="0.0326%" height="15" fill="rgb(245,41,37)" fg:x="214783" fg:w="210"/><text x="33.6254%" y="831.50"></text></g><g><title>filename_create (732 samples, 0.11%)</title><rect x="33.2960%" y="837" width="0.1137%" height="15" fill="rgb(235,82,39)" fg:x="214272" fg:w="732"/><text x="33.5460%" y="847.50"></text></g><g><title>btrfs_tree_lock (126 samples, 0.02%)</title><rect x="33.4512%" y="725" width="0.0196%" height="15" fill="rgb(230,108,42)" fg:x="215271" fg:w="126"/><text x="33.7012%" y="735.50"></text></g><g><title>__btrfs_tree_lock (126 samples, 0.02%)</title><rect x="33.4512%" y="709" width="0.0196%" height="15" fill="rgb(215,150,50)" fg:x="215271" fg:w="126"/><text x="33.7012%" y="719.50"></text></g><g><title>down_write (123 samples, 0.02%)</title><rect x="33.4517%" y="693" width="0.0191%" height="15" fill="rgb(233,212,5)" fg:x="215274" fg:w="123"/><text x="33.7017%" y="703.50"></text></g><g><title>rwsem_down_write_slowpath (119 samples, 0.02%)</title><rect x="33.4523%" y="677" width="0.0185%" height="15" fill="rgb(245,80,22)" fg:x="215278" fg:w="119"/><text x="33.7023%" y="687.50"></text></g><g><title>schedule (65 samples, 0.01%)</title><rect x="33.4607%" y="661" width="0.0101%" height="15" fill="rgb(238,129,16)" fg:x="215332" fg:w="65"/><text x="33.7107%" y="671.50"></text></g><g><title>__schedule (65 samples, 0.01%)</title><rect x="33.4607%" y="645" width="0.0101%" height="15" fill="rgb(240,19,0)" fg:x="215332" fg:w="65"/><text x="33.7107%" y="655.50"></text></g><g><title>read_block_for_search (79 samples, 0.01%)</title><rect x="33.4733%" y="725" width="0.0123%" height="15" fill="rgb(232,42,35)" fg:x="215413" fg:w="79"/><text x="33.7233%" y="735.50"></text></g><g><title>btrfs_search_slot (387 samples, 0.06%)</title><rect x="33.4357%" y="741" width="0.0601%" height="15" fill="rgb(223,130,24)" fg:x="215171" fg:w="387"/><text x="33.6857%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (567 samples, 0.09%)</title><rect x="33.4335%" y="757" width="0.0881%" height="15" fill="rgb(237,16,22)" fg:x="215157" fg:w="567"/><text x="33.6835%" y="767.50"></text></g><g><title>setup_items_for_insert (161 samples, 0.03%)</title><rect x="33.4966%" y="741" width="0.0250%" height="15" fill="rgb(248,192,20)" fg:x="215563" fg:w="161"/><text x="33.7466%" y="751.50"></text></g><g><title>insert_with_overflow (571 samples, 0.09%)</title><rect x="33.4330%" y="773" width="0.0887%" height="15" fill="rgb(233,167,2)" fg:x="215154" fg:w="571"/><text x="33.6830%" y="783.50"></text></g><g><title>btrfs_insert_dir_item (682 samples, 0.11%)</title><rect x="33.4172%" y="789" width="0.1060%" height="15" fill="rgb(252,71,44)" fg:x="215052" fg:w="682"/><text x="33.6672%" y="799.50"></text></g><g><title>btrfs_add_link (716 samples, 0.11%)</title><rect x="33.4156%" y="805" width="0.1113%" height="15" fill="rgb(238,37,47)" fg:x="215042" fg:w="716"/><text x="33.6656%" y="815.50"></text></g><g><title>rwsem_down_write_slowpath (82 samples, 0.01%)</title><rect x="33.5597%" y="709" width="0.0127%" height="15" fill="rgb(214,202,54)" fg:x="215969" fg:w="82"/><text x="33.8097%" y="719.50"></text></g><g><title>btrfs_tree_lock (88 samples, 0.01%)</title><rect x="33.5589%" y="757" width="0.0137%" height="15" fill="rgb(254,165,40)" fg:x="215964" fg:w="88"/><text x="33.8089%" y="767.50"></text></g><g><title>__btrfs_tree_lock (88 samples, 0.01%)</title><rect x="33.5589%" y="741" width="0.0137%" height="15" fill="rgb(246,173,38)" fg:x="215964" fg:w="88"/><text x="33.8089%" y="751.50"></text></g><g><title>down_write (88 samples, 0.01%)</title><rect x="33.5589%" y="725" width="0.0137%" height="15" fill="rgb(215,3,27)" fg:x="215964" fg:w="88"/><text x="33.8089%" y="735.50"></text></g><g><title>read_block_for_search (95 samples, 0.01%)</title><rect x="33.5738%" y="757" width="0.0148%" height="15" fill="rgb(239,169,51)" fg:x="216060" fg:w="95"/><text x="33.8238%" y="767.50"></text></g><g><title>btrfs_search_slot (368 samples, 0.06%)</title><rect x="33.5487%" y="773" width="0.0572%" height="15" fill="rgb(212,5,25)" fg:x="215898" fg:w="368"/><text x="33.7987%" y="783.50"></text></g><g><title>btrfs_insert_empty_items (441 samples, 0.07%)</title><rect x="33.5483%" y="789" width="0.0685%" height="15" fill="rgb(243,45,17)" fg:x="215896" fg:w="441"/><text x="33.7983%" y="799.50"></text></g><g><title>setup_items_for_insert (67 samples, 0.01%)</title><rect x="33.6065%" y="773" width="0.0104%" height="15" fill="rgb(242,97,9)" fg:x="216270" fg:w="67"/><text x="33.8565%" y="783.50"></text></g><g><title>alloc_inode (89 samples, 0.01%)</title><rect x="33.6388%" y="773" width="0.0138%" height="15" fill="rgb(228,71,31)" fg:x="216478" fg:w="89"/><text x="33.8888%" y="783.50"></text></g><g><title>new_inode (92 samples, 0.01%)</title><rect x="33.6386%" y="789" width="0.0143%" height="15" fill="rgb(252,184,16)" fg:x="216477" fg:w="92"/><text x="33.8886%" y="799.50"></text></g><g><title>btrfs_new_inode (734 samples, 0.11%)</title><rect x="33.5403%" y="805" width="0.1141%" height="15" fill="rgb(236,169,46)" fg:x="215844" fg:w="734"/><text x="33.7903%" y="815.50"></text></g><g><title>btrfs_start_transaction (67 samples, 0.01%)</title><rect x="33.6548%" y="805" width="0.0104%" height="15" fill="rgb(207,17,47)" fg:x="216581" fg:w="67"/><text x="33.9048%" y="815.50"></text></g><g><title>btrfs_delayed_update_inode (80 samples, 0.01%)</title><rect x="33.6660%" y="789" width="0.0124%" height="15" fill="rgb(206,201,28)" fg:x="216653" fg:w="80"/><text x="33.9160%" y="799.50"></text></g><g><title>btrfs_update_inode (89 samples, 0.01%)</title><rect x="33.6655%" y="805" width="0.0138%" height="15" fill="rgb(224,184,23)" fg:x="216650" fg:w="89"/><text x="33.9155%" y="815.50"></text></g><g><title>btrfs_mkdir (1,738 samples, 0.27%)</title><rect x="33.4146%" y="821" width="0.2701%" height="15" fill="rgb(208,139,48)" fg:x="215035" fg:w="1738"/><text x="33.6646%" y="831.50"></text></g><g><title>do_mkdirat (2,578 samples, 0.40%)</title><rect x="33.2884%" y="853" width="0.4006%" height="15" fill="rgb(208,130,10)" fg:x="214223" fg:w="2578"/><text x="33.5384%" y="863.50"></text></g><g><title>vfs_mkdir (1,773 samples, 0.28%)</title><rect x="33.4135%" y="837" width="0.2755%" height="15" fill="rgb(211,213,45)" fg:x="215028" fg:w="1773"/><text x="33.6635%" y="847.50"></text></g><g><title>__x64_sys_mkdir (2,623 samples, 0.41%)</title><rect x="33.2881%" y="869" width="0.4076%" height="15" fill="rgb(235,100,30)" fg:x="214221" fg:w="2623"/><text x="33.5381%" y="879.50"></text></g><g><title>__d_lookup_rcu (68 samples, 0.01%)</title><rect x="33.7298%" y="709" width="0.0106%" height="15" fill="rgb(206,144,31)" fg:x="217064" fg:w="68"/><text x="33.9798%" y="719.50"></text></g><g><title>lookup_fast (83 samples, 0.01%)</title><rect x="33.7277%" y="725" width="0.0129%" height="15" fill="rgb(224,200,26)" fg:x="217050" fg:w="83"/><text x="33.9777%" y="735.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (208 samples, 0.03%)</title><rect x="33.7106%" y="757" width="0.0323%" height="15" fill="rgb(247,104,53)" fg:x="216940" fg:w="208"/><text x="33.9606%" y="767.50"></text></g><g><title>walk_component (115 samples, 0.02%)</title><rect x="33.7250%" y="741" width="0.0179%" height="15" fill="rgb(220,14,17)" fg:x="217033" fg:w="115"/><text x="33.9750%" y="751.50"></text></g><g><title>filename_lookup (243 samples, 0.04%)</title><rect x="33.7076%" y="789" width="0.0378%" height="15" fill="rgb(230,140,40)" fg:x="216921" fg:w="243"/><text x="33.9576%" y="799.50"></text></g><g><title>path_lookupat (238 samples, 0.04%)</title><rect x="33.7084%" y="773" width="0.0370%" height="15" fill="rgb(229,2,41)" fg:x="216926" fg:w="238"/><text x="33.9584%" y="783.50"></text></g><g><title>[[falcon_kal]] (311 samples, 0.05%)</title><rect x="33.7042%" y="821" width="0.0483%" height="15" fill="rgb(232,89,16)" fg:x="216899" fg:w="311"/><text x="33.9542%" y="831.50"></text></g><g><title>user_path_at_empty (290 samples, 0.05%)</title><rect x="33.7075%" y="805" width="0.0451%" height="15" fill="rgb(247,59,52)" fg:x="216920" fg:w="290"/><text x="33.9575%" y="815.50"></text></g><g><title>_ZdlPv (70 samples, 0.01%)</title><rect x="33.7525%" y="821" width="0.0109%" height="15" fill="rgb(226,110,21)" fg:x="217210" fg:w="70"/><text x="34.0025%" y="831.50"></text></g><g><title>prepend_path (69 samples, 0.01%)</title><rect x="33.7685%" y="773" width="0.0107%" height="15" fill="rgb(224,176,43)" fg:x="217313" fg:w="69"/><text x="34.0185%" y="783.50"></text></g><g><title>[[falcon_kal]] (87 samples, 0.01%)</title><rect x="33.7659%" y="805" width="0.0135%" height="15" fill="rgb(221,73,6)" fg:x="217296" fg:w="87"/><text x="34.0159%" y="815.50"></text></g><g><title>d_path (74 samples, 0.01%)</title><rect x="33.7679%" y="789" width="0.0115%" height="15" fill="rgb(232,78,19)" fg:x="217309" fg:w="74"/><text x="34.0179%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (162 samples, 0.03%)</title><rect x="33.7642%" y="821" width="0.0252%" height="15" fill="rgb(233,112,48)" fg:x="217285" fg:w="162"/><text x="34.0142%" y="831.50"></text></g><g><title>cshook_systemcalltable_post_mkdir (631 samples, 0.10%)</title><rect x="33.6966%" y="869" width="0.0981%" height="15" fill="rgb(243,131,47)" fg:x="216850" fg:w="631"/><text x="33.9466%" y="879.50"></text></g><g><title>fshook_syscalltable_pre_lchown (602 samples, 0.09%)</title><rect x="33.7011%" y="853" width="0.0935%" height="15" fill="rgb(226,51,1)" fg:x="216879" fg:w="602"/><text x="33.9511%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (587 samples, 0.09%)</title><rect x="33.7034%" y="837" width="0.0912%" height="15" fill="rgb(247,58,7)" fg:x="216894" fg:w="587"/><text x="33.9534%" y="847.50"></text></g><g><title>do_syscall_64 (3,296 samples, 0.51%)</title><rect x="33.2839%" y="901" width="0.5122%" height="15" fill="rgb(209,7,32)" fg:x="214194" fg:w="3296"/><text x="33.5339%" y="911.50"></text></g><g><title>unload_network_ops_symbols (3,274 samples, 0.51%)</title><rect x="33.2873%" y="885" width="0.5088%" height="15" fill="rgb(209,39,41)" fg:x="214216" fg:w="3274"/><text x="33.5373%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (3,302 samples, 0.51%)</title><rect x="33.2834%" y="917" width="0.5131%" height="15" fill="rgb(226,182,46)" fg:x="214191" fg:w="3302"/><text x="33.5334%" y="927.50"></text></g><g><title>__GI_mkdir (3,318 samples, 0.52%)</title><rect x="33.2818%" y="933" width="0.5156%" height="15" fill="rgb(230,219,10)" fg:x="214181" fg:w="3318"/><text x="33.5318%" y="943.50"></text></g><g><title>btrfs_dentry_delete (130 samples, 0.02%)</title><rect x="33.8399%" y="821" width="0.0202%" height="15" fill="rgb(227,175,30)" fg:x="217772" fg:w="130"/><text x="34.0899%" y="831.50"></text></g><g><title>dput (232 samples, 0.04%)</title><rect x="33.8262%" y="837" width="0.0361%" height="15" fill="rgb(217,2,50)" fg:x="217684" fg:w="232"/><text x="34.0762%" y="847.50"></text></g><g><title>path_put (277 samples, 0.04%)</title><rect x="33.8234%" y="853" width="0.0430%" height="15" fill="rgb(229,160,0)" fg:x="217666" fg:w="277"/><text x="34.0734%" y="863.50"></text></g><g><title>btrfs_block_rsv_add (74 samples, 0.01%)</title><rect x="33.8986%" y="773" width="0.0115%" height="15" fill="rgb(207,78,37)" fg:x="218150" fg:w="74"/><text x="34.1486%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (74 samples, 0.01%)</title><rect x="33.8986%" y="757" width="0.0115%" height="15" fill="rgb(225,57,0)" fg:x="218150" fg:w="74"/><text x="34.1486%" y="767.50"></text></g><g><title>btrfs_delayed_update_inode (149 samples, 0.02%)</title><rect x="33.8944%" y="789" width="0.0232%" height="15" fill="rgb(232,154,2)" fg:x="218123" fg:w="149"/><text x="34.1444%" y="799.50"></text></g><g><title>btrfs_update_inode (167 samples, 0.03%)</title><rect x="33.8936%" y="805" width="0.0260%" height="15" fill="rgb(241,212,25)" fg:x="218118" fg:w="167"/><text x="34.1436%" y="815.50"></text></g><g><title>btrfs_update_time (265 samples, 0.04%)</title><rect x="33.8785%" y="837" width="0.0412%" height="15" fill="rgb(226,69,20)" fg:x="218021" fg:w="265"/><text x="34.1285%" y="847.50"></text></g><g><title>btrfs_dirty_inode (264 samples, 0.04%)</title><rect x="33.8787%" y="821" width="0.0410%" height="15" fill="rgb(247,184,54)" fg:x="218022" fg:w="264"/><text x="34.1287%" y="831.50"></text></g><g><title>touch_atime (342 samples, 0.05%)</title><rect x="33.8674%" y="853" width="0.0531%" height="15" fill="rgb(210,145,0)" fg:x="217949" fg:w="342"/><text x="34.1174%" y="863.50"></text></g><g><title>complete_walk (91 samples, 0.01%)</title><rect x="33.9320%" y="805" width="0.0141%" height="15" fill="rgb(253,82,12)" fg:x="218365" fg:w="91"/><text x="34.1820%" y="815.50"></text></g><g><title>try_to_unlazy (82 samples, 0.01%)</title><rect x="33.9334%" y="789" width="0.0127%" height="15" fill="rgb(245,42,11)" fg:x="218374" fg:w="82"/><text x="34.1834%" y="799.50"></text></g><g><title>generic_permission (133 samples, 0.02%)</title><rect x="34.1182%" y="757" width="0.0207%" height="15" fill="rgb(219,147,32)" fg:x="219563" fg:w="133"/><text x="34.3682%" y="767.50"></text></g><g><title>btrfs_permission (147 samples, 0.02%)</title><rect x="34.1166%" y="773" width="0.0228%" height="15" fill="rgb(246,12,7)" fg:x="219553" fg:w="147"/><text x="34.3666%" y="783.50"></text></g><g><title>inode_permission (649 samples, 0.10%)</title><rect x="34.0572%" y="789" width="0.1008%" height="15" fill="rgb(243,50,9)" fg:x="219171" fg:w="649"/><text x="34.3072%" y="799.50"></text></g><g><title>security_inode_permission (71 samples, 0.01%)</title><rect x="34.1471%" y="773" width="0.0110%" height="15" fill="rgb(219,149,6)" fg:x="219749" fg:w="71"/><text x="34.3971%" y="783.50"></text></g><g><title>lookup_fast (1,045 samples, 0.16%)</title><rect x="34.1974%" y="773" width="0.1624%" height="15" fill="rgb(241,51,42)" fg:x="220073" fg:w="1045"/><text x="34.4474%" y="783.50"></text></g><g><title>__d_lookup_rcu (892 samples, 0.14%)</title><rect x="34.2212%" y="757" width="0.1386%" height="15" fill="rgb(226,128,27)" fg:x="220226" fg:w="892"/><text x="34.4712%" y="767.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (2,928 samples, 0.45%)</title><rect x="33.9497%" y="805" width="0.4550%" height="15" fill="rgb(244,144,4)" fg:x="218479" fg:w="2928"/><text x="34.1997%" y="815.50"></text></g><g><title>walk_component (1,533 samples, 0.24%)</title><rect x="34.1665%" y="789" width="0.2382%" height="15" fill="rgb(221,4,13)" fg:x="219874" fg:w="1533"/><text x="34.4165%" y="799.50"></text></g><g><title>step_into (289 samples, 0.04%)</title><rect x="34.3598%" y="773" width="0.0449%" height="15" fill="rgb(208,170,28)" fg:x="221118" fg:w="289"/><text x="34.6098%" y="783.50"></text></g><g><title>nd_jump_root (72 samples, 0.01%)</title><rect x="34.4112%" y="789" width="0.0112%" height="15" fill="rgb(226,131,13)" fg:x="221449" fg:w="72"/><text x="34.6612%" y="799.50"></text></g><g><title>path_init (104 samples, 0.02%)</title><rect x="34.4077%" y="805" width="0.0162%" height="15" fill="rgb(215,72,41)" fg:x="221426" fg:w="104"/><text x="34.6577%" y="815.50"></text></g><g><title>__d_lookup_rcu (267 samples, 0.04%)</title><rect x="34.4352%" y="773" width="0.0415%" height="15" fill="rgb(243,108,20)" fg:x="221603" fg:w="267"/><text x="34.6852%" y="783.50"></text></g><g><title>lookup_fast (279 samples, 0.04%)</title><rect x="34.4335%" y="789" width="0.0434%" height="15" fill="rgb(230,189,17)" fg:x="221592" fg:w="279"/><text x="34.6835%" y="799.50"></text></g><g><title>path_lookupat (3,544 samples, 0.55%)</title><rect x="33.9284%" y="821" width="0.5507%" height="15" fill="rgb(220,50,17)" fg:x="218342" fg:w="3544"/><text x="34.1784%" y="831.50"></text></g><g><title>walk_component (328 samples, 0.05%)</title><rect x="34.4282%" y="805" width="0.0510%" height="15" fill="rgb(248,152,48)" fg:x="221558" fg:w="328"/><text x="34.6782%" y="815.50"></text></g><g><title>filename_lookup (3,590 samples, 0.56%)</title><rect x="33.9221%" y="837" width="0.5579%" height="15" fill="rgb(244,91,11)" fg:x="218301" fg:w="3590"/><text x="34.1721%" y="847.50"></text></g><g><title>kmem_cache_alloc (93 samples, 0.01%)</title><rect x="34.4860%" y="805" width="0.0145%" height="15" fill="rgb(220,157,5)" fg:x="221930" fg:w="93"/><text x="34.7360%" y="815.50"></text></g><g><title>memset_erms (193 samples, 0.03%)</title><rect x="34.5006%" y="805" width="0.0300%" height="15" fill="rgb(253,137,8)" fg:x="222024" fg:w="193"/><text x="34.7506%" y="815.50"></text></g><g><title>__check_object_size.part.0 (98 samples, 0.02%)</title><rect x="34.5553%" y="773" width="0.0152%" height="15" fill="rgb(217,137,51)" fg:x="222376" fg:w="98"/><text x="34.8053%" y="783.50"></text></g><g><title>getname_flags.part.0 (597 samples, 0.09%)</title><rect x="34.4818%" y="821" width="0.0928%" height="15" fill="rgb(218,209,53)" fg:x="221903" fg:w="597"/><text x="34.7318%" y="831.50"></text></g><g><title>strncpy_from_user (283 samples, 0.04%)</title><rect x="34.5306%" y="805" width="0.0440%" height="15" fill="rgb(249,137,25)" fg:x="222217" fg:w="283"/><text x="34.7806%" y="815.50"></text></g><g><title>__check_object_size (125 samples, 0.02%)</title><rect x="34.5551%" y="789" width="0.0194%" height="15" fill="rgb(239,155,26)" fg:x="222375" fg:w="125"/><text x="34.8051%" y="799.50"></text></g><g><title>getname_flags (603 samples, 0.09%)</title><rect x="34.4818%" y="837" width="0.0937%" height="15" fill="rgb(227,85,46)" fg:x="221903" fg:w="603"/><text x="34.7318%" y="847.50"></text></g><g><title>kmem_cache_free (92 samples, 0.01%)</title><rect x="34.5773%" y="821" width="0.0143%" height="15" fill="rgb(251,107,43)" fg:x="222518" fg:w="92"/><text x="34.8273%" y="831.50"></text></g><g><title>user_path_at_empty (4,324 samples, 0.67%)</title><rect x="33.9205%" y="853" width="0.6719%" height="15" fill="rgb(234,170,33)" fg:x="218291" fg:w="4324"/><text x="34.1705%" y="863.50"></text></g><g><title>putname (105 samples, 0.02%)</title><rect x="34.5761%" y="837" width="0.0163%" height="15" fill="rgb(206,29,35)" fg:x="222510" fg:w="105"/><text x="34.8261%" y="847.50"></text></g><g><title>__alloc_pages (71 samples, 0.01%)</title><rect x="34.6258%" y="757" width="0.0110%" height="15" fill="rgb(227,138,25)" fg:x="222830" fg:w="71"/><text x="34.8758%" y="767.50"></text></g><g><title>__page_cache_alloc (88 samples, 0.01%)</title><rect x="34.6237%" y="789" width="0.0137%" height="15" fill="rgb(249,131,35)" fg:x="222816" fg:w="88"/><text x="34.8737%" y="799.50"></text></g><g><title>alloc_pages (81 samples, 0.01%)</title><rect x="34.6247%" y="773" width="0.0126%" height="15" fill="rgb(239,6,40)" fg:x="222823" fg:w="81"/><text x="34.8747%" y="783.50"></text></g><g><title>__add_to_page_cache_locked (81 samples, 0.01%)</title><rect x="34.6379%" y="773" width="0.0126%" height="15" fill="rgb(246,136,47)" fg:x="222908" fg:w="81"/><text x="34.8879%" y="783.50"></text></g><g><title>add_to_page_cache_lru (119 samples, 0.02%)</title><rect x="34.6373%" y="789" width="0.0185%" height="15" fill="rgb(253,58,26)" fg:x="222904" fg:w="119"/><text x="34.8873%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="34.7183%" y="597" width="0.0109%" height="15" fill="rgb(237,141,10)" fg:x="223425" fg:w="70"/><text x="34.9683%" y="607.50"></text></g><g><title>x86_pmu_enable (67 samples, 0.01%)</title><rect x="34.7187%" y="581" width="0.0104%" height="15" fill="rgb(234,156,12)" fg:x="223428" fg:w="67"/><text x="34.9687%" y="591.50"></text></g><g><title>intel_pmu_enable_all (67 samples, 0.01%)</title><rect x="34.7187%" y="565" width="0.0104%" height="15" fill="rgb(243,224,36)" fg:x="223428" fg:w="67"/><text x="34.9687%" y="575.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="34.7189%" y="549" width="0.0103%" height="15" fill="rgb(205,229,51)" fg:x="223429" fg:w="66"/><text x="34.9689%" y="559.50"></text></g><g><title>finish_task_switch.isra.0 (78 samples, 0.01%)</title><rect x="34.7177%" y="613" width="0.0121%" height="15" fill="rgb(223,189,4)" fg:x="223421" fg:w="78"/><text x="34.9677%" y="623.50"></text></g><g><title>btrfs_tree_read_lock (151 samples, 0.02%)</title><rect x="34.7119%" y="709" width="0.0235%" height="15" fill="rgb(249,167,54)" fg:x="223384" fg:w="151"/><text x="34.9619%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (151 samples, 0.02%)</title><rect x="34.7119%" y="693" width="0.0235%" height="15" fill="rgb(218,34,28)" fg:x="223384" fg:w="151"/><text x="34.9619%" y="703.50"></text></g><g><title>down_read (148 samples, 0.02%)</title><rect x="34.7124%" y="677" width="0.0230%" height="15" fill="rgb(232,109,42)" fg:x="223387" fg:w="148"/><text x="34.9624%" y="687.50"></text></g><g><title>rwsem_down_read_slowpath (141 samples, 0.02%)</title><rect x="34.7135%" y="661" width="0.0219%" height="15" fill="rgb(248,214,46)" fg:x="223394" fg:w="141"/><text x="34.9635%" y="671.50"></text></g><g><title>schedule (134 samples, 0.02%)</title><rect x="34.7146%" y="645" width="0.0208%" height="15" fill="rgb(244,216,40)" fg:x="223401" fg:w="134"/><text x="34.9646%" y="655.50"></text></g><g><title>__schedule (134 samples, 0.02%)</title><rect x="34.7146%" y="629" width="0.0208%" height="15" fill="rgb(231,226,31)" fg:x="223401" fg:w="134"/><text x="34.9646%" y="639.50"></text></g><g><title>find_extent_buffer_nolock (67 samples, 0.01%)</title><rect x="34.7463%" y="677" width="0.0104%" height="15" fill="rgb(238,38,43)" fg:x="223605" fg:w="67"/><text x="34.9963%" y="687.50"></text></g><g><title>find_extent_buffer (91 samples, 0.01%)</title><rect x="34.7453%" y="693" width="0.0141%" height="15" fill="rgb(208,88,43)" fg:x="223599" fg:w="91"/><text x="34.9953%" y="703.50"></text></g><g><title>read_block_for_search (142 samples, 0.02%)</title><rect x="34.7385%" y="709" width="0.0221%" height="15" fill="rgb(205,136,37)" fg:x="223555" fg:w="142"/><text x="34.9885%" y="719.50"></text></g><g><title>btrfs_search_slot (467 samples, 0.07%)</title><rect x="34.6919%" y="725" width="0.0726%" height="15" fill="rgb(237,34,14)" fg:x="223255" fg:w="467"/><text x="34.9419%" y="735.50"></text></g><g><title>btrfs_lookup_file_extent (482 samples, 0.07%)</title><rect x="34.6909%" y="741" width="0.0749%" height="15" fill="rgb(236,193,44)" fg:x="223249" fg:w="482"/><text x="34.9409%" y="751.50"></text></g><g><title>btrfs_get_extent (677 samples, 0.11%)</title><rect x="34.6721%" y="757" width="0.1052%" height="15" fill="rgb(231,48,10)" fg:x="223128" fg:w="677"/><text x="34.9221%" y="767.50"></text></g><g><title>btrfs_do_readpage (792 samples, 0.12%)</title><rect x="34.6567%" y="773" width="0.1231%" height="15" fill="rgb(213,141,34)" fg:x="223029" fg:w="792"/><text x="34.9067%" y="783.50"></text></g><g><title>btrfs_readpage (852 samples, 0.13%)</title><rect x="34.6564%" y="789" width="0.1324%" height="15" fill="rgb(249,130,34)" fg:x="223027" fg:w="852"/><text x="34.9064%" y="799.50"></text></g><g><title>pagecache_get_page (155 samples, 0.02%)</title><rect x="34.7969%" y="789" width="0.0241%" height="15" fill="rgb(219,42,41)" fg:x="223931" fg:w="155"/><text x="35.0469%" y="799.50"></text></g><g><title>do_read_cache_page (1,288 samples, 0.20%)</title><rect x="34.6215%" y="805" width="0.2001%" height="15" fill="rgb(224,100,54)" fg:x="222802" fg:w="1288"/><text x="34.8715%" y="815.50"></text></g><g><title>page_get_link (1,368 samples, 0.21%)</title><rect x="34.6094%" y="837" width="0.2126%" height="15" fill="rgb(229,200,27)" fg:x="222724" fg:w="1368"/><text x="34.8594%" y="847.50"></text></g><g><title>read_cache_page (1,296 samples, 0.20%)</title><rect x="34.6205%" y="821" width="0.2014%" height="15" fill="rgb(217,118,10)" fg:x="222796" fg:w="1296"/><text x="34.8705%" y="831.50"></text></g><g><title>readlink_copy (147 samples, 0.02%)</title><rect x="34.8285%" y="837" width="0.0228%" height="15" fill="rgb(206,22,3)" fg:x="224134" fg:w="147"/><text x="35.0785%" y="847.50"></text></g><g><title>do_readlinkat (6,946 samples, 1.08%)</title><rect x="33.8147%" y="869" width="1.0793%" height="15" fill="rgb(232,163,46)" fg:x="217610" fg:w="6946"/><text x="34.0647%" y="879.50"></text></g><g><title>vfs_readlink (1,941 samples, 0.30%)</title><rect x="34.5924%" y="853" width="0.3016%" height="15" fill="rgb(206,95,13)" fg:x="222615" fg:w="1941"/><text x="34.8424%" y="863.50"></text></g><g><title>strlen (275 samples, 0.04%)</title><rect x="34.8513%" y="837" width="0.0427%" height="15" fill="rgb(253,154,18)" fg:x="224281" fg:w="275"/><text x="35.1013%" y="847.50"></text></g><g><title>security_inode_readlink (151 samples, 0.02%)</title><rect x="34.8947%" y="869" width="0.0235%" height="15" fill="rgb(219,32,23)" fg:x="224560" fg:w="151"/><text x="35.1447%" y="879.50"></text></g><g><title>__x64_sys_readlink (7,106 samples, 1.10%)</title><rect x="33.8144%" y="885" width="1.1042%" height="15" fill="rgb(230,191,45)" fg:x="217608" fg:w="7106"/><text x="34.0644%" y="895.50"></text></g><g><title>do_syscall_64 (7,195 samples, 1.12%)</title><rect x="33.8124%" y="901" width="1.1180%" height="15" fill="rgb(229,64,36)" fg:x="217595" fg:w="7195"/><text x="34.0624%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (7,216 samples, 1.12%)</title><rect x="33.8097%" y="917" width="1.1213%" height="15" fill="rgb(205,129,25)" fg:x="217578" fg:w="7216"/><text x="34.0597%" y="927.50"></text></g><g><title>__GI_readlink (7,326 samples, 1.14%)</title><rect x="33.7974%" y="933" width="1.1384%" height="15" fill="rgb(254,112,7)" fg:x="217499" fg:w="7326"/><text x="34.0474%" y="943.50"></text></g><g><title>__btrfs_unlink_inode (66 samples, 0.01%)</title><rect x="34.9386%" y="773" width="0.0103%" height="15" fill="rgb(226,53,48)" fg:x="224843" fg:w="66"/><text x="35.1886%" y="783.50"></text></g><g><title>btrfs_rmdir (85 samples, 0.01%)</title><rect x="34.9386%" y="789" width="0.0132%" height="15" fill="rgb(214,153,38)" fg:x="224843" fg:w="85"/><text x="35.1886%" y="799.50"></text></g><g><title>btrfs_evict_inode (143 samples, 0.02%)</title><rect x="34.9520%" y="757" width="0.0222%" height="15" fill="rgb(243,101,7)" fg:x="224929" fg:w="143"/><text x="35.2020%" y="767.50"></text></g><g><title>iput (155 samples, 0.02%)</title><rect x="34.9518%" y="789" width="0.0241%" height="15" fill="rgb(240,140,22)" fg:x="224928" fg:w="155"/><text x="35.2018%" y="799.50"></text></g><g><title>evict (155 samples, 0.02%)</title><rect x="34.9518%" y="773" width="0.0241%" height="15" fill="rgb(235,114,2)" fg:x="224928" fg:w="155"/><text x="35.2018%" y="783.50"></text></g><g><title>do_rmdir (303 samples, 0.05%)</title><rect x="34.9371%" y="821" width="0.0471%" height="15" fill="rgb(242,59,12)" fg:x="224833" fg:w="303"/><text x="35.1871%" y="831.50"></text></g><g><title>vfs_rmdir (293 samples, 0.05%)</title><rect x="34.9386%" y="805" width="0.0455%" height="15" fill="rgb(252,134,9)" fg:x="224843" fg:w="293"/><text x="35.1886%" y="815.50"></text></g><g><title>__x64_sys_rmdir (305 samples, 0.05%)</title><rect x="34.9371%" y="837" width="0.0474%" height="15" fill="rgb(236,4,44)" fg:x="224833" fg:w="305"/><text x="35.1871%" y="847.50"></text></g><g><title>__GI___rmdir (311 samples, 0.05%)</title><rect x="34.9363%" y="901" width="0.0483%" height="15" fill="rgb(254,172,41)" fg:x="224828" fg:w="311"/><text x="35.1863%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (311 samples, 0.05%)</title><rect x="34.9363%" y="885" width="0.0483%" height="15" fill="rgb(244,63,20)" fg:x="224828" fg:w="311"/><text x="35.1863%" y="895.50"></text></g><g><title>do_syscall_64 (311 samples, 0.05%)</title><rect x="34.9363%" y="869" width="0.0483%" height="15" fill="rgb(250,73,31)" fg:x="224828" fg:w="311"/><text x="35.1863%" y="879.50"></text></g><g><title>unload_network_ops_symbols (307 samples, 0.05%)</title><rect x="34.9369%" y="853" width="0.0477%" height="15" fill="rgb(241,38,36)" fg:x="224832" fg:w="307"/><text x="35.1869%" y="863.50"></text></g><g><title>__GI_remove (312 samples, 0.05%)</title><rect x="34.9363%" y="917" width="0.0485%" height="15" fill="rgb(245,211,2)" fg:x="224828" fg:w="312"/><text x="35.1863%" y="927.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (67 samples, 0.01%)</title><rect x="34.9908%" y="773" width="0.0104%" height="15" fill="rgb(206,120,28)" fg:x="225179" fg:w="67"/><text x="35.2408%" y="783.50"></text></g><g><title>btrfs_evict_inode (142 samples, 0.02%)</title><rect x="34.9907%" y="789" width="0.0221%" height="15" fill="rgb(211,59,34)" fg:x="225178" fg:w="142"/><text x="35.2407%" y="799.50"></text></g><g><title>iput (152 samples, 0.02%)</title><rect x="34.9902%" y="821" width="0.0236%" height="15" fill="rgb(233,168,5)" fg:x="225175" fg:w="152"/><text x="35.2402%" y="831.50"></text></g><g><title>evict (150 samples, 0.02%)</title><rect x="34.9905%" y="805" width="0.0233%" height="15" fill="rgb(234,33,13)" fg:x="225177" fg:w="150"/><text x="35.2405%" y="815.50"></text></g><g><title>__btrfs_unlink_inode (95 samples, 0.01%)</title><rect x="35.0141%" y="789" width="0.0148%" height="15" fill="rgb(231,150,26)" fg:x="225329" fg:w="95"/><text x="35.2641%" y="799.50"></text></g><g><title>btrfs_unlink (113 samples, 0.02%)</title><rect x="35.0141%" y="805" width="0.0176%" height="15" fill="rgb(217,191,4)" fg:x="225329" fg:w="113"/><text x="35.2641%" y="815.50"></text></g><g><title>do_unlinkat (302 samples, 0.05%)</title><rect x="34.9854%" y="837" width="0.0469%" height="15" fill="rgb(246,198,38)" fg:x="225144" fg:w="302"/><text x="35.2354%" y="847.50"></text></g><g><title>vfs_unlink (117 samples, 0.02%)</title><rect x="35.0141%" y="821" width="0.0182%" height="15" fill="rgb(245,64,37)" fg:x="225329" fg:w="117"/><text x="35.2641%" y="831.50"></text></g><g><title>__x64_sys_unlink (306 samples, 0.05%)</title><rect x="34.9854%" y="853" width="0.0475%" height="15" fill="rgb(250,30,36)" fg:x="225144" fg:w="306"/><text x="35.2354%" y="863.50"></text></g><g><title>[[falcon_kal]] (69 samples, 0.01%)</title><rect x="35.0350%" y="789" width="0.0107%" height="15" fill="rgb(217,86,53)" fg:x="225463" fg:w="69"/><text x="35.2850%" y="799.50"></text></g><g><title>user_path_at_empty (68 samples, 0.01%)</title><rect x="35.0351%" y="773" width="0.0106%" height="15" fill="rgb(228,157,16)" fg:x="225464" fg:w="68"/><text x="35.2851%" y="783.50"></text></g><g><title>__GI_remove (720 samples, 0.11%)</title><rect x="34.9358%" y="933" width="0.1119%" height="15" fill="rgb(217,59,31)" fg:x="224825" fg:w="720"/><text x="35.1858%" y="943.50"></text></g><g><title>__unlink (405 samples, 0.06%)</title><rect x="34.9848%" y="917" width="0.0629%" height="15" fill="rgb(237,138,41)" fg:x="225140" fg:w="405"/><text x="35.2348%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (404 samples, 0.06%)</title><rect x="34.9849%" y="901" width="0.0628%" height="15" fill="rgb(227,91,49)" fg:x="225141" fg:w="404"/><text x="35.2349%" y="911.50"></text></g><g><title>do_syscall_64 (404 samples, 0.06%)</title><rect x="34.9849%" y="885" width="0.0628%" height="15" fill="rgb(247,21,44)" fg:x="225141" fg:w="404"/><text x="35.2349%" y="895.50"></text></g><g><title>unload_network_ops_symbols (401 samples, 0.06%)</title><rect x="34.9854%" y="869" width="0.0623%" height="15" fill="rgb(219,210,51)" fg:x="225144" fg:w="401"/><text x="35.2354%" y="879.50"></text></g><g><title>cshook_systemcalltable_pre_unlink (91 samples, 0.01%)</title><rect x="35.0336%" y="853" width="0.0141%" height="15" fill="rgb(209,140,6)" fg:x="225454" fg:w="91"/><text x="35.2836%" y="863.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (91 samples, 0.01%)</title><rect x="35.0336%" y="837" width="0.0141%" height="15" fill="rgb(221,188,24)" fg:x="225454" fg:w="91"/><text x="35.2836%" y="847.50"></text></g><g><title>fshook_syscalltable_pre_lchown (84 samples, 0.01%)</title><rect x="35.0347%" y="821" width="0.0131%" height="15" fill="rgb(232,154,20)" fg:x="225461" fg:w="84"/><text x="35.2847%" y="831.50"></text></g><g><title>fshook_syscalltable_pre_lchown (83 samples, 0.01%)</title><rect x="35.0348%" y="805" width="0.0129%" height="15" fill="rgb(244,137,50)" fg:x="225462" fg:w="83"/><text x="35.2848%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (85 samples, 0.01%)</title><rect x="35.0709%" y="869" width="0.0132%" height="15" fill="rgb(225,185,43)" fg:x="225694" fg:w="85"/><text x="35.3209%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (99 samples, 0.02%)</title><rect x="35.0690%" y="885" width="0.0154%" height="15" fill="rgb(213,205,38)" fg:x="225682" fg:w="99"/><text x="35.3190%" y="895.50"></text></g><g><title>list_lru_add (71 samples, 0.01%)</title><rect x="35.1217%" y="805" width="0.0110%" height="15" fill="rgb(236,73,12)" fg:x="226021" fg:w="71"/><text x="35.3717%" y="815.50"></text></g><g><title>d_lru_add (92 samples, 0.01%)</title><rect x="35.1186%" y="821" width="0.0143%" height="15" fill="rgb(235,219,13)" fg:x="226001" fg:w="92"/><text x="35.3686%" y="831.50"></text></g><g><title>dput (217 samples, 0.03%)</title><rect x="35.1024%" y="837" width="0.0337%" height="15" fill="rgb(218,59,36)" fg:x="225897" fg:w="217"/><text x="35.3524%" y="847.50"></text></g><g><title>free_extent_buffer (82 samples, 0.01%)</title><rect x="35.1610%" y="741" width="0.0127%" height="15" fill="rgb(205,110,39)" fg:x="226274" fg:w="82"/><text x="35.4110%" y="751.50"></text></g><g><title>btrfs_release_path (122 samples, 0.02%)</title><rect x="35.1560%" y="757" width="0.0190%" height="15" fill="rgb(218,206,42)" fg:x="226242" fg:w="122"/><text x="35.4060%" y="767.50"></text></g><g><title>btrfs_free_path (169 samples, 0.03%)</title><rect x="35.1560%" y="773" width="0.0263%" height="15" fill="rgb(248,125,24)" fg:x="226242" fg:w="169"/><text x="35.4060%" y="783.50"></text></g><g><title>generic_bin_search.constprop.0 (259 samples, 0.04%)</title><rect x="35.2056%" y="725" width="0.0402%" height="15" fill="rgb(242,28,27)" fg:x="226561" fg:w="259"/><text x="35.4556%" y="735.50"></text></g><g><title>btrfs_bin_search (271 samples, 0.04%)</title><rect x="35.2039%" y="741" width="0.0421%" height="15" fill="rgb(216,228,15)" fg:x="226550" fg:w="271"/><text x="35.4539%" y="751.50"></text></g><g><title>__schedule (74 samples, 0.01%)</title><rect x="35.2503%" y="661" width="0.0115%" height="15" fill="rgb(235,116,46)" fg:x="226849" fg:w="74"/><text x="35.5003%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (81 samples, 0.01%)</title><rect x="35.2494%" y="693" width="0.0126%" height="15" fill="rgb(224,18,32)" fg:x="226843" fg:w="81"/><text x="35.4994%" y="703.50"></text></g><g><title>schedule (76 samples, 0.01%)</title><rect x="35.2502%" y="677" width="0.0118%" height="15" fill="rgb(252,5,12)" fg:x="226848" fg:w="76"/><text x="35.5002%" y="687.50"></text></g><g><title>down_read (94 samples, 0.01%)</title><rect x="35.2475%" y="709" width="0.0146%" height="15" fill="rgb(251,36,5)" fg:x="226831" fg:w="94"/><text x="35.4975%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (96 samples, 0.01%)</title><rect x="35.2474%" y="725" width="0.0149%" height="15" fill="rgb(217,53,14)" fg:x="226830" fg:w="96"/><text x="35.4974%" y="735.50"></text></g><g><title>btrfs_read_lock_root_node (130 samples, 0.02%)</title><rect x="35.2474%" y="741" width="0.0202%" height="15" fill="rgb(215,86,45)" fg:x="226830" fg:w="130"/><text x="35.4974%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (227 samples, 0.04%)</title><rect x="35.2917%" y="629" width="0.0353%" height="15" fill="rgb(242,169,11)" fg:x="227115" fg:w="227"/><text x="35.5417%" y="639.50"></text></g><g><title>x86_pmu_enable (223 samples, 0.03%)</title><rect x="35.2923%" y="613" width="0.0347%" height="15" fill="rgb(211,213,45)" fg:x="227119" fg:w="223"/><text x="35.5423%" y="623.50"></text></g><g><title>intel_pmu_enable_all (222 samples, 0.03%)</title><rect x="35.2925%" y="597" width="0.0345%" height="15" fill="rgb(205,88,11)" fg:x="227120" fg:w="222"/><text x="35.5425%" y="607.50"></text></g><g><title>native_write_msr (219 samples, 0.03%)</title><rect x="35.2929%" y="581" width="0.0340%" height="15" fill="rgb(252,69,26)" fg:x="227123" fg:w="219"/><text x="35.5429%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (242 samples, 0.04%)</title><rect x="35.2906%" y="645" width="0.0376%" height="15" fill="rgb(246,123,37)" fg:x="227108" fg:w="242"/><text x="35.5406%" y="655.50"></text></g><g><title>schedule (428 samples, 0.07%)</title><rect x="35.2794%" y="677" width="0.0665%" height="15" fill="rgb(212,205,5)" fg:x="227036" fg:w="428"/><text x="35.5294%" y="687.50"></text></g><g><title>__schedule (427 samples, 0.07%)</title><rect x="35.2796%" y="661" width="0.0664%" height="15" fill="rgb(253,148,0)" fg:x="227037" fg:w="427"/><text x="35.5296%" y="671.50"></text></g><g><title>rwsem_down_read_slowpath (455 samples, 0.07%)</title><rect x="35.2758%" y="693" width="0.0707%" height="15" fill="rgb(239,22,4)" fg:x="227013" fg:w="455"/><text x="35.5258%" y="703.50"></text></g><g><title>down_read (495 samples, 0.08%)</title><rect x="35.2698%" y="709" width="0.0769%" height="15" fill="rgb(226,26,53)" fg:x="226974" fg:w="495"/><text x="35.5198%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (503 samples, 0.08%)</title><rect x="35.2687%" y="725" width="0.0782%" height="15" fill="rgb(225,229,45)" fg:x="226967" fg:w="503"/><text x="35.5187%" y="735.50"></text></g><g><title>btrfs_tree_read_lock (509 samples, 0.08%)</title><rect x="35.2682%" y="741" width="0.0791%" height="15" fill="rgb(220,60,37)" fg:x="226964" fg:w="509"/><text x="35.5182%" y="751.50"></text></g><g><title>btrfs_tree_read_unlock (78 samples, 0.01%)</title><rect x="35.3473%" y="741" width="0.0121%" height="15" fill="rgb(217,180,35)" fg:x="227473" fg:w="78"/><text x="35.5973%" y="751.50"></text></g><g><title>up_read (73 samples, 0.01%)</title><rect x="35.3481%" y="725" width="0.0113%" height="15" fill="rgb(229,7,53)" fg:x="227478" fg:w="73"/><text x="35.5981%" y="735.50"></text></g><g><title>rwsem_wake.isra.0 (71 samples, 0.01%)</title><rect x="35.3484%" y="709" width="0.0110%" height="15" fill="rgb(254,137,3)" fg:x="227480" fg:w="71"/><text x="35.5984%" y="719.50"></text></g><g><title>radix_tree_lookup (166 samples, 0.03%)</title><rect x="35.4064%" y="693" width="0.0258%" height="15" fill="rgb(215,140,41)" fg:x="227853" fg:w="166"/><text x="35.6564%" y="703.50"></text></g><g><title>__radix_tree_lookup (166 samples, 0.03%)</title><rect x="35.4064%" y="677" width="0.0258%" height="15" fill="rgb(250,80,15)" fg:x="227853" fg:w="166"/><text x="35.6564%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (261 samples, 0.04%)</title><rect x="35.3917%" y="709" width="0.0406%" height="15" fill="rgb(252,191,6)" fg:x="227759" fg:w="261"/><text x="35.6417%" y="719.50"></text></g><g><title>mark_page_accessed (68 samples, 0.01%)</title><rect x="35.4323%" y="709" width="0.0106%" height="15" fill="rgb(246,217,18)" fg:x="228020" fg:w="68"/><text x="35.6823%" y="719.50"></text></g><g><title>find_extent_buffer (355 samples, 0.06%)</title><rect x="35.3882%" y="725" width="0.0552%" height="15" fill="rgb(223,93,7)" fg:x="227736" fg:w="355"/><text x="35.6382%" y="735.50"></text></g><g><title>read_block_for_search (542 samples, 0.08%)</title><rect x="35.3605%" y="741" width="0.0842%" height="15" fill="rgb(225,55,52)" fg:x="227558" fg:w="542"/><text x="35.6105%" y="751.50"></text></g><g><title>btrfs_search_slot (1,737 samples, 0.27%)</title><rect x="35.1877%" y="757" width="0.2699%" height="15" fill="rgb(240,31,24)" fg:x="226446" fg:w="1737"/><text x="35.4377%" y="767.50"></text></g><g><title>btrfs_lookup_dir_item (1,831 samples, 0.28%)</title><rect x="35.1823%" y="773" width="0.2845%" height="15" fill="rgb(205,56,52)" fg:x="226411" fg:w="1831"/><text x="35.4323%" y="783.50"></text></g><g><title>btrfs_lookup_dentry (2,103 samples, 0.33%)</title><rect x="35.1436%" y="789" width="0.3268%" height="15" fill="rgb(246,146,12)" fg:x="226162" fg:w="2103"/><text x="35.3936%" y="799.50"></text></g><g><title>btrfs_lookup (2,180 samples, 0.34%)</title><rect x="35.1416%" y="805" width="0.3388%" height="15" fill="rgb(239,84,36)" fg:x="226149" fg:w="2180"/><text x="35.3916%" y="815.50"></text></g><g><title>kmem_cache_alloc (155 samples, 0.02%)</title><rect x="35.4895%" y="773" width="0.0241%" height="15" fill="rgb(207,41,40)" fg:x="228388" fg:w="155"/><text x="35.7395%" y="783.50"></text></g><g><title>__d_alloc (208 samples, 0.03%)</title><rect x="35.4833%" y="789" width="0.0323%" height="15" fill="rgb(241,179,25)" fg:x="228348" fg:w="208"/><text x="35.7333%" y="799.50"></text></g><g><title>d_alloc (223 samples, 0.03%)</title><rect x="35.4828%" y="805" width="0.0347%" height="15" fill="rgb(210,0,34)" fg:x="228345" fg:w="223"/><text x="35.7328%" y="815.50"></text></g><g><title>__lookup_hash (2,500 samples, 0.39%)</title><rect x="35.1395%" y="821" width="0.3885%" height="15" fill="rgb(225,217,29)" fg:x="226136" fg:w="2500"/><text x="35.3895%" y="831.50"></text></g><g><title>inode_permission (304 samples, 0.05%)</title><rect x="35.5863%" y="773" width="0.0472%" height="15" fill="rgb(216,191,38)" fg:x="229011" fg:w="304"/><text x="35.8363%" y="783.50"></text></g><g><title>__d_lookup_rcu (463 samples, 0.07%)</title><rect x="35.6586%" y="741" width="0.0719%" height="15" fill="rgb(232,140,52)" fg:x="229476" fg:w="463"/><text x="35.9086%" y="751.50"></text></g><g><title>lookup_fast (525 samples, 0.08%)</title><rect x="35.6492%" y="757" width="0.0816%" height="15" fill="rgb(223,158,51)" fg:x="229416" fg:w="525"/><text x="35.8992%" y="767.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (1,270 samples, 0.20%)</title><rect x="35.5484%" y="789" width="0.1973%" height="15" fill="rgb(235,29,51)" fg:x="228767" fg:w="1270"/><text x="35.7984%" y="799.50"></text></g><g><title>walk_component (696 samples, 0.11%)</title><rect x="35.6376%" y="773" width="0.1082%" height="15" fill="rgb(215,181,18)" fg:x="229341" fg:w="696"/><text x="35.8876%" y="783.50"></text></g><g><title>step_into (96 samples, 0.01%)</title><rect x="35.7308%" y="757" width="0.0149%" height="15" fill="rgb(227,125,34)" fg:x="229941" fg:w="96"/><text x="35.9808%" y="767.50"></text></g><g><title>path_parentat (1,441 samples, 0.22%)</title><rect x="35.5370%" y="805" width="0.2239%" height="15" fill="rgb(230,197,49)" fg:x="228694" fg:w="1441"/><text x="35.7870%" y="815.50"></text></g><g><title>filename_parentat (1,480 samples, 0.23%)</title><rect x="35.5311%" y="821" width="0.2300%" height="15" fill="rgb(239,141,16)" fg:x="228656" fg:w="1480"/><text x="35.7811%" y="831.50"></text></g><g><title>filename_create (4,061 samples, 0.63%)</title><rect x="35.1361%" y="837" width="0.6310%" height="15" fill="rgb(225,105,43)" fg:x="226114" fg:w="4061"/><text x="35.3861%" y="847.50"></text></g><g><title>putname (93 samples, 0.01%)</title><rect x="35.7740%" y="837" width="0.0145%" height="15" fill="rgb(214,131,14)" fg:x="230219" fg:w="93"/><text x="36.0240%" y="847.50"></text></g><g><title>kmem_cache_free (78 samples, 0.01%)</title><rect x="35.7763%" y="821" width="0.0121%" height="15" fill="rgb(229,177,11)" fg:x="230234" fg:w="78"/><text x="36.0263%" y="831.50"></text></g><g><title>__btrfs_add_delayed_item (71 samples, 0.01%)</title><rect x="35.8551%" y="757" width="0.0110%" height="15" fill="rgb(231,180,14)" fg:x="230741" fg:w="71"/><text x="36.1051%" y="767.50"></text></g><g><title>__kmalloc (97 samples, 0.02%)</title><rect x="35.8730%" y="741" width="0.0151%" height="15" fill="rgb(232,88,2)" fg:x="230856" fg:w="97"/><text x="36.1230%" y="751.50"></text></g><g><title>btrfs_alloc_delayed_item (114 samples, 0.02%)</title><rect x="35.8718%" y="757" width="0.0177%" height="15" fill="rgb(205,220,8)" fg:x="230848" fg:w="114"/><text x="36.1218%" y="767.50"></text></g><g><title>btrfs_insert_delayed_dir_index (384 samples, 0.06%)</title><rect x="35.8523%" y="773" width="0.0597%" height="15" fill="rgb(225,23,53)" fg:x="230723" fg:w="384"/><text x="36.1023%" y="783.50"></text></g><g><title>free_extent_buffer (83 samples, 0.01%)</title><rect x="35.9188%" y="757" width="0.0129%" height="15" fill="rgb(213,62,29)" fg:x="231151" fg:w="83"/><text x="36.1688%" y="767.50"></text></g><g><title>free_extent_buffer.part.0 (68 samples, 0.01%)</title><rect x="35.9212%" y="741" width="0.0106%" height="15" fill="rgb(227,75,7)" fg:x="231166" fg:w="68"/><text x="36.1712%" y="751.50"></text></g><g><title>btrfs_release_path (110 samples, 0.02%)</title><rect x="35.9151%" y="773" width="0.0171%" height="15" fill="rgb(207,105,14)" fg:x="231127" fg:w="110"/><text x="36.1651%" y="783.50"></text></g><g><title>btrfs_get_token_32 (86 samples, 0.01%)</title><rect x="35.9490%" y="741" width="0.0134%" height="15" fill="rgb(245,62,29)" fg:x="231345" fg:w="86"/><text x="36.1990%" y="751.50"></text></g><g><title>btrfs_bin_search (223 samples, 0.03%)</title><rect x="35.9794%" y="725" width="0.0347%" height="15" fill="rgb(236,202,4)" fg:x="231541" fg:w="223"/><text x="36.2294%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (220 samples, 0.03%)</title><rect x="35.9799%" y="709" width="0.0342%" height="15" fill="rgb(250,67,1)" fg:x="231544" fg:w="220"/><text x="36.2299%" y="719.50"></text></g><g><title>__btrfs_tree_read_lock (99 samples, 0.02%)</title><rect x="36.0217%" y="709" width="0.0154%" height="15" fill="rgb(253,115,44)" fg:x="231813" fg:w="99"/><text x="36.2717%" y="719.50"></text></g><g><title>down_read (97 samples, 0.02%)</title><rect x="36.0220%" y="693" width="0.0151%" height="15" fill="rgb(251,139,18)" fg:x="231815" fg:w="97"/><text x="36.2720%" y="703.50"></text></g><g><title>rwsem_down_read_slowpath (87 samples, 0.01%)</title><rect x="36.0236%" y="677" width="0.0135%" height="15" fill="rgb(218,22,32)" fg:x="231825" fg:w="87"/><text x="36.2736%" y="687.50"></text></g><g><title>schedule (82 samples, 0.01%)</title><rect x="36.0243%" y="661" width="0.0127%" height="15" fill="rgb(243,53,5)" fg:x="231830" fg:w="82"/><text x="36.2743%" y="671.50"></text></g><g><title>__schedule (82 samples, 0.01%)</title><rect x="36.0243%" y="645" width="0.0127%" height="15" fill="rgb(227,56,16)" fg:x="231830" fg:w="82"/><text x="36.2743%" y="655.50"></text></g><g><title>btrfs_read_lock_root_node (118 samples, 0.02%)</title><rect x="36.0212%" y="725" width="0.0183%" height="15" fill="rgb(245,53,0)" fg:x="231810" fg:w="118"/><text x="36.2712%" y="735.50"></text></g><g><title>osq_lock (142 samples, 0.02%)</title><rect x="36.0691%" y="645" width="0.0221%" height="15" fill="rgb(216,170,35)" fg:x="232118" fg:w="142"/><text x="36.3191%" y="655.50"></text></g><g><title>rwsem_spin_on_owner (163 samples, 0.03%)</title><rect x="36.0921%" y="645" width="0.0253%" height="15" fill="rgb(211,200,8)" fg:x="232266" fg:w="163"/><text x="36.3421%" y="655.50"></text></g><g><title>rwsem_optimistic_spin (457 samples, 0.07%)</title><rect x="36.0470%" y="661" width="0.0710%" height="15" fill="rgb(228,204,44)" fg:x="231976" fg:w="457"/><text x="36.2970%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (236 samples, 0.04%)</title><rect x="36.1232%" y="613" width="0.0367%" height="15" fill="rgb(214,121,17)" fg:x="232466" fg:w="236"/><text x="36.3732%" y="623.50"></text></g><g><title>x86_pmu_enable (232 samples, 0.04%)</title><rect x="36.1238%" y="597" width="0.0361%" height="15" fill="rgb(233,64,38)" fg:x="232470" fg:w="232"/><text x="36.3738%" y="607.50"></text></g><g><title>intel_pmu_enable_all (231 samples, 0.04%)</title><rect x="36.1240%" y="581" width="0.0359%" height="15" fill="rgb(253,54,19)" fg:x="232471" fg:w="231"/><text x="36.3740%" y="591.50"></text></g><g><title>native_write_msr (229 samples, 0.04%)</title><rect x="36.1243%" y="565" width="0.0356%" height="15" fill="rgb(253,94,18)" fg:x="232473" fg:w="229"/><text x="36.3743%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (246 samples, 0.04%)</title><rect x="36.1227%" y="629" width="0.0382%" height="15" fill="rgb(227,57,52)" fg:x="232463" fg:w="246"/><text x="36.3727%" y="639.50"></text></g><g><title>rwsem_down_write_slowpath (784 samples, 0.12%)</title><rect x="36.0439%" y="677" width="0.1218%" height="15" fill="rgb(230,228,50)" fg:x="231956" fg:w="784"/><text x="36.2939%" y="687.50"></text></g><g><title>schedule (306 samples, 0.05%)</title><rect x="36.1182%" y="661" width="0.0475%" height="15" fill="rgb(217,205,27)" fg:x="232434" fg:w="306"/><text x="36.3682%" y="671.50"></text></g><g><title>__schedule (305 samples, 0.05%)</title><rect x="36.1184%" y="645" width="0.0474%" height="15" fill="rgb(252,71,50)" fg:x="232435" fg:w="305"/><text x="36.3684%" y="655.50"></text></g><g><title>__btrfs_tree_lock (810 samples, 0.13%)</title><rect x="36.0400%" y="709" width="0.1259%" height="15" fill="rgb(209,86,4)" fg:x="231931" fg:w="810"/><text x="36.2900%" y="719.50"></text></g><g><title>down_write (806 samples, 0.13%)</title><rect x="36.0407%" y="693" width="0.1252%" height="15" fill="rgb(229,94,0)" fg:x="231935" fg:w="806"/><text x="36.2907%" y="703.50"></text></g><g><title>btrfs_tree_lock (811 samples, 0.13%)</title><rect x="36.0400%" y="725" width="0.1260%" height="15" fill="rgb(252,223,21)" fg:x="231931" fg:w="811"/><text x="36.2900%" y="735.50"></text></g><g><title>find_extent_buffer_nolock (142 samples, 0.02%)</title><rect x="36.2041%" y="693" width="0.0221%" height="15" fill="rgb(230,210,4)" fg:x="232987" fg:w="142"/><text x="36.4541%" y="703.50"></text></g><g><title>radix_tree_lookup (98 samples, 0.02%)</title><rect x="36.2110%" y="677" width="0.0152%" height="15" fill="rgb(240,149,38)" fg:x="233031" fg:w="98"/><text x="36.4610%" y="687.50"></text></g><g><title>__radix_tree_lookup (98 samples, 0.02%)</title><rect x="36.2110%" y="661" width="0.0152%" height="15" fill="rgb(254,105,20)" fg:x="233031" fg:w="98"/><text x="36.4610%" y="671.50"></text></g><g><title>mark_page_accessed (72 samples, 0.01%)</title><rect x="36.2262%" y="693" width="0.0112%" height="15" fill="rgb(253,87,46)" fg:x="233129" fg:w="72"/><text x="36.4762%" y="703.50"></text></g><g><title>find_extent_buffer (238 samples, 0.04%)</title><rect x="36.2012%" y="709" width="0.0370%" height="15" fill="rgb(253,116,33)" fg:x="232968" fg:w="238"/><text x="36.4512%" y="719.50"></text></g><g><title>read_block_for_search (405 samples, 0.06%)</title><rect x="36.1766%" y="725" width="0.0629%" height="15" fill="rgb(229,198,5)" fg:x="232810" fg:w="405"/><text x="36.4266%" y="735.50"></text></g><g><title>__push_leaf_left (94 samples, 0.01%)</title><rect x="36.2472%" y="693" width="0.0146%" height="15" fill="rgb(242,38,37)" fg:x="233264" fg:w="94"/><text x="36.4972%" y="703.50"></text></g><g><title>push_leaf_left (111 samples, 0.02%)</title><rect x="36.2470%" y="709" width="0.0172%" height="15" fill="rgb(242,69,53)" fg:x="233263" fg:w="111"/><text x="36.4970%" y="719.50"></text></g><g><title>__push_leaf_right (97 samples, 0.02%)</title><rect x="36.2646%" y="693" width="0.0151%" height="15" fill="rgb(249,80,16)" fg:x="233376" fg:w="97"/><text x="36.5146%" y="703.50"></text></g><g><title>split_leaf (281 samples, 0.04%)</title><rect x="36.2399%" y="725" width="0.0437%" height="15" fill="rgb(206,128,11)" fg:x="233217" fg:w="281"/><text x="36.4899%" y="735.50"></text></g><g><title>push_leaf_right (124 samples, 0.02%)</title><rect x="36.2643%" y="709" width="0.0193%" height="15" fill="rgb(212,35,20)" fg:x="233374" fg:w="124"/><text x="36.5143%" y="719.50"></text></g><g><title>rwsem_wake.isra.0 (187 samples, 0.03%)</title><rect x="36.2943%" y="677" width="0.0291%" height="15" fill="rgb(236,79,13)" fg:x="233567" fg:w="187"/><text x="36.5443%" y="687.50"></text></g><g><title>wake_up_q (154 samples, 0.02%)</title><rect x="36.2994%" y="661" width="0.0239%" height="15" fill="rgb(233,123,3)" fg:x="233600" fg:w="154"/><text x="36.5494%" y="671.50"></text></g><g><title>try_to_wake_up (147 samples, 0.02%)</title><rect x="36.3005%" y="645" width="0.0228%" height="15" fill="rgb(214,93,52)" fg:x="233607" fg:w="147"/><text x="36.5505%" y="655.50"></text></g><g><title>btrfs_tree_unlock (192 samples, 0.03%)</title><rect x="36.2936%" y="709" width="0.0298%" height="15" fill="rgb(251,37,40)" fg:x="233563" fg:w="192"/><text x="36.5436%" y="719.50"></text></g><g><title>up_write (189 samples, 0.03%)</title><rect x="36.2941%" y="693" width="0.0294%" height="15" fill="rgb(227,80,54)" fg:x="233566" fg:w="189"/><text x="36.5441%" y="703.50"></text></g><g><title>btrfs_search_slot (2,346 samples, 0.36%)</title><rect x="35.9633%" y="741" width="0.3645%" height="15" fill="rgb(254,48,11)" fg:x="231437" fg:w="2346"/><text x="36.2133%" y="751.50"></text></g><g><title>unlock_up (280 samples, 0.04%)</title><rect x="36.2843%" y="725" width="0.0435%" height="15" fill="rgb(235,193,26)" fg:x="233503" fg:w="280"/><text x="36.5343%" y="735.50"></text></g><g><title>btrfs_get_token_32 (523 samples, 0.08%)</title><rect x="36.3667%" y="725" width="0.0813%" height="15" fill="rgb(229,99,21)" fg:x="234033" fg:w="523"/><text x="36.6167%" y="735.50"></text></g><g><title>btrfs_set_token_32 (452 samples, 0.07%)</title><rect x="36.4604%" y="725" width="0.0702%" height="15" fill="rgb(211,140,41)" fg:x="234636" fg:w="452"/><text x="36.7104%" y="735.50"></text></g><g><title>check_setget_bounds.isra.0 (166 samples, 0.03%)</title><rect x="36.5331%" y="725" width="0.0258%" height="15" fill="rgb(240,227,30)" fg:x="235104" fg:w="166"/><text x="36.7831%" y="735.50"></text></g><g><title>memcpy_extent_buffer (153 samples, 0.02%)</title><rect x="36.5721%" y="709" width="0.0238%" height="15" fill="rgb(215,224,45)" fg:x="235355" fg:w="153"/><text x="36.8221%" y="719.50"></text></g><g><title>memmove (138 samples, 0.02%)</title><rect x="36.5744%" y="693" width="0.0214%" height="15" fill="rgb(206,123,31)" fg:x="235370" fg:w="138"/><text x="36.8244%" y="703.50"></text></g><g><title>memmove_extent_buffer (313 samples, 0.05%)</title><rect x="36.5617%" y="725" width="0.0486%" height="15" fill="rgb(210,138,16)" fg:x="235288" fg:w="313"/><text x="36.8117%" y="735.50"></text></g><g><title>memmove (93 samples, 0.01%)</title><rect x="36.5959%" y="709" width="0.0145%" height="15" fill="rgb(228,57,28)" fg:x="235508" fg:w="93"/><text x="36.8459%" y="719.50"></text></g><g><title>setup_items_for_insert (1,770 samples, 0.28%)</title><rect x="36.3379%" y="741" width="0.2750%" height="15" fill="rgb(242,170,10)" fg:x="233848" fg:w="1770"/><text x="36.5879%" y="751.50"></text></g><g><title>btrfs_insert_empty_items (4,284 samples, 0.67%)</title><rect x="35.9476%" y="757" width="0.6657%" height="15" fill="rgb(228,214,39)" fg:x="231336" fg:w="4284"/><text x="36.1976%" y="767.50"></text></g><g><title>insert_with_overflow (4,328 samples, 0.67%)</title><rect x="35.9420%" y="773" width="0.6725%" height="15" fill="rgb(218,179,33)" fg:x="231300" fg:w="4328"/><text x="36.1920%" y="783.50"></text></g><g><title>btrfs_insert_dir_item (5,112 samples, 0.79%)</title><rect x="35.8309%" y="789" width="0.7944%" height="15" fill="rgb(235,193,39)" fg:x="230585" fg:w="5112"/><text x="36.0809%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (99 samples, 0.02%)</title><rect x="36.6310%" y="773" width="0.0154%" height="15" fill="rgb(219,221,36)" fg:x="235734" fg:w="99"/><text x="36.8810%" y="783.50"></text></g><g><title>btrfs_update_inode (155 samples, 0.02%)</title><rect x="36.6268%" y="789" width="0.0241%" height="15" fill="rgb(248,218,19)" fg:x="235707" fg:w="155"/><text x="36.8768%" y="799.50"></text></g><g><title>btrfs_add_link (5,359 samples, 0.83%)</title><rect x="35.8220%" y="805" width="0.8327%" height="15" fill="rgb(205,50,9)" fg:x="230528" fg:w="5359"/><text x="36.0720%" y="815.50"></text></g><g><title>btrfs_alloc_path (68 samples, 0.01%)</title><rect x="36.6548%" y="805" width="0.0106%" height="15" fill="rgb(238,81,28)" fg:x="235887" fg:w="68"/><text x="36.9048%" y="815.50"></text></g><g><title>__queue_work (116 samples, 0.02%)</title><rect x="36.6706%" y="725" width="0.0180%" height="15" fill="rgb(235,110,19)" fg:x="235989" fg:w="116"/><text x="36.9206%" y="735.50"></text></g><g><title>insert_work (105 samples, 0.02%)</title><rect x="36.6723%" y="709" width="0.0163%" height="15" fill="rgb(214,7,14)" fg:x="236000" fg:w="105"/><text x="36.9223%" y="719.50"></text></g><g><title>wake_up_process (105 samples, 0.02%)</title><rect x="36.6723%" y="693" width="0.0163%" height="15" fill="rgb(211,77,3)" fg:x="236000" fg:w="105"/><text x="36.9223%" y="703.50"></text></g><g><title>try_to_wake_up (100 samples, 0.02%)</title><rect x="36.6731%" y="677" width="0.0155%" height="15" fill="rgb(229,5,9)" fg:x="236005" fg:w="100"/><text x="36.9231%" y="687.50"></text></g><g><title>btrfs_queue_work (128 samples, 0.02%)</title><rect x="36.6694%" y="757" width="0.0199%" height="15" fill="rgb(225,90,11)" fg:x="235981" fg:w="128"/><text x="36.9194%" y="767.50"></text></g><g><title>queue_work_on (121 samples, 0.02%)</title><rect x="36.6705%" y="741" width="0.0188%" height="15" fill="rgb(242,56,8)" fg:x="235988" fg:w="121"/><text x="36.9205%" y="751.50"></text></g><g><title>btrfs_wq_run_delayed_node (143 samples, 0.02%)</title><rect x="36.6689%" y="773" width="0.0222%" height="15" fill="rgb(249,212,39)" fg:x="235978" fg:w="143"/><text x="36.9189%" y="783.50"></text></g><g><title>btrfs_balance_delayed_items (174 samples, 0.03%)</title><rect x="36.6663%" y="789" width="0.0270%" height="15" fill="rgb(236,90,9)" fg:x="235961" fg:w="174"/><text x="36.9163%" y="799.50"></text></g><g><title>btrfs_btree_balance_dirty (191 samples, 0.03%)</title><rect x="36.6661%" y="805" width="0.0297%" height="15" fill="rgb(206,88,35)" fg:x="235960" fg:w="191"/><text x="36.9161%" y="815.50"></text></g><g><title>btrfs_trans_release_metadata (78 samples, 0.01%)</title><rect x="36.7081%" y="773" width="0.0121%" height="15" fill="rgb(205,126,30)" fg:x="236230" fg:w="78"/><text x="36.9581%" y="783.50"></text></g><g><title>__btrfs_end_transaction (186 samples, 0.03%)</title><rect x="36.6966%" y="789" width="0.0289%" height="15" fill="rgb(230,176,12)" fg:x="236156" fg:w="186"/><text x="36.9466%" y="799.50"></text></g><g><title>btrfs_end_transaction (209 samples, 0.03%)</title><rect x="36.6966%" y="805" width="0.0325%" height="15" fill="rgb(243,19,9)" fg:x="236156" fg:w="209"/><text x="36.9466%" y="815.50"></text></g><g><title>free_extent_buffer (75 samples, 0.01%)</title><rect x="36.7312%" y="773" width="0.0117%" height="15" fill="rgb(245,171,17)" fg:x="236379" fg:w="75"/><text x="36.9812%" y="783.50"></text></g><g><title>btrfs_release_path (98 samples, 0.02%)</title><rect x="36.7292%" y="789" width="0.0152%" height="15" fill="rgb(227,52,21)" fg:x="236366" fg:w="98"/><text x="36.9792%" y="799.50"></text></g><g><title>btrfs_free_path (135 samples, 0.02%)</title><rect x="36.7290%" y="805" width="0.0210%" height="15" fill="rgb(238,69,14)" fg:x="236365" fg:w="135"/><text x="36.9790%" y="815.50"></text></g><g><title>btrfs_bin_search (173 samples, 0.03%)</title><rect x="36.7750%" y="773" width="0.0269%" height="15" fill="rgb(241,156,39)" fg:x="236661" fg:w="173"/><text x="37.0250%" y="783.50"></text></g><g><title>generic_bin_search.constprop.0 (168 samples, 0.03%)</title><rect x="36.7758%" y="757" width="0.0261%" height="15" fill="rgb(212,227,28)" fg:x="236666" fg:w="168"/><text x="37.0258%" y="767.50"></text></g><g><title>schedule (81 samples, 0.01%)</title><rect x="36.8125%" y="709" width="0.0126%" height="15" fill="rgb(209,118,27)" fg:x="236902" fg:w="81"/><text x="37.0625%" y="719.50"></text></g><g><title>__schedule (81 samples, 0.01%)</title><rect x="36.8125%" y="693" width="0.0126%" height="15" fill="rgb(226,102,5)" fg:x="236902" fg:w="81"/><text x="37.0625%" y="703.50"></text></g><g><title>rwsem_down_read_slowpath (90 samples, 0.01%)</title><rect x="36.8112%" y="725" width="0.0140%" height="15" fill="rgb(223,34,3)" fg:x="236894" fg:w="90"/><text x="37.0612%" y="735.50"></text></g><g><title>down_read (97 samples, 0.02%)</title><rect x="36.8103%" y="741" width="0.0151%" height="15" fill="rgb(221,81,38)" fg:x="236888" fg:w="97"/><text x="37.0603%" y="751.50"></text></g><g><title>__btrfs_tree_read_lock (99 samples, 0.02%)</title><rect x="36.8102%" y="757" width="0.0154%" height="15" fill="rgb(236,219,28)" fg:x="236887" fg:w="99"/><text x="37.0602%" y="767.50"></text></g><g><title>btrfs_read_lock_root_node (119 samples, 0.02%)</title><rect x="36.8100%" y="773" width="0.0185%" height="15" fill="rgb(213,200,14)" fg:x="236886" fg:w="119"/><text x="37.0600%" y="783.50"></text></g><g><title>osq_lock (143 samples, 0.02%)</title><rect x="36.8560%" y="693" width="0.0222%" height="15" fill="rgb(240,33,19)" fg:x="237182" fg:w="143"/><text x="37.1060%" y="703.50"></text></g><g><title>rwsem_spin_on_owner (228 samples, 0.04%)</title><rect x="36.8802%" y="693" width="0.0354%" height="15" fill="rgb(233,113,27)" fg:x="237338" fg:w="228"/><text x="37.1302%" y="703.50"></text></g><g><title>rwsem_optimistic_spin (520 samples, 0.08%)</title><rect x="36.8350%" y="709" width="0.0808%" height="15" fill="rgb(220,221,18)" fg:x="237047" fg:w="520"/><text x="37.0850%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (69 samples, 0.01%)</title><rect x="36.9202%" y="661" width="0.0107%" height="15" fill="rgb(238,92,8)" fg:x="237595" fg:w="69"/><text x="37.1702%" y="671.50"></text></g><g><title>x86_pmu_enable (69 samples, 0.01%)</title><rect x="36.9202%" y="645" width="0.0107%" height="15" fill="rgb(222,164,16)" fg:x="237595" fg:w="69"/><text x="37.1702%" y="655.50"></text></g><g><title>intel_pmu_enable_all (67 samples, 0.01%)</title><rect x="36.9205%" y="629" width="0.0104%" height="15" fill="rgb(241,119,3)" fg:x="237597" fg:w="67"/><text x="37.1705%" y="639.50"></text></g><g><title>native_write_msr (66 samples, 0.01%)</title><rect x="36.9206%" y="613" width="0.0103%" height="15" fill="rgb(241,44,8)" fg:x="237598" fg:w="66"/><text x="37.1706%" y="623.50"></text></g><g><title>finish_task_switch.isra.0 (76 samples, 0.01%)</title><rect x="36.9194%" y="677" width="0.0118%" height="15" fill="rgb(230,36,40)" fg:x="237590" fg:w="76"/><text x="37.1694%" y="687.50"></text></g><g><title>rwsem_down_write_slowpath (664 samples, 0.10%)</title><rect x="36.8333%" y="725" width="0.1032%" height="15" fill="rgb(243,16,36)" fg:x="237036" fg:w="664"/><text x="37.0833%" y="735.50"></text></g><g><title>schedule (130 samples, 0.02%)</title><rect x="36.9163%" y="709" width="0.0202%" height="15" fill="rgb(231,4,26)" fg:x="237570" fg:w="130"/><text x="37.1663%" y="719.50"></text></g><g><title>__schedule (130 samples, 0.02%)</title><rect x="36.9163%" y="693" width="0.0202%" height="15" fill="rgb(240,9,31)" fg:x="237570" fg:w="130"/><text x="37.1663%" y="703.50"></text></g><g><title>__btrfs_tree_lock (695 samples, 0.11%)</title><rect x="36.8287%" y="757" width="0.1080%" height="15" fill="rgb(207,173,15)" fg:x="237006" fg:w="695"/><text x="37.0787%" y="767.50"></text></g><g><title>down_write (691 samples, 0.11%)</title><rect x="36.8293%" y="741" width="0.1074%" height="15" fill="rgb(224,192,53)" fg:x="237010" fg:w="691"/><text x="37.0793%" y="751.50"></text></g><g><title>btrfs_tree_lock (697 samples, 0.11%)</title><rect x="36.8287%" y="773" width="0.1083%" height="15" fill="rgb(223,67,28)" fg:x="237006" fg:w="697"/><text x="37.0787%" y="783.50"></text></g><g><title>radix_tree_lookup (101 samples, 0.02%)</title><rect x="36.9798%" y="725" width="0.0157%" height="15" fill="rgb(211,20,47)" fg:x="237979" fg:w="101"/><text x="37.2298%" y="735.50"></text></g><g><title>__radix_tree_lookup (101 samples, 0.02%)</title><rect x="36.9798%" y="709" width="0.0157%" height="15" fill="rgb(240,228,2)" fg:x="237979" fg:w="101"/><text x="37.2298%" y="719.50"></text></g><g><title>find_extent_buffer_nolock (154 samples, 0.02%)</title><rect x="36.9718%" y="741" width="0.0239%" height="15" fill="rgb(248,151,12)" fg:x="237927" fg:w="154"/><text x="37.2218%" y="751.50"></text></g><g><title>mark_page_accessed (68 samples, 0.01%)</title><rect x="36.9957%" y="741" width="0.0106%" height="15" fill="rgb(244,8,39)" fg:x="238081" fg:w="68"/><text x="37.2457%" y="751.50"></text></g><g><title>find_extent_buffer (251 samples, 0.04%)</title><rect x="36.9674%" y="757" width="0.0390%" height="15" fill="rgb(222,26,8)" fg:x="237899" fg:w="251"/><text x="37.2174%" y="767.50"></text></g><g><title>read_block_for_search (412 samples, 0.06%)</title><rect x="36.9444%" y="773" width="0.0640%" height="15" fill="rgb(213,106,44)" fg:x="237751" fg:w="412"/><text x="37.1944%" y="783.50"></text></g><g><title>btrfs_alloc_tree_block (83 samples, 0.01%)</title><rect x="37.0084%" y="757" width="0.0129%" height="15" fill="rgb(214,129,20)" fg:x="238163" fg:w="83"/><text x="37.2584%" y="767.50"></text></g><g><title>split_leaf (190 samples, 0.03%)</title><rect x="37.0084%" y="773" width="0.0295%" height="15" fill="rgb(212,32,13)" fg:x="238163" fg:w="190"/><text x="37.2584%" y="783.50"></text></g><g><title>btrfs_tree_unlock (179 samples, 0.03%)</title><rect x="37.0496%" y="757" width="0.0278%" height="15" fill="rgb(208,168,33)" fg:x="238428" fg:w="179"/><text x="37.2996%" y="767.50"></text></g><g><title>up_write (175 samples, 0.03%)</title><rect x="37.0502%" y="741" width="0.0272%" height="15" fill="rgb(231,207,8)" fg:x="238432" fg:w="175"/><text x="37.3002%" y="751.50"></text></g><g><title>rwsem_wake.isra.0 (175 samples, 0.03%)</title><rect x="37.0502%" y="725" width="0.0272%" height="15" fill="rgb(235,219,23)" fg:x="238432" fg:w="175"/><text x="37.3002%" y="735.50"></text></g><g><title>wake_up_q (148 samples, 0.02%)</title><rect x="37.0544%" y="709" width="0.0230%" height="15" fill="rgb(226,216,26)" fg:x="238459" fg:w="148"/><text x="37.3044%" y="719.50"></text></g><g><title>try_to_wake_up (137 samples, 0.02%)</title><rect x="37.0561%" y="693" width="0.0213%" height="15" fill="rgb(239,137,16)" fg:x="238470" fg:w="137"/><text x="37.3061%" y="703.50"></text></g><g><title>btrfs_search_slot (2,068 samples, 0.32%)</title><rect x="36.7620%" y="789" width="0.3213%" height="15" fill="rgb(207,12,36)" fg:x="236577" fg:w="2068"/><text x="37.0120%" y="799.50"></text></g><g><title>unlock_up (291 samples, 0.05%)</title><rect x="37.0381%" y="773" width="0.0452%" height="15" fill="rgb(210,214,24)" fg:x="238354" fg:w="291"/><text x="37.2881%" y="783.50"></text></g><g><title>btrfs_leaf_free_space (67 samples, 0.01%)</title><rect x="37.0998%" y="773" width="0.0104%" height="15" fill="rgb(206,56,30)" fg:x="238751" fg:w="67"/><text x="37.3498%" y="783.50"></text></g><g><title>setup_items_for_insert (332 samples, 0.05%)</title><rect x="37.0855%" y="789" width="0.0516%" height="15" fill="rgb(228,143,26)" fg:x="238659" fg:w="332"/><text x="37.3355%" y="799.50"></text></g><g><title>btrfs_insert_empty_items (2,446 samples, 0.38%)</title><rect x="36.7579%" y="805" width="0.3801%" height="15" fill="rgb(216,218,46)" fg:x="236551" fg:w="2446"/><text x="37.0079%" y="815.50"></text></g><g><title>free_extent_buffer (91 samples, 0.01%)</title><rect x="37.1660%" y="757" width="0.0141%" height="15" fill="rgb(206,6,19)" fg:x="239177" fg:w="91"/><text x="37.4160%" y="767.50"></text></g><g><title>btrfs_release_path (116 samples, 0.02%)</title><rect x="37.1643%" y="773" width="0.0180%" height="15" fill="rgb(239,177,51)" fg:x="239166" fg:w="116"/><text x="37.4143%" y="783.50"></text></g><g><title>btrfs_free_path (158 samples, 0.02%)</title><rect x="37.1643%" y="789" width="0.0246%" height="15" fill="rgb(216,55,25)" fg:x="239166" fg:w="158"/><text x="37.4143%" y="799.50"></text></g><g><title>btrfs_bin_search (189 samples, 0.03%)</title><rect x="37.2095%" y="757" width="0.0294%" height="15" fill="rgb(231,163,29)" fg:x="239457" fg:w="189"/><text x="37.4595%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (182 samples, 0.03%)</title><rect x="37.2106%" y="741" width="0.0283%" height="15" fill="rgb(232,149,50)" fg:x="239464" fg:w="182"/><text x="37.4606%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (74 samples, 0.01%)</title><rect x="37.2547%" y="645" width="0.0115%" height="15" fill="rgb(223,142,48)" fg:x="239748" fg:w="74"/><text x="37.5047%" y="655.50"></text></g><g><title>x86_pmu_enable (74 samples, 0.01%)</title><rect x="37.2547%" y="629" width="0.0115%" height="15" fill="rgb(245,83,23)" fg:x="239748" fg:w="74"/><text x="37.5047%" y="639.50"></text></g><g><title>intel_pmu_enable_all (74 samples, 0.01%)</title><rect x="37.2547%" y="613" width="0.0115%" height="15" fill="rgb(224,63,2)" fg:x="239748" fg:w="74"/><text x="37.5047%" y="623.50"></text></g><g><title>native_write_msr (74 samples, 0.01%)</title><rect x="37.2547%" y="597" width="0.0115%" height="15" fill="rgb(218,65,53)" fg:x="239748" fg:w="74"/><text x="37.5047%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (80 samples, 0.01%)</title><rect x="37.2543%" y="661" width="0.0124%" height="15" fill="rgb(221,84,29)" fg:x="239745" fg:w="80"/><text x="37.5043%" y="671.50"></text></g><g><title>__schedule (113 samples, 0.02%)</title><rect x="37.2521%" y="677" width="0.0176%" height="15" fill="rgb(234,0,32)" fg:x="239731" fg:w="113"/><text x="37.5021%" y="687.50"></text></g><g><title>schedule (114 samples, 0.02%)</title><rect x="37.2521%" y="693" width="0.0177%" height="15" fill="rgb(206,20,16)" fg:x="239731" fg:w="114"/><text x="37.5021%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (133 samples, 0.02%)</title><rect x="37.2493%" y="741" width="0.0207%" height="15" fill="rgb(244,172,18)" fg:x="239713" fg:w="133"/><text x="37.4993%" y="751.50"></text></g><g><title>down_read (133 samples, 0.02%)</title><rect x="37.2493%" y="725" width="0.0207%" height="15" fill="rgb(254,133,1)" fg:x="239713" fg:w="133"/><text x="37.4993%" y="735.50"></text></g><g><title>rwsem_down_read_slowpath (123 samples, 0.02%)</title><rect x="37.2508%" y="709" width="0.0191%" height="15" fill="rgb(222,206,41)" fg:x="239723" fg:w="123"/><text x="37.5008%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (154 samples, 0.02%)</title><rect x="37.2488%" y="757" width="0.0239%" height="15" fill="rgb(212,3,42)" fg:x="239710" fg:w="154"/><text x="37.4988%" y="767.50"></text></g><g><title>osq_lock (151 samples, 0.02%)</title><rect x="37.3026%" y="677" width="0.0235%" height="15" fill="rgb(241,11,4)" fg:x="240056" fg:w="151"/><text x="37.5526%" y="687.50"></text></g><g><title>rwsem_spin_on_owner (173 samples, 0.03%)</title><rect x="37.3267%" y="677" width="0.0269%" height="15" fill="rgb(205,19,26)" fg:x="240211" fg:w="173"/><text x="37.5767%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (444 samples, 0.07%)</title><rect x="37.2852%" y="693" width="0.0690%" height="15" fill="rgb(210,179,32)" fg:x="239944" fg:w="444"/><text x="37.5352%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (198 samples, 0.03%)</title><rect x="37.3637%" y="645" width="0.0308%" height="15" fill="rgb(227,116,49)" fg:x="240449" fg:w="198"/><text x="37.6137%" y="655.50"></text></g><g><title>x86_pmu_enable (190 samples, 0.03%)</title><rect x="37.3649%" y="629" width="0.0295%" height="15" fill="rgb(211,146,6)" fg:x="240457" fg:w="190"/><text x="37.6149%" y="639.50"></text></g><g><title>intel_pmu_enable_all (190 samples, 0.03%)</title><rect x="37.3649%" y="613" width="0.0295%" height="15" fill="rgb(219,44,39)" fg:x="240457" fg:w="190"/><text x="37.6149%" y="623.50"></text></g><g><title>native_write_msr (189 samples, 0.03%)</title><rect x="37.3651%" y="597" width="0.0294%" height="15" fill="rgb(234,128,11)" fg:x="240458" fg:w="189"/><text x="37.6151%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (213 samples, 0.03%)</title><rect x="37.3624%" y="661" width="0.0331%" height="15" fill="rgb(220,183,53)" fg:x="240441" fg:w="213"/><text x="37.6124%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (804 samples, 0.12%)</title><rect x="37.2802%" y="709" width="0.1249%" height="15" fill="rgb(213,219,32)" fg:x="239912" fg:w="804"/><text x="37.5302%" y="719.50"></text></g><g><title>schedule (325 samples, 0.05%)</title><rect x="37.3547%" y="693" width="0.0505%" height="15" fill="rgb(232,156,16)" fg:x="240391" fg:w="325"/><text x="37.6047%" y="703.50"></text></g><g><title>__schedule (324 samples, 0.05%)</title><rect x="37.3548%" y="677" width="0.0503%" height="15" fill="rgb(246,135,34)" fg:x="240392" fg:w="324"/><text x="37.6048%" y="687.50"></text></g><g><title>down_write (843 samples, 0.13%)</title><rect x="37.2745%" y="725" width="0.1310%" height="15" fill="rgb(241,99,0)" fg:x="239875" fg:w="843"/><text x="37.5245%" y="735.50"></text></g><g><title>__btrfs_tree_lock (856 samples, 0.13%)</title><rect x="37.2731%" y="741" width="0.1330%" height="15" fill="rgb(222,103,45)" fg:x="239866" fg:w="856"/><text x="37.5231%" y="751.50"></text></g><g><title>btrfs_tree_lock (860 samples, 0.13%)</title><rect x="37.2731%" y="757" width="0.1336%" height="15" fill="rgb(212,57,4)" fg:x="239866" fg:w="860"/><text x="37.5231%" y="767.50"></text></g><g><title>find_extent_buffer_nolock (181 samples, 0.03%)</title><rect x="37.4457%" y="725" width="0.0281%" height="15" fill="rgb(215,68,47)" fg:x="240977" fg:w="181"/><text x="37.6957%" y="735.50"></text></g><g><title>radix_tree_lookup (120 samples, 0.02%)</title><rect x="37.4552%" y="709" width="0.0186%" height="15" fill="rgb(230,84,2)" fg:x="241038" fg:w="120"/><text x="37.7052%" y="719.50"></text></g><g><title>__radix_tree_lookup (119 samples, 0.02%)</title><rect x="37.4553%" y="693" width="0.0185%" height="15" fill="rgb(220,102,14)" fg:x="241039" fg:w="119"/><text x="37.7053%" y="703.50"></text></g><g><title>find_extent_buffer (276 samples, 0.04%)</title><rect x="37.4434%" y="741" width="0.0429%" height="15" fill="rgb(240,10,32)" fg:x="240962" fg:w="276"/><text x="37.6934%" y="751.50"></text></g><g><title>mark_page_accessed (80 samples, 0.01%)</title><rect x="37.4738%" y="725" width="0.0124%" height="15" fill="rgb(215,47,27)" fg:x="241158" fg:w="80"/><text x="37.7238%" y="735.50"></text></g><g><title>read_block_for_search (484 samples, 0.08%)</title><rect x="37.4129%" y="757" width="0.0752%" height="15" fill="rgb(233,188,43)" fg:x="240766" fg:w="484"/><text x="37.6629%" y="767.50"></text></g><g><title>btrfs_alloc_tree_block (101 samples, 0.02%)</title><rect x="37.4886%" y="741" width="0.0157%" height="15" fill="rgb(253,190,1)" fg:x="241253" fg:w="101"/><text x="37.7386%" y="751.50"></text></g><g><title>push_leaf_left (79 samples, 0.01%)</title><rect x="37.5104%" y="741" width="0.0123%" height="15" fill="rgb(206,114,52)" fg:x="241393" fg:w="79"/><text x="37.7604%" y="751.50"></text></g><g><title>split_leaf (227 samples, 0.04%)</title><rect x="37.4881%" y="757" width="0.0353%" height="15" fill="rgb(233,120,37)" fg:x="241250" fg:w="227"/><text x="37.7381%" y="767.50"></text></g><g><title>btrfs_tree_unlock (245 samples, 0.04%)</title><rect x="37.5388%" y="741" width="0.0381%" height="15" fill="rgb(214,52,39)" fg:x="241576" fg:w="245"/><text x="37.7888%" y="751.50"></text></g><g><title>up_write (241 samples, 0.04%)</title><rect x="37.5394%" y="725" width="0.0374%" height="15" fill="rgb(223,80,29)" fg:x="241580" fg:w="241"/><text x="37.7894%" y="735.50"></text></g><g><title>rwsem_wake.isra.0 (241 samples, 0.04%)</title><rect x="37.5394%" y="709" width="0.0374%" height="15" fill="rgb(230,101,40)" fg:x="241580" fg:w="241"/><text x="37.7894%" y="719.50"></text></g><g><title>wake_up_q (213 samples, 0.03%)</title><rect x="37.5438%" y="693" width="0.0331%" height="15" fill="rgb(219,211,8)" fg:x="241608" fg:w="213"/><text x="37.7938%" y="703.50"></text></g><g><title>try_to_wake_up (207 samples, 0.03%)</title><rect x="37.5447%" y="677" width="0.0322%" height="15" fill="rgb(252,126,28)" fg:x="241614" fg:w="207"/><text x="37.7947%" y="687.50"></text></g><g><title>btrfs_search_slot (2,490 samples, 0.39%)</title><rect x="37.1951%" y="773" width="0.3869%" height="15" fill="rgb(215,56,38)" fg:x="239364" fg:w="2490"/><text x="37.4451%" y="783.50"></text></g><g><title>unlock_up (373 samples, 0.06%)</title><rect x="37.5240%" y="757" width="0.0580%" height="15" fill="rgb(249,55,44)" fg:x="241481" fg:w="373"/><text x="37.7740%" y="767.50"></text></g><g><title>setup_items_for_insert (405 samples, 0.06%)</title><rect x="37.5865%" y="773" width="0.0629%" height="15" fill="rgb(220,221,32)" fg:x="241883" fg:w="405"/><text x="37.8365%" y="783.50"></text></g><g><title>btrfs_insert_empty_items (2,960 samples, 0.46%)</title><rect x="37.1904%" y="789" width="0.4600%" height="15" fill="rgb(212,216,41)" fg:x="239334" fg:w="2960"/><text x="37.4404%" y="799.50"></text></g><g><title>btrfs_set_token_32 (69 samples, 0.01%)</title><rect x="37.6723%" y="773" width="0.0107%" height="15" fill="rgb(228,213,43)" fg:x="242435" fg:w="69"/><text x="37.9223%" y="783.50"></text></g><g><title>btrfs_set_token_64 (71 samples, 0.01%)</title><rect x="37.6830%" y="773" width="0.0110%" height="15" fill="rgb(211,31,26)" fg:x="242504" fg:w="71"/><text x="37.9330%" y="783.50"></text></g><g><title>fill_inode_item (208 samples, 0.03%)</title><rect x="37.6675%" y="789" width="0.0323%" height="15" fill="rgb(229,202,19)" fg:x="242404" fg:w="208"/><text x="37.9175%" y="799.50"></text></g><g><title>inode_tree_add (344 samples, 0.05%)</title><rect x="37.7072%" y="789" width="0.0535%" height="15" fill="rgb(229,105,46)" fg:x="242660" fg:w="344"/><text x="37.9572%" y="799.50"></text></g><g><title>insert_inode_locked4 (79 samples, 0.01%)</title><rect x="37.7607%" y="789" width="0.0123%" height="15" fill="rgb(235,108,1)" fg:x="243004" fg:w="79"/><text x="38.0107%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (69 samples, 0.01%)</title><rect x="37.8005%" y="725" width="0.0107%" height="15" fill="rgb(245,111,35)" fg:x="243260" fg:w="69"/><text x="38.0505%" y="735.50"></text></g><g><title>btrfs_alloc_inode (215 samples, 0.03%)</title><rect x="37.7860%" y="757" width="0.0334%" height="15" fill="rgb(219,185,31)" fg:x="243167" fg:w="215"/><text x="38.0360%" y="767.50"></text></g><g><title>kmem_cache_alloc (182 samples, 0.03%)</title><rect x="37.7911%" y="741" width="0.0283%" height="15" fill="rgb(214,4,43)" fg:x="243200" fg:w="182"/><text x="38.0411%" y="751.50"></text></g><g><title>inode_init_always (131 samples, 0.02%)</title><rect x="37.8213%" y="757" width="0.0204%" height="15" fill="rgb(235,227,40)" fg:x="243394" fg:w="131"/><text x="38.0713%" y="767.50"></text></g><g><title>alloc_inode (411 samples, 0.06%)</title><rect x="37.7789%" y="773" width="0.0639%" height="15" fill="rgb(230,88,30)" fg:x="243121" fg:w="411"/><text x="38.0289%" y="783.50"></text></g><g><title>new_inode (422 samples, 0.07%)</title><rect x="37.7782%" y="789" width="0.0656%" height="15" fill="rgb(216,217,1)" fg:x="243117" fg:w="422"/><text x="38.0282%" y="799.50"></text></g><g><title>btrfs_new_inode (4,580 samples, 0.71%)</title><rect x="37.1421%" y="805" width="0.7117%" height="15" fill="rgb(248,139,50)" fg:x="239023" fg:w="4580"/><text x="37.3921%" y="815.50"></text></g><g><title>__reserve_bytes (172 samples, 0.03%)</title><rect x="37.8861%" y="741" width="0.0267%" height="15" fill="rgb(233,1,21)" fg:x="243811" fg:w="172"/><text x="38.1361%" y="751.50"></text></g><g><title>btrfs_block_rsv_add (229 samples, 0.04%)</title><rect x="37.8834%" y="773" width="0.0356%" height="15" fill="rgb(215,183,12)" fg:x="243794" fg:w="229"/><text x="38.1334%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (219 samples, 0.03%)</title><rect x="37.8850%" y="757" width="0.0340%" height="15" fill="rgb(229,104,42)" fg:x="243804" fg:w="219"/><text x="38.1350%" y="767.50"></text></g><g><title>start_transaction (460 samples, 0.07%)</title><rect x="37.8626%" y="789" width="0.0715%" height="15" fill="rgb(243,34,48)" fg:x="243660" fg:w="460"/><text x="38.1126%" y="799.50"></text></g><g><title>btrfs_start_transaction (473 samples, 0.07%)</title><rect x="37.8609%" y="805" width="0.0735%" height="15" fill="rgb(239,11,44)" fg:x="243649" fg:w="473"/><text x="38.1109%" y="815.50"></text></g><g><title>btrfs_get_delayed_node (119 samples, 0.02%)</title><rect x="37.9711%" y="757" width="0.0185%" height="15" fill="rgb(231,98,35)" fg:x="244358" fg:w="119"/><text x="38.2211%" y="767.50"></text></g><g><title>radix_tree_lookup (111 samples, 0.02%)</title><rect x="37.9723%" y="741" width="0.0172%" height="15" fill="rgb(233,28,25)" fg:x="244366" fg:w="111"/><text x="38.2223%" y="751.50"></text></g><g><title>__radix_tree_lookup (110 samples, 0.02%)</title><rect x="37.9725%" y="725" width="0.0171%" height="15" fill="rgb(234,123,11)" fg:x="244367" fg:w="110"/><text x="38.2225%" y="735.50"></text></g><g><title>kmem_cache_alloc (86 samples, 0.01%)</title><rect x="37.9896%" y="757" width="0.0134%" height="15" fill="rgb(220,69,3)" fg:x="244477" fg:w="86"/><text x="38.2396%" y="767.50"></text></g><g><title>btrfs_get_or_create_delayed_node (290 samples, 0.05%)</title><rect x="37.9672%" y="773" width="0.0451%" height="15" fill="rgb(214,64,36)" fg:x="244333" fg:w="290"/><text x="38.2172%" y="783.50"></text></g><g><title>btrfs_delayed_update_inode (521 samples, 0.08%)</title><rect x="37.9403%" y="789" width="0.0810%" height="15" fill="rgb(211,138,32)" fg:x="244160" fg:w="521"/><text x="38.1903%" y="799.50"></text></g><g><title>btrfs_update_inode (576 samples, 0.09%)</title><rect x="37.9360%" y="805" width="0.0895%" height="15" fill="rgb(213,118,47)" fg:x="244132" fg:w="576"/><text x="38.1860%" y="815.50"></text></g><g><title>d_instantiate_new (79 samples, 0.01%)</title><rect x="38.0308%" y="805" width="0.0123%" height="15" fill="rgb(243,124,49)" fg:x="244742" fg:w="79"/><text x="38.2808%" y="815.50"></text></g><g><title>btrfs_symlink (14,514 samples, 2.26%)</title><rect x="35.8046%" y="821" width="2.2553%" height="15" fill="rgb(221,30,28)" fg:x="230416" fg:w="14514"/><text x="36.0546%" y="831.50">b..</text></g><g><title>may_create (70 samples, 0.01%)</title><rect x="38.0662%" y="821" width="0.0109%" height="15" fill="rgb(246,37,13)" fg:x="244970" fg:w="70"/><text x="38.3162%" y="831.50"></text></g><g><title>do_symlinkat (19,292 samples, 3.00%)</title><rect x="35.0950%" y="853" width="2.9978%" height="15" fill="rgb(249,66,14)" fg:x="225849" fg:w="19292"/><text x="35.3450%" y="863.50">do_..</text></g><g><title>vfs_symlink (14,801 samples, 2.30%)</title><rect x="35.7928%" y="837" width="2.2999%" height="15" fill="rgb(213,166,5)" fg:x="230340" fg:w="14801"/><text x="36.0428%" y="847.50">v..</text></g><g><title>strlen (97 samples, 0.02%)</title><rect x="38.0777%" y="821" width="0.0151%" height="15" fill="rgb(221,66,24)" fg:x="245044" fg:w="97"/><text x="38.3277%" y="831.50"></text></g><g><title>memset_erms (139 samples, 0.02%)</title><rect x="38.1088%" y="821" width="0.0216%" height="15" fill="rgb(210,132,17)" fg:x="245244" fg:w="139"/><text x="38.3588%" y="831.50"></text></g><g><title>__check_object_size.part.0 (82 samples, 0.01%)</title><rect x="38.1487%" y="789" width="0.0127%" height="15" fill="rgb(243,202,5)" fg:x="245501" fg:w="82"/><text x="38.3987%" y="799.50"></text></g><g><title>getname_flags.part.0 (443 samples, 0.07%)</title><rect x="38.0962%" y="837" width="0.0688%" height="15" fill="rgb(233,70,48)" fg:x="245163" fg:w="443"/><text x="38.3462%" y="847.50"></text></g><g><title>strncpy_from_user (218 samples, 0.03%)</title><rect x="38.1311%" y="821" width="0.0339%" height="15" fill="rgb(238,41,26)" fg:x="245388" fg:w="218"/><text x="38.3811%" y="831.50"></text></g><g><title>__check_object_size (106 samples, 0.02%)</title><rect x="38.1485%" y="805" width="0.0165%" height="15" fill="rgb(241,19,31)" fg:x="245500" fg:w="106"/><text x="38.3985%" y="815.50"></text></g><g><title>getname_flags (446 samples, 0.07%)</title><rect x="38.0962%" y="853" width="0.0693%" height="15" fill="rgb(214,76,10)" fg:x="245163" fg:w="446"/><text x="38.3462%" y="863.50"></text></g><g><title>__x64_sys_symlink (19,810 samples, 3.08%)</title><rect x="35.0939%" y="869" width="3.0783%" height="15" fill="rgb(254,202,22)" fg:x="225842" fg:w="19810"/><text x="35.3439%" y="879.50">__x..</text></g><g><title>do_syscall_64 (20,081 samples, 3.12%)</title><rect x="35.0578%" y="901" width="3.1204%" height="15" fill="rgb(214,72,24)" fg:x="225610" fg:w="20081"/><text x="35.3078%" y="911.50">do_..</text></g><g><title>unload_network_ops_symbols (19,910 samples, 3.09%)</title><rect x="35.0844%" y="885" width="3.0938%" height="15" fill="rgb(221,92,46)" fg:x="225781" fg:w="19910"/><text x="35.3344%" y="895.50">unl..</text></g><g><title>entry_SYSCALL_64_after_hwframe (20,116 samples, 3.13%)</title><rect x="35.0569%" y="917" width="3.1258%" height="15" fill="rgb(246,13,50)" fg:x="225604" fg:w="20116"/><text x="35.3069%" y="927.50">ent..</text></g><g><title>__GI_symlink (20,195 samples, 3.14%)</title><rect x="35.0477%" y="933" width="3.1381%" height="15" fill="rgb(240,165,38)" fg:x="225545" fg:w="20195"/><text x="35.2977%" y="943.50">__G..</text></g><g><title>syscall_exit_to_user_mode (65 samples, 0.01%)</title><rect x="38.2053%" y="885" width="0.0101%" height="15" fill="rgb(241,24,51)" fg:x="245865" fg:w="65"/><text x="38.4553%" y="895.50"></text></g><g><title>btrfs_del_dir_entries_in_log (117 samples, 0.02%)</title><rect x="38.2436%" y="789" width="0.0182%" height="15" fill="rgb(227,51,44)" fg:x="246112" fg:w="117"/><text x="38.4936%" y="799.50"></text></g><g><title>btrfs_search_slot (67 samples, 0.01%)</title><rect x="38.2752%" y="757" width="0.0104%" height="15" fill="rgb(231,121,3)" fg:x="246315" fg:w="67"/><text x="38.5252%" y="767.50"></text></g><g><title>btrfs_del_inode_ref (156 samples, 0.02%)</title><rect x="38.2621%" y="773" width="0.0242%" height="15" fill="rgb(245,3,41)" fg:x="246231" fg:w="156"/><text x="38.5121%" y="783.50"></text></g><g><title>btrfs_del_inode_ref_in_log (162 samples, 0.03%)</title><rect x="38.2618%" y="789" width="0.0252%" height="15" fill="rgb(214,13,26)" fg:x="246229" fg:w="162"/><text x="38.5118%" y="799.50"></text></g><g><title>btrfs_del_items (197 samples, 0.03%)</title><rect x="38.2948%" y="773" width="0.0306%" height="15" fill="rgb(252,75,11)" fg:x="246441" fg:w="197"/><text x="38.5448%" y="783.50"></text></g><g><title>btrfs_delete_one_dir_name (213 samples, 0.03%)</title><rect x="38.2946%" y="789" width="0.0331%" height="15" fill="rgb(218,226,17)" fg:x="246440" fg:w="213"/><text x="38.5446%" y="799.50"></text></g><g><title>__btrfs_tree_lock (144 samples, 0.02%)</title><rect x="38.3428%" y="741" width="0.0224%" height="15" fill="rgb(248,89,38)" fg:x="246750" fg:w="144"/><text x="38.5928%" y="751.50"></text></g><g><title>down_write (144 samples, 0.02%)</title><rect x="38.3428%" y="725" width="0.0224%" height="15" fill="rgb(237,73,46)" fg:x="246750" fg:w="144"/><text x="38.5928%" y="735.50"></text></g><g><title>rwsem_down_write_slowpath (143 samples, 0.02%)</title><rect x="38.3429%" y="709" width="0.0222%" height="15" fill="rgb(242,78,33)" fg:x="246751" fg:w="143"/><text x="38.5929%" y="719.50"></text></g><g><title>schedule (82 samples, 0.01%)</title><rect x="38.3524%" y="693" width="0.0127%" height="15" fill="rgb(235,60,3)" fg:x="246812" fg:w="82"/><text x="38.6024%" y="703.50"></text></g><g><title>__schedule (81 samples, 0.01%)</title><rect x="38.3526%" y="677" width="0.0126%" height="15" fill="rgb(216,172,19)" fg:x="246813" fg:w="81"/><text x="38.6026%" y="687.50"></text></g><g><title>btrfs_lock_root_node (147 samples, 0.02%)</title><rect x="38.3425%" y="757" width="0.0228%" height="15" fill="rgb(227,6,42)" fg:x="246748" fg:w="147"/><text x="38.5925%" y="767.50"></text></g><g><title>__btrfs_tree_read_lock (68 samples, 0.01%)</title><rect x="38.3655%" y="741" width="0.0106%" height="15" fill="rgb(223,207,42)" fg:x="246896" fg:w="68"/><text x="38.6155%" y="751.50"></text></g><g><title>down_read (68 samples, 0.01%)</title><rect x="38.3655%" y="725" width="0.0106%" height="15" fill="rgb(246,138,30)" fg:x="246896" fg:w="68"/><text x="38.6155%" y="735.50"></text></g><g><title>rwsem_down_read_slowpath (65 samples, 0.01%)</title><rect x="38.3659%" y="709" width="0.0101%" height="15" fill="rgb(251,199,47)" fg:x="246899" fg:w="65"/><text x="38.6159%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (72 samples, 0.01%)</title><rect x="38.3653%" y="757" width="0.0112%" height="15" fill="rgb(228,218,44)" fg:x="246895" fg:w="72"/><text x="38.6153%" y="767.50"></text></g><g><title>btrfs_tree_unlock (70 samples, 0.01%)</title><rect x="38.4001%" y="741" width="0.0109%" height="15" fill="rgb(220,68,6)" fg:x="247119" fg:w="70"/><text x="38.6501%" y="751.50"></text></g><g><title>up_write (69 samples, 0.01%)</title><rect x="38.4003%" y="725" width="0.0107%" height="15" fill="rgb(240,60,26)" fg:x="247120" fg:w="69"/><text x="38.6503%" y="735.50"></text></g><g><title>rwsem_wake.isra.0 (69 samples, 0.01%)</title><rect x="38.4003%" y="709" width="0.0107%" height="15" fill="rgb(211,200,19)" fg:x="247120" fg:w="69"/><text x="38.6503%" y="719.50"></text></g><g><title>unlock_up (80 samples, 0.01%)</title><rect x="38.3990%" y="757" width="0.0124%" height="15" fill="rgb(242,145,30)" fg:x="247112" fg:w="80"/><text x="38.6490%" y="767.50"></text></g><g><title>btrfs_search_slot (512 samples, 0.08%)</title><rect x="38.3322%" y="773" width="0.0796%" height="15" fill="rgb(225,64,13)" fg:x="246682" fg:w="512"/><text x="38.5822%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (540 samples, 0.08%)</title><rect x="38.3290%" y="789" width="0.0839%" height="15" fill="rgb(218,103,35)" fg:x="246661" fg:w="540"/><text x="38.5790%" y="799.50"></text></g><g><title>__btrfs_unlink_inode (1,167 samples, 0.18%)</title><rect x="38.2408%" y="805" width="0.1813%" height="15" fill="rgb(216,93,46)" fg:x="246094" fg:w="1167"/><text x="38.4908%" y="815.50"></text></g><g><title>read_block_for_search (89 samples, 0.01%)</title><rect x="38.4590%" y="741" width="0.0138%" height="15" fill="rgb(225,159,27)" fg:x="247498" fg:w="89"/><text x="38.7090%" y="751.50"></text></g><g><title>btrfs_search_slot (267 samples, 0.04%)</title><rect x="38.4359%" y="757" width="0.0415%" height="15" fill="rgb(225,204,11)" fg:x="247349" fg:w="267"/><text x="38.6859%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (306 samples, 0.05%)</title><rect x="38.4351%" y="773" width="0.0475%" height="15" fill="rgb(205,56,4)" fg:x="247344" fg:w="306"/><text x="38.6851%" y="783.50"></text></g><g><title>btrfs_orphan_add (350 samples, 0.05%)</title><rect x="38.4284%" y="805" width="0.0544%" height="15" fill="rgb(206,6,35)" fg:x="247301" fg:w="350"/><text x="38.6784%" y="815.50"></text></g><g><title>btrfs_insert_orphan_item (342 samples, 0.05%)</title><rect x="38.4296%" y="789" width="0.0531%" height="15" fill="rgb(247,73,52)" fg:x="247309" fg:w="342"/><text x="38.6796%" y="799.50"></text></g><g><title>btrfs_rmdir (1,634 samples, 0.25%)</title><rect x="38.2398%" y="821" width="0.2539%" height="15" fill="rgb(246,97,4)" fg:x="246087" fg:w="1634"/><text x="38.4898%" y="831.50"></text></g><g><title>btrfs_get_token_32 (74 samples, 0.01%)</title><rect x="38.5106%" y="725" width="0.0115%" height="15" fill="rgb(212,37,15)" fg:x="247830" fg:w="74"/><text x="38.7606%" y="735.50"></text></g><g><title>btrfs_del_items (225 samples, 0.03%)</title><rect x="38.5084%" y="741" width="0.0350%" height="15" fill="rgb(208,130,40)" fg:x="247816" fg:w="225"/><text x="38.7584%" y="751.50"></text></g><g><title>__schedule (69 samples, 0.01%)</title><rect x="38.5659%" y="629" width="0.0107%" height="15" fill="rgb(236,55,29)" fg:x="248186" fg:w="69"/><text x="38.8159%" y="639.50"></text></g><g><title>__btrfs_tree_lock (134 samples, 0.02%)</title><rect x="38.5560%" y="693" width="0.0208%" height="15" fill="rgb(209,156,45)" fg:x="248122" fg:w="134"/><text x="38.8060%" y="703.50"></text></g><g><title>down_write (134 samples, 0.02%)</title><rect x="38.5560%" y="677" width="0.0208%" height="15" fill="rgb(249,107,4)" fg:x="248122" fg:w="134"/><text x="38.8060%" y="687.50"></text></g><g><title>rwsem_down_write_slowpath (133 samples, 0.02%)</title><rect x="38.5561%" y="661" width="0.0207%" height="15" fill="rgb(227,7,13)" fg:x="248123" fg:w="133"/><text x="38.8061%" y="671.50"></text></g><g><title>schedule (70 samples, 0.01%)</title><rect x="38.5659%" y="645" width="0.0109%" height="15" fill="rgb(250,129,14)" fg:x="248186" fg:w="70"/><text x="38.8159%" y="655.50"></text></g><g><title>btrfs_lock_root_node (139 samples, 0.02%)</title><rect x="38.5558%" y="709" width="0.0216%" height="15" fill="rgb(229,92,13)" fg:x="248121" fg:w="139"/><text x="38.8058%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (67 samples, 0.01%)</title><rect x="38.5774%" y="709" width="0.0104%" height="15" fill="rgb(245,98,39)" fg:x="248260" fg:w="67"/><text x="38.8274%" y="719.50"></text></g><g><title>read_block_for_search (67 samples, 0.01%)</title><rect x="38.5954%" y="709" width="0.0104%" height="15" fill="rgb(234,135,48)" fg:x="248376" fg:w="67"/><text x="38.8454%" y="719.50"></text></g><g><title>btrfs_search_slot (483 samples, 0.08%)</title><rect x="38.5470%" y="725" width="0.0751%" height="15" fill="rgb(230,98,28)" fg:x="248064" fg:w="483"/><text x="38.7970%" y="735.50"></text></g><g><title>unlock_up (72 samples, 0.01%)</title><rect x="38.6108%" y="709" width="0.0112%" height="15" fill="rgb(223,121,0)" fg:x="248475" fg:w="72"/><text x="38.8608%" y="719.50"></text></g><g><title>btrfs_lookup_inode (491 samples, 0.08%)</title><rect x="38.5462%" y="741" width="0.0763%" height="15" fill="rgb(234,173,33)" fg:x="248059" fg:w="491"/><text x="38.7962%" y="751.50"></text></g><g><title>__btrfs_update_delayed_inode (778 samples, 0.12%)</title><rect x="38.5078%" y="757" width="0.1209%" height="15" fill="rgb(245,47,8)" fg:x="247812" fg:w="778"/><text x="38.7578%" y="767.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (844 samples, 0.13%)</title><rect x="38.5066%" y="773" width="0.1312%" height="15" fill="rgb(205,17,20)" fg:x="247804" fg:w="844"/><text x="38.7566%" y="783.50"></text></g><g><title>rwsem_optimistic_spin (68 samples, 0.01%)</title><rect x="38.6550%" y="677" width="0.0106%" height="15" fill="rgb(232,151,16)" fg:x="248759" fg:w="68"/><text x="38.9050%" y="687.50"></text></g><g><title>__btrfs_tree_lock (150 samples, 0.02%)</title><rect x="38.6536%" y="725" width="0.0233%" height="15" fill="rgb(208,30,32)" fg:x="248750" fg:w="150"/><text x="38.9036%" y="735.50"></text></g><g><title>down_write (150 samples, 0.02%)</title><rect x="38.6536%" y="709" width="0.0233%" height="15" fill="rgb(254,26,3)" fg:x="248750" fg:w="150"/><text x="38.9036%" y="719.50"></text></g><g><title>rwsem_down_write_slowpath (148 samples, 0.02%)</title><rect x="38.6539%" y="693" width="0.0230%" height="15" fill="rgb(240,177,30)" fg:x="248752" fg:w="148"/><text x="38.9039%" y="703.50"></text></g><g><title>schedule (73 samples, 0.01%)</title><rect x="38.6655%" y="677" width="0.0113%" height="15" fill="rgb(248,76,44)" fg:x="248827" fg:w="73"/><text x="38.9155%" y="687.50"></text></g><g><title>__schedule (73 samples, 0.01%)</title><rect x="38.6655%" y="661" width="0.0113%" height="15" fill="rgb(241,186,54)" fg:x="248827" fg:w="73"/><text x="38.9155%" y="671.50"></text></g><g><title>btrfs_lock_root_node (152 samples, 0.02%)</title><rect x="38.6534%" y="741" width="0.0236%" height="15" fill="rgb(249,171,29)" fg:x="248749" fg:w="152"/><text x="38.9034%" y="751.50"></text></g><g><title>btrfs_search_slot (451 samples, 0.07%)</title><rect x="38.6460%" y="757" width="0.0701%" height="15" fill="rgb(237,151,44)" fg:x="248701" fg:w="451"/><text x="38.8960%" y="767.50"></text></g><g><title>unlock_up (67 samples, 0.01%)</title><rect x="38.7056%" y="741" width="0.0104%" height="15" fill="rgb(228,174,30)" fg:x="249085" fg:w="67"/><text x="38.9556%" y="751.50"></text></g><g><title>btrfs_del_orphan_item (502 samples, 0.08%)</title><rect x="38.6382%" y="773" width="0.0780%" height="15" fill="rgb(252,14,37)" fg:x="248651" fg:w="502"/><text x="38.8882%" y="783.50"></text></g><g><title>btrfs_del_items (254 samples, 0.04%)</title><rect x="38.7404%" y="757" width="0.0395%" height="15" fill="rgb(207,111,40)" fg:x="249309" fg:w="254"/><text x="38.9904%" y="767.50"></text></g><g><title>btrfs_kill_delayed_inode_items (70 samples, 0.01%)</title><rect x="38.7895%" y="757" width="0.0109%" height="15" fill="rgb(248,171,54)" fg:x="249625" fg:w="70"/><text x="39.0395%" y="767.50"></text></g><g><title>rwsem_optimistic_spin (70 samples, 0.01%)</title><rect x="38.8102%" y="677" width="0.0109%" height="15" fill="rgb(211,127,2)" fg:x="249758" fg:w="70"/><text x="39.0602%" y="687.50"></text></g><g><title>__perf_event_task_sched_in (70 samples, 0.01%)</title><rect x="38.8226%" y="629" width="0.0109%" height="15" fill="rgb(236,87,47)" fg:x="249838" fg:w="70"/><text x="39.0726%" y="639.50"></text></g><g><title>x86_pmu_enable (69 samples, 0.01%)</title><rect x="38.8228%" y="613" width="0.0107%" height="15" fill="rgb(223,190,45)" fg:x="249839" fg:w="69"/><text x="39.0728%" y="623.50"></text></g><g><title>intel_pmu_enable_all (69 samples, 0.01%)</title><rect x="38.8228%" y="597" width="0.0107%" height="15" fill="rgb(215,5,16)" fg:x="249839" fg:w="69"/><text x="39.0728%" y="607.50"></text></g><g><title>native_write_msr (68 samples, 0.01%)</title><rect x="38.8229%" y="581" width="0.0106%" height="15" fill="rgb(252,82,33)" fg:x="249840" fg:w="68"/><text x="39.0729%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (77 samples, 0.01%)</title><rect x="38.8223%" y="645" width="0.0120%" height="15" fill="rgb(247,213,44)" fg:x="249836" fg:w="77"/><text x="39.0723%" y="655.50"></text></g><g><title>rwsem_down_write_slowpath (169 samples, 0.03%)</title><rect x="38.8096%" y="693" width="0.0263%" height="15" fill="rgb(205,196,44)" fg:x="249754" fg:w="169"/><text x="39.0596%" y="703.50"></text></g><g><title>schedule (95 samples, 0.01%)</title><rect x="38.8211%" y="677" width="0.0148%" height="15" fill="rgb(237,96,54)" fg:x="249828" fg:w="95"/><text x="39.0711%" y="687.50"></text></g><g><title>__schedule (95 samples, 0.01%)</title><rect x="38.8211%" y="661" width="0.0148%" height="15" fill="rgb(230,113,34)" fg:x="249828" fg:w="95"/><text x="39.0711%" y="671.50"></text></g><g><title>__btrfs_tree_lock (174 samples, 0.03%)</title><rect x="38.8090%" y="725" width="0.0270%" height="15" fill="rgb(221,224,12)" fg:x="249750" fg:w="174"/><text x="39.0590%" y="735.50"></text></g><g><title>down_write (172 samples, 0.03%)</title><rect x="38.8093%" y="709" width="0.0267%" height="15" fill="rgb(219,112,44)" fg:x="249752" fg:w="172"/><text x="39.0593%" y="719.50"></text></g><g><title>btrfs_lock_root_node (175 samples, 0.03%)</title><rect x="38.8090%" y="741" width="0.0272%" height="15" fill="rgb(210,31,13)" fg:x="249750" fg:w="175"/><text x="39.0590%" y="751.50"></text></g><g><title>btrfs_search_slot (481 samples, 0.07%)</title><rect x="38.8009%" y="757" width="0.0747%" height="15" fill="rgb(230,25,16)" fg:x="249698" fg:w="481"/><text x="39.0509%" y="767.50"></text></g><g><title>unlock_up (75 samples, 0.01%)</title><rect x="38.8640%" y="741" width="0.0117%" height="15" fill="rgb(246,108,53)" fg:x="250104" fg:w="75"/><text x="39.1140%" y="751.50"></text></g><g><title>btrfs_tree_unlock (67 samples, 0.01%)</title><rect x="38.8652%" y="725" width="0.0104%" height="15" fill="rgb(241,172,50)" fg:x="250112" fg:w="67"/><text x="39.1152%" y="735.50"></text></g><g><title>up_write (67 samples, 0.01%)</title><rect x="38.8652%" y="709" width="0.0104%" height="15" fill="rgb(235,141,10)" fg:x="250112" fg:w="67"/><text x="39.1152%" y="719.50"></text></g><g><title>rwsem_wake.isra.0 (67 samples, 0.01%)</title><rect x="38.8652%" y="693" width="0.0104%" height="15" fill="rgb(220,174,43)" fg:x="250112" fg:w="67"/><text x="39.1152%" y="703.50"></text></g><g><title>btrfs_truncate_inode_items (977 samples, 0.15%)</title><rect x="38.7302%" y="773" width="0.1518%" height="15" fill="rgb(215,181,40)" fg:x="249243" fg:w="977"/><text x="38.9802%" y="783.50"></text></g><g><title>evict_refill_and_join (86 samples, 0.01%)</title><rect x="38.8831%" y="773" width="0.0134%" height="15" fill="rgb(230,97,2)" fg:x="250227" fg:w="86"/><text x="39.1331%" y="783.50"></text></g><g><title>btrfs_evict_inode (2,548 samples, 0.40%)</title><rect x="38.5019%" y="789" width="0.3959%" height="15" fill="rgb(211,25,27)" fg:x="247774" fg:w="2548"/><text x="38.7519%" y="799.50"></text></g><g><title>btrfs_destroy_inode (65 samples, 0.01%)</title><rect x="38.9079%" y="773" width="0.0101%" height="15" fill="rgb(230,87,26)" fg:x="250387" fg:w="65"/><text x="39.1579%" y="783.50"></text></g><g><title>destroy_inode (159 samples, 0.02%)</title><rect x="38.8985%" y="789" width="0.0247%" height="15" fill="rgb(227,160,17)" fg:x="250326" fg:w="159"/><text x="39.1485%" y="799.50"></text></g><g><title>iput (2,738 samples, 0.43%)</title><rect x="38.4985%" y="821" width="0.4255%" height="15" fill="rgb(244,85,34)" fg:x="247752" fg:w="2738"/><text x="38.7485%" y="831.50"></text></g><g><title>evict (2,727 samples, 0.42%)</title><rect x="38.5002%" y="805" width="0.4238%" height="15" fill="rgb(207,70,0)" fg:x="247763" fg:w="2727"/><text x="38.7502%" y="815.50"></text></g><g><title>shrink_dcache_parent (146 samples, 0.02%)</title><rect x="38.9261%" y="821" width="0.0227%" height="15" fill="rgb(223,129,7)" fg:x="250504" fg:w="146"/><text x="39.1761%" y="831.50"></text></g><g><title>shrink_dentry_list (85 samples, 0.01%)</title><rect x="38.9356%" y="805" width="0.0132%" height="15" fill="rgb(246,105,7)" fg:x="250565" fg:w="85"/><text x="39.1856%" y="815.50"></text></g><g><title>do_rmdir (4,677 samples, 0.73%)</title><rect x="38.2222%" y="853" width="0.7268%" height="15" fill="rgb(215,154,42)" fg:x="245974" fg:w="4677"/><text x="38.4722%" y="863.50"></text></g><g><title>vfs_rmdir (4,576 samples, 0.71%)</title><rect x="38.2379%" y="837" width="0.7111%" height="15" fill="rgb(220,215,30)" fg:x="246075" fg:w="4576"/><text x="38.4879%" y="847.50"></text></g><g><title>dput (72 samples, 0.01%)</title><rect x="38.9662%" y="837" width="0.0112%" height="15" fill="rgb(228,81,51)" fg:x="250762" fg:w="72"/><text x="39.2162%" y="847.50"></text></g><g><title>filename_parentat (76 samples, 0.01%)</title><rect x="38.9783%" y="837" width="0.0118%" height="15" fill="rgb(247,71,54)" fg:x="250840" fg:w="76"/><text x="39.2283%" y="847.50"></text></g><g><title>btrfs_get_token_32 (217 samples, 0.03%)</title><rect x="39.0596%" y="741" width="0.0337%" height="15" fill="rgb(234,176,34)" fg:x="251363" fg:w="217"/><text x="39.3096%" y="751.50"></text></g><g><title>btrfs_set_token_32 (184 samples, 0.03%)</title><rect x="39.0946%" y="741" width="0.0286%" height="15" fill="rgb(241,103,54)" fg:x="251588" fg:w="184"/><text x="39.3446%" y="751.50"></text></g><g><title>check_setget_bounds.isra.0 (74 samples, 0.01%)</title><rect x="39.1232%" y="741" width="0.0115%" height="15" fill="rgb(228,22,34)" fg:x="251772" fg:w="74"/><text x="39.3732%" y="751.50"></text></g><g><title>memmove_extent_buffer (301 samples, 0.05%)</title><rect x="39.1426%" y="741" width="0.0468%" height="15" fill="rgb(241,179,48)" fg:x="251897" fg:w="301"/><text x="39.3926%" y="751.50"></text></g><g><title>memmove (245 samples, 0.04%)</title><rect x="39.1513%" y="725" width="0.0381%" height="15" fill="rgb(235,167,37)" fg:x="251953" fg:w="245"/><text x="39.4013%" y="735.50"></text></g><g><title>btrfs_del_items (988 samples, 0.15%)</title><rect x="39.0438%" y="757" width="0.1535%" height="15" fill="rgb(213,109,30)" fg:x="251261" fg:w="988"/><text x="39.2938%" y="767.50"></text></g><g><title>btrfs_bin_search (155 samples, 0.02%)</title><rect x="39.2321%" y="725" width="0.0241%" height="15" fill="rgb(222,172,16)" fg:x="252473" fg:w="155"/><text x="39.4821%" y="735.50"></text></g><g><title>generic_bin_search.constprop.0 (150 samples, 0.02%)</title><rect x="39.2329%" y="709" width="0.0233%" height="15" fill="rgb(233,192,5)" fg:x="252478" fg:w="150"/><text x="39.4829%" y="719.50"></text></g><g><title>osq_lock (100 samples, 0.02%)</title><rect x="39.2918%" y="645" width="0.0155%" height="15" fill="rgb(247,189,41)" fg:x="252857" fg:w="100"/><text x="39.5418%" y="655.50"></text></g><g><title>rwsem_optimistic_spin (300 samples, 0.05%)</title><rect x="39.2630%" y="661" width="0.0466%" height="15" fill="rgb(218,134,47)" fg:x="252672" fg:w="300"/><text x="39.5130%" y="671.50"></text></g><g><title>__perf_event_task_sched_in (229 samples, 0.04%)</title><rect x="39.3171%" y="613" width="0.0356%" height="15" fill="rgb(216,29,3)" fg:x="253020" fg:w="229"/><text x="39.5671%" y="623.50"></text></g><g><title>x86_pmu_enable (225 samples, 0.03%)</title><rect x="39.3177%" y="597" width="0.0350%" height="15" fill="rgb(246,140,12)" fg:x="253024" fg:w="225"/><text x="39.5677%" y="607.50"></text></g><g><title>intel_pmu_enable_all (223 samples, 0.03%)</title><rect x="39.3180%" y="581" width="0.0347%" height="15" fill="rgb(230,136,11)" fg:x="253026" fg:w="223"/><text x="39.5680%" y="591.50"></text></g><g><title>native_write_msr (220 samples, 0.03%)</title><rect x="39.3185%" y="565" width="0.0342%" height="15" fill="rgb(247,22,47)" fg:x="253029" fg:w="220"/><text x="39.5685%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (240 samples, 0.04%)</title><rect x="39.3160%" y="629" width="0.0373%" height="15" fill="rgb(218,84,22)" fg:x="253013" fg:w="240"/><text x="39.5660%" y="639.50"></text></g><g><title>__btrfs_tree_lock (655 samples, 0.10%)</title><rect x="39.2585%" y="709" width="0.1018%" height="15" fill="rgb(216,87,39)" fg:x="252643" fg:w="655"/><text x="39.5085%" y="719.50"></text></g><g><title>down_write (651 samples, 0.10%)</title><rect x="39.2591%" y="693" width="0.1012%" height="15" fill="rgb(221,178,8)" fg:x="252647" fg:w="651"/><text x="39.5091%" y="703.50"></text></g><g><title>rwsem_down_write_slowpath (642 samples, 0.10%)</title><rect x="39.2605%" y="677" width="0.0998%" height="15" fill="rgb(230,42,11)" fg:x="252656" fg:w="642"/><text x="39.5105%" y="687.50"></text></g><g><title>schedule (326 samples, 0.05%)</title><rect x="39.3096%" y="661" width="0.0507%" height="15" fill="rgb(237,229,4)" fg:x="252972" fg:w="326"/><text x="39.5596%" y="671.50"></text></g><g><title>__schedule (325 samples, 0.05%)</title><rect x="39.3098%" y="645" width="0.0505%" height="15" fill="rgb(222,31,33)" fg:x="252973" fg:w="325"/><text x="39.5598%" y="655.50"></text></g><g><title>btrfs_lock_root_node (664 samples, 0.10%)</title><rect x="39.2582%" y="725" width="0.1032%" height="15" fill="rgb(210,17,39)" fg:x="252641" fg:w="664"/><text x="39.5082%" y="735.50"></text></g><g><title>finish_task_switch.isra.0 (147 samples, 0.02%)</title><rect x="39.3709%" y="629" width="0.0228%" height="15" fill="rgb(244,93,20)" fg:x="253366" fg:w="147"/><text x="39.6209%" y="639.50"></text></g><g><title>__perf_event_task_sched_in (141 samples, 0.02%)</title><rect x="39.3718%" y="613" width="0.0219%" height="15" fill="rgb(210,40,47)" fg:x="253372" fg:w="141"/><text x="39.6218%" y="623.50"></text></g><g><title>x86_pmu_enable (138 samples, 0.02%)</title><rect x="39.3723%" y="597" width="0.0214%" height="15" fill="rgb(239,211,47)" fg:x="253375" fg:w="138"/><text x="39.6223%" y="607.50"></text></g><g><title>intel_pmu_enable_all (136 samples, 0.02%)</title><rect x="39.3726%" y="581" width="0.0211%" height="15" fill="rgb(251,223,49)" fg:x="253377" fg:w="136"/><text x="39.6226%" y="591.50"></text></g><g><title>native_write_msr (135 samples, 0.02%)</title><rect x="39.3727%" y="565" width="0.0210%" height="15" fill="rgb(221,149,5)" fg:x="253378" fg:w="135"/><text x="39.6227%" y="575.50"></text></g><g><title>schedule (230 samples, 0.04%)</title><rect x="39.3663%" y="661" width="0.0357%" height="15" fill="rgb(219,224,51)" fg:x="253337" fg:w="230"/><text x="39.6163%" y="671.50"></text></g><g><title>__schedule (229 samples, 0.04%)</title><rect x="39.3665%" y="645" width="0.0356%" height="15" fill="rgb(223,7,8)" fg:x="253338" fg:w="229"/><text x="39.6165%" y="655.50"></text></g><g><title>rwsem_down_read_slowpath (243 samples, 0.04%)</title><rect x="39.3648%" y="677" width="0.0378%" height="15" fill="rgb(241,217,22)" fg:x="253327" fg:w="243"/><text x="39.6148%" y="687.50"></text></g><g><title>down_read (258 samples, 0.04%)</title><rect x="39.3626%" y="693" width="0.0401%" height="15" fill="rgb(248,209,0)" fg:x="253313" fg:w="258"/><text x="39.6126%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (263 samples, 0.04%)</title><rect x="39.3620%" y="709" width="0.0409%" height="15" fill="rgb(217,205,4)" fg:x="253309" fg:w="263"/><text x="39.6120%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (283 samples, 0.04%)</title><rect x="39.3614%" y="725" width="0.0440%" height="15" fill="rgb(228,124,39)" fg:x="253305" fg:w="283"/><text x="39.6114%" y="735.50"></text></g><g><title>rwsem_optimistic_spin (67 samples, 0.01%)</title><rect x="39.4217%" y="661" width="0.0104%" height="15" fill="rgb(250,116,42)" fg:x="253693" fg:w="67"/><text x="39.6717%" y="671.50"></text></g><g><title>__btrfs_tree_lock (167 samples, 0.03%)</title><rect x="39.4134%" y="709" width="0.0260%" height="15" fill="rgb(223,202,9)" fg:x="253640" fg:w="167"/><text x="39.6634%" y="719.50"></text></g><g><title>down_write (159 samples, 0.02%)</title><rect x="39.4147%" y="693" width="0.0247%" height="15" fill="rgb(242,222,40)" fg:x="253648" fg:w="159"/><text x="39.6647%" y="703.50"></text></g><g><title>rwsem_down_write_slowpath (116 samples, 0.02%)</title><rect x="39.4214%" y="677" width="0.0180%" height="15" fill="rgb(229,99,46)" fg:x="253691" fg:w="116"/><text x="39.6714%" y="687.50"></text></g><g><title>btrfs_tree_lock (169 samples, 0.03%)</title><rect x="39.4134%" y="725" width="0.0263%" height="15" fill="rgb(225,56,46)" fg:x="253640" fg:w="169"/><text x="39.6634%" y="735.50"></text></g><g><title>__radix_tree_lookup (69 samples, 0.01%)</title><rect x="39.4709%" y="661" width="0.0107%" height="15" fill="rgb(227,94,5)" fg:x="254010" fg:w="69"/><text x="39.7209%" y="671.50"></text></g><g><title>radix_tree_lookup (70 samples, 0.01%)</title><rect x="39.4709%" y="677" width="0.0109%" height="15" fill="rgb(205,112,38)" fg:x="254010" fg:w="70"/><text x="39.7209%" y="687.50"></text></g><g><title>find_extent_buffer_nolock (111 samples, 0.02%)</title><rect x="39.4647%" y="693" width="0.0172%" height="15" fill="rgb(231,133,46)" fg:x="253970" fg:w="111"/><text x="39.7147%" y="703.50"></text></g><g><title>find_extent_buffer (159 samples, 0.02%)</title><rect x="39.4630%" y="709" width="0.0247%" height="15" fill="rgb(217,16,9)" fg:x="253959" fg:w="159"/><text x="39.7130%" y="719.50"></text></g><g><title>read_block_for_search (283 samples, 0.04%)</title><rect x="39.4459%" y="725" width="0.0440%" height="15" fill="rgb(249,173,9)" fg:x="253849" fg:w="283"/><text x="39.6959%" y="735.50"></text></g><g><title>btrfs_find_create_tree_block (89 samples, 0.01%)</title><rect x="39.4977%" y="677" width="0.0138%" height="15" fill="rgb(205,163,53)" fg:x="254182" fg:w="89"/><text x="39.7477%" y="687.50"></text></g><g><title>alloc_extent_buffer (89 samples, 0.01%)</title><rect x="39.4977%" y="661" width="0.0138%" height="15" fill="rgb(217,54,41)" fg:x="254182" fg:w="89"/><text x="39.7477%" y="671.50"></text></g><g><title>find_extent_buffer (81 samples, 0.01%)</title><rect x="39.4989%" y="645" width="0.0126%" height="15" fill="rgb(228,216,12)" fg:x="254190" fg:w="81"/><text x="39.7489%" y="655.50"></text></g><g><title>btrfs_readahead_tree_block (115 samples, 0.02%)</title><rect x="39.4947%" y="693" width="0.0179%" height="15" fill="rgb(244,228,15)" fg:x="254163" fg:w="115"/><text x="39.7447%" y="703.50"></text></g><g><title>btrfs_readahead_node_child (144 samples, 0.02%)</title><rect x="39.4908%" y="709" width="0.0224%" height="15" fill="rgb(221,176,53)" fg:x="254138" fg:w="144"/><text x="39.7408%" y="719.50"></text></g><g><title>reada_for_balance (152 samples, 0.02%)</title><rect x="39.4899%" y="725" width="0.0236%" height="15" fill="rgb(205,94,34)" fg:x="254132" fg:w="152"/><text x="39.7399%" y="735.50"></text></g><g><title>select_task_rq_fair (71 samples, 0.01%)</title><rect x="39.5354%" y="629" width="0.0110%" height="15" fill="rgb(213,110,48)" fg:x="254425" fg:w="71"/><text x="39.7854%" y="639.50"></text></g><g><title>enqueue_task (70 samples, 0.01%)</title><rect x="39.5480%" y="613" width="0.0109%" height="15" fill="rgb(236,142,28)" fg:x="254506" fg:w="70"/><text x="39.7980%" y="623.50"></text></g><g><title>ttwu_do_activate (78 samples, 0.01%)</title><rect x="39.5475%" y="629" width="0.0121%" height="15" fill="rgb(225,135,29)" fg:x="254503" fg:w="78"/><text x="39.7975%" y="639.50"></text></g><g><title>try_to_wake_up (240 samples, 0.04%)</title><rect x="39.5262%" y="645" width="0.0373%" height="15" fill="rgb(252,45,31)" fg:x="254366" fg:w="240"/><text x="39.7762%" y="655.50"></text></g><g><title>btrfs_tree_unlock (283 samples, 0.04%)</title><rect x="39.5197%" y="709" width="0.0440%" height="15" fill="rgb(211,187,50)" fg:x="254324" fg:w="283"/><text x="39.7697%" y="719.50"></text></g><g><title>up_write (278 samples, 0.04%)</title><rect x="39.5205%" y="693" width="0.0432%" height="15" fill="rgb(229,109,7)" fg:x="254329" fg:w="278"/><text x="39.7705%" y="703.50"></text></g><g><title>rwsem_wake.isra.0 (278 samples, 0.04%)</title><rect x="39.5205%" y="677" width="0.0432%" height="15" fill="rgb(251,131,51)" fg:x="254329" fg:w="278"/><text x="39.7705%" y="687.50"></text></g><g><title>wake_up_q (252 samples, 0.04%)</title><rect x="39.5245%" y="661" width="0.0392%" height="15" fill="rgb(251,180,35)" fg:x="254355" fg:w="252"/><text x="39.7745%" y="671.50"></text></g><g><title>unlock_up (336 samples, 0.05%)</title><rect x="39.5135%" y="725" width="0.0522%" height="15" fill="rgb(211,46,32)" fg:x="254284" fg:w="336"/><text x="39.7635%" y="735.50"></text></g><g><title>btrfs_search_slot (2,298 samples, 0.36%)</title><rect x="39.2092%" y="741" width="0.3571%" height="15" fill="rgb(248,123,17)" fg:x="252326" fg:w="2298"/><text x="39.4592%" y="751.50"></text></g><g><title>btrfs_lookup_inode (2,322 samples, 0.36%)</title><rect x="39.2066%" y="757" width="0.3608%" height="15" fill="rgb(227,141,18)" fg:x="252309" fg:w="2322"/><text x="39.4566%" y="767.50"></text></g><g><title>btrfs_release_path (108 samples, 0.02%)</title><rect x="39.5718%" y="757" width="0.0168%" height="15" fill="rgb(216,102,9)" fg:x="254659" fg:w="108"/><text x="39.8218%" y="767.50"></text></g><g><title>__btrfs_update_delayed_inode (3,638 samples, 0.57%)</title><rect x="39.0413%" y="773" width="0.5653%" height="15" fill="rgb(253,47,13)" fg:x="251245" fg:w="3638"/><text x="39.2913%" y="783.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (3,958 samples, 0.62%)</title><rect x="39.0340%" y="789" width="0.6150%" height="15" fill="rgb(226,93,23)" fg:x="251198" fg:w="3958"/><text x="39.2840%" y="799.50"></text></g><g><title>btrfs_del_items (75 samples, 0.01%)</title><rect x="39.6565%" y="773" width="0.0117%" height="15" fill="rgb(247,104,17)" fg:x="255204" fg:w="75"/><text x="39.9065%" y="783.50"></text></g><g><title>btrfs_free_path (88 samples, 0.01%)</title><rect x="39.6681%" y="773" width="0.0137%" height="15" fill="rgb(233,203,26)" fg:x="255279" fg:w="88"/><text x="39.9181%" y="783.50"></text></g><g><title>btrfs_bin_search (146 samples, 0.02%)</title><rect x="39.7020%" y="757" width="0.0227%" height="15" fill="rgb(244,98,49)" fg:x="255497" fg:w="146"/><text x="39.9520%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (140 samples, 0.02%)</title><rect x="39.7029%" y="741" width="0.0218%" height="15" fill="rgb(235,134,22)" fg:x="255503" fg:w="140"/><text x="39.9529%" y="751.50"></text></g><g><title>osq_lock (99 samples, 0.02%)</title><rect x="39.7629%" y="677" width="0.0154%" height="15" fill="rgb(221,70,32)" fg:x="255889" fg:w="99"/><text x="40.0129%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (336 samples, 0.05%)</title><rect x="39.7292%" y="693" width="0.0522%" height="15" fill="rgb(238,15,50)" fg:x="255672" fg:w="336"/><text x="39.9792%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (164 samples, 0.03%)</title><rect x="39.7870%" y="645" width="0.0255%" height="15" fill="rgb(215,221,48)" fg:x="256044" fg:w="164"/><text x="40.0370%" y="655.50"></text></g><g><title>x86_pmu_enable (160 samples, 0.02%)</title><rect x="39.7876%" y="629" width="0.0249%" height="15" fill="rgb(236,73,3)" fg:x="256048" fg:w="160"/><text x="40.0376%" y="639.50"></text></g><g><title>intel_pmu_enable_all (158 samples, 0.02%)</title><rect x="39.7879%" y="613" width="0.0246%" height="15" fill="rgb(250,107,11)" fg:x="256050" fg:w="158"/><text x="40.0379%" y="623.50"></text></g><g><title>native_write_msr (158 samples, 0.02%)</title><rect x="39.7879%" y="597" width="0.0246%" height="15" fill="rgb(242,39,14)" fg:x="256050" fg:w="158"/><text x="40.0379%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (170 samples, 0.03%)</title><rect x="39.7865%" y="661" width="0.0264%" height="15" fill="rgb(248,164,37)" fg:x="256041" fg:w="170"/><text x="40.0365%" y="671.50"></text></g><g><title>__schedule (253 samples, 0.04%)</title><rect x="39.7817%" y="677" width="0.0393%" height="15" fill="rgb(217,60,12)" fg:x="256010" fg:w="253"/><text x="40.0317%" y="687.50"></text></g><g><title>__btrfs_tree_lock (613 samples, 0.10%)</title><rect x="39.7259%" y="741" width="0.0953%" height="15" fill="rgb(240,125,29)" fg:x="255651" fg:w="613"/><text x="39.9759%" y="751.50"></text></g><g><title>down_write (609 samples, 0.09%)</title><rect x="39.7265%" y="725" width="0.0946%" height="15" fill="rgb(208,207,28)" fg:x="255655" fg:w="609"/><text x="39.9765%" y="735.50"></text></g><g><title>rwsem_down_write_slowpath (604 samples, 0.09%)</title><rect x="39.7273%" y="709" width="0.0939%" height="15" fill="rgb(209,159,27)" fg:x="255660" fg:w="604"/><text x="39.9773%" y="719.50"></text></g><g><title>schedule (254 samples, 0.04%)</title><rect x="39.7817%" y="693" width="0.0395%" height="15" fill="rgb(251,176,53)" fg:x="256010" fg:w="254"/><text x="40.0317%" y="703.50"></text></g><g><title>btrfs_lock_root_node (624 samples, 0.10%)</title><rect x="39.7256%" y="757" width="0.0970%" height="15" fill="rgb(211,85,7)" fg:x="255649" fg:w="624"/><text x="39.9756%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.01%)</title><rect x="39.8338%" y="645" width="0.0134%" height="15" fill="rgb(216,64,54)" fg:x="256345" fg:w="86"/><text x="40.0838%" y="655.50"></text></g><g><title>x86_pmu_enable (82 samples, 0.01%)</title><rect x="39.8344%" y="629" width="0.0127%" height="15" fill="rgb(217,54,24)" fg:x="256349" fg:w="82"/><text x="40.0844%" y="639.50"></text></g><g><title>intel_pmu_enable_all (82 samples, 0.01%)</title><rect x="39.8344%" y="613" width="0.0127%" height="15" fill="rgb(208,206,53)" fg:x="256349" fg:w="82"/><text x="40.0844%" y="623.50"></text></g><g><title>native_write_msr (82 samples, 0.01%)</title><rect x="39.8344%" y="597" width="0.0127%" height="15" fill="rgb(251,74,39)" fg:x="256349" fg:w="82"/><text x="40.0844%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (93 samples, 0.01%)</title><rect x="39.8330%" y="661" width="0.0145%" height="15" fill="rgb(226,47,5)" fg:x="256340" fg:w="93"/><text x="40.0830%" y="671.50"></text></g><g><title>schedule (155 samples, 0.02%)</title><rect x="39.8288%" y="693" width="0.0241%" height="15" fill="rgb(234,111,33)" fg:x="256313" fg:w="155"/><text x="40.0788%" y="703.50"></text></g><g><title>__schedule (155 samples, 0.02%)</title><rect x="39.8288%" y="677" width="0.0241%" height="15" fill="rgb(251,14,10)" fg:x="256313" fg:w="155"/><text x="40.0788%" y="687.50"></text></g><g><title>rwsem_down_read_slowpath (177 samples, 0.03%)</title><rect x="39.8257%" y="709" width="0.0275%" height="15" fill="rgb(232,43,0)" fg:x="256293" fg:w="177"/><text x="40.0757%" y="719.50"></text></g><g><title>down_read (194 samples, 0.03%)</title><rect x="39.8234%" y="725" width="0.0301%" height="15" fill="rgb(222,68,43)" fg:x="256278" fg:w="194"/><text x="40.0734%" y="735.50"></text></g><g><title>__btrfs_tree_read_lock (200 samples, 0.03%)</title><rect x="39.8227%" y="741" width="0.0311%" height="15" fill="rgb(217,24,23)" fg:x="256274" fg:w="200"/><text x="40.0727%" y="751.50"></text></g><g><title>btrfs_read_lock_root_node (214 samples, 0.03%)</title><rect x="39.8227%" y="757" width="0.0333%" height="15" fill="rgb(229,209,14)" fg:x="256274" fg:w="214"/><text x="40.0727%" y="767.50"></text></g><g><title>rwsem_optimistic_spin (89 samples, 0.01%)</title><rect x="39.8731%" y="693" width="0.0138%" height="15" fill="rgb(250,149,48)" fg:x="256598" fg:w="89"/><text x="40.1231%" y="703.50"></text></g><g><title>__btrfs_tree_lock (196 samples, 0.03%)</title><rect x="39.8656%" y="741" width="0.0305%" height="15" fill="rgb(210,120,37)" fg:x="256550" fg:w="196"/><text x="40.1156%" y="751.50"></text></g><g><title>down_write (195 samples, 0.03%)</title><rect x="39.8658%" y="725" width="0.0303%" height="15" fill="rgb(210,21,8)" fg:x="256551" fg:w="195"/><text x="40.1158%" y="735.50"></text></g><g><title>rwsem_down_write_slowpath (149 samples, 0.02%)</title><rect x="39.8729%" y="709" width="0.0232%" height="15" fill="rgb(243,145,7)" fg:x="256597" fg:w="149"/><text x="40.1229%" y="719.50"></text></g><g><title>btrfs_tree_lock (197 samples, 0.03%)</title><rect x="39.8656%" y="757" width="0.0306%" height="15" fill="rgb(238,178,32)" fg:x="256550" fg:w="197"/><text x="40.1156%" y="767.50"></text></g><g><title>radix_tree_lookup (77 samples, 0.01%)</title><rect x="39.9239%" y="709" width="0.0120%" height="15" fill="rgb(222,4,10)" fg:x="256925" fg:w="77"/><text x="40.1739%" y="719.50"></text></g><g><title>__radix_tree_lookup (77 samples, 0.01%)</title><rect x="39.9239%" y="693" width="0.0120%" height="15" fill="rgb(239,7,37)" fg:x="256925" fg:w="77"/><text x="40.1739%" y="703.50"></text></g><g><title>find_extent_buffer_nolock (109 samples, 0.02%)</title><rect x="39.9192%" y="725" width="0.0169%" height="15" fill="rgb(215,31,37)" fg:x="256895" fg:w="109"/><text x="40.1692%" y="735.50"></text></g><g><title>find_extent_buffer (163 samples, 0.03%)</title><rect x="39.9171%" y="741" width="0.0253%" height="15" fill="rgb(224,83,33)" fg:x="256881" fg:w="163"/><text x="40.1671%" y="751.50"></text></g><g><title>read_block_for_search (265 samples, 0.04%)</title><rect x="39.9020%" y="757" width="0.0412%" height="15" fill="rgb(239,55,3)" fg:x="256784" fg:w="265"/><text x="40.1520%" y="767.50"></text></g><g><title>find_extent_buffer (80 samples, 0.01%)</title><rect x="39.9492%" y="677" width="0.0124%" height="15" fill="rgb(247,92,11)" fg:x="257088" fg:w="80"/><text x="40.1992%" y="687.50"></text></g><g><title>btrfs_find_create_tree_block (87 samples, 0.01%)</title><rect x="39.9483%" y="709" width="0.0135%" height="15" fill="rgb(239,200,7)" fg:x="257082" fg:w="87"/><text x="40.1983%" y="719.50"></text></g><g><title>alloc_extent_buffer (87 samples, 0.01%)</title><rect x="39.9483%" y="693" width="0.0135%" height="15" fill="rgb(227,115,8)" fg:x="257082" fg:w="87"/><text x="40.1983%" y="703.50"></text></g><g><title>reada_for_balance (128 samples, 0.02%)</title><rect x="39.9432%" y="757" width="0.0199%" height="15" fill="rgb(215,189,27)" fg:x="257049" fg:w="128"/><text x="40.1932%" y="767.50"></text></g><g><title>btrfs_readahead_node_child (121 samples, 0.02%)</title><rect x="39.9442%" y="741" width="0.0188%" height="15" fill="rgb(251,216,39)" fg:x="257056" fg:w="121"/><text x="40.1942%" y="751.50"></text></g><g><title>btrfs_readahead_tree_block (109 samples, 0.02%)</title><rect x="39.9461%" y="725" width="0.0169%" height="15" fill="rgb(207,29,47)" fg:x="257068" fg:w="109"/><text x="40.1961%" y="735.50"></text></g><g><title>ttwu_do_activate (76 samples, 0.01%)</title><rect x="39.9971%" y="661" width="0.0118%" height="15" fill="rgb(210,71,34)" fg:x="257396" fg:w="76"/><text x="40.2471%" y="671.50"></text></g><g><title>try_to_wake_up (216 samples, 0.03%)</title><rect x="39.9784%" y="677" width="0.0336%" height="15" fill="rgb(253,217,51)" fg:x="257276" fg:w="216"/><text x="40.2284%" y="687.50"></text></g><g><title>btrfs_tree_unlock (264 samples, 0.04%)</title><rect x="39.9711%" y="741" width="0.0410%" height="15" fill="rgb(222,117,46)" fg:x="257229" fg:w="264"/><text x="40.2211%" y="751.50"></text></g><g><title>up_write (257 samples, 0.04%)</title><rect x="39.9722%" y="725" width="0.0399%" height="15" fill="rgb(226,132,6)" fg:x="257236" fg:w="257"/><text x="40.2222%" y="735.50"></text></g><g><title>rwsem_wake.isra.0 (257 samples, 0.04%)</title><rect x="39.9722%" y="709" width="0.0399%" height="15" fill="rgb(254,145,51)" fg:x="257236" fg:w="257"/><text x="40.2222%" y="719.50"></text></g><g><title>wake_up_q (234 samples, 0.04%)</title><rect x="39.9758%" y="693" width="0.0364%" height="15" fill="rgb(231,199,27)" fg:x="257259" fg:w="234"/><text x="40.2258%" y="703.50"></text></g><g><title>unlock_up (330 samples, 0.05%)</title><rect x="39.9630%" y="757" width="0.0513%" height="15" fill="rgb(245,158,14)" fg:x="257177" fg:w="330"/><text x="40.2130%" y="767.50"></text></g><g><title>btrfs_search_slot (2,137 samples, 0.33%)</title><rect x="39.6835%" y="773" width="0.3321%" height="15" fill="rgb(240,113,14)" fg:x="255378" fg:w="2137"/><text x="39.9335%" y="783.50"></text></g><g><title>btrfs_del_orphan_item (2,368 samples, 0.37%)</title><rect x="39.6498%" y="789" width="0.3680%" height="15" fill="rgb(210,20,13)" fg:x="255161" fg:w="2368"/><text x="39.8998%" y="799.50"></text></g><g><title>__btrfs_end_transaction (173 samples, 0.03%)</title><rect x="40.0187%" y="773" width="0.0269%" height="15" fill="rgb(241,144,13)" fg:x="257535" fg:w="173"/><text x="40.2687%" y="783.50"></text></g><g><title>btrfs_end_transaction (181 samples, 0.03%)</title><rect x="40.0185%" y="789" width="0.0281%" height="15" fill="rgb(235,43,34)" fg:x="257534" fg:w="181"/><text x="40.2685%" y="799.50"></text></g><g><title>__btrfs_release_delayed_node.part.0 (158 samples, 0.02%)</title><rect x="40.0625%" y="773" width="0.0246%" height="15" fill="rgb(208,36,20)" fg:x="257817" fg:w="158"/><text x="40.3125%" y="783.50"></text></g><g><title>radix_tree_delete (81 samples, 0.01%)</title><rect x="40.0745%" y="757" width="0.0126%" height="15" fill="rgb(239,204,10)" fg:x="257894" fg:w="81"/><text x="40.3245%" y="767.50"></text></g><g><title>radix_tree_delete_item (81 samples, 0.01%)</title><rect x="40.0745%" y="741" width="0.0126%" height="15" fill="rgb(217,84,43)" fg:x="257894" fg:w="81"/><text x="40.3245%" y="751.50"></text></g><g><title>btrfs_remove_delayed_node (173 samples, 0.03%)</title><rect x="40.0623%" y="789" width="0.0269%" height="15" fill="rgb(241,170,50)" fg:x="257816" fg:w="173"/><text x="40.3123%" y="799.50"></text></g><g><title>clear_state_bit (86 samples, 0.01%)</title><rect x="40.1088%" y="757" width="0.0134%" height="15" fill="rgb(226,205,29)" fg:x="258115" fg:w="86"/><text x="40.3588%" y="767.50"></text></g><g><title>__clear_extent_bit (177 samples, 0.03%)</title><rect x="40.1010%" y="773" width="0.0275%" height="15" fill="rgb(233,113,1)" fg:x="258065" fg:w="177"/><text x="40.3510%" y="783.50"></text></g><g><title>btrfs_get_token_32 (200 samples, 0.03%)</title><rect x="40.1604%" y="757" width="0.0311%" height="15" fill="rgb(253,98,13)" fg:x="258447" fg:w="200"/><text x="40.4104%" y="767.50"></text></g><g><title>btrfs_set_token_32 (194 samples, 0.03%)</title><rect x="40.1936%" y="757" width="0.0301%" height="15" fill="rgb(211,115,12)" fg:x="258661" fg:w="194"/><text x="40.4436%" y="767.50"></text></g><g><title>memmove_extent_buffer (252 samples, 0.04%)</title><rect x="40.2415%" y="757" width="0.0392%" height="15" fill="rgb(208,12,16)" fg:x="258969" fg:w="252"/><text x="40.4915%" y="767.50"></text></g><g><title>memmove (208 samples, 0.03%)</title><rect x="40.2483%" y="741" width="0.0323%" height="15" fill="rgb(237,193,54)" fg:x="259013" fg:w="208"/><text x="40.4983%" y="751.50"></text></g><g><title>push_leaf_left (72 samples, 0.01%)</title><rect x="40.2807%" y="757" width="0.0112%" height="15" fill="rgb(243,22,42)" fg:x="259221" fg:w="72"/><text x="40.5307%" y="767.50"></text></g><g><title>btrfs_del_items (1,030 samples, 0.16%)</title><rect x="40.1382%" y="773" width="0.1601%" height="15" fill="rgb(233,151,36)" fg:x="258304" fg:w="1030"/><text x="40.3882%" y="783.50"></text></g><g><title>btrfs_drop_extent_cache (116 samples, 0.02%)</title><rect x="40.2982%" y="773" width="0.0180%" height="15" fill="rgb(237,57,45)" fg:x="259334" fg:w="116"/><text x="40.5482%" y="783.50"></text></g><g><title>btrfs_release_path (87 samples, 0.01%)</title><rect x="40.3167%" y="757" width="0.0135%" height="15" fill="rgb(221,88,17)" fg:x="259453" fg:w="87"/><text x="40.5667%" y="767.50"></text></g><g><title>btrfs_free_path (119 samples, 0.02%)</title><rect x="40.3163%" y="773" width="0.0185%" height="15" fill="rgb(230,79,15)" fg:x="259450" fg:w="119"/><text x="40.5663%" y="783.50"></text></g><g><title>btrfs_inode_clear_file_extent_range (69 samples, 0.01%)</title><rect x="40.3419%" y="773" width="0.0107%" height="15" fill="rgb(213,57,13)" fg:x="259615" fg:w="69"/><text x="40.5919%" y="783.50"></text></g><g><title>clear_extent_bit (69 samples, 0.01%)</title><rect x="40.3419%" y="757" width="0.0107%" height="15" fill="rgb(222,116,39)" fg:x="259615" fg:w="69"/><text x="40.5919%" y="767.50"></text></g><g><title>btrfs_bin_search (135 samples, 0.02%)</title><rect x="40.3806%" y="757" width="0.0210%" height="15" fill="rgb(245,107,2)" fg:x="259864" fg:w="135"/><text x="40.6306%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (128 samples, 0.02%)</title><rect x="40.3817%" y="741" width="0.0199%" height="15" fill="rgb(238,1,10)" fg:x="259871" fg:w="128"/><text x="40.6317%" y="751.50"></text></g><g><title>osq_lock (101 samples, 0.02%)</title><rect x="40.4384%" y="677" width="0.0157%" height="15" fill="rgb(249,4,48)" fg:x="260236" fg:w="101"/><text x="40.6884%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (307 samples, 0.05%)</title><rect x="40.4084%" y="693" width="0.0477%" height="15" fill="rgb(223,151,18)" fg:x="260043" fg:w="307"/><text x="40.6584%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (129 samples, 0.02%)</title><rect x="40.4606%" y="645" width="0.0200%" height="15" fill="rgb(227,65,43)" fg:x="260379" fg:w="129"/><text x="40.7106%" y="655.50"></text></g><g><title>x86_pmu_enable (127 samples, 0.02%)</title><rect x="40.4609%" y="629" width="0.0197%" height="15" fill="rgb(218,40,45)" fg:x="260381" fg:w="127"/><text x="40.7109%" y="639.50"></text></g><g><title>intel_pmu_enable_all (127 samples, 0.02%)</title><rect x="40.4609%" y="613" width="0.0197%" height="15" fill="rgb(252,121,31)" fg:x="260381" fg:w="127"/><text x="40.7109%" y="623.50"></text></g><g><title>native_write_msr (124 samples, 0.02%)</title><rect x="40.4614%" y="597" width="0.0193%" height="15" fill="rgb(219,158,43)" fg:x="260384" fg:w="124"/><text x="40.7114%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (136 samples, 0.02%)</title><rect x="40.4600%" y="661" width="0.0211%" height="15" fill="rgb(231,162,42)" fg:x="260375" fg:w="136"/><text x="40.7100%" y="671.50"></text></g><g><title>__schedule (195 samples, 0.03%)</title><rect x="40.4564%" y="677" width="0.0303%" height="15" fill="rgb(217,179,25)" fg:x="260352" fg:w="195"/><text x="40.7064%" y="687.50"></text></g><g><title>rwsem_down_write_slowpath (522 samples, 0.08%)</title><rect x="40.4058%" y="709" width="0.0811%" height="15" fill="rgb(206,212,31)" fg:x="260026" fg:w="522"/><text x="40.6558%" y="719.50"></text></g><g><title>schedule (197 samples, 0.03%)</title><rect x="40.4563%" y="693" width="0.0306%" height="15" fill="rgb(235,144,12)" fg:x="260351" fg:w="197"/><text x="40.7063%" y="703.50"></text></g><g><title>down_write (531 samples, 0.08%)</title><rect x="40.4048%" y="725" width="0.0825%" height="15" fill="rgb(213,51,10)" fg:x="260020" fg:w="531"/><text x="40.6548%" y="735.50"></text></g><g><title>__btrfs_tree_lock (539 samples, 0.08%)</title><rect x="40.4037%" y="741" width="0.0838%" height="15" fill="rgb(231,145,14)" fg:x="260013" fg:w="539"/><text x="40.6537%" y="751.50"></text></g><g><title>btrfs_lock_root_node (548 samples, 0.09%)</title><rect x="40.4034%" y="757" width="0.0852%" height="15" fill="rgb(235,15,28)" fg:x="260011" fg:w="548"/><text x="40.6534%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (137 samples, 0.02%)</title><rect x="40.5004%" y="645" width="0.0213%" height="15" fill="rgb(237,206,10)" fg:x="260635" fg:w="137"/><text x="40.7504%" y="655.50"></text></g><g><title>x86_pmu_enable (136 samples, 0.02%)</title><rect x="40.5005%" y="629" width="0.0211%" height="15" fill="rgb(236,227,27)" fg:x="260636" fg:w="136"/><text x="40.7505%" y="639.50"></text></g><g><title>intel_pmu_enable_all (135 samples, 0.02%)</title><rect x="40.5007%" y="613" width="0.0210%" height="15" fill="rgb(246,83,35)" fg:x="260637" fg:w="135"/><text x="40.7507%" y="623.50"></text></g><g><title>native_write_msr (135 samples, 0.02%)</title><rect x="40.5007%" y="597" width="0.0210%" height="15" fill="rgb(220,136,24)" fg:x="260637" fg:w="135"/><text x="40.7507%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (151 samples, 0.02%)</title><rect x="40.4996%" y="661" width="0.0235%" height="15" fill="rgb(217,3,25)" fg:x="260630" fg:w="151"/><text x="40.7496%" y="671.50"></text></g><g><title>__schedule (213 samples, 0.03%)</title><rect x="40.4956%" y="677" width="0.0331%" height="15" fill="rgb(239,24,14)" fg:x="260604" fg:w="213"/><text x="40.7456%" y="687.50"></text></g><g><title>schedule (215 samples, 0.03%)</title><rect x="40.4954%" y="693" width="0.0334%" height="15" fill="rgb(244,16,53)" fg:x="260603" fg:w="215"/><text x="40.7454%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (260 samples, 0.04%)</title><rect x="40.4887%" y="741" width="0.0404%" height="15" fill="rgb(208,175,44)" fg:x="260560" fg:w="260"/><text x="40.7387%" y="751.50"></text></g><g><title>down_read (258 samples, 0.04%)</title><rect x="40.4890%" y="725" width="0.0401%" height="15" fill="rgb(252,18,48)" fg:x="260562" fg:w="258"/><text x="40.7390%" y="735.50"></text></g><g><title>rwsem_down_read_slowpath (243 samples, 0.04%)</title><rect x="40.4914%" y="709" width="0.0378%" height="15" fill="rgb(234,199,32)" fg:x="260577" fg:w="243"/><text x="40.7414%" y="719.50"></text></g><g><title>btrfs_read_lock_root_node (274 samples, 0.04%)</title><rect x="40.4887%" y="757" width="0.0426%" height="15" fill="rgb(225,77,54)" fg:x="260560" fg:w="274"/><text x="40.7387%" y="767.50"></text></g><g><title>rwsem_optimistic_spin (73 samples, 0.01%)</title><rect x="40.5475%" y="693" width="0.0113%" height="15" fill="rgb(225,42,25)" fg:x="260938" fg:w="73"/><text x="40.7975%" y="703.50"></text></g><g><title>__btrfs_tree_lock (168 samples, 0.03%)</title><rect x="40.5395%" y="741" width="0.0261%" height="15" fill="rgb(242,227,46)" fg:x="260887" fg:w="168"/><text x="40.7895%" y="751.50"></text></g><g><title>down_write (161 samples, 0.03%)</title><rect x="40.5406%" y="725" width="0.0250%" height="15" fill="rgb(246,197,35)" fg:x="260894" fg:w="161"/><text x="40.7906%" y="735.50"></text></g><g><title>rwsem_down_write_slowpath (120 samples, 0.02%)</title><rect x="40.5470%" y="709" width="0.0186%" height="15" fill="rgb(215,159,26)" fg:x="260935" fg:w="120"/><text x="40.7970%" y="719.50"></text></g><g><title>btrfs_tree_lock (169 samples, 0.03%)</title><rect x="40.5395%" y="757" width="0.0263%" height="15" fill="rgb(212,194,50)" fg:x="260887" fg:w="169"/><text x="40.7895%" y="767.50"></text></g><g><title>find_extent_buffer_nolock (121 samples, 0.02%)</title><rect x="40.5904%" y="725" width="0.0188%" height="15" fill="rgb(246,132,1)" fg:x="261214" fg:w="121"/><text x="40.8404%" y="735.50"></text></g><g><title>radix_tree_lookup (90 samples, 0.01%)</title><rect x="40.5952%" y="709" width="0.0140%" height="15" fill="rgb(217,71,7)" fg:x="261245" fg:w="90"/><text x="40.8452%" y="719.50"></text></g><g><title>__radix_tree_lookup (90 samples, 0.01%)</title><rect x="40.5952%" y="693" width="0.0140%" height="15" fill="rgb(252,59,32)" fg:x="261245" fg:w="90"/><text x="40.8452%" y="703.50"></text></g><g><title>find_extent_buffer (198 samples, 0.03%)</title><rect x="40.5873%" y="741" width="0.0308%" height="15" fill="rgb(253,204,25)" fg:x="261194" fg:w="198"/><text x="40.8373%" y="751.50"></text></g><g><title>read_block_for_search (304 samples, 0.05%)</title><rect x="40.5711%" y="757" width="0.0472%" height="15" fill="rgb(232,21,16)" fg:x="261090" fg:w="304"/><text x="40.8211%" y="767.50"></text></g><g><title>find_extent_buffer (78 samples, 0.01%)</title><rect x="40.6269%" y="677" width="0.0121%" height="15" fill="rgb(248,90,29)" fg:x="261449" fg:w="78"/><text x="40.8769%" y="687.50"></text></g><g><title>alloc_extent_buffer (88 samples, 0.01%)</title><rect x="40.6259%" y="693" width="0.0137%" height="15" fill="rgb(249,223,7)" fg:x="261443" fg:w="88"/><text x="40.8759%" y="703.50"></text></g><g><title>btrfs_find_create_tree_block (89 samples, 0.01%)</title><rect x="40.6259%" y="709" width="0.0138%" height="15" fill="rgb(231,119,42)" fg:x="261443" fg:w="89"/><text x="40.8759%" y="719.50"></text></g><g><title>btrfs_readahead_tree_block (113 samples, 0.02%)</title><rect x="40.6235%" y="725" width="0.0176%" height="15" fill="rgb(215,41,35)" fg:x="261427" fg:w="113"/><text x="40.8735%" y="735.50"></text></g><g><title>btrfs_readahead_node_child (142 samples, 0.02%)</title><rect x="40.6197%" y="741" width="0.0221%" height="15" fill="rgb(220,44,45)" fg:x="261403" fg:w="142"/><text x="40.8697%" y="751.50"></text></g><g><title>reada_for_balance (154 samples, 0.02%)</title><rect x="40.6183%" y="757" width="0.0239%" height="15" fill="rgb(253,197,36)" fg:x="261394" fg:w="154"/><text x="40.8683%" y="767.50"></text></g><g><title>ttwu_do_activate (75 samples, 0.01%)</title><rect x="40.6754%" y="661" width="0.0117%" height="15" fill="rgb(245,225,54)" fg:x="261761" fg:w="75"/><text x="40.9254%" y="671.50"></text></g><g><title>btrfs_tree_unlock (269 samples, 0.04%)</title><rect x="40.6480%" y="741" width="0.0418%" height="15" fill="rgb(239,94,37)" fg:x="261585" fg:w="269"/><text x="40.8980%" y="751.50"></text></g><g><title>up_write (268 samples, 0.04%)</title><rect x="40.6482%" y="725" width="0.0416%" height="15" fill="rgb(242,217,10)" fg:x="261586" fg:w="268"/><text x="40.8982%" y="735.50"></text></g><g><title>rwsem_wake.isra.0 (268 samples, 0.04%)</title><rect x="40.6482%" y="709" width="0.0416%" height="15" fill="rgb(250,193,7)" fg:x="261586" fg:w="268"/><text x="40.8982%" y="719.50"></text></g><g><title>wake_up_q (228 samples, 0.04%)</title><rect x="40.6544%" y="693" width="0.0354%" height="15" fill="rgb(230,104,19)" fg:x="261626" fg:w="228"/><text x="40.9044%" y="703.50"></text></g><g><title>try_to_wake_up (222 samples, 0.03%)</title><rect x="40.6553%" y="677" width="0.0345%" height="15" fill="rgb(230,181,4)" fg:x="261632" fg:w="222"/><text x="40.9053%" y="687.50"></text></g><g><title>unlock_up (319 samples, 0.05%)</title><rect x="40.6423%" y="757" width="0.0496%" height="15" fill="rgb(216,219,49)" fg:x="261548" fg:w="319"/><text x="40.8923%" y="767.50"></text></g><g><title>btrfs_search_slot (2,130 samples, 0.33%)</title><rect x="40.3616%" y="773" width="0.3310%" height="15" fill="rgb(254,144,0)" fg:x="259742" fg:w="2130"/><text x="40.6116%" y="783.50"></text></g><g><title>lock_extent_bits (115 samples, 0.02%)</title><rect x="40.6988%" y="773" width="0.0179%" height="15" fill="rgb(205,209,38)" fg:x="261912" fg:w="115"/><text x="40.9488%" y="783.50"></text></g><g><title>set_extent_bit (93 samples, 0.01%)</title><rect x="40.7022%" y="757" width="0.0145%" height="15" fill="rgb(240,21,42)" fg:x="261934" fg:w="93"/><text x="40.9522%" y="767.50"></text></g><g><title>btrfs_truncate_inode_items (4,081 samples, 0.63%)</title><rect x="40.0895%" y="789" width="0.6342%" height="15" fill="rgb(241,132,3)" fg:x="257991" fg:w="4081"/><text x="40.3395%" y="799.50"></text></g><g><title>__clear_extent_bit (69 samples, 0.01%)</title><rect x="40.7305%" y="757" width="0.0107%" height="15" fill="rgb(225,14,2)" fg:x="262116" fg:w="69"/><text x="40.9805%" y="767.50"></text></g><g><title>clear_extent_bit (71 samples, 0.01%)</title><rect x="40.7305%" y="773" width="0.0110%" height="15" fill="rgb(210,141,35)" fg:x="262116" fg:w="71"/><text x="40.9805%" y="783.50"></text></g><g><title>__pagevec_release (167 samples, 0.03%)</title><rect x="40.7619%" y="741" width="0.0260%" height="15" fill="rgb(251,14,44)" fg:x="262318" fg:w="167"/><text x="41.0119%" y="751.50"></text></g><g><title>release_pages (133 samples, 0.02%)</title><rect x="40.7672%" y="725" width="0.0207%" height="15" fill="rgb(247,48,18)" fg:x="262352" fg:w="133"/><text x="41.0172%" y="735.50"></text></g><g><title>delete_from_page_cache_batch (77 samples, 0.01%)</title><rect x="40.7882%" y="741" width="0.0120%" height="15" fill="rgb(225,0,40)" fg:x="262487" fg:w="77"/><text x="41.0382%" y="751.50"></text></g><g><title>truncate_inode_pages_range (380 samples, 0.06%)</title><rect x="40.7594%" y="757" width="0.0590%" height="15" fill="rgb(221,31,33)" fg:x="262302" fg:w="380"/><text x="41.0094%" y="767.50"></text></g><g><title>truncate_inode_pages_final (415 samples, 0.06%)</title><rect x="40.7543%" y="773" width="0.0645%" height="15" fill="rgb(237,42,40)" fg:x="262269" fg:w="415"/><text x="41.0043%" y="783.50"></text></g><g><title>evict_inode_truncate_pages (595 samples, 0.09%)</title><rect x="40.7268%" y="789" width="0.0925%" height="15" fill="rgb(233,51,29)" fg:x="262092" fg:w="595"/><text x="40.9768%" y="799.50"></text></g><g><title>__reserve_bytes (155 samples, 0.02%)</title><rect x="40.8286%" y="741" width="0.0241%" height="15" fill="rgb(226,58,20)" fg:x="262747" fg:w="155"/><text x="41.0786%" y="751.50"></text></g><g><title>btrfs_block_rsv_refill (187 samples, 0.03%)</title><rect x="40.8272%" y="773" width="0.0291%" height="15" fill="rgb(208,98,7)" fg:x="262738" fg:w="187"/><text x="41.0772%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (182 samples, 0.03%)</title><rect x="40.8280%" y="757" width="0.0283%" height="15" fill="rgb(228,143,44)" fg:x="262743" fg:w="182"/><text x="41.0780%" y="767.50"></text></g><g><title>btrfs_join_transaction (128 samples, 0.02%)</title><rect x="40.8562%" y="773" width="0.0199%" height="15" fill="rgb(246,55,38)" fg:x="262925" fg:w="128"/><text x="41.1062%" y="783.50"></text></g><g><title>start_transaction (125 samples, 0.02%)</title><rect x="40.8567%" y="757" width="0.0194%" height="15" fill="rgb(247,87,16)" fg:x="262928" fg:w="125"/><text x="41.1067%" y="767.50"></text></g><g><title>evict_refill_and_join (376 samples, 0.06%)</title><rect x="40.8193%" y="789" width="0.0584%" height="15" fill="rgb(234,129,42)" fg:x="262687" fg:w="376"/><text x="41.0693%" y="799.50"></text></g><g><title>btrfs_evict_inode (12,046 samples, 1.87%)</title><rect x="39.0138%" y="805" width="1.8718%" height="15" fill="rgb(220,82,16)" fg:x="251068" fg:w="12046"/><text x="39.2638%" y="815.50">b..</text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (110 samples, 0.02%)</title><rect x="40.9126%" y="693" width="0.0171%" height="15" fill="rgb(211,88,4)" fg:x="263288" fg:w="110"/><text x="41.1626%" y="703.50"></text></g><g><title>cshook_security_inode_free_security (83 samples, 0.01%)</title><rect x="40.9168%" y="677" width="0.0129%" height="15" fill="rgb(248,151,21)" fg:x="263315" fg:w="83"/><text x="41.1668%" y="687.50"></text></g><g><title>pinnedhook_security_inode_free_security (147 samples, 0.02%)</title><rect x="40.9083%" y="757" width="0.0228%" height="15" fill="rgb(238,163,6)" fg:x="263260" fg:w="147"/><text x="41.1583%" y="767.50"></text></g><g><title>cshook_security_inode_free_security (141 samples, 0.02%)</title><rect x="40.9092%" y="741" width="0.0219%" height="15" fill="rgb(209,183,11)" fg:x="263266" fg:w="141"/><text x="41.1592%" y="751.50"></text></g><g><title>cshook_security_file_free_security (135 samples, 0.02%)</title><rect x="40.9102%" y="725" width="0.0210%" height="15" fill="rgb(219,37,20)" fg:x="263272" fg:w="135"/><text x="41.1602%" y="735.50"></text></g><g><title>cshook_security_file_free_security (119 samples, 0.02%)</title><rect x="40.9126%" y="709" width="0.0185%" height="15" fill="rgb(210,158,4)" fg:x="263288" fg:w="119"/><text x="41.1626%" y="719.50"></text></g><g><title>__destroy_inode (274 samples, 0.04%)</title><rect x="40.8887%" y="789" width="0.0426%" height="15" fill="rgb(221,167,53)" fg:x="263134" fg:w="274"/><text x="41.1387%" y="799.50"></text></g><g><title>security_inode_free (203 samples, 0.03%)</title><rect x="40.8997%" y="773" width="0.0315%" height="15" fill="rgb(237,151,45)" fg:x="263205" fg:w="203"/><text x="41.1497%" y="783.50"></text></g><g><title>btrfs_drop_extent_cache (111 samples, 0.02%)</title><rect x="40.9361%" y="773" width="0.0172%" height="15" fill="rgb(231,39,3)" fg:x="263439" fg:w="111"/><text x="41.1861%" y="783.50"></text></g><g><title>__clear_extent_bit (72 samples, 0.01%)</title><rect x="40.9658%" y="741" width="0.0112%" height="15" fill="rgb(212,167,28)" fg:x="263630" fg:w="72"/><text x="41.2158%" y="751.50"></text></g><g><title>clear_record_extent_bits (85 samples, 0.01%)</title><rect x="40.9653%" y="757" width="0.0132%" height="15" fill="rgb(232,178,8)" fg:x="263627" fg:w="85"/><text x="41.2153%" y="767.50"></text></g><g><title>btrfs_qgroup_check_reserved_leak (89 samples, 0.01%)</title><rect x="40.9650%" y="773" width="0.0138%" height="15" fill="rgb(225,151,20)" fg:x="263625" fg:w="89"/><text x="41.2150%" y="783.50"></text></g><g><title>btrfs_destroy_inode (314 samples, 0.05%)</title><rect x="40.9325%" y="789" width="0.0488%" height="15" fill="rgb(238,3,37)" fg:x="263416" fg:w="314"/><text x="41.1825%" y="799.50"></text></g><g><title>rb_erase (91 samples, 0.01%)</title><rect x="40.9885%" y="789" width="0.0141%" height="15" fill="rgb(251,147,42)" fg:x="263776" fg:w="91"/><text x="41.2385%" y="799.50"></text></g><g><title>destroy_inode (738 samples, 0.11%)</title><rect x="40.8882%" y="805" width="0.1147%" height="15" fill="rgb(208,173,10)" fg:x="263131" fg:w="738"/><text x="41.1382%" y="815.50"></text></g><g><title>evict (12,911 samples, 2.01%)</title><rect x="39.0035%" y="821" width="2.0063%" height="15" fill="rgb(246,225,4)" fg:x="251002" fg:w="12911"/><text x="39.2535%" y="831.50">e..</text></g><g><title>iput (12,971 samples, 2.02%)</title><rect x="38.9943%" y="837" width="2.0156%" height="15" fill="rgb(248,102,6)" fg:x="250943" fg:w="12971"/><text x="39.2443%" y="847.50">i..</text></g><g><title>btrfs_free_path (66 samples, 0.01%)</title><rect x="41.0492%" y="773" width="0.0103%" height="15" fill="rgb(232,6,21)" fg:x="264167" fg:w="66"/><text x="41.2992%" y="783.50"></text></g><g><title>btrfs_search_slot (200 samples, 0.03%)</title><rect x="41.0606%" y="757" width="0.0311%" height="15" fill="rgb(221,179,22)" fg:x="264240" fg:w="200"/><text x="41.3106%" y="767.50"></text></g><g><title>btrfs_lookup_dir_index_item (209 samples, 0.03%)</title><rect x="41.0595%" y="773" width="0.0325%" height="15" fill="rgb(252,50,20)" fg:x="264233" fg:w="209"/><text x="41.3095%" y="783.50"></text></g><g><title>btrfs_search_slot (191 samples, 0.03%)</title><rect x="41.0927%" y="757" width="0.0297%" height="15" fill="rgb(222,56,38)" fg:x="264447" fg:w="191"/><text x="41.3427%" y="767.50"></text></g><g><title>btrfs_lookup_dir_item (215 samples, 0.03%)</title><rect x="41.0920%" y="773" width="0.0334%" height="15" fill="rgb(206,193,29)" fg:x="264442" fg:w="215"/><text x="41.3420%" y="783.50"></text></g><g><title>btrfs_del_dir_entries_in_log (581 samples, 0.09%)</title><rect x="41.0458%" y="789" width="0.0903%" height="15" fill="rgb(239,192,45)" fg:x="264145" fg:w="581"/><text x="41.2958%" y="799.50"></text></g><g><title>btrfs_search_slot (175 samples, 0.03%)</title><rect x="41.1571%" y="741" width="0.0272%" height="15" fill="rgb(254,18,36)" fg:x="264861" fg:w="175"/><text x="41.4071%" y="751.50"></text></g><g><title>btrfs_del_inode_extref (281 samples, 0.04%)</title><rect x="41.1440%" y="757" width="0.0437%" height="15" fill="rgb(221,127,11)" fg:x="264777" fg:w="281"/><text x="41.3940%" y="767.50"></text></g><g><title>btrfs_free_path (88 samples, 0.01%)</title><rect x="41.1877%" y="757" width="0.0137%" height="15" fill="rgb(234,146,35)" fg:x="265058" fg:w="88"/><text x="41.4377%" y="767.50"></text></g><g><title>find_extent_buffer (73 samples, 0.01%)</title><rect x="41.2327%" y="725" width="0.0113%" height="15" fill="rgb(254,201,37)" fg:x="265348" fg:w="73"/><text x="41.4827%" y="735.50"></text></g><g><title>read_block_for_search (100 samples, 0.02%)</title><rect x="41.2287%" y="741" width="0.0155%" height="15" fill="rgb(211,202,23)" fg:x="265322" fg:w="100"/><text x="41.4787%" y="751.50"></text></g><g><title>btrfs_search_slot (290 samples, 0.05%)</title><rect x="41.2018%" y="757" width="0.0451%" height="15" fill="rgb(237,91,2)" fg:x="265149" fg:w="290"/><text x="41.4518%" y="767.50"></text></g><g><title>btrfs_del_inode_ref (708 samples, 0.11%)</title><rect x="41.1381%" y="773" width="0.1100%" height="15" fill="rgb(226,228,36)" fg:x="264739" fg:w="708"/><text x="41.3881%" y="783.50"></text></g><g><title>btrfs_del_inode_ref_in_log (755 samples, 0.12%)</title><rect x="41.1363%" y="789" width="0.1173%" height="15" fill="rgb(213,63,50)" fg:x="264727" fg:w="755"/><text x="41.3863%" y="799.50"></text></g><g><title>btrfs_delayed_delete_inode_ref (130 samples, 0.02%)</title><rect x="41.2537%" y="789" width="0.0202%" height="15" fill="rgb(235,194,19)" fg:x="265483" fg:w="130"/><text x="41.5037%" y="799.50"></text></g><g><title>btrfs_delete_delayed_dir_index (188 samples, 0.03%)</title><rect x="41.2750%" y="789" width="0.0292%" height="15" fill="rgb(207,204,18)" fg:x="265620" fg:w="188"/><text x="41.5250%" y="799.50"></text></g><g><title>btrfs_get_token_32 (371 samples, 0.06%)</title><rect x="41.3249%" y="757" width="0.0577%" height="15" fill="rgb(248,8,7)" fg:x="265941" fg:w="371"/><text x="41.5749%" y="767.50"></text></g><g><title>btrfs_set_token_32 (334 samples, 0.05%)</title><rect x="41.3844%" y="757" width="0.0519%" height="15" fill="rgb(223,145,47)" fg:x="266324" fg:w="334"/><text x="41.6344%" y="767.50"></text></g><g><title>check_setget_bounds.isra.0 (121 samples, 0.02%)</title><rect x="41.4363%" y="757" width="0.0188%" height="15" fill="rgb(228,84,11)" fg:x="266658" fg:w="121"/><text x="41.6863%" y="767.50"></text></g><g><title>memmove_extent_buffer (256 samples, 0.04%)</title><rect x="41.4624%" y="757" width="0.0398%" height="15" fill="rgb(218,76,45)" fg:x="266826" fg:w="256"/><text x="41.7124%" y="767.50"></text></g><g><title>memmove (202 samples, 0.03%)</title><rect x="41.4708%" y="741" width="0.0314%" height="15" fill="rgb(223,80,15)" fg:x="266880" fg:w="202"/><text x="41.7208%" y="751.50"></text></g><g><title>btrfs_del_items (1,307 samples, 0.20%)</title><rect x="41.3056%" y="773" width="0.2031%" height="15" fill="rgb(219,218,33)" fg:x="265817" fg:w="1307"/><text x="41.5556%" y="783.50"></text></g><g><title>btrfs_delete_one_dir_name (1,435 samples, 0.22%)</title><rect x="41.3042%" y="789" width="0.2230%" height="15" fill="rgb(208,51,11)" fg:x="265808" fg:w="1435"/><text x="41.5542%" y="799.50"></text></g><g><title>btrfs_bin_search (170 samples, 0.03%)</title><rect x="41.5726%" y="757" width="0.0264%" height="15" fill="rgb(229,165,39)" fg:x="267535" fg:w="170"/><text x="41.8226%" y="767.50"></text></g><g><title>generic_bin_search.constprop.0 (167 samples, 0.03%)</title><rect x="41.5731%" y="741" width="0.0260%" height="15" fill="rgb(241,100,24)" fg:x="267538" fg:w="167"/><text x="41.8231%" y="751.50"></text></g><g><title>osq_lock (125 samples, 0.02%)</title><rect x="41.6355%" y="677" width="0.0194%" height="15" fill="rgb(228,14,23)" fg:x="267940" fg:w="125"/><text x="41.8855%" y="687.50"></text></g><g><title>rwsem_optimistic_spin (333 samples, 0.05%)</title><rect x="41.6065%" y="693" width="0.0517%" height="15" fill="rgb(247,116,52)" fg:x="267753" fg:w="333"/><text x="41.8565%" y="703.50"></text></g><g><title>__perf_event_task_sched_in (178 samples, 0.03%)</title><rect x="41.6650%" y="645" width="0.0277%" height="15" fill="rgb(216,149,33)" fg:x="268130" fg:w="178"/><text x="41.9150%" y="655.50"></text></g><g><title>x86_pmu_enable (176 samples, 0.03%)</title><rect x="41.6654%" y="629" width="0.0273%" height="15" fill="rgb(238,142,29)" fg:x="268132" fg:w="176"/><text x="41.9154%" y="639.50"></text></g><g><title>intel_pmu_enable_all (174 samples, 0.03%)</title><rect x="41.6657%" y="613" width="0.0270%" height="15" fill="rgb(224,83,40)" fg:x="268134" fg:w="174"/><text x="41.9157%" y="623.50"></text></g><g><title>native_write_msr (172 samples, 0.03%)</title><rect x="41.6660%" y="597" width="0.0267%" height="15" fill="rgb(234,165,11)" fg:x="268136" fg:w="172"/><text x="41.9160%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (190 samples, 0.03%)</title><rect x="41.6640%" y="661" width="0.0295%" height="15" fill="rgb(215,96,23)" fg:x="268123" fg:w="190"/><text x="41.9140%" y="671.50"></text></g><g><title>rwsem_down_write_slowpath (613 samples, 0.10%)</title><rect x="41.6040%" y="709" width="0.0953%" height="15" fill="rgb(233,179,26)" fg:x="267737" fg:w="613"/><text x="41.8540%" y="719.50"></text></g><g><title>schedule (261 samples, 0.04%)</title><rect x="41.6587%" y="693" width="0.0406%" height="15" fill="rgb(225,129,33)" fg:x="268089" fg:w="261"/><text x="41.9087%" y="703.50"></text></g><g><title>__schedule (261 samples, 0.04%)</title><rect x="41.6587%" y="677" width="0.0406%" height="15" fill="rgb(237,49,13)" fg:x="268089" fg:w="261"/><text x="41.9087%" y="687.50"></text></g><g><title>down_write (623 samples, 0.10%)</title><rect x="41.6027%" y="725" width="0.0968%" height="15" fill="rgb(211,3,31)" fg:x="267729" fg:w="623"/><text x="41.8527%" y="735.50"></text></g><g><title>__btrfs_tree_lock (627 samples, 0.10%)</title><rect x="41.6023%" y="741" width="0.0974%" height="15" fill="rgb(216,152,19)" fg:x="267726" fg:w="627"/><text x="41.8523%" y="751.50"></text></g><g><title>btrfs_lock_root_node (637 samples, 0.10%)</title><rect x="41.6013%" y="757" width="0.0990%" height="15" fill="rgb(251,121,35)" fg:x="267720" fg:w="637"/><text x="41.8513%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.02%)</title><rect x="41.7120%" y="645" width="0.0165%" height="15" fill="rgb(210,217,47)" fg:x="268432" fg:w="106"/><text x="41.9620%" y="655.50"></text></g><g><title>x86_pmu_enable (102 samples, 0.02%)</title><rect x="41.7126%" y="629" width="0.0158%" height="15" fill="rgb(244,116,22)" fg:x="268436" fg:w="102"/><text x="41.9626%" y="639.50"></text></g><g><title>intel_pmu_enable_all (101 samples, 0.02%)</title><rect x="41.7128%" y="613" width="0.0157%" height="15" fill="rgb(228,17,21)" fg:x="268437" fg:w="101"/><text x="41.9628%" y="623.50"></text></g><g><title>native_write_msr (99 samples, 0.02%)</title><rect x="41.7131%" y="597" width="0.0154%" height="15" fill="rgb(240,149,34)" fg:x="268439" fg:w="99"/><text x="41.9631%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (114 samples, 0.02%)</title><rect x="41.7115%" y="661" width="0.0177%" height="15" fill="rgb(208,125,47)" fg:x="268429" fg:w="114"/><text x="41.9615%" y="671.50"></text></g><g><title>schedule (207 samples, 0.03%)</title><rect x="41.7053%" y="693" width="0.0322%" height="15" fill="rgb(249,186,39)" fg:x="268389" fg:w="207"/><text x="41.9553%" y="703.50"></text></g><g><title>__schedule (207 samples, 0.03%)</title><rect x="41.7053%" y="677" width="0.0322%" height="15" fill="rgb(240,220,33)" fg:x="268389" fg:w="207"/><text x="41.9553%" y="687.50"></text></g><g><title>rwsem_down_read_slowpath (225 samples, 0.03%)</title><rect x="41.7028%" y="709" width="0.0350%" height="15" fill="rgb(243,110,23)" fg:x="268373" fg:w="225"/><text x="41.9528%" y="719.50"></text></g><g><title>down_read (239 samples, 0.04%)</title><rect x="41.7008%" y="725" width="0.0371%" height="15" fill="rgb(219,163,46)" fg:x="268360" fg:w="239"/><text x="41.9508%" y="735.50"></text></g><g><title>__btrfs_tree_read_lock (243 samples, 0.04%)</title><rect x="41.7003%" y="741" width="0.0378%" height="15" fill="rgb(216,126,30)" fg:x="268357" fg:w="243"/><text x="41.9503%" y="751.50"></text></g><g><title>btrfs_read_lock_root_node (261 samples, 0.04%)</title><rect x="41.7003%" y="757" width="0.0406%" height="15" fill="rgb(208,139,11)" fg:x="268357" fg:w="261"/><text x="41.9503%" y="767.50"></text></g><g><title>__btrfs_tree_lock (126 samples, 0.02%)</title><rect x="41.7485%" y="741" width="0.0196%" height="15" fill="rgb(213,118,36)" fg:x="268667" fg:w="126"/><text x="41.9985%" y="751.50"></text></g><g><title>down_write (123 samples, 0.02%)</title><rect x="41.7490%" y="725" width="0.0191%" height="15" fill="rgb(226,43,17)" fg:x="268670" fg:w="123"/><text x="41.9990%" y="735.50"></text></g><g><title>rwsem_down_write_slowpath (76 samples, 0.01%)</title><rect x="41.7563%" y="709" width="0.0118%" height="15" fill="rgb(254,217,4)" fg:x="268717" fg:w="76"/><text x="42.0063%" y="719.50"></text></g><g><title>btrfs_tree_lock (127 samples, 0.02%)</title><rect x="41.7485%" y="757" width="0.0197%" height="15" fill="rgb(210,134,47)" fg:x="268667" fg:w="127"/><text x="41.9985%" y="767.50"></text></g><g><title>find_extent_buffer_nolock (174 samples, 0.03%)</title><rect x="41.7951%" y="725" width="0.0270%" height="15" fill="rgb(237,24,49)" fg:x="268967" fg:w="174"/><text x="42.0451%" y="735.50"></text></g><g><title>radix_tree_lookup (127 samples, 0.02%)</title><rect x="41.8024%" y="709" width="0.0197%" height="15" fill="rgb(251,39,46)" fg:x="269014" fg:w="127"/><text x="42.0524%" y="719.50"></text></g><g><title>__radix_tree_lookup (127 samples, 0.02%)</title><rect x="41.8024%" y="693" width="0.0197%" height="15" fill="rgb(251,220,3)" fg:x="269014" fg:w="127"/><text x="42.0524%" y="703.50"></text></g><g><title>find_extent_buffer (237 samples, 0.04%)</title><rect x="41.7926%" y="741" width="0.0368%" height="15" fill="rgb(228,105,12)" fg:x="268951" fg:w="237"/><text x="42.0426%" y="751.50"></text></g><g><title>read_block_for_search (372 samples, 0.06%)</title><rect x="41.7730%" y="757" width="0.0578%" height="15" fill="rgb(215,196,1)" fg:x="268825" fg:w="372"/><text x="42.0230%" y="767.50"></text></g><g><title>find_extent_buffer (95 samples, 0.01%)</title><rect x="41.8423%" y="677" width="0.0148%" height="15" fill="rgb(214,33,39)" fg:x="269271" fg:w="95"/><text x="42.0923%" y="687.50"></text></g><g><title>alloc_extent_buffer (102 samples, 0.02%)</title><rect x="41.8414%" y="693" width="0.0158%" height="15" fill="rgb(220,19,52)" fg:x="269265" fg:w="102"/><text x="42.0914%" y="703.50"></text></g><g><title>btrfs_find_create_tree_block (103 samples, 0.02%)</title><rect x="41.8414%" y="709" width="0.0160%" height="15" fill="rgb(221,78,38)" fg:x="269265" fg:w="103"/><text x="42.0914%" y="719.50"></text></g><g><title>btrfs_readahead_tree_block (139 samples, 0.02%)</title><rect x="41.8372%" y="725" width="0.0216%" height="15" fill="rgb(253,30,16)" fg:x="269238" fg:w="139"/><text x="42.0872%" y="735.50"></text></g><g><title>btrfs_readahead_node_child (172 samples, 0.03%)</title><rect x="41.8324%" y="741" width="0.0267%" height="15" fill="rgb(242,65,0)" fg:x="269207" fg:w="172"/><text x="42.0824%" y="751.50"></text></g><g><title>reada_for_balance (183 samples, 0.03%)</title><rect x="41.8309%" y="757" width="0.0284%" height="15" fill="rgb(235,201,12)" fg:x="269197" fg:w="183"/><text x="42.0809%" y="767.50"></text></g><g><title>select_task_rq_fair (65 samples, 0.01%)</title><rect x="41.8828%" y="661" width="0.0101%" height="15" fill="rgb(233,161,9)" fg:x="269531" fg:w="65"/><text x="42.1328%" y="671.50"></text></g><g><title>enqueue_task (75 samples, 0.01%)</title><rect x="41.8936%" y="645" width="0.0117%" height="15" fill="rgb(241,207,41)" fg:x="269601" fg:w="75"/><text x="42.1436%" y="655.50"></text></g><g><title>ttwu_do_activate (90 samples, 0.01%)</title><rect x="41.8933%" y="661" width="0.0140%" height="15" fill="rgb(212,69,46)" fg:x="269599" fg:w="90"/><text x="42.1433%" y="671.50"></text></g><g><title>rwsem_wake.isra.0 (278 samples, 0.04%)</title><rect x="41.8675%" y="709" width="0.0432%" height="15" fill="rgb(239,69,45)" fg:x="269433" fg:w="278"/><text x="42.1175%" y="719.50"></text></g><g><title>wake_up_q (246 samples, 0.04%)</title><rect x="41.8725%" y="693" width="0.0382%" height="15" fill="rgb(242,117,48)" fg:x="269465" fg:w="246"/><text x="42.1225%" y="703.50"></text></g><g><title>try_to_wake_up (236 samples, 0.04%)</title><rect x="41.8740%" y="677" width="0.0367%" height="15" fill="rgb(228,41,36)" fg:x="269475" fg:w="236"/><text x="42.1240%" y="687.50"></text></g><g><title>btrfs_tree_unlock (282 samples, 0.04%)</title><rect x="41.8671%" y="741" width="0.0438%" height="15" fill="rgb(212,3,32)" fg:x="269430" fg:w="282"/><text x="42.1171%" y="751.50"></text></g><g><title>up_write (279 samples, 0.04%)</title><rect x="41.8675%" y="725" width="0.0434%" height="15" fill="rgb(233,41,49)" fg:x="269433" fg:w="279"/><text x="42.1175%" y="735.50"></text></g><g><title>unlock_up (344 samples, 0.05%)</title><rect x="41.8593%" y="757" width="0.0535%" height="15" fill="rgb(252,170,49)" fg:x="269380" fg:w="344"/><text x="42.1093%" y="767.50"></text></g><g><title>btrfs_search_slot (2,321 samples, 0.36%)</title><rect x="41.5522%" y="773" width="0.3607%" height="15" fill="rgb(229,53,26)" fg:x="267404" fg:w="2321"/><text x="41.8022%" y="783.50"></text></g><g><title>btrfs_lookup_dir_item (2,455 samples, 0.38%)</title><rect x="41.5376%" y="789" width="0.3815%" height="15" fill="rgb(217,157,12)" fg:x="267310" fg:w="2455"/><text x="41.7876%" y="799.50"></text></g><g><title>btrfs_release_path (91 samples, 0.01%)</title><rect x="41.9194%" y="789" width="0.0141%" height="15" fill="rgb(227,17,9)" fg:x="269767" fg:w="91"/><text x="42.1694%" y="799.50"></text></g><g><title>btrfs_delayed_update_inode (71 samples, 0.01%)</title><rect x="41.9362%" y="773" width="0.0110%" height="15" fill="rgb(218,84,12)" fg:x="269875" fg:w="71"/><text x="42.1862%" y="783.50"></text></g><g><title>btrfs_update_inode (110 samples, 0.02%)</title><rect x="41.9343%" y="789" width="0.0171%" height="15" fill="rgb(212,79,24)" fg:x="269863" fg:w="110"/><text x="42.1843%" y="799.50"></text></g><g><title>__btrfs_unlink_inode (5,951 samples, 0.92%)</title><rect x="41.0334%" y="805" width="0.9247%" height="15" fill="rgb(217,222,37)" fg:x="264065" fg:w="5951"/><text x="41.2834%" y="815.50"></text></g><g><title>__btrfs_end_transaction (105 samples, 0.02%)</title><rect x="41.9685%" y="789" width="0.0163%" height="15" fill="rgb(246,208,8)" fg:x="270083" fg:w="105"/><text x="42.2185%" y="799.50"></text></g><g><title>btrfs_end_transaction (114 samples, 0.02%)</title><rect x="41.9685%" y="805" width="0.0177%" height="15" fill="rgb(244,133,10)" fg:x="270083" fg:w="114"/><text x="42.2185%" y="815.50"></text></g><g><title>btrfs_free_path (88 samples, 0.01%)</title><rect x="41.9929%" y="773" width="0.0137%" height="15" fill="rgb(209,219,41)" fg:x="270240" fg:w="88"/><text x="42.2429%" y="783.50"></text></g><g><title>btrfs_bin_search (110 samples, 0.02%)</title><rect x="42.0223%" y="741" width="0.0171%" height="15" fill="rgb(253,175,45)" fg:x="270429" fg:w="110"/><text x="42.2723%" y="751.50"></text></g><g><title>generic_bin_search.constprop.0 (103 samples, 0.02%)</title><rect x="42.0234%" y="725" width="0.0160%" height="15" fill="rgb(235,100,37)" fg:x="270436" fg:w="103"/><text x="42.2734%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (88 samples, 0.01%)</title><rect x="42.0481%" y="629" width="0.0137%" height="15" fill="rgb(225,87,19)" fg:x="270595" fg:w="88"/><text x="42.2981%" y="639.50"></text></g><g><title>x86_pmu_enable (86 samples, 0.01%)</title><rect x="42.0484%" y="613" width="0.0134%" height="15" fill="rgb(217,152,17)" fg:x="270597" fg:w="86"/><text x="42.2984%" y="623.50"></text></g><g><title>intel_pmu_enable_all (85 samples, 0.01%)</title><rect x="42.0486%" y="597" width="0.0132%" height="15" fill="rgb(235,72,13)" fg:x="270598" fg:w="85"/><text x="42.2986%" y="607.50"></text></g><g><title>native_write_msr (84 samples, 0.01%)</title><rect x="42.0487%" y="581" width="0.0131%" height="15" fill="rgb(233,140,18)" fg:x="270599" fg:w="84"/><text x="42.2987%" y="591.50"></text></g><g><title>finish_task_switch.isra.0 (93 samples, 0.01%)</title><rect x="42.0479%" y="645" width="0.0145%" height="15" fill="rgb(207,212,28)" fg:x="270594" fg:w="93"/><text x="42.2979%" y="655.50"></text></g><g><title>schedule (139 samples, 0.02%)</title><rect x="42.0453%" y="677" width="0.0216%" height="15" fill="rgb(220,130,25)" fg:x="270577" fg:w="139"/><text x="42.2953%" y="687.50"></text></g><g><title>__schedule (139 samples, 0.02%)</title><rect x="42.0453%" y="661" width="0.0216%" height="15" fill="rgb(205,55,34)" fg:x="270577" fg:w="139"/><text x="42.2953%" y="671.50"></text></g><g><title>down_read (154 samples, 0.02%)</title><rect x="42.0434%" y="709" width="0.0239%" height="15" fill="rgb(237,54,35)" fg:x="270565" fg:w="154"/><text x="42.2934%" y="719.50"></text></g><g><title>rwsem_down_read_slowpath (147 samples, 0.02%)</title><rect x="42.0445%" y="693" width="0.0228%" height="15" fill="rgb(208,67,23)" fg:x="270572" fg:w="147"/><text x="42.2945%" y="703.50"></text></g><g><title>__btrfs_tree_read_lock (155 samples, 0.02%)</title><rect x="42.0434%" y="725" width="0.0241%" height="15" fill="rgb(206,207,50)" fg:x="270565" fg:w="155"/><text x="42.2934%" y="735.50"></text></g><g><title>btrfs_read_lock_root_node (169 samples, 0.03%)</title><rect x="42.0434%" y="741" width="0.0263%" height="15" fill="rgb(213,211,42)" fg:x="270565" fg:w="169"/><text x="42.2934%" y="751.50"></text></g><g><title>rwsem_optimistic_spin (105 samples, 0.02%)</title><rect x="42.0736%" y="677" width="0.0163%" height="15" fill="rgb(252,197,50)" fg:x="270759" fg:w="105"/><text x="42.3236%" y="687.50"></text></g><g><title>rwsem_spin_on_owner (72 samples, 0.01%)</title><rect x="42.0787%" y="661" width="0.0112%" height="15" fill="rgb(251,211,41)" fg:x="270792" fg:w="72"/><text x="42.3287%" y="671.50"></text></g><g><title>__btrfs_tree_lock (162 samples, 0.03%)</title><rect x="42.0698%" y="725" width="0.0252%" height="15" fill="rgb(229,211,5)" fg:x="270735" fg:w="162"/><text x="42.3198%" y="735.50"></text></g><g><title>down_write (155 samples, 0.02%)</title><rect x="42.0709%" y="709" width="0.0241%" height="15" fill="rgb(239,36,31)" fg:x="270742" fg:w="155"/><text x="42.3209%" y="719.50"></text></g><g><title>rwsem_down_write_slowpath (142 samples, 0.02%)</title><rect x="42.0729%" y="693" width="0.0221%" height="15" fill="rgb(248,67,31)" fg:x="270755" fg:w="142"/><text x="42.3229%" y="703.50"></text></g><g><title>btrfs_tree_lock (163 samples, 0.03%)</title><rect x="42.0698%" y="741" width="0.0253%" height="15" fill="rgb(249,55,44)" fg:x="270735" fg:w="163"/><text x="42.3198%" y="751.50"></text></g><g><title>btrfs_tree_read_lock (72 samples, 0.01%)</title><rect x="42.0952%" y="741" width="0.0112%" height="15" fill="rgb(216,82,12)" fg:x="270898" fg:w="72"/><text x="42.3452%" y="751.50"></text></g><g><title>__btrfs_tree_read_lock (72 samples, 0.01%)</title><rect x="42.0952%" y="725" width="0.0112%" height="15" fill="rgb(242,174,1)" fg:x="270898" fg:w="72"/><text x="42.3452%" y="735.50"></text></g><g><title>down_read (70 samples, 0.01%)</title><rect x="42.0955%" y="709" width="0.0109%" height="15" fill="rgb(208,120,29)" fg:x="270900" fg:w="70"/><text x="42.3455%" y="719.50"></text></g><g><title>find_extent_buffer_nolock (115 samples, 0.02%)</title><rect x="42.1301%" y="709" width="0.0179%" height="15" fill="rgb(221,105,43)" fg:x="271123" fg:w="115"/><text x="42.3801%" y="719.50"></text></g><g><title>radix_tree_lookup (75 samples, 0.01%)</title><rect x="42.1363%" y="693" width="0.0117%" height="15" fill="rgb(234,124,22)" fg:x="271163" fg:w="75"/><text x="42.3863%" y="703.50"></text></g><g><title>__radix_tree_lookup (75 samples, 0.01%)</title><rect x="42.1363%" y="677" width="0.0117%" height="15" fill="rgb(212,23,30)" fg:x="271163" fg:w="75"/><text x="42.3863%" y="687.50"></text></g><g><title>find_extent_buffer (181 samples, 0.03%)</title><rect x="42.1273%" y="725" width="0.0281%" height="15" fill="rgb(219,122,53)" fg:x="271105" fg:w="181"/><text x="42.3773%" y="735.50"></text></g><g><title>read_block_for_search (312 samples, 0.05%)</title><rect x="42.1074%" y="741" width="0.0485%" height="15" fill="rgb(248,84,24)" fg:x="270977" fg:w="312"/><text x="42.3574%" y="751.50"></text></g><g><title>btrfs_search_slot (1,050 samples, 0.16%)</title><rect x="42.0119%" y="757" width="0.1632%" height="15" fill="rgb(245,115,18)" fg:x="270362" fg:w="1050"/><text x="42.2619%" y="767.50"></text></g><g><title>unlock_up (121 samples, 0.02%)</title><rect x="42.1562%" y="741" width="0.0188%" height="15" fill="rgb(227,176,51)" fg:x="271291" fg:w="121"/><text x="42.4062%" y="751.50"></text></g><g><title>setup_items_for_insert (156 samples, 0.02%)</title><rect x="42.1769%" y="757" width="0.0242%" height="15" fill="rgb(229,63,42)" fg:x="271424" fg:w="156"/><text x="42.4269%" y="767.50"></text></g><g><title>btrfs_insert_empty_items (1,254 samples, 0.19%)</title><rect x="42.0066%" y="773" width="0.1949%" height="15" fill="rgb(247,202,24)" fg:x="270328" fg:w="1254"/><text x="42.2566%" y="783.50"></text></g><g><title>btrfs_orphan_add (1,389 samples, 0.22%)</title><rect x="41.9869%" y="805" width="0.2158%" height="15" fill="rgb(244,173,20)" fg:x="270201" fg:w="1389"/><text x="42.2369%" y="815.50"></text></g><g><title>btrfs_insert_orphan_item (1,379 samples, 0.21%)</title><rect x="41.9884%" y="789" width="0.2143%" height="15" fill="rgb(242,81,47)" fg:x="270211" fg:w="1379"/><text x="42.2384%" y="799.50"></text></g><g><title>__reserve_bytes (92 samples, 0.01%)</title><rect x="42.2192%" y="741" width="0.0143%" height="15" fill="rgb(231,185,54)" fg:x="271696" fg:w="92"/><text x="42.4692%" y="751.50"></text></g><g><title>btrfs_block_rsv_add (120 samples, 0.02%)</title><rect x="42.2181%" y="773" width="0.0186%" height="15" fill="rgb(243,55,32)" fg:x="271689" fg:w="120"/><text x="42.4681%" y="783.50"></text></g><g><title>btrfs_reserve_metadata_bytes (117 samples, 0.02%)</title><rect x="42.2186%" y="757" width="0.0182%" height="15" fill="rgb(208,167,19)" fg:x="271692" fg:w="117"/><text x="42.4686%" y="767.50"></text></g><g><title>start_transaction (213 samples, 0.03%)</title><rect x="42.2088%" y="789" width="0.0331%" height="15" fill="rgb(231,72,35)" fg:x="271629" fg:w="213"/><text x="42.4588%" y="799.50"></text></g><g><title>btrfs_start_transaction_fallback_global_rsv (231 samples, 0.04%)</title><rect x="42.2069%" y="805" width="0.0359%" height="15" fill="rgb(250,173,51)" fg:x="271617" fg:w="231"/><text x="42.4569%" y="815.50"></text></g><g><title>btrfs_delayed_update_inode (77 samples, 0.01%)</title><rect x="42.2442%" y="789" width="0.0120%" height="15" fill="rgb(209,5,22)" fg:x="271857" fg:w="77"/><text x="42.4942%" y="799.50"></text></g><g><title>btrfs_update_inode (105 samples, 0.02%)</title><rect x="42.2428%" y="805" width="0.0163%" height="15" fill="rgb(250,174,19)" fg:x="271848" fg:w="105"/><text x="42.4928%" y="815.50"></text></g><g><title>btrfs_unlink (7,925 samples, 1.23%)</title><rect x="41.0315%" y="821" width="1.2315%" height="15" fill="rgb(217,3,49)" fg:x="264053" fg:w="7925"/><text x="41.2815%" y="831.50"></text></g><g><title>do_unlinkat (21,526 samples, 3.34%)</title><rect x="38.9490%" y="853" width="3.3450%" height="15" fill="rgb(218,225,5)" fg:x="250651" fg:w="21526"/><text x="39.1990%" y="863.50">do_..</text></g><g><title>vfs_unlink (8,171 samples, 1.27%)</title><rect x="41.0242%" y="837" width="1.2697%" height="15" fill="rgb(236,89,11)" fg:x="264006" fg:w="8171"/><text x="41.2742%" y="847.50"></text></g><g><title>getname_flags (145 samples, 0.02%)</title><rect x="42.2958%" y="853" width="0.0225%" height="15" fill="rgb(206,33,28)" fg:x="272189" fg:w="145"/><text x="42.5458%" y="863.50"></text></g><g><title>getname_flags.part.0 (145 samples, 0.02%)</title><rect x="42.2958%" y="837" width="0.0225%" height="15" fill="rgb(241,56,42)" fg:x="272189" fg:w="145"/><text x="42.5458%" y="847.50"></text></g><g><title>strncpy_from_user (72 samples, 0.01%)</title><rect x="42.3071%" y="821" width="0.0112%" height="15" fill="rgb(222,44,11)" fg:x="272262" fg:w="72"/><text x="42.5571%" y="831.50"></text></g><g><title>__x64_sys_unlinkat (26,416 samples, 4.10%)</title><rect x="38.2199%" y="869" width="4.1048%" height="15" fill="rgb(234,111,20)" fg:x="245959" fg:w="26416"/><text x="38.4699%" y="879.50">__x6..</text></g><g><title>_ZdlPv (109 samples, 0.02%)</title><rect x="42.3357%" y="821" width="0.0169%" height="15" fill="rgb(237,77,6)" fg:x="272446" fg:w="109"/><text x="42.5857%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (66 samples, 0.01%)</title><rect x="42.3424%" y="805" width="0.0103%" height="15" fill="rgb(235,111,23)" fg:x="272489" fg:w="66"/><text x="42.5924%" y="815.50"></text></g><g><title>_ZdlPv (164 samples, 0.03%)</title><rect x="42.3331%" y="837" width="0.0255%" height="15" fill="rgb(251,135,29)" fg:x="272429" fg:w="164"/><text x="42.5831%" y="847.50"></text></g><g><title>_ZdlPv (172 samples, 0.03%)</title><rect x="42.3321%" y="853" width="0.0267%" height="15" fill="rgb(217,57,1)" fg:x="272423" fg:w="172"/><text x="42.5821%" y="863.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (67 samples, 0.01%)</title><rect x="42.3590%" y="853" width="0.0104%" height="15" fill="rgb(249,119,31)" fg:x="272596" fg:w="67"/><text x="42.6090%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_unlinkat (272 samples, 0.04%)</title><rect x="42.3273%" y="869" width="0.0423%" height="15" fill="rgb(233,164,33)" fg:x="272392" fg:w="272"/><text x="42.5773%" y="879.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (78 samples, 0.01%)</title><rect x="42.3766%" y="837" width="0.0121%" height="15" fill="rgb(250,217,43)" fg:x="272709" fg:w="78"/><text x="42.6266%" y="847.50"></text></g><g><title>cshook_security_file_free_security (116 samples, 0.02%)</title><rect x="42.3896%" y="837" width="0.0180%" height="15" fill="rgb(232,154,50)" fg:x="272793" fg:w="116"/><text x="42.6396%" y="847.50"></text></g><g><title>cshook_security_file_free_security (84 samples, 0.01%)</title><rect x="42.3946%" y="821" width="0.0131%" height="15" fill="rgb(227,190,8)" fg:x="272825" fg:w="84"/><text x="42.6446%" y="831.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (65 samples, 0.01%)</title><rect x="42.4509%" y="757" width="0.0101%" height="15" fill="rgb(209,217,32)" fg:x="273187" fg:w="65"/><text x="42.7009%" y="767.50"></text></g><g><title>path_init (68 samples, 0.01%)</title><rect x="42.4616%" y="757" width="0.0106%" height="15" fill="rgb(243,203,50)" fg:x="273256" fg:w="68"/><text x="42.7116%" y="767.50"></text></g><g><title>lookup_fast (83 samples, 0.01%)</title><rect x="42.4749%" y="741" width="0.0129%" height="15" fill="rgb(232,152,27)" fg:x="273342" fg:w="83"/><text x="42.7249%" y="751.50"></text></g><g><title>__d_lookup_rcu (78 samples, 0.01%)</title><rect x="42.4757%" y="725" width="0.0121%" height="15" fill="rgb(240,34,29)" fg:x="273347" fg:w="78"/><text x="42.7257%" y="735.50"></text></g><g><title>path_lookupat (320 samples, 0.05%)</title><rect x="42.4395%" y="773" width="0.0497%" height="15" fill="rgb(215,185,52)" fg:x="273114" fg:w="320"/><text x="42.6895%" y="783.50"></text></g><g><title>walk_component (101 samples, 0.02%)</title><rect x="42.4735%" y="757" width="0.0157%" height="15" fill="rgb(240,89,49)" fg:x="273333" fg:w="101"/><text x="42.7235%" y="767.50"></text></g><g><title>filename_lookup (336 samples, 0.05%)</title><rect x="42.4378%" y="789" width="0.0522%" height="15" fill="rgb(225,12,52)" fg:x="273103" fg:w="336"/><text x="42.6878%" y="799.50"></text></g><g><title>memset_erms (77 samples, 0.01%)</title><rect x="42.4984%" y="757" width="0.0120%" height="15" fill="rgb(239,128,45)" fg:x="273493" fg:w="77"/><text x="42.7484%" y="767.50"></text></g><g><title>getname_flags.part.0 (196 samples, 0.03%)</title><rect x="42.4913%" y="773" width="0.0305%" height="15" fill="rgb(211,78,47)" fg:x="273447" fg:w="196"/><text x="42.7413%" y="783.50"></text></g><g><title>strncpy_from_user (73 samples, 0.01%)</title><rect x="42.5104%" y="757" width="0.0113%" height="15" fill="rgb(232,31,21)" fg:x="273570" fg:w="73"/><text x="42.7604%" y="767.50"></text></g><g><title>getname_flags (198 samples, 0.03%)</title><rect x="42.4913%" y="789" width="0.0308%" height="15" fill="rgb(222,168,14)" fg:x="273447" fg:w="198"/><text x="42.7413%" y="799.50"></text></g><g><title>[[falcon_kal]] (741 samples, 0.12%)</title><rect x="42.4123%" y="821" width="0.1151%" height="15" fill="rgb(209,128,24)" fg:x="272939" fg:w="741"/><text x="42.6623%" y="831.50"></text></g><g><title>user_path_at_empty (583 samples, 0.09%)</title><rect x="42.4369%" y="805" width="0.0906%" height="15" fill="rgb(249,35,13)" fg:x="273097" fg:w="583"/><text x="42.6869%" y="815.50"></text></g><g><title>copy_from_kernel_nofault (138 samples, 0.02%)</title><rect x="42.5840%" y="725" width="0.0214%" height="15" fill="rgb(218,7,2)" fg:x="274044" fg:w="138"/><text x="42.8340%" y="735.50"></text></g><g><title>prepend (207 samples, 0.03%)</title><rect x="42.5777%" y="757" width="0.0322%" height="15" fill="rgb(238,107,27)" fg:x="274003" fg:w="207"/><text x="42.8277%" y="767.50"></text></g><g><title>prepend_copy (181 samples, 0.03%)</title><rect x="42.5817%" y="741" width="0.0281%" height="15" fill="rgb(217,88,38)" fg:x="274029" fg:w="181"/><text x="42.8317%" y="751.50"></text></g><g><title>d_path (374 samples, 0.06%)</title><rect x="42.5531%" y="789" width="0.0581%" height="15" fill="rgb(230,207,0)" fg:x="273845" fg:w="374"/><text x="42.8031%" y="799.50"></text></g><g><title>prepend_path (353 samples, 0.05%)</title><rect x="42.5564%" y="773" width="0.0549%" height="15" fill="rgb(249,64,54)" fg:x="273866" fg:w="353"/><text x="42.8064%" y="783.50"></text></g><g><title>[[falcon_kal]] (442 samples, 0.07%)</title><rect x="42.5449%" y="805" width="0.0687%" height="15" fill="rgb(231,7,11)" fg:x="273792" fg:w="442"/><text x="42.7949%" y="815.50"></text></g><g><title>get_page_from_freelist (89 samples, 0.01%)</title><rect x="42.6386%" y="677" width="0.0138%" height="15" fill="rgb(205,149,21)" fg:x="274395" fg:w="89"/><text x="42.8886%" y="687.50"></text></g><g><title>__alloc_pages (107 samples, 0.02%)</title><rect x="42.6361%" y="693" width="0.0166%" height="15" fill="rgb(215,126,34)" fg:x="274379" fg:w="107"/><text x="42.8861%" y="703.50"></text></g><g><title>alloc_pages (114 samples, 0.02%)</title><rect x="42.6358%" y="709" width="0.0177%" height="15" fill="rgb(241,132,45)" fg:x="274377" fg:w="114"/><text x="42.8858%" y="719.50"></text></g><g><title>allocate_slab (124 samples, 0.02%)</title><rect x="42.6353%" y="725" width="0.0193%" height="15" fill="rgb(252,69,32)" fg:x="274374" fg:w="124"/><text x="42.8853%" y="735.50"></text></g><g><title>___slab_alloc (193 samples, 0.03%)</title><rect x="42.6247%" y="757" width="0.0300%" height="15" fill="rgb(232,204,19)" fg:x="274306" fg:w="193"/><text x="42.8747%" y="767.50"></text></g><g><title>new_slab (126 samples, 0.02%)</title><rect x="42.6352%" y="741" width="0.0196%" height="15" fill="rgb(249,15,47)" fg:x="274373" fg:w="126"/><text x="42.8852%" y="751.50"></text></g><g><title>__kmalloc (237 samples, 0.04%)</title><rect x="42.6201%" y="773" width="0.0368%" height="15" fill="rgb(209,227,23)" fg:x="274276" fg:w="237"/><text x="42.8701%" y="783.50"></text></g><g><title>memset_erms (154 samples, 0.02%)</title><rect x="42.6572%" y="773" width="0.0239%" height="15" fill="rgb(248,92,24)" fg:x="274515" fg:w="154"/><text x="42.9072%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (923 samples, 0.14%)</title><rect x="42.5379%" y="821" width="0.1434%" height="15" fill="rgb(247,59,2)" fg:x="273747" fg:w="923"/><text x="42.7879%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (432 samples, 0.07%)</title><rect x="42.6142%" y="805" width="0.0671%" height="15" fill="rgb(221,30,5)" fg:x="274238" fg:w="432"/><text x="42.8642%" y="815.50"></text></g><g><title>[[falcon_kal]] (398 samples, 0.06%)</title><rect x="42.6195%" y="789" width="0.0618%" height="15" fill="rgb(208,108,53)" fg:x="274272" fg:w="398"/><text x="42.8695%" y="799.50"></text></g><g><title>strlen (138 samples, 0.02%)</title><rect x="42.6857%" y="821" width="0.0214%" height="15" fill="rgb(211,183,26)" fg:x="274698" fg:w="138"/><text x="42.9357%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (2,173 samples, 0.34%)</title><rect x="42.3705%" y="853" width="0.3377%" height="15" fill="rgb(232,132,4)" fg:x="272670" fg:w="2173"/><text x="42.6205%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (1,923 samples, 0.30%)</title><rect x="42.4094%" y="837" width="0.2988%" height="15" fill="rgb(253,128,37)" fg:x="272920" fg:w="1923"/><text x="42.6594%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (2,202 samples, 0.34%)</title><rect x="42.3696%" y="869" width="0.3422%" height="15" fill="rgb(221,58,24)" fg:x="272664" fg:w="2202"/><text x="42.6196%" y="879.50"></text></g><g><title>do_syscall_64 (29,067 samples, 4.52%)</title><rect x="38.1952%" y="901" width="4.5168%" height="15" fill="rgb(230,54,45)" fg:x="245800" fg:w="29067"/><text x="38.4452%" y="911.50">do_sy..</text></g><g><title>unload_network_ops_symbols (28,937 samples, 4.50%)</title><rect x="38.2154%" y="885" width="4.4966%" height="15" fill="rgb(254,21,18)" fg:x="245930" fg:w="28937"/><text x="38.4654%" y="895.50">unloa..</text></g><g><title>entry_SYSCALL_64_after_hwframe (29,088 samples, 4.52%)</title><rect x="38.1939%" y="917" width="4.5200%" height="15" fill="rgb(221,108,0)" fg:x="245792" fg:w="29088"/><text x="38.4439%" y="927.50">entry..</text></g><g><title>__GI_unlinkat (29,151 samples, 4.53%)</title><rect x="38.1858%" y="933" width="4.5298%" height="15" fill="rgb(206,95,1)" fg:x="245740" fg:w="29151"/><text x="38.4358%" y="943.50">__GI_..</text></g><g><title>link_path_walk.part.0.constprop.0 (125 samples, 0.02%)</title><rect x="42.7256%" y="789" width="0.0194%" height="15" fill="rgb(237,52,5)" fg:x="274955" fg:w="125"/><text x="42.9756%" y="799.50"></text></g><g><title>walk_component (72 samples, 0.01%)</title><rect x="42.7338%" y="773" width="0.0112%" height="15" fill="rgb(218,150,34)" fg:x="275008" fg:w="72"/><text x="42.9838%" y="783.50"></text></g><g><title>path_lookupat (189 samples, 0.03%)</title><rect x="42.7234%" y="805" width="0.0294%" height="15" fill="rgb(235,194,28)" fg:x="274941" fg:w="189"/><text x="42.9734%" y="815.50"></text></g><g><title>filename_lookup (199 samples, 0.03%)</title><rect x="42.7222%" y="821" width="0.0309%" height="15" fill="rgb(245,92,18)" fg:x="274933" fg:w="199"/><text x="42.9722%" y="831.50"></text></g><g><title>user_path_at_empty (247 samples, 0.04%)</title><rect x="42.7222%" y="837" width="0.0384%" height="15" fill="rgb(253,203,53)" fg:x="274933" fg:w="247"/><text x="42.9722%" y="847.50"></text></g><g><title>__do_sys_newlstat (281 samples, 0.04%)</title><rect x="42.7175%" y="869" width="0.0437%" height="15" fill="rgb(249,185,47)" fg:x="274903" fg:w="281"/><text x="42.9675%" y="879.50"></text></g><g><title>vfs_statx (267 samples, 0.04%)</title><rect x="42.7197%" y="853" width="0.0415%" height="15" fill="rgb(252,194,52)" fg:x="274917" fg:w="267"/><text x="42.9697%" y="863.50"></text></g><g><title>__x64_sys_newlstat (283 samples, 0.04%)</title><rect x="42.7174%" y="885" width="0.0440%" height="15" fill="rgb(210,53,36)" fg:x="274902" fg:w="283"/><text x="42.9674%" y="895.50"></text></g><g><title>do_syscall_64 (286 samples, 0.04%)</title><rect x="42.7174%" y="901" width="0.0444%" height="15" fill="rgb(237,37,25)" fg:x="274902" fg:w="286"/><text x="42.9674%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (288 samples, 0.04%)</title><rect x="42.7172%" y="917" width="0.0448%" height="15" fill="rgb(242,116,27)" fg:x="274901" fg:w="288"/><text x="42.9672%" y="927.50"></text></g><g><title>___lxstat64 (300 samples, 0.05%)</title><rect x="42.7156%" y="933" width="0.0466%" height="15" fill="rgb(213,185,26)" fg:x="274891" fg:w="300"/><text x="42.9656%" y="943.50"></text></g><g><title>filename_lookup (85 samples, 0.01%)</title><rect x="42.7660%" y="821" width="0.0132%" height="15" fill="rgb(225,204,8)" fg:x="275215" fg:w="85"/><text x="43.0160%" y="831.50"></text></g><g><title>path_lookupat (79 samples, 0.01%)</title><rect x="42.7669%" y="805" width="0.0123%" height="15" fill="rgb(254,111,37)" fg:x="275221" fg:w="79"/><text x="43.0169%" y="815.50"></text></g><g><title>user_path_at_empty (114 samples, 0.02%)</title><rect x="42.7660%" y="837" width="0.0177%" height="15" fill="rgb(242,35,9)" fg:x="275215" fg:w="114"/><text x="43.0160%" y="847.50"></text></g><g><title>__x64_sys_newstat (144 samples, 0.02%)</title><rect x="42.7632%" y="885" width="0.0224%" height="15" fill="rgb(232,138,49)" fg:x="275197" fg:w="144"/><text x="43.0132%" y="895.50"></text></g><g><title>__do_sys_newstat (143 samples, 0.02%)</title><rect x="42.7634%" y="869" width="0.0222%" height="15" fill="rgb(247,56,4)" fg:x="275198" fg:w="143"/><text x="43.0134%" y="879.50"></text></g><g><title>vfs_statx (139 samples, 0.02%)</title><rect x="42.7640%" y="853" width="0.0216%" height="15" fill="rgb(226,179,17)" fg:x="275202" fg:w="139"/><text x="43.0140%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.02%)</title><rect x="42.7627%" y="917" width="0.0232%" height="15" fill="rgb(216,163,45)" fg:x="275194" fg:w="149"/><text x="43.0127%" y="927.50"></text></g><g><title>do_syscall_64 (148 samples, 0.02%)</title><rect x="42.7629%" y="901" width="0.0230%" height="15" fill="rgb(211,157,3)" fg:x="275195" fg:w="148"/><text x="43.0129%" y="911.50"></text></g><g><title>___xstat64 (154 samples, 0.02%)</title><rect x="42.7623%" y="933" width="0.0239%" height="15" fill="rgb(234,44,20)" fg:x="275191" fg:w="154"/><text x="43.0123%" y="943.50"></text></g><g><title>__do_sys_newfstatat (82 samples, 0.01%)</title><rect x="42.8062%" y="853" width="0.0127%" height="15" fill="rgb(254,138,23)" fg:x="275474" fg:w="82"/><text x="43.0562%" y="863.50"></text></g><g><title>vfs_statx (68 samples, 0.01%)</title><rect x="42.8084%" y="837" width="0.0106%" height="15" fill="rgb(206,119,39)" fg:x="275488" fg:w="68"/><text x="43.0584%" y="847.50"></text></g><g><title>__x64_sys_newfstatat (84 samples, 0.01%)</title><rect x="42.8062%" y="869" width="0.0131%" height="15" fill="rgb(231,105,52)" fg:x="275474" fg:w="84"/><text x="43.0562%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (93 samples, 0.01%)</title><rect x="42.8053%" y="901" width="0.0145%" height="15" fill="rgb(250,20,5)" fg:x="275468" fg:w="93"/><text x="43.0553%" y="911.50"></text></g><g><title>do_syscall_64 (91 samples, 0.01%)</title><rect x="42.8056%" y="885" width="0.0141%" height="15" fill="rgb(215,198,30)" fg:x="275470" fg:w="91"/><text x="43.0556%" y="895.50"></text></g><g><title>__GI___fstatat64 (97 samples, 0.02%)</title><rect x="42.8048%" y="917" width="0.0151%" height="15" fill="rgb(246,142,8)" fg:x="275465" fg:w="97"/><text x="43.0548%" y="927.50"></text></g><g><title>__fdopendir (210 samples, 0.03%)</title><rect x="42.8002%" y="933" width="0.0326%" height="15" fill="rgb(243,26,38)" fg:x="275435" fg:w="210"/><text x="43.0502%" y="943.50"></text></g><g><title>__alloc_dir (83 samples, 0.01%)</title><rect x="42.8199%" y="917" width="0.0129%" height="15" fill="rgb(205,133,28)" fg:x="275562" fg:w="83"/><text x="43.0699%" y="927.50"></text></g><g><title>rwsem_optimistic_spin (100 samples, 0.02%)</title><rect x="42.8334%" y="757" width="0.0155%" height="15" fill="rgb(212,34,0)" fg:x="275649" fg:w="100"/><text x="43.0834%" y="767.50"></text></g><g><title>down_write (102 samples, 0.02%)</title><rect x="42.8334%" y="789" width="0.0158%" height="15" fill="rgb(251,226,22)" fg:x="275649" fg:w="102"/><text x="43.0834%" y="799.50"></text></g><g><title>rwsem_down_write_slowpath (102 samples, 0.02%)</title><rect x="42.8334%" y="773" width="0.0158%" height="15" fill="rgb(252,119,9)" fg:x="275649" fg:w="102"/><text x="43.0834%" y="783.50"></text></g><g><title>__x64_sys_openat (138 samples, 0.02%)</title><rect x="42.8328%" y="869" width="0.0214%" height="15" fill="rgb(213,150,50)" fg:x="275645" fg:w="138"/><text x="43.0828%" y="879.50"></text></g><g><title>do_sys_openat2 (138 samples, 0.02%)</title><rect x="42.8328%" y="853" width="0.0214%" height="15" fill="rgb(212,24,39)" fg:x="275645" fg:w="138"/><text x="43.0828%" y="863.50"></text></g><g><title>do_filp_open (138 samples, 0.02%)</title><rect x="42.8328%" y="837" width="0.0214%" height="15" fill="rgb(213,46,39)" fg:x="275645" fg:w="138"/><text x="43.0828%" y="847.50"></text></g><g><title>path_openat (138 samples, 0.02%)</title><rect x="42.8328%" y="821" width="0.0214%" height="15" fill="rgb(239,106,12)" fg:x="275645" fg:w="138"/><text x="43.0828%" y="831.50"></text></g><g><title>open_last_lookups (135 samples, 0.02%)</title><rect x="42.8333%" y="805" width="0.0210%" height="15" fill="rgb(249,229,21)" fg:x="275648" fg:w="135"/><text x="43.0833%" y="815.50"></text></g><g><title>__libc_open64 (149 samples, 0.02%)</title><rect x="42.8328%" y="933" width="0.0232%" height="15" fill="rgb(212,158,3)" fg:x="275645" fg:w="149"/><text x="43.0828%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (149 samples, 0.02%)</title><rect x="42.8328%" y="917" width="0.0232%" height="15" fill="rgb(253,26,48)" fg:x="275645" fg:w="149"/><text x="43.0828%" y="927.50"></text></g><g><title>do_syscall_64 (149 samples, 0.02%)</title><rect x="42.8328%" y="901" width="0.0232%" height="15" fill="rgb(238,178,20)" fg:x="275645" fg:w="149"/><text x="43.0828%" y="911.50"></text></g><g><title>unload_network_ops_symbols (149 samples, 0.02%)</title><rect x="42.8328%" y="885" width="0.0232%" height="15" fill="rgb(208,86,15)" fg:x="275645" fg:w="149"/><text x="43.0828%" y="895.50"></text></g><g><title>do_dentry_open (86 samples, 0.01%)</title><rect x="42.8759%" y="773" width="0.0134%" height="15" fill="rgb(239,42,53)" fg:x="275922" fg:w="86"/><text x="43.1259%" y="783.50"></text></g><g><title>do_open (129 samples, 0.02%)</title><rect x="42.8704%" y="805" width="0.0200%" height="15" fill="rgb(245,226,8)" fg:x="275887" fg:w="129"/><text x="43.1204%" y="815.50"></text></g><g><title>vfs_open (98 samples, 0.02%)</title><rect x="42.8752%" y="789" width="0.0152%" height="15" fill="rgb(216,176,32)" fg:x="275918" fg:w="98"/><text x="43.1252%" y="799.50"></text></g><g><title>path_openat (215 samples, 0.03%)</title><rect x="42.8637%" y="821" width="0.0334%" height="15" fill="rgb(231,186,21)" fg:x="275844" fg:w="215"/><text x="43.1137%" y="831.50"></text></g><g><title>do_filp_open (222 samples, 0.03%)</title><rect x="42.8628%" y="837" width="0.0345%" height="15" fill="rgb(205,95,49)" fg:x="275838" fg:w="222"/><text x="43.1128%" y="847.50"></text></g><g><title>do_sys_openat2 (274 samples, 0.04%)</title><rect x="42.8628%" y="853" width="0.0426%" height="15" fill="rgb(217,145,8)" fg:x="275838" fg:w="274"/><text x="43.1128%" y="863.50"></text></g><g><title>__x64_sys_openat (293 samples, 0.05%)</title><rect x="42.8616%" y="869" width="0.0455%" height="15" fill="rgb(239,144,48)" fg:x="275830" fg:w="293"/><text x="43.1116%" y="879.50"></text></g><g><title>[[falcon_kal]] (67 samples, 0.01%)</title><rect x="42.9245%" y="821" width="0.0104%" height="15" fill="rgb(214,189,23)" fg:x="276235" fg:w="67"/><text x="43.1745%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (138 samples, 0.02%)</title><rect x="42.9236%" y="837" width="0.0214%" height="15" fill="rgb(229,157,17)" fg:x="276229" fg:w="138"/><text x="43.1736%" y="847.50"></text></g><g><title>cshook_systemcalltable_post_openat (271 samples, 0.04%)</title><rect x="42.9074%" y="869" width="0.0421%" height="15" fill="rgb(230,5,48)" fg:x="276125" fg:w="271"/><text x="43.1574%" y="879.50"></text></g><g><title>fshook_syscalltable_pre_lchown (216 samples, 0.03%)</title><rect x="42.9159%" y="853" width="0.0336%" height="15" fill="rgb(224,156,48)" fg:x="276180" fg:w="216"/><text x="43.1659%" y="863.50"></text></g><g><title>do_syscall_64 (595 samples, 0.09%)</title><rect x="42.8583%" y="901" width="0.0925%" height="15" fill="rgb(223,14,29)" fg:x="275809" fg:w="595"/><text x="43.1083%" y="911.50"></text></g><g><title>unload_network_ops_symbols (575 samples, 0.09%)</title><rect x="42.8614%" y="885" width="0.0893%" height="15" fill="rgb(229,96,36)" fg:x="275829" fg:w="575"/><text x="43.1114%" y="895.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (597 samples, 0.09%)</title><rect x="42.8581%" y="917" width="0.0928%" height="15" fill="rgb(231,102,53)" fg:x="275808" fg:w="597"/><text x="43.1081%" y="927.50"></text></g><g><title>__libc_openat64 (614 samples, 0.10%)</title><rect x="42.8560%" y="933" width="0.0954%" height="15" fill="rgb(210,77,38)" fg:x="275794" fg:w="614"/><text x="43.1060%" y="943.50"></text></g><g><title>__alloc_file (68 samples, 0.01%)</title><rect x="42.9601%" y="773" width="0.0106%" height="15" fill="rgb(235,131,6)" fg:x="276464" fg:w="68"/><text x="43.2101%" y="783.50"></text></g><g><title>alloc_empty_file (70 samples, 0.01%)</title><rect x="42.9601%" y="789" width="0.0109%" height="15" fill="rgb(252,55,38)" fg:x="276464" fg:w="70"/><text x="43.2101%" y="799.50"></text></g><g><title>do_dentry_open (110 samples, 0.02%)</title><rect x="42.9786%" y="757" width="0.0171%" height="15" fill="rgb(246,38,14)" fg:x="276583" fg:w="110"/><text x="43.2286%" y="767.50"></text></g><g><title>do_open (161 samples, 0.03%)</title><rect x="42.9710%" y="789" width="0.0250%" height="15" fill="rgb(242,27,5)" fg:x="276534" fg:w="161"/><text x="43.2210%" y="799.50"></text></g><g><title>vfs_open (119 samples, 0.02%)</title><rect x="42.9775%" y="773" width="0.0185%" height="15" fill="rgb(228,65,35)" fg:x="276576" fg:w="119"/><text x="43.2275%" y="783.50"></text></g><g><title>lookup_fast (90 samples, 0.01%)</title><rect x="43.0121%" y="757" width="0.0140%" height="15" fill="rgb(245,93,11)" fg:x="276799" fg:w="90"/><text x="43.2621%" y="767.50"></text></g><g><title>__d_lookup_rcu (78 samples, 0.01%)</title><rect x="43.0140%" y="741" width="0.0121%" height="15" fill="rgb(213,1,31)" fg:x="276811" fg:w="78"/><text x="43.2640%" y="751.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (212 samples, 0.03%)</title><rect x="42.9960%" y="789" width="0.0329%" height="15" fill="rgb(237,205,14)" fg:x="276695" fg:w="212"/><text x="43.2460%" y="799.50"></text></g><g><title>walk_component (122 samples, 0.02%)</title><rect x="43.0100%" y="773" width="0.0190%" height="15" fill="rgb(232,118,45)" fg:x="276785" fg:w="122"/><text x="43.2600%" y="783.50"></text></g><g><title>path_openat (480 samples, 0.07%)</title><rect x="42.9598%" y="805" width="0.0746%" height="15" fill="rgb(218,5,6)" fg:x="276462" fg:w="480"/><text x="43.2098%" y="815.50"></text></g><g><title>do_filp_open (491 samples, 0.08%)</title><rect x="42.9582%" y="821" width="0.0763%" height="15" fill="rgb(251,87,51)" fg:x="276452" fg:w="491"/><text x="43.2082%" y="831.50"></text></g><g><title>do_sys_openat2 (559 samples, 0.09%)</title><rect x="42.9577%" y="837" width="0.0869%" height="15" fill="rgb(207,225,20)" fg:x="276449" fg:w="559"/><text x="43.2077%" y="847.50"></text></g><g><title>__x64_sys_openat (570 samples, 0.09%)</title><rect x="42.9565%" y="853" width="0.0886%" height="15" fill="rgb(222,78,54)" fg:x="276441" fg:w="570"/><text x="43.2065%" y="863.50"></text></g><g><title>cshook_security_file_free_security (87 samples, 0.01%)</title><rect x="43.0483%" y="837" width="0.0135%" height="15" fill="rgb(232,85,16)" fg:x="277032" fg:w="87"/><text x="43.2983%" y="847.50"></text></g><g><title>cshook_security_file_free_security (79 samples, 0.01%)</title><rect x="43.0496%" y="821" width="0.0123%" height="15" fill="rgb(244,25,33)" fg:x="277040" fg:w="79"/><text x="43.2996%" y="831.50"></text></g><g><title>_ZdlPv (75 samples, 0.01%)</title><rect x="43.0693%" y="805" width="0.0117%" height="15" fill="rgb(233,24,36)" fg:x="277167" fg:w="75"/><text x="43.3193%" y="815.50"></text></g><g><title>_ZdlPv (113 samples, 0.02%)</title><rect x="43.0670%" y="821" width="0.0176%" height="15" fill="rgb(253,49,54)" fg:x="277152" fg:w="113"/><text x="43.3170%" y="831.50"></text></g><g><title>prepend_path (66 samples, 0.01%)</title><rect x="43.0891%" y="773" width="0.0103%" height="15" fill="rgb(245,12,22)" fg:x="277294" fg:w="66"/><text x="43.3391%" y="783.50"></text></g><g><title>d_path (71 samples, 0.01%)</title><rect x="43.0884%" y="789" width="0.0110%" height="15" fill="rgb(253,141,28)" fg:x="277290" fg:w="71"/><text x="43.3384%" y="799.50"></text></g><g><title>[[falcon_kal]] (82 samples, 0.01%)</title><rect x="43.0873%" y="805" width="0.0127%" height="15" fill="rgb(225,207,27)" fg:x="277283" fg:w="82"/><text x="43.3373%" y="815.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (178 samples, 0.03%)</title><rect x="43.0850%" y="821" width="0.0277%" height="15" fill="rgb(220,84,2)" fg:x="277268" fg:w="178"/><text x="43.3350%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (79 samples, 0.01%)</title><rect x="43.1004%" y="805" width="0.0123%" height="15" fill="rgb(224,37,37)" fg:x="277367" fg:w="79"/><text x="43.3504%" y="815.50"></text></g><g><title>[[falcon_kal]] (73 samples, 0.01%)</title><rect x="43.1013%" y="789" width="0.0113%" height="15" fill="rgb(220,143,18)" fg:x="277373" fg:w="73"/><text x="43.3513%" y="799.50"></text></g><g><title>cshook_systemcalltable_post_openat (472 samples, 0.07%)</title><rect x="43.0455%" y="853" width="0.0733%" height="15" fill="rgb(210,88,33)" fg:x="277014" fg:w="472"/><text x="43.2955%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (366 samples, 0.06%)</title><rect x="43.0620%" y="837" width="0.0569%" height="15" fill="rgb(219,87,51)" fg:x="277120" fg:w="366"/><text x="43.3120%" y="847.50"></text></g><g><title>do_syscall_64 (1,083 samples, 0.17%)</title><rect x="42.9531%" y="885" width="0.1683%" height="15" fill="rgb(211,7,35)" fg:x="276419" fg:w="1083"/><text x="43.2031%" y="895.50"></text></g><g><title>unload_network_ops_symbols (1,064 samples, 0.17%)</title><rect x="42.9560%" y="869" width="0.1653%" height="15" fill="rgb(232,77,2)" fg:x="276438" fg:w="1064"/><text x="43.2060%" y="879.50"></text></g><g><title>__GI___open64_nocancel (1,094 samples, 0.17%)</title><rect x="42.9517%" y="917" width="0.1700%" height="15" fill="rgb(249,94,25)" fg:x="276410" fg:w="1094"/><text x="43.2017%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,086 samples, 0.17%)</title><rect x="42.9529%" y="901" width="0.1688%" height="15" fill="rgb(215,112,2)" fg:x="276418" fg:w="1086"/><text x="43.2029%" y="911.50"></text></g><g><title>user_path_at_empty (65 samples, 0.01%)</title><rect x="43.1291%" y="805" width="0.0101%" height="15" fill="rgb(226,115,48)" fg:x="277552" fg:w="65"/><text x="43.3791%" y="815.50"></text></g><g><title>__do_sys_newfstatat (129 samples, 0.02%)</title><rect x="43.1228%" y="837" width="0.0200%" height="15" fill="rgb(249,196,10)" fg:x="277511" fg:w="129"/><text x="43.3728%" y="847.50"></text></g><g><title>vfs_statx (112 samples, 0.02%)</title><rect x="43.1254%" y="821" width="0.0174%" height="15" fill="rgb(237,109,14)" fg:x="277528" fg:w="112"/><text x="43.3754%" y="831.50"></text></g><g><title>__x64_sys_newfstatat (131 samples, 0.02%)</title><rect x="43.1228%" y="853" width="0.0204%" height="15" fill="rgb(217,103,53)" fg:x="277511" fg:w="131"/><text x="43.3728%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (137 samples, 0.02%)</title><rect x="43.1223%" y="885" width="0.0213%" height="15" fill="rgb(244,137,9)" fg:x="277508" fg:w="137"/><text x="43.3723%" y="895.50"></text></g><g><title>do_syscall_64 (136 samples, 0.02%)</title><rect x="43.1225%" y="869" width="0.0211%" height="15" fill="rgb(227,201,3)" fg:x="277509" fg:w="136"/><text x="43.3725%" y="879.50"></text></g><g><title>__GI___fstatat64 (143 samples, 0.02%)</title><rect x="43.1220%" y="901" width="0.0222%" height="15" fill="rgb(243,94,6)" fg:x="277506" fg:w="143"/><text x="43.3720%" y="911.50"></text></g><g><title>__opendir (1,311 samples, 0.20%)</title><rect x="42.9514%" y="933" width="0.2037%" height="15" fill="rgb(235,118,5)" fg:x="276408" fg:w="1311"/><text x="43.2014%" y="943.50"></text></g><g><title>opendir_tail (215 samples, 0.03%)</title><rect x="43.1217%" y="917" width="0.0334%" height="15" fill="rgb(247,10,30)" fg:x="277504" fg:w="215"/><text x="43.3717%" y="927.50"></text></g><g><title>__alloc_dir (69 samples, 0.01%)</title><rect x="43.1444%" y="901" width="0.0107%" height="15" fill="rgb(205,26,28)" fg:x="277650" fg:w="69"/><text x="43.3944%" y="911.50"></text></g><g><title>check_bounds (81 samples, 0.01%)</title><rect x="43.1974%" y="917" width="0.0126%" height="15" fill="rgb(206,99,35)" fg:x="277991" fg:w="81"/><text x="43.4474%" y="927.50"></text></g><g><title>jni_GetByteArrayRegion (293 samples, 0.05%)</title><rect x="43.1664%" y="933" width="0.0455%" height="15" fill="rgb(238,130,40)" fg:x="277792" fg:w="293"/><text x="43.4164%" y="943.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (102 samples, 0.02%)</title><rect x="43.2274%" y="917" width="0.0158%" height="15" fill="rgb(224,126,31)" fg:x="278184" fg:w="102"/><text x="43.4774%" y="927.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (91 samples, 0.01%)</title><rect x="43.2291%" y="901" width="0.0141%" height="15" fill="rgb(254,105,17)" fg:x="278195" fg:w="91"/><text x="43.4791%" y="911.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (83 samples, 0.01%)</title><rect x="43.2303%" y="885" width="0.0129%" height="15" fill="rgb(216,87,36)" fg:x="278203" fg:w="83"/><text x="43.4803%" y="895.50"></text></g><g><title>HandleMark::pop_and_restore (79 samples, 0.01%)</title><rect x="43.2432%" y="917" width="0.0123%" height="15" fill="rgb(240,21,12)" fg:x="278286" fg:w="79"/><text x="43.4932%" y="927.50"></text></g><g><title>JNIHandles::make_local (94 samples, 0.01%)</title><rect x="43.2555%" y="917" width="0.0146%" height="15" fill="rgb(245,192,34)" fg:x="278365" fg:w="94"/><text x="43.5055%" y="927.50"></text></g><g><title>jni_GetObjectField (464 samples, 0.07%)</title><rect x="43.2160%" y="933" width="0.0721%" height="15" fill="rgb(226,100,49)" fg:x="278111" fg:w="464"/><text x="43.4660%" y="943.50"></text></g><g><title>jni_GetStringLength (205 samples, 0.03%)</title><rect x="43.2881%" y="933" width="0.0319%" height="15" fill="rgb(245,188,27)" fg:x="278575" fg:w="205"/><text x="43.5381%" y="943.50"></text></g><g><title>jni_NewObjectArray (68 samples, 0.01%)</title><rect x="43.3218%" y="933" width="0.0106%" height="15" fill="rgb(212,170,8)" fg:x="278792" fg:w="68"/><text x="43.5718%" y="943.50"></text></g><g><title>JavaCalls::call_helper (100 samples, 0.02%)</title><rect x="43.3619%" y="901" width="0.0155%" height="15" fill="rgb(217,113,29)" fg:x="279050" fg:w="100"/><text x="43.6119%" y="911.50"></text></g><g><title>jni_NewObjectV (297 samples, 0.05%)</title><rect x="43.3324%" y="933" width="0.0462%" height="15" fill="rgb(237,30,3)" fg:x="278860" fg:w="297"/><text x="43.5824%" y="943.50"></text></g><g><title>jni_invoke_nonstatic (155 samples, 0.02%)</title><rect x="43.3545%" y="917" width="0.0241%" height="15" fill="rgb(227,19,28)" fg:x="279002" fg:w="155"/><text x="43.6045%" y="927.50"></text></g><g><title>ThreadStateTransition::transition_from_native (73 samples, 0.01%)</title><rect x="43.4028%" y="917" width="0.0113%" height="15" fill="rgb(239,172,45)" fg:x="279313" fg:w="73"/><text x="43.6528%" y="927.50"></text></g><g><title>UNICODE::is_latin1 (357 samples, 0.06%)</title><rect x="43.4948%" y="885" width="0.0555%" height="15" fill="rgb(254,55,39)" fg:x="279905" fg:w="357"/><text x="43.7448%" y="895.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 573558ul&gt;::oop_access_barrier (79 samples, 0.01%)</title><rect x="43.5680%" y="869" width="0.0123%" height="15" fill="rgb(249,208,12)" fg:x="280376" fg:w="79"/><text x="43.8180%" y="879.50"></text></g><g><title>ObjAllocator::initialize (71 samples, 0.01%)</title><rect x="43.6074%" y="821" width="0.0110%" height="15" fill="rgb(240,52,13)" fg:x="280630" fg:w="71"/><text x="43.8574%" y="831.50"></text></g><g><title>MemAllocator::allocate (212 samples, 0.03%)</title><rect x="43.5911%" y="837" width="0.0329%" height="15" fill="rgb(252,149,13)" fg:x="280525" fg:w="212"/><text x="43.8411%" y="847.50"></text></g><g><title>CollectedHeap::obj_allocate (217 samples, 0.03%)</title><rect x="43.5905%" y="853" width="0.0337%" height="15" fill="rgb(232,81,48)" fg:x="280521" fg:w="217"/><text x="43.8405%" y="863.50"></text></g><g><title>InstanceKlass::allocate_instance (278 samples, 0.04%)</title><rect x="43.5812%" y="869" width="0.0432%" height="15" fill="rgb(222,144,2)" fg:x="280461" fg:w="278"/><text x="43.8312%" y="879.50"></text></g><g><title>[libc.so.6] (95 samples, 0.01%)</title><rect x="43.6505%" y="805" width="0.0148%" height="15" fill="rgb(216,81,32)" fg:x="280907" fg:w="95"/><text x="43.9005%" y="815.50"></text></g><g><title>ObjArrayAllocator::initialize (150 samples, 0.02%)</title><rect x="43.6438%" y="821" width="0.0233%" height="15" fill="rgb(244,78,51)" fg:x="280864" fg:w="150"/><text x="43.8938%" y="831.50"></text></g><g><title>MemAllocator::allocate (230 samples, 0.04%)</title><rect x="43.6321%" y="837" width="0.0357%" height="15" fill="rgb(217,66,21)" fg:x="280789" fg:w="230"/><text x="43.8821%" y="847.50"></text></g><g><title>CollectedHeap::array_allocate (238 samples, 0.04%)</title><rect x="43.6312%" y="853" width="0.0370%" height="15" fill="rgb(247,101,42)" fg:x="280783" fg:w="238"/><text x="43.8812%" y="863.50"></text></g><g><title>TypeArrayKlass::allocate_common (283 samples, 0.04%)</title><rect x="43.6244%" y="869" width="0.0440%" height="15" fill="rgb(227,81,39)" fg:x="280739" fg:w="283"/><text x="43.8744%" y="879.50"></text></g><g><title>java_lang_String::basic_create (757 samples, 0.12%)</title><rect x="43.5509%" y="885" width="0.1176%" height="15" fill="rgb(220,223,44)" fg:x="280266" fg:w="757"/><text x="43.8009%" y="895.50"></text></g><g><title>jni_NewString (1,867 samples, 0.29%)</title><rect x="43.3785%" y="933" width="0.2901%" height="15" fill="rgb(205,218,2)" fg:x="279157" fg:w="1867"/><text x="43.6285%" y="943.50"></text></g><g><title>java_lang_String::create_oop_from_unicode (1,637 samples, 0.25%)</title><rect x="43.4143%" y="917" width="0.2544%" height="15" fill="rgb(212,207,28)" fg:x="279387" fg:w="1637"/><text x="43.6643%" y="927.50"></text></g><g><title>java_lang_String::create_from_unicode (1,616 samples, 0.25%)</title><rect x="43.4176%" y="901" width="0.2511%" height="15" fill="rgb(224,12,41)" fg:x="279408" fg:w="1616"/><text x="43.6676%" y="911.50"></text></g><g><title>jni_SetObjectArrayElement (104 samples, 0.02%)</title><rect x="43.6708%" y="933" width="0.0162%" height="15" fill="rgb(216,118,12)" fg:x="281038" fg:w="104"/><text x="43.9208%" y="943.50"></text></g><g><title>operator new (186 samples, 0.03%)</title><rect x="43.6915%" y="933" width="0.0289%" height="15" fill="rgb(252,97,46)" fg:x="281171" fg:w="186"/><text x="43.9415%" y="943.50"></text></g><g><title>__GI___libc_malloc (160 samples, 0.02%)</title><rect x="43.6955%" y="917" width="0.0249%" height="15" fill="rgb(244,206,19)" fg:x="281197" fg:w="160"/><text x="43.9455%" y="927.50"></text></g><g><title>tcache_get (70 samples, 0.01%)</title><rect x="43.7095%" y="901" width="0.0109%" height="15" fill="rgb(231,84,31)" fg:x="281287" fg:w="70"/><text x="43.9595%" y="911.50"></text></g><g><title>btrfs_lookup_dir_item (71 samples, 0.01%)</title><rect x="43.7434%" y="773" width="0.0110%" height="15" fill="rgb(244,133,0)" fg:x="281505" fg:w="71"/><text x="43.9934%" y="783.50"></text></g><g><title>btrfs_search_slot (69 samples, 0.01%)</title><rect x="43.7437%" y="757" width="0.0107%" height="15" fill="rgb(223,15,50)" fg:x="281507" fg:w="69"/><text x="43.9937%" y="767.50"></text></g><g><title>__btrfs_unlink_inode (148 samples, 0.02%)</title><rect x="43.7318%" y="789" width="0.0230%" height="15" fill="rgb(250,118,49)" fg:x="281430" fg:w="148"/><text x="43.9818%" y="799.50"></text></g><g><title>btrfs_bin_search (71 samples, 0.01%)</title><rect x="43.8480%" y="613" width="0.0110%" height="15" fill="rgb(248,25,38)" fg:x="282178" fg:w="71"/><text x="44.0980%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (69 samples, 0.01%)</title><rect x="43.8483%" y="597" width="0.0107%" height="15" fill="rgb(215,70,14)" fg:x="282180" fg:w="69"/><text x="44.0983%" y="607.50"></text></g><g><title>find_extent_buffer (69 samples, 0.01%)</title><rect x="43.8736%" y="597" width="0.0107%" height="15" fill="rgb(215,28,15)" fg:x="282343" fg:w="69"/><text x="44.1236%" y="607.50"></text></g><g><title>read_block_for_search (127 samples, 0.02%)</title><rect x="43.8654%" y="613" width="0.0197%" height="15" fill="rgb(243,6,28)" fg:x="282290" fg:w="127"/><text x="44.1154%" y="623.50"></text></g><g><title>btrfs_search_slot (307 samples, 0.05%)</title><rect x="43.8413%" y="629" width="0.0477%" height="15" fill="rgb(222,130,1)" fg:x="282135" fg:w="307"/><text x="44.0913%" y="639.50"></text></g><g><title>overwrite_item (594 samples, 0.09%)</title><rect x="43.8200%" y="645" width="0.0923%" height="15" fill="rgb(236,166,44)" fg:x="281998" fg:w="594"/><text x="44.0700%" y="655.50"></text></g><g><title>log_dir_items (742 samples, 0.12%)</title><rect x="43.8017%" y="661" width="0.1153%" height="15" fill="rgb(221,108,14)" fg:x="281880" fg:w="742"/><text x="44.0517%" y="671.50"></text></g><g><title>btrfs_log_inode (769 samples, 0.12%)</title><rect x="43.7976%" y="693" width="0.1195%" height="15" fill="rgb(252,3,45)" fg:x="281854" fg:w="769"/><text x="44.0476%" y="703.50"></text></g><g><title>log_directory_changes (746 samples, 0.12%)</title><rect x="43.8012%" y="677" width="0.1159%" height="15" fill="rgb(237,68,30)" fg:x="281877" fg:w="746"/><text x="44.0512%" y="687.50"></text></g><g><title>copy_inode_items_to_log (893 samples, 0.14%)</title><rect x="43.7785%" y="725" width="0.1388%" height="15" fill="rgb(211,79,22)" fg:x="281731" fg:w="893"/><text x="44.0285%" y="735.50"></text></g><g><title>log_conflicting_inodes (800 samples, 0.12%)</title><rect x="43.7930%" y="709" width="0.1243%" height="15" fill="rgb(252,185,21)" fg:x="281824" fg:w="800"/><text x="44.0430%" y="719.50"></text></g><g><title>btrfs_log_inode (937 samples, 0.15%)</title><rect x="43.7748%" y="741" width="0.1456%" height="15" fill="rgb(225,189,26)" fg:x="281707" fg:w="937"/><text x="44.0248%" y="751.50"></text></g><g><title>btrfs_log_new_name (990 samples, 0.15%)</title><rect x="43.7667%" y="789" width="0.1538%" height="15" fill="rgb(241,30,40)" fg:x="281655" fg:w="990"/><text x="44.0167%" y="799.50"></text></g><g><title>btrfs_log_inode_parent (990 samples, 0.15%)</title><rect x="43.7667%" y="773" width="0.1538%" height="15" fill="rgb(235,215,44)" fg:x="281655" fg:w="990"/><text x="44.0167%" y="783.50"></text></g><g><title>log_all_new_ancestors (938 samples, 0.15%)</title><rect x="43.7748%" y="757" width="0.1458%" height="15" fill="rgb(205,8,29)" fg:x="281707" fg:w="938"/><text x="44.0248%" y="767.50"></text></g><g><title>btrfs_rename2 (1,223 samples, 0.19%)</title><rect x="43.7316%" y="821" width="0.1900%" height="15" fill="rgb(241,137,42)" fg:x="281429" fg:w="1223"/><text x="43.9816%" y="831.50"></text></g><g><title>btrfs_rename (1,223 samples, 0.19%)</title><rect x="43.7316%" y="805" width="0.1900%" height="15" fill="rgb(237,155,2)" fg:x="281429" fg:w="1223"/><text x="43.9816%" y="815.50"></text></g><g><title>do_renameat2 (1,270 samples, 0.20%)</title><rect x="43.7252%" y="853" width="0.1973%" height="15" fill="rgb(245,29,42)" fg:x="281388" fg:w="1270"/><text x="43.9752%" y="863.50"></text></g><g><title>vfs_rename (1,229 samples, 0.19%)</title><rect x="43.7316%" y="837" width="0.1910%" height="15" fill="rgb(234,101,35)" fg:x="281429" fg:w="1229"/><text x="43.9816%" y="847.50"></text></g><g><title>__x64_sys_rename (1,271 samples, 0.20%)</title><rect x="43.7252%" y="869" width="0.1975%" height="15" fill="rgb(228,64,37)" fg:x="281388" fg:w="1271"/><text x="43.9752%" y="879.50"></text></g><g><title>rename (1,315 samples, 0.20%)</title><rect x="43.7244%" y="933" width="0.2043%" height="15" fill="rgb(217,214,36)" fg:x="281383" fg:w="1315"/><text x="43.9744%" y="943.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,313 samples, 0.20%)</title><rect x="43.7248%" y="917" width="0.2040%" height="15" fill="rgb(243,70,3)" fg:x="281385" fg:w="1313"/><text x="43.9748%" y="927.50"></text></g><g><title>do_syscall_64 (1,313 samples, 0.20%)</title><rect x="43.7248%" y="901" width="0.2040%" height="15" fill="rgb(253,158,52)" fg:x="281385" fg:w="1313"/><text x="43.9748%" y="911.50"></text></g><g><title>unload_network_ops_symbols (1,310 samples, 0.20%)</title><rect x="43.7252%" y="885" width="0.2036%" height="15" fill="rgb(234,111,54)" fg:x="281388" fg:w="1310"/><text x="43.9752%" y="895.50"></text></g><g><title>_int_malloc (78 samples, 0.01%)</title><rect x="43.9420%" y="885" width="0.0121%" height="15" fill="rgb(217,70,32)" fg:x="282783" fg:w="78"/><text x="44.1920%" y="895.50"></text></g><g><title>[libunix_jni.so] (73,869 samples, 11.48%)</title><rect x="32.4799%" y="949" width="11.4786%" height="15" fill="rgb(234,18,33)" fg:x="209020" fg:w="73869"/><text x="32.7299%" y="959.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (187 samples, 0.03%)</title><rect x="43.9294%" y="933" width="0.0291%" height="15" fill="rgb(234,12,49)" fg:x="282702" fg:w="187"/><text x="44.1794%" y="943.50"></text></g><g><title>operator new (168 samples, 0.03%)</title><rect x="43.9324%" y="917" width="0.0261%" height="15" fill="rgb(236,10,21)" fg:x="282721" fg:w="168"/><text x="44.1824%" y="927.50"></text></g><g><title>__GI___libc_malloc (152 samples, 0.02%)</title><rect x="43.9348%" y="901" width="0.0236%" height="15" fill="rgb(248,182,45)" fg:x="282737" fg:w="152"/><text x="44.1848%" y="911.50"></text></g><g><title>InstanceKlass::link_class_impl (86 samples, 0.01%)</title><rect x="52.4094%" y="901" width="0.0134%" height="15" fill="rgb(217,95,36)" fg:x="337274" fg:w="86"/><text x="52.6594%" y="911.50"></text></g><g><title>InterpreterRuntime::_new (138 samples, 0.02%)</title><rect x="52.4020%" y="933" width="0.0214%" height="15" fill="rgb(212,110,31)" fg:x="337226" fg:w="138"/><text x="52.6520%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (90 samples, 0.01%)</title><rect x="52.4094%" y="917" width="0.0140%" height="15" fill="rgb(206,32,53)" fg:x="337274" fg:w="90"/><text x="52.6594%" y="927.50"></text></g><g><title>InstanceKlass::allocate_objArray (94 samples, 0.01%)</title><rect x="52.4296%" y="917" width="0.0146%" height="15" fill="rgb(246,141,37)" fg:x="337404" fg:w="94"/><text x="52.6796%" y="927.50"></text></g><g><title>InterpreterRuntime::anewarray (145 samples, 0.02%)</title><rect x="52.4234%" y="933" width="0.0225%" height="15" fill="rgb(219,16,7)" fg:x="337364" fg:w="145"/><text x="52.6734%" y="943.50"></text></g><g><title>CompileBroker::compile_method_base (73 samples, 0.01%)</title><rect x="52.4811%" y="821" width="0.0113%" height="15" fill="rgb(230,205,45)" fg:x="337735" fg:w="73"/><text x="52.7311%" y="831.50"></text></g><g><title>CompileBroker::compile_method (91 samples, 0.01%)</title><rect x="52.4795%" y="837" width="0.0141%" height="15" fill="rgb(231,43,49)" fg:x="337725" fg:w="91"/><text x="52.7295%" y="847.50"></text></g><g><title>TieredThresholdPolicy::event (219 samples, 0.03%)</title><rect x="52.4599%" y="901" width="0.0340%" height="15" fill="rgb(212,106,34)" fg:x="337599" fg:w="219"/><text x="52.7099%" y="911.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (185 samples, 0.03%)</title><rect x="52.4652%" y="885" width="0.0287%" height="15" fill="rgb(206,83,17)" fg:x="337633" fg:w="185"/><text x="52.7152%" y="895.50"></text></g><g><title>TieredThresholdPolicy::compile (98 samples, 0.02%)</title><rect x="52.4787%" y="869" width="0.0152%" height="15" fill="rgb(244,154,49)" fg:x="337720" fg:w="98"/><text x="52.7287%" y="879.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (95 samples, 0.01%)</title><rect x="52.4792%" y="853" width="0.0148%" height="15" fill="rgb(244,149,49)" fg:x="337723" fg:w="95"/><text x="52.7292%" y="863.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (266 samples, 0.04%)</title><rect x="52.4534%" y="917" width="0.0413%" height="15" fill="rgb(227,134,18)" fg:x="337557" fg:w="266"/><text x="52.7034%" y="927.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (267 samples, 0.04%)</title><rect x="52.4534%" y="933" width="0.0415%" height="15" fill="rgb(237,116,36)" fg:x="337557" fg:w="267"/><text x="52.7034%" y="943.50"></text></g><g><title>InterpreterRuntime::ldc (106 samples, 0.02%)</title><rect x="52.4949%" y="933" width="0.0165%" height="15" fill="rgb(205,129,40)" fg:x="337824" fg:w="106"/><text x="52.7449%" y="943.50"></text></g><g><title>InstanceKlass::initialize_impl (75 samples, 0.01%)</title><rect x="52.5749%" y="869" width="0.0117%" height="15" fill="rgb(236,178,4)" fg:x="338339" fg:w="75"/><text x="52.8249%" y="879.50"></text></g><g><title>LinkResolver::resolve_static_call (96 samples, 0.01%)</title><rect x="52.5748%" y="885" width="0.0149%" height="15" fill="rgb(251,76,53)" fg:x="338338" fg:w="96"/><text x="52.8248%" y="895.50"></text></g><g><title>LinkResolver::resolve_invoke (304 samples, 0.05%)</title><rect x="52.5445%" y="901" width="0.0472%" height="15" fill="rgb(242,92,40)" fg:x="338143" fg:w="304"/><text x="52.7945%" y="911.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (393 samples, 0.06%)</title><rect x="52.5348%" y="917" width="0.0611%" height="15" fill="rgb(209,45,30)" fg:x="338081" fg:w="393"/><text x="52.7848%" y="927.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (69 samples, 0.01%)</title><rect x="52.5962%" y="869" width="0.0107%" height="15" fill="rgb(218,157,36)" fg:x="338476" fg:w="69"/><text x="52.8462%" y="879.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (90 samples, 0.01%)</title><rect x="52.5959%" y="917" width="0.0140%" height="15" fill="rgb(222,186,16)" fg:x="338474" fg:w="90"/><text x="52.8459%" y="927.50"></text></g><g><title>LinkResolver::resolve_invoke (88 samples, 0.01%)</title><rect x="52.5962%" y="901" width="0.0137%" height="15" fill="rgb(254,72,35)" fg:x="338476" fg:w="88"/><text x="52.8462%" y="911.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (88 samples, 0.01%)</title><rect x="52.5962%" y="885" width="0.0137%" height="15" fill="rgb(224,25,35)" fg:x="338476" fg:w="88"/><text x="52.8462%" y="895.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (546 samples, 0.08%)</title><rect x="52.5252%" y="933" width="0.0848%" height="15" fill="rgb(206,135,52)" fg:x="338019" fg:w="546"/><text x="52.7752%" y="943.50"></text></g><g><title>JVM_Clone (84 samples, 0.01%)</title><rect x="52.6169%" y="933" width="0.0131%" height="15" fill="rgb(229,174,47)" fg:x="338609" fg:w="84"/><text x="52.8669%" y="943.50"></text></g><g><title>JVM_MonitorWait (66 samples, 0.01%)</title><rect x="52.6829%" y="933" width="0.0103%" height="15" fill="rgb(242,184,21)" fg:x="339034" fg:w="66"/><text x="52.9329%" y="943.50"></text></g><g><title>ObjectSynchronizer::wait (66 samples, 0.01%)</title><rect x="52.6829%" y="917" width="0.0103%" height="15" fill="rgb(213,22,45)" fg:x="339034" fg:w="66"/><text x="52.9329%" y="927.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (389 samples, 0.06%)</title><rect x="52.7101%" y="805" width="0.0604%" height="15" fill="rgb(237,81,54)" fg:x="339209" fg:w="389"/><text x="52.9601%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (337 samples, 0.05%)</title><rect x="52.7182%" y="789" width="0.0524%" height="15" fill="rgb(248,177,18)" fg:x="339261" fg:w="337"/><text x="52.9682%" y="799.50"></text></g><g><title>ClassFileParser::parse_constant_pool (400 samples, 0.06%)</title><rect x="52.7089%" y="821" width="0.0622%" height="15" fill="rgb(254,31,16)" fg:x="339201" fg:w="400"/><text x="52.9589%" y="831.50"></text></g><g><title>ClassFileParser::parse_method (100 samples, 0.02%)</title><rect x="52.7724%" y="805" width="0.0155%" height="15" fill="rgb(235,20,31)" fg:x="339610" fg:w="100"/><text x="53.0224%" y="815.50"></text></g><g><title>ClassFileParser::parse_methods (102 samples, 0.02%)</title><rect x="52.7723%" y="821" width="0.0158%" height="15" fill="rgb(240,56,43)" fg:x="339609" fg:w="102"/><text x="53.0223%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (530 samples, 0.08%)</title><rect x="52.7071%" y="853" width="0.0824%" height="15" fill="rgb(237,197,51)" fg:x="339190" fg:w="530"/><text x="52.9571%" y="863.50"></text></g><g><title>ClassFileParser::parse_stream (530 samples, 0.08%)</title><rect x="52.7071%" y="837" width="0.0824%" height="15" fill="rgb(241,162,44)" fg:x="339190" fg:w="530"/><text x="52.9571%" y="847.50"></text></g><g><title>ClassFileParser::fill_instance_klass (81 samples, 0.01%)</title><rect x="52.7895%" y="837" width="0.0126%" height="15" fill="rgb(224,23,20)" fg:x="339720" fg:w="81"/><text x="53.0395%" y="847.50"></text></g><g><title>ClassFileParser::create_instance_klass (87 samples, 0.01%)</title><rect x="52.7895%" y="853" width="0.0135%" height="15" fill="rgb(250,109,34)" fg:x="339720" fg:w="87"/><text x="53.0395%" y="863.50"></text></g><g><title>KlassFactory::create_from_stream (650 samples, 0.10%)</title><rect x="52.7070%" y="869" width="0.1010%" height="15" fill="rgb(214,175,50)" fg:x="339189" fg:w="650"/><text x="52.9570%" y="879.50"></text></g><g><title>JVM_DefineClassWithSource (694 samples, 0.11%)</title><rect x="52.7059%" y="917" width="0.1078%" height="15" fill="rgb(213,182,5)" fg:x="339182" fg:w="694"/><text x="52.9559%" y="927.50"></text></g><g><title>jvm_define_class_common (694 samples, 0.11%)</title><rect x="52.7059%" y="901" width="0.1078%" height="15" fill="rgb(209,199,19)" fg:x="339182" fg:w="694"/><text x="52.9559%" y="911.50"></text></g><g><title>SystemDictionary::resolve_from_stream (689 samples, 0.11%)</title><rect x="52.7067%" y="885" width="0.1071%" height="15" fill="rgb(236,224,42)" fg:x="339187" fg:w="689"/><text x="52.9567%" y="895.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (708 samples, 0.11%)</title><rect x="52.7059%" y="933" width="0.1100%" height="15" fill="rgb(246,226,29)" fg:x="339182" fg:w="708"/><text x="52.9559%" y="943.50"></text></g><g><title>__x64_sys_vfork (117 samples, 0.02%)</title><rect x="52.8433%" y="853" width="0.0182%" height="15" fill="rgb(227,223,11)" fg:x="340066" fg:w="117"/><text x="53.0933%" y="863.50"></text></g><g><title>kernel_clone (117 samples, 0.02%)</title><rect x="52.8433%" y="837" width="0.0182%" height="15" fill="rgb(219,7,51)" fg:x="340066" fg:w="117"/><text x="53.0933%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.02%)</title><rect x="52.8433%" y="885" width="0.0188%" height="15" fill="rgb(245,167,10)" fg:x="340066" fg:w="121"/><text x="53.0933%" y="895.50"></text></g><g><title>do_syscall_64 (121 samples, 0.02%)</title><rect x="52.8433%" y="869" width="0.0188%" height="15" fill="rgb(237,224,16)" fg:x="340066" fg:w="121"/><text x="53.0933%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (324 samples, 0.05%)</title><rect x="52.8666%" y="837" width="0.0503%" height="15" fill="rgb(226,132,13)" fg:x="340216" fg:w="324"/><text x="53.1166%" y="847.50"></text></g><g><title>x86_pmu_enable (312 samples, 0.05%)</title><rect x="52.8684%" y="821" width="0.0485%" height="15" fill="rgb(214,140,3)" fg:x="340228" fg:w="312"/><text x="53.1184%" y="831.50"></text></g><g><title>intel_pmu_enable_all (312 samples, 0.05%)</title><rect x="52.8684%" y="805" width="0.0485%" height="15" fill="rgb(221,177,4)" fg:x="340228" fg:w="312"/><text x="53.1184%" y="815.50"></text></g><g><title>native_write_msr (311 samples, 0.05%)</title><rect x="52.8686%" y="789" width="0.0483%" height="15" fill="rgb(238,139,3)" fg:x="340229" fg:w="311"/><text x="53.1186%" y="799.50"></text></g><g><title>finish_task_switch.isra.0 (340 samples, 0.05%)</title><rect x="52.8649%" y="853" width="0.0528%" height="15" fill="rgb(216,17,39)" fg:x="340205" fg:w="340"/><text x="53.1149%" y="863.50"></text></g><g><title>schedule_tail (358 samples, 0.06%)</title><rect x="52.8622%" y="869" width="0.0556%" height="15" fill="rgb(238,120,9)" fg:x="340188" fg:w="358"/><text x="53.1122%" y="879.50"></text></g><g><title>__libc_vfork (486 samples, 0.08%)</title><rect x="52.8428%" y="901" width="0.0755%" height="15" fill="rgb(244,92,53)" fg:x="340063" fg:w="486"/><text x="53.0928%" y="911.50"></text></g><g><title>ret_from_fork (362 samples, 0.06%)</title><rect x="52.8621%" y="885" width="0.0563%" height="15" fill="rgb(224,148,33)" fg:x="340187" fg:w="362"/><text x="53.1121%" y="895.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (250 samples, 0.04%)</title><rect x="52.9426%" y="533" width="0.0388%" height="15" fill="rgb(243,6,36)" fg:x="340705" fg:w="250"/><text x="53.1926%" y="543.50"></text></g><g><title>_ZdlPv (249 samples, 0.04%)</title><rect x="52.9427%" y="517" width="0.0387%" height="15" fill="rgb(230,102,11)" fg:x="340706" fg:w="249"/><text x="53.1927%" y="527.50"></text></g><g><title>_ZdlPv (248 samples, 0.04%)</title><rect x="52.9429%" y="501" width="0.0385%" height="15" fill="rgb(234,148,36)" fg:x="340707" fg:w="248"/><text x="53.1929%" y="511.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (245 samples, 0.04%)</title><rect x="52.9433%" y="485" width="0.0381%" height="15" fill="rgb(251,153,25)" fg:x="340710" fg:w="245"/><text x="53.1933%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (208 samples, 0.03%)</title><rect x="52.9491%" y="469" width="0.0323%" height="15" fill="rgb(215,129,8)" fg:x="340747" fg:w="208"/><text x="53.1991%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (312 samples, 0.05%)</title><rect x="52.9413%" y="549" width="0.0485%" height="15" fill="rgb(224,128,35)" fg:x="340697" fg:w="312"/><text x="53.1913%" y="559.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (335 samples, 0.05%)</title><rect x="52.9381%" y="565" width="0.0521%" height="15" fill="rgb(237,56,52)" fg:x="340676" fg:w="335"/><text x="53.1881%" y="575.50"></text></g><g><title>_ZdlPv (78 samples, 0.01%)</title><rect x="52.9932%" y="485" width="0.0121%" height="15" fill="rgb(234,213,19)" fg:x="341031" fg:w="78"/><text x="53.2432%" y="495.50"></text></g><g><title>_ZdlPv (90 samples, 0.01%)</title><rect x="52.9931%" y="501" width="0.0140%" height="15" fill="rgb(252,82,23)" fg:x="341030" fg:w="90"/><text x="53.2431%" y="511.50"></text></g><g><title>_ZdlPv (115 samples, 0.02%)</title><rect x="52.9921%" y="517" width="0.0179%" height="15" fill="rgb(254,201,21)" fg:x="341024" fg:w="115"/><text x="53.2421%" y="527.50"></text></g><g><title>_ZdlPv (127 samples, 0.02%)</title><rect x="52.9912%" y="533" width="0.0197%" height="15" fill="rgb(250,186,11)" fg:x="341018" fg:w="127"/><text x="53.2412%" y="543.50"></text></g><g><title>_ZdlPv (135 samples, 0.02%)</title><rect x="52.9909%" y="549" width="0.0210%" height="15" fill="rgb(211,174,5)" fg:x="341016" fg:w="135"/><text x="53.2409%" y="559.50"></text></g><g><title>_ZdlPv (151 samples, 0.02%)</title><rect x="52.9903%" y="565" width="0.0235%" height="15" fill="rgb(214,121,10)" fg:x="341012" fg:w="151"/><text x="53.2403%" y="575.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (76 samples, 0.01%)</title><rect x="53.0162%" y="517" width="0.0118%" height="15" fill="rgb(241,66,2)" fg:x="341179" fg:w="76"/><text x="53.2662%" y="527.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (65 samples, 0.01%)</title><rect x="53.0179%" y="501" width="0.0101%" height="15" fill="rgb(220,167,19)" fg:x="341190" fg:w="65"/><text x="53.2679%" y="511.50"></text></g><g><title>_ZdlPv (83 samples, 0.01%)</title><rect x="53.0158%" y="533" width="0.0129%" height="15" fill="rgb(231,54,50)" fg:x="341176" fg:w="83"/><text x="53.2658%" y="543.50"></text></g><g><title>_ZdlPv (85 samples, 0.01%)</title><rect x="53.0158%" y="549" width="0.0132%" height="15" fill="rgb(239,217,53)" fg:x="341176" fg:w="85"/><text x="53.2658%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (104 samples, 0.02%)</title><rect x="53.0792%" y="373" width="0.0162%" height="15" fill="rgb(248,8,0)" fg:x="341584" fg:w="104"/><text x="53.3292%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (92 samples, 0.01%)</title><rect x="53.0810%" y="357" width="0.0143%" height="15" fill="rgb(229,118,37)" fg:x="341596" fg:w="92"/><text x="53.3310%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (173 samples, 0.03%)</title><rect x="53.0691%" y="405" width="0.0269%" height="15" fill="rgb(253,223,43)" fg:x="341519" fg:w="173"/><text x="53.3191%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (156 samples, 0.02%)</title><rect x="53.0717%" y="389" width="0.0242%" height="15" fill="rgb(211,77,36)" fg:x="341536" fg:w="156"/><text x="53.3217%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (201 samples, 0.03%)</title><rect x="53.0652%" y="437" width="0.0312%" height="15" fill="rgb(219,3,53)" fg:x="341494" fg:w="201"/><text x="53.3152%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (184 samples, 0.03%)</title><rect x="53.0678%" y="421" width="0.0286%" height="15" fill="rgb(244,45,42)" fg:x="341511" fg:w="184"/><text x="53.3178%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (233 samples, 0.04%)</title><rect x="53.0605%" y="453" width="0.0362%" height="15" fill="rgb(225,95,27)" fg:x="341464" fg:w="233"/><text x="53.3105%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (261 samples, 0.04%)</title><rect x="53.0566%" y="469" width="0.0406%" height="15" fill="rgb(207,74,8)" fg:x="341439" fg:w="261"/><text x="53.3066%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (282 samples, 0.04%)</title><rect x="53.0541%" y="485" width="0.0438%" height="15" fill="rgb(243,63,36)" fg:x="341423" fg:w="282"/><text x="53.3041%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (307 samples, 0.05%)</title><rect x="53.0512%" y="501" width="0.0477%" height="15" fill="rgb(211,180,12)" fg:x="341404" fg:w="307"/><text x="53.3012%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (343 samples, 0.05%)</title><rect x="53.0457%" y="517" width="0.0533%" height="15" fill="rgb(254,166,49)" fg:x="341369" fg:w="343"/><text x="53.2957%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (413 samples, 0.06%)</title><rect x="53.0360%" y="533" width="0.0642%" height="15" fill="rgb(205,19,0)" fg:x="341306" fg:w="413"/><text x="53.2860%" y="543.50"></text></g><g><title>_ZdlPv (1,079 samples, 0.17%)</title><rect x="52.9348%" y="581" width="0.1677%" height="15" fill="rgb(224,172,32)" fg:x="340655" fg:w="1079"/><text x="53.1848%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (564 samples, 0.09%)</title><rect x="53.0148%" y="565" width="0.0876%" height="15" fill="rgb(254,136,30)" fg:x="341170" fg:w="564"/><text x="53.2648%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (471 samples, 0.07%)</title><rect x="53.0293%" y="549" width="0.0732%" height="15" fill="rgb(246,19,35)" fg:x="341263" fg:w="471"/><text x="53.2793%" y="559.50"></text></g><g><title>_ZdlPv (1,100 samples, 0.17%)</title><rect x="52.9326%" y="613" width="0.1709%" height="15" fill="rgb(219,24,36)" fg:x="340641" fg:w="1100"/><text x="53.1826%" y="623.50"></text></g><g><title>_ZdlPv (1,100 samples, 0.17%)</title><rect x="52.9326%" y="597" width="0.1709%" height="15" fill="rgb(251,55,1)" fg:x="340641" fg:w="1100"/><text x="53.1826%" y="607.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (125 samples, 0.02%)</title><rect x="53.1098%" y="517" width="0.0194%" height="15" fill="rgb(218,117,39)" fg:x="341781" fg:w="125"/><text x="53.3598%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (137 samples, 0.02%)</title><rect x="53.1084%" y="533" width="0.0213%" height="15" fill="rgb(248,169,11)" fg:x="341772" fg:w="137"/><text x="53.3584%" y="543.50"></text></g><g><title>_ZdlPv (67 samples, 0.01%)</title><rect x="53.1297%" y="533" width="0.0104%" height="15" fill="rgb(244,40,44)" fg:x="341909" fg:w="67"/><text x="53.3797%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (105 samples, 0.02%)</title><rect x="53.1422%" y="485" width="0.0163%" height="15" fill="rgb(234,62,37)" fg:x="341990" fg:w="105"/><text x="53.3922%" y="495.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (95 samples, 0.01%)</title><rect x="53.1438%" y="469" width="0.0148%" height="15" fill="rgb(207,117,42)" fg:x="342000" fg:w="95"/><text x="53.3938%" y="479.50"></text></g><g><title>_ZdlPv (113 samples, 0.02%)</title><rect x="53.1418%" y="501" width="0.0176%" height="15" fill="rgb(213,43,2)" fg:x="341987" fg:w="113"/><text x="53.3918%" y="511.50"></text></g><g><title>_ZdlPv (114 samples, 0.02%)</title><rect x="53.1418%" y="517" width="0.0177%" height="15" fill="rgb(244,202,51)" fg:x="341987" fg:w="114"/><text x="53.3918%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (83 samples, 0.01%)</title><rect x="53.1850%" y="405" width="0.0129%" height="15" fill="rgb(253,174,46)" fg:x="342265" fg:w="83"/><text x="53.4350%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.02%)</title><rect x="53.1808%" y="421" width="0.0174%" height="15" fill="rgb(251,23,1)" fg:x="342238" fg:w="112"/><text x="53.4308%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (133 samples, 0.02%)</title><rect x="53.1784%" y="437" width="0.0207%" height="15" fill="rgb(253,26,1)" fg:x="342223" fg:w="133"/><text x="53.4284%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (149 samples, 0.02%)</title><rect x="53.1771%" y="453" width="0.0232%" height="15" fill="rgb(216,89,31)" fg:x="342214" fg:w="149"/><text x="53.4271%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (235 samples, 0.04%)</title><rect x="53.1638%" y="501" width="0.0365%" height="15" fill="rgb(209,109,5)" fg:x="342129" fg:w="235"/><text x="53.4138%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (198 samples, 0.03%)</title><rect x="53.1696%" y="485" width="0.0308%" height="15" fill="rgb(229,63,13)" fg:x="342166" fg:w="198"/><text x="53.4196%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (168 samples, 0.03%)</title><rect x="53.1743%" y="469" width="0.0261%" height="15" fill="rgb(238,137,54)" fg:x="342196" fg:w="168"/><text x="53.4243%" y="479.50"></text></g><g><title>_ZdlPv (611 samples, 0.09%)</title><rect x="53.1059%" y="549" width="0.0949%" height="15" fill="rgb(228,1,9)" fg:x="341756" fg:w="611"/><text x="53.3559%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (385 samples, 0.06%)</title><rect x="53.1410%" y="533" width="0.0598%" height="15" fill="rgb(249,120,48)" fg:x="341982" fg:w="385"/><text x="53.3910%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (266 samples, 0.04%)</title><rect x="53.1595%" y="517" width="0.0413%" height="15" fill="rgb(209,72,36)" fg:x="342101" fg:w="266"/><text x="53.4095%" y="527.50"></text></g><g><title>_ZdlPv (617 samples, 0.10%)</title><rect x="53.1054%" y="565" width="0.0959%" height="15" fill="rgb(247,98,49)" fg:x="341753" fg:w="617"/><text x="53.3554%" y="575.50"></text></g><g><title>_ZdlPv (618 samples, 0.10%)</title><rect x="53.1054%" y="581" width="0.0960%" height="15" fill="rgb(233,75,36)" fg:x="341753" fg:w="618"/><text x="53.3554%" y="591.50"></text></g><g><title>_ZdlPv (619 samples, 0.10%)</title><rect x="53.1054%" y="597" width="0.0962%" height="15" fill="rgb(225,14,24)" fg:x="341753" fg:w="619"/><text x="53.3554%" y="607.50"></text></g><g><title>cshook_security_sb_free_security (650 samples, 0.10%)</title><rect x="53.1049%" y="613" width="0.1010%" height="15" fill="rgb(237,193,20)" fg:x="341750" fg:w="650"/><text x="53.3549%" y="623.50"></text></g><g><title>cshook_security_file_permission (1,771 samples, 0.28%)</title><rect x="52.9320%" y="661" width="0.2752%" height="15" fill="rgb(239,122,19)" fg:x="340637" fg:w="1771"/><text x="53.1820%" y="671.50"></text></g><g><title>cshook_security_sb_free_security (1,769 samples, 0.27%)</title><rect x="52.9323%" y="645" width="0.2749%" height="15" fill="rgb(231,220,10)" fg:x="340639" fg:w="1769"/><text x="53.1823%" y="655.50"></text></g><g><title>cshook_security_sb_free_security (1,768 samples, 0.27%)</title><rect x="52.9325%" y="629" width="0.2747%" height="15" fill="rgb(220,66,15)" fg:x="340640" fg:w="1768"/><text x="53.1825%" y="639.50"></text></g><g><title>exec_binprm (1,850 samples, 0.29%)</title><rect x="52.9205%" y="757" width="0.2875%" height="15" fill="rgb(215,171,52)" fg:x="340563" fg:w="1850"/><text x="53.1705%" y="767.50"></text></g><g><title>search_binary_handler (1,848 samples, 0.29%)</title><rect x="52.9208%" y="741" width="0.2872%" height="15" fill="rgb(241,169,50)" fg:x="340565" fg:w="1848"/><text x="53.1708%" y="751.50"></text></g><g><title>security_bprm_check (1,785 samples, 0.28%)</title><rect x="52.9306%" y="725" width="0.2774%" height="15" fill="rgb(236,189,0)" fg:x="340628" fg:w="1785"/><text x="53.1806%" y="735.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,783 samples, 0.28%)</title><rect x="52.9309%" y="709" width="0.2771%" height="15" fill="rgb(217,147,20)" fg:x="340630" fg:w="1783"/><text x="53.1809%" y="719.50"></text></g><g><title>cshook_security_bprm_check_security (1,782 samples, 0.28%)</title><rect x="52.9311%" y="693" width="0.2769%" height="15" fill="rgb(206,188,39)" fg:x="340631" fg:w="1782"/><text x="53.1811%" y="703.50"></text></g><g><title>cshook_security_file_permission (1,782 samples, 0.28%)</title><rect x="52.9311%" y="677" width="0.2769%" height="15" fill="rgb(227,118,25)" fg:x="340631" fg:w="1782"/><text x="53.1811%" y="687.50"></text></g><g><title>bprm_execve.part.0 (1,906 samples, 0.30%)</title><rect x="52.9197%" y="773" width="0.2962%" height="15" fill="rgb(248,171,40)" fg:x="340558" fg:w="1906"/><text x="53.1697%" y="783.50"></text></g><g><title>bprm_execve (1,910 samples, 0.30%)</title><rect x="52.9197%" y="789" width="0.2968%" height="15" fill="rgb(251,90,54)" fg:x="340558" fg:w="1910"/><text x="53.1697%" y="799.50"></text></g><g><title>JDK_execvpe (1,946 samples, 0.30%)</title><rect x="52.9183%" y="885" width="0.3024%" height="15" fill="rgb(234,11,46)" fg:x="340549" fg:w="1946"/><text x="53.1683%" y="895.50"></text></g><g><title>__GI_execve (1,946 samples, 0.30%)</title><rect x="52.9183%" y="869" width="0.3024%" height="15" fill="rgb(229,134,13)" fg:x="340549" fg:w="1946"/><text x="53.1683%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,943 samples, 0.30%)</title><rect x="52.9188%" y="853" width="0.3019%" height="15" fill="rgb(223,129,3)" fg:x="340552" fg:w="1943"/><text x="53.1688%" y="863.50"></text></g><g><title>do_syscall_64 (1,943 samples, 0.30%)</title><rect x="52.9188%" y="837" width="0.3019%" height="15" fill="rgb(221,124,13)" fg:x="340552" fg:w="1943"/><text x="53.1688%" y="847.50"></text></g><g><title>__x64_sys_execve (1,943 samples, 0.30%)</title><rect x="52.9188%" y="821" width="0.3019%" height="15" fill="rgb(234,3,18)" fg:x="340552" fg:w="1943"/><text x="53.1688%" y="831.50"></text></g><g><title>do_execveat_common.isra.0 (1,943 samples, 0.30%)</title><rect x="52.9188%" y="805" width="0.3019%" height="15" fill="rgb(249,199,20)" fg:x="340552" fg:w="1943"/><text x="53.1688%" y="815.50"></text></g><g><title>closeDescriptors (130 samples, 0.02%)</title><rect x="53.2272%" y="885" width="0.0202%" height="15" fill="rgb(224,134,6)" fg:x="342537" fg:w="130"/><text x="53.4772%" y="895.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (2,677 samples, 0.42%)</title><rect x="52.8333%" y="933" width="0.4160%" height="15" fill="rgb(254,83,26)" fg:x="340002" fg:w="2677"/><text x="53.0833%" y="943.50"></text></g><g><title>vforkChild (2,617 samples, 0.41%)</title><rect x="52.8426%" y="917" width="0.4067%" height="15" fill="rgb(217,88,9)" fg:x="340062" fg:w="2617"/><text x="53.0926%" y="927.50"></text></g><g><title>childProcess (2,130 samples, 0.33%)</title><rect x="52.9183%" y="901" width="0.3310%" height="15" fill="rgb(225,73,2)" fg:x="340549" fg:w="2130"/><text x="53.1683%" y="911.50"></text></g><g><title>TieredThresholdPolicy::event (88 samples, 0.01%)</title><rect x="53.2787%" y="917" width="0.0137%" height="15" fill="rgb(226,44,39)" fg:x="342868" fg:w="88"/><text x="53.5287%" y="927.50"></text></g><g><title>Runtime1::counter_overflow (183 samples, 0.03%)</title><rect x="53.2709%" y="933" width="0.0284%" height="15" fill="rgb(228,53,17)" fg:x="342818" fg:w="183"/><text x="53.5209%" y="943.50"></text></g><g><title>Runtime1::monitorenter (104 samples, 0.02%)</title><rect x="53.3001%" y="933" width="0.0162%" height="15" fill="rgb(212,27,27)" fg:x="343006" fg:w="104"/><text x="53.5501%" y="943.50"></text></g><g><title>SharedRuntime::complete_monitor_locking_C (68 samples, 0.01%)</title><rect x="53.3256%" y="933" width="0.0106%" height="15" fill="rgb(241,50,6)" fg:x="343170" fg:w="68"/><text x="53.5756%" y="943.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (96 samples, 0.01%)</title><rect x="53.3525%" y="933" width="0.0149%" height="15" fill="rgb(225,28,51)" fg:x="343343" fg:w="96"/><text x="53.6025%" y="943.50"></text></g><g><title>SystemDictionary::parse_stream (92 samples, 0.01%)</title><rect x="53.3531%" y="917" width="0.0143%" height="15" fill="rgb(215,33,16)" fg:x="343347" fg:w="92"/><text x="53.6031%" y="927.50"></text></g><g><title>KlassFactory::create_from_stream (67 samples, 0.01%)</title><rect x="53.3570%" y="901" width="0.0104%" height="15" fill="rgb(243,40,39)" fg:x="343372" fg:w="67"/><text x="53.6070%" y="911.50"></text></g><g><title>__perf_event_task_sched_in (239 samples, 0.04%)</title><rect x="53.3845%" y="677" width="0.0371%" height="15" fill="rgb(225,11,42)" fg:x="343549" fg:w="239"/><text x="53.6345%" y="687.50"></text></g><g><title>x86_pmu_enable (233 samples, 0.04%)</title><rect x="53.3854%" y="661" width="0.0362%" height="15" fill="rgb(241,220,38)" fg:x="343555" fg:w="233"/><text x="53.6354%" y="671.50"></text></g><g><title>intel_pmu_enable_all (233 samples, 0.04%)</title><rect x="53.3854%" y="645" width="0.0362%" height="15" fill="rgb(244,52,35)" fg:x="343555" fg:w="233"/><text x="53.6354%" y="655.50"></text></g><g><title>native_write_msr (232 samples, 0.04%)</title><rect x="53.3856%" y="629" width="0.0361%" height="15" fill="rgb(246,42,46)" fg:x="343556" fg:w="232"/><text x="53.6356%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (243 samples, 0.04%)</title><rect x="53.3843%" y="693" width="0.0378%" height="15" fill="rgb(205,184,13)" fg:x="343548" fg:w="243"/><text x="53.6343%" y="703.50"></text></g><g><title>do_futex (295 samples, 0.05%)</title><rect x="53.3789%" y="773" width="0.0458%" height="15" fill="rgb(209,48,36)" fg:x="343513" fg:w="295"/><text x="53.6289%" y="783.50"></text></g><g><title>futex_wait (293 samples, 0.05%)</title><rect x="53.3792%" y="757" width="0.0455%" height="15" fill="rgb(244,34,51)" fg:x="343515" fg:w="293"/><text x="53.6292%" y="767.50"></text></g><g><title>futex_wait_queue_me (289 samples, 0.04%)</title><rect x="53.3798%" y="741" width="0.0449%" height="15" fill="rgb(221,107,33)" fg:x="343519" fg:w="289"/><text x="53.6298%" y="751.50"></text></g><g><title>schedule (287 samples, 0.04%)</title><rect x="53.3801%" y="725" width="0.0446%" height="15" fill="rgb(224,203,12)" fg:x="343521" fg:w="287"/><text x="53.6301%" y="735.50"></text></g><g><title>__schedule (285 samples, 0.04%)</title><rect x="53.3805%" y="709" width="0.0443%" height="15" fill="rgb(230,215,18)" fg:x="343523" fg:w="285"/><text x="53.6305%" y="719.50"></text></g><g><title>__x64_sys_futex (297 samples, 0.05%)</title><rect x="53.3787%" y="789" width="0.0462%" height="15" fill="rgb(206,185,35)" fg:x="343512" fg:w="297"/><text x="53.6287%" y="799.50"></text></g><g><title>do_syscall_64 (310 samples, 0.05%)</title><rect x="53.3787%" y="805" width="0.0482%" height="15" fill="rgb(228,140,34)" fg:x="343512" fg:w="310"/><text x="53.6287%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (313 samples, 0.05%)</title><rect x="53.3784%" y="821" width="0.0486%" height="15" fill="rgb(208,93,13)" fg:x="343510" fg:w="313"/><text x="53.6284%" y="831.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (323 samples, 0.05%)</title><rect x="53.3774%" y="869" width="0.0502%" height="15" fill="rgb(221,193,39)" fg:x="343503" fg:w="323"/><text x="53.6274%" y="879.50"></text></g><g><title>__futex_abstimed_wait_common (323 samples, 0.05%)</title><rect x="53.3774%" y="853" width="0.0502%" height="15" fill="rgb(241,132,34)" fg:x="343503" fg:w="323"/><text x="53.6274%" y="863.50"></text></g><g><title>__futex_abstimed_wait_common64 (323 samples, 0.05%)</title><rect x="53.3774%" y="837" width="0.0502%" height="15" fill="rgb(221,141,10)" fg:x="343503" fg:w="323"/><text x="53.6274%" y="847.50"></text></g><g><title>___pthread_cond_wait (325 samples, 0.05%)</title><rect x="53.3772%" y="901" width="0.0505%" height="15" fill="rgb(226,90,31)" fg:x="343502" fg:w="325"/><text x="53.6272%" y="911.50"></text></g><g><title>__pthread_cond_wait_common (325 samples, 0.05%)</title><rect x="53.3772%" y="885" width="0.0505%" height="15" fill="rgb(243,75,5)" fg:x="343502" fg:w="325"/><text x="53.6272%" y="895.50"></text></g><g><title>Parker::park (357 samples, 0.06%)</title><rect x="53.3739%" y="917" width="0.0555%" height="15" fill="rgb(227,156,21)" fg:x="343481" fg:w="357"/><text x="53.6239%" y="927.50"></text></g><g><title>Unsafe_Park (366 samples, 0.06%)</title><rect x="53.3727%" y="933" width="0.0569%" height="15" fill="rgb(250,195,8)" fg:x="343473" fg:w="366"/><text x="53.6227%" y="943.50"></text></g><g><title>ttwu_do_activate (74 samples, 0.01%)</title><rect x="53.4451%" y="773" width="0.0115%" height="15" fill="rgb(220,134,5)" fg:x="343939" fg:w="74"/><text x="53.6951%" y="783.50"></text></g><g><title>futex_wake (136 samples, 0.02%)</title><rect x="53.4372%" y="821" width="0.0211%" height="15" fill="rgb(246,106,34)" fg:x="343888" fg:w="136"/><text x="53.6872%" y="831.50"></text></g><g><title>wake_up_q (121 samples, 0.02%)</title><rect x="53.4395%" y="805" width="0.0188%" height="15" fill="rgb(205,1,4)" fg:x="343903" fg:w="121"/><text x="53.6895%" y="815.50"></text></g><g><title>try_to_wake_up (118 samples, 0.02%)</title><rect x="53.4400%" y="789" width="0.0183%" height="15" fill="rgb(224,151,29)" fg:x="343906" fg:w="118"/><text x="53.6900%" y="799.50"></text></g><g><title>do_futex (138 samples, 0.02%)</title><rect x="53.4370%" y="837" width="0.0214%" height="15" fill="rgb(251,196,0)" fg:x="343887" fg:w="138"/><text x="53.6870%" y="847.50"></text></g><g><title>__x64_sys_futex (141 samples, 0.02%)</title><rect x="53.4369%" y="853" width="0.0219%" height="15" fill="rgb(212,127,0)" fg:x="343886" fg:w="141"/><text x="53.6869%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (65 samples, 0.01%)</title><rect x="53.4602%" y="757" width="0.0101%" height="15" fill="rgb(236,71,53)" fg:x="344036" fg:w="65"/><text x="53.7102%" y="767.50"></text></g><g><title>finish_task_switch.isra.0 (70 samples, 0.01%)</title><rect x="53.4599%" y="773" width="0.0109%" height="15" fill="rgb(227,99,0)" fg:x="344034" fg:w="70"/><text x="53.7099%" y="783.50"></text></g><g><title>__schedule (78 samples, 0.01%)</title><rect x="53.4597%" y="789" width="0.0121%" height="15" fill="rgb(239,89,21)" fg:x="344033" fg:w="78"/><text x="53.7097%" y="799.50"></text></g><g><title>___pthread_cond_signal (234 samples, 0.04%)</title><rect x="53.4356%" y="917" width="0.0364%" height="15" fill="rgb(243,122,19)" fg:x="343878" fg:w="234"/><text x="53.6856%" y="927.50"></text></g><g><title>futex_wake (231 samples, 0.04%)</title><rect x="53.4361%" y="901" width="0.0359%" height="15" fill="rgb(229,192,45)" fg:x="343881" fg:w="231"/><text x="53.6861%" y="911.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (229 samples, 0.04%)</title><rect x="53.4364%" y="885" width="0.0356%" height="15" fill="rgb(235,165,35)" fg:x="343883" fg:w="229"/><text x="53.6864%" y="895.50"></text></g><g><title>do_syscall_64 (227 samples, 0.04%)</title><rect x="53.4367%" y="869" width="0.0353%" height="15" fill="rgb(253,202,0)" fg:x="343885" fg:w="227"/><text x="53.6867%" y="879.50"></text></g><g><title>syscall_exit_to_user_mode (83 samples, 0.01%)</title><rect x="53.4591%" y="853" width="0.0129%" height="15" fill="rgb(235,51,20)" fg:x="344029" fg:w="83"/><text x="53.7091%" y="863.50"></text></g><g><title>exit_to_user_mode_prepare (83 samples, 0.01%)</title><rect x="53.4591%" y="837" width="0.0129%" height="15" fill="rgb(218,95,46)" fg:x="344029" fg:w="83"/><text x="53.7091%" y="847.50"></text></g><g><title>exit_to_user_mode_loop (83 samples, 0.01%)</title><rect x="53.4591%" y="821" width="0.0129%" height="15" fill="rgb(212,81,10)" fg:x="344029" fg:w="83"/><text x="53.7091%" y="831.50"></text></g><g><title>schedule (80 samples, 0.01%)</title><rect x="53.4596%" y="805" width="0.0124%" height="15" fill="rgb(240,59,0)" fg:x="344032" fg:w="80"/><text x="53.7096%" y="815.50"></text></g><g><title>Unsafe_Unpark (272 samples, 0.04%)</title><rect x="53.4300%" y="933" width="0.0423%" height="15" fill="rgb(212,191,42)" fg:x="343842" fg:w="272"/><text x="53.6800%" y="943.50"></text></g><g><title>__mem_cgroup_charge (100 samples, 0.02%)</title><rect x="53.5379%" y="821" width="0.0155%" height="15" fill="rgb(233,140,3)" fg:x="344536" fg:w="100"/><text x="53.7879%" y="831.50"></text></g><g><title>clear_page_erms (136 samples, 0.02%)</title><rect x="53.5689%" y="773" width="0.0211%" height="15" fill="rgb(215,69,23)" fg:x="344736" fg:w="136"/><text x="53.8189%" y="783.50"></text></g><g><title>get_page_from_freelist (231 samples, 0.04%)</title><rect x="53.5663%" y="789" width="0.0359%" height="15" fill="rgb(240,202,20)" fg:x="344719" fg:w="231"/><text x="53.8163%" y="799.50"></text></g><g><title>rmqueue (76 samples, 0.01%)</title><rect x="53.5904%" y="773" width="0.0118%" height="15" fill="rgb(209,146,50)" fg:x="344874" fg:w="76"/><text x="53.8404%" y="783.50"></text></g><g><title>__alloc_pages (291 samples, 0.05%)</title><rect x="53.5585%" y="805" width="0.0452%" height="15" fill="rgb(253,102,54)" fg:x="344669" fg:w="291"/><text x="53.8085%" y="815.50"></text></g><g><title>alloc_pages_vma (337 samples, 0.05%)</title><rect x="53.5551%" y="821" width="0.0524%" height="15" fill="rgb(250,173,47)" fg:x="344647" fg:w="337"/><text x="53.8051%" y="831.50"></text></g><g><title>__pagevec_lru_add (65 samples, 0.01%)</title><rect x="53.6109%" y="789" width="0.0101%" height="15" fill="rgb(232,142,7)" fg:x="345006" fg:w="65"/><text x="53.8609%" y="799.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (83 samples, 0.01%)</title><rect x="53.6083%" y="821" width="0.0129%" height="15" fill="rgb(230,157,47)" fg:x="344989" fg:w="83"/><text x="53.8583%" y="831.50"></text></g><g><title>lru_cache_add (82 samples, 0.01%)</title><rect x="53.6084%" y="805" width="0.0127%" height="15" fill="rgb(214,177,35)" fg:x="344990" fg:w="82"/><text x="53.8584%" y="815.50"></text></g><g><title>do_anonymous_page (667 samples, 0.10%)</title><rect x="53.5279%" y="837" width="0.1036%" height="15" fill="rgb(234,119,46)" fg:x="344472" fg:w="667"/><text x="53.7779%" y="847.50"></text></g><g><title>handle_pte_fault (721 samples, 0.11%)</title><rect x="53.5222%" y="853" width="0.1120%" height="15" fill="rgb(241,180,50)" fg:x="344435" fg:w="721"/><text x="53.7722%" y="863.50"></text></g><g><title>__handle_mm_fault (791 samples, 0.12%)</title><rect x="53.5127%" y="869" width="0.1229%" height="15" fill="rgb(221,54,25)" fg:x="344374" fg:w="791"/><text x="53.7627%" y="879.50"></text></g><g><title>handle_mm_fault (873 samples, 0.14%)</title><rect x="53.5026%" y="885" width="0.1357%" height="15" fill="rgb(209,157,44)" fg:x="344309" fg:w="873"/><text x="53.7526%" y="895.50"></text></g><g><title>do_user_addr_fault (972 samples, 0.15%)</title><rect x="53.4913%" y="901" width="0.1510%" height="15" fill="rgb(246,115,41)" fg:x="344236" fg:w="972"/><text x="53.7413%" y="911.50"></text></g><g><title>asm_exc_page_fault (1,037 samples, 0.16%)</title><rect x="53.4875%" y="933" width="0.1611%" height="15" fill="rgb(229,86,1)" fg:x="344212" fg:w="1037"/><text x="53.7375%" y="943.50"></text></g><g><title>exc_page_fault (1,026 samples, 0.16%)</title><rect x="53.4892%" y="917" width="0.1594%" height="15" fill="rgb(240,108,53)" fg:x="344223" fg:w="1026"/><text x="53.7392%" y="927.50"></text></g><g><title>__hrtimer_run_queues (75 samples, 0.01%)</title><rect x="53.6499%" y="869" width="0.0117%" height="15" fill="rgb(227,134,2)" fg:x="345257" fg:w="75"/><text x="53.8999%" y="879.50"></text></g><g><title>__sysvec_apic_timer_interrupt (89 samples, 0.01%)</title><rect x="53.6491%" y="901" width="0.0138%" height="15" fill="rgb(213,129,25)" fg:x="345252" fg:w="89"/><text x="53.8991%" y="911.50"></text></g><g><title>hrtimer_interrupt (87 samples, 0.01%)</title><rect x="53.6494%" y="885" width="0.0135%" height="15" fill="rgb(226,35,21)" fg:x="345254" fg:w="87"/><text x="53.8994%" y="895.50"></text></g><g><title>irq_exit_rcu (69 samples, 0.01%)</title><rect x="53.6633%" y="901" width="0.0107%" height="15" fill="rgb(208,129,26)" fg:x="345343" fg:w="69"/><text x="53.9133%" y="911.50"></text></g><g><title>__softirqentry_text_start (67 samples, 0.01%)</title><rect x="53.6636%" y="885" width="0.0104%" height="15" fill="rgb(224,83,6)" fg:x="345345" fg:w="67"/><text x="53.9136%" y="895.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (227 samples, 0.04%)</title><rect x="53.6487%" y="933" width="0.0353%" height="15" fill="rgb(227,52,39)" fg:x="345249" fg:w="227"/><text x="53.8987%" y="943.50"></text></g><g><title>sysvec_apic_timer_interrupt (224 samples, 0.03%)</title><rect x="53.6491%" y="917" width="0.0348%" height="15" fill="rgb(241,30,17)" fg:x="345252" fg:w="224"/><text x="53.8991%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (84 samples, 0.01%)</title><rect x="53.6908%" y="789" width="0.0131%" height="15" fill="rgb(246,186,42)" fg:x="345520" fg:w="84"/><text x="53.9408%" y="799.50"></text></g><g><title>x86_pmu_enable (81 samples, 0.01%)</title><rect x="53.6912%" y="773" width="0.0126%" height="15" fill="rgb(221,169,15)" fg:x="345523" fg:w="81"/><text x="53.9412%" y="783.50"></text></g><g><title>intel_pmu_enable_all (80 samples, 0.01%)</title><rect x="53.6914%" y="757" width="0.0124%" height="15" fill="rgb(235,108,21)" fg:x="345524" fg:w="80"/><text x="53.9414%" y="767.50"></text></g><g><title>native_write_msr (79 samples, 0.01%)</title><rect x="53.6916%" y="741" width="0.0123%" height="15" fill="rgb(219,148,30)" fg:x="345525" fg:w="79"/><text x="53.9416%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (92 samples, 0.01%)</title><rect x="53.6903%" y="805" width="0.0143%" height="15" fill="rgb(220,109,5)" fg:x="345517" fg:w="92"/><text x="53.9403%" y="815.50"></text></g><g><title>__schedule (170 samples, 0.03%)</title><rect x="53.6892%" y="821" width="0.0264%" height="15" fill="rgb(213,203,48)" fg:x="345510" fg:w="170"/><text x="53.9392%" y="831.50"></text></g><g><title>exit_to_user_mode_loop (182 samples, 0.03%)</title><rect x="53.6877%" y="853" width="0.0283%" height="15" fill="rgb(244,71,33)" fg:x="345500" fg:w="182"/><text x="53.9377%" y="863.50"></text></g><g><title>schedule (174 samples, 0.03%)</title><rect x="53.6889%" y="837" width="0.0270%" height="15" fill="rgb(209,23,2)" fg:x="345508" fg:w="174"/><text x="53.9389%" y="847.50"></text></g><g><title>exit_to_user_mode_prepare (188 samples, 0.03%)</title><rect x="53.6874%" y="869" width="0.0292%" height="15" fill="rgb(219,97,7)" fg:x="345498" fg:w="188"/><text x="53.9374%" y="879.50"></text></g><g><title>asm_sysvec_reschedule_ipi (195 samples, 0.03%)</title><rect x="53.6864%" y="933" width="0.0303%" height="15" fill="rgb(216,161,23)" fg:x="345492" fg:w="195"/><text x="53.9364%" y="943.50"></text></g><g><title>sysvec_reschedule_ipi (192 samples, 0.03%)</title><rect x="53.6869%" y="917" width="0.0298%" height="15" fill="rgb(207,45,42)" fg:x="345495" fg:w="192"/><text x="53.9369%" y="927.50"></text></g><g><title>irqentry_exit (190 samples, 0.03%)</title><rect x="53.6872%" y="901" width="0.0295%" height="15" fill="rgb(241,61,4)" fg:x="345497" fg:w="190"/><text x="53.9372%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (190 samples, 0.03%)</title><rect x="53.6872%" y="885" width="0.0295%" height="15" fill="rgb(236,170,1)" fg:x="345497" fg:w="190"/><text x="53.9372%" y="895.50"></text></g><g><title>do_syscall_64 (109 samples, 0.02%)</title><rect x="53.7198%" y="885" width="0.0169%" height="15" fill="rgb(239,72,5)" fg:x="345707" fg:w="109"/><text x="53.9698%" y="895.50"></text></g><g><title>unload_network_ops_symbols (71 samples, 0.01%)</title><rect x="53.7257%" y="869" width="0.0110%" height="15" fill="rgb(214,13,50)" fg:x="345745" fg:w="71"/><text x="53.9757%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (112 samples, 0.02%)</title><rect x="53.7195%" y="901" width="0.0174%" height="15" fill="rgb(224,88,9)" fg:x="345705" fg:w="112"/><text x="53.9695%" y="911.50"></text></g><g><title>__GI___close (114 samples, 0.02%)</title><rect x="53.7194%" y="917" width="0.0177%" height="15" fill="rgb(238,192,34)" fg:x="345704" fg:w="114"/><text x="53.9694%" y="927.50"></text></g><g><title>fileDescriptorClose (125 samples, 0.02%)</title><rect x="53.7187%" y="933" width="0.0194%" height="15" fill="rgb(217,203,50)" fg:x="345700" fg:w="125"/><text x="53.9687%" y="943.50"></text></g><g><title>do_filp_open (187 samples, 0.03%)</title><rect x="53.7514%" y="821" width="0.0291%" height="15" fill="rgb(241,123,32)" fg:x="345910" fg:w="187"/><text x="54.0014%" y="831.50"></text></g><g><title>path_openat (184 samples, 0.03%)</title><rect x="53.7518%" y="805" width="0.0286%" height="15" fill="rgb(248,151,39)" fg:x="345913" fg:w="184"/><text x="54.0018%" y="815.50"></text></g><g><title>do_sys_openat2 (212 samples, 0.03%)</title><rect x="53.7512%" y="837" width="0.0329%" height="15" fill="rgb(208,89,6)" fg:x="345909" fg:w="212"/><text x="54.0012%" y="847.50"></text></g><g><title>__x64_sys_openat (217 samples, 0.03%)</title><rect x="53.7508%" y="853" width="0.0337%" height="15" fill="rgb(254,43,26)" fg:x="345906" fg:w="217"/><text x="54.0008%" y="863.50"></text></g><g><title>_ZdlPv (69 samples, 0.01%)</title><rect x="53.7966%" y="821" width="0.0107%" height="15" fill="rgb(216,158,13)" fg:x="346201" fg:w="69"/><text x="54.0466%" y="831.50"></text></g><g><title>cshook_systemcalltable_post_openat (201 samples, 0.03%)</title><rect x="53.7845%" y="853" width="0.0312%" height="15" fill="rgb(212,47,37)" fg:x="346123" fg:w="201"/><text x="54.0345%" y="863.50"></text></g><g><title>fshook_syscalltable_pre_lchown (135 samples, 0.02%)</title><rect x="53.7947%" y="837" width="0.0210%" height="15" fill="rgb(254,16,10)" fg:x="346189" fg:w="135"/><text x="54.0447%" y="847.50"></text></g><g><title>do_syscall_64 (451 samples, 0.07%)</title><rect x="53.7483%" y="885" width="0.0701%" height="15" fill="rgb(223,228,16)" fg:x="345890" fg:w="451"/><text x="53.9983%" y="895.50"></text></g><g><title>unload_network_ops_symbols (439 samples, 0.07%)</title><rect x="53.7501%" y="869" width="0.0682%" height="15" fill="rgb(249,108,50)" fg:x="345902" fg:w="439"/><text x="54.0001%" y="879.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (452 samples, 0.07%)</title><rect x="53.7483%" y="901" width="0.0702%" height="15" fill="rgb(208,220,5)" fg:x="345890" fg:w="452"/><text x="53.9983%" y="911.50"></text></g><g><title>__libc_open64 (457 samples, 0.07%)</title><rect x="53.7476%" y="917" width="0.0710%" height="15" fill="rgb(217,89,48)" fg:x="345886" fg:w="457"/><text x="53.9976%" y="927.50"></text></g><g><title>fileOpen (531 samples, 0.08%)</title><rect x="53.7382%" y="933" width="0.0825%" height="15" fill="rgb(212,113,41)" fg:x="345825" fg:w="531"/><text x="53.9882%" y="943.50"></text></g><g><title>jni_IsAssignableFrom (70 samples, 0.01%)</title><rect x="53.8232%" y="933" width="0.0109%" height="15" fill="rgb(231,127,5)" fg:x="346372" fg:w="70"/><text x="54.0732%" y="943.50"></text></g><g><title>[[vdso]] (127 samples, 0.02%)</title><rect x="53.8443%" y="901" width="0.0197%" height="15" fill="rgb(217,141,17)" fg:x="346508" fg:w="127"/><text x="54.0943%" y="911.50"></text></g><g><title>os::javaTimeNanos (211 samples, 0.03%)</title><rect x="53.8351%" y="933" width="0.0328%" height="15" fill="rgb(245,125,54)" fg:x="346449" fg:w="211"/><text x="54.0851%" y="943.50"></text></g><g><title>__GI___clock_gettime (193 samples, 0.03%)</title><rect x="53.8379%" y="917" width="0.0300%" height="15" fill="rgb(248,125,3)" fg:x="346467" fg:w="193"/><text x="54.0879%" y="927.50"></text></g><g><title>[perf-733733.map] (63,865 samples, 9.92%)</title><rect x="43.9585%" y="949" width="9.9241%" height="15" fill="rgb(236,119,51)" fg:x="282889" fg:w="63865"/><text x="44.2085%" y="959.50">[perf-733733.m..</text></g><g><title>sync_regs (91 samples, 0.01%)</title><rect x="53.8684%" y="933" width="0.0141%" height="15" fill="rgb(239,99,8)" fg:x="346663" fg:w="91"/><text x="54.1184%" y="943.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (191 samples, 0.03%)</title><rect x="53.9276%" y="917" width="0.0297%" height="15" fill="rgb(224,228,4)" fg:x="347044" fg:w="191"/><text x="54.1776%" y="927.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (312 samples, 0.05%)</title><rect x="53.9117%" y="933" width="0.0485%" height="15" fill="rgb(220,131,45)" fg:x="346942" fg:w="312"/><text x="54.1617%" y="943.50"></text></g><g><title>SafepointSynchronize::block (74 samples, 0.01%)</title><rect x="53.9608%" y="917" width="0.0115%" height="15" fill="rgb(215,62,5)" fg:x="347258" fg:w="74"/><text x="54.2108%" y="927.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (78 samples, 0.01%)</title><rect x="53.9605%" y="933" width="0.0121%" height="15" fill="rgb(253,12,24)" fg:x="347256" fg:w="78"/><text x="54.2105%" y="943.50"></text></g><g><title>copy_user_enhanced_fast_string (117 samples, 0.02%)</title><rect x="53.9994%" y="725" width="0.0182%" height="15" fill="rgb(248,120,50)" fg:x="347506" fg:w="117"/><text x="54.2494%" y="735.50"></text></g><g><title>filemap_get_pages (79 samples, 0.01%)</title><rect x="54.0180%" y="725" width="0.0123%" height="15" fill="rgb(245,194,10)" fg:x="347626" fg:w="79"/><text x="54.2680%" y="735.50"></text></g><g><title>btrfs_file_read_iter (320 samples, 0.05%)</title><rect x="53.9938%" y="757" width="0.0497%" height="15" fill="rgb(241,149,38)" fg:x="347470" fg:w="320"/><text x="54.2438%" y="767.50"></text></g><g><title>filemap_read (318 samples, 0.05%)</title><rect x="53.9941%" y="741" width="0.0494%" height="15" fill="rgb(219,215,7)" fg:x="347472" fg:w="318"/><text x="54.2441%" y="751.50"></text></g><g><title>new_sync_read (325 samples, 0.05%)</title><rect x="53.9932%" y="773" width="0.0505%" height="15" fill="rgb(208,120,31)" fg:x="347466" fg:w="325"/><text x="54.2432%" y="783.50"></text></g><g><title>__x64_sys_read (390 samples, 0.06%)</title><rect x="53.9880%" y="821" width="0.0606%" height="15" fill="rgb(244,30,8)" fg:x="347433" fg:w="390"/><text x="54.2380%" y="831.50"></text></g><g><title>ksys_read (390 samples, 0.06%)</title><rect x="53.9880%" y="805" width="0.0606%" height="15" fill="rgb(238,35,44)" fg:x="347433" fg:w="390"/><text x="54.2380%" y="815.50"></text></g><g><title>vfs_read (367 samples, 0.06%)</title><rect x="53.9916%" y="789" width="0.0570%" height="15" fill="rgb(243,218,37)" fg:x="347456" fg:w="367"/><text x="54.2416%" y="799.50"></text></g><g><title>do_syscall_64 (429 samples, 0.07%)</title><rect x="53.9838%" y="853" width="0.0667%" height="15" fill="rgb(218,169,10)" fg:x="347406" fg:w="429"/><text x="54.2338%" y="863.50"></text></g><g><title>unload_network_ops_symbols (407 samples, 0.06%)</title><rect x="53.9873%" y="837" width="0.0632%" height="15" fill="rgb(221,144,10)" fg:x="347428" fg:w="407"/><text x="54.2373%" y="847.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (433 samples, 0.07%)</title><rect x="53.9838%" y="869" width="0.0673%" height="15" fill="rgb(226,41,38)" fg:x="347406" fg:w="433"/><text x="54.2338%" y="879.50"></text></g><g><title>__GI___libc_read (452 samples, 0.07%)</title><rect x="53.9810%" y="901" width="0.0702%" height="15" fill="rgb(228,3,1)" fg:x="347388" fg:w="452"/><text x="54.2310%" y="911.50"></text></g><g><title>__GI___libc_read (452 samples, 0.07%)</title><rect x="53.9810%" y="885" width="0.0702%" height="15" fill="rgb(209,129,12)" fg:x="347388" fg:w="452"/><text x="54.2310%" y="895.50"></text></g><g><title>handleRead (453 samples, 0.07%)</title><rect x="53.9810%" y="917" width="0.0704%" height="15" fill="rgb(213,136,33)" fg:x="347388" fg:w="453"/><text x="54.2310%" y="927.50"></text></g><g><title>readBytes (576 samples, 0.09%)</title><rect x="53.9789%" y="933" width="0.0895%" height="15" fill="rgb(209,181,29)" fg:x="347374" fg:w="576"/><text x="54.2289%" y="943.50"></text></g><g><title>jni_SetByteArrayRegion (70 samples, 0.01%)</title><rect x="54.0575%" y="917" width="0.0109%" height="15" fill="rgb(234,173,18)" fg:x="347880" fg:w="70"/><text x="54.3075%" y="927.50"></text></g><g><title>[unknown] (1,216 samples, 0.19%)</title><rect x="53.8825%" y="949" width="0.1890%" height="15" fill="rgb(227,73,47)" fg:x="346754" fg:w="1216"/><text x="54.1325%" y="959.50"></text></g><g><title>__clone3 (80 samples, 0.01%)</title><rect x="54.0715%" y="949" width="0.0124%" height="15" fill="rgb(234,9,34)" fg:x="347970" fg:w="80"/><text x="54.3215%" y="959.50"></text></g><g><title>asm_exc_page_fault (257 samples, 0.04%)</title><rect x="54.0850%" y="949" width="0.0399%" height="15" fill="rgb(235,172,15)" fg:x="348057" fg:w="257"/><text x="54.3350%" y="959.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (68 samples, 0.01%)</title><rect x="54.1301%" y="949" width="0.0106%" height="15" fill="rgb(245,61,2)" fg:x="348347" fg:w="68"/><text x="54.3801%" y="959.50"></text></g><g><title>skyframe-evalua (140,755 samples, 21.87%)</title><rect x="32.2901%" y="965" width="21.8721%" height="15" fill="rgb(238,39,47)" fg:x="207799" fg:w="140755"/><text x="32.5401%" y="975.50">skyframe-evalua</text></g><g><title>[perf-733733.map] (106 samples, 0.02%)</title><rect x="54.1629%" y="949" width="0.0165%" height="15" fill="rgb(234,37,24)" fg:x="348558" fg:w="106"/><text x="54.4129%" y="959.50"></text></g><g><title>skyframe-invali (122 samples, 0.02%)</title><rect x="54.1622%" y="965" width="0.0190%" height="15" fill="rgb(248,223,24)" fg:x="348554" fg:w="122"/><text x="54.4122%" y="975.50"></text></g><g><title>[unknown] (265 samples, 0.04%)</title><rect x="54.1942%" y="949" width="0.0412%" height="15" fill="rgb(223,12,15)" fg:x="348760" fg:w="265"/><text x="54.4442%" y="959.50"></text></g><g><title>[zig] (265 samples, 0.04%)</title><rect x="54.1942%" y="933" width="0.0412%" height="15" fill="rgb(249,6,3)" fg:x="348760" fg:w="265"/><text x="54.4442%" y="943.50"></text></g><g><title>__entry_text_start (2,523 samples, 0.39%)</title><rect x="64.7169%" y="933" width="0.3921%" height="15" fill="rgb(237,105,33)" fg:x="416477" fg:w="2523"/><text x="64.9669%" y="943.50"></text></g><g><title>nvme_complete_rq (69 samples, 0.01%)</title><rect x="65.1215%" y="789" width="0.0107%" height="15" fill="rgb(252,208,35)" fg:x="419081" fg:w="69"/><text x="65.3715%" y="799.50"></text></g><g><title>blk_mq_end_request (69 samples, 0.01%)</title><rect x="65.1215%" y="773" width="0.0107%" height="15" fill="rgb(215,181,35)" fg:x="419081" fg:w="69"/><text x="65.3715%" y="783.50"></text></g><g><title>blk_update_request (69 samples, 0.01%)</title><rect x="65.1215%" y="757" width="0.0107%" height="15" fill="rgb(246,212,3)" fg:x="419081" fg:w="69"/><text x="65.3715%" y="767.50"></text></g><g><title>bio_endio (68 samples, 0.01%)</title><rect x="65.1217%" y="741" width="0.0106%" height="15" fill="rgb(247,156,24)" fg:x="419082" fg:w="68"/><text x="65.3717%" y="751.50"></text></g><g><title>crypt_endio (68 samples, 0.01%)</title><rect x="65.1217%" y="725" width="0.0106%" height="15" fill="rgb(248,9,31)" fg:x="419082" fg:w="68"/><text x="65.3717%" y="735.50"></text></g><g><title>__handle_irq_event_percpu (72 samples, 0.01%)</title><rect x="65.1212%" y="853" width="0.0112%" height="15" fill="rgb(234,26,45)" fg:x="419079" fg:w="72"/><text x="65.3712%" y="863.50"></text></g><g><title>nvme_irq (71 samples, 0.01%)</title><rect x="65.1214%" y="837" width="0.0110%" height="15" fill="rgb(249,11,32)" fg:x="419080" fg:w="71"/><text x="65.3714%" y="847.50"></text></g><g><title>nvme_process_cq (71 samples, 0.01%)</title><rect x="65.1214%" y="821" width="0.0110%" height="15" fill="rgb(249,162,33)" fg:x="419080" fg:w="71"/><text x="65.3714%" y="831.50"></text></g><g><title>nvme_pci_complete_rq (70 samples, 0.01%)</title><rect x="65.1215%" y="805" width="0.0109%" height="15" fill="rgb(232,4,32)" fg:x="419081" fg:w="70"/><text x="65.3715%" y="815.50"></text></g><g><title>handle_irq_event (75 samples, 0.01%)</title><rect x="65.1212%" y="869" width="0.0117%" height="15" fill="rgb(212,5,45)" fg:x="419079" fg:w="75"/><text x="65.3712%" y="879.50"></text></g><g><title>handle_edge_irq (76 samples, 0.01%)</title><rect x="65.1212%" y="885" width="0.0118%" height="15" fill="rgb(227,95,13)" fg:x="419079" fg:w="76"/><text x="65.3712%" y="895.50"></text></g><g><title>__common_interrupt (81 samples, 0.01%)</title><rect x="65.1212%" y="901" width="0.0126%" height="15" fill="rgb(223,205,10)" fg:x="419079" fg:w="81"/><text x="65.3712%" y="911.50"></text></g><g><title>asm_common_interrupt (97 samples, 0.02%)</title><rect x="65.1210%" y="933" width="0.0151%" height="15" fill="rgb(222,178,8)" fg:x="419078" fg:w="97"/><text x="65.3710%" y="943.50"></text></g><g><title>common_interrupt (96 samples, 0.01%)</title><rect x="65.1212%" y="917" width="0.0149%" height="15" fill="rgb(216,13,22)" fg:x="419079" fg:w="96"/><text x="65.3712%" y="927.50"></text></g><g><title>vmacache_find (110 samples, 0.02%)</title><rect x="65.1998%" y="869" width="0.0171%" height="15" fill="rgb(240,167,12)" fg:x="419585" fg:w="110"/><text x="65.4498%" y="879.50"></text></g><g><title>find_vma (169 samples, 0.03%)</title><rect x="65.1908%" y="885" width="0.0263%" height="15" fill="rgb(235,68,35)" fg:x="419527" fg:w="169"/><text x="65.4408%" y="895.50"></text></g><g><title>__count_memcg_events (100 samples, 0.02%)</title><rect x="65.2408%" y="869" width="0.0155%" height="15" fill="rgb(253,40,27)" fg:x="419849" fg:w="100"/><text x="65.4908%" y="879.50"></text></g><g><title>__cgroup_throttle_swaprate (111 samples, 0.02%)</title><rect x="65.3530%" y="821" width="0.0172%" height="15" fill="rgb(214,19,28)" fg:x="420571" fg:w="111"/><text x="65.6030%" y="831.50"></text></g><g><title>charge_memcg (245 samples, 0.04%)</title><rect x="65.3745%" y="805" width="0.0381%" height="15" fill="rgb(210,167,45)" fg:x="420709" fg:w="245"/><text x="65.6245%" y="815.50"></text></g><g><title>try_charge_memcg (135 samples, 0.02%)</title><rect x="65.3916%" y="789" width="0.0210%" height="15" fill="rgb(232,97,40)" fg:x="420819" fg:w="135"/><text x="65.6416%" y="799.50"></text></g><g><title>get_mem_cgroup_from_mm (73 samples, 0.01%)</title><rect x="65.4126%" y="805" width="0.0113%" height="15" fill="rgb(250,35,23)" fg:x="420954" fg:w="73"/><text x="65.6626%" y="815.50"></text></g><g><title>__mem_cgroup_charge (362 samples, 0.06%)</title><rect x="65.3720%" y="821" width="0.0563%" height="15" fill="rgb(248,47,53)" fg:x="420693" fg:w="362"/><text x="65.6220%" y="831.50"></text></g><g><title>shrink_page_list (106 samples, 0.02%)</title><rect x="65.4620%" y="677" width="0.0165%" height="15" fill="rgb(226,58,50)" fg:x="421272" fg:w="106"/><text x="65.7120%" y="687.50"></text></g><g><title>try_to_release_page (73 samples, 0.01%)</title><rect x="65.4671%" y="661" width="0.0113%" height="15" fill="rgb(217,105,26)" fg:x="421305" fg:w="73"/><text x="65.7171%" y="671.50"></text></g><g><title>btrfs_releasepage (73 samples, 0.01%)</title><rect x="65.4671%" y="645" width="0.0113%" height="15" fill="rgb(208,64,1)" fg:x="421305" fg:w="73"/><text x="65.7171%" y="655.50"></text></g><g><title>try_release_extent_mapping (71 samples, 0.01%)</title><rect x="65.4674%" y="629" width="0.0110%" height="15" fill="rgb(214,80,1)" fg:x="421307" fg:w="71"/><text x="65.7174%" y="639.50"></text></g><g><title>shrink_lruvec (112 samples, 0.02%)</title><rect x="65.4612%" y="709" width="0.0174%" height="15" fill="rgb(206,175,26)" fg:x="421267" fg:w="112"/><text x="65.7112%" y="719.50"></text></g><g><title>shrink_inactive_list (111 samples, 0.02%)</title><rect x="65.4613%" y="693" width="0.0172%" height="15" fill="rgb(235,156,37)" fg:x="421268" fg:w="111"/><text x="65.7113%" y="703.50"></text></g><g><title>try_to_free_pages (121 samples, 0.02%)</title><rect x="65.4609%" y="773" width="0.0188%" height="15" fill="rgb(213,100,9)" fg:x="421265" fg:w="121"/><text x="65.7109%" y="783.50"></text></g><g><title>do_try_to_free_pages (121 samples, 0.02%)</title><rect x="65.4609%" y="757" width="0.0188%" height="15" fill="rgb(241,15,13)" fg:x="421265" fg:w="121"/><text x="65.7109%" y="767.50"></text></g><g><title>shrink_node (121 samples, 0.02%)</title><rect x="65.4609%" y="741" width="0.0188%" height="15" fill="rgb(205,97,43)" fg:x="421265" fg:w="121"/><text x="65.7109%" y="751.50"></text></g><g><title>shrink_node_memcgs (120 samples, 0.02%)</title><rect x="65.4610%" y="725" width="0.0186%" height="15" fill="rgb(216,106,32)" fg:x="421266" fg:w="120"/><text x="65.7110%" y="735.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (145 samples, 0.02%)</title><rect x="65.4576%" y="789" width="0.0225%" height="15" fill="rgb(226,200,8)" fg:x="421244" fg:w="145"/><text x="65.7076%" y="799.50"></text></g><g><title>clear_page_erms (619 samples, 0.10%)</title><rect x="65.4990%" y="773" width="0.0962%" height="15" fill="rgb(244,54,29)" fg:x="421510" fg:w="619"/><text x="65.7490%" y="783.50"></text></g><g><title>get_page_from_freelist (947 samples, 0.15%)</title><rect x="65.4854%" y="789" width="0.1472%" height="15" fill="rgb(252,169,12)" fg:x="421423" fg:w="947"/><text x="65.7354%" y="799.50"></text></g><g><title>rmqueue (228 samples, 0.04%)</title><rect x="65.5972%" y="773" width="0.0354%" height="15" fill="rgb(231,199,11)" fg:x="422142" fg:w="228"/><text x="65.8472%" y="783.50"></text></g><g><title>rmqueue_bulk (90 samples, 0.01%)</title><rect x="65.6186%" y="757" width="0.0140%" height="15" fill="rgb(233,191,18)" fg:x="422280" fg:w="90"/><text x="65.8686%" y="767.50"></text></g><g><title>__alloc_pages (1,210 samples, 0.19%)</title><rect x="65.4477%" y="805" width="0.1880%" height="15" fill="rgb(215,83,47)" fg:x="421180" fg:w="1210"/><text x="65.6977%" y="815.50"></text></g><g><title>alloc_pages_vma (1,346 samples, 0.21%)</title><rect x="65.4363%" y="821" width="0.2092%" height="15" fill="rgb(251,67,19)" fg:x="421107" fg:w="1346"/><text x="65.6863%" y="831.50"></text></g><g><title>__pagevec_lru_add_fn (211 samples, 0.03%)</title><rect x="65.6669%" y="773" width="0.0328%" height="15" fill="rgb(240,7,20)" fg:x="422591" fg:w="211"/><text x="65.9169%" y="783.50"></text></g><g><title>__pagevec_lru_add (329 samples, 0.05%)</title><rect x="65.6587%" y="789" width="0.0511%" height="15" fill="rgb(210,150,26)" fg:x="422538" fg:w="329"/><text x="65.9087%" y="799.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (395 samples, 0.06%)</title><rect x="65.6501%" y="821" width="0.0614%" height="15" fill="rgb(228,75,42)" fg:x="422483" fg:w="395"/><text x="65.9001%" y="831.50"></text></g><g><title>lru_cache_add (385 samples, 0.06%)</title><rect x="65.6517%" y="805" width="0.0598%" height="15" fill="rgb(237,134,48)" fg:x="422493" fg:w="385"/><text x="65.9017%" y="815.50"></text></g><g><title>__mod_lruvec_state (88 samples, 0.01%)</title><rect x="65.7257%" y="789" width="0.0137%" height="15" fill="rgb(205,80,50)" fg:x="422969" fg:w="88"/><text x="65.9757%" y="799.50"></text></g><g><title>__mod_lruvec_page_state (163 samples, 0.03%)</title><rect x="65.7146%" y="805" width="0.0253%" height="15" fill="rgb(217,74,48)" fg:x="422898" fg:w="163"/><text x="65.9646%" y="815.50"></text></g><g><title>page_add_new_anon_rmap (203 samples, 0.03%)</title><rect x="65.7123%" y="821" width="0.0315%" height="15" fill="rgb(205,82,50)" fg:x="422883" fg:w="203"/><text x="65.9623%" y="831.50"></text></g><g><title>do_anonymous_page (2,658 samples, 0.41%)</title><rect x="65.3363%" y="837" width="0.4130%" height="15" fill="rgb(228,1,33)" fg:x="420463" fg:w="2658"/><text x="65.5863%" y="847.50"></text></g><g><title>do_page_mkwrite (98 samples, 0.02%)</title><rect x="65.7592%" y="821" width="0.0152%" height="15" fill="rgb(214,50,23)" fg:x="423185" fg:w="98"/><text x="66.0092%" y="831.50"></text></g><g><title>btrfs_page_mkwrite (97 samples, 0.02%)</title><rect x="65.7594%" y="805" width="0.0151%" height="15" fill="rgb(210,62,9)" fg:x="423186" fg:w="97"/><text x="66.0094%" y="815.50"></text></g><g><title>lock_page_memcg (78 samples, 0.01%)</title><rect x="65.8612%" y="757" width="0.0121%" height="15" fill="rgb(210,104,37)" fg:x="423841" fg:w="78"/><text x="66.1112%" y="767.50"></text></g><g><title>page_add_file_rmap (332 samples, 0.05%)</title><rect x="65.8281%" y="773" width="0.0516%" height="15" fill="rgb(232,104,43)" fg:x="423628" fg:w="332"/><text x="66.0781%" y="783.50"></text></g><g><title>do_set_pte (526 samples, 0.08%)</title><rect x="65.8024%" y="789" width="0.0817%" height="15" fill="rgb(244,52,6)" fg:x="423463" fg:w="526"/><text x="66.0524%" y="799.50"></text></g><g><title>next_uptodate_page (814 samples, 0.13%)</title><rect x="65.8887%" y="789" width="0.1265%" height="15" fill="rgb(211,174,52)" fg:x="424018" fg:w="814"/><text x="66.1387%" y="799.50"></text></g><g><title>xas_load (79 samples, 0.01%)</title><rect x="66.0228%" y="773" width="0.0123%" height="15" fill="rgb(229,48,4)" fg:x="424881" fg:w="79"/><text x="66.2728%" y="783.50"></text></g><g><title>xas_find (109 samples, 0.02%)</title><rect x="66.0190%" y="789" width="0.0169%" height="15" fill="rgb(205,155,16)" fg:x="424857" fg:w="109"/><text x="66.2690%" y="799.50"></text></g><g><title>filemap_map_pages (1,644 samples, 0.26%)</title><rect x="65.7808%" y="805" width="0.2555%" height="15" fill="rgb(211,141,53)" fg:x="423324" fg:w="1644"/><text x="66.0308%" y="815.50"></text></g><g><title>unlock_page (143 samples, 0.02%)</title><rect x="66.0439%" y="805" width="0.0222%" height="15" fill="rgb(240,148,11)" fg:x="425017" fg:w="143"/><text x="66.2939%" y="815.50"></text></g><g><title>do_read_fault (1,933 samples, 0.30%)</title><rect x="65.7745%" y="821" width="0.3004%" height="15" fill="rgb(214,45,23)" fg:x="423283" fg:w="1933"/><text x="66.0245%" y="831.50"></text></g><g><title>do_fault (2,123 samples, 0.33%)</title><rect x="65.7493%" y="837" width="0.3299%" height="15" fill="rgb(248,74,26)" fg:x="423121" fg:w="2123"/><text x="65.9993%" y="847.50"></text></g><g><title>do_wp_page (68 samples, 0.01%)</title><rect x="66.0795%" y="837" width="0.0106%" height="15" fill="rgb(218,121,16)" fg:x="425246" fg:w="68"/><text x="66.3295%" y="847.50"></text></g><g><title>handle_pte_fault (5,125 samples, 0.80%)</title><rect x="65.3050%" y="853" width="0.7964%" height="15" fill="rgb(218,10,47)" fg:x="420262" fg:w="5125"/><text x="65.5550%" y="863.50"></text></g><g><title>__handle_mm_fault (5,481 samples, 0.85%)</title><rect x="65.2564%" y="869" width="0.8517%" height="15" fill="rgb(227,99,14)" fg:x="419949" fg:w="5481"/><text x="65.5064%" y="879.50"></text></g><g><title>handle_mm_fault (5,819 samples, 0.90%)</title><rect x="65.2171%" y="885" width="0.9042%" height="15" fill="rgb(229,83,46)" fg:x="419696" fg:w="5819"/><text x="65.4671%" y="895.50"></text></g><g><title>do_user_addr_fault (6,259 samples, 0.97%)</title><rect x="65.1541%" y="901" width="0.9726%" height="15" fill="rgb(228,25,1)" fg:x="419291" fg:w="6259"/><text x="65.4041%" y="911.50"></text></g><g><title>exit_to_user_mode_prepare (81 samples, 0.01%)</title><rect x="66.1334%" y="869" width="0.0126%" height="15" fill="rgb(252,190,15)" fg:x="425593" fg:w="81"/><text x="66.3834%" y="879.50"></text></g><g><title>irqentry_exit (103 samples, 0.02%)</title><rect x="66.1312%" y="901" width="0.0160%" height="15" fill="rgb(213,103,51)" fg:x="425579" fg:w="103"/><text x="66.3812%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (89 samples, 0.01%)</title><rect x="66.1334%" y="885" width="0.0138%" height="15" fill="rgb(220,38,44)" fg:x="425593" fg:w="89"/><text x="66.3834%" y="895.50"></text></g><g><title>exc_page_fault (6,495 samples, 1.01%)</title><rect x="65.1462%" y="917" width="1.0093%" height="15" fill="rgb(210,45,26)" fg:x="419240" fg:w="6495"/><text x="65.3962%" y="927.50"></text></g><g><title>asm_exc_page_fault (6,565 samples, 1.02%)</title><rect x="65.1361%" y="933" width="1.0201%" height="15" fill="rgb(205,95,48)" fg:x="419175" fg:w="6565"/><text x="65.3861%" y="943.50"></text></g><g><title>tick_sched_handle (86 samples, 0.01%)</title><rect x="66.1671%" y="837" width="0.0134%" height="15" fill="rgb(225,179,37)" fg:x="425810" fg:w="86"/><text x="66.4171%" y="847.50"></text></g><g><title>update_process_times (83 samples, 0.01%)</title><rect x="66.1676%" y="821" width="0.0129%" height="15" fill="rgb(230,209,3)" fg:x="425813" fg:w="83"/><text x="66.4176%" y="831.50"></text></g><g><title>tick_sched_timer (93 samples, 0.01%)</title><rect x="66.1662%" y="853" width="0.0145%" height="15" fill="rgb(248,12,46)" fg:x="425804" fg:w="93"/><text x="66.4162%" y="863.50"></text></g><g><title>__hrtimer_run_queues (142 samples, 0.02%)</title><rect x="66.1589%" y="869" width="0.0221%" height="15" fill="rgb(234,18,0)" fg:x="425757" fg:w="142"/><text x="66.4089%" y="879.50"></text></g><g><title>__sysvec_apic_timer_interrupt (168 samples, 0.03%)</title><rect x="66.1567%" y="901" width="0.0261%" height="15" fill="rgb(238,197,14)" fg:x="425743" fg:w="168"/><text x="66.4067%" y="911.50"></text></g><g><title>hrtimer_interrupt (161 samples, 0.03%)</title><rect x="66.1578%" y="885" width="0.0250%" height="15" fill="rgb(251,162,48)" fg:x="425750" fg:w="161"/><text x="66.4078%" y="895.50"></text></g><g><title>kmem_cache_free (66 samples, 0.01%)</title><rect x="66.1875%" y="805" width="0.0103%" height="15" fill="rgb(237,73,42)" fg:x="425941" fg:w="66"/><text x="66.4375%" y="815.50"></text></g><g><title>file_free_rcu (74 samples, 0.01%)</title><rect x="66.1866%" y="821" width="0.0115%" height="15" fill="rgb(211,108,8)" fg:x="425935" fg:w="74"/><text x="66.4366%" y="831.50"></text></g><g><title>rcu_core_si (131 samples, 0.02%)</title><rect x="66.1839%" y="869" width="0.0204%" height="15" fill="rgb(213,45,22)" fg:x="425918" fg:w="131"/><text x="66.4339%" y="879.50"></text></g><g><title>rcu_core (131 samples, 0.02%)</title><rect x="66.1839%" y="853" width="0.0204%" height="15" fill="rgb(252,154,5)" fg:x="425918" fg:w="131"/><text x="66.4339%" y="863.50"></text></g><g><title>rcu_do_batch (126 samples, 0.02%)</title><rect x="66.1847%" y="837" width="0.0196%" height="15" fill="rgb(221,79,52)" fg:x="425923" fg:w="126"/><text x="66.4347%" y="847.50"></text></g><g><title>irq_exit_rcu (159 samples, 0.02%)</title><rect x="66.1831%" y="901" width="0.0247%" height="15" fill="rgb(229,220,36)" fg:x="425913" fg:w="159"/><text x="66.4331%" y="911.50"></text></g><g><title>__softirqentry_text_start (154 samples, 0.02%)</title><rect x="66.1839%" y="885" width="0.0239%" height="15" fill="rgb(211,17,16)" fg:x="425918" fg:w="154"/><text x="66.4339%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (136 samples, 0.02%)</title><rect x="66.2089%" y="789" width="0.0211%" height="15" fill="rgb(222,55,31)" fg:x="426079" fg:w="136"/><text x="66.4589%" y="799.50"></text></g><g><title>x86_pmu_enable (130 samples, 0.02%)</title><rect x="66.2099%" y="773" width="0.0202%" height="15" fill="rgb(221,221,31)" fg:x="426085" fg:w="130"/><text x="66.4599%" y="783.50"></text></g><g><title>intel_pmu_enable_all (126 samples, 0.02%)</title><rect x="66.2105%" y="757" width="0.0196%" height="15" fill="rgb(227,168,26)" fg:x="426089" fg:w="126"/><text x="66.4605%" y="767.50"></text></g><g><title>native_write_msr (125 samples, 0.02%)</title><rect x="66.2106%" y="741" width="0.0194%" height="15" fill="rgb(224,139,9)" fg:x="426090" fg:w="125"/><text x="66.4606%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (146 samples, 0.02%)</title><rect x="66.2085%" y="805" width="0.0227%" height="15" fill="rgb(254,172,0)" fg:x="426076" fg:w="146"/><text x="66.4585%" y="815.50"></text></g><g><title>__schedule (156 samples, 0.02%)</title><rect x="66.2083%" y="821" width="0.0242%" height="15" fill="rgb(235,203,1)" fg:x="426075" fg:w="156"/><text x="66.4583%" y="831.50"></text></g><g><title>exit_to_user_mode_loop (158 samples, 0.02%)</title><rect x="66.2082%" y="853" width="0.0246%" height="15" fill="rgb(216,205,24)" fg:x="426074" fg:w="158"/><text x="66.4582%" y="863.50"></text></g><g><title>schedule (157 samples, 0.02%)</title><rect x="66.2083%" y="837" width="0.0244%" height="15" fill="rgb(233,24,6)" fg:x="426075" fg:w="157"/><text x="66.4583%" y="847.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (494 samples, 0.08%)</title><rect x="66.1563%" y="933" width="0.0768%" height="15" fill="rgb(244,110,9)" fg:x="425740" fg:w="494"/><text x="66.4063%" y="943.50"></text></g><g><title>sysvec_apic_timer_interrupt (493 samples, 0.08%)</title><rect x="66.1564%" y="917" width="0.0766%" height="15" fill="rgb(239,222,42)" fg:x="425741" fg:w="493"/><text x="66.4064%" y="927.50"></text></g><g><title>irqentry_exit (162 samples, 0.03%)</title><rect x="66.2078%" y="901" width="0.0252%" height="15" fill="rgb(218,145,13)" fg:x="426072" fg:w="162"/><text x="66.4578%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (162 samples, 0.03%)</title><rect x="66.2078%" y="885" width="0.0252%" height="15" fill="rgb(207,69,11)" fg:x="426072" fg:w="162"/><text x="66.4578%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (162 samples, 0.03%)</title><rect x="66.2078%" y="869" width="0.0252%" height="15" fill="rgb(220,223,22)" fg:x="426072" fg:w="162"/><text x="66.4578%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (113 samples, 0.02%)</title><rect x="66.2378%" y="789" width="0.0176%" height="15" fill="rgb(245,102,5)" fg:x="426265" fg:w="113"/><text x="66.4878%" y="799.50"></text></g><g><title>x86_pmu_enable (104 samples, 0.02%)</title><rect x="66.2392%" y="773" width="0.0162%" height="15" fill="rgb(211,148,2)" fg:x="426274" fg:w="104"/><text x="66.4892%" y="783.50"></text></g><g><title>intel_pmu_enable_all (101 samples, 0.02%)</title><rect x="66.2397%" y="757" width="0.0157%" height="15" fill="rgb(241,13,44)" fg:x="426277" fg:w="101"/><text x="66.4897%" y="767.50"></text></g><g><title>native_write_msr (101 samples, 0.02%)</title><rect x="66.2397%" y="741" width="0.0157%" height="15" fill="rgb(219,137,21)" fg:x="426277" fg:w="101"/><text x="66.4897%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (129 samples, 0.02%)</title><rect x="66.2372%" y="805" width="0.0200%" height="15" fill="rgb(242,206,5)" fg:x="426261" fg:w="129"/><text x="66.4872%" y="815.50"></text></g><g><title>exit_to_user_mode_loop (184 samples, 0.03%)</title><rect x="66.2354%" y="853" width="0.0286%" height="15" fill="rgb(217,114,22)" fg:x="426249" fg:w="184"/><text x="66.4854%" y="863.50"></text></g><g><title>schedule (183 samples, 0.03%)</title><rect x="66.2355%" y="837" width="0.0284%" height="15" fill="rgb(253,206,42)" fg:x="426250" fg:w="183"/><text x="66.4855%" y="847.50"></text></g><g><title>__schedule (181 samples, 0.03%)</title><rect x="66.2358%" y="821" width="0.0281%" height="15" fill="rgb(236,102,18)" fg:x="426252" fg:w="181"/><text x="66.4858%" y="831.50"></text></g><g><title>irqentry_exit (192 samples, 0.03%)</title><rect x="66.2347%" y="901" width="0.0298%" height="15" fill="rgb(208,59,49)" fg:x="426245" fg:w="192"/><text x="66.4847%" y="911.50"></text></g><g><title>irqentry_exit_to_user_mode (191 samples, 0.03%)</title><rect x="66.2349%" y="885" width="0.0297%" height="15" fill="rgb(215,194,28)" fg:x="426246" fg:w="191"/><text x="66.4849%" y="895.50"></text></g><g><title>exit_to_user_mode_prepare (189 samples, 0.03%)</title><rect x="66.2352%" y="869" width="0.0294%" height="15" fill="rgb(243,207,11)" fg:x="426248" fg:w="189"/><text x="66.4852%" y="879.50"></text></g><g><title>asm_sysvec_reschedule_ipi (195 samples, 0.03%)</title><rect x="66.2344%" y="933" width="0.0303%" height="15" fill="rgb(254,179,35)" fg:x="426243" fg:w="195"/><text x="66.4844%" y="943.50"></text></g><g><title>sysvec_reschedule_ipi (194 samples, 0.03%)</title><rect x="66.2346%" y="917" width="0.0301%" height="15" fill="rgb(235,97,3)" fg:x="426244" fg:w="194"/><text x="66.4846%" y="927.50"></text></g><g><title>do_syscall_64 (121 samples, 0.02%)</title><rect x="66.2647%" y="933" width="0.0188%" height="15" fill="rgb(215,155,33)" fg:x="426438" fg:w="121"/><text x="66.5147%" y="943.50"></text></g><g><title>__x64_sys_newfstat (125 samples, 0.02%)</title><rect x="66.4470%" y="917" width="0.0194%" height="15" fill="rgb(223,128,12)" fg:x="427611" fg:w="125"/><text x="66.6970%" y="927.50"></text></g><g><title>inherit_task_group.isra.0 (74 samples, 0.01%)</title><rect x="66.6468%" y="805" width="0.0115%" height="15" fill="rgb(208,157,18)" fg:x="428897" fg:w="74"/><text x="66.8968%" y="815.50"></text></g><g><title>perf_event_init_context (78 samples, 0.01%)</title><rect x="66.6464%" y="821" width="0.0121%" height="15" fill="rgb(249,70,54)" fg:x="428894" fg:w="78"/><text x="66.8964%" y="831.50"></text></g><g><title>perf_event_init_task (82 samples, 0.01%)</title><rect x="66.6462%" y="837" width="0.0127%" height="15" fill="rgb(244,118,24)" fg:x="428893" fg:w="82"/><text x="66.8962%" y="847.50"></text></g><g><title>copy_process (189 samples, 0.03%)</title><rect x="66.6313%" y="853" width="0.0294%" height="15" fill="rgb(211,54,0)" fg:x="428797" fg:w="189"/><text x="66.8813%" y="863.50"></text></g><g><title>__x64_sys_clone (231 samples, 0.04%)</title><rect x="66.6308%" y="901" width="0.0359%" height="15" fill="rgb(245,137,45)" fg:x="428794" fg:w="231"/><text x="66.8808%" y="911.50"></text></g><g><title>__do_sys_clone (231 samples, 0.04%)</title><rect x="66.6308%" y="885" width="0.0359%" height="15" fill="rgb(232,154,31)" fg:x="428794" fg:w="231"/><text x="66.8808%" y="895.50"></text></g><g><title>kernel_clone (230 samples, 0.04%)</title><rect x="66.6310%" y="869" width="0.0357%" height="15" fill="rgb(253,6,39)" fg:x="428795" fg:w="230"/><text x="66.8810%" y="879.50"></text></g><g><title>__perf_event_task_sched_in (80 samples, 0.01%)</title><rect x="66.6764%" y="709" width="0.0124%" height="15" fill="rgb(234,183,24)" fg:x="429087" fg:w="80"/><text x="66.9264%" y="719.50"></text></g><g><title>x86_pmu_enable (77 samples, 0.01%)</title><rect x="66.6768%" y="693" width="0.0120%" height="15" fill="rgb(252,84,40)" fg:x="429090" fg:w="77"/><text x="66.9268%" y="703.50"></text></g><g><title>intel_pmu_enable_all (76 samples, 0.01%)</title><rect x="66.6770%" y="677" width="0.0118%" height="15" fill="rgb(224,65,2)" fg:x="429091" fg:w="76"/><text x="66.9270%" y="687.50"></text></g><g><title>native_write_msr (75 samples, 0.01%)</title><rect x="66.6771%" y="661" width="0.0117%" height="15" fill="rgb(229,38,24)" fg:x="429092" fg:w="75"/><text x="66.9271%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (90 samples, 0.01%)</title><rect x="66.6760%" y="725" width="0.0140%" height="15" fill="rgb(218,131,50)" fg:x="429085" fg:w="90"/><text x="66.9260%" y="735.50"></text></g><g><title>schedule (95 samples, 0.01%)</title><rect x="66.6756%" y="757" width="0.0148%" height="15" fill="rgb(233,106,18)" fg:x="429082" fg:w="95"/><text x="66.9256%" y="767.50"></text></g><g><title>__schedule (95 samples, 0.01%)</title><rect x="66.6756%" y="741" width="0.0148%" height="15" fill="rgb(220,216,11)" fg:x="429082" fg:w="95"/><text x="66.9256%" y="751.50"></text></g><g><title>de_thread (102 samples, 0.02%)</title><rect x="66.6750%" y="773" width="0.0158%" height="15" fill="rgb(251,100,45)" fg:x="429078" fg:w="102"/><text x="66.9250%" y="783.50"></text></g><g><title>load_elf_binary (112 samples, 0.02%)</title><rect x="66.6750%" y="805" width="0.0174%" height="15" fill="rgb(235,143,32)" fg:x="429078" fg:w="112"/><text x="66.9250%" y="815.50"></text></g><g><title>begin_new_exec (112 samples, 0.02%)</title><rect x="66.6750%" y="789" width="0.0174%" height="15" fill="rgb(248,124,34)" fg:x="429078" fg:w="112"/><text x="66.9250%" y="799.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (363 samples, 0.06%)</title><rect x="66.7035%" y="613" width="0.0564%" height="15" fill="rgb(225,221,4)" fg:x="429262" fg:w="363"/><text x="66.9535%" y="623.50"></text></g><g><title>_ZdlPv (362 samples, 0.06%)</title><rect x="66.7037%" y="597" width="0.0563%" height="15" fill="rgb(242,27,43)" fg:x="429263" fg:w="362"/><text x="66.9537%" y="607.50"></text></g><g><title>_ZdlPv (359 samples, 0.06%)</title><rect x="66.7042%" y="581" width="0.0558%" height="15" fill="rgb(227,54,8)" fg:x="429266" fg:w="359"/><text x="66.9542%" y="591.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (359 samples, 0.06%)</title><rect x="66.7042%" y="565" width="0.0558%" height="15" fill="rgb(253,139,49)" fg:x="429266" fg:w="359"/><text x="66.9542%" y="575.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (311 samples, 0.05%)</title><rect x="66.7116%" y="549" width="0.0483%" height="15" fill="rgb(231,26,43)" fg:x="429314" fg:w="311"/><text x="66.9616%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (72 samples, 0.01%)</title><rect x="66.7488%" y="533" width="0.0112%" height="15" fill="rgb(207,121,39)" fg:x="429553" fg:w="72"/><text x="66.9988%" y="543.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (415 samples, 0.06%)</title><rect x="66.7004%" y="645" width="0.0645%" height="15" fill="rgb(223,101,35)" fg:x="429242" fg:w="415"/><text x="66.9504%" y="655.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (400 samples, 0.06%)</title><rect x="66.7028%" y="629" width="0.0622%" height="15" fill="rgb(232,87,23)" fg:x="429257" fg:w="400"/><text x="66.9528%" y="639.50"></text></g><g><title>_ZdlPv (80 samples, 0.01%)</title><rect x="66.7680%" y="597" width="0.0124%" height="15" fill="rgb(225,180,29)" fg:x="429677" fg:w="80"/><text x="67.0180%" y="607.50"></text></g><g><title>_ZdlPv (85 samples, 0.01%)</title><rect x="66.7674%" y="613" width="0.0132%" height="15" fill="rgb(225,25,17)" fg:x="429673" fg:w="85"/><text x="67.0174%" y="623.50"></text></g><g><title>_ZdlPv (103 samples, 0.02%)</title><rect x="66.7652%" y="629" width="0.0160%" height="15" fill="rgb(223,8,52)" fg:x="429659" fg:w="103"/><text x="67.0152%" y="639.50"></text></g><g><title>_ZdlPv (122 samples, 0.02%)</title><rect x="66.7649%" y="645" width="0.0190%" height="15" fill="rgb(246,42,21)" fg:x="429657" fg:w="122"/><text x="67.0149%" y="655.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (203 samples, 0.03%)</title><rect x="66.7868%" y="597" width="0.0315%" height="15" fill="rgb(205,64,43)" fg:x="429798" fg:w="203"/><text x="67.0368%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (179 samples, 0.03%)</title><rect x="66.7906%" y="581" width="0.0278%" height="15" fill="rgb(221,160,13)" fg:x="429822" fg:w="179"/><text x="67.0406%" y="591.50"></text></g><g><title>_ZdlPv (211 samples, 0.03%)</title><rect x="66.7862%" y="613" width="0.0328%" height="15" fill="rgb(239,58,35)" fg:x="429794" fg:w="211"/><text x="67.0362%" y="623.50"></text></g><g><title>_ZdlPv (215 samples, 0.03%)</title><rect x="66.7859%" y="629" width="0.0334%" height="15" fill="rgb(251,26,40)" fg:x="429792" fg:w="215"/><text x="67.0359%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (103 samples, 0.02%)</title><rect x="66.8482%" y="485" width="0.0160%" height="15" fill="rgb(247,0,4)" fg:x="430193" fg:w="103"/><text x="67.0982%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (79 samples, 0.01%)</title><rect x="66.8519%" y="469" width="0.0123%" height="15" fill="rgb(218,130,10)" fg:x="430217" fg:w="79"/><text x="67.1019%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (112 samples, 0.02%)</title><rect x="66.8471%" y="501" width="0.0174%" height="15" fill="rgb(239,32,7)" fg:x="430186" fg:w="112"/><text x="67.0971%" y="511.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (155 samples, 0.02%)</title><rect x="66.8406%" y="549" width="0.0241%" height="15" fill="rgb(210,192,24)" fg:x="430144" fg:w="155"/><text x="67.0906%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.02%)</title><rect x="66.8428%" y="533" width="0.0219%" height="15" fill="rgb(226,212,17)" fg:x="430158" fg:w="141"/><text x="67.0928%" y="543.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (122 samples, 0.02%)</title><rect x="66.8457%" y="517" width="0.0190%" height="15" fill="rgb(219,201,28)" fg:x="430177" fg:w="122"/><text x="67.0957%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (175 samples, 0.03%)</title><rect x="66.8381%" y="565" width="0.0272%" height="15" fill="rgb(235,207,41)" fg:x="430128" fg:w="175"/><text x="67.0881%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (225 samples, 0.03%)</title><rect x="66.8316%" y="597" width="0.0350%" height="15" fill="rgb(241,95,54)" fg:x="430086" fg:w="225"/><text x="67.0816%" y="607.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (198 samples, 0.03%)</title><rect x="66.8358%" y="581" width="0.0308%" height="15" fill="rgb(248,12,23)" fg:x="430113" fg:w="198"/><text x="67.0858%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (281 samples, 0.04%)</title><rect x="66.8237%" y="613" width="0.0437%" height="15" fill="rgb(228,173,4)" fg:x="430035" fg:w="281"/><text x="67.0737%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (536 samples, 0.08%)</title><rect x="66.7851%" y="645" width="0.0833%" height="15" fill="rgb(254,99,5)" fg:x="429787" fg:w="536"/><text x="67.0351%" y="655.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (315 samples, 0.05%)</title><rect x="66.8195%" y="629" width="0.0489%" height="15" fill="rgb(212,184,17)" fg:x="430008" fg:w="315"/><text x="67.0695%" y="639.50"></text></g><g><title>_ZdlPv (1,099 samples, 0.17%)</title><rect x="66.6978%" y="661" width="0.1708%" height="15" fill="rgb(252,174,1)" fg:x="429225" fg:w="1099"/><text x="66.9478%" y="671.50"></text></g><g><title>_ZdlPv (1,110 samples, 0.17%)</title><rect x="66.6969%" y="693" width="0.1725%" height="15" fill="rgb(241,118,51)" fg:x="429219" fg:w="1110"/><text x="66.9469%" y="703.50"></text></g><g><title>_ZdlPv (1,110 samples, 0.17%)</title><rect x="66.6969%" y="677" width="0.1725%" height="15" fill="rgb(227,94,47)" fg:x="429219" fg:w="1110"/><text x="66.9469%" y="687.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (156 samples, 0.02%)</title><rect x="66.8728%" y="581" width="0.0242%" height="15" fill="rgb(229,104,2)" fg:x="430351" fg:w="156"/><text x="67.1228%" y="591.50"></text></g><g><title>_ZdlPv (156 samples, 0.02%)</title><rect x="66.8728%" y="565" width="0.0242%" height="15" fill="rgb(219,28,31)" fg:x="430351" fg:w="156"/><text x="67.1228%" y="575.50"></text></g><g><title>_ZdlPv (155 samples, 0.02%)</title><rect x="66.8729%" y="549" width="0.0241%" height="15" fill="rgb(233,109,36)" fg:x="430352" fg:w="155"/><text x="67.1229%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (155 samples, 0.02%)</title><rect x="66.8729%" y="533" width="0.0241%" height="15" fill="rgb(246,88,11)" fg:x="430352" fg:w="155"/><text x="67.1229%" y="543.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (131 samples, 0.02%)</title><rect x="66.8767%" y="517" width="0.0204%" height="15" fill="rgb(209,212,17)" fg:x="430376" fg:w="131"/><text x="67.1267%" y="527.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (218 samples, 0.03%)</title><rect x="66.8715%" y="613" width="0.0339%" height="15" fill="rgb(243,59,29)" fg:x="430343" fg:w="218"/><text x="67.1215%" y="623.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (214 samples, 0.03%)</title><rect x="66.8721%" y="597" width="0.0333%" height="15" fill="rgb(244,205,48)" fg:x="430347" fg:w="214"/><text x="67.1221%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (279 samples, 0.04%)</title><rect x="66.9212%" y="549" width="0.0434%" height="15" fill="rgb(227,30,6)" fg:x="430663" fg:w="279"/><text x="67.1712%" y="559.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (324 samples, 0.05%)</title><rect x="66.9160%" y="565" width="0.0503%" height="15" fill="rgb(220,205,48)" fg:x="430629" fg:w="324"/><text x="67.1660%" y="575.50"></text></g><g><title>_ZdlPv (328 samples, 0.05%)</title><rect x="66.9157%" y="597" width="0.0510%" height="15" fill="rgb(250,94,14)" fg:x="430627" fg:w="328"/><text x="67.1657%" y="607.50"></text></g><g><title>_ZdlPv (327 samples, 0.05%)</title><rect x="66.9158%" y="581" width="0.0508%" height="15" fill="rgb(216,119,42)" fg:x="430628" fg:w="327"/><text x="67.1658%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (74 samples, 0.01%)</title><rect x="66.9797%" y="517" width="0.0115%" height="15" fill="rgb(232,155,0)" fg:x="431039" fg:w="74"/><text x="67.2297%" y="527.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (145 samples, 0.02%)</title><rect x="66.9697%" y="581" width="0.0225%" height="15" fill="rgb(212,24,32)" fg:x="430975" fg:w="145"/><text x="67.2197%" y="591.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (116 samples, 0.02%)</title><rect x="66.9742%" y="565" width="0.0180%" height="15" fill="rgb(216,69,20)" fg:x="431004" fg:w="116"/><text x="67.2242%" y="575.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (95 samples, 0.01%)</title><rect x="66.9775%" y="549" width="0.0148%" height="15" fill="rgb(229,73,31)" fg:x="431025" fg:w="95"/><text x="67.2275%" y="559.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (88 samples, 0.01%)</title><rect x="66.9786%" y="533" width="0.0137%" height="15" fill="rgb(224,219,20)" fg:x="431032" fg:w="88"/><text x="67.2286%" y="543.50"></text></g><g><title>_ZdlPv (788 samples, 0.12%)</title><rect x="66.8701%" y="629" width="0.1224%" height="15" fill="rgb(215,146,41)" fg:x="430334" fg:w="788"/><text x="67.1201%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (500 samples, 0.08%)</title><rect x="66.9149%" y="613" width="0.0777%" height="15" fill="rgb(244,71,31)" fg:x="430622" fg:w="500"/><text x="67.1649%" y="623.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (167 samples, 0.03%)</title><rect x="66.9666%" y="597" width="0.0260%" height="15" fill="rgb(224,24,11)" fg:x="430955" fg:w="167"/><text x="67.2166%" y="607.50"></text></g><g><title>_ZdlPv (792 samples, 0.12%)</title><rect x="66.8697%" y="661" width="0.1231%" height="15" fill="rgb(229,76,15)" fg:x="430331" fg:w="792"/><text x="67.1197%" y="671.50"></text></g><g><title>_ZdlPv (792 samples, 0.12%)</title><rect x="66.8697%" y="645" width="0.1231%" height="15" fill="rgb(209,93,2)" fg:x="430331" fg:w="792"/><text x="67.1197%" y="655.50"></text></g><g><title>_ZdlPv (793 samples, 0.12%)</title><rect x="66.8697%" y="677" width="0.1232%" height="15" fill="rgb(216,200,50)" fg:x="430331" fg:w="793"/><text x="67.1197%" y="687.50"></text></g><g><title>cshook_security_sb_free_security (820 samples, 0.13%)</title><rect x="66.8695%" y="693" width="0.1274%" height="15" fill="rgb(211,67,34)" fg:x="430330" fg:w="820"/><text x="67.1195%" y="703.50"></text></g><g><title>cshook_security_sb_free_security (1,956 samples, 0.30%)</title><rect x="66.6967%" y="725" width="0.3039%" height="15" fill="rgb(225,87,47)" fg:x="429218" fg:w="1956"/><text x="66.9467%" y="735.50"></text></g><g><title>cshook_security_sb_free_security (1,955 samples, 0.30%)</title><rect x="66.6969%" y="709" width="0.3038%" height="15" fill="rgb(217,185,16)" fg:x="429219" fg:w="1955"/><text x="66.9469%" y="719.50"></text></g><g><title>cshook_security_file_permission (1,959 samples, 0.30%)</title><rect x="66.6964%" y="741" width="0.3044%" height="15" fill="rgb(205,0,0)" fg:x="429216" fg:w="1959"/><text x="66.9464%" y="751.50"></text></g><g><title>exec_binprm (2,112 samples, 0.33%)</title><rect x="66.6734%" y="837" width="0.3282%" height="15" fill="rgb(207,116,45)" fg:x="429068" fg:w="2112"/><text x="66.9234%" y="847.50"></text></g><g><title>search_binary_handler (2,105 samples, 0.33%)</title><rect x="66.6745%" y="821" width="0.3271%" height="15" fill="rgb(221,156,26)" fg:x="429075" fg:w="2105"/><text x="66.9245%" y="831.50"></text></g><g><title>security_bprm_check (1,987 samples, 0.31%)</title><rect x="66.6928%" y="805" width="0.3088%" height="15" fill="rgb(213,140,4)" fg:x="429193" fg:w="1987"/><text x="66.9428%" y="815.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,985 samples, 0.31%)</title><rect x="66.6931%" y="789" width="0.3085%" height="15" fill="rgb(231,224,15)" fg:x="429195" fg:w="1985"/><text x="66.9431%" y="799.50"></text></g><g><title>cshook_security_bprm_check_security (1,985 samples, 0.31%)</title><rect x="66.6931%" y="773" width="0.3085%" height="15" fill="rgb(244,76,20)" fg:x="429195" fg:w="1985"/><text x="66.9431%" y="783.50"></text></g><g><title>cshook_security_file_permission (1,985 samples, 0.31%)</title><rect x="66.6931%" y="757" width="0.3085%" height="15" fill="rgb(238,117,7)" fg:x="429195" fg:w="1985"/><text x="66.9431%" y="767.50"></text></g><g><title>bprm_execve.part.0 (2,169 samples, 0.34%)</title><rect x="66.6729%" y="853" width="0.3370%" height="15" fill="rgb(235,1,10)" fg:x="429065" fg:w="2169"/><text x="66.9229%" y="863.50"></text></g><g><title>bprm_execve (2,171 samples, 0.34%)</title><rect x="66.6729%" y="869" width="0.3374%" height="15" fill="rgb(216,165,6)" fg:x="429065" fg:w="2171"/><text x="66.9229%" y="879.50"></text></g><g><title>do_execveat_common.isra.0 (2,238 samples, 0.35%)</title><rect x="66.6708%" y="885" width="0.3478%" height="15" fill="rgb(246,91,35)" fg:x="429051" fg:w="2238"/><text x="66.9208%" y="895.50"></text></g><g><title>__x64_sys_execve (2,239 samples, 0.35%)</title><rect x="66.6708%" y="901" width="0.3479%" height="15" fill="rgb(228,96,24)" fg:x="429051" fg:w="2239"/><text x="66.9208%" y="911.50"></text></g><g><title>dequeue_task_fair (74 samples, 0.01%)</title><rect x="67.0535%" y="789" width="0.0115%" height="15" fill="rgb(254,217,53)" fg:x="431514" fg:w="74"/><text x="67.3035%" y="799.50"></text></g><g><title>dequeue_task (81 samples, 0.01%)</title><rect x="67.0529%" y="805" width="0.0126%" height="15" fill="rgb(209,60,0)" fg:x="431510" fg:w="81"/><text x="67.3029%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (2,189 samples, 0.34%)</title><rect x="67.0692%" y="789" width="0.3402%" height="15" fill="rgb(250,93,26)" fg:x="431615" fg:w="2189"/><text x="67.3192%" y="799.50"></text></g><g><title>x86_pmu_enable (2,157 samples, 0.34%)</title><rect x="67.0742%" y="773" width="0.3352%" height="15" fill="rgb(211,9,40)" fg:x="431647" fg:w="2157"/><text x="67.3242%" y="783.50"></text></g><g><title>intel_pmu_enable_all (2,140 samples, 0.33%)</title><rect x="67.0768%" y="757" width="0.3325%" height="15" fill="rgb(242,57,20)" fg:x="431664" fg:w="2140"/><text x="67.3268%" y="767.50"></text></g><g><title>native_write_msr (2,129 samples, 0.33%)</title><rect x="67.0785%" y="741" width="0.3308%" height="15" fill="rgb(248,85,48)" fg:x="431675" fg:w="2129"/><text x="67.3285%" y="751.50"></text></g><g><title>finish_task_switch.isra.0 (2,296 samples, 0.36%)</title><rect x="67.0655%" y="805" width="0.3568%" height="15" fill="rgb(212,117,2)" fg:x="431591" fg:w="2296"/><text x="67.3155%" y="815.50"></text></g><g><title>pick_next_task (70 samples, 0.01%)</title><rect x="67.4230%" y="805" width="0.0109%" height="15" fill="rgb(243,19,3)" fg:x="433892" fg:w="70"/><text x="67.6730%" y="815.50"></text></g><g><title>psi_task_switch (91 samples, 0.01%)</title><rect x="67.4404%" y="805" width="0.0141%" height="15" fill="rgb(232,217,24)" fg:x="434004" fg:w="91"/><text x="67.6904%" y="815.50"></text></g><g><title>__schedule (2,653 samples, 0.41%)</title><rect x="67.0463%" y="821" width="0.4123%" height="15" fill="rgb(224,175,40)" fg:x="431468" fg:w="2653"/><text x="67.2963%" y="831.50"></text></g><g><title>futex_wait_queue_me (2,674 samples, 0.42%)</title><rect x="67.0434%" y="853" width="0.4155%" height="15" fill="rgb(212,162,32)" fg:x="431449" fg:w="2674"/><text x="67.2934%" y="863.50"></text></g><g><title>schedule (2,660 samples, 0.41%)</title><rect x="67.0456%" y="837" width="0.4133%" height="15" fill="rgb(215,9,4)" fg:x="431463" fg:w="2660"/><text x="67.2956%" y="847.50"></text></g><g><title>futex_wait (2,719 samples, 0.42%)</title><rect x="67.0400%" y="869" width="0.4225%" height="15" fill="rgb(242,42,7)" fg:x="431427" fg:w="2719"/><text x="67.2900%" y="879.50"></text></g><g><title>enqueue_task (83 samples, 0.01%)</title><rect x="67.4785%" y="805" width="0.0129%" height="15" fill="rgb(242,184,45)" fg:x="434249" fg:w="83"/><text x="67.7285%" y="815.50"></text></g><g><title>ttwu_do_activate (93 samples, 0.01%)</title><rect x="67.4783%" y="821" width="0.0145%" height="15" fill="rgb(228,111,51)" fg:x="434248" fg:w="93"/><text x="67.7283%" y="831.50"></text></g><g><title>futex_wake (201 samples, 0.03%)</title><rect x="67.4626%" y="869" width="0.0312%" height="15" fill="rgb(236,147,17)" fg:x="434147" fg:w="201"/><text x="67.7126%" y="879.50"></text></g><g><title>wake_up_q (178 samples, 0.03%)</title><rect x="67.4662%" y="853" width="0.0277%" height="15" fill="rgb(210,75,22)" fg:x="434170" fg:w="178"/><text x="67.7162%" y="863.50"></text></g><g><title>try_to_wake_up (174 samples, 0.03%)</title><rect x="67.4668%" y="837" width="0.0270%" height="15" fill="rgb(217,159,45)" fg:x="434174" fg:w="174"/><text x="67.7168%" y="847.50"></text></g><g><title>do_futex (2,940 samples, 0.46%)</title><rect x="67.0379%" y="885" width="0.4569%" height="15" fill="rgb(245,165,53)" fg:x="431414" fg:w="2940"/><text x="67.2879%" y="895.50"></text></g><g><title>__x64_sys_futex (2,948 samples, 0.46%)</title><rect x="67.0372%" y="901" width="0.4581%" height="15" fill="rgb(251,190,50)" fg:x="431409" fg:w="2948"/><text x="67.2872%" y="911.50"></text></g><g><title>__vma_adjust (67 samples, 0.01%)</title><rect x="67.5134%" y="837" width="0.0104%" height="15" fill="rgb(208,203,29)" fg:x="434474" fg:w="67"/><text x="67.7634%" y="847.50"></text></g><g><title>vm_area_dup (69 samples, 0.01%)</title><rect x="67.5329%" y="837" width="0.0107%" height="15" fill="rgb(207,209,35)" fg:x="434599" fg:w="69"/><text x="67.7829%" y="847.50"></text></g><g><title>__split_vma (203 samples, 0.03%)</title><rect x="67.5124%" y="853" width="0.0315%" height="15" fill="rgb(230,144,49)" fg:x="434467" fg:w="203"/><text x="67.7624%" y="863.50"></text></g><g><title>__pagevec_lru_add (87 samples, 0.01%)</title><rect x="67.5680%" y="805" width="0.0135%" height="15" fill="rgb(229,31,6)" fg:x="434825" fg:w="87"/><text x="67.8180%" y="815.50"></text></g><g><title>lru_add_drain (115 samples, 0.02%)</title><rect x="67.5652%" y="837" width="0.0179%" height="15" fill="rgb(251,129,24)" fg:x="434807" fg:w="115"/><text x="67.8152%" y="847.50"></text></g><g><title>lru_add_drain_cpu (112 samples, 0.02%)</title><rect x="67.5657%" y="821" width="0.0174%" height="15" fill="rgb(235,105,15)" fg:x="434810" fg:w="112"/><text x="67.8157%" y="831.50"></text></g><g><title>flush_tlb_mm_range (78 samples, 0.01%)</title><rect x="67.5848%" y="821" width="0.0121%" height="15" fill="rgb(216,52,43)" fg:x="434933" fg:w="78"/><text x="67.8348%" y="831.50"></text></g><g><title>__mem_cgroup_uncharge_list (80 samples, 0.01%)</title><rect x="67.6165%" y="789" width="0.0124%" height="15" fill="rgb(238,144,41)" fg:x="435137" fg:w="80"/><text x="67.8665%" y="799.50"></text></g><g><title>free_unref_page_list (174 samples, 0.03%)</title><rect x="67.6438%" y="789" width="0.0270%" height="15" fill="rgb(243,63,9)" fg:x="435313" fg:w="174"/><text x="67.8938%" y="799.50"></text></g><g><title>free_unref_page_commit.constprop.0 (94 samples, 0.01%)</title><rect x="67.6562%" y="773" width="0.0146%" height="15" fill="rgb(246,208,1)" fg:x="435393" fg:w="94"/><text x="67.9062%" y="783.50"></text></g><g><title>free_pcppages_bulk (66 samples, 0.01%)</title><rect x="67.6606%" y="757" width="0.0103%" height="15" fill="rgb(233,182,18)" fg:x="435421" fg:w="66"/><text x="67.9106%" y="767.50"></text></g><g><title>free_pages_and_swap_cache (513 samples, 0.08%)</title><rect x="67.5975%" y="821" width="0.0797%" height="15" fill="rgb(242,224,8)" fg:x="435015" fg:w="513"/><text x="67.8475%" y="831.50"></text></g><g><title>release_pages (499 samples, 0.08%)</title><rect x="67.5997%" y="805" width="0.0775%" height="15" fill="rgb(243,54,37)" fg:x="435029" fg:w="499"/><text x="67.8497%" y="815.50"></text></g><g><title>tlb_finish_mmu (630 samples, 0.10%)</title><rect x="67.5831%" y="837" width="0.0979%" height="15" fill="rgb(233,192,12)" fg:x="434922" fg:w="630"/><text x="67.8331%" y="847.50"></text></g><g><title>__mod_lruvec_page_state (80 samples, 0.01%)</title><rect x="67.7381%" y="741" width="0.0124%" height="15" fill="rgb(251,192,53)" fg:x="435920" fg:w="80"/><text x="67.9881%" y="751.50"></text></g><g><title>page_remove_rmap (170 samples, 0.03%)</title><rect x="67.7297%" y="757" width="0.0264%" height="15" fill="rgb(246,141,26)" fg:x="435866" fg:w="170"/><text x="67.9797%" y="767.50"></text></g><g><title>unmap_page_range (489 samples, 0.08%)</title><rect x="67.6834%" y="805" width="0.0760%" height="15" fill="rgb(239,195,19)" fg:x="435568" fg:w="489"/><text x="67.9334%" y="815.50"></text></g><g><title>zap_pmd_range.isra.0 (474 samples, 0.07%)</title><rect x="67.6858%" y="789" width="0.0737%" height="15" fill="rgb(241,16,39)" fg:x="435583" fg:w="474"/><text x="67.9358%" y="799.50"></text></g><g><title>zap_pte_range (449 samples, 0.07%)</title><rect x="67.6897%" y="773" width="0.0698%" height="15" fill="rgb(223,13,53)" fg:x="435608" fg:w="449"/><text x="67.9397%" y="783.50"></text></g><g><title>unmap_region (1,314 samples, 0.20%)</title><rect x="67.5554%" y="853" width="0.2042%" height="15" fill="rgb(214,227,0)" fg:x="434744" fg:w="1314"/><text x="67.8054%" y="863.50"></text></g><g><title>unmap_vmas (497 samples, 0.08%)</title><rect x="67.6824%" y="837" width="0.0772%" height="15" fill="rgb(228,103,26)" fg:x="435561" fg:w="497"/><text x="67.9324%" y="847.50"></text></g><g><title>unmap_single_vma (495 samples, 0.08%)</title><rect x="67.6827%" y="821" width="0.0769%" height="15" fill="rgb(254,177,53)" fg:x="435563" fg:w="495"/><text x="67.9327%" y="831.50"></text></g><g><title>__do_munmap (1,619 samples, 0.25%)</title><rect x="67.5092%" y="869" width="0.2516%" height="15" fill="rgb(208,201,34)" fg:x="434447" fg:w="1619"/><text x="67.7592%" y="879.50"></text></g><g><title>__vm_munmap (1,651 samples, 0.26%)</title><rect x="67.5080%" y="885" width="0.2566%" height="15" fill="rgb(212,39,5)" fg:x="434439" fg:w="1651"/><text x="67.7580%" y="895.50"></text></g><g><title>__x64_sys_munmap (1,659 samples, 0.26%)</title><rect x="67.5080%" y="901" width="0.2578%" height="15" fill="rgb(246,117,3)" fg:x="434439" fg:w="1659"/><text x="67.7580%" y="911.50"></text></g><g><title>copy_user_enhanced_fast_string (376 samples, 0.06%)</title><rect x="67.8217%" y="853" width="0.0584%" height="15" fill="rgb(244,118,39)" fg:x="436458" fg:w="376"/><text x="68.0717%" y="863.50"></text></g><g><title>from_kgid_munged (79 samples, 0.01%)</title><rect x="67.8802%" y="853" width="0.0123%" height="15" fill="rgb(241,64,10)" fg:x="436834" fg:w="79"/><text x="68.1302%" y="863.50"></text></g><g><title>map_id_up (74 samples, 0.01%)</title><rect x="67.8809%" y="837" width="0.0115%" height="15" fill="rgb(229,39,44)" fg:x="436839" fg:w="74"/><text x="68.1309%" y="847.50"></text></g><g><title>from_kuid_munged (176 samples, 0.03%)</title><rect x="67.8924%" y="853" width="0.0273%" height="15" fill="rgb(230,226,3)" fg:x="436913" fg:w="176"/><text x="68.1424%" y="863.50"></text></g><g><title>map_id_up (172 samples, 0.03%)</title><rect x="67.8931%" y="837" width="0.0267%" height="15" fill="rgb(222,13,42)" fg:x="436917" fg:w="172"/><text x="68.1431%" y="847.50"></text></g><g><title>cp_new_stat (880 samples, 0.14%)</title><rect x="67.7880%" y="869" width="0.1367%" height="15" fill="rgb(247,180,54)" fg:x="436241" fg:w="880"/><text x="68.0380%" y="879.50"></text></g><g><title>__fget_files (204 samples, 0.03%)</title><rect x="67.9510%" y="821" width="0.0317%" height="15" fill="rgb(205,96,16)" fg:x="437290" fg:w="204"/><text x="68.2010%" y="831.50"></text></g><g><title>__fdget_raw (218 samples, 0.03%)</title><rect x="67.9492%" y="853" width="0.0339%" height="15" fill="rgb(205,100,21)" fg:x="437278" fg:w="218"/><text x="68.1992%" y="863.50"></text></g><g><title>__fget_light (212 samples, 0.03%)</title><rect x="67.9501%" y="837" width="0.0329%" height="15" fill="rgb(248,51,4)" fg:x="437284" fg:w="212"/><text x="68.2001%" y="847.50"></text></g><g><title>apparmor_inode_getattr (139 samples, 0.02%)</title><rect x="67.9908%" y="853" width="0.0216%" height="15" fill="rgb(217,197,30)" fg:x="437546" fg:w="139"/><text x="68.2408%" y="863.50"></text></g><g><title>btrfs_getattr (93 samples, 0.01%)</title><rect x="68.0124%" y="853" width="0.0145%" height="15" fill="rgb(240,179,40)" fg:x="437685" fg:w="93"/><text x="68.2624%" y="863.50"></text></g><g><title>fput_many (101 samples, 0.02%)</title><rect x="68.0290%" y="853" width="0.0157%" height="15" fill="rgb(212,185,35)" fg:x="437792" fg:w="101"/><text x="68.2790%" y="863.50"></text></g><g><title>apparmor_inode_getattr (506 samples, 0.08%)</title><rect x="68.0539%" y="837" width="0.0786%" height="15" fill="rgb(251,222,31)" fg:x="437952" fg:w="506"/><text x="68.3039%" y="847.50"></text></g><g><title>common_perm_cond (501 samples, 0.08%)</title><rect x="68.0547%" y="821" width="0.0779%" height="15" fill="rgb(208,140,36)" fg:x="437957" fg:w="501"/><text x="68.3047%" y="831.50"></text></g><g><title>security_inode_getattr (699 samples, 0.11%)</title><rect x="68.0447%" y="853" width="0.1086%" height="15" fill="rgb(220,148,1)" fg:x="437893" fg:w="699"/><text x="68.2947%" y="863.50"></text></g><g><title>common_perm_cond (132 samples, 0.02%)</title><rect x="68.1328%" y="837" width="0.0205%" height="15" fill="rgb(254,4,28)" fg:x="438460" fg:w="132"/><text x="68.3828%" y="847.50"></text></g><g><title>_raw_spin_lock (276 samples, 0.04%)</title><rect x="68.1944%" y="837" width="0.0429%" height="15" fill="rgb(222,185,44)" fg:x="438856" fg:w="276"/><text x="68.4444%" y="847.50"></text></g><g><title>_raw_spin_lock (105 samples, 0.02%)</title><rect x="68.3894%" y="821" width="0.0163%" height="15" fill="rgb(215,74,39)" fg:x="440111" fg:w="105"/><text x="68.6394%" y="831.50"></text></g><g><title>generic_fillattr (79 samples, 0.01%)</title><rect x="68.4062%" y="821" width="0.0123%" height="15" fill="rgb(247,86,4)" fg:x="440219" fg:w="79"/><text x="68.6562%" y="831.50"></text></g><g><title>btrfs_getattr (1,181 samples, 0.18%)</title><rect x="68.2373%" y="837" width="0.1835%" height="15" fill="rgb(231,105,32)" fg:x="439132" fg:w="1181"/><text x="68.4873%" y="847.50"></text></g><g><title>vfs_fstat (3,082 samples, 0.48%)</title><rect x="67.9437%" y="869" width="0.4789%" height="15" fill="rgb(222,65,35)" fg:x="437243" fg:w="3082"/><text x="68.1937%" y="879.50"></text></g><g><title>vfs_getattr_nosec (1,733 samples, 0.27%)</title><rect x="68.1533%" y="853" width="0.2693%" height="15" fill="rgb(218,145,35)" fg:x="438592" fg:w="1733"/><text x="68.4033%" y="863.50"></text></g><g><title>__do_sys_newfstat (4,243 samples, 0.66%)</title><rect x="67.7670%" y="885" width="0.6593%" height="15" fill="rgb(208,7,15)" fg:x="436106" fg:w="4243"/><text x="68.0170%" y="895.50"></text></g><g><title>__x64_sys_newfstat (4,283 samples, 0.67%)</title><rect x="67.7658%" y="901" width="0.6655%" height="15" fill="rgb(209,83,13)" fg:x="436098" fg:w="4283"/><text x="68.0158%" y="911.50"></text></g><g><title>path_lookupat (75 samples, 0.01%)</title><rect x="68.4321%" y="821" width="0.0117%" height="15" fill="rgb(218,3,10)" fg:x="440386" fg:w="75"/><text x="68.6821%" y="831.50"></text></g><g><title>filename_lookup (76 samples, 0.01%)</title><rect x="68.4321%" y="837" width="0.0118%" height="15" fill="rgb(211,219,4)" fg:x="440386" fg:w="76"/><text x="68.6821%" y="847.50"></text></g><g><title>user_path_at_empty (85 samples, 0.01%)</title><rect x="68.4321%" y="853" width="0.0132%" height="15" fill="rgb(228,194,12)" fg:x="440386" fg:w="85"/><text x="68.6821%" y="863.50"></text></g><g><title>__do_sys_newstat (90 samples, 0.01%)</title><rect x="68.4317%" y="885" width="0.0140%" height="15" fill="rgb(210,175,7)" fg:x="440383" fg:w="90"/><text x="68.6817%" y="895.50"></text></g><g><title>vfs_statx (88 samples, 0.01%)</title><rect x="68.4320%" y="869" width="0.0137%" height="15" fill="rgb(243,132,6)" fg:x="440385" fg:w="88"/><text x="68.6820%" y="879.50"></text></g><g><title>__x64_sys_newstat (91 samples, 0.01%)</title><rect x="68.4317%" y="901" width="0.0141%" height="15" fill="rgb(207,72,18)" fg:x="440383" fg:w="91"/><text x="68.6817%" y="911.50"></text></g><g><title>__x64_sys_read (116 samples, 0.02%)</title><rect x="68.4512%" y="901" width="0.0180%" height="15" fill="rgb(236,1,18)" fg:x="440509" fg:w="116"/><text x="68.7012%" y="911.50"></text></g><g><title>__x64_sys_readlink (65 samples, 0.01%)</title><rect x="68.4693%" y="901" width="0.0101%" height="15" fill="rgb(227,0,18)" fg:x="440625" fg:w="65"/><text x="68.7193%" y="911.50"></text></g><g><title>do_readlinkat (65 samples, 0.01%)</title><rect x="68.4693%" y="885" width="0.0101%" height="15" fill="rgb(247,37,5)" fg:x="440625" fg:w="65"/><text x="68.7193%" y="895.50"></text></g><g><title>__perf_event_task_sched_in (66 samples, 0.01%)</title><rect x="68.4831%" y="789" width="0.0103%" height="15" fill="rgb(237,179,24)" fg:x="440714" fg:w="66"/><text x="68.7331%" y="799.50"></text></g><g><title>finish_task_switch.isra.0 (69 samples, 0.01%)</title><rect x="68.4831%" y="805" width="0.0107%" height="15" fill="rgb(226,53,20)" fg:x="440714" fg:w="69"/><text x="68.7331%" y="815.50"></text></g><g><title>schedule (74 samples, 0.01%)</title><rect x="68.4829%" y="837" width="0.0115%" height="15" fill="rgb(247,75,7)" fg:x="440713" fg:w="74"/><text x="68.7329%" y="847.50"></text></g><g><title>__schedule (74 samples, 0.01%)</title><rect x="68.4829%" y="821" width="0.0115%" height="15" fill="rgb(233,96,12)" fg:x="440713" fg:w="74"/><text x="68.7329%" y="831.50"></text></g><g><title>do_wait (81 samples, 0.01%)</title><rect x="68.4822%" y="853" width="0.0126%" height="15" fill="rgb(224,125,0)" fg:x="440708" fg:w="81"/><text x="68.7322%" y="863.50"></text></g><g><title>__x64_sys_wait4 (83 samples, 0.01%)</title><rect x="68.4820%" y="901" width="0.0129%" height="15" fill="rgb(224,92,25)" fg:x="440707" fg:w="83"/><text x="68.7320%" y="911.50"></text></g><g><title>__do_sys_wait4 (83 samples, 0.01%)</title><rect x="68.4820%" y="885" width="0.0129%" height="15" fill="rgb(224,42,24)" fg:x="440707" fg:w="83"/><text x="68.7320%" y="895.50"></text></g><g><title>kernel_wait4 (83 samples, 0.01%)</title><rect x="68.4820%" y="869" width="0.0129%" height="15" fill="rgb(234,132,49)" fg:x="440707" fg:w="83"/><text x="68.7320%" y="879.50"></text></g><g><title>__x86_indirect_thunk_rax (102 samples, 0.02%)</title><rect x="68.4949%" y="901" width="0.0158%" height="15" fill="rgb(248,100,35)" fg:x="440790" fg:w="102"/><text x="68.7449%" y="911.50"></text></g><g><title>acquire_rundown (669 samples, 0.10%)</title><rect x="68.5125%" y="901" width="0.1040%" height="15" fill="rgb(239,94,40)" fg:x="440903" fg:w="669"/><text x="68.7625%" y="911.50"></text></g><g><title>cshook_systemcalltable_post_read (110 samples, 0.02%)</title><rect x="68.6302%" y="901" width="0.0171%" height="15" fill="rgb(235,139,28)" fg:x="441661" fg:w="110"/><text x="68.8802%" y="911.50"></text></g><g><title>cshook_systemcalltable_pre_read (149 samples, 0.02%)</title><rect x="68.6630%" y="901" width="0.0232%" height="15" fill="rgb(217,144,7)" fg:x="441872" fg:w="149"/><text x="68.9130%" y="911.50"></text></g><g><title>exit_to_user_mode_prepare (133 samples, 0.02%)</title><rect x="68.6865%" y="901" width="0.0207%" height="15" fill="rgb(227,55,4)" fg:x="442023" fg:w="133"/><text x="68.9365%" y="911.50"></text></g><g><title>release_rundown (803 samples, 0.12%)</title><rect x="68.7078%" y="901" width="0.1248%" height="15" fill="rgb(252,82,54)" fg:x="442160" fg:w="803"/><text x="68.9578%" y="911.50"></text></g><g><title>syscall_enter_from_user_mode (321 samples, 0.05%)</title><rect x="68.8327%" y="901" width="0.0499%" height="15" fill="rgb(245,172,4)" fg:x="442964" fg:w="321"/><text x="69.0827%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (86 samples, 0.01%)</title><rect x="68.9379%" y="885" width="0.0134%" height="15" fill="rgb(207,26,27)" fg:x="443641" fg:w="86"/><text x="69.1879%" y="895.50"></text></g><g><title>____fput (112 samples, 0.02%)</title><rect x="69.1865%" y="853" width="0.0174%" height="15" fill="rgb(252,98,18)" fg:x="445241" fg:w="112"/><text x="69.4365%" y="863.50"></text></g><g><title>do_exit (79 samples, 0.01%)</title><rect x="69.2140%" y="805" width="0.0123%" height="15" fill="rgb(244,8,26)" fg:x="445418" fg:w="79"/><text x="69.4640%" y="815.50"></text></g><g><title>arch_do_signal_or_restart (91 samples, 0.01%)</title><rect x="69.2123%" y="853" width="0.0141%" height="15" fill="rgb(237,173,45)" fg:x="445407" fg:w="91"/><text x="69.4623%" y="863.50"></text></g><g><title>get_signal (89 samples, 0.01%)</title><rect x="69.2126%" y="837" width="0.0138%" height="15" fill="rgb(208,213,49)" fg:x="445409" fg:w="89"/><text x="69.4626%" y="847.50"></text></g><g><title>do_group_exit (80 samples, 0.01%)</title><rect x="69.2140%" y="821" width="0.0124%" height="15" fill="rgb(212,122,37)" fg:x="445418" fg:w="80"/><text x="69.4640%" y="831.50"></text></g><g><title>blkcg_maybe_throttle_current (66 samples, 0.01%)</title><rect x="69.2274%" y="853" width="0.0103%" height="15" fill="rgb(213,80,17)" fg:x="445504" fg:w="66"/><text x="69.4774%" y="863.50"></text></g><g><title>mem_cgroup_handle_over_high (104 samples, 0.02%)</title><rect x="69.2377%" y="853" width="0.0162%" height="15" fill="rgb(206,210,43)" fg:x="445570" fg:w="104"/><text x="69.4877%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (187 samples, 0.03%)</title><rect x="69.2571%" y="805" width="0.0291%" height="15" fill="rgb(229,214,3)" fg:x="445695" fg:w="187"/><text x="69.5071%" y="815.50"></text></g><g><title>x86_pmu_enable (176 samples, 0.03%)</title><rect x="69.2588%" y="789" width="0.0273%" height="15" fill="rgb(235,213,29)" fg:x="445706" fg:w="176"/><text x="69.5088%" y="799.50"></text></g><g><title>intel_pmu_enable_all (171 samples, 0.03%)</title><rect x="69.2596%" y="773" width="0.0266%" height="15" fill="rgb(248,135,26)" fg:x="445711" fg:w="171"/><text x="69.5096%" y="783.50"></text></g><g><title>native_write_msr (169 samples, 0.03%)</title><rect x="69.2599%" y="757" width="0.0263%" height="15" fill="rgb(242,188,12)" fg:x="445713" fg:w="169"/><text x="69.5099%" y="767.50"></text></g><g><title>finish_task_switch.isra.0 (199 samples, 0.03%)</title><rect x="69.2562%" y="821" width="0.0309%" height="15" fill="rgb(245,38,12)" fg:x="445689" fg:w="199"/><text x="69.5062%" y="831.50"></text></g><g><title>__schedule (277 samples, 0.04%)</title><rect x="69.2541%" y="837" width="0.0430%" height="15" fill="rgb(218,42,13)" fg:x="445676" fg:w="277"/><text x="69.5041%" y="847.50"></text></g><g><title>schedule (282 samples, 0.04%)</title><rect x="69.2538%" y="853" width="0.0438%" height="15" fill="rgb(238,132,49)" fg:x="445674" fg:w="282"/><text x="69.5038%" y="863.50"></text></g><g><title>__fsnotify_parent (116 samples, 0.02%)</title><rect x="69.4036%" y="805" width="0.0180%" height="15" fill="rgb(209,196,19)" fg:x="446638" fg:w="116"/><text x="69.6536%" y="815.50"></text></g><g><title>apparmor_file_free_security (163 samples, 0.03%)</title><rect x="69.4238%" y="805" width="0.0253%" height="15" fill="rgb(244,131,22)" fg:x="446768" fg:w="163"/><text x="69.6738%" y="815.50"></text></g><g><title>btrfs_release_file (519 samples, 0.08%)</title><rect x="69.4588%" y="805" width="0.0806%" height="15" fill="rgb(223,18,34)" fg:x="446993" fg:w="519"/><text x="69.7088%" y="815.50"></text></g><g><title>kfree (68 samples, 0.01%)</title><rect x="69.5289%" y="789" width="0.0106%" height="15" fill="rgb(252,124,54)" fg:x="447444" fg:w="68"/><text x="69.7789%" y="799.50"></text></g><g><title>__call_rcu (556 samples, 0.09%)</title><rect x="69.5396%" y="789" width="0.0864%" height="15" fill="rgb(229,106,42)" fg:x="447513" fg:w="556"/><text x="69.7896%" y="799.50"></text></g><g><title>rcu_segcblist_enqueue (212 samples, 0.03%)</title><rect x="69.5930%" y="773" width="0.0329%" height="15" fill="rgb(221,129,1)" fg:x="447857" fg:w="212"/><text x="69.8430%" y="783.50"></text></g><g><title>call_rcu (599 samples, 0.09%)</title><rect x="69.5394%" y="805" width="0.0931%" height="15" fill="rgb(229,74,15)" fg:x="447512" fg:w="599"/><text x="69.7894%" y="815.50"></text></g><g><title>_raw_spin_lock (123 samples, 0.02%)</title><rect x="69.6518%" y="789" width="0.0191%" height="15" fill="rgb(210,206,50)" fg:x="448235" fg:w="123"/><text x="69.9018%" y="799.50"></text></g><g><title>btrfs_dentry_delete (115 samples, 0.02%)</title><rect x="69.6711%" y="789" width="0.0179%" height="15" fill="rgb(251,114,31)" fg:x="448359" fg:w="115"/><text x="69.9211%" y="799.50"></text></g><g><title>dput (408 samples, 0.06%)</title><rect x="69.6325%" y="805" width="0.0634%" height="15" fill="rgb(215,225,28)" fg:x="448111" fg:w="408"/><text x="69.8825%" y="815.50"></text></g><g><title>locks_remove_file (145 samples, 0.02%)</title><rect x="69.7150%" y="805" width="0.0225%" height="15" fill="rgb(237,109,14)" fg:x="448642" fg:w="145"/><text x="69.9650%" y="815.50"></text></g><g><title>mntput_no_expire (201 samples, 0.03%)</title><rect x="69.7385%" y="789" width="0.0312%" height="15" fill="rgb(230,13,37)" fg:x="448793" fg:w="201"/><text x="69.9885%" y="799.50"></text></g><g><title>mntput (210 samples, 0.03%)</title><rect x="69.7376%" y="805" width="0.0326%" height="15" fill="rgb(231,40,28)" fg:x="448787" fg:w="210"/><text x="69.9876%" y="815.50"></text></g><g><title>percpu_counter_add_batch (96 samples, 0.01%)</title><rect x="69.7744%" y="805" width="0.0149%" height="15" fill="rgb(231,202,18)" fg:x="449024" fg:w="96"/><text x="70.0244%" y="815.50"></text></g><g><title>apparmor_file_free_security (541 samples, 0.08%)</title><rect x="69.8247%" y="789" width="0.0841%" height="15" fill="rgb(225,33,18)" fg:x="449348" fg:w="541"/><text x="70.0747%" y="799.50"></text></g><g><title>memcg_slab_free_hook (112 samples, 0.02%)</title><rect x="70.0109%" y="773" width="0.0174%" height="15" fill="rgb(223,64,47)" fg:x="450546" fg:w="112"/><text x="70.2609%" y="783.50"></text></g><g><title>kmem_cache_free (820 samples, 0.13%)</title><rect x="69.9166%" y="789" width="0.1274%" height="15" fill="rgb(234,114,13)" fg:x="449939" fg:w="820"/><text x="70.1666%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (101 samples, 0.02%)</title><rect x="70.0283%" y="773" width="0.0157%" height="15" fill="rgb(248,56,40)" fg:x="450658" fg:w="101"/><text x="70.2783%" y="783.50"></text></g><g><title>[[falcon_kal]] (121 samples, 0.02%)</title><rect x="70.0518%" y="773" width="0.0188%" height="15" fill="rgb(221,194,21)" fg:x="450809" fg:w="121"/><text x="70.3018%" y="783.50"></text></g><g><title>_ZdlPv (92 samples, 0.01%)</title><rect x="70.0706%" y="773" width="0.0143%" height="15" fill="rgb(242,108,46)" fg:x="450930" fg:w="92"/><text x="70.3206%" y="783.50"></text></g><g><title>_ZdlPv (92 samples, 0.01%)</title><rect x="70.1455%" y="757" width="0.0143%" height="15" fill="rgb(220,106,10)" fg:x="451412" fg:w="92"/><text x="70.3955%" y="767.50"></text></g><g><title>__cond_resched (89 samples, 0.01%)</title><rect x="70.3518%" y="677" width="0.0138%" height="15" fill="rgb(211,88,4)" fg:x="452740" fg:w="89"/><text x="70.6018%" y="687.50"></text></g><g><title>down_read (213 samples, 0.03%)</title><rect x="70.3657%" y="677" width="0.0331%" height="15" fill="rgb(214,95,34)" fg:x="452829" fg:w="213"/><text x="70.6157%" y="687.50"></text></g><g><title>[[falcon_kal]] (463 samples, 0.07%)</title><rect x="70.3495%" y="693" width="0.0719%" height="15" fill="rgb(250,160,33)" fg:x="452725" fg:w="463"/><text x="70.5995%" y="703.50"></text></g><g><title>down_write (146 samples, 0.02%)</title><rect x="70.3987%" y="677" width="0.0227%" height="15" fill="rgb(225,29,10)" fg:x="453042" fg:w="146"/><text x="70.6487%" y="687.50"></text></g><g><title>down_write (101 samples, 0.02%)</title><rect x="70.4250%" y="693" width="0.0157%" height="15" fill="rgb(224,28,30)" fg:x="453211" fg:w="101"/><text x="70.6750%" y="703.50"></text></g><g><title>up_read (116 samples, 0.02%)</title><rect x="70.4407%" y="693" width="0.0180%" height="15" fill="rgb(231,77,4)" fg:x="453312" fg:w="116"/><text x="70.6907%" y="703.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,807 samples, 0.28%)</title><rect x="70.2009%" y="725" width="0.2808%" height="15" fill="rgb(209,63,21)" fg:x="451769" fg:w="1807"/><text x="70.4509%" y="735.50"></text></g><g><title>cshook_security_inode_free_security (1,499 samples, 0.23%)</title><rect x="70.2488%" y="709" width="0.2329%" height="15" fill="rgb(226,22,11)" fg:x="452077" fg:w="1499"/><text x="70.4988%" y="719.50"></text></g><g><title>up_write (148 samples, 0.02%)</title><rect x="70.4587%" y="693" width="0.0230%" height="15" fill="rgb(216,82,30)" fg:x="453428" fg:w="148"/><text x="70.7087%" y="703.50"></text></g><g><title>cshook_security_file_free_security (2,193 samples, 0.34%)</title><rect x="70.1632%" y="757" width="0.3408%" height="15" fill="rgb(246,227,38)" fg:x="451526" fg:w="2193"/><text x="70.4132%" y="767.50"></text></g><g><title>cshook_security_file_free_security (1,961 samples, 0.30%)</title><rect x="70.1992%" y="741" width="0.3047%" height="15" fill="rgb(251,203,53)" fg:x="451758" fg:w="1961"/><text x="70.4492%" y="751.50"></text></g><g><title>cshook_security_inode_free_security (143 samples, 0.02%)</title><rect x="70.4817%" y="725" width="0.0222%" height="15" fill="rgb(254,101,1)" fg:x="453576" fg:w="143"/><text x="70.7317%" y="735.50"></text></g><g><title>pinnedhook_security_file_free_security (2,938 samples, 0.46%)</title><rect x="70.0476%" y="789" width="0.4565%" height="15" fill="rgb(241,180,5)" fg:x="450782" fg:w="2938"/><text x="70.2976%" y="799.50"></text></g><g><title>cshook_security_file_free_security (2,696 samples, 0.42%)</title><rect x="70.0852%" y="773" width="0.4189%" height="15" fill="rgb(218,168,4)" fg:x="451024" fg:w="2696"/><text x="70.3352%" y="783.50"></text></g><g><title>release_rundown (65 samples, 0.01%)</title><rect x="70.5041%" y="789" width="0.0101%" height="15" fill="rgb(224,223,32)" fg:x="453720" fg:w="65"/><text x="70.7541%" y="799.50"></text></g><g><title>security_file_free (4,600 samples, 0.71%)</title><rect x="69.7997%" y="805" width="0.7148%" height="15" fill="rgb(236,106,22)" fg:x="449187" fg:w="4600"/><text x="70.0497%" y="815.50"></text></g><g><title>__fput (7,622 samples, 1.18%)</title><rect x="69.3323%" y="821" width="1.1844%" height="15" fill="rgb(206,121,5)" fg:x="446179" fg:w="7622"/><text x="69.5823%" y="831.50"></text></g><g><title>btrfs_release_file (99 samples, 0.02%)</title><rect x="70.5235%" y="821" width="0.0154%" height="15" fill="rgb(233,87,28)" fg:x="453845" fg:w="99"/><text x="70.7735%" y="831.50"></text></g><g><title>ima_file_free (163 samples, 0.03%)</title><rect x="70.5476%" y="821" width="0.0253%" height="15" fill="rgb(236,137,17)" fg:x="454000" fg:w="163"/><text x="70.7976%" y="831.50"></text></g><g><title>locks_remove_file (184 samples, 0.03%)</title><rect x="70.5729%" y="821" width="0.0286%" height="15" fill="rgb(209,183,38)" fg:x="454163" fg:w="184"/><text x="70.8229%" y="831.50"></text></g><g><title>____fput (8,266 samples, 1.28%)</title><rect x="69.3273%" y="837" width="1.2845%" height="15" fill="rgb(206,162,44)" fg:x="446147" fg:w="8266"/><text x="69.5773%" y="847.50"></text></g><g><title>_raw_spin_lock_irq (111 samples, 0.02%)</title><rect x="70.6219%" y="837" width="0.0172%" height="15" fill="rgb(237,70,39)" fg:x="454478" fg:w="111"/><text x="70.8719%" y="847.50"></text></g><g><title>exit_to_user_mode_loop (9,655 samples, 1.50%)</title><rect x="69.1413%" y="869" width="1.5003%" height="15" fill="rgb(212,176,5)" fg:x="444950" fg:w="9655"/><text x="69.3913%" y="879.50"></text></g><g><title>task_work_run (8,649 samples, 1.34%)</title><rect x="69.2976%" y="853" width="1.3440%" height="15" fill="rgb(232,95,16)" fg:x="445956" fg:w="8649"/><text x="69.5476%" y="863.50"></text></g><g><title>fpregs_assert_state_consistent (359 samples, 0.06%)</title><rect x="70.6416%" y="869" width="0.0558%" height="15" fill="rgb(219,115,35)" fg:x="454605" fg:w="359"/><text x="70.8916%" y="879.50"></text></g><g><title>exit_to_user_mode_prepare (11,355 samples, 1.76%)</title><rect x="68.9513%" y="885" width="1.7645%" height="15" fill="rgb(251,67,27)" fg:x="443727" fg:w="11355"/><text x="69.2013%" y="895.50"></text></g><g><title>fpregs_assert_state_consistent (195 samples, 0.03%)</title><rect x="70.7157%" y="885" width="0.0303%" height="15" fill="rgb(222,95,40)" fg:x="455082" fg:w="195"/><text x="70.9657%" y="895.50"></text></g><g><title>syscall_exit_to_user_mode (11,998 samples, 1.86%)</title><rect x="68.8826%" y="901" width="1.8644%" height="15" fill="rgb(250,35,16)" fg:x="443285" fg:w="11998"/><text x="69.1326%" y="911.50">s..</text></g><g><title>_raw_spin_lock (191 samples, 0.03%)</title><rect x="70.9619%" y="853" width="0.0297%" height="15" fill="rgb(224,86,44)" fg:x="456666" fg:w="191"/><text x="71.2119%" y="863.50"></text></g><g><title>fput_many (176 samples, 0.03%)</title><rect x="71.0153%" y="821" width="0.0273%" height="15" fill="rgb(237,53,53)" fg:x="457010" fg:w="176"/><text x="71.2653%" y="831.50"></text></g><g><title>task_work_add (142 samples, 0.02%)</title><rect x="71.0206%" y="805" width="0.0221%" height="15" fill="rgb(208,171,33)" fg:x="457044" fg:w="142"/><text x="71.2706%" y="815.50"></text></g><g><title>fput (393 samples, 0.06%)</title><rect x="71.0147%" y="837" width="0.0611%" height="15" fill="rgb(222,64,27)" fg:x="457006" fg:w="393"/><text x="71.2647%" y="847.50"></text></g><g><title>task_work_add (213 samples, 0.03%)</title><rect x="71.0427%" y="821" width="0.0331%" height="15" fill="rgb(221,121,35)" fg:x="457186" fg:w="213"/><text x="71.2927%" y="831.50"></text></g><g><title>fput_many (122 samples, 0.02%)</title><rect x="71.0758%" y="837" width="0.0190%" height="15" fill="rgb(228,137,42)" fg:x="457399" fg:w="122"/><text x="71.3258%" y="847.50"></text></g><g><title>filp_close (711 samples, 0.11%)</title><rect x="70.9969%" y="853" width="0.1105%" height="15" fill="rgb(227,54,21)" fg:x="456891" fg:w="711"/><text x="71.2469%" y="863.50"></text></g><g><title>locks_remove_posix (81 samples, 0.01%)</title><rect x="71.0947%" y="837" width="0.0126%" height="15" fill="rgb(240,168,33)" fg:x="457521" fg:w="81"/><text x="71.3447%" y="847.50"></text></g><g><title>locks_remove_posix (71 samples, 0.01%)</title><rect x="71.1104%" y="853" width="0.0110%" height="15" fill="rgb(243,159,6)" fg:x="457622" fg:w="71"/><text x="71.3604%" y="863.50"></text></g><g><title>close_fd (1,119 samples, 0.17%)</title><rect x="70.9582%" y="869" width="0.1739%" height="15" fill="rgb(205,211,41)" fg:x="456642" fg:w="1119"/><text x="71.2082%" y="879.50"></text></g><g><title>pick_file (68 samples, 0.01%)</title><rect x="71.1215%" y="853" width="0.0106%" height="15" fill="rgb(253,30,1)" fg:x="457693" fg:w="68"/><text x="71.3715%" y="863.50"></text></g><g><title>__x64_sys_close (1,170 samples, 0.18%)</title><rect x="70.9564%" y="885" width="0.1818%" height="15" fill="rgb(226,80,18)" fg:x="456631" fg:w="1170"/><text x="71.2064%" y="895.50"></text></g><g><title>arch_get_unmapped_area_topdown (89 samples, 0.01%)</title><rect x="71.1563%" y="805" width="0.0138%" height="15" fill="rgb(253,156,46)" fg:x="457917" fg:w="89"/><text x="71.4063%" y="815.50"></text></g><g><title>vm_unmapped_area (74 samples, 0.01%)</title><rect x="71.1586%" y="789" width="0.0115%" height="15" fill="rgb(248,87,27)" fg:x="457932" fg:w="74"/><text x="71.4086%" y="799.50"></text></g><g><title>unmapped_area_topdown (72 samples, 0.01%)</title><rect x="71.1589%" y="773" width="0.0112%" height="15" fill="rgb(227,122,2)" fg:x="457934" fg:w="72"/><text x="71.4089%" y="783.50"></text></g><g><title>get_unmapped_area (104 samples, 0.02%)</title><rect x="71.1555%" y="821" width="0.0162%" height="15" fill="rgb(229,94,39)" fg:x="457912" fg:w="104"/><text x="71.4055%" y="831.50"></text></g><g><title>perf_event_mmap_output (103 samples, 0.02%)</title><rect x="71.1953%" y="741" width="0.0160%" height="15" fill="rgb(225,173,31)" fg:x="458168" fg:w="103"/><text x="71.4453%" y="751.50"></text></g><g><title>perf_event_mmap_event (215 samples, 0.03%)</title><rect x="71.1794%" y="789" width="0.0334%" height="15" fill="rgb(239,176,30)" fg:x="458066" fg:w="215"/><text x="71.4294%" y="799.50"></text></g><g><title>perf_iterate_sb (195 samples, 0.03%)</title><rect x="71.1825%" y="773" width="0.0303%" height="15" fill="rgb(212,104,21)" fg:x="458086" fg:w="195"/><text x="71.4325%" y="783.50"></text></g><g><title>perf_iterate_ctx (165 samples, 0.03%)</title><rect x="71.1872%" y="757" width="0.0256%" height="15" fill="rgb(240,209,40)" fg:x="458116" fg:w="165"/><text x="71.4372%" y="767.50"></text></g><g><title>perf_event_mmap (236 samples, 0.04%)</title><rect x="71.1774%" y="805" width="0.0367%" height="15" fill="rgb(234,195,5)" fg:x="458053" fg:w="236"/><text x="71.4274%" y="815.50"></text></g><g><title>__vma_adjust (85 samples, 0.01%)</title><rect x="71.2201%" y="789" width="0.0132%" height="15" fill="rgb(238,213,1)" fg:x="458328" fg:w="85"/><text x="71.4701%" y="799.50"></text></g><g><title>vma_merge (112 samples, 0.02%)</title><rect x="71.2187%" y="805" width="0.0174%" height="15" fill="rgb(235,182,54)" fg:x="458319" fg:w="112"/><text x="71.4687%" y="815.50"></text></g><g><title>mmap_region (423 samples, 0.07%)</title><rect x="71.1720%" y="821" width="0.0657%" height="15" fill="rgb(229,50,46)" fg:x="458018" fg:w="423"/><text x="71.4220%" y="831.50"></text></g><g><title>do_mmap (545 samples, 0.08%)</title><rect x="71.1540%" y="837" width="0.0847%" height="15" fill="rgb(219,145,13)" fg:x="457902" fg:w="545"/><text x="71.4040%" y="847.50"></text></g><g><title>__x64_sys_mmap (631 samples, 0.10%)</title><rect x="71.1471%" y="885" width="0.0981%" height="15" fill="rgb(220,226,10)" fg:x="457858" fg:w="631"/><text x="71.3971%" y="895.50"></text></g><g><title>ksys_mmap_pgoff (631 samples, 0.10%)</title><rect x="71.1471%" y="869" width="0.0981%" height="15" fill="rgb(248,47,30)" fg:x="457858" fg:w="631"/><text x="71.3971%" y="879.50"></text></g><g><title>vm_mmap_pgoff (612 samples, 0.10%)</title><rect x="71.1501%" y="853" width="0.0951%" height="15" fill="rgb(231,209,44)" fg:x="457877" fg:w="612"/><text x="71.4001%" y="863.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (90 samples, 0.01%)</title><rect x="71.2546%" y="821" width="0.0140%" height="15" fill="rgb(209,80,30)" fg:x="458550" fg:w="90"/><text x="71.5046%" y="831.50"></text></g><g><title>lookup_open.isra.0 (75 samples, 0.01%)</title><rect x="71.2714%" y="805" width="0.0117%" height="15" fill="rgb(232,9,14)" fg:x="458658" fg:w="75"/><text x="71.5214%" y="815.50"></text></g><g><title>open_last_lookups (131 samples, 0.02%)</title><rect x="71.2689%" y="821" width="0.0204%" height="15" fill="rgb(243,91,43)" fg:x="458642" fg:w="131"/><text x="71.5189%" y="831.50"></text></g><g><title>do_filp_open (286 samples, 0.04%)</title><rect x="71.2458%" y="853" width="0.0444%" height="15" fill="rgb(231,90,52)" fg:x="458493" fg:w="286"/><text x="71.4958%" y="863.50"></text></g><g><title>path_openat (281 samples, 0.04%)</title><rect x="71.2466%" y="837" width="0.0437%" height="15" fill="rgb(253,192,44)" fg:x="458498" fg:w="281"/><text x="71.4966%" y="847.50"></text></g><g><title>do_sys_openat2 (324 samples, 0.05%)</title><rect x="71.2455%" y="869" width="0.0503%" height="15" fill="rgb(241,66,31)" fg:x="458491" fg:w="324"/><text x="71.4955%" y="879.50"></text></g><g><title>__x64_sys_open (327 samples, 0.05%)</title><rect x="71.2452%" y="885" width="0.0508%" height="15" fill="rgb(235,81,37)" fg:x="458489" fg:w="327"/><text x="71.4952%" y="895.50"></text></g><g><title>build_open_flags (378 samples, 0.06%)</title><rect x="71.3162%" y="869" width="0.0587%" height="15" fill="rgb(223,221,9)" fg:x="458946" fg:w="378"/><text x="71.5662%" y="879.50"></text></g><g><title>do_filp_open (78 samples, 0.01%)</title><rect x="71.3749%" y="869" width="0.0121%" height="15" fill="rgb(242,180,7)" fg:x="459324" fg:w="78"/><text x="71.6249%" y="879.50"></text></g><g><title>__fsnotify_parent (85 samples, 0.01%)</title><rect x="71.4159%" y="853" width="0.0132%" height="15" fill="rgb(243,78,19)" fg:x="459588" fg:w="85"/><text x="71.6659%" y="863.50"></text></g><g><title>alloc_empty_file (149 samples, 0.02%)</title><rect x="71.4593%" y="837" width="0.0232%" height="15" fill="rgb(233,23,17)" fg:x="459867" fg:w="149"/><text x="71.7093%" y="847.50"></text></g><g><title>clear_page_erms (73 samples, 0.01%)</title><rect x="71.6938%" y="677" width="0.0113%" height="15" fill="rgb(252,122,45)" fg:x="461376" fg:w="73"/><text x="71.9438%" y="687.50"></text></g><g><title>get_page_from_freelist (139 samples, 0.02%)</title><rect x="71.6913%" y="693" width="0.0216%" height="15" fill="rgb(247,108,20)" fg:x="461360" fg:w="139"/><text x="71.9413%" y="703.50"></text></g><g><title>__alloc_pages (194 samples, 0.03%)</title><rect x="71.6843%" y="709" width="0.0301%" height="15" fill="rgb(235,84,21)" fg:x="461315" fg:w="194"/><text x="71.9343%" y="719.50"></text></g><g><title>alloc_pages (210 samples, 0.03%)</title><rect x="71.6834%" y="725" width="0.0326%" height="15" fill="rgb(247,129,10)" fg:x="461309" fg:w="210"/><text x="71.9334%" y="735.50"></text></g><g><title>allocate_slab (335 samples, 0.05%)</title><rect x="71.6748%" y="741" width="0.0521%" height="15" fill="rgb(208,173,14)" fg:x="461254" fg:w="335"/><text x="71.9248%" y="751.50"></text></g><g><title>new_slab (350 samples, 0.05%)</title><rect x="71.6745%" y="757" width="0.0544%" height="15" fill="rgb(236,31,38)" fg:x="461252" fg:w="350"/><text x="71.9245%" y="767.50"></text></g><g><title>___slab_alloc (552 samples, 0.09%)</title><rect x="71.6433%" y="773" width="0.0858%" height="15" fill="rgb(232,65,17)" fg:x="461051" fg:w="552"/><text x="71.8933%" y="783.50"></text></g><g><title>get_obj_cgroup_from_current (768 samples, 0.12%)</title><rect x="71.7378%" y="773" width="0.1193%" height="15" fill="rgb(224,45,49)" fg:x="461659" fg:w="768"/><text x="71.9878%" y="783.50"></text></g><g><title>__mod_memcg_lruvec_state (75 samples, 0.01%)</title><rect x="71.9561%" y="741" width="0.0117%" height="15" fill="rgb(225,2,53)" fg:x="463064" fg:w="75"/><text x="72.2061%" y="751.50"></text></g><g><title>mod_objcg_state (231 samples, 0.04%)</title><rect x="71.9328%" y="757" width="0.0359%" height="15" fill="rgb(248,210,53)" fg:x="462914" fg:w="231"/><text x="72.1828%" y="767.50"></text></g><g><title>memcg_slab_post_alloc_hook (720 samples, 0.11%)</title><rect x="71.8573%" y="773" width="0.1119%" height="15" fill="rgb(211,1,30)" fg:x="462428" fg:w="720"/><text x="72.1073%" y="783.50"></text></g><g><title>obj_cgroup_charge (128 samples, 0.02%)</title><rect x="71.9718%" y="773" width="0.0199%" height="15" fill="rgb(224,96,15)" fg:x="463165" fg:w="128"/><text x="72.2218%" y="783.50"></text></g><g><title>kmem_cache_alloc (2,576 samples, 0.40%)</title><rect x="71.5984%" y="789" width="0.4003%" height="15" fill="rgb(252,45,11)" fg:x="460762" fg:w="2576"/><text x="71.8484%" y="799.50"></text></g><g><title>memset_erms (170 samples, 0.03%)</title><rect x="72.0029%" y="789" width="0.0264%" height="15" fill="rgb(220,125,38)" fg:x="463365" fg:w="170"/><text x="72.2529%" y="799.50"></text></g><g><title>apparmor_file_alloc_security (673 samples, 0.10%)</title><rect x="72.0464%" y="773" width="0.1046%" height="15" fill="rgb(243,161,33)" fg:x="463645" fg:w="673"/><text x="72.2964%" y="783.50"></text></g><g><title>kmem_cache_alloc (339 samples, 0.05%)</title><rect x="72.1509%" y="773" width="0.0527%" height="15" fill="rgb(248,197,34)" fg:x="464318" fg:w="339"/><text x="72.4009%" y="783.50"></text></g><g><title>memset_erms (117 samples, 0.02%)</title><rect x="72.2089%" y="773" width="0.0182%" height="15" fill="rgb(228,165,23)" fg:x="464691" fg:w="117"/><text x="72.4589%" y="783.50"></text></g><g><title>security_file_alloc (1,275 samples, 0.20%)</title><rect x="72.0304%" y="789" width="0.1981%" height="15" fill="rgb(236,94,38)" fg:x="463542" fg:w="1275"/><text x="72.2804%" y="799.50"></text></g><g><title>__alloc_file (4,510 samples, 0.70%)</title><rect x="71.5292%" y="805" width="0.7008%" height="15" fill="rgb(220,13,23)" fg:x="460317" fg:w="4510"/><text x="71.7792%" y="815.50"></text></g><g><title>alloc_empty_file (4,603 samples, 0.72%)</title><rect x="71.5260%" y="821" width="0.7153%" height="15" fill="rgb(234,26,39)" fg:x="460296" fg:w="4603"/><text x="71.7760%" y="831.50"></text></g><g><title>aa_get_task_label (189 samples, 0.03%)</title><rect x="72.3996%" y="757" width="0.0294%" height="15" fill="rgb(205,117,44)" fg:x="465918" fg:w="189"/><text x="72.6496%" y="767.50"></text></g><g><title>apparmor_task_getsecid (357 samples, 0.06%)</title><rect x="72.3739%" y="773" width="0.0555%" height="15" fill="rgb(250,42,2)" fg:x="465753" fg:w="357"/><text x="72.6239%" y="783.50"></text></g><g><title>ima_file_check (840 samples, 0.13%)</title><rect x="72.2990%" y="805" width="0.1305%" height="15" fill="rgb(223,83,14)" fg:x="465271" fg:w="840"/><text x="72.5490%" y="815.50"></text></g><g><title>security_task_getsecid_subj (679 samples, 0.11%)</title><rect x="72.3240%" y="789" width="0.1055%" height="15" fill="rgb(241,147,50)" fg:x="465432" fg:w="679"/><text x="72.5740%" y="799.50"></text></g><g><title>btrfs_permission (78 samples, 0.01%)</title><rect x="72.5679%" y="789" width="0.0121%" height="15" fill="rgb(218,90,6)" fg:x="467001" fg:w="78"/><text x="72.8179%" y="799.50"></text></g><g><title>inode_permission (265 samples, 0.04%)</title><rect x="72.5800%" y="789" width="0.0412%" height="15" fill="rgb(210,191,5)" fg:x="467079" fg:w="265"/><text x="72.8300%" y="799.50"></text></g><g><title>may_open (1,228 samples, 0.19%)</title><rect x="72.4314%" y="805" width="0.1908%" height="15" fill="rgb(225,139,19)" fg:x="466123" fg:w="1228"/><text x="72.6814%" y="815.50"></text></g><g><title>fsverity_file_open (66 samples, 0.01%)</title><rect x="72.7186%" y="757" width="0.0103%" height="15" fill="rgb(210,1,33)" fg:x="467971" fg:w="66"/><text x="72.9686%" y="767.50"></text></g><g><title>btrfs_file_open (114 samples, 0.02%)</title><rect x="72.7135%" y="773" width="0.0177%" height="15" fill="rgb(213,50,3)" fg:x="467938" fg:w="114"/><text x="72.9635%" y="783.50"></text></g><g><title>file_ra_state_init (212 samples, 0.03%)</title><rect x="72.7312%" y="773" width="0.0329%" height="15" fill="rgb(234,227,4)" fg:x="468052" fg:w="212"/><text x="72.9812%" y="783.50"></text></g><g><title>lockref_get (164 samples, 0.03%)</title><rect x="72.7933%" y="757" width="0.0255%" height="15" fill="rgb(246,63,5)" fg:x="468452" fg:w="164"/><text x="73.0433%" y="767.50"></text></g><g><title>path_get (224 samples, 0.03%)</title><rect x="72.7901%" y="773" width="0.0348%" height="15" fill="rgb(245,136,27)" fg:x="468431" fg:w="224"/><text x="73.0401%" y="783.50"></text></g><g><title>apparmor_file_open (692 samples, 0.11%)</title><rect x="72.8640%" y="757" width="0.1075%" height="15" fill="rgb(247,199,27)" fg:x="468907" fg:w="692"/><text x="73.1140%" y="767.50"></text></g><g><title>__fsnotify_parent (188 samples, 0.03%)</title><rect x="72.9863%" y="741" width="0.0292%" height="15" fill="rgb(252,158,49)" fg:x="469694" fg:w="188"/><text x="73.2363%" y="751.50"></text></g><g><title>fsnotify_perm.part.0 (257 samples, 0.04%)</title><rect x="72.9758%" y="757" width="0.0399%" height="15" fill="rgb(254,73,1)" fg:x="469626" fg:w="257"/><text x="73.2258%" y="767.50"></text></g><g><title>cshook_security_file_open (281 samples, 0.04%)</title><rect x="73.0210%" y="741" width="0.0437%" height="15" fill="rgb(248,93,19)" fg:x="469917" fg:w="281"/><text x="73.2710%" y="751.50"></text></g><g><title>cshook_security_file_permission (194 samples, 0.03%)</title><rect x="73.0345%" y="725" width="0.0301%" height="15" fill="rgb(206,67,5)" fg:x="470004" fg:w="194"/><text x="73.2845%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (120 samples, 0.02%)</title><rect x="73.0460%" y="709" width="0.0186%" height="15" fill="rgb(209,210,4)" fg:x="470078" fg:w="120"/><text x="73.2960%" y="719.50"></text></g><g><title>pinnedhook_security_file_open (331 samples, 0.05%)</title><rect x="73.0157%" y="757" width="0.0514%" height="15" fill="rgb(214,185,36)" fg:x="469883" fg:w="331"/><text x="73.2657%" y="767.50"></text></g><g><title>do_dentry_open (2,819 samples, 0.44%)</title><rect x="72.6331%" y="789" width="0.4380%" height="15" fill="rgb(233,191,26)" fg:x="467421" fg:w="2819"/><text x="72.8831%" y="799.50"></text></g><g><title>security_file_open (1,570 samples, 0.24%)</title><rect x="72.8272%" y="773" width="0.2440%" height="15" fill="rgb(248,94,17)" fg:x="468670" fg:w="1570"/><text x="73.0772%" y="783.50"></text></g><g><title>errseq_sample (533 samples, 0.08%)</title><rect x="73.0712%" y="789" width="0.0828%" height="15" fill="rgb(250,64,4)" fg:x="470240" fg:w="533"/><text x="73.3212%" y="799.50"></text></g><g><title>file_ra_state_init (88 samples, 0.01%)</title><rect x="73.1540%" y="789" width="0.0137%" height="15" fill="rgb(218,41,53)" fg:x="470773" fg:w="88"/><text x="73.4040%" y="799.50"></text></g><g><title>do_open (5,995 samples, 0.93%)</title><rect x="72.2431%" y="821" width="0.9316%" height="15" fill="rgb(251,176,28)" fg:x="464911" fg:w="5995"/><text x="72.4931%" y="831.50"></text></g><g><title>vfs_open (3,525 samples, 0.55%)</title><rect x="72.6269%" y="805" width="0.5478%" height="15" fill="rgb(247,22,9)" fg:x="467381" fg:w="3525"/><text x="72.8769%" y="815.50"></text></g><g><title>dput (74 samples, 0.01%)</title><rect x="73.1747%" y="821" width="0.0115%" height="15" fill="rgb(218,201,14)" fg:x="470906" fg:w="74"/><text x="73.4247%" y="831.50"></text></g><g><title>inode_permission (216 samples, 0.03%)</title><rect x="73.1902%" y="821" width="0.0336%" height="15" fill="rgb(218,94,10)" fg:x="471006" fg:w="216"/><text x="73.4402%" y="831.50"></text></g><g><title>btrfs_permission (588 samples, 0.09%)</title><rect x="74.2585%" y="805" width="0.0914%" height="15" fill="rgb(222,183,52)" fg:x="477881" fg:w="588"/><text x="74.5085%" y="815.50"></text></g><g><title>generic_permission (1,535 samples, 0.24%)</title><rect x="75.0864%" y="773" width="0.2385%" height="15" fill="rgb(242,140,25)" fg:x="483209" fg:w="1535"/><text x="75.3364%" y="783.50"></text></g><g><title>btrfs_permission (1,662 samples, 0.26%)</title><rect x="75.0700%" y="789" width="0.2583%" height="15" fill="rgb(235,197,38)" fg:x="483103" fg:w="1662"/><text x="75.3200%" y="799.50"></text></g><g><title>get_acl (113 samples, 0.02%)</title><rect x="75.4014%" y="773" width="0.0176%" height="15" fill="rgb(237,136,15)" fg:x="485236" fg:w="113"/><text x="75.6514%" y="783.50"></text></g><g><title>generic_permission (640 samples, 0.10%)</title><rect x="75.3282%" y="789" width="0.0995%" height="15" fill="rgb(223,44,49)" fg:x="484765" fg:w="640"/><text x="75.5782%" y="799.50"></text></g><g><title>inode_permission (7,707 samples, 1.20%)</title><rect x="74.3531%" y="805" width="1.1976%" height="15" fill="rgb(227,71,15)" fg:x="478490" fg:w="7707"/><text x="74.6031%" y="815.50"></text></g><g><title>security_inode_permission (736 samples, 0.11%)</title><rect x="75.4364%" y="789" width="0.1144%" height="15" fill="rgb(225,153,20)" fg:x="485461" fg:w="736"/><text x="75.6864%" y="799.50"></text></g><g><title>lookup_fast (239 samples, 0.04%)</title><rect x="75.5507%" y="805" width="0.0371%" height="15" fill="rgb(210,190,26)" fg:x="486197" fg:w="239"/><text x="75.8007%" y="815.50"></text></g><g><title>page_put_link (96 samples, 0.01%)</title><rect x="75.5890%" y="805" width="0.0149%" height="15" fill="rgb(223,147,5)" fg:x="486443" fg:w="96"/><text x="75.8390%" y="815.50"></text></g><g><title>security_inode_permission (235 samples, 0.04%)</title><rect x="75.6039%" y="805" width="0.0365%" height="15" fill="rgb(207,14,23)" fg:x="486539" fg:w="235"/><text x="75.8539%" y="815.50"></text></g><g><title>step_into (160 samples, 0.02%)</title><rect x="75.6404%" y="805" width="0.0249%" height="15" fill="rgb(211,195,53)" fg:x="486774" fg:w="160"/><text x="75.8904%" y="815.50"></text></g><g><title>__d_lookup (120 samples, 0.02%)</title><rect x="75.9116%" y="789" width="0.0186%" height="15" fill="rgb(237,75,46)" fg:x="488519" fg:w="120"/><text x="76.1616%" y="799.50"></text></g><g><title>__d_lookup_rcu (114 samples, 0.02%)</title><rect x="75.9302%" y="789" width="0.0177%" height="15" fill="rgb(254,55,14)" fg:x="488639" fg:w="114"/><text x="76.1802%" y="799.50"></text></g><g><title>_raw_spin_lock (88 samples, 0.01%)</title><rect x="75.9919%" y="773" width="0.0137%" height="15" fill="rgb(230,185,30)" fg:x="489036" fg:w="88"/><text x="76.2419%" y="783.50"></text></g><g><title>btrfs_dentry_delete (151 samples, 0.02%)</title><rect x="76.0057%" y="773" width="0.0235%" height="15" fill="rgb(220,14,11)" fg:x="489125" fg:w="151"/><text x="76.2557%" y="783.50"></text></g><g><title>lockref_put_or_lock (110 samples, 0.02%)</title><rect x="76.0292%" y="773" width="0.0171%" height="15" fill="rgb(215,169,44)" fg:x="489276" fg:w="110"/><text x="76.2792%" y="783.50"></text></g><g><title>dput (562 samples, 0.09%)</title><rect x="75.9597%" y="789" width="0.0873%" height="15" fill="rgb(253,203,20)" fg:x="488829" fg:w="562"/><text x="76.2097%" y="799.50"></text></g><g><title>_raw_spin_lock (117 samples, 0.02%)</title><rect x="76.8688%" y="757" width="0.0182%" height="15" fill="rgb(229,225,17)" fg:x="494679" fg:w="117"/><text x="77.1188%" y="767.50"></text></g><g><title>native_queued_spin_lock_slowpath (116 samples, 0.02%)</title><rect x="76.8689%" y="741" width="0.0180%" height="15" fill="rgb(236,76,26)" fg:x="494680" fg:w="116"/><text x="77.1189%" y="751.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (116 samples, 0.02%)</title><rect x="76.8689%" y="725" width="0.0180%" height="15" fill="rgb(234,15,30)" fg:x="494680" fg:w="116"/><text x="77.1189%" y="735.50"></text></g><g><title>__d_lookup (3,994 samples, 0.62%)</title><rect x="76.2795%" y="773" width="0.6206%" height="15" fill="rgb(211,113,48)" fg:x="490887" fg:w="3994"/><text x="76.5295%" y="783.50"></text></g><g><title>__d_lookup_rcu (5,747 samples, 0.89%)</title><rect x="76.9002%" y="773" width="0.8930%" height="15" fill="rgb(221,31,36)" fg:x="494881" fg:w="5747"/><text x="77.1502%" y="783.50"></text></g><g><title>_raw_spin_lock (4,000 samples, 0.62%)</title><rect x="77.7932%" y="773" width="0.6216%" height="15" fill="rgb(215,118,52)" fg:x="500628" fg:w="4000"/><text x="78.0432%" y="783.50"></text></g><g><title>lookup_fast (15,292 samples, 2.38%)</title><rect x="76.0485%" y="789" width="2.3762%" height="15" fill="rgb(241,151,27)" fg:x="489400" fg:w="15292"/><text x="76.2985%" y="799.50">lo..</text></g><g><title>mntput (125 samples, 0.02%)</title><rect x="78.4247%" y="789" width="0.0194%" height="15" fill="rgb(253,51,3)" fg:x="504692" fg:w="125"/><text x="78.6747%" y="799.50"></text></g><g><title>page_put_link (174 samples, 0.03%)</title><rect x="78.4448%" y="789" width="0.0270%" height="15" fill="rgb(216,201,24)" fg:x="504821" fg:w="174"/><text x="78.6948%" y="799.50"></text></g><g><title>__cond_resched (234 samples, 0.04%)</title><rect x="78.8413%" y="773" width="0.0364%" height="15" fill="rgb(231,107,4)" fg:x="507373" fg:w="234"/><text x="79.0913%" y="783.50"></text></g><g><title>__lookup_mnt (359 samples, 0.06%)</title><rect x="78.8777%" y="773" width="0.0558%" height="15" fill="rgb(243,97,54)" fg:x="507607" fg:w="359"/><text x="79.1277%" y="783.50"></text></g><g><title>lockref_get (457 samples, 0.07%)</title><rect x="78.9628%" y="757" width="0.0710%" height="15" fill="rgb(221,32,51)" fg:x="508155" fg:w="457"/><text x="79.2128%" y="767.50"></text></g><g><title>lockref_put_return (179 samples, 0.03%)</title><rect x="79.0338%" y="757" width="0.0278%" height="15" fill="rgb(218,171,35)" fg:x="508612" fg:w="179"/><text x="79.2838%" y="767.50"></text></g><g><title>__legitimize_mnt (147 samples, 0.02%)</title><rect x="79.0671%" y="741" width="0.0228%" height="15" fill="rgb(214,20,53)" fg:x="508826" fg:w="147"/><text x="79.3171%" y="751.50"></text></g><g><title>__lookup_mnt (130 samples, 0.02%)</title><rect x="79.0899%" y="741" width="0.0202%" height="15" fill="rgb(239,9,52)" fg:x="508973" fg:w="130"/><text x="79.3399%" y="751.50"></text></g><g><title>lookup_mnt (318 samples, 0.05%)</title><rect x="79.0617%" y="757" width="0.0494%" height="15" fill="rgb(215,114,45)" fg:x="508791" fg:w="318"/><text x="79.3117%" y="767.50"></text></g><g><title>__traverse_mounts (1,153 samples, 0.18%)</title><rect x="78.9335%" y="773" width="0.1792%" height="15" fill="rgb(208,118,9)" fg:x="507966" fg:w="1153"/><text x="79.1835%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (79 samples, 0.01%)</title><rect x="79.1973%" y="709" width="0.0123%" height="15" fill="rgb(235,7,39)" fg:x="509664" fg:w="79"/><text x="79.4473%" y="719.50"></text></g><g><title>x86_pmu_enable (77 samples, 0.01%)</title><rect x="79.1976%" y="693" width="0.0120%" height="15" fill="rgb(243,225,15)" fg:x="509666" fg:w="77"/><text x="79.4476%" y="703.50"></text></g><g><title>intel_pmu_enable_all (76 samples, 0.01%)</title><rect x="79.1978%" y="677" width="0.0118%" height="15" fill="rgb(225,216,18)" fg:x="509667" fg:w="76"/><text x="79.4478%" y="687.50"></text></g><g><title>native_write_msr (74 samples, 0.01%)</title><rect x="79.1981%" y="661" width="0.0115%" height="15" fill="rgb(233,36,38)" fg:x="509669" fg:w="74"/><text x="79.4481%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (90 samples, 0.01%)</title><rect x="79.1968%" y="725" width="0.0140%" height="15" fill="rgb(239,88,23)" fg:x="509661" fg:w="90"/><text x="79.4468%" y="735.50"></text></g><g><title>__cond_resched (286 samples, 0.04%)</title><rect x="79.1693%" y="757" width="0.0444%" height="15" fill="rgb(219,181,35)" fg:x="509484" fg:w="286"/><text x="79.4193%" y="767.50"></text></g><g><title>__schedule (114 samples, 0.02%)</title><rect x="79.1961%" y="741" width="0.0177%" height="15" fill="rgb(215,18,46)" fg:x="509656" fg:w="114"/><text x="79.4461%" y="751.50"></text></g><g><title>lockref_put_or_lock (1,593 samples, 0.25%)</title><rect x="79.2161%" y="757" width="0.2475%" height="15" fill="rgb(241,38,11)" fg:x="509785" fg:w="1593"/><text x="79.4661%" y="767.50"></text></g><g><title>rcu_all_qs (142 samples, 0.02%)</title><rect x="79.4637%" y="757" width="0.0221%" height="15" fill="rgb(248,169,45)" fg:x="511378" fg:w="142"/><text x="79.7137%" y="767.50"></text></g><g><title>dput (2,428 samples, 0.38%)</title><rect x="79.1153%" y="773" width="0.3773%" height="15" fill="rgb(239,50,49)" fg:x="509136" fg:w="2428"/><text x="79.3653%" y="783.50"></text></g><g><title>lockref_put_or_lock (134 samples, 0.02%)</title><rect x="79.4935%" y="773" width="0.0208%" height="15" fill="rgb(231,96,31)" fg:x="511570" fg:w="134"/><text x="79.7435%" y="783.50"></text></g><g><title>lockref_put_return (191 samples, 0.03%)</title><rect x="79.5143%" y="773" width="0.0297%" height="15" fill="rgb(224,193,37)" fg:x="511704" fg:w="191"/><text x="79.7643%" y="783.50"></text></g><g><title>mntput_no_expire (71 samples, 0.01%)</title><rect x="79.5468%" y="757" width="0.0110%" height="15" fill="rgb(227,153,50)" fg:x="511913" fg:w="71"/><text x="79.7968%" y="767.50"></text></g><g><title>mntput (77 samples, 0.01%)</title><rect x="79.5463%" y="773" width="0.0120%" height="15" fill="rgb(249,228,3)" fg:x="511910" fg:w="77"/><text x="79.7963%" y="783.50"></text></g><g><title>current_time (89 samples, 0.01%)</title><rect x="79.6483%" y="741" width="0.0138%" height="15" fill="rgb(219,164,43)" fg:x="512566" fg:w="89"/><text x="79.8983%" y="751.50"></text></g><g><title>atime_needs_update (305 samples, 0.05%)</title><rect x="79.6161%" y="757" width="0.0474%" height="15" fill="rgb(216,45,41)" fg:x="512359" fg:w="305"/><text x="79.8661%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="79.7061%" y="677" width="0.0155%" height="15" fill="rgb(210,226,51)" fg:x="512938" fg:w="100"/><text x="79.9561%" y="687.50"></text></g><g><title>x86_pmu_enable (98 samples, 0.02%)</title><rect x="79.7064%" y="661" width="0.0152%" height="15" fill="rgb(209,117,49)" fg:x="512940" fg:w="98"/><text x="79.9564%" y="671.50"></text></g><g><title>intel_pmu_enable_all (97 samples, 0.02%)</title><rect x="79.7065%" y="645" width="0.0151%" height="15" fill="rgb(206,196,24)" fg:x="512941" fg:w="97"/><text x="79.9565%" y="655.50"></text></g><g><title>native_write_msr (94 samples, 0.01%)</title><rect x="79.7070%" y="629" width="0.0146%" height="15" fill="rgb(253,218,3)" fg:x="512944" fg:w="94"/><text x="79.9570%" y="639.50"></text></g><g><title>finish_task_switch.isra.0 (111 samples, 0.02%)</title><rect x="79.7056%" y="693" width="0.0172%" height="15" fill="rgb(252,166,2)" fg:x="512935" fg:w="111"/><text x="79.9556%" y="703.50"></text></g><g><title>__cond_resched (162 samples, 0.03%)</title><rect x="79.7033%" y="725" width="0.0252%" height="15" fill="rgb(236,218,26)" fg:x="512920" fg:w="162"/><text x="79.9533%" y="735.50"></text></g><g><title>__schedule (152 samples, 0.02%)</title><rect x="79.7048%" y="709" width="0.0236%" height="15" fill="rgb(254,84,19)" fg:x="512930" fg:w="152"/><text x="79.9548%" y="719.50"></text></g><g><title>lockref_put_or_lock (409 samples, 0.06%)</title><rect x="79.7284%" y="725" width="0.0636%" height="15" fill="rgb(219,137,29)" fg:x="513082" fg:w="409"/><text x="79.9784%" y="735.50"></text></g><g><title>dput (625 samples, 0.10%)</title><rect x="79.6981%" y="741" width="0.0971%" height="15" fill="rgb(227,47,52)" fg:x="512887" fg:w="625"/><text x="79.9481%" y="751.50"></text></g><g><title>lockref_get (245 samples, 0.04%)</title><rect x="79.7953%" y="741" width="0.0381%" height="15" fill="rgb(229,167,24)" fg:x="513512" fg:w="245"/><text x="80.0453%" y="751.50"></text></g><g><title>nd_jump_root (1,044 samples, 0.16%)</title><rect x="79.6901%" y="757" width="0.1622%" height="15" fill="rgb(233,164,1)" fg:x="512835" fg:w="1044"/><text x="79.9401%" y="767.50"></text></g><g><title>mark_page_accessed (65 samples, 0.01%)</title><rect x="79.8958%" y="709" width="0.0101%" height="15" fill="rgb(218,88,48)" fg:x="514159" fg:w="65"/><text x="80.1458%" y="719.50"></text></g><g><title>xas_load (107 samples, 0.02%)</title><rect x="80.0318%" y="693" width="0.0166%" height="15" fill="rgb(226,214,24)" fg:x="515034" fg:w="107"/><text x="80.2818%" y="703.50"></text></g><g><title>xas_start (79 samples, 0.01%)</title><rect x="80.0361%" y="677" width="0.0123%" height="15" fill="rgb(233,29,12)" fg:x="515062" fg:w="79"/><text x="80.2861%" y="687.50"></text></g><g><title>pagecache_get_page (935 samples, 0.15%)</title><rect x="79.9059%" y="709" width="0.1453%" height="15" fill="rgb(219,120,34)" fg:x="514224" fg:w="935"/><text x="80.1559%" y="719.50"></text></g><g><title>do_read_cache_page (1,115 samples, 0.17%)</title><rect x="79.8806%" y="725" width="0.1733%" height="15" fill="rgb(226,78,44)" fg:x="514061" fg:w="1115"/><text x="80.1306%" y="735.50"></text></g><g><title>page_get_link (1,346 samples, 0.21%)</title><rect x="79.8523%" y="757" width="0.2092%" height="15" fill="rgb(240,15,48)" fg:x="513879" fg:w="1346"/><text x="80.1023%" y="767.50"></text></g><g><title>read_cache_page (1,167 samples, 0.18%)</title><rect x="79.8801%" y="741" width="0.1813%" height="15" fill="rgb(253,176,7)" fg:x="514058" fg:w="1167"/><text x="80.1301%" y="751.50"></text></g><g><title>__mnt_want_write (149 samples, 0.02%)</title><rect x="80.1200%" y="741" width="0.0232%" height="15" fill="rgb(206,166,28)" fg:x="515602" fg:w="149"/><text x="80.3700%" y="751.50"></text></g><g><title>current_time (112 samples, 0.02%)</title><rect x="80.1523%" y="725" width="0.0174%" height="15" fill="rgb(241,53,51)" fg:x="515810" fg:w="112"/><text x="80.4023%" y="735.50"></text></g><g><title>atime_needs_update (176 samples, 0.03%)</title><rect x="80.1435%" y="741" width="0.0273%" height="15" fill="rgb(249,112,30)" fg:x="515753" fg:w="176"/><text x="80.3935%" y="751.50"></text></g><g><title>touch_atime (640 samples, 0.10%)</title><rect x="80.0720%" y="757" width="0.0995%" height="15" fill="rgb(217,85,30)" fg:x="515293" fg:w="640"/><text x="80.3220%" y="767.50"></text></g><g><title>__legitimize_mnt (268 samples, 0.04%)</title><rect x="80.1887%" y="725" width="0.0416%" height="15" fill="rgb(233,49,7)" fg:x="516044" fg:w="268"/><text x="80.4387%" y="735.50"></text></g><g><title>__legitimize_path (503 samples, 0.08%)</title><rect x="80.1811%" y="741" width="0.0782%" height="15" fill="rgb(234,109,9)" fg:x="515995" fg:w="503"/><text x="80.4311%" y="751.50"></text></g><g><title>lockref_get_not_dead (186 samples, 0.03%)</title><rect x="80.2304%" y="725" width="0.0289%" height="15" fill="rgb(253,95,22)" fg:x="516312" fg:w="186"/><text x="80.4804%" y="735.50"></text></g><g><title>__legitimize_mnt (564 samples, 0.09%)</title><rect x="80.2925%" y="709" width="0.0876%" height="15" fill="rgb(233,176,25)" fg:x="516712" fg:w="564"/><text x="80.5425%" y="719.50"></text></g><g><title>__legitimize_path (972 samples, 0.15%)</title><rect x="80.2830%" y="725" width="0.1510%" height="15" fill="rgb(236,33,39)" fg:x="516651" fg:w="972"/><text x="80.5330%" y="735.50"></text></g><g><title>lockref_get_not_dead (345 samples, 0.05%)</title><rect x="80.3805%" y="709" width="0.0536%" height="15" fill="rgb(223,226,42)" fg:x="517278" fg:w="345"/><text x="80.6305%" y="719.50"></text></g><g><title>legitimize_links (1,135 samples, 0.18%)</title><rect x="80.2593%" y="741" width="0.1764%" height="15" fill="rgb(216,99,33)" fg:x="516498" fg:w="1135"/><text x="80.5093%" y="751.50"></text></g><g><title>__legitimize_mnt (313 samples, 0.05%)</title><rect x="80.4403%" y="709" width="0.0486%" height="15" fill="rgb(235,84,23)" fg:x="517663" fg:w="313"/><text x="80.6903%" y="719.50"></text></g><g><title>__legitimize_path (679 samples, 0.11%)</title><rect x="80.4380%" y="725" width="0.1055%" height="15" fill="rgb(232,2,27)" fg:x="517648" fg:w="679"/><text x="80.6880%" y="735.50"></text></g><g><title>lockref_get_not_dead (351 samples, 0.05%)</title><rect x="80.4889%" y="709" width="0.0545%" height="15" fill="rgb(241,23,22)" fg:x="517976" fg:w="351"/><text x="80.7389%" y="719.50"></text></g><g><title>legitimize_root (697 samples, 0.11%)</title><rect x="80.4356%" y="741" width="0.1083%" height="15" fill="rgb(211,73,27)" fg:x="517633" fg:w="697"/><text x="80.6856%" y="751.50"></text></g><g><title>pick_link (6,332 samples, 0.98%)</title><rect x="79.5609%" y="773" width="0.9839%" height="15" fill="rgb(235,109,49)" fg:x="512004" fg:w="6332"/><text x="79.8109%" y="783.50"></text></g><g><title>try_to_unlazy (2,403 samples, 0.37%)</title><rect x="80.1715%" y="757" width="0.3734%" height="15" fill="rgb(230,99,29)" fg:x="515933" fg:w="2403"/><text x="80.4215%" y="767.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (47,264 samples, 7.34%)</title><rect x="73.2238%" y="821" width="7.3444%" height="15" fill="rgb(245,199,7)" fg:x="471222" fg:w="47264"/><text x="73.4738%" y="831.50">link_path_..</text></g><g><title>walk_component (31,552 samples, 4.90%)</title><rect x="75.6653%" y="805" width="4.9029%" height="15" fill="rgb(217,179,10)" fg:x="486934" fg:w="31552"/><text x="75.9153%" y="815.50">walk_c..</text></g><g><title>step_into (13,468 samples, 2.09%)</title><rect x="78.4754%" y="789" width="2.0928%" height="15" fill="rgb(254,99,47)" fg:x="505018" fg:w="13468"/><text x="78.7254%" y="799.50">s..</text></g><g><title>try_to_unlazy (85 samples, 0.01%)</title><rect x="80.5550%" y="773" width="0.0132%" height="15" fill="rgb(251,121,7)" fg:x="518401" fg:w="85"/><text x="80.8050%" y="783.50"></text></g><g><title>may_open (109 samples, 0.02%)</title><rect x="80.5719%" y="821" width="0.0169%" height="15" fill="rgb(250,177,26)" fg:x="518510" fg:w="109"/><text x="80.8219%" y="831.50"></text></g><g><title>_raw_spin_lock (96 samples, 0.01%)</title><rect x="80.6692%" y="789" width="0.0149%" height="15" fill="rgb(232,88,15)" fg:x="519136" fg:w="96"/><text x="80.9192%" y="799.50"></text></g><g><title>btrfs_dentry_delete (702 samples, 0.11%)</title><rect x="80.6841%" y="789" width="0.1091%" height="15" fill="rgb(251,54,54)" fg:x="519232" fg:w="702"/><text x="80.9341%" y="799.50"></text></g><g><title>dput (936 samples, 0.15%)</title><rect x="80.6552%" y="805" width="0.1454%" height="15" fill="rgb(208,177,15)" fg:x="519046" fg:w="936"/><text x="80.9052%" y="815.50"></text></g><g><title>__d_lookup (1,710 samples, 0.27%)</title><rect x="80.8219%" y="789" width="0.2657%" height="15" fill="rgb(205,97,32)" fg:x="520119" fg:w="1710"/><text x="81.0719%" y="799.50"></text></g><g><title>__d_lookup_rcu (2,078 samples, 0.32%)</title><rect x="81.0876%" y="789" width="0.3229%" height="15" fill="rgb(217,192,13)" fg:x="521829" fg:w="2078"/><text x="81.3376%" y="799.50"></text></g><g><title>_raw_spin_lock (229 samples, 0.04%)</title><rect x="81.4105%" y="789" width="0.0356%" height="15" fill="rgb(215,163,41)" fg:x="523907" fg:w="229"/><text x="81.6605%" y="799.50"></text></g><g><title>lookup_fast (4,150 samples, 0.64%)</title><rect x="80.8019%" y="805" width="0.6449%" height="15" fill="rgb(246,83,29)" fg:x="519990" fg:w="4150"/><text x="81.0519%" y="815.50"></text></g><g><title>page_put_link (108 samples, 0.02%)</title><rect x="81.4547%" y="805" width="0.0168%" height="15" fill="rgb(219,2,45)" fg:x="524191" fg:w="108"/><text x="81.7047%" y="815.50"></text></g><g><title>lockref_put_or_lock (142 samples, 0.02%)</title><rect x="81.5170%" y="773" width="0.0221%" height="15" fill="rgb(242,215,33)" fg:x="524592" fg:w="142"/><text x="81.7670%" y="783.50"></text></g><g><title>dput (206 samples, 0.03%)</title><rect x="81.5084%" y="789" width="0.0320%" height="15" fill="rgb(217,1,6)" fg:x="524537" fg:w="206"/><text x="81.7584%" y="799.50"></text></g><g><title>current_time (71 samples, 0.01%)</title><rect x="81.9184%" y="757" width="0.0110%" height="15" fill="rgb(207,85,52)" fg:x="527175" fg:w="71"/><text x="82.1684%" y="767.50"></text></g><g><title>atime_needs_update (280 samples, 0.04%)</title><rect x="81.8868%" y="773" width="0.0435%" height="15" fill="rgb(231,171,19)" fg:x="526972" fg:w="280"/><text x="82.1368%" y="783.50"></text></g><g><title>nd_jump_root (195 samples, 0.03%)</title><rect x="81.9344%" y="773" width="0.0303%" height="15" fill="rgb(207,128,4)" fg:x="527278" fg:w="195"/><text x="82.1844%" y="783.50"></text></g><g><title>set_root (143 samples, 0.02%)</title><rect x="81.9425%" y="757" width="0.0222%" height="15" fill="rgb(219,208,4)" fg:x="527330" fg:w="143"/><text x="82.1925%" y="767.50"></text></g><g><title>xas_load (550 samples, 0.09%)</title><rect x="82.1639%" y="741" width="0.0855%" height="15" fill="rgb(235,161,42)" fg:x="528755" fg:w="550"/><text x="82.4139%" y="751.50"></text></g><g><title>xas_start (492 samples, 0.08%)</title><rect x="82.1729%" y="725" width="0.0765%" height="15" fill="rgb(247,218,18)" fg:x="528813" fg:w="492"/><text x="82.4229%" y="735.50"></text></g><g><title>pagecache_get_page (1,672 samples, 0.26%)</title><rect x="81.9930%" y="757" width="0.2598%" height="15" fill="rgb(232,114,51)" fg:x="527655" fg:w="1672"/><text x="82.2430%" y="767.50"></text></g><g><title>__alloc_pages (87 samples, 0.01%)</title><rect x="82.2582%" y="693" width="0.0135%" height="15" fill="rgb(222,95,3)" fg:x="529362" fg:w="87"/><text x="82.5082%" y="703.50"></text></g><g><title>__page_cache_alloc (110 samples, 0.02%)</title><rect x="82.2559%" y="725" width="0.0171%" height="15" fill="rgb(240,65,29)" fg:x="529347" fg:w="110"/><text x="82.5059%" y="735.50"></text></g><g><title>alloc_pages (100 samples, 0.02%)</title><rect x="82.2574%" y="709" width="0.0155%" height="15" fill="rgb(249,209,20)" fg:x="529357" fg:w="100"/><text x="82.5074%" y="719.50"></text></g><g><title>__add_to_page_cache_locked (96 samples, 0.01%)</title><rect x="82.2737%" y="709" width="0.0149%" height="15" fill="rgb(241,48,37)" fg:x="529462" fg:w="96"/><text x="82.5237%" y="719.50"></text></g><g><title>add_to_page_cache_lru (147 samples, 0.02%)</title><rect x="82.2730%" y="725" width="0.0228%" height="15" fill="rgb(230,140,42)" fg:x="529457" fg:w="147"/><text x="82.5230%" y="735.50"></text></g><g><title>btrfs_bin_search (70 samples, 0.01%)</title><rect x="82.3424%" y="645" width="0.0109%" height="15" fill="rgb(230,176,45)" fg:x="529904" fg:w="70"/><text x="82.5924%" y="655.50"></text></g><g><title>finish_task_switch.isra.0 (75 samples, 0.01%)</title><rect x="82.3566%" y="549" width="0.0117%" height="15" fill="rgb(245,112,21)" fg:x="529995" fg:w="75"/><text x="82.6066%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (73 samples, 0.01%)</title><rect x="82.3569%" y="533" width="0.0113%" height="15" fill="rgb(207,183,35)" fg:x="529997" fg:w="73"/><text x="82.6069%" y="543.50"></text></g><g><title>x86_pmu_enable (73 samples, 0.01%)</title><rect x="82.3569%" y="517" width="0.0113%" height="15" fill="rgb(227,44,33)" fg:x="529997" fg:w="73"/><text x="82.6069%" y="527.50"></text></g><g><title>intel_pmu_enable_all (73 samples, 0.01%)</title><rect x="82.3569%" y="501" width="0.0113%" height="15" fill="rgb(246,120,21)" fg:x="529997" fg:w="73"/><text x="82.6069%" y="511.50"></text></g><g><title>native_write_msr (73 samples, 0.01%)</title><rect x="82.3569%" y="485" width="0.0113%" height="15" fill="rgb(235,57,52)" fg:x="529997" fg:w="73"/><text x="82.6069%" y="495.50"></text></g><g><title>__btrfs_tree_read_lock (102 samples, 0.02%)</title><rect x="82.3542%" y="629" width="0.0158%" height="15" fill="rgb(238,84,10)" fg:x="529980" fg:w="102"/><text x="82.6042%" y="639.50"></text></g><g><title>down_read (101 samples, 0.02%)</title><rect x="82.3544%" y="613" width="0.0157%" height="15" fill="rgb(251,200,32)" fg:x="529981" fg:w="101"/><text x="82.6044%" y="623.50"></text></g><g><title>rwsem_down_read_slowpath (98 samples, 0.02%)</title><rect x="82.3549%" y="597" width="0.0152%" height="15" fill="rgb(247,159,13)" fg:x="529984" fg:w="98"/><text x="82.6049%" y="607.50"></text></g><g><title>schedule (97 samples, 0.02%)</title><rect x="82.3550%" y="581" width="0.0151%" height="15" fill="rgb(238,64,4)" fg:x="529985" fg:w="97"/><text x="82.6050%" y="591.50"></text></g><g><title>__schedule (96 samples, 0.01%)</title><rect x="82.3552%" y="565" width="0.0149%" height="15" fill="rgb(221,131,51)" fg:x="529986" fg:w="96"/><text x="82.6052%" y="575.50"></text></g><g><title>btrfs_read_lock_root_node (114 samples, 0.02%)</title><rect x="82.3541%" y="645" width="0.0177%" height="15" fill="rgb(242,5,29)" fg:x="529979" fg:w="114"/><text x="82.6041%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (150 samples, 0.02%)</title><rect x="82.3771%" y="533" width="0.0233%" height="15" fill="rgb(214,130,32)" fg:x="530127" fg:w="150"/><text x="82.6271%" y="543.50"></text></g><g><title>x86_pmu_enable (147 samples, 0.02%)</title><rect x="82.3775%" y="517" width="0.0228%" height="15" fill="rgb(244,210,16)" fg:x="530130" fg:w="147"/><text x="82.6275%" y="527.50"></text></g><g><title>intel_pmu_enable_all (144 samples, 0.02%)</title><rect x="82.3780%" y="501" width="0.0224%" height="15" fill="rgb(234,48,26)" fg:x="530133" fg:w="144"/><text x="82.6280%" y="511.50"></text></g><g><title>native_write_msr (143 samples, 0.02%)</title><rect x="82.3782%" y="485" width="0.0222%" height="15" fill="rgb(231,82,38)" fg:x="530134" fg:w="143"/><text x="82.6282%" y="495.50"></text></g><g><title>finish_task_switch.isra.0 (154 samples, 0.02%)</title><rect x="82.3769%" y="549" width="0.0239%" height="15" fill="rgb(254,128,41)" fg:x="530126" fg:w="154"/><text x="82.6269%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (195 samples, 0.03%)</title><rect x="82.3720%" y="629" width="0.0303%" height="15" fill="rgb(212,73,49)" fg:x="530094" fg:w="195"/><text x="82.6220%" y="639.50"></text></g><g><title>down_read (194 samples, 0.03%)</title><rect x="82.3721%" y="613" width="0.0301%" height="15" fill="rgb(205,62,54)" fg:x="530095" fg:w="194"/><text x="82.6221%" y="623.50"></text></g><g><title>rwsem_down_read_slowpath (184 samples, 0.03%)</title><rect x="82.3737%" y="597" width="0.0286%" height="15" fill="rgb(228,0,8)" fg:x="530105" fg:w="184"/><text x="82.6237%" y="607.50"></text></g><g><title>schedule (180 samples, 0.03%)</title><rect x="82.3743%" y="581" width="0.0280%" height="15" fill="rgb(251,28,17)" fg:x="530109" fg:w="180"/><text x="82.6243%" y="591.50"></text></g><g><title>__schedule (180 samples, 0.03%)</title><rect x="82.3743%" y="565" width="0.0280%" height="15" fill="rgb(238,105,27)" fg:x="530109" fg:w="180"/><text x="82.6243%" y="575.50"></text></g><g><title>btrfs_tree_read_lock (198 samples, 0.03%)</title><rect x="82.3720%" y="645" width="0.0308%" height="15" fill="rgb(237,216,33)" fg:x="530094" fg:w="198"/><text x="82.6220%" y="655.50"></text></g><g><title>find_extent_buffer_nolock (85 samples, 0.01%)</title><rect x="82.4170%" y="613" width="0.0132%" height="15" fill="rgb(229,228,25)" fg:x="530384" fg:w="85"/><text x="82.6670%" y="623.50"></text></g><g><title>find_extent_buffer (122 samples, 0.02%)</title><rect x="82.4162%" y="629" width="0.0190%" height="15" fill="rgb(233,75,23)" fg:x="530379" fg:w="122"/><text x="82.6662%" y="639.50"></text></g><g><title>read_block_for_search (180 samples, 0.03%)</title><rect x="82.4083%" y="645" width="0.0280%" height="15" fill="rgb(231,207,16)" fg:x="530328" fg:w="180"/><text x="82.6583%" y="655.50"></text></g><g><title>btrfs_search_slot (654 samples, 0.10%)</title><rect x="82.3378%" y="661" width="0.1016%" height="15" fill="rgb(231,191,45)" fg:x="529874" fg:w="654"/><text x="82.5878%" y="671.50"></text></g><g><title>btrfs_lookup_file_extent (670 samples, 0.10%)</title><rect x="82.3368%" y="677" width="0.1041%" height="15" fill="rgb(224,133,17)" fg:x="529868" fg:w="670"/><text x="82.5868%" y="687.50"></text></g><g><title>btrfs_get_extent (975 samples, 0.15%)</title><rect x="82.3110%" y="693" width="0.1515%" height="15" fill="rgb(209,178,27)" fg:x="529702" fg:w="975"/><text x="82.5610%" y="703.50"></text></g><g><title>set_extent_bit (81 samples, 0.01%)</title><rect x="82.4500%" y="677" width="0.0126%" height="15" fill="rgb(218,37,11)" fg:x="530596" fg:w="81"/><text x="82.7000%" y="687.50"></text></g><g><title>btrfs_do_readpage (1,091 samples, 0.17%)</title><rect x="82.2971%" y="709" width="0.1695%" height="15" fill="rgb(251,226,25)" fg:x="529612" fg:w="1091"/><text x="82.5471%" y="719.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (65 samples, 0.01%)</title><rect x="82.4669%" y="709" width="0.0101%" height="15" fill="rgb(209,222,27)" fg:x="530705" fg:w="65"/><text x="82.7169%" y="719.50"></text></g><g><title>btrfs_readpage (1,170 samples, 0.18%)</title><rect x="82.2966%" y="725" width="0.1818%" height="15" fill="rgb(238,22,21)" fg:x="529609" fg:w="1170"/><text x="82.5466%" y="735.50"></text></g><g><title>do_read_cache_page (1,451 samples, 0.23%)</title><rect x="82.2542%" y="741" width="0.2255%" height="15" fill="rgb(233,161,25)" fg:x="529336" fg:w="1451"/><text x="82.5042%" y="751.50"></text></g><g><title>read_cache_page (1,456 samples, 0.23%)</title><rect x="82.2535%" y="757" width="0.2262%" height="15" fill="rgb(226,122,53)" fg:x="529332" fg:w="1456"/><text x="82.5035%" y="767.50"></text></g><g><title>page_get_link (3,323 samples, 0.52%)</title><rect x="81.9647%" y="773" width="0.5164%" height="15" fill="rgb(220,123,17)" fg:x="527473" fg:w="3323"/><text x="82.2147%" y="783.50"></text></g><g><title>btrfs_delayed_update_inode (156 samples, 0.02%)</title><rect x="82.5129%" y="709" width="0.0242%" height="15" fill="rgb(230,224,35)" fg:x="531001" fg:w="156"/><text x="82.7629%" y="719.50"></text></g><g><title>btrfs_update_inode (177 samples, 0.03%)</title><rect x="82.5110%" y="725" width="0.0275%" height="15" fill="rgb(246,83,8)" fg:x="530989" fg:w="177"/><text x="82.7610%" y="735.50"></text></g><g><title>btrfs_update_time (308 samples, 0.05%)</title><rect x="82.4916%" y="757" width="0.0479%" height="15" fill="rgb(230,214,17)" fg:x="530864" fg:w="308"/><text x="82.7416%" y="767.50"></text></g><g><title>btrfs_dirty_inode (308 samples, 0.05%)</title><rect x="82.4916%" y="741" width="0.0479%" height="15" fill="rgb(222,97,18)" fg:x="530864" fg:w="308"/><text x="82.7416%" y="751.50"></text></g><g><title>touch_atime (323 samples, 0.05%)</title><rect x="82.4897%" y="773" width="0.0502%" height="15" fill="rgb(206,79,1)" fg:x="530852" fg:w="323"/><text x="82.7397%" y="783.50"></text></g><g><title>pick_link (6,435 samples, 1.00%)</title><rect x="81.5426%" y="789" width="0.9999%" height="15" fill="rgb(214,121,34)" fg:x="524757" fg:w="6435"/><text x="81.7926%" y="799.50"></text></g><g><title>step_into (6,895 samples, 1.07%)</title><rect x="81.4747%" y="805" width="1.0714%" height="15" fill="rgb(249,199,46)" fg:x="524320" fg:w="6895"/><text x="81.7247%" y="815.50"></text></g><g><title>open_last_lookups (12,554 samples, 1.95%)</title><rect x="80.5955%" y="821" width="1.9508%" height="15" fill="rgb(214,222,46)" fg:x="518662" fg:w="12554"/><text x="80.8455%" y="831.50">o..</text></g><g><title>page_put_link (66 samples, 0.01%)</title><rect x="82.5463%" y="821" width="0.0103%" height="15" fill="rgb(248,168,30)" fg:x="531216" fg:w="66"/><text x="82.7963%" y="831.50"></text></g><g><title>__fget_files (376 samples, 0.06%)</title><rect x="82.5999%" y="773" width="0.0584%" height="15" fill="rgb(226,14,28)" fg:x="531561" fg:w="376"/><text x="82.8499%" y="783.50"></text></g><g><title>__fdget_raw (396 samples, 0.06%)</title><rect x="82.5977%" y="805" width="0.0615%" height="15" fill="rgb(253,123,1)" fg:x="531547" fg:w="396"/><text x="82.8477%" y="815.50"></text></g><g><title>__fget_light (388 samples, 0.06%)</title><rect x="82.5990%" y="789" width="0.0603%" height="15" fill="rgb(225,24,42)" fg:x="531555" fg:w="388"/><text x="82.8490%" y="799.50"></text></g><g><title>path_init (830 samples, 0.13%)</title><rect x="82.5566%" y="821" width="0.1290%" height="15" fill="rgb(216,161,37)" fg:x="531282" fg:w="830"/><text x="82.8066%" y="831.50"></text></g><g><title>fput_many (120 samples, 0.02%)</title><rect x="82.6669%" y="805" width="0.0186%" height="15" fill="rgb(251,164,26)" fg:x="531992" fg:w="120"/><text x="82.9169%" y="815.50"></text></g><g><title>lockref_put_or_lock (145 samples, 0.02%)</title><rect x="82.7463%" y="789" width="0.0225%" height="15" fill="rgb(219,177,3)" fg:x="532503" fg:w="145"/><text x="82.9963%" y="799.50"></text></g><g><title>dput (435 samples, 0.07%)</title><rect x="82.7074%" y="805" width="0.0676%" height="15" fill="rgb(222,65,0)" fg:x="532253" fg:w="435"/><text x="82.9574%" y="815.50"></text></g><g><title>lockref_put_return (375 samples, 0.06%)</title><rect x="82.7780%" y="805" width="0.0583%" height="15" fill="rgb(223,69,54)" fg:x="532707" fg:w="375"/><text x="83.0280%" y="815.50"></text></g><g><title>mntput_no_expire (140 samples, 0.02%)</title><rect x="82.8372%" y="789" width="0.0218%" height="15" fill="rgb(235,30,27)" fg:x="533088" fg:w="140"/><text x="83.0872%" y="799.50"></text></g><g><title>mntput (158 samples, 0.02%)</title><rect x="82.8363%" y="805" width="0.0246%" height="15" fill="rgb(220,183,50)" fg:x="533082" fg:w="158"/><text x="83.0863%" y="815.50"></text></g><g><title>terminate_walk (1,131 samples, 0.18%)</title><rect x="82.6904%" y="821" width="0.1757%" height="15" fill="rgb(248,198,15)" fg:x="532143" fg:w="1131"/><text x="82.9404%" y="831.50"></text></g><g><title>path_openat (73,417 samples, 11.41%)</title><rect x="71.4971%" y="837" width="11.4084%" height="15" fill="rgb(222,211,4)" fg:x="460110" fg:w="73417"/><text x="71.7471%" y="847.50">path_openat</text></g><g><title>walk_component (232 samples, 0.04%)</title><rect x="82.8694%" y="821" width="0.0361%" height="15" fill="rgb(214,102,34)" fg:x="533295" fg:w="232"/><text x="83.1194%" y="831.50"></text></g><g><title>do_filp_open (73,870 samples, 11.48%)</title><rect x="71.4302%" y="853" width="11.4787%" height="15" fill="rgb(245,92,5)" fg:x="459680" fg:w="73870"/><text x="71.6802%" y="863.50">do_filp_open</text></g><g><title>fd_install (224 samples, 0.03%)</title><rect x="82.9090%" y="853" width="0.0348%" height="15" fill="rgb(252,72,51)" fg:x="533550" fg:w="224"/><text x="83.1590%" y="863.50"></text></g><g><title>_find_next_bit (68 samples, 0.01%)</title><rect x="82.9641%" y="837" width="0.0106%" height="15" fill="rgb(252,208,19)" fg:x="533905" fg:w="68"/><text x="83.2141%" y="847.50"></text></g><g><title>_raw_spin_lock (136 samples, 0.02%)</title><rect x="82.9747%" y="837" width="0.0211%" height="15" fill="rgb(211,69,7)" fg:x="533973" fg:w="136"/><text x="83.2247%" y="847.50"></text></g><g><title>alloc_fd (392 samples, 0.06%)</title><rect x="82.9958%" y="837" width="0.0609%" height="15" fill="rgb(211,27,16)" fg:x="534109" fg:w="392"/><text x="83.2458%" y="847.50"></text></g><g><title>expand_files (101 samples, 0.02%)</title><rect x="83.0411%" y="821" width="0.0157%" height="15" fill="rgb(219,216,14)" fg:x="534400" fg:w="101"/><text x="83.2911%" y="831.50"></text></g><g><title>get_unused_fd_flags (761 samples, 0.12%)</title><rect x="82.9438%" y="853" width="0.1183%" height="15" fill="rgb(219,71,8)" fg:x="533774" fg:w="761"/><text x="83.1938%" y="863.50"></text></g><g><title>__check_object_size (86 samples, 0.01%)</title><rect x="83.0923%" y="821" width="0.0134%" height="15" fill="rgb(223,170,53)" fg:x="534730" fg:w="86"/><text x="83.3423%" y="831.50"></text></g><g><title>memcg_slab_post_alloc_hook (86 samples, 0.01%)</title><rect x="83.1941%" y="805" width="0.0134%" height="15" fill="rgb(246,21,26)" fg:x="535385" fg:w="86"/><text x="83.4441%" y="815.50"></text></g><g><title>kmem_cache_alloc (657 samples, 0.10%)</title><rect x="83.1110%" y="821" width="0.1021%" height="15" fill="rgb(248,20,46)" fg:x="534850" fg:w="657"/><text x="83.3610%" y="831.50"></text></g><g><title>memset_erms (1,377 samples, 0.21%)</title><rect x="83.2140%" y="821" width="0.2140%" height="15" fill="rgb(252,94,11)" fg:x="535513" fg:w="1377"/><text x="83.4640%" y="831.50"></text></g><g><title>__check_heap_object (190 samples, 0.03%)</title><rect x="83.5503%" y="773" width="0.0295%" height="15" fill="rgb(236,163,8)" fg:x="537677" fg:w="190"/><text x="83.8003%" y="783.50"></text></g><g><title>__virt_addr_valid (452 samples, 0.07%)</title><rect x="83.5798%" y="773" width="0.0702%" height="15" fill="rgb(217,221,45)" fg:x="537867" fg:w="452"/><text x="83.8298%" y="783.50"></text></g><g><title>__check_object_size.part.0 (838 samples, 0.13%)</title><rect x="83.5208%" y="789" width="0.1302%" height="15" fill="rgb(238,38,17)" fg:x="537487" fg:w="838"/><text x="83.7708%" y="799.50"></text></g><g><title>__virt_addr_valid (135 samples, 0.02%)</title><rect x="83.6510%" y="789" width="0.0210%" height="15" fill="rgb(242,210,23)" fg:x="538325" fg:w="135"/><text x="83.9010%" y="799.50"></text></g><g><title>__check_object_size (1,125 samples, 0.17%)</title><rect x="83.5197%" y="805" width="0.1748%" height="15" fill="rgb(250,86,53)" fg:x="537480" fg:w="1125"/><text x="83.7697%" y="815.50"></text></g><g><title>check_stack_object (144 samples, 0.02%)</title><rect x="83.6721%" y="789" width="0.0224%" height="15" fill="rgb(223,168,25)" fg:x="538461" fg:w="144"/><text x="83.9221%" y="799.50"></text></g><g><title>getname_flags.part.0 (4,020 samples, 0.62%)</title><rect x="83.0704%" y="837" width="0.6247%" height="15" fill="rgb(251,189,4)" fg:x="534589" fg:w="4020"/><text x="83.3204%" y="847.50"></text></g><g><title>strncpy_from_user (1,699 samples, 0.26%)</title><rect x="83.4311%" y="821" width="0.2640%" height="15" fill="rgb(245,19,28)" fg:x="536910" fg:w="1699"/><text x="83.6811%" y="831.50"></text></g><g><title>getname (4,102 samples, 0.64%)</title><rect x="83.0620%" y="853" width="0.6374%" height="15" fill="rgb(207,10,34)" fg:x="534535" fg:w="4102"/><text x="83.3120%" y="863.50"></text></g><g><title>memcg_slab_free_hook (114 samples, 0.02%)</title><rect x="83.7986%" y="821" width="0.0177%" height="15" fill="rgb(235,153,31)" fg:x="539275" fg:w="114"/><text x="84.0486%" y="831.50"></text></g><g><title>kmem_cache_free (742 samples, 0.12%)</title><rect x="83.7240%" y="837" width="0.1153%" height="15" fill="rgb(228,72,37)" fg:x="538795" fg:w="742"/><text x="83.9740%" y="847.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (148 samples, 0.02%)</title><rect x="83.8163%" y="821" width="0.0230%" height="15" fill="rgb(215,15,16)" fg:x="539389" fg:w="148"/><text x="84.0663%" y="831.50"></text></g><g><title>do_sys_openat2 (80,159 samples, 12.46%)</title><rect x="71.3870%" y="869" width="12.4560%" height="15" fill="rgb(250,119,29)" fg:x="459402" fg:w="80159"/><text x="71.6370%" y="879.50">do_sys_openat2</text></g><g><title>putname (869 samples, 0.14%)</title><rect x="83.7080%" y="853" width="0.1350%" height="15" fill="rgb(214,59,1)" fg:x="538692" fg:w="869"/><text x="83.9580%" y="863.50"></text></g><g><title>get_unused_fd_flags (131 samples, 0.02%)</title><rect x="83.8499%" y="869" width="0.0204%" height="15" fill="rgb(223,109,25)" fg:x="539605" fg:w="131"/><text x="84.0999%" y="879.50"></text></g><g><title>getname (135 samples, 0.02%)</title><rect x="83.8702%" y="869" width="0.0210%" height="15" fill="rgb(230,198,22)" fg:x="539736" fg:w="135"/><text x="84.1202%" y="879.50"></text></g><g><title>__x64_sys_openat (81,093 samples, 12.60%)</title><rect x="71.2960%" y="885" width="12.6011%" height="15" fill="rgb(245,184,46)" fg:x="458816" fg:w="81093"/><text x="71.5460%" y="895.50">__x64_sys_openat</text></g><g><title>__f_unlock_pos (65 samples, 0.01%)</title><rect x="83.9021%" y="869" width="0.0101%" height="15" fill="rgb(253,73,16)" fg:x="539941" fg:w="65"/><text x="84.1521%" y="879.50"></text></g><g><title>__fdget_pos (117 samples, 0.02%)</title><rect x="83.9122%" y="869" width="0.0182%" height="15" fill="rgb(206,94,45)" fg:x="540006" fg:w="117"/><text x="84.1622%" y="879.50"></text></g><g><title>__cond_resched (98 samples, 0.02%)</title><rect x="84.0833%" y="837" width="0.0152%" height="15" fill="rgb(236,83,27)" fg:x="541107" fg:w="98"/><text x="84.3333%" y="847.50"></text></g><g><title>__fget_files (1,366 samples, 0.21%)</title><rect x="84.1103%" y="821" width="0.2123%" height="15" fill="rgb(220,196,8)" fg:x="541281" fg:w="1366"/><text x="84.3603%" y="831.50"></text></g><g><title>__fget_light (1,445 samples, 0.22%)</title><rect x="84.1038%" y="837" width="0.2245%" height="15" fill="rgb(254,185,14)" fg:x="541239" fg:w="1445"/><text x="84.3538%" y="847.50"></text></g><g><title>__cond_resched (122 samples, 0.02%)</title><rect x="84.4463%" y="821" width="0.0190%" height="15" fill="rgb(226,50,22)" fg:x="543443" fg:w="122"/><text x="84.6963%" y="831.50"></text></g><g><title>__fdget_pos (2,859 samples, 0.44%)</title><rect x="84.0314%" y="853" width="0.4443%" height="15" fill="rgb(253,147,0)" fg:x="540773" fg:w="2859"/><text x="84.2814%" y="863.50"></text></g><g><title>mutex_lock (945 samples, 0.15%)</title><rect x="84.3288%" y="837" width="0.1468%" height="15" fill="rgb(252,46,33)" fg:x="542687" fg:w="945"/><text x="84.5788%" y="847.50"></text></g><g><title>__fget_light (415 samples, 0.06%)</title><rect x="84.4756%" y="853" width="0.0645%" height="15" fill="rgb(242,22,54)" fg:x="543632" fg:w="415"/><text x="84.7256%" y="863.50"></text></g><g><title>__fsnotify_parent (235 samples, 0.04%)</title><rect x="84.5401%" y="853" width="0.0365%" height="15" fill="rgb(223,178,32)" fg:x="544047" fg:w="235"/><text x="84.7901%" y="863.50"></text></g><g><title>fput_many (826 samples, 0.13%)</title><rect x="84.5853%" y="853" width="0.1284%" height="15" fill="rgb(214,106,53)" fg:x="544338" fg:w="826"/><text x="84.8353%" y="863.50"></text></g><g><title>mutex_unlock (796 samples, 0.12%)</title><rect x="84.7210%" y="853" width="0.1237%" height="15" fill="rgb(232,65,50)" fg:x="545211" fg:w="796"/><text x="84.9710%" y="863.50"></text></g><g><title>new_sync_read (120 samples, 0.02%)</title><rect x="84.8447%" y="853" width="0.0186%" height="15" fill="rgb(231,110,28)" fg:x="546007" fg:w="120"/><text x="85.0947%" y="863.50"></text></g><g><title>rw_verify_area (249 samples, 0.04%)</title><rect x="84.8633%" y="853" width="0.0387%" height="15" fill="rgb(216,71,40)" fg:x="546127" fg:w="249"/><text x="85.1133%" y="863.50"></text></g><g><title>__fsnotify_parent (615 samples, 0.10%)</title><rect x="85.1617%" y="837" width="0.0956%" height="15" fill="rgb(229,89,53)" fg:x="548047" fg:w="615"/><text x="85.4117%" y="847.50"></text></g><g><title>btrfs_file_read_iter (118 samples, 0.02%)</title><rect x="85.2591%" y="837" width="0.0183%" height="15" fill="rgb(210,124,14)" fg:x="548674" fg:w="118"/><text x="85.5091%" y="847.50"></text></g><g><title>iov_iter_init (208 samples, 0.03%)</title><rect x="85.2775%" y="837" width="0.0323%" height="15" fill="rgb(236,213,6)" fg:x="548792" fg:w="208"/><text x="85.5275%" y="847.50"></text></g><g><title>__cond_resched (85 samples, 0.01%)</title><rect x="85.5455%" y="805" width="0.0132%" height="15" fill="rgb(228,41,5)" fg:x="550517" fg:w="85"/><text x="85.7955%" y="815.50"></text></g><g><title>copy_page_to_iter (140 samples, 0.02%)</title><rect x="85.5595%" y="805" width="0.0218%" height="15" fill="rgb(221,167,25)" fg:x="550607" fg:w="140"/><text x="85.8095%" y="815.50"></text></g><g><title>filemap_get_pages (274 samples, 0.04%)</title><rect x="85.5812%" y="805" width="0.0426%" height="15" fill="rgb(228,144,37)" fg:x="550747" fg:w="274"/><text x="85.8312%" y="815.50"></text></g><g><title>__schedule (68 samples, 0.01%)</title><rect x="86.2948%" y="773" width="0.0106%" height="15" fill="rgb(227,189,38)" fg:x="555339" fg:w="68"/><text x="86.5448%" y="783.50"></text></g><g><title>__cond_resched (293 samples, 0.05%)</title><rect x="86.2600%" y="789" width="0.0455%" height="15" fill="rgb(218,8,2)" fg:x="555115" fg:w="293"/><text x="86.5100%" y="799.50"></text></g><g><title>__cond_resched (148 samples, 0.02%)</title><rect x="86.5986%" y="773" width="0.0230%" height="15" fill="rgb(209,61,28)" fg:x="557294" fg:w="148"/><text x="86.8486%" y="783.50"></text></g><g><title>copy_page_to_iter (2,050 samples, 0.32%)</title><rect x="86.3170%" y="789" width="0.3186%" height="15" fill="rgb(233,140,39)" fg:x="555482" fg:w="2050"/><text x="86.5670%" y="799.50"></text></g><g><title>rcu_all_qs (80 samples, 0.01%)</title><rect x="86.6231%" y="773" width="0.0124%" height="15" fill="rgb(251,66,48)" fg:x="557452" fg:w="80"/><text x="86.8731%" y="783.50"></text></g><g><title>copy_user_enhanced_fast_string (6,997 samples, 1.09%)</title><rect x="86.6356%" y="789" width="1.0873%" height="15" fill="rgb(210,44,45)" fg:x="557532" fg:w="6997"/><text x="86.8856%" y="799.50"></text></g><g><title>copy_user_generic_unrolled (83 samples, 0.01%)</title><rect x="87.7229%" y="789" width="0.0129%" height="15" fill="rgb(214,136,46)" fg:x="564529" fg:w="83"/><text x="87.9729%" y="799.50"></text></g><g><title>__xas_next (75 samples, 0.01%)</title><rect x="88.5433%" y="757" width="0.0117%" height="15" fill="rgb(207,130,50)" fg:x="569809" fg:w="75"/><text x="88.7933%" y="767.50"></text></g><g><title>xas_load (1,279 samples, 0.20%)</title><rect x="88.5599%" y="757" width="0.1987%" height="15" fill="rgb(228,102,49)" fg:x="569916" fg:w="1279"/><text x="88.8099%" y="767.50"></text></g><g><title>xas_start (790 samples, 0.12%)</title><rect x="88.6359%" y="741" width="0.1228%" height="15" fill="rgb(253,55,1)" fg:x="570405" fg:w="790"/><text x="88.8859%" y="751.50"></text></g><g><title>filemap_get_read_batch (5,311 samples, 0.83%)</title><rect x="87.9474%" y="773" width="0.8253%" height="15" fill="rgb(238,222,9)" fg:x="565974" fg:w="5311"/><text x="88.1974%" y="783.50"></text></g><g><title>xas_start (90 samples, 0.01%)</title><rect x="88.7587%" y="757" width="0.0140%" height="15" fill="rgb(246,99,6)" fg:x="571195" fg:w="90"/><text x="89.0087%" y="767.50"></text></g><g><title>rcu_read_unlock_strict (172 samples, 0.03%)</title><rect x="88.7727%" y="773" width="0.0267%" height="15" fill="rgb(219,110,26)" fg:x="571285" fg:w="172"/><text x="89.0227%" y="783.50"></text></g><g><title>filemap_get_pages (6,908 samples, 1.07%)</title><rect x="87.7357%" y="789" width="1.0734%" height="15" fill="rgb(239,160,33)" fg:x="564612" fg:w="6908"/><text x="87.9857%" y="799.50"></text></g><g><title>filemap_get_read_batch (124 samples, 0.02%)</title><rect x="88.8092%" y="789" width="0.0193%" height="15" fill="rgb(220,202,23)" fg:x="571520" fg:w="124"/><text x="89.0592%" y="799.50"></text></g><g><title>mark_page_accessed (179 samples, 0.03%)</title><rect x="88.8285%" y="789" width="0.0278%" height="15" fill="rgb(208,80,26)" fg:x="571644" fg:w="179"/><text x="89.0785%" y="799.50"></text></g><g><title>rcu_all_qs (67 samples, 0.01%)</title><rect x="88.8563%" y="789" width="0.0104%" height="15" fill="rgb(243,85,7)" fg:x="571823" fg:w="67"/><text x="89.1063%" y="799.50"></text></g><g><title>current_time (930 samples, 0.14%)</title><rect x="89.0177%" y="757" width="0.1445%" height="15" fill="rgb(228,77,47)" fg:x="572862" fg:w="930"/><text x="89.2677%" y="767.50"></text></g><g><title>ktime_get_coarse_real_ts64 (304 samples, 0.05%)</title><rect x="89.1150%" y="741" width="0.0472%" height="15" fill="rgb(212,226,8)" fg:x="573488" fg:w="304"/><text x="89.3650%" y="751.50"></text></g><g><title>atime_needs_update (1,684 samples, 0.26%)</title><rect x="88.9136%" y="773" width="0.2617%" height="15" fill="rgb(241,120,54)" fg:x="572192" fg:w="1684"/><text x="89.1636%" y="783.50"></text></g><g><title>ktime_get_coarse_real_ts64 (84 samples, 0.01%)</title><rect x="89.1622%" y="757" width="0.0131%" height="15" fill="rgb(226,80,16)" fg:x="573792" fg:w="84"/><text x="89.4122%" y="767.50"></text></g><g><title>filemap_read (22,970 samples, 3.57%)</title><rect x="85.6238%" y="805" width="3.5693%" height="15" fill="rgb(240,76,13)" fg:x="551021" fg:w="22970"/><text x="85.8738%" y="815.50">file..</text></g><g><title>touch_atime (2,101 samples, 0.33%)</title><rect x="88.8667%" y="789" width="0.3265%" height="15" fill="rgb(252,74,8)" fg:x="571890" fg:w="2101"/><text x="89.1167%" y="799.50"></text></g><g><title>current_time (115 samples, 0.02%)</title><rect x="89.1753%" y="773" width="0.0179%" height="15" fill="rgb(244,155,2)" fg:x="573876" fg:w="115"/><text x="89.4253%" y="783.50"></text></g><g><title>mark_page_accessed (66 samples, 0.01%)</title><rect x="89.1932%" y="805" width="0.0103%" height="15" fill="rgb(215,81,35)" fg:x="573991" fg:w="66"/><text x="89.4432%" y="815.50"></text></g><g><title>btrfs_file_read_iter (23,734 samples, 3.69%)</title><rect x="85.5217%" y="821" width="3.6881%" height="15" fill="rgb(206,55,2)" fg:x="550364" fg:w="23734"/><text x="85.7717%" y="831.50">btrf..</text></g><g><title>filemap_read (166 samples, 0.03%)</title><rect x="89.2098%" y="821" width="0.0258%" height="15" fill="rgb(231,2,34)" fg:x="574098" fg:w="166"/><text x="89.4598%" y="831.50"></text></g><g><title>asm_exc_page_fault (207 samples, 0.03%)</title><rect x="89.2381%" y="757" width="0.0322%" height="15" fill="rgb(242,176,48)" fg:x="574280" fg:w="207"/><text x="89.4881%" y="767.50"></text></g><g><title>get_page_from_freelist (69 samples, 0.01%)</title><rect x="89.3005%" y="597" width="0.0107%" height="15" fill="rgb(249,31,36)" fg:x="574682" fg:w="69"/><text x="89.5505%" y="607.50"></text></g><g><title>__alloc_pages (81 samples, 0.01%)</title><rect x="89.2988%" y="613" width="0.0126%" height="15" fill="rgb(205,18,17)" fg:x="574671" fg:w="81"/><text x="89.5488%" y="623.50"></text></g><g><title>alloc_pages_vma (88 samples, 0.01%)</title><rect x="89.2979%" y="629" width="0.0137%" height="15" fill="rgb(254,130,5)" fg:x="574665" fg:w="88"/><text x="89.5479%" y="639.50"></text></g><g><title>do_anonymous_page (179 samples, 0.03%)</title><rect x="89.2907%" y="645" width="0.0278%" height="15" fill="rgb(229,42,45)" fg:x="574619" fg:w="179"/><text x="89.5407%" y="655.50"></text></g><g><title>handle_pte_fault (190 samples, 0.03%)</title><rect x="89.2895%" y="661" width="0.0295%" height="15" fill="rgb(245,95,25)" fg:x="574611" fg:w="190"/><text x="89.5395%" y="671.50"></text></g><g><title>__handle_mm_fault (200 samples, 0.03%)</title><rect x="89.2884%" y="677" width="0.0311%" height="15" fill="rgb(249,193,38)" fg:x="574604" fg:w="200"/><text x="89.5384%" y="687.50"></text></g><g><title>handle_mm_fault (213 samples, 0.03%)</title><rect x="89.2869%" y="693" width="0.0331%" height="15" fill="rgb(241,140,43)" fg:x="574594" fg:w="213"/><text x="89.5369%" y="703.50"></text></g><g><title>do_user_addr_fault (227 samples, 0.04%)</title><rect x="89.2850%" y="709" width="0.0353%" height="15" fill="rgb(245,78,48)" fg:x="574582" fg:w="227"/><text x="89.5350%" y="719.50"></text></g><g><title>copy_user_enhanced_fast_string (318 samples, 0.05%)</title><rect x="89.2716%" y="757" width="0.0494%" height="15" fill="rgb(214,92,39)" fg:x="574496" fg:w="318"/><text x="89.5216%" y="767.50"></text></g><g><title>asm_exc_page_fault (237 samples, 0.04%)</title><rect x="89.2842%" y="741" width="0.0368%" height="15" fill="rgb(211,189,14)" fg:x="574577" fg:w="237"/><text x="89.5342%" y="751.50"></text></g><g><title>exc_page_fault (237 samples, 0.04%)</title><rect x="89.2842%" y="725" width="0.0368%" height="15" fill="rgb(218,7,24)" fg:x="574577" fg:w="237"/><text x="89.5342%" y="735.50"></text></g><g><title>generic_file_read_iter (582 samples, 0.09%)</title><rect x="89.2361%" y="789" width="0.0904%" height="15" fill="rgb(224,200,49)" fg:x="574267" fg:w="582"/><text x="89.4861%" y="799.50"></text></g><g><title>filemap_read (581 samples, 0.09%)</title><rect x="89.2362%" y="773" width="0.0903%" height="15" fill="rgb(218,210,14)" fg:x="574268" fg:w="581"/><text x="89.4862%" y="783.50"></text></g><g><title>new_sync_read (25,852 samples, 4.02%)</title><rect x="85.3098%" y="837" width="4.0172%" height="15" fill="rgb(234,142,31)" fg:x="549000" fg:w="25852"/><text x="85.5598%" y="847.50">new_..</text></g><g><title>xfs_file_read_iter (587 samples, 0.09%)</title><rect x="89.2357%" y="821" width="0.0912%" height="15" fill="rgb(227,165,2)" fg:x="574265" fg:w="587"/><text x="89.4857%" y="831.50"></text></g><g><title>xfs_file_buffered_read (585 samples, 0.09%)</title><rect x="89.2361%" y="805" width="0.0909%" height="15" fill="rgb(232,44,46)" fg:x="574267" fg:w="585"/><text x="89.4861%" y="815.50"></text></g><g><title>apparmor_file_permission (173 samples, 0.03%)</title><rect x="89.3361%" y="821" width="0.0269%" height="15" fill="rgb(236,149,47)" fg:x="574911" fg:w="173"/><text x="89.5861%" y="831.50"></text></g><g><title>fsnotify_perm.part.0 (163 samples, 0.03%)</title><rect x="89.3630%" y="821" width="0.0253%" height="15" fill="rgb(227,45,31)" fg:x="575084" fg:w="163"/><text x="89.6130%" y="831.50"></text></g><g><title>pinnedhook_security_file_permission (113 samples, 0.02%)</title><rect x="89.3883%" y="821" width="0.0176%" height="15" fill="rgb(240,176,51)" fg:x="575247" fg:w="113"/><text x="89.6383%" y="831.50"></text></g><g><title>__fsnotify_parent (284 samples, 0.04%)</title><rect x="89.5128%" y="805" width="0.0441%" height="15" fill="rgb(249,146,41)" fg:x="576048" fg:w="284"/><text x="89.7628%" y="815.50"></text></g><g><title>acquire_rundown (145 samples, 0.02%)</title><rect x="89.5663%" y="805" width="0.0225%" height="15" fill="rgb(213,208,4)" fg:x="576392" fg:w="145"/><text x="89.8163%" y="815.50"></text></g><g><title>aa_file_perm (437 samples, 0.07%)</title><rect x="89.7756%" y="789" width="0.0679%" height="15" fill="rgb(245,84,36)" fg:x="577739" fg:w="437"/><text x="90.0256%" y="799.50"></text></g><g><title>apparmor_file_permission (1,690 samples, 0.26%)</title><rect x="89.5888%" y="805" width="0.2626%" height="15" fill="rgb(254,84,18)" fg:x="576537" fg:w="1690"/><text x="89.8388%" y="815.50"></text></g><g><title>cshook_security_file_permission (155 samples, 0.02%)</title><rect x="89.8523%" y="805" width="0.0241%" height="15" fill="rgb(225,38,54)" fg:x="578233" fg:w="155"/><text x="90.1023%" y="815.50"></text></g><g><title>__fsnotify_parent (780 samples, 0.12%)</title><rect x="90.0023%" y="789" width="0.1212%" height="15" fill="rgb(246,50,30)" fg:x="579198" fg:w="780"/><text x="90.2523%" y="799.50"></text></g><g><title>fsnotify_perm.part.0 (1,592 samples, 0.25%)</title><rect x="89.8764%" y="805" width="0.2474%" height="15" fill="rgb(246,148,9)" fg:x="578388" fg:w="1592"/><text x="90.1264%" y="815.50"></text></g><g><title>[[falcon_kal]] (467 samples, 0.07%)</title><rect x="90.1490%" y="789" width="0.0726%" height="15" fill="rgb(223,75,4)" fg:x="580142" fg:w="467"/><text x="90.3990%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (184 samples, 0.03%)</title><rect x="90.2228%" y="789" width="0.0286%" height="15" fill="rgb(239,148,41)" fg:x="580617" fg:w="184"/><text x="90.4728%" y="799.50"></text></g><g><title>[[falcon_kal]] (384 samples, 0.06%)</title><rect x="90.2983%" y="773" width="0.0597%" height="15" fill="rgb(205,195,3)" fg:x="581103" fg:w="384"/><text x="90.5483%" y="783.50"></text></g><g><title>[[falcon_kal]] (338 samples, 0.05%)</title><rect x="90.3968%" y="757" width="0.0525%" height="15" fill="rgb(254,161,1)" fg:x="581737" fg:w="338"/><text x="90.6468%" y="767.50"></text></g><g><title>cshook_security_file_permission (1,275 samples, 0.20%)</title><rect x="90.2514%" y="789" width="0.1981%" height="15" fill="rgb(211,229,8)" fg:x="580801" fg:w="1275"/><text x="90.5014%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (573 samples, 0.09%)</title><rect x="90.3605%" y="773" width="0.0890%" height="15" fill="rgb(220,97,9)" fg:x="581503" fg:w="573"/><text x="90.6105%" y="783.50"></text></g><g><title>pinnedhook_security_file_permission (2,097 samples, 0.33%)</title><rect x="90.1238%" y="805" width="0.3259%" height="15" fill="rgb(240,218,8)" fg:x="579980" fg:w="2097"/><text x="90.3738%" y="815.50"></text></g><g><title>rw_verify_area (7,527 samples, 1.17%)</title><rect x="89.3270%" y="837" width="1.1696%" height="15" fill="rgb(250,44,0)" fg:x="574852" fg:w="7527"/><text x="89.5770%" y="847.50"></text></g><g><title>security_file_permission (7,019 samples, 1.09%)</title><rect x="89.4059%" y="821" width="1.0907%" height="15" fill="rgb(236,41,53)" fg:x="575360" fg:w="7019"/><text x="89.6559%" y="831.50"></text></g><g><title>release_rundown (302 samples, 0.05%)</title><rect x="90.4497%" y="805" width="0.0469%" height="15" fill="rgb(218,227,13)" fg:x="582077" fg:w="302"/><text x="90.6997%" y="815.50"></text></g><g><title>security_file_permission (188 samples, 0.03%)</title><rect x="90.4966%" y="837" width="0.0292%" height="15" fill="rgb(217,94,32)" fg:x="582379" fg:w="188"/><text x="90.7466%" y="847.50"></text></g><g><title>ksys_read (42,403 samples, 6.59%)</title><rect x="83.9369%" y="869" width="6.5891%" height="15" fill="rgb(213,217,12)" fg:x="540165" fg:w="42403"/><text x="84.1869%" y="879.50">ksys_read</text></g><g><title>vfs_read (36,191 samples, 5.62%)</title><rect x="84.9022%" y="853" width="5.6238%" height="15" fill="rgb(229,13,46)" fg:x="546377" fg:w="36191"/><text x="85.1522%" y="863.50">vfs_read</text></g><g><title>__x64_sys_read (42,709 samples, 6.64%)</title><rect x="83.9013%" y="885" width="6.6366%" height="15" fill="rgb(243,139,5)" fg:x="539936" fg:w="42709"/><text x="84.1513%" y="895.50">__x64_sys..</text></g><g><title>vfs_read (77 samples, 0.01%)</title><rect x="90.5260%" y="869" width="0.0120%" height="15" fill="rgb(249,38,45)" fg:x="582568" fg:w="77"/><text x="90.7760%" y="879.50"></text></g><g><title>btrfs_search_slot (186 samples, 0.03%)</title><rect x="90.5904%" y="645" width="0.0289%" height="15" fill="rgb(216,70,11)" fg:x="582983" fg:w="186"/><text x="90.8404%" y="655.50"></text></g><g><title>overwrite_item (342 samples, 0.05%)</title><rect x="90.5779%" y="661" width="0.0531%" height="15" fill="rgb(253,101,25)" fg:x="582902" fg:w="342"/><text x="90.8279%" y="671.50"></text></g><g><title>copy_inode_items_to_log (480 samples, 0.07%)</title><rect x="90.5587%" y="741" width="0.0746%" height="15" fill="rgb(207,197,30)" fg:x="582779" fg:w="480"/><text x="90.8087%" y="751.50"></text></g><g><title>log_conflicting_inodes (437 samples, 0.07%)</title><rect x="90.5654%" y="725" width="0.0679%" height="15" fill="rgb(238,87,13)" fg:x="582822" fg:w="437"/><text x="90.8154%" y="735.50"></text></g><g><title>btrfs_log_inode (432 samples, 0.07%)</title><rect x="90.5662%" y="709" width="0.0671%" height="15" fill="rgb(215,155,8)" fg:x="582827" fg:w="432"/><text x="90.8162%" y="719.50"></text></g><g><title>log_directory_changes (423 samples, 0.07%)</title><rect x="90.5676%" y="693" width="0.0657%" height="15" fill="rgb(239,166,38)" fg:x="582836" fg:w="423"/><text x="90.8176%" y="703.50"></text></g><g><title>log_dir_items (423 samples, 0.07%)</title><rect x="90.5676%" y="677" width="0.0657%" height="15" fill="rgb(240,194,35)" fg:x="582836" fg:w="423"/><text x="90.8176%" y="687.50"></text></g><g><title>log_all_new_ancestors (543 samples, 0.08%)</title><rect x="90.5524%" y="773" width="0.0844%" height="15" fill="rgb(219,10,44)" fg:x="582738" fg:w="543"/><text x="90.8024%" y="783.50"></text></g><g><title>btrfs_log_inode (543 samples, 0.08%)</title><rect x="90.5524%" y="757" width="0.0844%" height="15" fill="rgb(251,220,35)" fg:x="582738" fg:w="543"/><text x="90.8024%" y="767.50"></text></g><g><title>btrfs_log_inode_parent (564 samples, 0.09%)</title><rect x="90.5493%" y="789" width="0.0876%" height="15" fill="rgb(218,117,13)" fg:x="582718" fg:w="564"/><text x="90.7993%" y="799.50"></text></g><g><title>btrfs_log_new_name (565 samples, 0.09%)</title><rect x="90.5493%" y="805" width="0.0878%" height="15" fill="rgb(221,213,40)" fg:x="582718" fg:w="565"/><text x="90.7993%" y="815.50"></text></g><g><title>btrfs_rename (636 samples, 0.10%)</title><rect x="90.5385%" y="821" width="0.0988%" height="15" fill="rgb(251,224,35)" fg:x="582649" fg:w="636"/><text x="90.7885%" y="831.50"></text></g><g><title>btrfs_rename2 (638 samples, 0.10%)</title><rect x="90.5384%" y="837" width="0.0991%" height="15" fill="rgb(241,33,39)" fg:x="582648" fg:w="638"/><text x="90.7884%" y="847.50"></text></g><g><title>do_renameat2 (644 samples, 0.10%)</title><rect x="90.5379%" y="869" width="0.1001%" height="15" fill="rgb(222,74,17)" fg:x="582645" fg:w="644"/><text x="90.7879%" y="879.50"></text></g><g><title>vfs_rename (641 samples, 0.10%)</title><rect x="90.5384%" y="853" width="0.0996%" height="15" fill="rgb(225,103,0)" fg:x="582648" fg:w="641"/><text x="90.7884%" y="863.50"></text></g><g><title>__x64_sys_rename (645 samples, 0.10%)</title><rect x="90.5379%" y="885" width="0.1002%" height="15" fill="rgb(240,0,12)" fg:x="582645" fg:w="645"/><text x="90.7879%" y="895.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (119 samples, 0.02%)</title><rect x="90.6548%" y="885" width="0.0185%" height="15" fill="rgb(233,213,37)" fg:x="583397" fg:w="119"/><text x="90.9048%" y="895.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (265 samples, 0.04%)</title><rect x="90.6733%" y="885" width="0.0412%" height="15" fill="rgb(225,84,52)" fg:x="583516" fg:w="265"/><text x="90.9233%" y="895.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (65 samples, 0.01%)</title><rect x="90.7391%" y="869" width="0.0101%" height="15" fill="rgb(247,160,51)" fg:x="583940" fg:w="65"/><text x="90.9891%" y="879.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (402 samples, 0.06%)</title><rect x="90.7492%" y="869" width="0.0625%" height="15" fill="rgb(244,60,51)" fg:x="584005" fg:w="402"/><text x="90.9992%" y="879.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (100 samples, 0.02%)</title><rect x="90.7962%" y="853" width="0.0155%" height="15" fill="rgb(233,114,7)" fg:x="584307" fg:w="100"/><text x="91.0462%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_close (659 samples, 0.10%)</title><rect x="90.7169%" y="885" width="0.1024%" height="15" fill="rgb(246,136,16)" fg:x="583797" fg:w="659"/><text x="90.9669%" y="895.50"></text></g><g><title>cshook_systemcalltable_post_open (79 samples, 0.01%)</title><rect x="90.8240%" y="885" width="0.0123%" height="15" fill="rgb(243,114,45)" fg:x="584486" fg:w="79"/><text x="91.0740%" y="895.50"></text></g><g><title>[[falcon_kal]] (70 samples, 0.01%)</title><rect x="90.8956%" y="869" width="0.0109%" height="15" fill="rgb(247,183,43)" fg:x="584947" fg:w="70"/><text x="91.1456%" y="879.50"></text></g><g><title>_ZdlPv (82 samples, 0.01%)</title><rect x="90.9065%" y="869" width="0.0127%" height="15" fill="rgb(251,210,42)" fg:x="585017" fg:w="82"/><text x="91.1565%" y="879.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (72 samples, 0.01%)</title><rect x="90.9724%" y="853" width="0.0112%" height="15" fill="rgb(221,88,35)" fg:x="585441" fg:w="72"/><text x="91.2224%" y="863.50"></text></g><g><title>__fget_files (279 samples, 0.04%)</title><rect x="91.0145%" y="805" width="0.0434%" height="15" fill="rgb(242,21,20)" fg:x="585712" fg:w="279"/><text x="91.2645%" y="815.50"></text></g><g><title>fget (285 samples, 0.04%)</title><rect x="91.0145%" y="821" width="0.0443%" height="15" fill="rgb(233,226,36)" fg:x="585712" fg:w="285"/><text x="91.2645%" y="831.50"></text></g><g><title>[[falcon_kal]] (452 samples, 0.07%)</title><rect x="91.0078%" y="837" width="0.0702%" height="15" fill="rgb(243,189,34)" fg:x="585669" fg:w="452"/><text x="91.2578%" y="847.50"></text></g><g><title>fput_many (121 samples, 0.02%)</title><rect x="91.0593%" y="821" width="0.0188%" height="15" fill="rgb(207,145,50)" fg:x="586000" fg:w="121"/><text x="91.3093%" y="831.50"></text></g><g><title>[[falcon_kal]] (428 samples, 0.07%)</title><rect x="91.1200%" y="805" width="0.0665%" height="15" fill="rgb(242,1,50)" fg:x="586391" fg:w="428"/><text x="91.3700%" y="815.50"></text></g><g><title>down_read (403 samples, 0.06%)</title><rect x="91.1239%" y="789" width="0.0626%" height="15" fill="rgb(231,65,32)" fg:x="586416" fg:w="403"/><text x="91.3739%" y="799.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (138 samples, 0.02%)</title><rect x="91.1871%" y="805" width="0.0214%" height="15" fill="rgb(208,68,49)" fg:x="586823" fg:w="138"/><text x="91.4371%" y="815.50"></text></g><g><title>up_read (123 samples, 0.02%)</title><rect x="91.1895%" y="789" width="0.0191%" height="15" fill="rgb(253,54,49)" fg:x="586838" fg:w="123"/><text x="91.4395%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (826 samples, 0.13%)</title><rect x="91.0812%" y="837" width="0.1284%" height="15" fill="rgb(245,186,24)" fg:x="586141" fg:w="826"/><text x="91.3312%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (594 samples, 0.09%)</title><rect x="91.1172%" y="821" width="0.0923%" height="15" fill="rgb(209,2,41)" fg:x="586373" fg:w="594"/><text x="91.3672%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (223 samples, 0.03%)</title><rect x="91.2423%" y="805" width="0.0347%" height="15" fill="rgb(242,208,54)" fg:x="587178" fg:w="223"/><text x="91.4923%" y="815.50"></text></g><g><title>[[falcon_kal]] (2,306 samples, 0.36%)</title><rect x="91.3618%" y="789" width="0.3583%" height="15" fill="rgb(225,9,51)" fg:x="587947" fg:w="2306"/><text x="91.6118%" y="799.50"></text></g><g><title>down_read (2,255 samples, 0.35%)</title><rect x="91.3697%" y="773" width="0.3504%" height="15" fill="rgb(207,207,25)" fg:x="587998" fg:w="2255"/><text x="91.6197%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (3,581 samples, 0.56%)</title><rect x="91.2098%" y="821" width="0.5565%" height="15" fill="rgb(253,96,18)" fg:x="586969" fg:w="3581"/><text x="91.4598%" y="831.50"></text></g><g><title>cshook_security_inode_free_security (3,149 samples, 0.49%)</title><rect x="91.2770%" y="805" width="0.4893%" height="15" fill="rgb(252,215,20)" fg:x="587401" fg:w="3149"/><text x="91.5270%" y="815.50"></text></g><g><title>up_read (263 samples, 0.04%)</title><rect x="91.7254%" y="789" width="0.0409%" height="15" fill="rgb(245,227,26)" fg:x="590287" fg:w="263"/><text x="91.9754%" y="799.50"></text></g><g><title>cshook_security_file_free_security (3,885 samples, 0.60%)</title><rect x="91.2095%" y="837" width="0.6037%" height="15" fill="rgb(241,208,0)" fg:x="586967" fg:w="3885"/><text x="91.4595%" y="847.50"></text></g><g><title>cshook_security_inode_free_security (302 samples, 0.05%)</title><rect x="91.7663%" y="821" width="0.0469%" height="15" fill="rgb(224,130,10)" fg:x="590550" fg:w="302"/><text x="92.0163%" y="831.50"></text></g><g><title>cshook_security_file_free_security (5,687 samples, 0.88%)</title><rect x="90.9374%" y="869" width="0.8837%" height="15" fill="rgb(237,29,0)" fg:x="585216" fg:w="5687"/><text x="91.1874%" y="879.50"></text></g><g><title>cshook_security_file_free_security (5,390 samples, 0.84%)</title><rect x="90.9836%" y="853" width="0.8376%" height="15" fill="rgb(219,27,41)" fg:x="585513" fg:w="5390"/><text x="91.2336%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (192 samples, 0.03%)</title><rect x="91.8211%" y="869" width="0.0298%" height="15" fill="rgb(245,101,19)" fg:x="590903" fg:w="192"/><text x="92.0711%" y="879.50"></text></g><g><title>__fget_files (203 samples, 0.03%)</title><rect x="92.0433%" y="821" width="0.0315%" height="15" fill="rgb(243,44,37)" fg:x="592333" fg:w="203"/><text x="92.2933%" y="831.50"></text></g><g><title>fget (210 samples, 0.03%)</title><rect x="92.0432%" y="837" width="0.0326%" height="15" fill="rgb(228,213,43)" fg:x="592332" fg:w="210"/><text x="92.2932%" y="847.50"></text></g><g><title>[[falcon_kal]] (1,164 samples, 0.18%)</title><rect x="91.9153%" y="853" width="0.1809%" height="15" fill="rgb(219,163,21)" fg:x="591509" fg:w="1164"/><text x="92.1653%" y="863.50"></text></g><g><title>fput_many (128 samples, 0.02%)</title><rect x="92.0763%" y="837" width="0.0199%" height="15" fill="rgb(234,86,24)" fg:x="592545" fg:w="128"/><text x="92.3263%" y="847.50"></text></g><g><title>_raw_spin_lock_irqsave (395 samples, 0.06%)</title><rect x="92.4413%" y="773" width="0.0614%" height="15" fill="rgb(225,10,24)" fg:x="594894" fg:w="395"/><text x="92.6913%" y="783.50"></text></g><g><title>complete (430 samples, 0.07%)</title><rect x="92.4360%" y="789" width="0.0668%" height="15" fill="rgb(218,109,7)" fg:x="594860" fg:w="430"/><text x="92.6860%" y="799.50"></text></g><g><title>[[falcon_kal]] (470 samples, 0.07%)</title><rect x="92.4309%" y="805" width="0.0730%" height="15" fill="rgb(210,20,26)" fg:x="594827" fg:w="470"/><text x="92.6809%" y="815.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.02%)</title><rect x="92.5537%" y="709" width="0.0155%" height="15" fill="rgb(216,18,1)" fg:x="595617" fg:w="100"/><text x="92.8037%" y="719.50"></text></g><g><title>x86_pmu_enable (99 samples, 0.02%)</title><rect x="92.5538%" y="693" width="0.0154%" height="15" fill="rgb(206,163,23)" fg:x="595618" fg:w="99"/><text x="92.8038%" y="703.50"></text></g><g><title>intel_pmu_enable_all (98 samples, 0.02%)</title><rect x="92.5540%" y="677" width="0.0152%" height="15" fill="rgb(229,150,31)" fg:x="595619" fg:w="98"/><text x="92.8040%" y="687.50"></text></g><g><title>native_write_msr (98 samples, 0.02%)</title><rect x="92.5540%" y="661" width="0.0152%" height="15" fill="rgb(231,10,5)" fg:x="595619" fg:w="98"/><text x="92.8040%" y="671.50"></text></g><g><title>finish_task_switch.isra.0 (106 samples, 0.02%)</title><rect x="92.5530%" y="725" width="0.0165%" height="15" fill="rgb(250,40,50)" fg:x="595613" fg:w="106"/><text x="92.8030%" y="735.50"></text></g><g><title>__cond_resched (129 samples, 0.02%)</title><rect x="92.5513%" y="757" width="0.0200%" height="15" fill="rgb(217,119,7)" fg:x="595602" fg:w="129"/><text x="92.8013%" y="767.50"></text></g><g><title>__schedule (121 samples, 0.02%)</title><rect x="92.5526%" y="741" width="0.0188%" height="15" fill="rgb(245,214,40)" fg:x="595610" fg:w="121"/><text x="92.8026%" y="751.50"></text></g><g><title>[[falcon_kal]] (453 samples, 0.07%)</title><rect x="92.5089%" y="789" width="0.0704%" height="15" fill="rgb(216,187,1)" fg:x="595329" fg:w="453"/><text x="92.7589%" y="799.50"></text></g><g><title>mutex_lock (430 samples, 0.07%)</title><rect x="92.5125%" y="773" width="0.0668%" height="15" fill="rgb(237,146,21)" fg:x="595352" fg:w="430"/><text x="92.7625%" y="783.50"></text></g><g><title>_ZdlPv (2,366 samples, 0.37%)</title><rect x="92.2289%" y="837" width="0.3677%" height="15" fill="rgb(210,174,47)" fg:x="593527" fg:w="2366"/><text x="92.4789%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (1,498 samples, 0.23%)</title><rect x="92.3638%" y="821" width="0.2328%" height="15" fill="rgb(218,111,39)" fg:x="594395" fg:w="1498"/><text x="92.6138%" y="831.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (578 samples, 0.09%)</title><rect x="92.5067%" y="805" width="0.0898%" height="15" fill="rgb(224,95,19)" fg:x="595315" fg:w="578"/><text x="92.7567%" y="815.50"></text></g><g><title>mutex_unlock (106 samples, 0.02%)</title><rect x="92.5801%" y="789" width="0.0165%" height="15" fill="rgb(234,15,38)" fg:x="595787" fg:w="106"/><text x="92.8301%" y="799.50"></text></g><g><title>_raw_spin_lock_bh (251 samples, 0.04%)</title><rect x="92.5965%" y="837" width="0.0390%" height="15" fill="rgb(246,56,12)" fg:x="595893" fg:w="251"/><text x="92.8465%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (409 samples, 0.06%)</title><rect x="92.6371%" y="837" width="0.0636%" height="15" fill="rgb(247,16,17)" fg:x="596154" fg:w="409"/><text x="92.8871%" y="847.50"></text></g><g><title>_raw_spin_unlock_bh (80 samples, 0.01%)</title><rect x="92.6882%" y="821" width="0.0124%" height="15" fill="rgb(215,151,11)" fg:x="596483" fg:w="80"/><text x="92.9382%" y="831.50"></text></g><g><title>__local_bh_enable_ip (72 samples, 0.01%)</title><rect x="92.6895%" y="805" width="0.0112%" height="15" fill="rgb(225,16,24)" fg:x="596491" fg:w="72"/><text x="92.9395%" y="815.50"></text></g><g><title>[[falcon_kal]] (132 samples, 0.02%)</title><rect x="92.7205%" y="821" width="0.0205%" height="15" fill="rgb(217,117,5)" fg:x="596691" fg:w="132"/><text x="92.9705%" y="831.50"></text></g><g><title>kfree (126 samples, 0.02%)</title><rect x="92.7215%" y="805" width="0.0196%" height="15" fill="rgb(246,187,53)" fg:x="596697" fg:w="126"/><text x="92.9715%" y="815.50"></text></g><g><title>_ZdlPv (4,151 samples, 0.65%)</title><rect x="92.0962%" y="853" width="0.6450%" height="15" fill="rgb(241,71,40)" fg:x="592673" fg:w="4151"/><text x="92.3462%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (201 samples, 0.03%)</title><rect x="92.7100%" y="837" width="0.0312%" height="15" fill="rgb(231,67,39)" fg:x="596623" fg:w="201"/><text x="92.9600%" y="847.50"></text></g><g><title>kmalloc_slab (130 samples, 0.02%)</title><rect x="93.0445%" y="805" width="0.0202%" height="15" fill="rgb(222,120,24)" fg:x="598776" fg:w="130"/><text x="93.2945%" y="815.50"></text></g><g><title>__kmalloc (775 samples, 0.12%)</title><rect x="92.9530%" y="821" width="0.1204%" height="15" fill="rgb(248,3,3)" fg:x="598187" fg:w="775"/><text x="93.2030%" y="831.50"></text></g><g><title>copy_from_kernel_nofault (124 samples, 0.02%)</title><rect x="93.3830%" y="773" width="0.0193%" height="15" fill="rgb(228,218,5)" fg:x="600954" fg:w="124"/><text x="93.6330%" y="783.50"></text></g><g><title>copy_from_kernel_nofault (2,471 samples, 0.38%)</title><rect x="93.4366%" y="757" width="0.3840%" height="15" fill="rgb(212,202,43)" fg:x="601299" fg:w="2471"/><text x="93.6866%" y="767.50"></text></g><g><title>copy_from_kernel_nofault_allowed (644 samples, 0.10%)</title><rect x="93.7205%" y="741" width="0.1001%" height="15" fill="rgb(235,183,2)" fg:x="603126" fg:w="644"/><text x="93.9705%" y="751.50"></text></g><g><title>prepend (3,404 samples, 0.53%)</title><rect x="93.3284%" y="789" width="0.5290%" height="15" fill="rgb(230,165,10)" fg:x="600603" fg:w="3404"/><text x="93.5784%" y="799.50"></text></g><g><title>prepend_copy (2,929 samples, 0.46%)</title><rect x="93.4022%" y="773" width="0.4551%" height="15" fill="rgb(219,54,40)" fg:x="601078" fg:w="2929"/><text x="93.6522%" y="783.50"></text></g><g><title>copy_from_kernel_nofault_allowed (237 samples, 0.04%)</title><rect x="93.8206%" y="757" width="0.0368%" height="15" fill="rgb(244,73,9)" fg:x="603770" fg:w="237"/><text x="94.0706%" y="767.50"></text></g><g><title>prepend_copy (153 samples, 0.02%)</title><rect x="93.8574%" y="789" width="0.0238%" height="15" fill="rgb(212,32,45)" fg:x="604007" fg:w="153"/><text x="94.1074%" y="799.50"></text></g><g><title>prepend_path (5,041 samples, 0.78%)</title><rect x="93.0981%" y="805" width="0.7833%" height="15" fill="rgb(205,58,31)" fg:x="599121" fg:w="5041"/><text x="93.3481%" y="815.50"></text></g><g><title>d_path (5,231 samples, 0.81%)</title><rect x="93.0736%" y="821" width="0.8129%" height="15" fill="rgb(250,120,43)" fg:x="598963" fg:w="5231"/><text x="93.3236%" y="831.50"></text></g><g><title>memset_erms (167 samples, 0.03%)</title><rect x="93.8930%" y="821" width="0.0260%" height="15" fill="rgb(235,13,10)" fg:x="604236" fg:w="167"/><text x="94.1430%" y="831.50"></text></g><g><title>[[falcon_kal]] (6,426 samples, 1.00%)</title><rect x="92.9358%" y="837" width="0.9985%" height="15" fill="rgb(232,219,31)" fg:x="598076" fg:w="6426"/><text x="93.1858%" y="847.50"></text></g><g><title>__kmalloc (73 samples, 0.01%)</title><rect x="93.9343%" y="837" width="0.0113%" height="15" fill="rgb(218,157,51)" fg:x="604502" fg:w="73"/><text x="94.1843%" y="847.50"></text></g><g><title>get_any_partial (199 samples, 0.03%)</title><rect x="94.2720%" y="773" width="0.0309%" height="15" fill="rgb(211,91,52)" fg:x="606675" fg:w="199"/><text x="94.5220%" y="783.50"></text></g><g><title>get_partial_node.part.0 (241 samples, 0.04%)</title><rect x="94.3029%" y="773" width="0.0374%" height="15" fill="rgb(240,173,1)" fg:x="606874" fg:w="241"/><text x="94.5529%" y="783.50"></text></g><g><title>__cpuset_node_allowed (75 samples, 0.01%)</title><rect x="94.5046%" y="677" width="0.0117%" height="15" fill="rgb(248,20,47)" fg:x="608172" fg:w="75"/><text x="94.7546%" y="687.50"></text></g><g><title>__zone_watermark_ok (146 samples, 0.02%)</title><rect x="94.5162%" y="677" width="0.0227%" height="15" fill="rgb(217,221,40)" fg:x="608247" fg:w="146"/><text x="94.7662%" y="687.50"></text></g><g><title>clear_page_erms (105 samples, 0.02%)</title><rect x="94.5392%" y="677" width="0.0163%" height="15" fill="rgb(226,149,51)" fg:x="608395" fg:w="105"/><text x="94.7892%" y="687.50"></text></g><g><title>get_page_from_freelist (552 samples, 0.09%)</title><rect x="94.4810%" y="693" width="0.0858%" height="15" fill="rgb(252,193,7)" fg:x="608020" fg:w="552"/><text x="94.7310%" y="703.50"></text></g><g><title>rmqueue (69 samples, 0.01%)</title><rect x="94.5560%" y="677" width="0.0107%" height="15" fill="rgb(205,123,0)" fg:x="608503" fg:w="69"/><text x="94.8060%" y="687.50"></text></g><g><title>_raw_spin_lock (125 samples, 0.02%)</title><rect x="94.5918%" y="517" width="0.0194%" height="15" fill="rgb(233,173,25)" fg:x="608733" fg:w="125"/><text x="94.8418%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (125 samples, 0.02%)</title><rect x="94.5918%" y="501" width="0.0194%" height="15" fill="rgb(216,63,32)" fg:x="608733" fg:w="125"/><text x="94.8418%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (124 samples, 0.02%)</title><rect x="94.5919%" y="485" width="0.0193%" height="15" fill="rgb(209,56,45)" fg:x="608734" fg:w="124"/><text x="94.8419%" y="495.50"></text></g><g><title>__clear_extent_bit (185 samples, 0.03%)</title><rect x="94.5871%" y="533" width="0.0287%" height="15" fill="rgb(226,111,49)" fg:x="608703" fg:w="185"/><text x="94.8371%" y="543.50"></text></g><g><title>btrfs_releasepage (346 samples, 0.05%)</title><rect x="94.5854%" y="565" width="0.0538%" height="15" fill="rgb(244,181,21)" fg:x="608692" fg:w="346"/><text x="94.8354%" y="575.50"></text></g><g><title>try_release_extent_mapping (337 samples, 0.05%)</title><rect x="94.5868%" y="549" width="0.0524%" height="15" fill="rgb(222,126,15)" fg:x="608701" fg:w="337"/><text x="94.8368%" y="559.50"></text></g><g><title>test_range_bit (131 samples, 0.02%)</title><rect x="94.6188%" y="533" width="0.0204%" height="15" fill="rgb(222,95,17)" fg:x="608907" fg:w="131"/><text x="94.8688%" y="543.50"></text></g><g><title>_raw_spin_lock (112 samples, 0.02%)</title><rect x="94.6218%" y="517" width="0.0174%" height="15" fill="rgb(254,46,5)" fg:x="608926" fg:w="112"/><text x="94.8718%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (112 samples, 0.02%)</title><rect x="94.6218%" y="501" width="0.0174%" height="15" fill="rgb(236,216,35)" fg:x="608926" fg:w="112"/><text x="94.8718%" y="511.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (112 samples, 0.02%)</title><rect x="94.6218%" y="485" width="0.0174%" height="15" fill="rgb(217,187,26)" fg:x="608926" fg:w="112"/><text x="94.8718%" y="495.50"></text></g><g><title>shrink_page_list (440 samples, 0.07%)</title><rect x="94.5709%" y="597" width="0.0684%" height="15" fill="rgb(207,192,25)" fg:x="608599" fg:w="440"/><text x="94.8209%" y="607.50"></text></g><g><title>try_to_release_page (347 samples, 0.05%)</title><rect x="94.5854%" y="581" width="0.0539%" height="15" fill="rgb(253,135,27)" fg:x="608692" fg:w="347"/><text x="94.8354%" y="591.50"></text></g><g><title>shrink_lruvec (458 samples, 0.07%)</title><rect x="94.5689%" y="629" width="0.0712%" height="15" fill="rgb(211,122,29)" fg:x="608586" fg:w="458"/><text x="94.8189%" y="639.50"></text></g><g><title>shrink_inactive_list (457 samples, 0.07%)</title><rect x="94.5691%" y="613" width="0.0710%" height="15" fill="rgb(233,162,40)" fg:x="608587" fg:w="457"/><text x="94.8191%" y="623.50"></text></g><g><title>shrink_node_memcgs (504 samples, 0.08%)</title><rect x="94.5675%" y="645" width="0.0783%" height="15" fill="rgb(222,184,47)" fg:x="608577" fg:w="504"/><text x="94.8175%" y="655.50"></text></g><g><title>try_to_free_pages (507 samples, 0.08%)</title><rect x="94.5672%" y="693" width="0.0788%" height="15" fill="rgb(249,99,23)" fg:x="608575" fg:w="507"/><text x="94.8172%" y="703.50"></text></g><g><title>do_try_to_free_pages (507 samples, 0.08%)</title><rect x="94.5672%" y="677" width="0.0788%" height="15" fill="rgb(214,60,12)" fg:x="608575" fg:w="507"/><text x="94.8172%" y="687.50"></text></g><g><title>shrink_node (507 samples, 0.08%)</title><rect x="94.5672%" y="661" width="0.0788%" height="15" fill="rgb(250,229,36)" fg:x="608575" fg:w="507"/><text x="94.8172%" y="671.50"></text></g><g><title>__alloc_pages_slowpath.constprop.0 (1,253 samples, 0.19%)</title><rect x="94.4542%" y="709" width="0.1947%" height="15" fill="rgb(232,195,10)" fg:x="607848" fg:w="1253"/><text x="94.7042%" y="719.50"></text></g><g><title>__zone_watermark_ok (255 samples, 0.04%)</title><rect x="94.7259%" y="693" width="0.0396%" height="15" fill="rgb(205,213,31)" fg:x="609596" fg:w="255"/><text x="94.9759%" y="703.50"></text></g><g><title>clear_page_erms (2,338 samples, 0.36%)</title><rect x="94.7658%" y="693" width="0.3633%" height="15" fill="rgb(237,43,8)" fg:x="609853" fg:w="2338"/><text x="95.0158%" y="703.50"></text></g><g><title>kernel_init_free_pages.part.0 (85 samples, 0.01%)</title><rect x="95.1291%" y="693" width="0.0132%" height="15" fill="rgb(216,208,3)" fg:x="612191" fg:w="85"/><text x="95.3791%" y="703.50"></text></g><g><title>_raw_spin_lock (92 samples, 0.01%)</title><rect x="95.2157%" y="661" width="0.0143%" height="15" fill="rgb(228,179,44)" fg:x="612748" fg:w="92"/><text x="95.4657%" y="671.50"></text></g><g><title>native_queued_spin_lock_slowpath (92 samples, 0.01%)</title><rect x="95.2157%" y="645" width="0.0143%" height="15" fill="rgb(230,192,27)" fg:x="612748" fg:w="92"/><text x="95.4657%" y="655.50"></text></g><g><title>native_queued_spin_lock_slowpath.part.0 (92 samples, 0.01%)</title><rect x="95.2157%" y="629" width="0.0143%" height="15" fill="rgb(251,30,38)" fg:x="612748" fg:w="92"/><text x="95.4657%" y="639.50"></text></g><g><title>move_freepages_block (637 samples, 0.10%)</title><rect x="95.2332%" y="645" width="0.0990%" height="15" fill="rgb(246,55,52)" fg:x="612861" fg:w="637"/><text x="95.4832%" y="655.50"></text></g><g><title>rmqueue_bulk (929 samples, 0.14%)</title><rect x="95.1880%" y="677" width="0.1444%" height="15" fill="rgb(249,79,26)" fg:x="612570" fg:w="929"/><text x="95.4380%" y="687.50"></text></g><g><title>steal_suitable_fallback (648 samples, 0.10%)</title><rect x="95.2317%" y="661" width="0.1007%" height="15" fill="rgb(220,202,16)" fg:x="612851" fg:w="648"/><text x="95.4817%" y="671.50"></text></g><g><title>rmqueue (1,173 samples, 0.18%)</title><rect x="95.1509%" y="693" width="0.1823%" height="15" fill="rgb(250,170,23)" fg:x="612331" fg:w="1173"/><text x="95.4009%" y="703.50"></text></g><g><title>get_page_from_freelist (4,316 samples, 0.67%)</title><rect x="94.6637%" y="709" width="0.6707%" height="15" fill="rgb(230,7,37)" fg:x="609196" fg:w="4316"/><text x="94.9137%" y="719.50"></text></g><g><title>__alloc_pages (5,911 samples, 0.92%)</title><rect x="94.4252%" y="725" width="0.9185%" height="15" fill="rgb(213,71,1)" fg:x="607661" fg:w="5911"/><text x="94.6752%" y="735.50"></text></g><g><title>alloc_pages (6,194 samples, 0.96%)</title><rect x="94.4033%" y="741" width="0.9625%" height="15" fill="rgb(227,87,39)" fg:x="607520" fg:w="6194"/><text x="94.6533%" y="751.50"></text></g><g><title>get_random_u32 (69 samples, 0.01%)</title><rect x="95.3662%" y="741" width="0.0107%" height="15" fill="rgb(210,41,29)" fg:x="613717" fg:w="69"/><text x="95.6162%" y="751.50"></text></g><g><title>mod_node_page_state (77 samples, 0.01%)</title><rect x="95.3770%" y="741" width="0.0120%" height="15" fill="rgb(206,191,31)" fg:x="613786" fg:w="77"/><text x="95.6270%" y="751.50"></text></g><g><title>allocate_slab (6,728 samples, 1.05%)</title><rect x="94.3462%" y="757" width="1.0455%" height="15" fill="rgb(247,75,54)" fg:x="607153" fg:w="6728"/><text x="94.5962%" y="767.50"></text></g><g><title>new_slab (6,788 samples, 1.05%)</title><rect x="94.3411%" y="773" width="1.0548%" height="15" fill="rgb(208,54,50)" fg:x="607120" fg:w="6788"/><text x="94.5911%" y="783.50"></text></g><g><title>___slab_alloc (7,925 samples, 1.23%)</title><rect x="94.1646%" y="789" width="1.2315%" height="15" fill="rgb(214,90,37)" fg:x="605984" fg:w="7925"/><text x="94.4146%" y="799.50"></text></g><g><title>memcg_slab_post_alloc_hook (77 samples, 0.01%)</title><rect x="95.4094%" y="789" width="0.0120%" height="15" fill="rgb(220,132,6)" fg:x="613995" fg:w="77"/><text x="95.6594%" y="799.50"></text></g><g><title>__kmalloc (8,735 samples, 1.36%)</title><rect x="94.0731%" y="805" width="1.3573%" height="15" fill="rgb(213,167,7)" fg:x="605395" fg:w="8735"/><text x="94.3231%" y="815.50"></text></g><g><title>memset_erms (2,899 samples, 0.45%)</title><rect x="95.4349%" y="805" width="0.4505%" height="15" fill="rgb(243,36,27)" fg:x="614159" fg:w="2899"/><text x="95.6849%" y="815.50"></text></g><g><title>[[falcon_kal]] (11,745 samples, 1.83%)</title><rect x="94.0644%" y="821" width="1.8251%" height="15" fill="rgb(235,147,12)" fg:x="605339" fg:w="11745"/><text x="94.3144%" y="831.50">[..</text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (12,516 samples, 1.94%)</title><rect x="93.9472%" y="837" width="1.9449%" height="15" fill="rgb(212,198,44)" fg:x="604585" fg:w="12516"/><text x="94.1972%" y="847.50">c..</text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (20,182 samples, 3.14%)</title><rect x="92.7574%" y="853" width="3.1361%" height="15" fill="rgb(218,68,50)" fg:x="596928" fg:w="20182"/><text x="93.0074%" y="863.50">csh..</text></g><g><title>memmove (475 samples, 0.07%)</title><rect x="95.9012%" y="853" width="0.0738%" height="15" fill="rgb(224,79,48)" fg:x="617160" fg:w="475"/><text x="96.1512%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_openat (35,844 samples, 5.57%)</title><rect x="90.8363%" y="885" width="5.5698%" height="15" fill="rgb(213,191,50)" fg:x="584565" fg:w="35844"/><text x="91.0863%" y="895.50">cshook_..</text></g><g><title>fshook_syscalltable_pre_lchown (29,314 samples, 4.56%)</title><rect x="91.8510%" y="869" width="4.5551%" height="15" fill="rgb(254,146,10)" fg:x="591095" fg:w="29314"/><text x="92.1010%" y="879.50">fshoo..</text></g><g><title>strlen (2,773 samples, 0.43%)</title><rect x="95.9752%" y="853" width="0.4309%" height="15" fill="rgb(215,175,11)" fg:x="617636" fg:w="2773"/><text x="96.2252%" y="863.50"></text></g><g><title>cshook_systemcalltable_post_read (851 samples, 0.13%)</title><rect x="96.4061%" y="885" width="0.1322%" height="15" fill="rgb(207,49,7)" fg:x="620409" fg:w="851"/><text x="96.6561%" y="895.50"></text></g><g><title>crowdstrike_probe_sched_process_exec (410 samples, 0.06%)</title><rect x="96.4746%" y="869" width="0.0637%" height="15" fill="rgb(234,144,29)" fg:x="620850" fg:w="410"/><text x="96.7246%" y="879.50"></text></g><g><title>[[falcon_kal]] (75 samples, 0.01%)</title><rect x="96.6187%" y="853" width="0.0117%" height="15" fill="rgb(213,222,48)" fg:x="621777" fg:w="75"/><text x="96.8687%" y="863.50"></text></g><g><title>_ZdlPv (86 samples, 0.01%)</title><rect x="96.6303%" y="853" width="0.0134%" height="15" fill="rgb(222,8,6)" fg:x="621852" fg:w="86"/><text x="96.8803%" y="863.50"></text></g><g><title>__fget_files (196 samples, 0.03%)</title><rect x="96.7293%" y="805" width="0.0305%" height="15" fill="rgb(221,114,49)" fg:x="622489" fg:w="196"/><text x="96.9793%" y="815.50"></text></g><g><title>fget (203 samples, 0.03%)</title><rect x="96.7293%" y="821" width="0.0315%" height="15" fill="rgb(250,140,42)" fg:x="622489" fg:w="203"/><text x="96.9793%" y="831.50"></text></g><g><title>[[falcon_kal]] (488 samples, 0.08%)</title><rect x="96.7024%" y="837" width="0.0758%" height="15" fill="rgb(250,150,27)" fg:x="622316" fg:w="488"/><text x="96.9524%" y="847.50"></text></g><g><title>fput_many (109 samples, 0.02%)</title><rect x="96.7613%" y="821" width="0.0169%" height="15" fill="rgb(252,159,3)" fg:x="622695" fg:w="109"/><text x="97.0113%" y="831.50"></text></g><g><title>_ZdlPv (190 samples, 0.03%)</title><rect x="96.7783%" y="837" width="0.0295%" height="15" fill="rgb(241,182,3)" fg:x="622804" fg:w="190"/><text x="97.0283%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (91 samples, 0.01%)</title><rect x="96.8097%" y="837" width="0.0141%" height="15" fill="rgb(236,3,9)" fg:x="623006" fg:w="91"/><text x="97.0597%" y="847.50"></text></g><g><title>__fget_files (201 samples, 0.03%)</title><rect x="96.8948%" y="789" width="0.0312%" height="15" fill="rgb(223,227,51)" fg:x="623554" fg:w="201"/><text x="97.1448%" y="799.50"></text></g><g><title>fget (206 samples, 0.03%)</title><rect x="96.8948%" y="805" width="0.0320%" height="15" fill="rgb(232,133,30)" fg:x="623554" fg:w="206"/><text x="97.1448%" y="815.50"></text></g><g><title>[[falcon_kal]] (351 samples, 0.05%)</title><rect x="96.8914%" y="821" width="0.0545%" height="15" fill="rgb(209,93,27)" fg:x="623532" fg:w="351"/><text x="97.1414%" y="831.50"></text></g><g><title>fput_many (116 samples, 0.02%)</title><rect x="96.9279%" y="805" width="0.0180%" height="15" fill="rgb(208,108,34)" fg:x="623767" fg:w="116"/><text x="97.1779%" y="815.50"></text></g><g><title>[[falcon_kal]] (400 samples, 0.06%)</title><rect x="96.9761%" y="789" width="0.0622%" height="15" fill="rgb(215,189,13)" fg:x="624077" fg:w="400"/><text x="97.2261%" y="799.50"></text></g><g><title>down_read (381 samples, 0.06%)</title><rect x="96.9790%" y="773" width="0.0592%" height="15" fill="rgb(206,88,23)" fg:x="624096" fg:w="381"/><text x="97.2290%" y="783.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (149 samples, 0.02%)</title><rect x="97.0387%" y="789" width="0.0232%" height="15" fill="rgb(240,173,0)" fg:x="624480" fg:w="149"/><text x="97.2887%" y="799.50"></text></g><g><title>up_read (136 samples, 0.02%)</title><rect x="97.0407%" y="773" width="0.0211%" height="15" fill="rgb(223,106,52)" fg:x="624493" fg:w="136"/><text x="97.2907%" y="783.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (727 samples, 0.11%)</title><rect x="96.9506%" y="821" width="0.1130%" height="15" fill="rgb(206,130,16)" fg:x="623913" fg:w="727"/><text x="97.2006%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (574 samples, 0.09%)</title><rect x="96.9744%" y="805" width="0.0892%" height="15" fill="rgb(220,54,25)" fg:x="624066" fg:w="574"/><text x="97.2244%" y="815.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (100 samples, 0.02%)</title><rect x="97.1046%" y="789" width="0.0155%" height="15" fill="rgb(210,4,38)" fg:x="624904" fg:w="100"/><text x="97.3546%" y="799.50"></text></g><g><title>__cond_resched (67 samples, 0.01%)</title><rect x="97.2646%" y="741" width="0.0104%" height="15" fill="rgb(238,94,39)" fg:x="625934" fg:w="67"/><text x="97.5146%" y="751.50"></text></g><g><title>[[falcon_kal]] (517 samples, 0.08%)</title><rect x="97.1995%" y="773" width="0.0803%" height="15" fill="rgb(234,124,34)" fg:x="625515" fg:w="517"/><text x="97.4495%" y="783.50"></text></g><g><title>down_read (462 samples, 0.07%)</title><rect x="97.2081%" y="757" width="0.0718%" height="15" fill="rgb(221,91,40)" fg:x="625570" fg:w="462"/><text x="97.4581%" y="767.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,657 samples, 0.26%)</title><rect x="97.0650%" y="805" width="0.2575%" height="15" fill="rgb(246,53,28)" fg:x="624649" fg:w="1657"/><text x="97.3150%" y="815.50"></text></g><g><title>cshook_security_inode_free_security (1,302 samples, 0.20%)</title><rect x="97.1201%" y="789" width="0.2023%" height="15" fill="rgb(229,109,7)" fg:x="625004" fg:w="1302"/><text x="97.3701%" y="799.50"></text></g><g><title>up_read (239 samples, 0.04%)</title><rect x="97.2853%" y="773" width="0.0371%" height="15" fill="rgb(249,117,8)" fg:x="626067" fg:w="239"/><text x="97.5353%" y="783.50"></text></g><g><title>cshook_security_file_free_security (1,827 samples, 0.28%)</title><rect x="97.0636%" y="821" width="0.2839%" height="15" fill="rgb(210,181,1)" fg:x="624640" fg:w="1827"/><text x="97.3136%" y="831.50"></text></g><g><title>cshook_security_inode_free_security (161 samples, 0.03%)</title><rect x="97.3225%" y="805" width="0.0250%" height="15" fill="rgb(211,66,1)" fg:x="626306" fg:w="161"/><text x="97.5725%" y="815.50"></text></g><g><title>cshook_security_file_free_security (3,409 samples, 0.53%)</title><rect x="96.8238%" y="837" width="0.5297%" height="15" fill="rgb(221,90,14)" fg:x="623097" fg:w="3409"/><text x="97.0738%" y="847.50"></text></g><g><title>cshook_security_file_free_security (4,537 samples, 0.71%)</title><rect x="96.6526%" y="853" width="0.7050%" height="15" fill="rgb(219,222,44)" fg:x="621995" fg:w="4537"/><text x="96.9026%" y="863.50"></text></g><g><title>__fget_files (190 samples, 0.03%)</title><rect x="97.5187%" y="805" width="0.0295%" height="15" fill="rgb(246,34,33)" fg:x="627569" fg:w="190"/><text x="97.7687%" y="815.50"></text></g><g><title>fget (193 samples, 0.03%)</title><rect x="97.5184%" y="821" width="0.0300%" height="15" fill="rgb(227,135,41)" fg:x="627567" fg:w="193"/><text x="97.7684%" y="831.50"></text></g><g><title>[[falcon_kal]] (1,044 samples, 0.16%)</title><rect x="97.4064%" y="837" width="0.1622%" height="15" fill="rgb(226,15,14)" fg:x="626846" fg:w="1044"/><text x="97.6564%" y="847.50"></text></g><g><title>fput_many (126 samples, 0.02%)</title><rect x="97.5490%" y="821" width="0.0196%" height="15" fill="rgb(236,148,47)" fg:x="627764" fg:w="126"/><text x="97.7990%" y="831.50"></text></g><g><title>crypto_sha256_update (825 samples, 0.13%)</title><rect x="97.7378%" y="709" width="0.1282%" height="15" fill="rgb(233,162,52)" fg:x="628979" fg:w="825"/><text x="97.9878%" y="719.50"></text></g><g><title>sha256_update (817 samples, 0.13%)</title><rect x="97.7391%" y="693" width="0.1270%" height="15" fill="rgb(244,35,28)" fg:x="628987" fg:w="817"/><text x="97.9891%" y="703.50"></text></g><g><title>sha256_transform (813 samples, 0.13%)</title><rect x="97.7397%" y="677" width="0.1263%" height="15" fill="rgb(205,121,10)" fg:x="628991" fg:w="813"/><text x="97.9897%" y="687.50"></text></g><g><title>crypto_shash_update (1,005 samples, 0.16%)</title><rect x="97.7373%" y="725" width="0.1562%" height="15" fill="rgb(250,58,18)" fg:x="628976" fg:w="1005"/><text x="97.9873%" y="735.50"></text></g><g><title>md5_update (175 samples, 0.03%)</title><rect x="97.8663%" y="709" width="0.0272%" height="15" fill="rgb(216,37,13)" fg:x="629806" fg:w="175"/><text x="98.1163%" y="719.50"></text></g><g><title>md5_transform (170 samples, 0.03%)</title><rect x="97.8671%" y="693" width="0.0264%" height="15" fill="rgb(221,215,42)" fg:x="629811" fg:w="170"/><text x="98.1171%" y="703.50"></text></g><g><title>[[falcon_kal]] (1,052 samples, 0.16%)</title><rect x="97.7304%" y="741" width="0.1635%" height="15" fill="rgb(217,214,19)" fg:x="628931" fg:w="1052"/><text x="97.9804%" y="751.50"></text></g><g><title>cshook_security_inode_free_security (1,056 samples, 0.16%)</title><rect x="97.7299%" y="789" width="0.1641%" height="15" fill="rgb(233,139,13)" fg:x="628928" fg:w="1056"/><text x="97.9799%" y="799.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (1,056 samples, 0.16%)</title><rect x="97.7299%" y="773" width="0.1641%" height="15" fill="rgb(247,168,23)" fg:x="628928" fg:w="1056"/><text x="97.9799%" y="783.50"></text></g><g><title>[[falcon_kal]] (1,053 samples, 0.16%)</title><rect x="97.7304%" y="757" width="0.1636%" height="15" fill="rgb(207,202,1)" fg:x="628931" fg:w="1053"/><text x="97.9804%" y="767.50"></text></g><g><title>_ZdlPv (1,163 samples, 0.18%)</title><rect x="97.7178%" y="805" width="0.1807%" height="15" fill="rgb(220,155,48)" fg:x="628850" fg:w="1163"/><text x="97.9678%" y="815.50"></text></g><g><title>_ZdlPv (1,262 samples, 0.20%)</title><rect x="97.7032%" y="821" width="0.1961%" height="15" fill="rgb(250,43,26)" fg:x="628756" fg:w="1262"/><text x="97.9532%" y="831.50"></text></g><g><title>memcg_slab_free_hook (132 samples, 0.02%)</title><rect x="98.0233%" y="773" width="0.0205%" height="15" fill="rgb(212,190,23)" fg:x="630816" fg:w="132"/><text x="98.2733%" y="783.50"></text></g><g><title>kfree (640 samples, 0.10%)</title><rect x="97.9582%" y="789" width="0.0995%" height="15" fill="rgb(216,39,24)" fg:x="630397" fg:w="640"/><text x="98.2082%" y="799.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (89 samples, 0.01%)</title><rect x="98.0438%" y="773" width="0.0138%" height="15" fill="rgb(252,113,16)" fg:x="630948" fg:w="89"/><text x="98.2938%" y="783.50"></text></g><g><title>[[falcon_kal]] (730 samples, 0.11%)</title><rect x="97.9519%" y="805" width="0.1134%" height="15" fill="rgb(208,113,19)" fg:x="630357" fg:w="730"/><text x="98.2019%" y="815.50"></text></g><g><title>_ZdlPv (3,278 samples, 0.51%)</title><rect x="97.5686%" y="837" width="0.5094%" height="15" fill="rgb(234,107,25)" fg:x="627890" fg:w="3278"/><text x="97.8186%" y="847.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (1,143 samples, 0.18%)</title><rect x="97.9004%" y="821" width="0.1776%" height="15" fill="rgb(234,217,51)" fg:x="630025" fg:w="1143"/><text x="98.1504%" y="831.50"></text></g><g><title>get_page_from_freelist (119 samples, 0.02%)</title><rect x="98.3393%" y="709" width="0.0185%" height="15" fill="rgb(251,29,42)" fg:x="632850" fg:w="119"/><text x="98.5893%" y="719.50"></text></g><g><title>__alloc_pages (182 samples, 0.03%)</title><rect x="98.3302%" y="725" width="0.0283%" height="15" fill="rgb(221,62,51)" fg:x="632791" fg:w="182"/><text x="98.5802%" y="735.50"></text></g><g><title>alloc_pages (195 samples, 0.03%)</title><rect x="98.3294%" y="741" width="0.0303%" height="15" fill="rgb(240,192,43)" fg:x="632786" fg:w="195"/><text x="98.5794%" y="751.50"></text></g><g><title>allocate_slab (282 samples, 0.04%)</title><rect x="98.3201%" y="757" width="0.0438%" height="15" fill="rgb(224,157,47)" fg:x="632726" fg:w="282"/><text x="98.5701%" y="767.50"></text></g><g><title>___slab_alloc (451 samples, 0.07%)</title><rect x="98.2952%" y="789" width="0.0701%" height="15" fill="rgb(226,84,45)" fg:x="632566" fg:w="451"/><text x="98.5452%" y="799.50"></text></g><g><title>new_slab (292 samples, 0.05%)</title><rect x="98.3199%" y="773" width="0.0454%" height="15" fill="rgb(208,207,23)" fg:x="632725" fg:w="292"/><text x="98.5699%" y="783.50"></text></g><g><title>kmalloc_slab (92 samples, 0.01%)</title><rect x="98.3706%" y="789" width="0.0143%" height="15" fill="rgb(253,34,51)" fg:x="633051" fg:w="92"/><text x="98.6206%" y="799.50"></text></g><g><title>__kmalloc (1,084 samples, 0.17%)</title><rect x="98.2251%" y="805" width="0.1684%" height="15" fill="rgb(227,26,34)" fg:x="632115" fg:w="1084"/><text x="98.4751%" y="815.50"></text></g><g><title>memset_erms (185 samples, 0.03%)</title><rect x="98.4020%" y="805" width="0.0287%" height="15" fill="rgb(245,75,19)" fg:x="633253" fg:w="185"/><text x="98.6520%" y="815.50"></text></g><g><title>[[falcon_kal]] (1,395 samples, 0.22%)</title><rect x="98.2181%" y="821" width="0.2168%" height="15" fill="rgb(250,191,31)" fg:x="632070" fg:w="1395"/><text x="98.4681%" y="831.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (2,336 samples, 0.36%)</title><rect x="98.0815%" y="837" width="0.3630%" height="15" fill="rgb(224,11,50)" fg:x="631191" fg:w="2336"/><text x="98.3315%" y="847.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (12,279 samples, 1.91%)</title><rect x="96.5422%" y="869" width="1.9080%" height="15" fill="rgb(231,171,7)" fg:x="621285" fg:w="12279"/><text x="96.7922%" y="879.50">c..</text></g><g><title>fshook_syscalltable_pre_lchown (6,996 samples, 1.09%)</title><rect x="97.3632%" y="853" width="1.0871%" height="15" fill="rgb(252,214,10)" fg:x="626568" fg:w="6996"/><text x="97.6132%" y="863.50"></text></g><g><title>cshook_systemcalltable_pre_close (12,335 samples, 1.92%)</title><rect x="96.5399%" y="885" width="1.9168%" height="15" fill="rgb(249,45,46)" fg:x="621270" fg:w="12335"/><text x="96.7899%" y="895.50">c..</text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (446 samples, 0.07%)</title><rect x="98.4678%" y="869" width="0.0693%" height="15" fill="rgb(240,173,7)" fg:x="633677" fg:w="446"/><text x="98.7178%" y="879.50"></text></g><g><title>cshook_systemcalltable_pre_openat (554 samples, 0.09%)</title><rect x="98.4629%" y="885" width="0.0861%" height="15" fill="rgb(235,214,13)" fg:x="633645" fg:w="554"/><text x="98.7129%" y="895.50"></text></g><g><title>cshook_systemcalltable_pre_read (589 samples, 0.09%)</title><rect x="98.5490%" y="885" width="0.0915%" height="15" fill="rgb(245,156,8)" fg:x="634199" fg:w="589"/><text x="98.7990%" y="895.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (428 samples, 0.07%)</title><rect x="98.5740%" y="869" width="0.0665%" height="15" fill="rgb(235,46,12)" fg:x="634360" fg:w="428"/><text x="98.8240%" y="879.50"></text></g><g><title>do_syscall_64 (207,285 samples, 32.21%)</title><rect x="66.4689%" y="917" width="32.2103%" height="15" fill="rgb(221,81,14)" fg:x="427752" fg:w="207285"/><text x="66.7189%" y="927.50">do_syscall_64</text></g><g><title>unload_network_ops_symbols (179,753 samples, 27.93%)</title><rect x="70.7471%" y="901" width="27.9320%" height="15" fill="rgb(238,207,9)" fg:x="455284" fg:w="179753"/><text x="70.9971%" y="911.50">unload_network_ops_symbols</text></g><g><title>ksys_read (131 samples, 0.02%)</title><rect x="98.6588%" y="885" width="0.0204%" height="15" fill="rgb(224,129,35)" fg:x="634906" fg:w="131"/><text x="98.9088%" y="895.50"></text></g><g><title>syscall_enter_from_user_mode (98 samples, 0.02%)</title><rect x="98.6792%" y="917" width="0.0152%" height="15" fill="rgb(243,218,34)" fg:x="635037" fg:w="98"/><text x="98.9292%" y="927.50"></text></g><g><title>syscall_exit_to_user_mode (180 samples, 0.03%)</title><rect x="98.6944%" y="917" width="0.0280%" height="15" fill="rgb(220,166,13)" fg:x="635135" fg:w="180"/><text x="98.9444%" y="927.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (208,946 samples, 32.47%)</title><rect x="66.2835%" y="933" width="32.4684%" height="15" fill="rgb(227,167,49)" fg:x="426559" fg:w="208946"/><text x="66.5335%" y="943.50">entry_SYSCALL_64_after_hwframe</text></g><g><title>unload_network_ops_symbols (190 samples, 0.03%)</title><rect x="98.7224%" y="917" width="0.0295%" height="15" fill="rgb(234,142,12)" fg:x="635315" fg:w="190"/><text x="98.9724%" y="927.50"></text></g><g><title>__perf_event_task_sched_in (1,815 samples, 0.28%)</title><rect x="98.7751%" y="885" width="0.2820%" height="15" fill="rgb(207,100,48)" fg:x="635654" fg:w="1815"/><text x="99.0251%" y="895.50"></text></g><g><title>x86_pmu_enable (1,773 samples, 0.28%)</title><rect x="98.7816%" y="869" width="0.2755%" height="15" fill="rgb(210,25,14)" fg:x="635696" fg:w="1773"/><text x="99.0316%" y="879.50"></text></g><g><title>intel_pmu_enable_all (1,764 samples, 0.27%)</title><rect x="98.7830%" y="853" width="0.2741%" height="15" fill="rgb(246,116,27)" fg:x="635705" fg:w="1764"/><text x="99.0330%" y="863.50"></text></g><g><title>native_write_msr (1,758 samples, 0.27%)</title><rect x="98.7839%" y="837" width="0.2732%" height="15" fill="rgb(214,193,42)" fg:x="635711" fg:w="1758"/><text x="99.0339%" y="847.50"></text></g><g><title>finish_task_switch.isra.0 (1,880 samples, 0.29%)</title><rect x="98.7710%" y="901" width="0.2921%" height="15" fill="rgb(214,122,8)" fg:x="635628" fg:w="1880"/><text x="99.0210%" y="911.50"></text></g><g><title>schedule_tail (1,912 samples, 0.30%)</title><rect x="98.7667%" y="917" width="0.2971%" height="15" fill="rgb(244,173,18)" fg:x="635600" fg:w="1912"/><text x="99.0167%" y="927.50"></text></g><g><title>ret_from_fork (1,961 samples, 0.30%)</title><rect x="98.7657%" y="933" width="0.3047%" height="15" fill="rgb(232,68,19)" fg:x="635594" fg:w="1961"/><text x="99.0157%" y="943.50"></text></g><g><title>sync_regs (425 samples, 0.07%)</title><rect x="99.0714%" y="933" width="0.0660%" height="15" fill="rgb(236,224,1)" fg:x="637561" fg:w="425"/><text x="99.3214%" y="943.50"></text></g><g><title>syscall_return_via_sysret (1,188 samples, 0.18%)</title><rect x="99.1376%" y="933" width="0.1846%" height="15" fill="rgb(240,11,8)" fg:x="637987" fg:w="1188"/><text x="99.3876%" y="943.50"></text></g><g><title>[zig] (290,151 samples, 45.09%)</title><rect x="54.2354%" y="949" width="45.0869%" height="15" fill="rgb(244,159,20)" fg:x="349025" fg:w="290151"/><text x="54.4854%" y="959.50">[zig]</text></g><g><title>asm_exc_page_fault (1,182 samples, 0.18%)</title><rect x="99.3256%" y="949" width="0.1837%" height="15" fill="rgb(240,223,54)" fg:x="639197" fg:w="1182"/><text x="99.5756%" y="959.50"></text></g><g><title>tlb_finish_mmu (87 samples, 0.01%)</title><rect x="99.5683%" y="741" width="0.0135%" height="15" fill="rgb(237,146,5)" fg:x="640759" fg:w="87"/><text x="99.8183%" y="751.50"></text></g><g><title>page_remove_rmap (74 samples, 0.01%)</title><rect x="99.6207%" y="661" width="0.0115%" height="15" fill="rgb(218,221,32)" fg:x="641096" fg:w="74"/><text x="99.8707%" y="671.50"></text></g><g><title>unmap_vmas (336 samples, 0.05%)</title><rect x="99.5818%" y="741" width="0.0522%" height="15" fill="rgb(244,96,26)" fg:x="640846" fg:w="336"/><text x="99.8318%" y="751.50"></text></g><g><title>unmap_single_vma (334 samples, 0.05%)</title><rect x="99.5822%" y="725" width="0.0519%" height="15" fill="rgb(245,184,37)" fg:x="640848" fg:w="334"/><text x="99.8322%" y="735.50"></text></g><g><title>unmap_page_range (333 samples, 0.05%)</title><rect x="99.5823%" y="709" width="0.0517%" height="15" fill="rgb(248,91,47)" fg:x="640849" fg:w="333"/><text x="99.8323%" y="719.50"></text></g><g><title>zap_pmd_range.isra.0 (331 samples, 0.05%)</title><rect x="99.5826%" y="693" width="0.0514%" height="15" fill="rgb(243,199,8)" fg:x="640851" fg:w="331"/><text x="99.8326%" y="703.50"></text></g><g><title>zap_pte_range (308 samples, 0.05%)</title><rect x="99.5862%" y="677" width="0.0479%" height="15" fill="rgb(249,12,15)" fg:x="640874" fg:w="308"/><text x="99.8362%" y="687.50"></text></g><g><title>exec_mmap (443 samples, 0.07%)</title><rect x="99.5654%" y="789" width="0.0688%" height="15" fill="rgb(245,97,12)" fg:x="640740" fg:w="443"/><text x="99.8154%" y="799.50"></text></g><g><title>mmput (443 samples, 0.07%)</title><rect x="99.5654%" y="773" width="0.0688%" height="15" fill="rgb(244,61,1)" fg:x="640740" fg:w="443"/><text x="99.8154%" y="783.50"></text></g><g><title>exit_mmap (441 samples, 0.07%)</title><rect x="99.5657%" y="757" width="0.0685%" height="15" fill="rgb(222,194,10)" fg:x="640742" fg:w="441"/><text x="99.8157%" y="767.50"></text></g><g><title>begin_new_exec (449 samples, 0.07%)</title><rect x="99.5652%" y="805" width="0.0698%" height="15" fill="rgb(226,178,8)" fg:x="640739" fg:w="449"/><text x="99.8152%" y="815.50"></text></g><g><title>load_elf_binary (532 samples, 0.08%)</title><rect x="99.5621%" y="821" width="0.0827%" height="15" fill="rgb(241,32,34)" fg:x="640719" fg:w="532"/><text x="99.8121%" y="831.50"></text></g><g><title>__x64_sys_execve (534 samples, 0.08%)</title><rect x="99.5621%" y="917" width="0.0830%" height="15" fill="rgb(254,26,6)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="927.50"></text></g><g><title>do_execveat_common.isra.0 (534 samples, 0.08%)</title><rect x="99.5621%" y="901" width="0.0830%" height="15" fill="rgb(249,71,11)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="911.50"></text></g><g><title>bprm_execve (534 samples, 0.08%)</title><rect x="99.5621%" y="885" width="0.0830%" height="15" fill="rgb(232,170,27)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="895.50"></text></g><g><title>bprm_execve.part.0 (534 samples, 0.08%)</title><rect x="99.5621%" y="869" width="0.0830%" height="15" fill="rgb(214,223,17)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="879.50"></text></g><g><title>exec_binprm (534 samples, 0.08%)</title><rect x="99.5621%" y="853" width="0.0830%" height="15" fill="rgb(250,18,15)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="863.50"></text></g><g><title>search_binary_handler (534 samples, 0.08%)</title><rect x="99.5621%" y="837" width="0.0830%" height="15" fill="rgb(212,153,51)" fg:x="640719" fg:w="534"/><text x="99.8121%" y="847.50"></text></g><g><title>exit_mm (121 samples, 0.02%)</title><rect x="99.6459%" y="885" width="0.0188%" height="15" fill="rgb(219,194,12)" fg:x="641258" fg:w="121"/><text x="99.8959%" y="895.50"></text></g><g><title>mmput (105 samples, 0.02%)</title><rect x="99.6483%" y="869" width="0.0163%" height="15" fill="rgb(212,58,17)" fg:x="641274" fg:w="105"/><text x="99.8983%" y="879.50"></text></g><g><title>exit_mmap (105 samples, 0.02%)</title><rect x="99.6483%" y="853" width="0.0163%" height="15" fill="rgb(254,5,10)" fg:x="641274" fg:w="105"/><text x="99.8983%" y="863.50"></text></g><g><title>unmap_vmas (81 samples, 0.01%)</title><rect x="99.6521%" y="837" width="0.0126%" height="15" fill="rgb(246,91,7)" fg:x="641298" fg:w="81"/><text x="99.9021%" y="847.50"></text></g><g><title>unmap_single_vma (81 samples, 0.01%)</title><rect x="99.6521%" y="821" width="0.0126%" height="15" fill="rgb(218,108,49)" fg:x="641298" fg:w="81"/><text x="99.9021%" y="831.50"></text></g><g><title>unmap_page_range (81 samples, 0.01%)</title><rect x="99.6521%" y="805" width="0.0126%" height="15" fill="rgb(238,123,20)" fg:x="641298" fg:w="81"/><text x="99.9021%" y="815.50"></text></g><g><title>zap_pmd_range.isra.0 (81 samples, 0.01%)</title><rect x="99.6521%" y="789" width="0.0126%" height="15" fill="rgb(231,69,23)" fg:x="641298" fg:w="81"/><text x="99.9021%" y="799.50"></text></g><g><title>zap_pte_range (78 samples, 0.01%)</title><rect x="99.6525%" y="773" width="0.0121%" height="15" fill="rgb(230,209,3)" fg:x="641301" fg:w="78"/><text x="99.9025%" y="783.50"></text></g><g><title>__x64_sys_exit (128 samples, 0.02%)</title><rect x="99.6451%" y="917" width="0.0199%" height="15" fill="rgb(231,19,0)" fg:x="641253" fg:w="128"/><text x="99.8951%" y="927.50"></text></g><g><title>do_exit (128 samples, 0.02%)</title><rect x="99.6451%" y="901" width="0.0199%" height="15" fill="rgb(226,192,25)" fg:x="641253" fg:w="128"/><text x="99.8951%" y="911.50"></text></g><g><title>free_pages_and_swap_cache (111 samples, 0.02%)</title><rect x="99.6721%" y="805" width="0.0172%" height="15" fill="rgb(223,175,53)" fg:x="641427" fg:w="111"/><text x="99.9221%" y="815.50"></text></g><g><title>release_pages (109 samples, 0.02%)</title><rect x="99.6724%" y="789" width="0.0169%" height="15" fill="rgb(248,35,51)" fg:x="641429" fg:w="109"/><text x="99.9224%" y="799.50"></text></g><g><title>tlb_finish_mmu (149 samples, 0.02%)</title><rect x="99.6718%" y="821" width="0.0232%" height="15" fill="rgb(230,37,26)" fg:x="641425" fg:w="149"/><text x="99.9218%" y="831.50"></text></g><g><title>page_remove_file_rmap (117 samples, 0.02%)</title><rect x="99.7789%" y="725" width="0.0182%" height="15" fill="rgb(206,120,22)" fg:x="642114" fg:w="117"/><text x="100.0289%" y="735.50"></text></g><g><title>page_remove_rmap (210 samples, 0.03%)</title><rect x="99.7678%" y="741" width="0.0326%" height="15" fill="rgb(207,165,28)" fg:x="642043" fg:w="210"/><text x="100.0178%" y="751.50"></text></g><g><title>exit_mm (957 samples, 0.15%)</title><rect x="99.6661%" y="869" width="0.1487%" height="15" fill="rgb(226,23,46)" fg:x="641388" fg:w="957"/><text x="99.9161%" y="879.50"></text></g><g><title>mmput (936 samples, 0.15%)</title><rect x="99.6693%" y="853" width="0.1454%" height="15" fill="rgb(208,130,44)" fg:x="641409" fg:w="936"/><text x="99.9193%" y="863.50"></text></g><g><title>exit_mmap (935 samples, 0.15%)</title><rect x="99.6695%" y="837" width="0.1453%" height="15" fill="rgb(231,67,8)" fg:x="641410" fg:w="935"/><text x="99.9195%" y="847.50"></text></g><g><title>unmap_vmas (771 samples, 0.12%)</title><rect x="99.6950%" y="821" width="0.1198%" height="15" fill="rgb(205,183,22)" fg:x="641574" fg:w="771"/><text x="99.9450%" y="831.50"></text></g><g><title>unmap_single_vma (769 samples, 0.12%)</title><rect x="99.6953%" y="805" width="0.1195%" height="15" fill="rgb(224,47,9)" fg:x="641576" fg:w="769"/><text x="99.9453%" y="815.50"></text></g><g><title>unmap_page_range (769 samples, 0.12%)</title><rect x="99.6953%" y="789" width="0.1195%" height="15" fill="rgb(250,183,49)" fg:x="641576" fg:w="769"/><text x="99.9453%" y="799.50"></text></g><g><title>zap_pmd_range.isra.0 (768 samples, 0.12%)</title><rect x="99.6954%" y="773" width="0.1193%" height="15" fill="rgb(220,151,39)" fg:x="641577" fg:w="768"/><text x="99.9454%" y="783.50"></text></g><g><title>zap_pte_range (742 samples, 0.12%)</title><rect x="99.6995%" y="757" width="0.1153%" height="15" fill="rgb(220,118,20)" fg:x="641603" fg:w="742"/><text x="99.9495%" y="767.50"></text></g><g><title>__x64_sys_exit_group (970 samples, 0.15%)</title><rect x="99.6650%" y="917" width="0.1507%" height="15" fill="rgb(231,65,51)" fg:x="641381" fg:w="970"/><text x="99.9150%" y="927.50"></text></g><g><title>do_group_exit (970 samples, 0.15%)</title><rect x="99.6650%" y="901" width="0.1507%" height="15" fill="rgb(253,125,37)" fg:x="641381" fg:w="970"/><text x="99.9150%" y="911.50"></text></g><g><title>do_exit (970 samples, 0.15%)</title><rect x="99.6650%" y="885" width="0.1507%" height="15" fill="rgb(232,102,6)" fg:x="641381" fg:w="970"/><text x="99.9150%" y="895.50"></text></g><g><title>tlb_finish_mmu (76 samples, 0.01%)</title><rect x="99.8243%" y="757" width="0.0118%" height="15" fill="rgb(251,105,13)" fg:x="642406" fg:w="76"/><text x="100.0743%" y="767.50"></text></g><g><title>page_remove_rmap (86 samples, 0.01%)</title><rect x="99.8743%" y="677" width="0.0134%" height="15" fill="rgb(222,179,29)" fg:x="642728" fg:w="86"/><text x="100.1243%" y="687.50"></text></g><g><title>mmput (436 samples, 0.07%)</title><rect x="99.8230%" y="789" width="0.0678%" height="15" fill="rgb(229,180,53)" fg:x="642398" fg:w="436"/><text x="100.0730%" y="799.50"></text></g><g><title>exit_mmap (435 samples, 0.07%)</title><rect x="99.8232%" y="773" width="0.0676%" height="15" fill="rgb(238,104,13)" fg:x="642399" fg:w="435"/><text x="100.0732%" y="783.50"></text></g><g><title>unmap_vmas (351 samples, 0.05%)</title><rect x="99.8362%" y="757" width="0.0545%" height="15" fill="rgb(210,130,5)" fg:x="642483" fg:w="351"/><text x="100.0862%" y="767.50"></text></g><g><title>unmap_single_vma (351 samples, 0.05%)</title><rect x="99.8362%" y="741" width="0.0545%" height="15" fill="rgb(233,87,49)" fg:x="642483" fg:w="351"/><text x="100.0862%" y="751.50"></text></g><g><title>unmap_page_range (350 samples, 0.05%)</title><rect x="99.8364%" y="725" width="0.0544%" height="15" fill="rgb(243,34,9)" fg:x="642484" fg:w="350"/><text x="100.0864%" y="735.50"></text></g><g><title>zap_pmd_range.isra.0 (348 samples, 0.05%)</title><rect x="99.8367%" y="709" width="0.0541%" height="15" fill="rgb(235,225,10)" fg:x="642486" fg:w="348"/><text x="100.0867%" y="719.50"></text></g><g><title>zap_pte_range (342 samples, 0.05%)</title><rect x="99.8376%" y="693" width="0.0531%" height="15" fill="rgb(212,0,30)" fg:x="642492" fg:w="342"/><text x="100.0876%" y="703.50"></text></g><g><title>exit_mm (471 samples, 0.07%)</title><rect x="99.8177%" y="805" width="0.0732%" height="15" fill="rgb(211,177,0)" fg:x="642364" fg:w="471"/><text x="100.0677%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (501 samples, 0.08%)</title><rect x="99.8160%" y="917" width="0.0779%" height="15" fill="rgb(225,220,11)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="927.50"></text></g><g><title>exit_to_user_mode_prepare (501 samples, 0.08%)</title><rect x="99.8160%" y="901" width="0.0779%" height="15" fill="rgb(215,10,13)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="911.50"></text></g><g><title>exit_to_user_mode_loop (501 samples, 0.08%)</title><rect x="99.8160%" y="885" width="0.0779%" height="15" fill="rgb(240,177,14)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="895.50"></text></g><g><title>arch_do_signal_or_restart (501 samples, 0.08%)</title><rect x="99.8160%" y="869" width="0.0779%" height="15" fill="rgb(243,7,39)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="879.50"></text></g><g><title>get_signal (501 samples, 0.08%)</title><rect x="99.8160%" y="853" width="0.0779%" height="15" fill="rgb(212,99,0)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="863.50"></text></g><g><title>do_group_exit (501 samples, 0.08%)</title><rect x="99.8160%" y="837" width="0.0779%" height="15" fill="rgb(225,162,48)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="847.50"></text></g><g><title>do_exit (501 samples, 0.08%)</title><rect x="99.8160%" y="821" width="0.0779%" height="15" fill="rgb(246,16,25)" fg:x="642353" fg:w="501"/><text x="100.0660%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,471 samples, 0.38%)</title><rect x="99.5110%" y="949" width="0.3840%" height="15" fill="rgb(220,150,2)" fg:x="640390" fg:w="2471"/><text x="99.7610%" y="959.50"></text></g><g><title>do_syscall_64 (2,142 samples, 0.33%)</title><rect x="99.5621%" y="933" width="0.3328%" height="15" fill="rgb(237,113,11)" fg:x="640719" fg:w="2142"/><text x="99.8121%" y="943.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (494 samples, 0.08%)</title><rect x="99.8950%" y="949" width="0.0768%" height="15" fill="rgb(236,70,20)" fg:x="642861" fg:w="494"/><text x="100.1450%" y="959.50"></text></g><g><title>all (643,537 samples, 100%)</title><rect x="0.0000%" y="981" width="100.0000%" height="15" fill="rgb(234,94,7)" fg:x="0" fg:w="643537"/><text x="0.2500%" y="991.50"></text></g><g><title>zig (294,859 samples, 45.82%)</title><rect x="54.1815%" y="965" width="45.8185%" height="15" fill="rgb(250,221,0)" fg:x="348678" fg:w="294859"/><text x="54.4315%" y="975.50">zig</text></g><g><title>syscall_return_via_sysret (171 samples, 0.03%)</title><rect x="99.9734%" y="949" width="0.0266%" height="15" fill="rgb(245,149,46)" fg:x="643366" fg:w="171"/><text x="100.2234%" y="959.50"></text></g></svg></svg>