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

414 lines
945 KiB
XML

<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="886" onload="init(evt)" viewBox="0 0 1200 886" 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="886" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">Flame Graph</text><text id="details" x="10" y="869.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="869.00"> </text><svg id="frames" x="10" width="1180" total_samples="387863"><g><title>[unknown] (56 samples, 0.01%)</title><rect x="0.0070%" y="805" width="0.0144%" height="15" fill="rgb(227,0,7)" fg:x="27" fg:w="56"/><text x="0.2570%" y="815.50"></text></g><g><title>:743760 (67 samples, 0.02%)</title><rect x="0.0070%" y="821" width="0.0173%" height="15" fill="rgb(217,0,24)" fg:x="27" fg:w="67"/><text x="0.2570%" y="831.50"></text></g><g><title>_dl_update_slotinfo (157 samples, 0.04%)</title><rect x="0.3496%" y="789" width="0.0405%" height="15" fill="rgb(221,193,54)" fg:x="1356" fg:w="157"/><text x="0.5996%" y="799.50"></text></g><g><title>update_get_addr (64 samples, 0.02%)</title><rect x="0.4396%" y="789" width="0.0165%" height="15" fill="rgb(248,212,6)" fg:x="1705" fg:w="64"/><text x="0.6896%" y="799.50"></text></g><g><title>[anon] (1,521 samples, 0.39%)</title><rect x="0.0642%" y="805" width="0.3921%" height="15" fill="rgb(208,68,35)" fg:x="249" fg:w="1521"/><text x="0.3142%" y="815.50"></text></g><g><title>[perf-742530.map] (188 samples, 0.05%)</title><rect x="0.4574%" y="805" width="0.0485%" height="15" fill="rgb(232,128,0)" fg:x="1774" fg:w="188"/><text x="0.7074%" y="815.50"></text></g><g><title>[unknown] (82 samples, 0.02%)</title><rect x="0.5058%" y="805" width="0.0211%" height="15" fill="rgb(207,160,47)" fg:x="1962" fg:w="82"/><text x="0.7558%" y="815.50"></text></g><g><title>jio_vsnprintf (65 samples, 0.02%)</title><rect x="0.5461%" y="661" width="0.0168%" height="15" fill="rgb(228,23,34)" fg:x="2118" fg:w="65"/><text x="0.7961%" y="671.50"></text></g><g><title>os::vsnprintf (65 samples, 0.02%)</title><rect x="0.5461%" y="645" width="0.0168%" height="15" fill="rgb(218,30,26)" fg:x="2118" fg:w="65"/><text x="0.7961%" y="655.50"></text></g><g><title>__vsnprintf_internal (63 samples, 0.02%)</title><rect x="0.5466%" y="629" width="0.0162%" height="15" fill="rgb(220,122,19)" fg:x="2120" fg:w="63"/><text x="0.7966%" y="639.50"></text></g><g><title>__vfprintf_internal (58 samples, 0.01%)</title><rect x="0.5479%" y="613" width="0.0150%" height="15" fill="rgb(250,228,42)" fg:x="2125" fg:w="58"/><text x="0.7979%" y="623.50"></text></g><g><title>CompileBroker::post_compile (75 samples, 0.02%)</title><rect x="0.5450%" y="693" width="0.0193%" height="15" fill="rgb(240,193,28)" fg:x="2114" fg:w="75"/><text x="0.7950%" y="703.50"></text></g><g><title>StringEventLog::log (74 samples, 0.02%)</title><rect x="0.5453%" y="677" width="0.0191%" height="15" fill="rgb(216,20,37)" fg:x="2115" fg:w="74"/><text x="0.7953%" y="687.50"></text></g><g><title>Method::print_short_name (56 samples, 0.01%)</title><rect x="0.5713%" y="677" width="0.0144%" height="15" fill="rgb(206,188,39)" fg:x="2216" fg:w="56"/><text x="0.8213%" y="687.50"></text></g><g><title>CompileTask::print (120 samples, 0.03%)</title><rect x="0.5708%" y="693" width="0.0309%" height="15" fill="rgb(217,207,13)" fg:x="2214" fg:w="120"/><text x="0.8208%" y="703.50"></text></g><g><title>outputStream::print (62 samples, 0.02%)</title><rect x="0.5858%" y="677" width="0.0160%" height="15" fill="rgb(231,73,38)" fg:x="2272" fg:w="62"/><text x="0.8358%" y="687.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (61 samples, 0.02%)</title><rect x="0.5860%" y="661" width="0.0157%" height="15" fill="rgb(225,20,46)" fg:x="2273" fg:w="61"/><text x="0.8360%" y="671.50"></text></g><g><title>BlockBegin::iterate_preorder (44 samples, 0.01%)</title><rect x="0.6317%" y="517" width="0.0113%" height="15" fill="rgb(210,31,41)" fg:x="2450" fg:w="44"/><text x="0.8817%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (66 samples, 0.02%)</title><rect x="0.6312%" y="533" width="0.0170%" height="15" fill="rgb(221,200,47)" fg:x="2448" fg:w="66"/><text x="0.8812%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (94 samples, 0.02%)</title><rect x="0.6309%" y="549" width="0.0242%" height="15" fill="rgb(226,26,5)" fg:x="2447" fg:w="94"/><text x="0.8809%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (144 samples, 0.04%)</title><rect x="0.6301%" y="565" width="0.0371%" height="15" fill="rgb(249,33,26)" fg:x="2444" fg:w="144"/><text x="0.8801%" y="575.50"></text></g><g><title>SubstitutionResolver::block_do (47 samples, 0.01%)</title><rect x="0.6551%" y="549" width="0.0121%" height="15" fill="rgb(235,183,28)" fg:x="2541" fg:w="47"/><text x="0.9051%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (217 samples, 0.06%)</title><rect x="0.6291%" y="597" width="0.0559%" height="15" fill="rgb(221,5,38)" fg:x="2440" fg:w="217"/><text x="0.8791%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (216 samples, 0.06%)</title><rect x="0.6293%" y="581" width="0.0557%" height="15" fill="rgb(247,18,42)" fg:x="2441" fg:w="216"/><text x="0.8793%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (68 samples, 0.02%)</title><rect x="0.6675%" y="565" width="0.0175%" height="15" fill="rgb(241,131,45)" fg:x="2589" fg:w="68"/><text x="0.9175%" y="575.50"></text></g><g><title>ValueMap::find_insert (44 samples, 0.01%)</title><rect x="0.6941%" y="597" width="0.0113%" height="15" fill="rgb(249,31,29)" fg:x="2692" fg:w="44"/><text x="0.9441%" y="607.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (398 samples, 0.10%)</title><rect x="0.6113%" y="613" width="0.1026%" height="15" fill="rgb(225,111,53)" fg:x="2371" fg:w="398"/><text x="0.8613%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.01%)</title><rect x="0.7216%" y="517" width="0.0144%" height="15" fill="rgb(238,160,17)" fg:x="2799" fg:w="56"/><text x="0.9716%" y="527.50"></text></g><g><title>BlockBegin::iterate_preorder (77 samples, 0.02%)</title><rect x="0.7204%" y="533" width="0.0199%" height="15" fill="rgb(214,148,48)" fg:x="2794" fg:w="77"/><text x="0.9704%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (100 samples, 0.03%)</title><rect x="0.7191%" y="549" width="0.0258%" height="15" fill="rgb(232,36,49)" fg:x="2789" fg:w="100"/><text x="0.9691%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (123 samples, 0.03%)</title><rect x="0.7167%" y="565" width="0.0317%" height="15" fill="rgb(209,103,24)" fg:x="2780" fg:w="123"/><text x="0.9667%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (130 samples, 0.03%)</title><rect x="0.7157%" y="581" width="0.0335%" height="15" fill="rgb(229,88,8)" fg:x="2776" fg:w="130"/><text x="0.9657%" y="591.50"></text></g><g><title>MethodLiveness::init_basic_blocks (72 samples, 0.02%)</title><rect x="0.7742%" y="517" width="0.0186%" height="15" fill="rgb(213,181,19)" fg:x="3003" fg:w="72"/><text x="1.0242%" y="527.50"></text></g><g><title>MethodLiveness::compute_liveness (109 samples, 0.03%)</title><rect x="0.7652%" y="533" width="0.0281%" height="15" fill="rgb(254,191,54)" fg:x="2968" fg:w="109"/><text x="1.0152%" y="543.50"></text></g><g><title>BlockListBuilder::set_leaders (147 samples, 0.04%)</title><rect x="0.7557%" y="565" width="0.0379%" height="15" fill="rgb(241,83,37)" fg:x="2931" fg:w="147"/><text x="1.0057%" y="575.50"></text></g><g><title>ciMethod::bci_block_start (112 samples, 0.03%)</title><rect x="0.7647%" y="549" width="0.0289%" height="15" fill="rgb(233,36,39)" fg:x="2966" fg:w="112"/><text x="1.0147%" y="559.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (162 samples, 0.04%)</title><rect x="0.7531%" y="581" width="0.0418%" height="15" fill="rgb(226,3,54)" fg:x="2921" fg:w="162"/><text x="1.0031%" y="591.50"></text></g><g><title>BlockBegin::try_merge (44 samples, 0.01%)</title><rect x="0.8245%" y="549" width="0.0113%" height="15" fill="rgb(245,192,40)" fg:x="3198" fg:w="44"/><text x="1.0745%" y="559.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (51 samples, 0.01%)</title><rect x="0.8642%" y="469" width="0.0131%" height="15" fill="rgb(238,167,29)" fg:x="3352" fg:w="51"/><text x="1.1142%" y="479.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (63 samples, 0.02%)</title><rect x="0.8619%" y="485" width="0.0162%" height="15" fill="rgb(232,182,51)" fg:x="3343" fg:w="63"/><text x="1.1119%" y="495.50"></text></g><g><title>ciField::ciField (102 samples, 0.03%)</title><rect x="0.8560%" y="501" width="0.0263%" height="15" fill="rgb(231,60,39)" fg:x="3320" fg:w="102"/><text x="1.1060%" y="511.50"></text></g><g><title>ciEnv::get_field_by_index (116 samples, 0.03%)</title><rect x="0.8531%" y="517" width="0.0299%" height="15" fill="rgb(208,69,12)" fg:x="3309" fg:w="116"/><text x="1.1031%" y="527.50"></text></g><g><title>ciBytecodeStream::get_field (140 samples, 0.04%)</title><rect x="0.8526%" y="533" width="0.0361%" height="15" fill="rgb(235,93,37)" fg:x="3307" fg:w="140"/><text x="1.1026%" y="543.50"></text></g><g><title>GraphBuilder::access_field (199 samples, 0.05%)</title><rect x="0.8400%" y="549" width="0.0513%" height="15" fill="rgb(213,116,39)" fg:x="3258" fg:w="199"/><text x="1.0900%" y="559.50"></text></g><g><title>BlockBegin::try_merge (52 samples, 0.01%)</title><rect x="0.9764%" y="469" width="0.0134%" height="15" fill="rgb(222,207,29)" fg:x="3787" fg:w="52"/><text x="1.2264%" y="479.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (44 samples, 0.01%)</title><rect x="1.0176%" y="389" width="0.0113%" height="15" fill="rgb(206,96,30)" fg:x="3947" fg:w="44"/><text x="1.2676%" y="399.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (59 samples, 0.02%)</title><rect x="1.0143%" y="405" width="0.0152%" height="15" fill="rgb(218,138,4)" fg:x="3934" fg:w="59"/><text x="1.2643%" y="415.50"></text></g><g><title>ciField::ciField (100 samples, 0.03%)</title><rect x="1.0076%" y="421" width="0.0258%" height="15" fill="rgb(250,191,14)" fg:x="3908" fg:w="100"/><text x="1.2576%" y="431.50"></text></g><g><title>ciEnv::get_field_by_index (116 samples, 0.03%)</title><rect x="1.0045%" y="437" width="0.0299%" height="15" fill="rgb(239,60,40)" fg:x="3896" fg:w="116"/><text x="1.2545%" y="447.50"></text></g><g><title>ciBytecodeStream::get_field (140 samples, 0.04%)</title><rect x="1.0032%" y="453" width="0.0361%" height="15" fill="rgb(206,27,48)" fg:x="3891" fg:w="140"/><text x="1.2532%" y="463.50"></text></g><g><title>GraphBuilder::access_field (196 samples, 0.05%)</title><rect x="0.9918%" y="469" width="0.0505%" height="15" fill="rgb(225,35,8)" fg:x="3847" fg:w="196"/><text x="1.2418%" y="479.50"></text></g><g><title>ciEnv::get_field_by_index (44 samples, 0.01%)</title><rect x="1.0903%" y="357" width="0.0113%" height="15" fill="rgb(250,213,24)" fg:x="4229" fg:w="44"/><text x="1.3403%" y="367.50"></text></g><g><title>ciBytecodeStream::get_field (50 samples, 0.01%)</title><rect x="1.0901%" y="373" width="0.0129%" height="15" fill="rgb(247,123,22)" fg:x="4228" fg:w="50"/><text x="1.3401%" y="383.50"></text></g><g><title>GraphBuilder::access_field (70 samples, 0.02%)</title><rect x="1.0857%" y="389" width="0.0180%" height="15" fill="rgb(231,138,38)" fg:x="4211" fg:w="70"/><text x="1.3357%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (45 samples, 0.01%)</title><rect x="1.1548%" y="197" width="0.0116%" height="15" fill="rgb(231,145,46)" fg:x="4479" fg:w="45"/><text x="1.4048%" y="207.50"></text></g><g><title>GraphBuilder::try_inline (48 samples, 0.01%)</title><rect x="1.1545%" y="213" width="0.0124%" height="15" fill="rgb(251,118,11)" fg:x="4478" fg:w="48"/><text x="1.4045%" y="223.50"></text></g><g><title>GraphBuilder::invoke (70 samples, 0.02%)</title><rect x="1.1538%" y="229" width="0.0180%" height="15" fill="rgb(217,147,25)" fg:x="4475" fg:w="70"/><text x="1.4038%" y="239.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (112 samples, 0.03%)</title><rect x="1.1471%" y="261" width="0.0289%" height="15" fill="rgb(247,81,37)" fg:x="4449" fg:w="112"/><text x="1.3971%" y="271.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (110 samples, 0.03%)</title><rect x="1.1476%" y="245" width="0.0284%" height="15" fill="rgb(209,12,38)" fg:x="4451" fg:w="110"/><text x="1.3976%" y="255.50"></text></g><g><title>GraphBuilder::try_inline_full (167 samples, 0.04%)</title><rect x="1.1429%" y="277" width="0.0431%" height="15" fill="rgb(227,1,9)" fg:x="4433" fg:w="167"/><text x="1.3929%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (181 samples, 0.05%)</title><rect x="1.1427%" y="293" width="0.0467%" height="15" fill="rgb(248,47,43)" fg:x="4432" fg:w="181"/><text x="1.3927%" y="303.50"></text></g><g><title>ciBytecodeStream::get_method (44 samples, 0.01%)</title><rect x="1.1914%" y="293" width="0.0113%" height="15" fill="rgb(221,10,30)" fg:x="4621" fg:w="44"/><text x="1.4414%" y="303.50"></text></g><g><title>ciEnv::get_method_by_index_impl (44 samples, 0.01%)</title><rect x="1.1914%" y="277" width="0.0113%" height="15" fill="rgb(210,229,1)" fg:x="4621" fg:w="44"/><text x="1.4414%" y="287.50"></text></g><g><title>GraphBuilder::invoke (254 samples, 0.07%)</title><rect x="1.1401%" y="309" width="0.0655%" height="15" fill="rgb(222,148,37)" fg:x="4422" fg:w="254"/><text x="1.3901%" y="319.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (353 samples, 0.09%)</title><rect x="1.1210%" y="341" width="0.0910%" height="15" fill="rgb(234,67,33)" fg:x="4348" fg:w="353"/><text x="1.3710%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (347 samples, 0.09%)</title><rect x="1.1226%" y="325" width="0.0895%" height="15" fill="rgb(247,98,35)" fg:x="4354" fg:w="347"/><text x="1.3726%" y="335.50"></text></g><g><title>GraphBuilder::push_scope (43 samples, 0.01%)</title><rect x="1.2133%" y="341" width="0.0111%" height="15" fill="rgb(247,138,52)" fg:x="4706" fg:w="43"/><text x="1.4633%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (459 samples, 0.12%)</title><rect x="1.1171%" y="357" width="0.1183%" height="15" fill="rgb(213,79,30)" fg:x="4333" fg:w="459"/><text x="1.3671%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (51 samples, 0.01%)</title><rect x="1.2368%" y="341" width="0.0131%" height="15" fill="rgb(246,177,23)" fg:x="4797" fg:w="51"/><text x="1.4868%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (51 samples, 0.01%)</title><rect x="1.2368%" y="325" width="0.0131%" height="15" fill="rgb(230,62,27)" fg:x="4797" fg:w="51"/><text x="1.4868%" y="335.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (51 samples, 0.01%)</title><rect x="1.2368%" y="309" width="0.0131%" height="15" fill="rgb(216,154,8)" fg:x="4797" fg:w="51"/><text x="1.4868%" y="319.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (51 samples, 0.01%)</title><rect x="1.2368%" y="293" width="0.0131%" height="15" fill="rgb(244,35,45)" fg:x="4797" fg:w="51"/><text x="1.4868%" y="303.50"></text></g><g><title>GraphBuilder::invoke (48 samples, 0.01%)</title><rect x="1.2376%" y="277" width="0.0124%" height="15" fill="rgb(251,115,12)" fg:x="4800" fg:w="48"/><text x="1.4876%" y="287.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (54 samples, 0.01%)</title><rect x="1.2365%" y="357" width="0.0139%" height="15" fill="rgb(240,54,50)" fg:x="4796" fg:w="54"/><text x="1.4865%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (519 samples, 0.13%)</title><rect x="1.1171%" y="373" width="0.1338%" height="15" fill="rgb(233,84,52)" fg:x="4333" fg:w="519"/><text x="1.3671%" y="383.50"></text></g><g><title>ciMethod::ciMethod (40 samples, 0.01%)</title><rect x="1.2675%" y="309" width="0.0103%" height="15" fill="rgb(207,117,47)" fg:x="4916" fg:w="40"/><text x="1.5175%" y="319.50"></text></g><g><title>ciObjectFactory::get_metadata (48 samples, 0.01%)</title><rect x="1.2657%" y="341" width="0.0124%" height="15" fill="rgb(249,43,39)" fg:x="4909" fg:w="48"/><text x="1.5157%" y="351.50"></text></g><g><title>ciObjectFactory::create_new_metadata (42 samples, 0.01%)</title><rect x="1.2672%" y="325" width="0.0108%" height="15" fill="rgb(209,38,44)" fg:x="4915" fg:w="42"/><text x="1.5172%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (92 samples, 0.02%)</title><rect x="1.2548%" y="373" width="0.0237%" height="15" fill="rgb(236,212,23)" fg:x="4867" fg:w="92"/><text x="1.5048%" y="383.50"></text></g><g><title>ciEnv::get_method_by_index_impl (88 samples, 0.02%)</title><rect x="1.2559%" y="357" width="0.0227%" height="15" fill="rgb(242,79,21)" fg:x="4871" fg:w="88"/><text x="1.5059%" y="367.50"></text></g><g><title>GraphBuilder::invoke (681 samples, 0.18%)</title><rect x="1.1102%" y="389" width="0.1756%" height="15" fill="rgb(211,96,35)" fg:x="4306" fg:w="681"/><text x="1.3602%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (885 samples, 0.23%)</title><rect x="1.0697%" y="421" width="0.2282%" height="15" fill="rgb(253,215,40)" fg:x="4149" fg:w="885"/><text x="1.3197%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (877 samples, 0.23%)</title><rect x="1.0718%" y="405" width="0.2261%" height="15" fill="rgb(211,81,21)" fg:x="4157" fg:w="877"/><text x="1.3218%" y="415.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (46 samples, 0.01%)</title><rect x="1.2997%" y="405" width="0.0119%" height="15" fill="rgb(208,190,38)" fg:x="5041" fg:w="46"/><text x="1.5497%" y="415.50"></text></g><g><title>GraphBuilder::push_scope (68 samples, 0.02%)</title><rect x="1.2989%" y="421" width="0.0175%" height="15" fill="rgb(235,213,38)" fg:x="5038" fg:w="68"/><text x="1.5489%" y="431.50"></text></g><g><title>ciMethodData::load_data (40 samples, 0.01%)</title><rect x="1.3221%" y="389" width="0.0103%" height="15" fill="rgb(237,122,38)" fg:x="5128" fg:w="40"/><text x="1.5721%" y="399.50"></text></g><g><title>ciMethod::ensure_method_data (58 samples, 0.01%)</title><rect x="1.3188%" y="421" width="0.0150%" height="15" fill="rgb(244,218,35)" fg:x="5115" fg:w="58"/><text x="1.5688%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (55 samples, 0.01%)</title><rect x="1.3195%" y="405" width="0.0142%" height="15" fill="rgb(240,68,47)" fg:x="5118" fg:w="55"/><text x="1.5695%" y="415.50"></text></g><g><title>GraphBuilder::try_inline_full (1,067 samples, 0.28%)</title><rect x="1.0602%" y="437" width="0.2751%" height="15" fill="rgb(210,16,53)" fg:x="4112" fg:w="1067"/><text x="1.3102%" y="447.50"></text></g><g><title>GraphBuilder::try_inline (1,110 samples, 0.29%)</title><rect x="1.0591%" y="453" width="0.2862%" height="15" fill="rgb(235,124,12)" fg:x="4108" fg:w="1110"/><text x="1.3091%" y="463.50"></text></g><g><title>ciEnv::lookup_method (44 samples, 0.01%)</title><rect x="1.3618%" y="421" width="0.0113%" height="15" fill="rgb(224,169,11)" fg:x="5282" fg:w="44"/><text x="1.6118%" y="431.50"></text></g><g><title>ciMethod::ciMethod (98 samples, 0.03%)</title><rect x="1.3778%" y="389" width="0.0253%" height="15" fill="rgb(250,166,2)" fg:x="5344" fg:w="98"/><text x="1.6278%" y="399.50"></text></g><g><title>ciSignature::ciSignature (83 samples, 0.02%)</title><rect x="1.3817%" y="373" width="0.0214%" height="15" fill="rgb(242,216,29)" fg:x="5359" fg:w="83"/><text x="1.6317%" y="383.50"></text></g><g><title>ciObjectFactory::get_metadata (118 samples, 0.03%)</title><rect x="1.3732%" y="421" width="0.0304%" height="15" fill="rgb(230,116,27)" fg:x="5326" fg:w="118"/><text x="1.6232%" y="431.50"></text></g><g><title>ciObjectFactory::create_new_metadata (105 samples, 0.03%)</title><rect x="1.3765%" y="405" width="0.0271%" height="15" fill="rgb(228,99,48)" fg:x="5339" fg:w="105"/><text x="1.6265%" y="415.50"></text></g><g><title>ciBytecodeStream::get_method (201 samples, 0.05%)</title><rect x="1.3525%" y="453" width="0.0518%" height="15" fill="rgb(253,11,6)" fg:x="5246" fg:w="201"/><text x="1.6025%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (190 samples, 0.05%)</title><rect x="1.3554%" y="437" width="0.0490%" height="15" fill="rgb(247,143,39)" fg:x="5257" fg:w="190"/><text x="1.6054%" y="447.50"></text></g><g><title>GraphBuilder::invoke (1,406 samples, 0.36%)</title><rect x="1.0493%" y="469" width="0.3625%" height="15" fill="rgb(236,97,10)" fg:x="4070" fg:w="1406"/><text x="1.2993%" y="479.50"></text></g><g><title>GraphBuilder::method_return (39 samples, 0.01%)</title><rect x="1.4136%" y="469" width="0.0101%" height="15" fill="rgb(233,208,19)" fg:x="5483" fg:w="39"/><text x="1.6636%" y="479.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,827 samples, 0.47%)</title><rect x="0.9619%" y="501" width="0.4710%" height="15" fill="rgb(216,164,2)" fg:x="3731" fg:w="1827"/><text x="1.2119%" y="511.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,808 samples, 0.47%)</title><rect x="0.9668%" y="485" width="0.4661%" height="15" fill="rgb(220,129,5)" fg:x="3750" fg:w="1808"/><text x="1.2168%" y="495.50"></text></g><g><title>BlockListBuilder::set_leaders (71 samples, 0.02%)</title><rect x="1.4446%" y="469" width="0.0183%" height="15" fill="rgb(242,17,10)" fg:x="5603" fg:w="71"/><text x="1.6946%" y="479.50"></text></g><g><title>ciMethod::bci_block_start (57 samples, 0.01%)</title><rect x="1.4482%" y="453" width="0.0147%" height="15" fill="rgb(242,107,0)" fg:x="5617" fg:w="57"/><text x="1.6982%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (55 samples, 0.01%)</title><rect x="1.4487%" y="437" width="0.0142%" height="15" fill="rgb(251,28,31)" fg:x="5619" fg:w="55"/><text x="1.6987%" y="447.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (99 samples, 0.03%)</title><rect x="1.4384%" y="485" width="0.0255%" height="15" fill="rgb(233,223,10)" fg:x="5579" fg:w="99"/><text x="1.6884%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (169 samples, 0.04%)</title><rect x="1.4361%" y="501" width="0.0436%" height="15" fill="rgb(215,21,27)" fg:x="5570" fg:w="169"/><text x="1.6861%" y="511.50"></text></g><g><title>Method::build_interpreter_method_data (55 samples, 0.01%)</title><rect x="1.4863%" y="469" width="0.0142%" height="15" fill="rgb(232,23,21)" fg:x="5765" fg:w="55"/><text x="1.7363%" y="479.50"></text></g><g><title>MethodData::allocate (55 samples, 0.01%)</title><rect x="1.4863%" y="453" width="0.0142%" height="15" fill="rgb(244,5,23)" fg:x="5765" fg:w="55"/><text x="1.7363%" y="463.50"></text></g><g><title>ciMethodData::load_data (64 samples, 0.02%)</title><rect x="1.5005%" y="469" width="0.0165%" height="15" fill="rgb(226,81,46)" fg:x="5820" fg:w="64"/><text x="1.7505%" y="479.50"></text></g><g><title>ciMethod::ensure_method_data (152 samples, 0.04%)</title><rect x="1.4838%" y="501" width="0.0392%" height="15" fill="rgb(247,70,30)" fg:x="5755" fg:w="152"/><text x="1.7338%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (143 samples, 0.04%)</title><rect x="1.4861%" y="485" width="0.0369%" height="15" fill="rgb(212,68,19)" fg:x="5764" fg:w="143"/><text x="1.7361%" y="495.50"></text></g><g><title>GraphBuilder::try_inline_full (2,252 samples, 0.58%)</title><rect x="0.9441%" y="517" width="0.5806%" height="15" fill="rgb(240,187,13)" fg:x="3662" fg:w="2252"/><text x="1.1941%" y="527.50"></text></g><g><title>GraphBuilder::try_inline (2,277 samples, 0.59%)</title><rect x="0.9408%" y="533" width="0.5871%" height="15" fill="rgb(223,113,26)" fg:x="3649" fg:w="2277"/><text x="1.1908%" y="543.50"></text></g><g><title>ciEnv::lookup_method (105 samples, 0.03%)</title><rect x="1.5570%" y="501" width="0.0271%" height="15" fill="rgb(206,192,2)" fg:x="6039" fg:w="105"/><text x="1.8070%" y="511.50"></text></g><g><title>SignatureStream::as_symbol (44 samples, 0.01%)</title><rect x="1.6049%" y="437" width="0.0113%" height="15" fill="rgb(241,108,4)" fg:x="6225" fg:w="44"/><text x="1.8549%" y="447.50"></text></g><g><title>SymbolTable::lookup (44 samples, 0.01%)</title><rect x="1.6049%" y="421" width="0.0113%" height="15" fill="rgb(247,173,49)" fg:x="6225" fg:w="44"/><text x="1.8549%" y="431.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (55 samples, 0.01%)</title><rect x="1.6194%" y="437" width="0.0142%" height="15" fill="rgb(224,114,35)" fg:x="6281" fg:w="55"/><text x="1.8694%" y="447.50"></text></g><g><title>ciMethod::ciMethod (188 samples, 0.05%)</title><rect x="1.5903%" y="469" width="0.0485%" height="15" fill="rgb(245,159,27)" fg:x="6168" fg:w="188"/><text x="1.8403%" y="479.50"></text></g><g><title>ciSignature::ciSignature (154 samples, 0.04%)</title><rect x="1.5990%" y="453" width="0.0397%" height="15" fill="rgb(245,172,44)" fg:x="6202" fg:w="154"/><text x="1.8490%" y="463.50"></text></g><g><title>ciObjectFactory::get_metadata (216 samples, 0.06%)</title><rect x="1.5841%" y="501" width="0.0557%" height="15" fill="rgb(236,23,11)" fg:x="6144" fg:w="216"/><text x="1.8341%" y="511.50"></text></g><g><title>ciObjectFactory::create_new_metadata (201 samples, 0.05%)</title><rect x="1.5879%" y="485" width="0.0518%" height="15" fill="rgb(205,117,38)" fg:x="6159" fg:w="201"/><text x="1.8379%" y="495.50"></text></g><g><title>ciBytecodeStream::get_method (391 samples, 0.10%)</title><rect x="1.5405%" y="533" width="0.1008%" height="15" fill="rgb(237,72,25)" fg:x="5975" fg:w="391"/><text x="1.7905%" y="543.50"></text></g><g><title>ciEnv::get_method_by_index_impl (366 samples, 0.09%)</title><rect x="1.5469%" y="517" width="0.0944%" height="15" fill="rgb(244,70,9)" fg:x="6000" fg:w="366"/><text x="1.7969%" y="527.50"></text></g><g><title>Dependencies::find_unique_concrete_method (45 samples, 0.01%)</title><rect x="1.6449%" y="517" width="0.0116%" height="15" fill="rgb(217,125,39)" fg:x="6380" fg:w="45"/><text x="1.8949%" y="527.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (45 samples, 0.01%)</title><rect x="1.6449%" y="501" width="0.0116%" height="15" fill="rgb(235,36,10)" fg:x="6380" fg:w="45"/><text x="1.8949%" y="511.50"></text></g><g><title>ClassHierarchyWalker::is_witness (44 samples, 0.01%)</title><rect x="1.6452%" y="485" width="0.0113%" height="15" fill="rgb(251,123,47)" fg:x="6381" fg:w="44"/><text x="1.8952%" y="495.50"></text></g><g><title>ciMethod::find_monomorphic_target (62 samples, 0.02%)</title><rect x="1.6449%" y="533" width="0.0160%" height="15" fill="rgb(221,13,13)" fg:x="6380" fg:w="62"/><text x="1.8949%" y="543.50"></text></g><g><title>GraphBuilder::invoke (2,890 samples, 0.75%)</title><rect x="0.9181%" y="549" width="0.7451%" height="15" fill="rgb(238,131,9)" fg:x="3561" fg:w="2890"/><text x="1.1681%" y="559.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,422 samples, 0.88%)</title><rect x="0.8088%" y="565" width="0.8823%" height="15" fill="rgb(211,50,8)" fg:x="3137" fg:w="3422"/><text x="1.0588%" y="575.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,477 samples, 0.90%)</title><rect x="0.7977%" y="581" width="0.8965%" height="15" fill="rgb(245,182,24)" fg:x="3094" fg:w="3477"/><text x="1.0477%" y="591.50"></text></g><g><title>GraphBuilder::setup_start_block (40 samples, 0.01%)</title><rect x="1.6947%" y="581" width="0.0103%" height="15" fill="rgb(242,14,37)" fg:x="6573" fg:w="40"/><text x="1.9447%" y="591.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,860 samples, 1.00%)</title><rect x="0.7147%" y="597" width="0.9952%" height="15" fill="rgb(246,228,12)" fg:x="2772" fg:w="3860"/><text x="0.9647%" y="607.50"></text></g><g><title>IR::IR (3,881 samples, 1.00%)</title><rect x="0.7139%" y="613" width="1.0006%" height="15" fill="rgb(213,55,15)" fg:x="2769" fg:w="3881"/><text x="0.9639%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (72 samples, 0.02%)</title><rect x="1.7148%" y="597" width="0.0186%" height="15" fill="rgb(209,9,3)" fg:x="6651" fg:w="72"/><text x="1.9648%" y="607.50"></text></g><g><title>IR::compute_code (79 samples, 0.02%)</title><rect x="1.7145%" y="613" width="0.0204%" height="15" fill="rgb(230,59,30)" fg:x="6650" fg:w="79"/><text x="1.9645%" y="623.50"></text></g><g><title>BlockList::iterate_backward (113 samples, 0.03%)</title><rect x="1.7354%" y="597" width="0.0291%" height="15" fill="rgb(209,121,21)" fg:x="6731" fg:w="113"/><text x="1.9854%" y="607.50"></text></g><g><title>UseCountComputer::block_do (109 samples, 0.03%)</title><rect x="1.7364%" y="581" width="0.0281%" height="15" fill="rgb(220,109,13)" fg:x="6735" fg:w="109"/><text x="1.9864%" y="591.50"></text></g><g><title>ValueStack::values_do (39 samples, 0.01%)</title><rect x="1.7545%" y="565" width="0.0101%" height="15" fill="rgb(232,18,1)" fg:x="6805" fg:w="39"/><text x="2.0045%" y="575.50"></text></g><g><title>ValueStack::pin_stack_for_linear_scan (41 samples, 0.01%)</title><rect x="1.7653%" y="597" width="0.0106%" height="15" fill="rgb(215,41,42)" fg:x="6847" fg:w="41"/><text x="2.0153%" y="607.50"></text></g><g><title>IR::compute_use_counts (160 samples, 0.04%)</title><rect x="1.7349%" y="613" width="0.0413%" height="15" fill="rgb(224,123,36)" fg:x="6729" fg:w="160"/><text x="1.9849%" y="623.50"></text></g><g><title>NullCheckEliminator::iterate_one (168 samples, 0.04%)</title><rect x="1.7836%" y="581" width="0.0433%" height="15" fill="rgb(240,125,3)" fg:x="6918" fg:w="168"/><text x="2.0336%" y="591.50"></text></g><g><title>IR::eliminate_null_checks (210 samples, 0.05%)</title><rect x="1.7761%" y="613" width="0.0541%" height="15" fill="rgb(205,98,50)" fg:x="6889" fg:w="210"/><text x="2.0261%" y="623.50"></text></g><g><title>Optimizer::eliminate_null_checks (210 samples, 0.05%)</title><rect x="1.7761%" y="597" width="0.0541%" height="15" fill="rgb(205,185,37)" fg:x="6889" fg:w="210"/><text x="2.0261%" y="607.50"></text></g><g><title>IR::optimize_blocks (67 samples, 0.02%)</title><rect x="1.8303%" y="613" width="0.0173%" height="15" fill="rgb(238,207,15)" fg:x="7099" fg:w="67"/><text x="2.0803%" y="623.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (53 samples, 0.01%)</title><rect x="1.8339%" y="597" width="0.0137%" height="15" fill="rgb(213,199,42)" fg:x="7113" fg:w="53"/><text x="2.0839%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.8339%" y="581" width="0.0137%" height="15" fill="rgb(235,201,11)" fg:x="7113" fg:w="53"/><text x="2.0839%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (53 samples, 0.01%)</title><rect x="1.8339%" y="565" width="0.0137%" height="15" fill="rgb(207,46,11)" fg:x="7113" fg:w="53"/><text x="2.0839%" y="575.50"></text></g><g><title>BlockBegin::insert_block_between (44 samples, 0.01%)</title><rect x="1.8476%" y="597" width="0.0113%" height="15" fill="rgb(241,35,35)" fg:x="7166" fg:w="44"/><text x="2.0976%" y="607.50"></text></g><g><title>IR::split_critical_edges (79 samples, 0.02%)</title><rect x="1.8476%" y="613" width="0.0204%" height="15" fill="rgb(243,32,47)" fg:x="7166" fg:w="79"/><text x="2.0976%" y="623.50"></text></g><g><title>Compilation::build_hir (4,919 samples, 1.27%)</title><rect x="0.6100%" y="629" width="1.2682%" height="15" fill="rgb(247,202,23)" fg:x="2366" fg:w="4919"/><text x="0.8600%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (48 samples, 0.01%)</title><rect x="1.9146%" y="581" width="0.0124%" height="15" fill="rgb(219,102,11)" fg:x="7426" fg:w="48"/><text x="2.1646%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (47 samples, 0.01%)</title><rect x="1.9149%" y="565" width="0.0121%" height="15" fill="rgb(243,110,44)" fg:x="7427" fg:w="47"/><text x="2.1649%" y="575.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (39 samples, 0.01%)</title><rect x="1.9319%" y="533" width="0.0101%" height="15" fill="rgb(222,74,54)" fg:x="7493" fg:w="39"/><text x="2.1819%" y="543.50"></text></g><g><title>CodeEmitInfo::record_debug_info (93 samples, 0.02%)</title><rect x="1.9288%" y="549" width="0.0240%" height="15" fill="rgb(216,99,12)" fg:x="7481" fg:w="93"/><text x="2.1788%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (95 samples, 0.02%)</title><rect x="1.9285%" y="565" width="0.0245%" height="15" fill="rgb(226,22,26)" fg:x="7480" fg:w="95"/><text x="2.1785%" y="575.50"></text></g><g><title>LIR_Assembler::call (106 samples, 0.03%)</title><rect x="1.9272%" y="581" width="0.0273%" height="15" fill="rgb(217,163,10)" fg:x="7475" fg:w="106"/><text x="2.1772%" y="591.50"></text></g><g><title>LIR_Assembler::emit_call (208 samples, 0.05%)</title><rect x="1.9118%" y="597" width="0.0536%" height="15" fill="rgb(213,25,53)" fg:x="7415" fg:w="208"/><text x="2.1618%" y="607.50"></text></g><g><title>LIR_Assembler::emit_op0 (47 samples, 0.01%)</title><rect x="1.9654%" y="597" width="0.0121%" height="15" fill="rgb(252,105,26)" fg:x="7623" fg:w="47"/><text x="2.2154%" y="607.50"></text></g><g><title>LIR_Assembler::mem2reg (43 samples, 0.01%)</title><rect x="1.9919%" y="581" width="0.0111%" height="15" fill="rgb(220,39,43)" fg:x="7726" fg:w="43"/><text x="2.2419%" y="591.50"></text></g><g><title>LIR_Assembler::emit_op1 (184 samples, 0.05%)</title><rect x="1.9775%" y="597" width="0.0474%" height="15" fill="rgb(229,68,48)" fg:x="7670" fg:w="184"/><text x="2.2275%" y="607.50"></text></g><g><title>LIR_Assembler::emit_profile_call (75 samples, 0.02%)</title><rect x="2.0322%" y="597" width="0.0193%" height="15" fill="rgb(252,8,32)" fg:x="7882" fg:w="75"/><text x="2.2822%" y="607.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (41 samples, 0.01%)</title><rect x="2.0747%" y="597" width="0.0106%" height="15" fill="rgb(223,20,43)" fg:x="8047" fg:w="41"/><text x="2.3247%" y="607.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (41 samples, 0.01%)</title><rect x="2.0747%" y="581" width="0.0106%" height="15" fill="rgb(229,81,49)" fg:x="8047" fg:w="41"/><text x="2.3247%" y="591.50"></text></g><g><title>LIR_Assembler::emit_code (787 samples, 0.20%)</title><rect x="1.8831%" y="613" width="0.2029%" height="15" fill="rgb(236,28,36)" fg:x="7304" fg:w="787"/><text x="2.1331%" y="623.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (46 samples, 0.01%)</title><rect x="2.0904%" y="613" width="0.0119%" height="15" fill="rgb(249,185,26)" fg:x="8108" fg:w="46"/><text x="2.3404%" y="623.50"></text></g><g><title>MacroAssembler::stop (39 samples, 0.01%)</title><rect x="2.0922%" y="597" width="0.0101%" height="15" fill="rgb(249,174,33)" fg:x="8115" fg:w="39"/><text x="2.3422%" y="607.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (41 samples, 0.01%)</title><rect x="2.1116%" y="549" width="0.0106%" height="15" fill="rgb(233,201,37)" fg:x="8190" fg:w="41"/><text x="2.3616%" y="559.50"></text></g><g><title>LIR_Assembler::add_call_info (113 samples, 0.03%)</title><rect x="2.1059%" y="581" width="0.0291%" height="15" fill="rgb(221,78,26)" fg:x="8168" fg:w="113"/><text x="2.3559%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (111 samples, 0.03%)</title><rect x="2.1064%" y="565" width="0.0286%" height="15" fill="rgb(250,127,30)" fg:x="8170" fg:w="111"/><text x="2.3564%" y="575.50"></text></g><g><title>CounterOverflowStub::emit_code (145 samples, 0.04%)</title><rect x="2.1046%" y="597" width="0.0374%" height="15" fill="rgb(230,49,44)" fg:x="8163" fg:w="145"/><text x="2.3546%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (63 samples, 0.02%)</title><rect x="2.1490%" y="565" width="0.0162%" height="15" fill="rgb(229,67,23)" fg:x="8335" fg:w="63"/><text x="2.3990%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (64 samples, 0.02%)</title><rect x="2.1490%" y="581" width="0.0165%" height="15" fill="rgb(249,83,47)" fg:x="8335" fg:w="64"/><text x="2.3990%" y="591.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (80 samples, 0.02%)</title><rect x="2.1456%" y="597" width="0.0206%" height="15" fill="rgb(215,43,3)" fg:x="8322" fg:w="80"/><text x="2.3956%" y="607.50"></text></g><g><title>PatchingStub::emit_code (44 samples, 0.01%)</title><rect x="2.1755%" y="597" width="0.0113%" height="15" fill="rgb(238,154,13)" fg:x="8438" fg:w="44"/><text x="2.4255%" y="607.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (347 samples, 0.09%)</title><rect x="2.1023%" y="613" width="0.0895%" height="15" fill="rgb(219,56,2)" fg:x="8154" fg:w="347"/><text x="2.3523%" y="623.50"></text></g><g><title>Compilation::emit_code_body (1,231 samples, 0.32%)</title><rect x="1.8782%" y="629" width="0.3174%" height="15" fill="rgb(233,0,4)" fg:x="7285" fg:w="1231"/><text x="2.1282%" y="639.50"></text></g><g><title>LIRGenerator::do_Base (99 samples, 0.03%)</title><rect x="2.2165%" y="581" width="0.0255%" height="15" fill="rgb(235,30,7)" fg:x="8597" fg:w="99"/><text x="2.4665%" y="591.50"></text></g><g><title>LIRGenerator::move_to_phi (48 samples, 0.01%)</title><rect x="2.2534%" y="549" width="0.0124%" height="15" fill="rgb(250,79,13)" fg:x="8740" fg:w="48"/><text x="2.5034%" y="559.50"></text></g><g><title>PhiResolver::create_node (41 samples, 0.01%)</title><rect x="2.2552%" y="533" width="0.0106%" height="15" fill="rgb(211,146,34)" fg:x="8747" fg:w="41"/><text x="2.5052%" y="543.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (64 samples, 0.02%)</title><rect x="2.3018%" y="533" width="0.0165%" height="15" fill="rgb(228,22,38)" fg:x="8928" fg:w="64"/><text x="2.5518%" y="543.50"></text></g><g><title>LIRGenerator::move_to_phi (268 samples, 0.07%)</title><rect x="2.2495%" y="565" width="0.0691%" height="15" fill="rgb(235,168,5)" fg:x="8725" fg:w="268"/><text x="2.4995%" y="575.50"></text></g><g><title>PhiResolverState::reset (201 samples, 0.05%)</title><rect x="2.2668%" y="549" width="0.0518%" height="15" fill="rgb(221,155,16)" fg:x="8792" fg:w="201"/><text x="2.5168%" y="559.50"></text></g><g><title>LIRGenerator::do_Goto (307 samples, 0.08%)</title><rect x="2.2443%" y="581" width="0.0792%" height="15" fill="rgb(215,215,53)" fg:x="8705" fg:w="307"/><text x="2.4943%" y="591.50"></text></g><g><title>LIRGenerator::do_If (69 samples, 0.02%)</title><rect x="2.3235%" y="581" width="0.0178%" height="15" fill="rgb(223,4,10)" fg:x="9012" fg:w="69"/><text x="2.5735%" y="591.50"></text></g><g><title>LIRGenerator::state_for (55 samples, 0.01%)</title><rect x="2.3632%" y="565" width="0.0142%" height="15" fill="rgb(234,103,6)" fg:x="9166" fg:w="55"/><text x="2.6132%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (142 samples, 0.04%)</title><rect x="2.3423%" y="581" width="0.0366%" height="15" fill="rgb(227,97,0)" fg:x="9085" fg:w="142"/><text x="2.5923%" y="591.50"></text></g><g><title>LIRGenerator::do_NewInstance (40 samples, 0.01%)</title><rect x="2.3903%" y="581" width="0.0103%" height="15" fill="rgb(234,150,53)" fg:x="9271" fg:w="40"/><text x="2.6403%" y="591.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (40 samples, 0.01%)</title><rect x="2.4163%" y="565" width="0.0103%" height="15" fill="rgb(228,201,54)" fg:x="9372" fg:w="40"/><text x="2.6663%" y="575.50"></text></g><g><title>LIRGenerator::state_for (56 samples, 0.01%)</title><rect x="2.4266%" y="565" width="0.0144%" height="15" fill="rgb(222,22,37)" fg:x="9412" fg:w="56"/><text x="2.6766%" y="575.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (117 samples, 0.03%)</title><rect x="2.4145%" y="581" width="0.0302%" height="15" fill="rgb(237,53,32)" fg:x="9365" fg:w="117"/><text x="2.6645%" y="591.50"></text></g><g><title>LIRGenerator::do_StoreField (42 samples, 0.01%)</title><rect x="2.4467%" y="581" width="0.0108%" height="15" fill="rgb(233,25,53)" fg:x="9490" fg:w="42"/><text x="2.6967%" y="591.50"></text></g><g><title>LIRGenerator::block_do (1,040 samples, 0.27%)</title><rect x="2.1982%" y="597" width="0.2681%" height="15" fill="rgb(210,40,34)" fg:x="8526" fg:w="1040"/><text x="2.4482%" y="607.50"></text></g><g><title>BlockList::iterate_forward (1,044 samples, 0.27%)</title><rect x="2.1977%" y="613" width="0.2692%" height="15" fill="rgb(241,220,44)" fg:x="8524" fg:w="1044"/><text x="2.4477%" y="623.50"></text></g><g><title>IntervalWalker::walk_to (149 samples, 0.04%)</title><rect x="2.5048%" y="565" width="0.0384%" height="15" fill="rgb(235,28,35)" fg:x="9715" fg:w="149"/><text x="2.7548%" y="575.50"></text></g><g><title>LinearScanWalker::find_free_reg (133 samples, 0.03%)</title><rect x="2.5744%" y="533" width="0.0343%" height="15" fill="rgb(210,56,17)" fg:x="9985" fg:w="133"/><text x="2.8244%" y="543.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (168 samples, 0.04%)</title><rect x="2.6159%" y="533" width="0.0433%" height="15" fill="rgb(224,130,29)" fg:x="10146" fg:w="168"/><text x="2.8659%" y="543.50"></text></g><g><title>Interval::split (53 samples, 0.01%)</title><rect x="2.6628%" y="517" width="0.0137%" height="15" fill="rgb(235,212,8)" fg:x="10328" fg:w="53"/><text x="2.9128%" y="527.50"></text></g><g><title>LinearScanWalker::split_before_usage (80 samples, 0.02%)</title><rect x="2.6592%" y="533" width="0.0206%" height="15" fill="rgb(223,33,50)" fg:x="10314" fg:w="80"/><text x="2.9092%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (502 samples, 0.13%)</title><rect x="2.5519%" y="549" width="0.1294%" height="15" fill="rgb(219,149,13)" fg:x="9898" fg:w="502"/><text x="2.8019%" y="559.50"></text></g><g><title>IntervalWalker::append_to_unhandled (48 samples, 0.01%)</title><rect x="2.6919%" y="517" width="0.0124%" height="15" fill="rgb(250,156,29)" fg:x="10441" fg:w="48"/><text x="2.9419%" y="527.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (81 samples, 0.02%)</title><rect x="2.6917%" y="533" width="0.0209%" height="15" fill="rgb(216,193,19)" fg:x="10440" fg:w="81"/><text x="2.9417%" y="543.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (154 samples, 0.04%)</title><rect x="2.6814%" y="549" width="0.0397%" height="15" fill="rgb(216,135,14)" fg:x="10400" fg:w="154"/><text x="2.9314%" y="559.50"></text></g><g><title>LinearScanWalker::insert_move (50 samples, 0.01%)</title><rect x="2.7296%" y="549" width="0.0129%" height="15" fill="rgb(241,47,5)" fg:x="10587" fg:w="50"/><text x="2.9796%" y="559.50"></text></g><g><title>LinearScanWalker::activate_current (782 samples, 0.20%)</title><rect x="2.5432%" y="565" width="0.2016%" height="15" fill="rgb(233,42,35)" fg:x="9864" fg:w="782"/><text x="2.7932%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (988 samples, 0.25%)</title><rect x="2.4908%" y="581" width="0.2547%" height="15" fill="rgb(231,13,6)" fg:x="9661" fg:w="988"/><text x="2.7408%" y="591.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (41 samples, 0.01%)</title><rect x="2.7458%" y="581" width="0.0106%" height="15" fill="rgb(207,181,40)" fg:x="10650" fg:w="41"/><text x="2.9958%" y="591.50"></text></g><g><title>LinearScan::allocate_registers (1,052 samples, 0.27%)</title><rect x="2.4854%" y="597" width="0.2712%" height="15" fill="rgb(254,173,49)" fg:x="9640" fg:w="1052"/><text x="2.7354%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (85 samples, 0.02%)</title><rect x="2.8033%" y="565" width="0.0219%" height="15" fill="rgb(221,1,38)" fg:x="10873" fg:w="85"/><text x="3.0533%" y="575.50"></text></g><g><title>LinearScan::color_lir_opr (64 samples, 0.02%)</title><rect x="2.8268%" y="565" width="0.0165%" height="15" fill="rgb(206,124,46)" fg:x="10964" fg:w="64"/><text x="3.0768%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (47 samples, 0.01%)</title><rect x="2.8750%" y="533" width="0.0121%" height="15" fill="rgb(249,21,11)" fg:x="11151" fg:w="47"/><text x="3.1250%" y="543.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (105 samples, 0.03%)</title><rect x="2.8626%" y="549" width="0.0271%" height="15" fill="rgb(222,201,40)" fg:x="11103" fg:w="105"/><text x="3.1126%" y="559.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (194 samples, 0.05%)</title><rect x="2.8433%" y="565" width="0.0500%" height="15" fill="rgb(235,61,29)" fg:x="11028" fg:w="194"/><text x="3.0933%" y="575.50"></text></g><g><title>IntervalWalker::walk_to (122 samples, 0.03%)</title><rect x="2.9051%" y="533" width="0.0315%" height="15" fill="rgb(219,207,3)" fg:x="11268" fg:w="122"/><text x="3.1551%" y="543.50"></text></g><g><title>LinearScan::compute_oop_map (218 samples, 0.06%)</title><rect x="2.8933%" y="565" width="0.0562%" height="15" fill="rgb(222,56,46)" fg:x="11222" fg:w="218"/><text x="3.1433%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (199 samples, 0.05%)</title><rect x="2.8982%" y="549" width="0.0513%" height="15" fill="rgb(239,76,54)" fg:x="11241" fg:w="199"/><text x="3.1482%" y="559.50"></text></g><g><title>LinearScan::assign_reg_num (746 samples, 0.19%)</title><rect x="2.7574%" y="581" width="0.1923%" height="15" fill="rgb(231,124,27)" fg:x="10695" fg:w="746"/><text x="3.0074%" y="591.50"></text></g><g><title>LinearScan::assign_reg_num (784 samples, 0.20%)</title><rect x="2.7566%" y="597" width="0.2021%" height="15" fill="rgb(249,195,6)" fg:x="10692" fg:w="784"/><text x="3.0066%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (83 samples, 0.02%)</title><rect x="3.0457%" y="581" width="0.0214%" height="15" fill="rgb(237,174,47)" fg:x="11813" fg:w="83"/><text x="3.2957%" y="591.50"></text></g><g><title>LinearScan::add_def (91 samples, 0.02%)</title><rect x="3.0671%" y="581" width="0.0235%" height="15" fill="rgb(206,201,31)" fg:x="11896" fg:w="91"/><text x="3.3171%" y="591.50"></text></g><g><title>Interval::Interval (42 samples, 0.01%)</title><rect x="3.1135%" y="549" width="0.0108%" height="15" fill="rgb(231,57,52)" fg:x="12076" fg:w="42"/><text x="3.3635%" y="559.50"></text></g><g><title>LinearScan::create_interval (59 samples, 0.02%)</title><rect x="3.1106%" y="565" width="0.0152%" height="15" fill="rgb(248,177,22)" fg:x="12065" fg:w="59"/><text x="3.3606%" y="575.50"></text></g><g><title>LinearScan::add_temp (108 samples, 0.03%)</title><rect x="3.0983%" y="581" width="0.0278%" height="15" fill="rgb(215,211,37)" fg:x="12017" fg:w="108"/><text x="3.3483%" y="591.50"></text></g><g><title>Interval::add_range (41 samples, 0.01%)</title><rect x="3.1411%" y="565" width="0.0106%" height="15" fill="rgb(241,128,51)" fg:x="12183" fg:w="41"/><text x="3.3911%" y="575.50"></text></g><g><title>Interval::Interval (51 samples, 0.01%)</title><rect x="3.1563%" y="549" width="0.0131%" height="15" fill="rgb(227,165,31)" fg:x="12242" fg:w="51"/><text x="3.4063%" y="559.50"></text></g><g><title>LinearScan::create_interval (79 samples, 0.02%)</title><rect x="3.1519%" y="565" width="0.0204%" height="15" fill="rgb(228,167,24)" fg:x="12225" fg:w="79"/><text x="3.4019%" y="575.50"></text></g><g><title>LinearScan::add_use (181 samples, 0.05%)</title><rect x="3.1261%" y="581" width="0.0467%" height="15" fill="rgb(228,143,12)" fg:x="12125" fg:w="181"/><text x="3.3761%" y="591.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (40 samples, 0.01%)</title><rect x="3.1746%" y="581" width="0.0103%" height="15" fill="rgb(249,149,8)" fg:x="12313" fg:w="40"/><text x="3.4246%" y="591.50"></text></g><g><title>LinearScan::build_intervals (916 samples, 0.24%)</title><rect x="2.9588%" y="597" width="0.2362%" height="15" fill="rgb(243,35,44)" fg:x="11476" fg:w="916"/><text x="3.2088%" y="607.50"></text></g><g><title>LinearScan::compute_global_live_sets (74 samples, 0.02%)</title><rect x="3.1949%" y="597" width="0.0191%" height="15" fill="rgb(246,89,9)" fg:x="12392" fg:w="74"/><text x="3.4449%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (112 samples, 0.03%)</title><rect x="3.2496%" y="581" width="0.0289%" height="15" fill="rgb(233,213,13)" fg:x="12604" fg:w="112"/><text x="3.4996%" y="591.50"></text></g><g><title>LinearScan::compute_local_live_sets (318 samples, 0.08%)</title><rect x="3.2140%" y="597" width="0.0820%" height="15" fill="rgb(233,141,41)" fg:x="12466" fg:w="318"/><text x="3.4640%" y="607.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (47 samples, 0.01%)</title><rect x="3.2839%" y="581" width="0.0121%" height="15" fill="rgb(239,167,4)" fg:x="12737" fg:w="47"/><text x="3.5339%" y="591.50"></text></g><g><title>LinearScan::eliminate_spill_moves (86 samples, 0.02%)</title><rect x="3.2960%" y="597" width="0.0222%" height="15" fill="rgb(209,217,16)" fg:x="12784" fg:w="86"/><text x="3.5460%" y="607.50"></text></g><g><title>LinearScan::number_instructions (52 samples, 0.01%)</title><rect x="3.3182%" y="597" width="0.0134%" height="15" fill="rgb(219,88,35)" fg:x="12870" fg:w="52"/><text x="3.5682%" y="607.50"></text></g><g><title>Interval::split_child_at_op_id (47 samples, 0.01%)</title><rect x="3.3566%" y="565" width="0.0121%" height="15" fill="rgb(220,193,23)" fg:x="13019" fg:w="47"/><text x="3.6066%" y="575.50"></text></g><g><title>LinearScan::resolve_collect_mappings (103 samples, 0.03%)</title><rect x="3.3424%" y="581" width="0.0266%" height="15" fill="rgb(230,90,52)" fg:x="12964" fg:w="103"/><text x="3.5924%" y="591.50"></text></g><g><title>LinearScan::resolve_data_flow (160 samples, 0.04%)</title><rect x="3.3324%" y="597" width="0.0413%" height="15" fill="rgb(252,106,19)" fg:x="12925" fg:w="160"/><text x="3.5824%" y="607.50"></text></g><g><title>LinearScan::resolve_exception_handlers (42 samples, 0.01%)</title><rect x="3.3736%" y="597" width="0.0108%" height="15" fill="rgb(206,74,20)" fg:x="13085" fg:w="42"/><text x="3.6236%" y="607.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (51 samples, 0.01%)</title><rect x="3.3844%" y="597" width="0.0131%" height="15" fill="rgb(230,138,44)" fg:x="13127" fg:w="51"/><text x="3.6344%" y="607.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (55 samples, 0.01%)</title><rect x="3.3976%" y="597" width="0.0142%" height="15" fill="rgb(235,182,43)" fg:x="13178" fg:w="55"/><text x="3.6476%" y="607.50"></text></g><g><title>LinearScan::do_linear_scan (3,625 samples, 0.93%)</title><rect x="2.4777%" y="613" width="0.9346%" height="15" fill="rgb(242,16,51)" fg:x="9610" fg:w="3625"/><text x="2.7277%" y="623.50"></text></g><g><title>Compilation::emit_lir (4,727 samples, 1.22%)</title><rect x="2.1956%" y="629" width="1.2187%" height="15" fill="rgb(248,9,4)" fg:x="8516" fg:w="4727"/><text x="2.4456%" y="639.50"></text></g><g><title>Method::build_interpreter_method_data (44 samples, 0.01%)</title><rect x="3.4231%" y="597" width="0.0113%" height="15" fill="rgb(210,31,22)" fg:x="13277" fg:w="44"/><text x="3.6731%" y="607.50"></text></g><g><title>MethodData::allocate (44 samples, 0.01%)</title><rect x="3.4231%" y="581" width="0.0113%" height="15" fill="rgb(239,54,39)" fg:x="13277" fg:w="44"/><text x="3.6731%" y="591.50"></text></g><g><title>ciMethodData::load_data (50 samples, 0.01%)</title><rect x="3.4347%" y="597" width="0.0129%" height="15" fill="rgb(230,99,41)" fg:x="13322" fg:w="50"/><text x="3.6847%" y="607.50"></text></g><g><title>ciMethod::ensure_method_data (104 samples, 0.03%)</title><rect x="3.4229%" y="613" width="0.0268%" height="15" fill="rgb(253,106,12)" fg:x="13276" fg:w="104"/><text x="3.6729%" y="623.50"></text></g><g><title>Compilation::compile_java_method (11,021 samples, 2.84%)</title><rect x="0.6085%" y="645" width="2.8415%" height="15" fill="rgb(213,46,41)" fg:x="2360" fg:w="11021"/><text x="0.8585%" y="655.50">Co..</text></g><g><title>ciMethod::ensure_method_data (107 samples, 0.03%)</title><rect x="3.4223%" y="629" width="0.0276%" height="15" fill="rgb(215,133,35)" fg:x="13274" fg:w="107"/><text x="3.6723%" y="639.50"></text></g><g><title>Compilation::initialize (48 samples, 0.01%)</title><rect x="3.4499%" y="645" width="0.0124%" height="15" fill="rgb(213,28,5)" fg:x="13381" fg:w="48"/><text x="3.6999%" y="655.50"></text></g><g><title>CodeBuffer::finalize_oop_references (93 samples, 0.02%)</title><rect x="3.4775%" y="613" width="0.0240%" height="15" fill="rgb(215,77,49)" fg:x="13488" fg:w="93"/><text x="3.7275%" y="623.50"></text></g><g><title>CodeHeap::allocate (50 samples, 0.01%)</title><rect x="3.5015%" y="597" width="0.0129%" height="15" fill="rgb(248,100,22)" fg:x="13581" fg:w="50"/><text x="3.7515%" y="607.50"></text></g><g><title>CodeCache::allocate (83 samples, 0.02%)</title><rect x="3.5015%" y="613" width="0.0214%" height="15" fill="rgb(208,67,9)" fg:x="13581" fg:w="83"/><text x="3.7515%" y="623.50"></text></g><g><title>___pthread_cond_signal (41 samples, 0.01%)</title><rect x="3.5309%" y="613" width="0.0106%" height="15" fill="rgb(219,133,21)" fg:x="13695" fg:w="41"/><text x="3.7809%" y="623.50"></text></g><g><title>futex_wake (40 samples, 0.01%)</title><rect x="3.5311%" y="597" width="0.0103%" height="15" fill="rgb(246,46,29)" fg:x="13696" fg:w="40"/><text x="3.7811%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="3.5314%" y="581" width="0.0101%" height="15" fill="rgb(246,185,52)" fg:x="13697" fg:w="39"/><text x="3.7814%" y="591.50"></text></g><g><title>__memmove_sse2_unaligned_erms (45 samples, 0.01%)</title><rect x="3.5678%" y="565" width="0.0116%" height="15" fill="rgb(252,136,11)" fg:x="13838" fg:w="45"/><text x="3.8178%" y="575.50"></text></g><g><title>CodeBuffer::relocate_code_to (139 samples, 0.04%)</title><rect x="3.5440%" y="581" width="0.0358%" height="15" fill="rgb(219,138,53)" fg:x="13746" fg:w="139"/><text x="3.7940%" y="591.50"></text></g><g><title>CodeBuffer::copy_code_to (154 samples, 0.04%)</title><rect x="3.5433%" y="597" width="0.0397%" height="15" fill="rgb(211,51,23)" fg:x="13743" fg:w="154"/><text x="3.7933%" y="607.50"></text></g><g><title>CodeBlob::CodeBlob (39 samples, 0.01%)</title><rect x="3.5868%" y="581" width="0.0101%" height="15" fill="rgb(247,221,28)" fg:x="13912" fg:w="39"/><text x="3.8368%" y="591.50"></text></g><g><title>ImmutableOopMapSet::build_from (39 samples, 0.01%)</title><rect x="3.5868%" y="565" width="0.0101%" height="15" fill="rgb(251,222,45)" fg:x="13912" fg:w="39"/><text x="3.8368%" y="575.50"></text></g><g><title>CompiledMethod::CompiledMethod (47 samples, 0.01%)</title><rect x="3.5855%" y="597" width="0.0121%" height="15" fill="rgb(217,162,53)" fg:x="13907" fg:w="47"/><text x="3.8355%" y="607.50"></text></g><g><title>G1CollectedHeap::register_nmethod (44 samples, 0.01%)</title><rect x="3.5997%" y="597" width="0.0113%" height="15" fill="rgb(229,93,14)" fg:x="13962" fg:w="44"/><text x="3.8497%" y="607.50"></text></g><g><title>nmethod::oops_do (44 samples, 0.01%)</title><rect x="3.5997%" y="581" width="0.0113%" height="15" fill="rgb(209,67,49)" fg:x="13962" fg:w="44"/><text x="3.8497%" y="591.50"></text></g><g><title>nmethod::nmethod (323 samples, 0.08%)</title><rect x="3.5415%" y="613" width="0.0833%" height="15" fill="rgb(213,87,29)" fg:x="13736" fg:w="323"/><text x="3.7915%" y="623.50"></text></g><g><title>nmethod::new_nmethod (586 samples, 0.15%)</title><rect x="3.4749%" y="629" width="0.1511%" height="15" fill="rgb(205,151,52)" fg:x="13478" fg:w="586"/><text x="3.7249%" y="639.50"></text></g><g><title>ciEnv::register_method (637 samples, 0.16%)</title><rect x="3.4626%" y="645" width="0.1642%" height="15" fill="rgb(253,215,39)" fg:x="13430" fg:w="637"/><text x="3.7126%" y="655.50"></text></g><g><title>Compilation::compile_method (11,718 samples, 3.02%)</title><rect x="0.6061%" y="661" width="3.0212%" height="15" fill="rgb(221,220,41)" fg:x="2351" fg:w="11718"/><text x="0.8561%" y="671.50">Com..</text></g><g><title>Compilation::Compilation (11,735 samples, 3.03%)</title><rect x="0.6049%" y="677" width="3.0256%" height="15" fill="rgb(218,133,21)" fg:x="2346" fg:w="11735"/><text x="0.8549%" y="687.50">Com..</text></g><g><title>Compiler::compile_method (11,749 samples, 3.03%)</title><rect x="0.6018%" y="693" width="3.0292%" height="15" fill="rgb(221,193,43)" fg:x="2334" fg:w="11749"/><text x="0.8518%" y="703.50">Com..</text></g><g><title>ciEnv::ciEnv (120 samples, 0.03%)</title><rect x="3.6376%" y="693" width="0.0309%" height="15" fill="rgb(240,128,52)" fg:x="14109" fg:w="120"/><text x="3.8876%" y="703.50"></text></g><g><title>ciObjectFactory::get (80 samples, 0.02%)</title><rect x="3.6479%" y="677" width="0.0206%" height="15" fill="rgb(253,114,12)" fg:x="14149" fg:w="80"/><text x="3.8979%" y="687.50"></text></g><g><title>ciObjectFactory::get_metadata (42 samples, 0.01%)</title><rect x="3.6577%" y="661" width="0.0108%" height="15" fill="rgb(215,223,47)" fg:x="14187" fg:w="42"/><text x="3.9077%" y="671.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (42 samples, 0.01%)</title><rect x="3.6874%" y="613" width="0.0108%" height="15" fill="rgb(248,225,23)" fg:x="14302" fg:w="42"/><text x="3.9374%" y="623.50"></text></g><g><title>ciSignature::ciSignature (105 samples, 0.03%)</title><rect x="3.6753%" y="629" width="0.0271%" height="15" fill="rgb(250,108,0)" fg:x="14255" fg:w="105"/><text x="3.9253%" y="639.50"></text></g><g><title>ciMethod::ciMethod (118 samples, 0.03%)</title><rect x="3.6722%" y="645" width="0.0304%" height="15" fill="rgb(228,208,7)" fg:x="14243" fg:w="118"/><text x="3.9222%" y="655.50"></text></g><g><title>ciEnv::get_method_from_handle (149 samples, 0.04%)</title><rect x="3.6686%" y="693" width="0.0384%" height="15" fill="rgb(244,45,10)" fg:x="14229" fg:w="149"/><text x="3.9186%" y="703.50"></text></g><g><title>ciObjectFactory::get_metadata (144 samples, 0.04%)</title><rect x="3.6699%" y="677" width="0.0371%" height="15" fill="rgb(207,125,25)" fg:x="14234" fg:w="144"/><text x="3.9199%" y="687.50"></text></g><g><title>ciObjectFactory::create_new_metadata (138 samples, 0.04%)</title><rect x="3.6714%" y="661" width="0.0356%" height="15" fill="rgb(210,195,18)" fg:x="14240" fg:w="138"/><text x="3.9214%" y="671.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (12,351 samples, 3.18%)</title><rect x="0.5332%" y="709" width="3.1844%" height="15" fill="rgb(249,80,12)" fg:x="2068" fg:w="12351"/><text x="0.7832%" y="719.50">Com..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (48 samples, 0.01%)</title><rect x="3.7175%" y="709" width="0.0124%" height="15" fill="rgb(221,65,9)" fg:x="14419" fg:w="48"/><text x="3.9675%" y="719.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.01%)</title><rect x="3.7382%" y="485" width="0.0124%" height="15" fill="rgb(235,49,36)" fg:x="14499" fg:w="48"/><text x="3.9882%" y="495.50"></text></g><g><title>__x64_sys_futex (53 samples, 0.01%)</title><rect x="3.7379%" y="533" width="0.0137%" height="15" fill="rgb(225,32,20)" fg:x="14498" fg:w="53"/><text x="3.9879%" y="543.50"></text></g><g><title>do_futex (52 samples, 0.01%)</title><rect x="3.7382%" y="517" width="0.0134%" height="15" fill="rgb(215,141,46)" fg:x="14499" fg:w="52"/><text x="3.9882%" y="527.50"></text></g><g><title>futex_wait (52 samples, 0.01%)</title><rect x="3.7382%" y="501" width="0.0134%" height="15" fill="rgb(250,160,47)" fg:x="14499" fg:w="52"/><text x="3.9882%" y="511.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="3.7377%" y="565" width="0.0150%" height="15" fill="rgb(216,222,40)" fg:x="14497" fg:w="58"/><text x="3.9877%" y="575.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="3.7377%" y="549" width="0.0150%" height="15" fill="rgb(234,217,39)" fg:x="14497" fg:w="58"/><text x="3.9877%" y="559.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (62 samples, 0.02%)</title><rect x="3.7369%" y="613" width="0.0160%" height="15" fill="rgb(207,178,40)" fg:x="14494" fg:w="62"/><text x="3.9869%" y="623.50"></text></g><g><title>__futex_abstimed_wait_common (62 samples, 0.02%)</title><rect x="3.7369%" y="597" width="0.0160%" height="15" fill="rgb(221,136,13)" fg:x="14494" fg:w="62"/><text x="3.9869%" y="607.50"></text></g><g><title>__futex_abstimed_wait_common64 (62 samples, 0.02%)</title><rect x="3.7369%" y="581" width="0.0160%" height="15" fill="rgb(249,199,10)" fg:x="14494" fg:w="62"/><text x="3.9869%" y="591.50"></text></g><g><title>___pthread_cond_timedwait64 (64 samples, 0.02%)</title><rect x="3.7369%" y="645" width="0.0165%" height="15" fill="rgb(249,222,13)" fg:x="14494" fg:w="64"/><text x="3.9869%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (64 samples, 0.02%)</title><rect x="3.7369%" y="629" width="0.0165%" height="15" fill="rgb(244,185,38)" fg:x="14494" fg:w="64"/><text x="3.9869%" y="639.50"></text></g><g><title>Monitor::wait (73 samples, 0.02%)</title><rect x="3.7359%" y="693" width="0.0188%" height="15" fill="rgb(236,202,9)" fg:x="14490" fg:w="73"/><text x="3.9859%" y="703.50"></text></g><g><title>Monitor::IWait (70 samples, 0.02%)</title><rect x="3.7366%" y="677" width="0.0180%" height="15" fill="rgb(250,229,37)" fg:x="14493" fg:w="70"/><text x="3.9866%" y="687.50"></text></g><g><title>os::PlatformEvent::park (69 samples, 0.02%)</title><rect x="3.7369%" y="661" width="0.0178%" height="15" fill="rgb(206,174,23)" fg:x="14494" fg:w="69"/><text x="3.9869%" y="671.50"></text></g><g><title>TieredThresholdPolicy::select_task (64 samples, 0.02%)</title><rect x="3.7547%" y="693" width="0.0165%" height="15" fill="rgb(211,33,43)" fg:x="14563" fg:w="64"/><text x="4.0047%" y="703.50"></text></g><g><title>CompileQueue::get (165 samples, 0.04%)</title><rect x="3.7299%" y="709" width="0.0425%" height="15" fill="rgb(245,58,50)" fg:x="14467" fg:w="165"/><text x="3.9799%" y="719.50"></text></g><g><title>__clone3 (12,585 samples, 3.24%)</title><rect x="0.5301%" y="805" width="3.2447%" height="15" fill="rgb(244,68,36)" fg:x="2056" fg:w="12585"/><text x="0.7801%" y="815.50">__c..</text></g><g><title>start_thread (12,583 samples, 3.24%)</title><rect x="0.5306%" y="789" width="3.2442%" height="15" fill="rgb(232,229,15)" fg:x="2058" fg:w="12583"/><text x="0.7806%" y="799.50">sta..</text></g><g><title>thread_native_entry (12,583 samples, 3.24%)</title><rect x="0.5306%" y="773" width="3.2442%" height="15" fill="rgb(254,30,23)" fg:x="2058" fg:w="12583"/><text x="0.7806%" y="783.50">thr..</text></g><g><title>Thread::call_run (12,583 samples, 3.24%)</title><rect x="0.5306%" y="757" width="3.2442%" height="15" fill="rgb(235,160,14)" fg:x="2058" fg:w="12583"/><text x="0.7806%" y="767.50">Thr..</text></g><g><title>JavaThread::thread_main_inner (12,582 samples, 3.24%)</title><rect x="0.5309%" y="741" width="3.2439%" height="15" fill="rgb(212,155,44)" fg:x="2059" fg:w="12582"/><text x="0.7809%" y="751.50">Jav..</text></g><g><title>CompileBroker::compiler_thread_loop (12,582 samples, 3.24%)</title><rect x="0.5309%" y="725" width="3.2439%" height="15" fill="rgb(226,2,50)" fg:x="2059" fg:w="12582"/><text x="0.7809%" y="735.50">Com..</text></g><g><title>C1_CompilerThre (14,509 samples, 3.74%)</title><rect x="0.0495%" y="821" width="3.7408%" height="15" fill="rgb(234,177,6)" fg:x="192" fg:w="14509"/><text x="0.2995%" y="831.50">C1_C..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (53 samples, 0.01%)</title><rect x="3.8194%" y="805" width="0.0137%" height="15" fill="rgb(217,24,9)" fg:x="14814" fg:w="53"/><text x="4.0694%" y="815.50"></text></g><g><title>RegMask::is_UP (52 samples, 0.01%)</title><rect x="3.8196%" y="789" width="0.0134%" height="15" fill="rgb(220,13,46)" fg:x="14815" fg:w="52"/><text x="4.0696%" y="799.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (46 samples, 0.01%)</title><rect x="3.8333%" y="805" width="0.0119%" height="15" fill="rgb(239,221,27)" fg:x="14868" fg:w="46"/><text x="4.0833%" y="815.50"></text></g><g><title>ProjNode::pinned (138 samples, 0.04%)</title><rect x="3.8761%" y="789" width="0.0356%" height="15" fill="rgb(222,198,25)" fg:x="15034" fg:w="138"/><text x="4.1261%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (141 samples, 0.04%)</title><rect x="3.8756%" y="805" width="0.0364%" height="15" fill="rgb(211,99,13)" fg:x="15032" fg:w="141"/><text x="4.1256%" y="815.50"></text></g><g><title>IfFalseNode::Opcode (45 samples, 0.01%)</title><rect x="4.1664%" y="789" width="0.0116%" height="15" fill="rgb(232,111,31)" fg:x="16160" fg:w="45"/><text x="4.4164%" y="799.50"></text></g><g><title>IndexSetIterator::advance_and_next (100 samples, 0.03%)</title><rect x="4.2095%" y="789" width="0.0258%" height="15" fill="rgb(245,82,37)" fg:x="16327" fg:w="100"/><text x="4.4595%" y="799.50"></text></g><g><title>MultiNode::is_CFG (96 samples, 0.02%)</title><rect x="4.3985%" y="789" width="0.0248%" height="15" fill="rgb(227,149,46)" fg:x="17060" fg:w="96"/><text x="4.6485%" y="799.50"></text></g><g><title>Node::is_CFG (92 samples, 0.02%)</title><rect x="4.4511%" y="789" width="0.0237%" height="15" fill="rgb(218,36,50)" fg:x="17264" fg:w="92"/><text x="4.7011%" y="799.50"></text></g><g><title>Node::pinned (49 samples, 0.01%)</title><rect x="4.4913%" y="789" width="0.0126%" height="15" fill="rgb(226,80,48)" fg:x="17420" fg:w="49"/><text x="4.7413%" y="799.50"></text></g><g><title>PhiNode::Opcode (59 samples, 0.02%)</title><rect x="4.6320%" y="789" width="0.0152%" height="15" fill="rgb(238,224,15)" fg:x="17966" fg:w="59"/><text x="4.8820%" y="799.50"></text></g><g><title>ProjNode::is_CFG (54 samples, 0.01%)</title><rect x="4.6725%" y="789" width="0.0139%" height="15" fill="rgb(241,136,10)" fg:x="18123" fg:w="54"/><text x="4.9225%" y="799.50"></text></g><g><title>ProjNode::pinned (41 samples, 0.01%)</title><rect x="4.6870%" y="789" width="0.0106%" height="15" fill="rgb(208,32,45)" fg:x="18179" fg:w="41"/><text x="4.9370%" y="799.50"></text></g><g><title>RegionNode::is_CFG (69 samples, 0.02%)</title><rect x="4.7457%" y="789" width="0.0178%" height="15" fill="rgb(207,135,9)" fg:x="18407" fg:w="69"/><text x="4.9957%" y="799.50"></text></g><g><title>TypeNode::bottom_type (41 samples, 0.01%)</title><rect x="4.8852%" y="789" width="0.0106%" height="15" fill="rgb(206,86,44)" fg:x="18948" fg:w="41"/><text x="5.1352%" y="799.50"></text></g><g><title>_dl_update_slotinfo (193 samples, 0.05%)</title><rect x="4.9448%" y="789" width="0.0498%" height="15" fill="rgb(245,177,15)" fg:x="19179" fg:w="193"/><text x="5.1948%" y="799.50"></text></g><g><title>find_lowest_bit (80 samples, 0.02%)</title><rect x="5.0796%" y="789" width="0.0206%" height="15" fill="rgb(206,64,50)" fg:x="19702" fg:w="80"/><text x="5.3296%" y="799.50"></text></g><g><title>jmpDirNode::is_block_proj (42 samples, 0.01%)</title><rect x="5.1168%" y="789" width="0.0108%" height="15" fill="rgb(234,36,40)" fg:x="19846" fg:w="42"/><text x="5.3668%" y="799.50"></text></g><g><title>update_get_addr (99 samples, 0.03%)</title><rect x="5.2103%" y="789" width="0.0255%" height="15" fill="rgb(213,64,8)" fg:x="20209" fg:w="99"/><text x="5.4603%" y="799.50"></text></g><g><title>[anon] (5,086 samples, 1.31%)</title><rect x="3.9272%" y="805" width="1.3113%" height="15" fill="rgb(210,75,36)" fg:x="15232" fg:w="5086"/><text x="4.1772%" y="815.50"></text></g><g><title>ciTypeFlow::df_flow_types (41 samples, 0.01%)</title><rect x="5.2604%" y="565" width="0.0106%" height="15" fill="rgb(229,88,21)" fg:x="20403" fg:w="41"/><text x="5.5104%" y="575.50"></text></g><g><title>Compile::call_generator (54 samples, 0.01%)</title><rect x="5.2575%" y="645" width="0.0139%" height="15" fill="rgb(252,204,47)" fg:x="20392" fg:w="54"/><text x="5.5075%" y="655.50"></text></g><g><title>InlineTree::ok_to_inline (54 samples, 0.01%)</title><rect x="5.2575%" y="629" width="0.0139%" height="15" fill="rgb(208,77,27)" fg:x="20392" fg:w="54"/><text x="5.5075%" y="639.50"></text></g><g><title>ciMethod::get_flow_analysis (49 samples, 0.01%)</title><rect x="5.2588%" y="613" width="0.0126%" height="15" fill="rgb(221,76,26)" fg:x="20397" fg:w="49"/><text x="5.5088%" y="623.50"></text></g><g><title>ciTypeFlow::do_flow (45 samples, 0.01%)</title><rect x="5.2598%" y="597" width="0.0116%" height="15" fill="rgb(225,139,18)" fg:x="20401" fg:w="45"/><text x="5.5098%" y="607.50"></text></g><g><title>ciTypeFlow::flow_types (45 samples, 0.01%)</title><rect x="5.2598%" y="581" width="0.0116%" height="15" fill="rgb(230,137,11)" fg:x="20401" fg:w="45"/><text x="5.5098%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (40 samples, 0.01%)</title><rect x="5.2807%" y="533" width="0.0103%" height="15" fill="rgb(212,28,1)" fg:x="20482" fg:w="40"/><text x="5.5307%" y="543.50"></text></g><g><title>ciBytecodeStream::get_field (39 samples, 0.01%)</title><rect x="5.2810%" y="517" width="0.0101%" height="15" fill="rgb(248,164,17)" fg:x="20483" fg:w="39"/><text x="5.5310%" y="527.50"></text></g><g><title>ciMethod::ciMethod (44 samples, 0.01%)</title><rect x="5.2993%" y="453" width="0.0113%" height="15" fill="rgb(222,171,42)" fg:x="20554" fg:w="44"/><text x="5.5493%" y="463.50"></text></g><g><title>ciBytecodeStream::get_method (75 samples, 0.02%)</title><rect x="5.2916%" y="517" width="0.0193%" height="15" fill="rgb(243,84,45)" fg:x="20524" fg:w="75"/><text x="5.5416%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (69 samples, 0.02%)</title><rect x="5.2931%" y="501" width="0.0178%" height="15" fill="rgb(252,49,23)" fg:x="20530" fg:w="69"/><text x="5.5431%" y="511.50"></text></g><g><title>ciObjectFactory::get_metadata (50 samples, 0.01%)</title><rect x="5.2980%" y="485" width="0.0129%" height="15" fill="rgb(215,19,7)" fg:x="20549" fg:w="50"/><text x="5.5480%" y="495.50"></text></g><g><title>ciObjectFactory::create_new_metadata (46 samples, 0.01%)</title><rect x="5.2990%" y="469" width="0.0119%" height="15" fill="rgb(238,81,41)" fg:x="20553" fg:w="46"/><text x="5.5490%" y="479.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (79 samples, 0.02%)</title><rect x="5.2910%" y="533" width="0.0204%" height="15" fill="rgb(210,199,37)" fg:x="20522" fg:w="79"/><text x="5.5410%" y="543.50"></text></g><g><title>ciTypeFlow::df_flow_types (158 samples, 0.04%)</title><rect x="5.2743%" y="581" width="0.0407%" height="15" fill="rgb(244,192,49)" fg:x="20457" fg:w="158"/><text x="5.5243%" y="591.50"></text></g><g><title>ciTypeFlow::flow_block (158 samples, 0.04%)</title><rect x="5.2743%" y="565" width="0.0407%" height="15" fill="rgb(226,211,11)" fg:x="20457" fg:w="158"/><text x="5.5243%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (141 samples, 0.04%)</title><rect x="5.2787%" y="549" width="0.0364%" height="15" fill="rgb(236,162,54)" fg:x="20474" fg:w="141"/><text x="5.5287%" y="559.50"></text></g><g><title>InlineTree::ok_to_inline (171 samples, 0.04%)</title><rect x="5.2714%" y="645" width="0.0441%" height="15" fill="rgb(220,229,9)" fg:x="20446" fg:w="171"/><text x="5.5214%" y="655.50"></text></g><g><title>ciMethod::get_flow_analysis (161 samples, 0.04%)</title><rect x="5.2740%" y="629" width="0.0415%" height="15" fill="rgb(250,87,22)" fg:x="20456" fg:w="161"/><text x="5.5240%" y="639.50"></text></g><g><title>ciTypeFlow::do_flow (161 samples, 0.04%)</title><rect x="5.2740%" y="613" width="0.0415%" height="15" fill="rgb(239,43,17)" fg:x="20456" fg:w="161"/><text x="5.5240%" y="623.50"></text></g><g><title>ciTypeFlow::flow_types (161 samples, 0.04%)</title><rect x="5.2740%" y="597" width="0.0415%" height="15" fill="rgb(231,177,25)" fg:x="20456" fg:w="161"/><text x="5.5240%" y="607.50"></text></g><g><title>Compile::call_generator (229 samples, 0.06%)</title><rect x="5.2575%" y="661" width="0.0590%" height="15" fill="rgb(219,179,1)" fg:x="20392" fg:w="229"/><text x="5.5075%" y="671.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (60 samples, 0.02%)</title><rect x="5.3728%" y="437" width="0.0155%" height="15" fill="rgb(238,219,53)" fg:x="20839" fg:w="60"/><text x="5.6228%" y="447.50"></text></g><g><title>ciBytecodeStream::get_method (57 samples, 0.01%)</title><rect x="5.3735%" y="421" width="0.0147%" height="15" fill="rgb(232,167,36)" fg:x="20842" fg:w="57"/><text x="5.6235%" y="431.50"></text></g><g><title>ciEnv::get_method_by_index_impl (55 samples, 0.01%)</title><rect x="5.3741%" y="405" width="0.0142%" height="15" fill="rgb(244,19,51)" fg:x="20844" fg:w="55"/><text x="5.6241%" y="415.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (96 samples, 0.02%)</title><rect x="5.3653%" y="453" width="0.0248%" height="15" fill="rgb(224,6,22)" fg:x="20810" fg:w="96"/><text x="5.6153%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (130 samples, 0.03%)</title><rect x="5.3570%" y="485" width="0.0335%" height="15" fill="rgb(224,145,5)" fg:x="20778" fg:w="130"/><text x="5.6070%" y="495.50"></text></g><g><title>ciTypeFlow::flow_block (120 samples, 0.03%)</title><rect x="5.3596%" y="469" width="0.0309%" height="15" fill="rgb(234,130,49)" fg:x="20788" fg:w="120"/><text x="5.6096%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (144 samples, 0.04%)</title><rect x="5.3552%" y="517" width="0.0371%" height="15" fill="rgb(254,6,2)" fg:x="20771" fg:w="144"/><text x="5.6052%" y="527.50"></text></g><g><title>ciTypeFlow::flow_types (144 samples, 0.04%)</title><rect x="5.3552%" y="501" width="0.0371%" height="15" fill="rgb(208,96,46)" fg:x="20771" fg:w="144"/><text x="5.6052%" y="511.50"></text></g><g><title>ciMethod::get_flow_analysis (154 samples, 0.04%)</title><rect x="5.3534%" y="533" width="0.0397%" height="15" fill="rgb(239,3,39)" fg:x="20764" fg:w="154"/><text x="5.6034%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (191 samples, 0.05%)</title><rect x="5.3442%" y="549" width="0.0492%" height="15" fill="rgb(233,210,1)" fg:x="20728" fg:w="191"/><text x="5.5942%" y="559.50"></text></g><g><title>Compile::call_generator (230 samples, 0.06%)</title><rect x="5.3359%" y="565" width="0.0593%" height="15" fill="rgb(244,137,37)" fg:x="20696" fg:w="230"/><text x="5.5859%" y="575.50"></text></g><g><title>Parse::create_entry_map (39 samples, 0.01%)</title><rect x="5.4249%" y="533" width="0.0101%" height="15" fill="rgb(240,136,2)" fg:x="21041" fg:w="39"/><text x="5.6749%" y="543.50"></text></g><g><title>ciTypeFlow::do_flow (39 samples, 0.01%)</title><rect x="5.4669%" y="421" width="0.0101%" height="15" fill="rgb(239,18,37)" fg:x="21204" fg:w="39"/><text x="5.7169%" y="431.50"></text></g><g><title>ciTypeFlow::flow_types (39 samples, 0.01%)</title><rect x="5.4669%" y="405" width="0.0101%" height="15" fill="rgb(218,185,22)" fg:x="21204" fg:w="39"/><text x="5.7169%" y="415.50"></text></g><g><title>InlineTree::ok_to_inline (76 samples, 0.02%)</title><rect x="5.4576%" y="453" width="0.0196%" height="15" fill="rgb(225,218,4)" fg:x="21168" fg:w="76"/><text x="5.7076%" y="463.50"></text></g><g><title>ciMethod::get_flow_analysis (46 samples, 0.01%)</title><rect x="5.4653%" y="437" width="0.0119%" height="15" fill="rgb(230,182,32)" fg:x="21198" fg:w="46"/><text x="5.7153%" y="447.50"></text></g><g><title>Compile::call_generator (92 samples, 0.02%)</title><rect x="5.4545%" y="469" width="0.0237%" height="15" fill="rgb(242,56,43)" fg:x="21156" fg:w="92"/><text x="5.7045%" y="479.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.02%)</title><rect x="5.5512%" y="325" width="0.0157%" height="15" fill="rgb(233,99,24)" fg:x="21531" fg:w="61"/><text x="5.8012%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (59 samples, 0.02%)</title><rect x="5.5517%" y="309" width="0.0152%" height="15" fill="rgb(234,209,42)" fg:x="21533" fg:w="59"/><text x="5.8017%" y="319.50"></text></g><g><title>Parse::do_all_blocks (70 samples, 0.02%)</title><rect x="5.5509%" y="341" width="0.0180%" height="15" fill="rgb(227,7,12)" fg:x="21530" fg:w="70"/><text x="5.8009%" y="351.50"></text></g><g><title>ParseGenerator::generate (120 samples, 0.03%)</title><rect x="5.5442%" y="373" width="0.0309%" height="15" fill="rgb(245,203,43)" fg:x="21504" fg:w="120"/><text x="5.7942%" y="383.50"></text></g><g><title>Parse::Parse (120 samples, 0.03%)</title><rect x="5.5442%" y="357" width="0.0309%" height="15" fill="rgb(238,205,33)" fg:x="21504" fg:w="120"/><text x="5.7942%" y="367.50"></text></g><g><title>Parse::do_call (263 samples, 0.07%)</title><rect x="5.5208%" y="389" width="0.0678%" height="15" fill="rgb(231,56,7)" fg:x="21413" fg:w="263"/><text x="5.7708%" y="399.50"></text></g><g><title>Parse::do_field_access (75 samples, 0.02%)</title><rect x="5.5899%" y="389" width="0.0193%" height="15" fill="rgb(244,186,29)" fg:x="21681" fg:w="75"/><text x="5.8399%" y="399.50"></text></g><g><title>Parse::do_one_block (475 samples, 0.12%)</title><rect x="5.5071%" y="421" width="0.1225%" height="15" fill="rgb(234,111,31)" fg:x="21360" fg:w="475"/><text x="5.7571%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (462 samples, 0.12%)</title><rect x="5.5105%" y="405" width="0.1191%" height="15" fill="rgb(241,149,10)" fg:x="21373" fg:w="462"/><text x="5.7605%" y="415.50"></text></g><g><title>Parse::do_all_blocks (487 samples, 0.13%)</title><rect x="5.5056%" y="437" width="0.1256%" height="15" fill="rgb(249,206,44)" fg:x="21354" fg:w="487"/><text x="5.7556%" y="447.50"></text></g><g><title>ParseGenerator::generate (570 samples, 0.15%)</title><rect x="5.4950%" y="469" width="0.1470%" height="15" fill="rgb(251,153,30)" fg:x="21313" fg:w="570"/><text x="5.7450%" y="479.50"></text></g><g><title>Parse::Parse (569 samples, 0.15%)</title><rect x="5.4952%" y="453" width="0.1467%" height="15" fill="rgb(239,152,38)" fg:x="21314" fg:w="569"/><text x="5.7452%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (66 samples, 0.02%)</title><rect x="5.6419%" y="469" width="0.0170%" height="15" fill="rgb(249,139,47)" fg:x="21883" fg:w="66"/><text x="5.8919%" y="479.50"></text></g><g><title>Parse::do_call (831 samples, 0.21%)</title><rect x="5.4540%" y="485" width="0.2143%" height="15" fill="rgb(244,64,35)" fg:x="21154" fg:w="831"/><text x="5.7040%" y="495.50"></text></g><g><title>Parse::do_get_xxx (56 samples, 0.01%)</title><rect x="5.6734%" y="469" width="0.0144%" height="15" fill="rgb(216,46,15)" fg:x="22005" fg:w="56"/><text x="5.9234%" y="479.50"></text></g><g><title>Parse::do_put_xxx (44 samples, 0.01%)</title><rect x="5.6878%" y="469" width="0.0113%" height="15" fill="rgb(250,74,19)" fg:x="22061" fg:w="44"/><text x="5.9378%" y="479.50"></text></g><g><title>Parse::do_field_access (124 samples, 0.03%)</title><rect x="5.6713%" y="485" width="0.0320%" height="15" fill="rgb(249,42,33)" fg:x="21997" fg:w="124"/><text x="5.9213%" y="495.50"></text></g><g><title>Parse::do_if (45 samples, 0.01%)</title><rect x="5.7033%" y="485" width="0.0116%" height="15" fill="rgb(242,149,17)" fg:x="22121" fg:w="45"/><text x="5.9533%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (1,138 samples, 0.29%)</title><rect x="5.4398%" y="501" width="0.2934%" height="15" fill="rgb(244,29,21)" fg:x="21099" fg:w="1138"/><text x="5.6898%" y="511.50"></text></g><g><title>Parse::do_one_block (1,155 samples, 0.30%)</title><rect x="5.4357%" y="517" width="0.2978%" height="15" fill="rgb(220,130,37)" fg:x="21083" fg:w="1155"/><text x="5.6857%" y="527.50"></text></g><g><title>Parse::do_all_blocks (1,168 samples, 0.30%)</title><rect x="5.4349%" y="533" width="0.3011%" height="15" fill="rgb(211,67,2)" fg:x="21080" fg:w="1168"/><text x="5.6849%" y="543.50"></text></g><g><title>ParseGenerator::generate (1,280 samples, 0.33%)</title><rect x="5.4174%" y="565" width="0.3300%" height="15" fill="rgb(235,68,52)" fg:x="21012" fg:w="1280"/><text x="5.6674%" y="575.50"></text></g><g><title>Parse::Parse (1,279 samples, 0.33%)</title><rect x="5.4176%" y="549" width="0.3298%" height="15" fill="rgb(246,142,3)" fg:x="21013" fg:w="1279"/><text x="5.6676%" y="559.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="5.7644%" y="405" width="0.0108%" height="15" fill="rgb(241,25,7)" fg:x="22358" fg:w="42"/><text x="6.0144%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (40 samples, 0.01%)</title><rect x="5.7649%" y="389" width="0.0103%" height="15" fill="rgb(242,119,39)" fg:x="22360" fg:w="40"/><text x="6.0149%" y="399.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.01%)</title><rect x="5.7644%" y="421" width="0.0119%" height="15" fill="rgb(241,98,45)" fg:x="22358" fg:w="46"/><text x="6.0144%" y="431.50"></text></g><g><title>ParseGenerator::generate (57 samples, 0.01%)</title><rect x="5.7621%" y="453" width="0.0147%" height="15" fill="rgb(254,28,30)" fg:x="22349" fg:w="57"/><text x="6.0121%" y="463.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="5.7623%" y="437" width="0.0144%" height="15" fill="rgb(241,142,54)" fg:x="22350" fg:w="56"/><text x="6.0123%" y="447.50"></text></g><g><title>Parse::do_call (98 samples, 0.03%)</title><rect x="5.7559%" y="469" width="0.0253%" height="15" fill="rgb(222,85,15)" fg:x="22325" fg:w="98"/><text x="6.0059%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (135 samples, 0.03%)</title><rect x="5.7546%" y="485" width="0.0348%" height="15" fill="rgb(210,85,47)" fg:x="22320" fg:w="135"/><text x="6.0046%" y="495.50"></text></g><g><title>Parse::do_one_block (138 samples, 0.04%)</title><rect x="5.7541%" y="501" width="0.0356%" height="15" fill="rgb(224,206,25)" fg:x="22318" fg:w="138"/><text x="6.0041%" y="511.50"></text></g><g><title>Parse::do_all_blocks (139 samples, 0.04%)</title><rect x="5.7541%" y="517" width="0.0358%" height="15" fill="rgb(243,201,19)" fg:x="22318" fg:w="139"/><text x="6.0041%" y="527.50"></text></g><g><title>ParseGenerator::generate (155 samples, 0.04%)</title><rect x="5.7525%" y="549" width="0.0400%" height="15" fill="rgb(236,59,4)" fg:x="22312" fg:w="155"/><text x="6.0025%" y="559.50"></text></g><g><title>Parse::Parse (155 samples, 0.04%)</title><rect x="5.7525%" y="533" width="0.0400%" height="15" fill="rgb(254,179,45)" fg:x="22312" fg:w="155"/><text x="6.0025%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (205 samples, 0.05%)</title><rect x="5.7474%" y="565" width="0.0529%" height="15" fill="rgb(226,14,10)" fg:x="22292" fg:w="205"/><text x="5.9974%" y="575.50"></text></g><g><title>Parse::do_call (1,836 samples, 0.47%)</title><rect x="5.3359%" y="581" width="0.4734%" height="15" fill="rgb(244,27,41)" fg:x="20696" fg:w="1836"/><text x="5.5859%" y="591.50"></text></g><g><title>Parse::do_get_xxx (66 samples, 0.02%)</title><rect x="5.8142%" y="565" width="0.0170%" height="15" fill="rgb(235,35,32)" fg:x="22551" fg:w="66"/><text x="6.0642%" y="575.50"></text></g><g><title>GraphKit::access_store_at (80 samples, 0.02%)</title><rect x="5.8317%" y="549" width="0.0206%" height="15" fill="rgb(218,68,31)" fg:x="22619" fg:w="80"/><text x="6.0817%" y="559.50"></text></g><g><title>BarrierSetC2::store_at (80 samples, 0.02%)</title><rect x="5.8317%" y="533" width="0.0206%" height="15" fill="rgb(207,120,37)" fg:x="22619" fg:w="80"/><text x="6.0817%" y="543.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (77 samples, 0.02%)</title><rect x="5.8325%" y="517" width="0.0199%" height="15" fill="rgb(227,98,0)" fg:x="22622" fg:w="77"/><text x="6.0825%" y="527.50"></text></g><g><title>Parse::do_put_xxx (85 samples, 0.02%)</title><rect x="5.8312%" y="565" width="0.0219%" height="15" fill="rgb(207,7,3)" fg:x="22617" fg:w="85"/><text x="6.0812%" y="575.50"></text></g><g><title>Parse::do_field_access (160 samples, 0.04%)</title><rect x="5.8126%" y="581" width="0.0413%" height="15" fill="rgb(206,98,19)" fg:x="22545" fg:w="160"/><text x="6.0626%" y="591.50"></text></g><g><title>Parse::do_one_block (2,129 samples, 0.55%)</title><rect x="5.3228%" y="613" width="0.5489%" height="15" fill="rgb(217,5,26)" fg:x="20645" fg:w="2129"/><text x="5.5728%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (2,117 samples, 0.55%)</title><rect x="5.3258%" y="597" width="0.5458%" height="15" fill="rgb(235,190,38)" fg:x="20657" fg:w="2117"/><text x="5.5758%" y="607.50"></text></g><g><title>Parse::do_all_blocks (2,131 samples, 0.55%)</title><rect x="5.3228%" y="629" width="0.5494%" height="15" fill="rgb(247,86,24)" fg:x="20645" fg:w="2131"/><text x="5.5728%" y="639.50"></text></g><g><title>ParseGenerator::generate (2,151 samples, 0.55%)</title><rect x="5.3181%" y="661" width="0.5546%" height="15" fill="rgb(205,101,16)" fg:x="20627" fg:w="2151"/><text x="5.5681%" y="671.50"></text></g><g><title>Parse::Parse (2,151 samples, 0.55%)</title><rect x="5.3181%" y="645" width="0.5546%" height="15" fill="rgb(246,168,33)" fg:x="20627" fg:w="2151"/><text x="5.5681%" y="655.50"></text></g><g><title>Compile::call_generator (43 samples, 0.01%)</title><rect x="5.8784%" y="549" width="0.0111%" height="15" fill="rgb(231,114,1)" fg:x="22800" fg:w="43"/><text x="6.1284%" y="559.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="5.9157%" y="373" width="0.0108%" height="15" fill="rgb(207,184,53)" fg:x="22945" fg:w="42"/><text x="6.1657%" y="383.50"></text></g><g><title>Parse::do_one_block (94 samples, 0.02%)</title><rect x="5.9134%" y="405" width="0.0242%" height="15" fill="rgb(224,95,51)" fg:x="22936" fg:w="94"/><text x="6.1634%" y="415.50"></text></g><g><title>Parse::do_one_bytecode (90 samples, 0.02%)</title><rect x="5.9145%" y="389" width="0.0232%" height="15" fill="rgb(212,188,45)" fg:x="22940" fg:w="90"/><text x="6.1645%" y="399.50"></text></g><g><title>Parse::do_all_blocks (97 samples, 0.03%)</title><rect x="5.9132%" y="421" width="0.0250%" height="15" fill="rgb(223,154,38)" fg:x="22935" fg:w="97"/><text x="6.1632%" y="431.50"></text></g><g><title>ParseGenerator::generate (113 samples, 0.03%)</title><rect x="5.9101%" y="453" width="0.0291%" height="15" fill="rgb(251,22,52)" fg:x="22923" fg:w="113"/><text x="6.1601%" y="463.50"></text></g><g><title>Parse::Parse (113 samples, 0.03%)</title><rect x="5.9101%" y="437" width="0.0291%" height="15" fill="rgb(229,209,22)" fg:x="22923" fg:w="113"/><text x="6.1601%" y="447.50"></text></g><g><title>Parse::do_call (155 samples, 0.04%)</title><rect x="5.9013%" y="469" width="0.0400%" height="15" fill="rgb(234,138,34)" fg:x="22889" fg:w="155"/><text x="6.1513%" y="479.50"></text></g><g><title>Parse::do_one_block (227 samples, 0.06%)</title><rect x="5.8974%" y="501" width="0.0585%" height="15" fill="rgb(212,95,11)" fg:x="22874" fg:w="227"/><text x="6.1474%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (225 samples, 0.06%)</title><rect x="5.8980%" y="485" width="0.0580%" height="15" fill="rgb(240,179,47)" fg:x="22876" fg:w="225"/><text x="6.1480%" y="495.50"></text></g><g><title>Parse::do_all_blocks (229 samples, 0.06%)</title><rect x="5.8974%" y="517" width="0.0590%" height="15" fill="rgb(240,163,11)" fg:x="22874" fg:w="229"/><text x="6.1474%" y="527.50"></text></g><g><title>ParseGenerator::generate (249 samples, 0.06%)</title><rect x="5.8946%" y="549" width="0.0642%" height="15" fill="rgb(236,37,12)" fg:x="22863" fg:w="249"/><text x="6.1446%" y="559.50"></text></g><g><title>Parse::Parse (248 samples, 0.06%)</title><rect x="5.8949%" y="533" width="0.0639%" height="15" fill="rgb(232,164,16)" fg:x="22864" fg:w="248"/><text x="6.1449%" y="543.50"></text></g><g><title>Parse::do_call (362 samples, 0.09%)</title><rect x="5.8778%" y="565" width="0.0933%" height="15" fill="rgb(244,205,15)" fg:x="22798" fg:w="362"/><text x="6.1278%" y="575.50"></text></g><g><title>Parse::do_one_block (441 samples, 0.11%)</title><rect x="5.8742%" y="597" width="0.1137%" height="15" fill="rgb(223,117,47)" fg:x="22784" fg:w="441"/><text x="6.1242%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (438 samples, 0.11%)</title><rect x="5.8750%" y="581" width="0.1129%" height="15" fill="rgb(244,107,35)" fg:x="22787" fg:w="438"/><text x="6.1250%" y="591.50"></text></g><g><title>Parse::do_all_blocks (444 samples, 0.11%)</title><rect x="5.8740%" y="613" width="0.1145%" height="15" fill="rgb(205,140,8)" fg:x="22783" fg:w="444"/><text x="6.1240%" y="623.50"></text></g><g><title>ParseGenerator::generate (452 samples, 0.12%)</title><rect x="5.8737%" y="645" width="0.1165%" height="15" fill="rgb(228,84,46)" fg:x="22782" fg:w="452"/><text x="6.1237%" y="655.50"></text></g><g><title>Parse::Parse (452 samples, 0.12%)</title><rect x="5.8737%" y="629" width="0.1165%" height="15" fill="rgb(254,188,9)" fg:x="22782" fg:w="452"/><text x="6.1237%" y="639.50"></text></g><g><title>Parse::do_call (71 samples, 0.02%)</title><rect x="5.9913%" y="549" width="0.0183%" height="15" fill="rgb(206,112,54)" fg:x="23238" fg:w="71"/><text x="6.2413%" y="559.50"></text></g><g><title>Parse::do_all_blocks (85 samples, 0.02%)</title><rect x="5.9908%" y="597" width="0.0219%" height="15" fill="rgb(216,84,49)" fg:x="23236" fg:w="85"/><text x="6.2408%" y="607.50"></text></g><g><title>Parse::do_one_block (85 samples, 0.02%)</title><rect x="5.9908%" y="581" width="0.0219%" height="15" fill="rgb(214,194,35)" fg:x="23236" fg:w="85"/><text x="6.2408%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (85 samples, 0.02%)</title><rect x="5.9908%" y="565" width="0.0219%" height="15" fill="rgb(249,28,3)" fg:x="23236" fg:w="85"/><text x="6.2408%" y="575.50"></text></g><g><title>ParseGenerator::generate (91 samples, 0.02%)</title><rect x="5.9905%" y="629" width="0.0235%" height="15" fill="rgb(222,56,52)" fg:x="23235" fg:w="91"/><text x="6.2405%" y="639.50"></text></g><g><title>Parse::Parse (91 samples, 0.02%)</title><rect x="5.9905%" y="613" width="0.0235%" height="15" fill="rgb(245,217,50)" fg:x="23235" fg:w="91"/><text x="6.2405%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (94 samples, 0.02%)</title><rect x="5.9903%" y="645" width="0.0242%" height="15" fill="rgb(213,201,24)" fg:x="23234" fg:w="94"/><text x="6.2403%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (554 samples, 0.14%)</title><rect x="5.8727%" y="661" width="0.1428%" height="15" fill="rgb(248,116,28)" fg:x="22778" fg:w="554"/><text x="6.1227%" y="671.50"></text></g><g><title>Parse::do_call (2,956 samples, 0.76%)</title><rect x="5.2575%" y="677" width="0.7621%" height="15" fill="rgb(219,72,43)" fg:x="20392" fg:w="2956"/><text x="5.5075%" y="687.50"></text></g><g><title>Parse::do_all_blocks (2,978 samples, 0.77%)</title><rect x="5.2573%" y="725" width="0.7678%" height="15" fill="rgb(209,138,14)" fg:x="20391" fg:w="2978"/><text x="5.5073%" y="735.50"></text></g><g><title>Parse::do_one_block (2,978 samples, 0.77%)</title><rect x="5.2573%" y="709" width="0.7678%" height="15" fill="rgb(222,18,33)" fg:x="20391" fg:w="2978"/><text x="5.5073%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (2,978 samples, 0.77%)</title><rect x="5.2573%" y="693" width="0.7678%" height="15" fill="rgb(213,199,7)" fg:x="20391" fg:w="2978"/><text x="5.5073%" y="703.50"></text></g><g><title>C2Compiler::compile_method (3,018 samples, 0.78%)</title><rect x="5.2472%" y="789" width="0.7781%" height="15" fill="rgb(250,110,10)" fg:x="20352" fg:w="3018"/><text x="5.4972%" y="799.50"></text></g><g><title>Compile::Compile (3,018 samples, 0.78%)</title><rect x="5.2472%" y="773" width="0.7781%" height="15" fill="rgb(248,123,6)" fg:x="20352" fg:w="3018"/><text x="5.4972%" y="783.50"></text></g><g><title>ParseGenerator::generate (2,979 samples, 0.77%)</title><rect x="5.2573%" y="757" width="0.7681%" height="15" fill="rgb(206,91,31)" fg:x="20391" fg:w="2979"/><text x="5.5073%" y="767.50"></text></g><g><title>Parse::Parse (2,979 samples, 0.77%)</title><rect x="5.2573%" y="741" width="0.7681%" height="15" fill="rgb(211,154,13)" fg:x="20391" fg:w="2979"/><text x="5.5073%" y="751.50"></text></g><g><title>MachSpillCopyNode::implementation (71 samples, 0.02%)</title><rect x="6.0269%" y="709" width="0.0183%" height="15" fill="rgb(225,148,7)" fg:x="23376" fg:w="71"/><text x="6.2769%" y="719.50"></text></g><g><title>Compile::Output (83 samples, 0.02%)</title><rect x="6.0258%" y="773" width="0.0214%" height="15" fill="rgb(220,160,43)" fg:x="23372" fg:w="83"/><text x="6.2758%" y="783.50"></text></g><g><title>Compile::init_buffer (83 samples, 0.02%)</title><rect x="6.0258%" y="757" width="0.0214%" height="15" fill="rgb(213,52,39)" fg:x="23372" fg:w="83"/><text x="6.2758%" y="767.50"></text></g><g><title>Compile::shorten_branches (83 samples, 0.02%)</title><rect x="6.0258%" y="741" width="0.0214%" height="15" fill="rgb(243,137,7)" fg:x="23372" fg:w="83"/><text x="6.2758%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (83 samples, 0.02%)</title><rect x="6.0258%" y="725" width="0.0214%" height="15" fill="rgb(230,79,13)" fg:x="23372" fg:w="83"/><text x="6.2758%" y="735.50"></text></g><g><title>TypeInstPtr::add_offset (50 samples, 0.01%)</title><rect x="6.0663%" y="693" width="0.0129%" height="15" fill="rgb(247,105,23)" fg:x="23529" fg:w="50"/><text x="6.3163%" y="703.50"></text></g><g><title>PhaseCFG::schedule_late (85 samples, 0.02%)</title><rect x="6.0576%" y="741" width="0.0219%" height="15" fill="rgb(223,179,41)" fg:x="23495" fg:w="85"/><text x="6.3076%" y="751.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (85 samples, 0.02%)</title><rect x="6.0576%" y="725" width="0.0219%" height="15" fill="rgb(218,9,34)" fg:x="23495" fg:w="85"/><text x="6.3076%" y="735.50"></text></g><g><title>MachNode::adr_type (67 samples, 0.02%)</title><rect x="6.0622%" y="709" width="0.0173%" height="15" fill="rgb(222,106,8)" fg:x="23513" fg:w="67"/><text x="6.3122%" y="719.50"></text></g><g><title>PhaseCFG::sched_call (315 samples, 0.08%)</title><rect x="6.0795%" y="725" width="0.0812%" height="15" fill="rgb(211,220,0)" fg:x="23580" fg:w="315"/><text x="6.3295%" y="735.50"></text></g><g><title>PhaseCFG::schedule_local (318 samples, 0.08%)</title><rect x="6.0795%" y="741" width="0.0820%" height="15" fill="rgb(229,52,16)" fg:x="23580" fg:w="318"/><text x="6.3295%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (411 samples, 0.11%)</title><rect x="6.0563%" y="773" width="0.1060%" height="15" fill="rgb(212,155,18)" fg:x="23490" fg:w="411"/><text x="6.3063%" y="783.50"></text></g><g><title>PhaseCFG::global_code_motion (411 samples, 0.11%)</title><rect x="6.0563%" y="757" width="0.1060%" height="15" fill="rgb(242,21,14)" fg:x="23490" fg:w="411"/><text x="6.3063%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (60 samples, 0.02%)</title><rect x="6.1658%" y="725" width="0.0155%" height="15" fill="rgb(222,19,48)" fg:x="23915" fg:w="60"/><text x="6.4158%" y="735.50"></text></g><g><title>PhaseChaitin::Split (79 samples, 0.02%)</title><rect x="6.1622%" y="757" width="0.0204%" height="15" fill="rgb(232,45,27)" fg:x="23901" fg:w="79"/><text x="6.4122%" y="767.50"></text></g><g><title>PhaseChaitin::split_USE (66 samples, 0.02%)</title><rect x="6.1656%" y="741" width="0.0170%" height="15" fill="rgb(249,103,42)" fg:x="23914" fg:w="66"/><text x="6.4156%" y="751.50"></text></g><g><title>Compile::Code_Gen (621 samples, 0.16%)</title><rect x="6.0258%" y="789" width="0.1601%" height="15" fill="rgb(246,81,33)" fg:x="23372" fg:w="621"/><text x="6.2758%" y="799.50"></text></g><g><title>PhaseChaitin::Register_Allocate (92 samples, 0.02%)</title><rect x="6.1622%" y="773" width="0.0237%" height="15" fill="rgb(252,33,42)" fg:x="23901" fg:w="92"/><text x="6.4122%" y="783.50"></text></g><g><title>OopFlow::build_oop_map (196 samples, 0.05%)</title><rect x="6.4445%" y="709" width="0.0505%" height="15" fill="rgb(209,212,41)" fg:x="24996" fg:w="196"/><text x="6.6945%" y="719.50"></text></g><g><title>OopFlow::compute_reach (353 samples, 0.09%)</title><rect x="6.4046%" y="725" width="0.0910%" height="15" fill="rgb(207,154,6)" fg:x="24841" fg:w="353"/><text x="6.6546%" y="735.50"></text></g><g><title>__memmove_sse2_unaligned_erms (122 samples, 0.03%)</title><rect x="6.5013%" y="725" width="0.0315%" height="15" fill="rgb(223,64,47)" fg:x="25216" fg:w="122"/><text x="6.7513%" y="735.50"></text></g><g><title>Compile::BuildOopMaps (1,331 samples, 0.34%)</title><rect x="6.1914%" y="741" width="0.3432%" height="15" fill="rgb(211,161,38)" fg:x="24014" fg:w="1331"/><text x="6.4414%" y="751.50"></text></g><g><title>Compile::scratch_emit_size (271 samples, 0.07%)</title><rect x="6.6108%" y="709" width="0.0699%" height="15" fill="rgb(219,138,40)" fg:x="25641" fg:w="271"/><text x="6.8608%" y="719.50"></text></g><g><title>Compile::shorten_branches (549 samples, 0.14%)</title><rect x="6.5492%" y="725" width="0.1415%" height="15" fill="rgb(241,228,46)" fg:x="25402" fg:w="549"/><text x="6.7992%" y="735.50"></text></g><g><title>Compile::init_buffer (607 samples, 0.16%)</title><rect x="6.5345%" y="741" width="0.1565%" height="15" fill="rgb(223,209,38)" fg:x="25345" fg:w="607"/><text x="6.7845%" y="751.50"></text></g><g><title>Compile::Output (1,955 samples, 0.50%)</title><rect x="6.1875%" y="757" width="0.5040%" height="15" fill="rgb(236,164,45)" fg:x="23999" fg:w="1955"/><text x="6.4375%" y="767.50"></text></g><g><title>Compile::FillExceptionTables (45 samples, 0.01%)</title><rect x="6.7498%" y="741" width="0.0116%" height="15" fill="rgb(231,15,5)" fg:x="26180" fg:w="45"/><text x="6.9998%" y="751.50"></text></g><g><title>Compile::FillLocArray (86 samples, 0.02%)</title><rect x="6.7735%" y="725" width="0.0222%" height="15" fill="rgb(252,35,15)" fg:x="26272" fg:w="86"/><text x="7.0235%" y="735.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (77 samples, 0.02%)</title><rect x="6.8047%" y="709" width="0.0199%" height="15" fill="rgb(248,181,18)" fg:x="26393" fg:w="77"/><text x="7.0547%" y="719.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (108 samples, 0.03%)</title><rect x="6.7991%" y="725" width="0.0278%" height="15" fill="rgb(233,39,42)" fg:x="26371" fg:w="108"/><text x="7.0491%" y="735.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (75 samples, 0.02%)</title><rect x="6.8323%" y="709" width="0.0193%" height="15" fill="rgb(238,110,33)" fg:x="26500" fg:w="75"/><text x="7.0823%" y="719.50"></text></g><g><title>DebugInformationRecorder::describe_scope (102 samples, 0.03%)</title><rect x="6.8269%" y="725" width="0.0263%" height="15" fill="rgb(233,195,10)" fg:x="26479" fg:w="102"/><text x="7.0769%" y="735.50"></text></g><g><title>Compile::Process_OopMap_Node (406 samples, 0.10%)</title><rect x="6.7617%" y="741" width="0.1047%" height="15" fill="rgb(254,105,3)" fg:x="26226" fg:w="406"/><text x="7.0117%" y="751.50"></text></g><g><title>Compile::valid_bundle_info (103 samples, 0.03%)</title><rect x="6.8692%" y="741" width="0.0266%" height="15" fill="rgb(221,225,9)" fg:x="26643" fg:w="103"/><text x="7.1192%" y="751.50"></text></g><g><title>MachSpillCopyNode::implementation (49 samples, 0.01%)</title><rect x="6.9017%" y="741" width="0.0126%" height="15" fill="rgb(224,227,45)" fg:x="26769" fg:w="49"/><text x="7.1517%" y="751.50"></text></g><g><title>Compile::fill_buffer (959 samples, 0.25%)</title><rect x="6.6921%" y="757" width="0.2473%" height="15" fill="rgb(229,198,43)" fg:x="25956" fg:w="959"/><text x="6.9421%" y="767.50"></text></g><g><title>Matcher::init_first_stack_mask (57 samples, 0.01%)</title><rect x="6.9586%" y="725" width="0.0147%" height="15" fill="rgb(206,209,35)" fg:x="26990" fg:w="57"/><text x="7.2086%" y="735.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (69 samples, 0.02%)</title><rect x="6.9563%" y="741" width="0.0178%" height="15" fill="rgb(245,195,53)" fg:x="26981" fg:w="69"/><text x="7.2063%" y="751.50"></text></g><g><title>Matcher::is_bmi_pattern (52 samples, 0.01%)</title><rect x="7.0940%" y="725" width="0.0134%" height="15" fill="rgb(240,92,26)" fg:x="27515" fg:w="52"/><text x="7.3440%" y="735.50"></text></g><g><title>Matcher::find_shared (544 samples, 0.14%)</title><rect x="6.9741%" y="741" width="0.1403%" height="15" fill="rgb(207,40,23)" fg:x="27050" fg:w="544"/><text x="7.2241%" y="751.50"></text></g><g><title>Arena::contains (917 samples, 0.24%)</title><rect x="7.2701%" y="725" width="0.2364%" height="15" fill="rgb(223,111,35)" fg:x="28198" fg:w="917"/><text x="7.5201%" y="735.50"></text></g><g><title>Matcher::ReduceInst (46 samples, 0.01%)</title><rect x="7.5568%" y="693" width="0.0119%" height="15" fill="rgb(229,147,28)" fg:x="29310" fg:w="46"/><text x="7.8068%" y="703.50"></text></g><g><title>Matcher::match_tree (208 samples, 0.05%)</title><rect x="7.5302%" y="709" width="0.0536%" height="15" fill="rgb(211,29,28)" fg:x="29207" fg:w="208"/><text x="7.7802%" y="719.50"></text></g><g><title>Node::add_req (59 samples, 0.02%)</title><rect x="7.5687%" y="693" width="0.0152%" height="15" fill="rgb(228,72,33)" fg:x="29356" fg:w="59"/><text x="7.8187%" y="703.50"></text></g><g><title>Matcher::match_sfpt (268 samples, 0.07%)</title><rect x="7.5210%" y="725" width="0.0691%" height="15" fill="rgb(205,214,31)" fg:x="29171" fg:w="268"/><text x="7.7710%" y="735.50"></text></g><g><title>Matcher::Label_Root (78 samples, 0.02%)</title><rect x="7.7450%" y="661" width="0.0201%" height="15" fill="rgb(224,111,15)" fg:x="30040" fg:w="78"/><text x="7.9950%" y="671.50"></text></g><g><title>State::DFA (79 samples, 0.02%)</title><rect x="7.7656%" y="661" width="0.0204%" height="15" fill="rgb(253,21,26)" fg:x="30120" fg:w="79"/><text x="8.0156%" y="671.50"></text></g><g><title>Matcher::Label_Root (195 samples, 0.05%)</title><rect x="7.7386%" y="677" width="0.0503%" height="15" fill="rgb(245,139,43)" fg:x="30015" fg:w="195"/><text x="7.9886%" y="687.50"></text></g><g><title>State::_sub_Op_AddP (53 samples, 0.01%)</title><rect x="7.8007%" y="661" width="0.0137%" height="15" fill="rgb(252,170,7)" fg:x="30256" fg:w="53"/><text x="8.0507%" y="671.50"></text></g><g><title>State::DFA (122 samples, 0.03%)</title><rect x="7.7904%" y="677" width="0.0315%" height="15" fill="rgb(231,118,14)" fg:x="30216" fg:w="122"/><text x="8.0404%" y="687.50"></text></g><g><title>Matcher::Label_Root (458 samples, 0.12%)</title><rect x="7.7068%" y="693" width="0.1181%" height="15" fill="rgb(238,83,0)" fg:x="29892" fg:w="458"/><text x="7.9568%" y="703.50"></text></g><g><title>State::DFA (63 samples, 0.02%)</title><rect x="7.8265%" y="693" width="0.0162%" height="15" fill="rgb(221,39,39)" fg:x="30356" fg:w="63"/><text x="8.0765%" y="703.50"></text></g><g><title>Matcher::Label_Root (711 samples, 0.18%)</title><rect x="7.6682%" y="709" width="0.1833%" height="15" fill="rgb(222,119,46)" fg:x="29742" fg:w="711"/><text x="7.9182%" y="719.50"></text></g><g><title>Matcher::ReduceInst (43 samples, 0.01%)</title><rect x="7.8840%" y="645" width="0.0111%" height="15" fill="rgb(222,165,49)" fg:x="30579" fg:w="43"/><text x="8.1340%" y="655.50"></text></g><g><title>Matcher::ReduceInst_Interior (93 samples, 0.02%)</title><rect x="7.8791%" y="661" width="0.0240%" height="15" fill="rgb(219,113,52)" fg:x="30560" fg:w="93"/><text x="8.1291%" y="671.50"></text></g><g><title>Matcher::ReduceInst (162 samples, 0.04%)</title><rect x="7.8739%" y="677" width="0.0418%" height="15" fill="rgb(214,7,15)" fg:x="30540" fg:w="162"/><text x="8.1239%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (270 samples, 0.07%)</title><rect x="7.8657%" y="693" width="0.0696%" height="15" fill="rgb(235,32,4)" fg:x="30508" fg:w="270"/><text x="8.1157%" y="703.50"></text></g><g><title>State::MachNodeGenerator (100 samples, 0.03%)</title><rect x="7.9438%" y="693" width="0.0258%" height="15" fill="rgb(238,90,54)" fg:x="30811" fg:w="100"/><text x="8.1938%" y="703.50"></text></g><g><title>Matcher::ReduceInst (499 samples, 0.13%)</title><rect x="7.8515%" y="709" width="0.1287%" height="15" fill="rgb(213,208,19)" fg:x="30453" fg:w="499"/><text x="8.1015%" y="719.50"></text></g><g><title>Matcher::match_tree (1,528 samples, 0.39%)</title><rect x="7.5901%" y="725" width="0.3940%" height="15" fill="rgb(233,156,4)" fg:x="29439" fg:w="1528"/><text x="7.8401%" y="735.50"></text></g><g><title>Node::clone (102 samples, 0.03%)</title><rect x="7.9868%" y="725" width="0.0263%" height="15" fill="rgb(207,194,5)" fg:x="30978" fg:w="102"/><text x="8.2368%" y="735.50"></text></g><g><title>Node::out_grow (62 samples, 0.02%)</title><rect x="8.0134%" y="725" width="0.0160%" height="15" fill="rgb(206,111,30)" fg:x="31081" fg:w="62"/><text x="8.2634%" y="735.50"></text></g><g><title>Matcher::xform (3,543 samples, 0.91%)</title><rect x="7.1177%" y="741" width="0.9135%" height="15" fill="rgb(243,70,54)" fg:x="27607" fg:w="3543"/><text x="7.3677%" y="751.50"></text></g><g><title>Matcher::match (4,238 samples, 1.09%)</title><rect x="6.9414%" y="757" width="1.0927%" height="15" fill="rgb(242,28,8)" fg:x="26923" fg:w="4238"/><text x="7.1914%" y="767.50"></text></g><g><title>PhaseBlockLayout::find_edges (110 samples, 0.03%)</title><rect x="8.0351%" y="741" width="0.0284%" height="15" fill="rgb(219,106,18)" fg:x="31165" fg:w="110"/><text x="8.2851%" y="751.50"></text></g><g><title>PhaseBlockLayout::grow_traces (93 samples, 0.02%)</title><rect x="8.0634%" y="741" width="0.0240%" height="15" fill="rgb(244,222,10)" fg:x="31275" fg:w="93"/><text x="8.3134%" y="751.50"></text></g><g><title>__GI___qsort_r (62 samples, 0.02%)</title><rect x="8.0714%" y="725" width="0.0160%" height="15" fill="rgb(236,179,52)" fg:x="31306" fg:w="62"/><text x="8.3214%" y="735.50"></text></g><g><title>msort_with_tmp (59 samples, 0.02%)</title><rect x="8.0722%" y="709" width="0.0152%" height="15" fill="rgb(213,23,39)" fg:x="31309" fg:w="59"/><text x="8.3222%" y="719.50"></text></g><g><title>msort_with_tmp (58 samples, 0.01%)</title><rect x="8.0724%" y="693" width="0.0150%" height="15" fill="rgb(238,48,10)" fg:x="31310" fg:w="58"/><text x="8.3224%" y="703.50"></text></g><g><title>msort_with_tmp (52 samples, 0.01%)</title><rect x="8.0740%" y="677" width="0.0134%" height="15" fill="rgb(251,196,23)" fg:x="31316" fg:w="52"/><text x="8.3240%" y="687.50"></text></g><g><title>msort_with_tmp (52 samples, 0.01%)</title><rect x="8.0740%" y="661" width="0.0134%" height="15" fill="rgb(250,152,24)" fg:x="31316" fg:w="52"/><text x="8.3240%" y="671.50"></text></g><g><title>msort_with_tmp (45 samples, 0.01%)</title><rect x="8.0758%" y="645" width="0.0116%" height="15" fill="rgb(209,150,17)" fg:x="31323" fg:w="45"/><text x="8.3258%" y="655.50"></text></g><g><title>msort_with_tmp (43 samples, 0.01%)</title><rect x="8.0763%" y="629" width="0.0111%" height="15" fill="rgb(234,202,34)" fg:x="31325" fg:w="43"/><text x="8.3263%" y="639.50"></text></g><g><title>Trace::fixup_blocks (44 samples, 0.01%)</title><rect x="8.0933%" y="725" width="0.0113%" height="15" fill="rgb(253,148,53)" fg:x="31391" fg:w="44"/><text x="8.3433%" y="735.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (275 samples, 0.07%)</title><rect x="8.0343%" y="757" width="0.0709%" height="15" fill="rgb(218,129,16)" fg:x="31162" fg:w="275"/><text x="8.2843%" y="767.50"></text></g><g><title>PhaseBlockLayout::reorder_traces (50 samples, 0.01%)</title><rect x="8.0923%" y="741" width="0.0129%" height="15" fill="rgb(216,85,19)" fg:x="31387" fg:w="50"/><text x="8.3423%" y="751.50"></text></g><g><title>PhaseCFG::PhaseCFG (208 samples, 0.05%)</title><rect x="8.1052%" y="757" width="0.0536%" height="15" fill="rgb(235,228,7)" fg:x="31437" fg:w="208"/><text x="8.3552%" y="767.50"></text></g><g><title>PhaseCFG::build_cfg (203 samples, 0.05%)</title><rect x="8.1065%" y="741" width="0.0523%" height="15" fill="rgb(245,175,0)" fg:x="31442" fg:w="203"/><text x="8.3565%" y="751.50"></text></g><g><title>PhaseCFG::do_DFS (61 samples, 0.02%)</title><rect x="8.1812%" y="725" width="0.0157%" height="15" fill="rgb(208,168,36)" fg:x="31732" fg:w="61"/><text x="8.4312%" y="735.50"></text></g><g><title>Block_Stack::most_frequent_successor (42 samples, 0.01%)</title><rect x="8.1861%" y="709" width="0.0108%" height="15" fill="rgb(246,171,24)" fg:x="31751" fg:w="42"/><text x="8.4361%" y="719.50"></text></g><g><title>PhaseCFG::build_dominator_tree (148 samples, 0.04%)</title><rect x="8.1596%" y="741" width="0.0382%" height="15" fill="rgb(215,142,24)" fg:x="31648" fg:w="148"/><text x="8.4096%" y="751.50"></text></g><g><title>CFGLoop::compute_freq (52 samples, 0.01%)</title><rect x="8.2006%" y="725" width="0.0134%" height="15" fill="rgb(250,187,7)" fg:x="31807" fg:w="52"/><text x="8.4506%" y="735.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (101 samples, 0.03%)</title><rect x="8.1983%" y="741" width="0.0260%" height="15" fill="rgb(228,66,33)" fg:x="31798" fg:w="101"/><text x="8.4483%" y="751.50"></text></g><g><title>PhaseCFG::implicit_null_check (81 samples, 0.02%)</title><rect x="8.3720%" y="725" width="0.0209%" height="15" fill="rgb(234,215,21)" fg:x="32472" fg:w="81"/><text x="8.6220%" y="735.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (64 samples, 0.02%)</title><rect x="8.3937%" y="725" width="0.0165%" height="15" fill="rgb(222,191,20)" fg:x="32556" fg:w="64"/><text x="8.6437%" y="735.50"></text></g><g><title>Node_Backward_Iterator::next (380 samples, 0.10%)</title><rect x="8.4607%" y="709" width="0.0980%" height="15" fill="rgb(245,79,54)" fg:x="32816" fg:w="380"/><text x="8.7107%" y="719.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (187 samples, 0.05%)</title><rect x="8.5587%" y="709" width="0.0482%" height="15" fill="rgb(240,10,37)" fg:x="33196" fg:w="187"/><text x="8.8087%" y="719.50"></text></g><g><title>MachNode::adr_type (59 samples, 0.02%)</title><rect x="8.6513%" y="693" width="0.0152%" height="15" fill="rgb(214,192,32)" fg:x="33555" fg:w="59"/><text x="8.9013%" y="703.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (268 samples, 0.07%)</title><rect x="8.6069%" y="709" width="0.0691%" height="15" fill="rgb(209,36,54)" fg:x="33383" fg:w="268"/><text x="8.8569%" y="719.50"></text></g><g><title>Node_Array::insert (52 samples, 0.01%)</title><rect x="8.6886%" y="693" width="0.0134%" height="15" fill="rgb(220,10,11)" fg:x="33700" fg:w="52"/><text x="8.9386%" y="703.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (102 samples, 0.03%)</title><rect x="8.6760%" y="709" width="0.0263%" height="15" fill="rgb(221,106,17)" fg:x="33651" fg:w="102"/><text x="8.9260%" y="719.50"></text></g><g><title>PhaseCFG::schedule_late (1,141 samples, 0.29%)</title><rect x="8.4102%" y="725" width="0.2942%" height="15" fill="rgb(251,142,44)" fg:x="32620" fg:w="1141"/><text x="8.6602%" y="735.50"></text></g><g><title>Node::is_iteratively_computed (40 samples, 0.01%)</title><rect x="8.8049%" y="709" width="0.0103%" height="15" fill="rgb(238,13,15)" fg:x="34151" fg:w="40"/><text x="9.0549%" y="719.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (98 samples, 0.03%)</title><rect x="8.8157%" y="709" width="0.0253%" height="15" fill="rgb(208,107,27)" fg:x="34193" fg:w="98"/><text x="9.0657%" y="719.50"></text></g><g><title>PhaseCFG::needed_for_next_call (49 samples, 0.01%)</title><rect x="8.8410%" y="709" width="0.0126%" height="15" fill="rgb(205,136,37)" fg:x="34291" fg:w="49"/><text x="9.0910%" y="719.50"></text></g><g><title>PhaseCFG::select (162 samples, 0.04%)</title><rect x="8.8536%" y="709" width="0.0418%" height="15" fill="rgb(250,205,27)" fg:x="34340" fg:w="162"/><text x="9.1036%" y="719.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (100 samples, 0.03%)</title><rect x="8.8954%" y="709" width="0.0258%" height="15" fill="rgb(210,80,43)" fg:x="34502" fg:w="100"/><text x="9.1454%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (43 samples, 0.01%)</title><rect x="8.9101%" y="693" width="0.0111%" height="15" fill="rgb(247,160,36)" fg:x="34559" fg:w="43"/><text x="9.1601%" y="703.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (80 samples, 0.02%)</title><rect x="8.9212%" y="709" width="0.0206%" height="15" fill="rgb(234,13,49)" fg:x="34602" fg:w="80"/><text x="9.1712%" y="719.50"></text></g><g><title>PhaseCFG::schedule_local (928 samples, 0.24%)</title><rect x="8.7044%" y="725" width="0.2393%" height="15" fill="rgb(234,122,0)" fg:x="33761" fg:w="928"/><text x="8.9544%" y="735.50"></text></g><g><title>RegMask::Size (178 samples, 0.05%)</title><rect x="9.0651%" y="709" width="0.0459%" height="15" fill="rgb(207,146,38)" fg:x="35160" fg:w="178"/><text x="9.3151%" y="719.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (682 samples, 0.18%)</title><rect x="8.9609%" y="725" width="0.1758%" height="15" fill="rgb(207,177,25)" fg:x="34756" fg:w="682"/><text x="9.2109%" y="735.50"></text></g><g><title>PhaseChaitin::mark_ssa (151 samples, 0.04%)</title><rect x="9.1367%" y="725" width="0.0389%" height="15" fill="rgb(211,178,42)" fg:x="35438" fg:w="151"/><text x="9.3867%" y="735.50"></text></g><g><title>IndexSet::initialize (182 samples, 0.05%)</title><rect x="9.1981%" y="709" width="0.0469%" height="15" fill="rgb(230,69,54)" fg:x="35676" fg:w="182"/><text x="9.4481%" y="719.50"></text></g><g><title>asm_exc_page_fault (50 samples, 0.01%)</title><rect x="9.2535%" y="693" width="0.0129%" height="15" fill="rgb(214,135,41)" fg:x="35891" fg:w="50"/><text x="9.5035%" y="703.50"></text></g><g><title>exc_page_fault (49 samples, 0.01%)</title><rect x="9.2538%" y="677" width="0.0126%" height="15" fill="rgb(237,67,25)" fg:x="35892" fg:w="49"/><text x="9.5038%" y="687.50"></text></g><g><title>do_user_addr_fault (48 samples, 0.01%)</title><rect x="9.2540%" y="661" width="0.0124%" height="15" fill="rgb(222,189,50)" fg:x="35893" fg:w="48"/><text x="9.5040%" y="671.50"></text></g><g><title>handle_mm_fault (44 samples, 0.01%)</title><rect x="9.2551%" y="645" width="0.0113%" height="15" fill="rgb(245,148,34)" fg:x="35897" fg:w="44"/><text x="9.5051%" y="655.50"></text></g><g><title>__handle_mm_fault (42 samples, 0.01%)</title><rect x="9.2556%" y="629" width="0.0108%" height="15" fill="rgb(222,29,6)" fg:x="35899" fg:w="42"/><text x="9.5056%" y="639.50"></text></g><g><title>PhaseIFG::init (356 samples, 0.09%)</title><rect x="9.1757%" y="725" width="0.0918%" height="15" fill="rgb(221,189,43)" fg:x="35589" fg:w="356"/><text x="9.4257%" y="735.50"></text></g><g><title>[libc.so.6] (87 samples, 0.02%)</title><rect x="9.2450%" y="709" width="0.0224%" height="15" fill="rgb(207,36,27)" fg:x="35858" fg:w="87"/><text x="9.4950%" y="719.50"></text></g><g><title>IndexSet::initialize (82 samples, 0.02%)</title><rect x="9.3641%" y="709" width="0.0211%" height="15" fill="rgb(217,90,24)" fg:x="36320" fg:w="82"/><text x="9.6141%" y="719.50"></text></g><g><title>IndexSet::alloc_block_containing (44 samples, 0.01%)</title><rect x="9.4227%" y="693" width="0.0113%" height="15" fill="rgb(224,66,35)" fg:x="36547" fg:w="44"/><text x="9.6727%" y="703.50"></text></g><g><title>PhaseLive::add_livein (312 samples, 0.08%)</title><rect x="9.3855%" y="709" width="0.0804%" height="15" fill="rgb(221,13,50)" fg:x="36403" fg:w="312"/><text x="9.6355%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (121 samples, 0.03%)</title><rect x="9.4348%" y="693" width="0.0312%" height="15" fill="rgb(236,68,49)" fg:x="36594" fg:w="121"/><text x="9.6848%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (92 samples, 0.02%)</title><rect x="9.5480%" y="693" width="0.0237%" height="15" fill="rgb(229,146,28)" fg:x="37033" fg:w="92"/><text x="9.7980%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (148 samples, 0.04%)</title><rect x="9.5815%" y="693" width="0.0382%" height="15" fill="rgb(225,31,38)" fg:x="37163" fg:w="148"/><text x="9.8315%" y="703.50"></text></g><g><title>PhaseLive::add_liveout (603 samples, 0.16%)</title><rect x="9.4660%" y="709" width="0.1555%" height="15" fill="rgb(250,208,3)" fg:x="36715" fg:w="603"/><text x="9.7160%" y="719.50"></text></g><g><title>PhaseLive::compute (1,374 samples, 0.35%)</title><rect x="9.2674%" y="725" width="0.3542%" height="15" fill="rgb(246,54,23)" fg:x="35945" fg:w="1374"/><text x="9.5174%" y="735.50"></text></g><g><title>PhaseCFG::global_code_motion (5,442 samples, 1.40%)</title><rect x="8.2243%" y="741" width="1.4031%" height="15" fill="rgb(243,76,11)" fg:x="31899" fg:w="5442"/><text x="8.4743%" y="751.50"></text></g><g><title>PhaseCFG::do_global_code_motion (5,698 samples, 1.47%)</title><rect x="8.1588%" y="757" width="1.4691%" height="15" fill="rgb(245,21,50)" fg:x="31645" fg:w="5698"/><text x="8.4088%" y="767.50"></text></g><g><title>PhaseCFG::fixup_flow (41 samples, 0.01%)</title><rect x="9.6279%" y="757" width="0.0106%" height="15" fill="rgb(228,9,43)" fg:x="37343" fg:w="41"/><text x="9.8779%" y="767.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (138 samples, 0.04%)</title><rect x="9.6385%" y="757" width="0.0356%" height="15" fill="rgb(208,100,47)" fg:x="37384" fg:w="138"/><text x="9.8885%" y="767.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (2,031 samples, 0.52%)</title><rect x="9.7336%" y="741" width="0.5236%" height="15" fill="rgb(232,26,8)" fg:x="37753" fg:w="2031"/><text x="9.9836%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (508 samples, 0.13%)</title><rect x="10.5318%" y="725" width="0.1310%" height="15" fill="rgb(216,166,38)" fg:x="40849" fg:w="508"/><text x="10.7818%" y="735.50"></text></g><g><title>RegMask::find_first_set (75 samples, 0.02%)</title><rect x="10.7058%" y="709" width="0.0193%" height="15" fill="rgb(251,202,51)" fg:x="41524" fg:w="75"/><text x="10.9558%" y="719.50"></text></g><g><title>PhaseChaitin::bias_color (265 samples, 0.07%)</title><rect x="10.6628%" y="725" width="0.0683%" height="15" fill="rgb(254,216,34)" fg:x="41357" fg:w="265"/><text x="10.9128%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (110 samples, 0.03%)</title><rect x="10.8832%" y="709" width="0.0284%" height="15" fill="rgb(251,32,27)" fg:x="42212" fg:w="110"/><text x="11.1332%" y="719.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (118 samples, 0.03%)</title><rect x="10.9116%" y="709" width="0.0304%" height="15" fill="rgb(208,127,28)" fg:x="42322" fg:w="118"/><text x="11.1616%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (612 samples, 0.16%)</title><rect x="10.9420%" y="709" width="0.1578%" height="15" fill="rgb(224,137,22)" fg:x="42440" fg:w="612"/><text x="11.1920%" y="719.50"></text></g><g><title>PhaseIFG::re_insert (1,433 samples, 0.37%)</title><rect x="10.7352%" y="725" width="0.3695%" height="15" fill="rgb(254,70,32)" fg:x="41638" fg:w="1433"/><text x="10.9852%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (260 samples, 0.07%)</title><rect x="11.1047%" y="725" width="0.0670%" height="15" fill="rgb(229,75,37)" fg:x="43071" fg:w="260"/><text x="11.3547%" y="735.50"></text></g><g><title>PhaseChaitin::Select (3,564 samples, 0.92%)</title><rect x="10.2572%" y="741" width="0.9189%" height="15" fill="rgb(252,64,23)" fg:x="39784" fg:w="3564"/><text x="10.5072%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (527 samples, 0.14%)</title><rect x="11.2947%" y="725" width="0.1359%" height="15" fill="rgb(232,162,48)" fg:x="43808" fg:w="527"/><text x="11.5447%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (101 samples, 0.03%)</title><rect x="11.6252%" y="709" width="0.0260%" height="15" fill="rgb(246,160,12)" fg:x="45090" fg:w="101"/><text x="11.8752%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (681 samples, 0.18%)</title><rect x="11.6513%" y="709" width="0.1756%" height="15" fill="rgb(247,166,0)" fg:x="45191" fg:w="681"/><text x="11.9013%" y="719.50"></text></g><g><title>PhaseChaitin::Simplify (2,526 samples, 0.65%)</title><rect x="11.1761%" y="741" width="0.6513%" height="15" fill="rgb(249,219,21)" fg:x="43348" fg:w="2526"/><text x="11.4261%" y="751.50"></text></g><g><title>PhaseIFG::remove_node (1,539 samples, 0.40%)</title><rect x="11.4306%" y="725" width="0.3968%" height="15" fill="rgb(205,209,3)" fg:x="44335" fg:w="1539"/><text x="11.6806%" y="735.50"></text></g><g><title>CProjNode::is_block_proj (40 samples, 0.01%)</title><rect x="13.0337%" y="725" width="0.0103%" height="15" fill="rgb(243,44,1)" fg:x="50553" fg:w="40"/><text x="13.2837%" y="735.50"></text></g><g><title>MachNode::ideal_reg (52 samples, 0.01%)</title><rect x="13.1304%" y="709" width="0.0134%" height="15" fill="rgb(206,159,16)" fg:x="50928" fg:w="52"/><text x="13.3804%" y="719.50"></text></g><g><title>MachNode::rematerialize (313 samples, 0.08%)</title><rect x="13.0647%" y="725" width="0.0807%" height="15" fill="rgb(244,77,30)" fg:x="50673" fg:w="313"/><text x="13.3147%" y="735.50"></text></g><g><title>Node::rematerialize (311 samples, 0.08%)</title><rect x="13.1629%" y="725" width="0.0802%" height="15" fill="rgb(218,69,12)" fg:x="51054" fg:w="311"/><text x="13.4129%" y="735.50"></text></g><g><title>Node::replace_by (41 samples, 0.01%)</title><rect x="13.2431%" y="725" width="0.0106%" height="15" fill="rgb(212,87,7)" fg:x="51365" fg:w="41"/><text x="13.4931%" y="735.50"></text></g><g><title>PhaseChaitin::split_DEF (54 samples, 0.01%)</title><rect x="13.2725%" y="725" width="0.0139%" height="15" fill="rgb(245,114,25)" fg:x="51479" fg:w="54"/><text x="13.5225%" y="735.50"></text></g><g><title>PhaseChaitin::clone_projs (42 samples, 0.01%)</title><rect x="13.2921%" y="709" width="0.0108%" height="15" fill="rgb(210,61,42)" fg:x="51555" fg:w="42"/><text x="13.5421%" y="719.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (73 samples, 0.02%)</title><rect x="13.2864%" y="725" width="0.0188%" height="15" fill="rgb(211,52,33)" fg:x="51533" fg:w="73"/><text x="13.5364%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (73 samples, 0.02%)</title><rect x="13.3416%" y="693" width="0.0188%" height="15" fill="rgb(234,58,33)" fg:x="51747" fg:w="73"/><text x="13.5916%" y="703.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (133 samples, 0.03%)</title><rect x="13.3287%" y="709" width="0.0343%" height="15" fill="rgb(220,115,36)" fg:x="51697" fg:w="133"/><text x="13.5787%" y="719.50"></text></g><g><title>PhaseChaitin::insert_proj (44 samples, 0.01%)</title><rect x="13.3630%" y="709" width="0.0113%" height="15" fill="rgb(243,153,54)" fg:x="51830" fg:w="44"/><text x="13.6130%" y="719.50"></text></g><g><title>PhaseChaitin::split_USE (270 samples, 0.07%)</title><rect x="13.3052%" y="725" width="0.0696%" height="15" fill="rgb(251,47,18)" fg:x="51606" fg:w="270"/><text x="13.5552%" y="735.50"></text></g><g><title>PhaseChaitin::Split (6,141 samples, 1.58%)</title><rect x="11.8274%" y="741" width="1.5833%" height="15" fill="rgb(242,102,42)" fg:x="45874" fg:w="6141"/><text x="12.0774%" y="751.50"></text></g><g><title>IndexSet::IndexSet (426 samples, 0.11%)</title><rect x="13.7649%" y="725" width="0.1098%" height="15" fill="rgb(234,31,38)" fg:x="53389" fg:w="426"/><text x="14.0149%" y="735.50"></text></g><g><title>MachNode::rematerialize (112 samples, 0.03%)</title><rect x="13.8814%" y="725" width="0.0289%" height="15" fill="rgb(221,117,51)" fg:x="53841" fg:w="112"/><text x="14.1314%" y="735.50"></text></g><g><title>IndexSet::alloc_block_containing (43 samples, 0.01%)</title><rect x="14.0846%" y="709" width="0.0111%" height="15" fill="rgb(212,20,18)" fg:x="54629" fg:w="43"/><text x="14.3346%" y="719.50"></text></g><g><title>JVMState::debug_start (43 samples, 0.01%)</title><rect x="14.0957%" y="709" width="0.0111%" height="15" fill="rgb(245,133,36)" fg:x="54672" fg:w="43"/><text x="14.3457%" y="719.50"></text></g><g><title>MachNode::rematerialize (164 samples, 0.04%)</title><rect x="14.1078%" y="709" width="0.0423%" height="15" fill="rgb(212,6,19)" fg:x="54719" fg:w="164"/><text x="14.3578%" y="719.50"></text></g><g><title>PhaseChaitin::raise_pressure (226 samples, 0.06%)</title><rect x="14.1560%" y="709" width="0.0583%" height="15" fill="rgb(218,1,36)" fg:x="54906" fg:w="226"/><text x="14.4060%" y="719.50"></text></g><g><title>RegMask::is_UP (89 samples, 0.02%)</title><rect x="14.1914%" y="693" width="0.0229%" height="15" fill="rgb(246,84,54)" fg:x="55043" fg:w="89"/><text x="14.4414%" y="703.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,163 samples, 0.30%)</title><rect x="13.9160%" y="725" width="0.2998%" height="15" fill="rgb(242,110,6)" fg:x="53975" fg:w="1163"/><text x="14.1660%" y="735.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (58 samples, 0.01%)</title><rect x="14.2158%" y="725" width="0.0150%" height="15" fill="rgb(214,47,5)" fg:x="55138" fg:w="58"/><text x="14.4658%" y="735.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (78 samples, 0.02%)</title><rect x="14.2308%" y="725" width="0.0201%" height="15" fill="rgb(218,159,25)" fg:x="55196" fg:w="78"/><text x="14.4808%" y="735.50"></text></g><g><title>RegMask::Size (51 samples, 0.01%)</title><rect x="14.2378%" y="709" width="0.0131%" height="15" fill="rgb(215,211,28)" fg:x="55223" fg:w="51"/><text x="14.4878%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (283 samples, 0.07%)</title><rect x="14.3726%" y="709" width="0.0730%" height="15" fill="rgb(238,59,32)" fg:x="55746" fg:w="283"/><text x="14.6226%" y="719.50"></text></g><g><title>RegMask::is_UP (147 samples, 0.04%)</title><rect x="14.4456%" y="709" width="0.0379%" height="15" fill="rgb(226,82,3)" fg:x="56029" fg:w="147"/><text x="14.6956%" y="719.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (903 samples, 0.23%)</title><rect x="14.2509%" y="725" width="0.2328%" height="15" fill="rgb(240,164,32)" fg:x="55274" fg:w="903"/><text x="14.5009%" y="735.50"></text></g><g><title>__tls_get_addr (47 samples, 0.01%)</title><rect x="15.3513%" y="693" width="0.0121%" height="15" fill="rgb(232,46,7)" fg:x="59542" fg:w="47"/><text x="15.6013%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (207 samples, 0.05%)</title><rect x="15.3124%" y="709" width="0.0534%" height="15" fill="rgb(229,129,53)" fg:x="59391" fg:w="207"/><text x="15.5624%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,375 samples, 0.35%)</title><rect x="15.3688%" y="709" width="0.3545%" height="15" fill="rgb(234,188,29)" fg:x="59610" fg:w="1375"/><text x="15.6188%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (4,823 samples, 1.24%)</title><rect x="14.4837%" y="725" width="1.2435%" height="15" fill="rgb(246,141,4)" fg:x="56177" fg:w="4823"/><text x="14.7337%" y="735.50"></text></g><g><title>PhaseChaitin::lower_pressure (150 samples, 0.04%)</title><rect x="15.7272%" y="725" width="0.0387%" height="15" fill="rgb(229,23,39)" fg:x="61000" fg:w="150"/><text x="15.9772%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (312 samples, 0.08%)</title><rect x="15.9608%" y="709" width="0.0804%" height="15" fill="rgb(206,12,3)" fg:x="61906" fg:w="312"/><text x="16.2108%" y="719.50"></text></g><g><title>RegMask::Size (503 samples, 0.13%)</title><rect x="16.0412%" y="709" width="0.1297%" height="15" fill="rgb(252,226,20)" fg:x="62218" fg:w="503"/><text x="16.2912%" y="719.50"></text></g><g><title>RegMask::smear_to_sets (1,169 samples, 0.30%)</title><rect x="16.1709%" y="709" width="0.3014%" height="15" fill="rgb(216,123,35)" fg:x="62721" fg:w="1169"/><text x="16.4209%" y="719.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,755 samples, 0.71%)</title><rect x="15.7661%" y="725" width="0.7103%" height="15" fill="rgb(212,68,40)" fg:x="61151" fg:w="2755"/><text x="16.0161%" y="735.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (50 samples, 0.01%)</title><rect x="16.4764%" y="725" width="0.0129%" height="15" fill="rgb(254,125,32)" fg:x="63906" fg:w="50"/><text x="16.7264%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (11,969 samples, 3.09%)</title><rect x="13.4120%" y="741" width="3.0859%" height="15" fill="rgb(253,97,22)" fg:x="52020" fg:w="11969"/><text x="13.6620%" y="751.50">Pha..</text></g><g><title>IndexSetIterator::advance_and_next (107 samples, 0.03%)</title><rect x="16.6804%" y="709" width="0.0276%" height="15" fill="rgb(241,101,14)" fg:x="64697" fg:w="107"/><text x="16.9304%" y="719.50"></text></g><g><title>PhaseChaitin::interfere_with_live (564 samples, 0.15%)</title><rect x="16.5633%" y="725" width="0.1454%" height="15" fill="rgb(238,103,29)" fg:x="64243" fg:w="564"/><text x="16.8133%" y="735.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (822 samples, 0.21%)</title><rect x="16.4978%" y="741" width="0.2119%" height="15" fill="rgb(233,195,47)" fg:x="63989" fg:w="822"/><text x="16.7478%" y="751.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (197 samples, 0.05%)</title><rect x="16.7098%" y="741" width="0.0508%" height="15" fill="rgb(246,218,30)" fg:x="64811" fg:w="197"/><text x="16.9598%" y="751.50"></text></g><g><title>find_hihghest_bit (51 samples, 0.01%)</title><rect x="16.7474%" y="725" width="0.0131%" height="15" fill="rgb(219,145,47)" fg:x="64957" fg:w="51"/><text x="16.9974%" y="735.50"></text></g><g><title>PhaseChaitin::compact (62 samples, 0.02%)</title><rect x="16.7606%" y="741" width="0.0160%" height="15" fill="rgb(243,12,26)" fg:x="65008" fg:w="62"/><text x="17.0106%" y="751.50"></text></g><g><title>PhaseChaitin::de_ssa (154 samples, 0.04%)</title><rect x="16.7768%" y="741" width="0.0397%" height="15" fill="rgb(214,87,16)" fg:x="65071" fg:w="154"/><text x="17.0268%" y="751.50"></text></g><g><title>PhaseChaitin::fixup_spills (85 samples, 0.02%)</title><rect x="16.8168%" y="741" width="0.0219%" height="15" fill="rgb(208,99,42)" fg:x="65226" fg:w="85"/><text x="17.0668%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (105 samples, 0.03%)</title><rect x="17.5041%" y="725" width="0.0271%" height="15" fill="rgb(253,99,2)" fg:x="67892" fg:w="105"/><text x="17.7541%" y="735.50"></text></g><g><title>MachNode::ideal_reg (106 samples, 0.03%)</title><rect x="17.5330%" y="725" width="0.0273%" height="15" fill="rgb(220,168,23)" fg:x="68004" fg:w="106"/><text x="17.7830%" y="735.50"></text></g><g><title>MachNode::in_RegMask (91 samples, 0.02%)</title><rect x="17.5603%" y="725" width="0.0235%" height="15" fill="rgb(242,38,24)" fg:x="68110" fg:w="91"/><text x="17.8103%" y="735.50"></text></g><g><title>MachProjNode::bottom_type (52 samples, 0.01%)</title><rect x="17.5874%" y="725" width="0.0134%" height="15" fill="rgb(225,182,9)" fg:x="68215" fg:w="52"/><text x="17.8374%" y="735.50"></text></g><g><title>PhiNode::in_RegMask (44 samples, 0.01%)</title><rect x="17.6129%" y="725" width="0.0113%" height="15" fill="rgb(243,178,37)" fg:x="68314" fg:w="44"/><text x="17.8629%" y="735.50"></text></g><g><title>RegMask::Size (1,920 samples, 0.50%)</title><rect x="17.6289%" y="725" width="0.4950%" height="15" fill="rgb(232,139,19)" fg:x="68376" fg:w="1920"/><text x="17.8789%" y="735.50"></text></g><g><title>RegMask::clear_to_sets (342 samples, 0.09%)</title><rect x="18.1239%" y="725" width="0.0882%" height="15" fill="rgb(225,201,24)" fg:x="70296" fg:w="342"/><text x="18.3739%" y="735.50"></text></g><g><title>RegMask::is_aligned_pairs (171 samples, 0.04%)</title><rect x="18.2121%" y="725" width="0.0441%" height="15" fill="rgb(221,47,46)" fg:x="70638" fg:w="171"/><text x="18.4621%" y="735.50"></text></g><g><title>RegMask::is_bound1 (197 samples, 0.05%)</title><rect x="18.2562%" y="725" width="0.0508%" height="15" fill="rgb(249,23,13)" fg:x="70809" fg:w="197"/><text x="18.5062%" y="735.50"></text></g><g><title>RegMask::is_bound_pair (156 samples, 0.04%)</title><rect x="18.3070%" y="725" width="0.0402%" height="15" fill="rgb(219,9,5)" fg:x="71006" fg:w="156"/><text x="18.5570%" y="735.50"></text></g><g><title>RegMask::is_vector (45 samples, 0.01%)</title><rect x="18.3472%" y="725" width="0.0116%" height="15" fill="rgb(254,171,16)" fg:x="71162" fg:w="45"/><text x="18.5972%" y="735.50"></text></g><g><title>Dict::Insert (47 samples, 0.01%)</title><rect x="18.3596%" y="709" width="0.0121%" height="15" fill="rgb(230,171,20)" fg:x="71210" fg:w="47"/><text x="18.6096%" y="719.50"></text></g><g><title>Type::hashcons (51 samples, 0.01%)</title><rect x="18.3588%" y="725" width="0.0131%" height="15" fill="rgb(210,71,41)" fg:x="71207" fg:w="51"/><text x="18.6088%" y="735.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (6,067 samples, 1.56%)</title><rect x="16.8387%" y="741" width="1.5642%" height="15" fill="rgb(206,173,20)" fg:x="65311" fg:w="6067"/><text x="17.0887%" y="751.50"></text></g><g><title>PhaseChaitin::merge_multidefs (834 samples, 0.22%)</title><rect x="18.4029%" y="741" width="0.2150%" height="15" fill="rgb(233,88,34)" fg:x="71378" fg:w="834"/><text x="18.6529%" y="751.50"></text></g><g><title>Node::replace_by (44 samples, 0.01%)</title><rect x="19.3690%" y="725" width="0.0113%" height="15" fill="rgb(223,209,46)" fg:x="75125" fg:w="44"/><text x="19.6190%" y="735.50"></text></g><g><title>RegMask::Size (56 samples, 0.01%)</title><rect x="20.3128%" y="693" width="0.0144%" height="15" fill="rgb(250,43,18)" fg:x="78786" fg:w="56"/><text x="20.5628%" y="703.50"></text></g><g><title>PhaseChaitin::use_prior_register (157 samples, 0.04%)</title><rect x="20.2917%" y="709" width="0.0405%" height="15" fill="rgb(208,13,10)" fg:x="78704" fg:w="157"/><text x="20.5417%" y="719.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (70 samples, 0.02%)</title><rect x="20.3322%" y="709" width="0.0180%" height="15" fill="rgb(212,200,36)" fg:x="78861" fg:w="70"/><text x="20.5822%" y="719.50"></text></g><g><title>PhaseChaitin::elide_copy (3,772 samples, 0.97%)</title><rect x="19.3862%" y="725" width="0.9725%" height="15" fill="rgb(225,90,30)" fg:x="75192" fg:w="3772"/><text x="19.6362%" y="735.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (60 samples, 0.02%)</title><rect x="20.3621%" y="725" width="0.0155%" height="15" fill="rgb(236,182,39)" fg:x="78977" fg:w="60"/><text x="20.6121%" y="735.50"></text></g><g><title>[libc.so.6] (113 samples, 0.03%)</title><rect x="20.3801%" y="725" width="0.0291%" height="15" fill="rgb(212,144,35)" fg:x="79047" fg:w="113"/><text x="20.6301%" y="735.50"></text></g><g><title>find_lowest_bit (541 samples, 0.14%)</title><rect x="20.4121%" y="725" width="0.1395%" height="15" fill="rgb(228,63,44)" fg:x="79171" fg:w="541"/><text x="20.6621%" y="735.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (7,504 samples, 1.93%)</title><rect x="18.6179%" y="741" width="1.9347%" height="15" fill="rgb(228,109,6)" fg:x="72212" fg:w="7504"/><text x="18.8679%" y="751.50">P..</text></g><g><title>IndexSet::IndexSet (39 samples, 0.01%)</title><rect x="20.6132%" y="725" width="0.0101%" height="15" fill="rgb(238,117,24)" fg:x="79951" fg:w="39"/><text x="20.8632%" y="735.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (310 samples, 0.08%)</title><rect x="20.5531%" y="741" width="0.0799%" height="15" fill="rgb(242,26,26)" fg:x="79718" fg:w="310"/><text x="20.8031%" y="751.50"></text></g><g><title>PhaseIFG::Union (74 samples, 0.02%)</title><rect x="20.6857%" y="693" width="0.0191%" height="15" fill="rgb(221,92,48)" fg:x="80232" fg:w="74"/><text x="20.9357%" y="703.50"></text></g><g><title>PhaseCoalesce::combine_these_two (115 samples, 0.03%)</title><rect x="20.6764%" y="709" width="0.0296%" height="15" fill="rgb(209,209,32)" fg:x="80196" fg:w="115"/><text x="20.9264%" y="719.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (277 samples, 0.07%)</title><rect x="20.6354%" y="725" width="0.0714%" height="15" fill="rgb(221,70,22)" fg:x="80037" fg:w="277"/><text x="20.8854%" y="735.50"></text></g><g><title>Block::has_uncommon_code (53 samples, 0.01%)</title><rect x="20.7702%" y="693" width="0.0137%" height="15" fill="rgb(248,145,5)" fg:x="80560" fg:w="53"/><text x="21.0202%" y="703.50"></text></g><g><title>PhaseCFG::is_uncommon (217 samples, 0.06%)</title><rect x="20.7285%" y="709" width="0.0559%" height="15" fill="rgb(226,116,26)" fg:x="80398" fg:w="217"/><text x="20.9785%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (107 samples, 0.03%)</title><rect x="21.0378%" y="677" width="0.0276%" height="15" fill="rgb(244,5,17)" fg:x="81598" fg:w="107"/><text x="21.2878%" y="687.50"></text></g><g><title>IndexSet::lrg_union (1,031 samples, 0.27%)</title><rect x="20.8032%" y="693" width="0.2658%" height="15" fill="rgb(252,159,33)" fg:x="80688" fg:w="1031"/><text x="21.0532%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (99 samples, 0.03%)</title><rect x="21.4135%" y="677" width="0.0255%" height="15" fill="rgb(206,71,0)" fg:x="83055" fg:w="99"/><text x="21.6635%" y="687.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (1,409 samples, 0.36%)</title><rect x="21.0786%" y="693" width="0.3633%" height="15" fill="rgb(233,118,54)" fg:x="81756" fg:w="1409"/><text x="21.3286%" y="703.50"></text></g><g><title>IndexSetIterator::advance_and_next (51 samples, 0.01%)</title><rect x="21.5115%" y="677" width="0.0131%" height="15" fill="rgb(234,83,48)" fg:x="83435" fg:w="51"/><text x="21.7615%" y="687.50"></text></g><g><title>PhaseIFG::effective_degree (322 samples, 0.08%)</title><rect x="21.4418%" y="693" width="0.0830%" height="15" fill="rgb(228,3,54)" fg:x="83165" fg:w="322"/><text x="21.6918%" y="703.50"></text></g><g><title>RegMask::Size (44 samples, 0.01%)</title><rect x="21.5280%" y="693" width="0.0113%" height="15" fill="rgb(226,155,13)" fg:x="83499" fg:w="44"/><text x="21.7780%" y="703.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (2,930 samples, 0.76%)</title><rect x="20.7844%" y="709" width="0.7554%" height="15" fill="rgb(241,28,37)" fg:x="80615" fg:w="2930"/><text x="21.0344%" y="719.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (3,518 samples, 0.91%)</title><rect x="20.6331%" y="741" width="0.9070%" height="15" fill="rgb(233,93,10)" fg:x="80028" fg:w="3518"/><text x="20.8831%" y="751.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (3,232 samples, 0.83%)</title><rect x="20.7068%" y="725" width="0.8333%" height="15" fill="rgb(225,113,19)" fg:x="80314" fg:w="3232"/><text x="20.9568%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (87 samples, 0.02%)</title><rect x="21.7198%" y="725" width="0.0224%" height="15" fill="rgb(241,2,18)" fg:x="84243" fg:w="87"/><text x="21.9698%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (795 samples, 0.20%)</title><rect x="21.7422%" y="725" width="0.2050%" height="15" fill="rgb(228,207,21)" fg:x="84330" fg:w="795"/><text x="21.9922%" y="735.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,579 samples, 0.41%)</title><rect x="21.5406%" y="741" width="0.4071%" height="15" fill="rgb(213,211,35)" fg:x="83548" fg:w="1579"/><text x="21.7906%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (69 samples, 0.02%)</title><rect x="22.1052%" y="725" width="0.0178%" height="15" fill="rgb(209,83,10)" fg:x="85738" fg:w="69"/><text x="22.3552%" y="735.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (106 samples, 0.03%)</title><rect x="22.1230%" y="725" width="0.0273%" height="15" fill="rgb(209,164,1)" fg:x="85807" fg:w="106"/><text x="22.3730%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (680 samples, 0.18%)</title><rect x="22.1503%" y="725" width="0.1753%" height="15" fill="rgb(213,184,43)" fg:x="85913" fg:w="680"/><text x="22.4003%" y="735.50"></text></g><g><title>PhaseIFG::SquareUp (1,469 samples, 0.38%)</title><rect x="21.9477%" y="741" width="0.3787%" height="15" fill="rgb(231,61,34)" fg:x="85127" fg:w="1469"/><text x="22.1977%" y="751.50"></text></g><g><title>IndexSet::initialize (341 samples, 0.09%)</title><rect x="22.3713%" y="725" width="0.0879%" height="15" fill="rgb(235,75,3)" fg:x="86770" fg:w="341"/><text x="22.6213%" y="735.50"></text></g><g><title>[libc.so.6] (89 samples, 0.02%)</title><rect x="22.4592%" y="725" width="0.0229%" height="15" fill="rgb(220,106,47)" fg:x="87111" fg:w="89"/><text x="22.7092%" y="735.50"></text></g><g><title>PhaseIFG::init (606 samples, 0.16%)</title><rect x="22.3264%" y="741" width="0.1562%" height="15" fill="rgb(210,196,33)" fg:x="86596" fg:w="606"/><text x="22.5764%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (92 samples, 0.02%)</title><rect x="22.9643%" y="725" width="0.0237%" height="15" fill="rgb(229,154,42)" fg:x="89070" fg:w="92"/><text x="23.2143%" y="735.50"></text></g><g><title>IndexSet::free_block (60 samples, 0.02%)</title><rect x="22.9880%" y="725" width="0.0155%" height="15" fill="rgb(228,114,26)" fg:x="89162" fg:w="60"/><text x="23.2380%" y="735.50"></text></g><g><title>IndexSet::initialize (196 samples, 0.05%)</title><rect x="23.0035%" y="725" width="0.0505%" height="15" fill="rgb(208,144,1)" fg:x="89222" fg:w="196"/><text x="23.2535%" y="735.50"></text></g><g><title>__tls_get_addr (62 samples, 0.02%)</title><rect x="23.3907%" y="693" width="0.0160%" height="15" fill="rgb(239,112,37)" fg:x="90724" fg:w="62"/><text x="23.6407%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (274 samples, 0.07%)</title><rect x="23.3389%" y="709" width="0.0706%" height="15" fill="rgb(210,96,50)" fg:x="90523" fg:w="274"/><text x="23.5889%" y="719.50"></text></g><g><title>IndexSet::initialize (75 samples, 0.02%)</title><rect x="23.4096%" y="709" width="0.0193%" height="15" fill="rgb(222,178,2)" fg:x="90797" fg:w="75"/><text x="23.6596%" y="719.50"></text></g><g><title>IndexSetIterator::advance_and_next (525 samples, 0.14%)</title><rect x="23.4330%" y="709" width="0.1354%" height="15" fill="rgb(226,74,18)" fg:x="90888" fg:w="525"/><text x="23.6830%" y="719.50"></text></g><g><title>PhaseLive::add_liveout (2,020 samples, 0.52%)</title><rect x="23.0548%" y="725" width="0.5208%" height="15" fill="rgb(225,67,54)" fg:x="89421" fg:w="2020"/><text x="23.3048%" y="735.50"></text></g><g><title>PhaseLive::compute (4,261 samples, 1.10%)</title><rect x="22.4829%" y="741" width="1.0986%" height="15" fill="rgb(251,92,32)" fg:x="87203" fg:w="4261"/><text x="22.7329%" y="751.50"></text></g><g><title>find_lowest_bit (82 samples, 0.02%)</title><rect x="23.5988%" y="741" width="0.0211%" height="15" fill="rgb(228,149,22)" fg:x="91531" fg:w="82"/><text x="23.8488%" y="751.50"></text></g><g><title>PhaseChaitin::Register_Allocate (54,079 samples, 13.94%)</title><rect x="9.6807%" y="757" width="13.9428%" height="15" fill="rgb(243,54,13)" fg:x="37548" fg:w="54079"/><text x="9.9307%" y="767.50">PhaseChaitin::Registe..</text></g><g><title>PhasePeephole::do_transform (83 samples, 0.02%)</title><rect x="23.6251%" y="757" width="0.0214%" height="15" fill="rgb(243,180,28)" fg:x="91633" fg:w="83"/><text x="23.8751%" y="767.50"></text></g><g><title>Compile::Code_Gen (67,724 samples, 17.46%)</title><rect x="6.1859%" y="773" width="17.4608%" height="15" fill="rgb(208,167,24)" fg:x="23993" fg:w="67724"/><text x="6.4359%" y="783.50">Compile::Code_Gen</text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (41 samples, 0.01%)</title><rect x="23.6645%" y="277" width="0.0106%" height="15" fill="rgb(245,73,45)" fg:x="91786" fg:w="41"/><text x="23.9145%" y="287.50"></text></g><g><title>Compile::call_generator (56 samples, 0.01%)</title><rect x="23.6609%" y="389" width="0.0144%" height="15" fill="rgb(237,203,48)" fg:x="91772" fg:w="56"/><text x="23.9109%" y="399.50"></text></g><g><title>InlineTree::ok_to_inline (48 samples, 0.01%)</title><rect x="23.6630%" y="373" width="0.0124%" height="15" fill="rgb(211,197,16)" fg:x="91780" fg:w="48"/><text x="23.9130%" y="383.50"></text></g><g><title>ciMethod::get_flow_analysis (47 samples, 0.01%)</title><rect x="23.6633%" y="357" width="0.0121%" height="15" fill="rgb(243,99,51)" fg:x="91781" fg:w="47"/><text x="23.9133%" y="367.50"></text></g><g><title>ciTypeFlow::do_flow (47 samples, 0.01%)</title><rect x="23.6633%" y="341" width="0.0121%" height="15" fill="rgb(215,123,29)" fg:x="91781" fg:w="47"/><text x="23.9133%" y="351.50"></text></g><g><title>ciTypeFlow::flow_types (47 samples, 0.01%)</title><rect x="23.6633%" y="325" width="0.0121%" height="15" fill="rgb(239,186,37)" fg:x="91781" fg:w="47"/><text x="23.9133%" y="335.50"></text></g><g><title>ciTypeFlow::df_flow_types (47 samples, 0.01%)</title><rect x="23.6633%" y="309" width="0.0121%" height="15" fill="rgb(252,136,39)" fg:x="91781" fg:w="47"/><text x="23.9133%" y="319.50"></text></g><g><title>ciTypeFlow::flow_block (47 samples, 0.01%)</title><rect x="23.6633%" y="293" width="0.0121%" height="15" fill="rgb(223,213,32)" fg:x="91781" fg:w="47"/><text x="23.9133%" y="303.50"></text></g><g><title>InlineTree::ok_to_inline (52 samples, 0.01%)</title><rect x="23.6849%" y="277" width="0.0134%" height="15" fill="rgb(233,115,5)" fg:x="91865" fg:w="52"/><text x="23.9349%" y="287.50"></text></g><g><title>Compile::call_generator (65 samples, 0.02%)</title><rect x="23.6821%" y="293" width="0.0168%" height="15" fill="rgb(207,226,44)" fg:x="91854" fg:w="65"/><text x="23.9321%" y="303.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="23.7553%" y="53" width="0.0137%" height="15" fill="rgb(208,126,0)" fg:x="92138" fg:w="53"/><text x="24.0053%" y="63.50"></text></g><g><title>Parse::do_one_bytecode (46 samples, 0.01%)</title><rect x="23.7571%" y="37" width="0.0119%" height="15" fill="rgb(244,66,21)" fg:x="92145" fg:w="46"/><text x="24.0071%" y="47.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="23.7553%" y="69" width="0.0142%" height="15" fill="rgb(222,97,12)" fg:x="92138" fg:w="55"/><text x="24.0053%" y="79.50"></text></g><g><title>ParseGenerator::generate (74 samples, 0.02%)</title><rect x="23.7522%" y="101" width="0.0191%" height="15" fill="rgb(219,213,19)" fg:x="92126" fg:w="74"/><text x="24.0022%" y="111.50"></text></g><g><title>Parse::Parse (74 samples, 0.02%)</title><rect x="23.7522%" y="85" width="0.0191%" height="15" fill="rgb(252,169,30)" fg:x="92126" fg:w="74"/><text x="24.0022%" y="95.50"></text></g><g><title>Parse::do_call (139 samples, 0.04%)</title><rect x="23.7429%" y="117" width="0.0358%" height="15" fill="rgb(206,32,51)" fg:x="92090" fg:w="139"/><text x="23.9929%" y="127.50"></text></g><g><title>Parse::do_one_block (205 samples, 0.05%)</title><rect x="23.7396%" y="149" width="0.0529%" height="15" fill="rgb(250,172,42)" fg:x="92077" fg:w="205"/><text x="23.9896%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (205 samples, 0.05%)</title><rect x="23.7396%" y="133" width="0.0529%" height="15" fill="rgb(209,34,43)" fg:x="92077" fg:w="205"/><text x="23.9896%" y="143.50"></text></g><g><title>Parse::do_all_blocks (210 samples, 0.05%)</title><rect x="23.7396%" y="165" width="0.0541%" height="15" fill="rgb(223,11,35)" fg:x="92077" fg:w="210"/><text x="23.9896%" y="175.50"></text></g><g><title>ParseGenerator::generate (230 samples, 0.06%)</title><rect x="23.7370%" y="197" width="0.0593%" height="15" fill="rgb(251,219,26)" fg:x="92067" fg:w="230"/><text x="23.9870%" y="207.50"></text></g><g><title>Parse::Parse (230 samples, 0.06%)</title><rect x="23.7370%" y="181" width="0.0593%" height="15" fill="rgb(231,119,3)" fg:x="92067" fg:w="230"/><text x="23.9870%" y="191.50"></text></g><g><title>Parse::do_call (329 samples, 0.08%)</title><rect x="23.7213%" y="213" width="0.0848%" height="15" fill="rgb(216,97,11)" fg:x="92006" fg:w="329"/><text x="23.9713%" y="223.50"></text></g><g><title>Parse::do_one_block (417 samples, 0.11%)</title><rect x="23.7174%" y="245" width="0.1075%" height="15" fill="rgb(223,59,9)" fg:x="91991" fg:w="417"/><text x="23.9674%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (415 samples, 0.11%)</title><rect x="23.7179%" y="229" width="0.1070%" height="15" fill="rgb(233,93,31)" fg:x="91993" fg:w="415"/><text x="23.9679%" y="239.50"></text></g><g><title>Parse::do_all_blocks (424 samples, 0.11%)</title><rect x="23.7166%" y="261" width="0.1093%" height="15" fill="rgb(239,81,33)" fg:x="91988" fg:w="424"/><text x="23.9666%" y="271.50"></text></g><g><title>Parse::Parse (471 samples, 0.12%)</title><rect x="23.7109%" y="277" width="0.1214%" height="15" fill="rgb(213,120,34)" fg:x="91966" fg:w="471"/><text x="23.9609%" y="287.50"></text></g><g><title>ParseGenerator::generate (473 samples, 0.12%)</title><rect x="23.7107%" y="293" width="0.1220%" height="15" fill="rgb(243,49,53)" fg:x="91965" fg:w="473"/><text x="23.9607%" y="303.50"></text></g><g><title>PredictedCallGenerator::generate (51 samples, 0.01%)</title><rect x="23.8326%" y="293" width="0.0131%" height="15" fill="rgb(247,216,33)" fg:x="92438" fg:w="51"/><text x="24.0826%" y="303.50"></text></g><g><title>Parse::do_call (651 samples, 0.17%)</title><rect x="23.6821%" y="309" width="0.1678%" height="15" fill="rgb(226,26,14)" fg:x="91854" fg:w="651"/><text x="23.9321%" y="319.50"></text></g><g><title>Parse::do_field_access (55 samples, 0.01%)</title><rect x="23.8507%" y="309" width="0.0142%" height="15" fill="rgb(215,49,53)" fg:x="92508" fg:w="55"/><text x="24.1007%" y="319.50"></text></g><g><title>Parse::do_one_block (751 samples, 0.19%)</title><rect x="23.6777%" y="341" width="0.1936%" height="15" fill="rgb(245,162,40)" fg:x="91837" fg:w="751"/><text x="23.9277%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (748 samples, 0.19%)</title><rect x="23.6785%" y="325" width="0.1929%" height="15" fill="rgb(229,68,17)" fg:x="91840" fg:w="748"/><text x="23.9285%" y="335.50"></text></g><g><title>Parse::do_all_blocks (752 samples, 0.19%)</title><rect x="23.6777%" y="357" width="0.1939%" height="15" fill="rgb(213,182,10)" fg:x="91837" fg:w="752"/><text x="23.9277%" y="367.50"></text></g><g><title>ParseGenerator::generate (759 samples, 0.20%)</title><rect x="23.6764%" y="389" width="0.1957%" height="15" fill="rgb(245,125,30)" fg:x="91832" fg:w="759"/><text x="23.9264%" y="399.50"></text></g><g><title>Parse::Parse (759 samples, 0.20%)</title><rect x="23.6764%" y="373" width="0.1957%" height="15" fill="rgb(232,202,2)" fg:x="91832" fg:w="759"/><text x="23.9264%" y="383.50"></text></g><g><title>Parse::do_call (48 samples, 0.01%)</title><rect x="23.8765%" y="197" width="0.0124%" height="15" fill="rgb(237,140,51)" fg:x="92608" fg:w="48"/><text x="24.1265%" y="207.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.02%)</title><rect x="23.8744%" y="229" width="0.0168%" height="15" fill="rgb(236,157,25)" fg:x="92600" fg:w="65"/><text x="24.1244%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.02%)</title><rect x="23.8749%" y="213" width="0.0162%" height="15" fill="rgb(219,209,0)" fg:x="92602" fg:w="63"/><text x="24.1249%" y="223.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.02%)</title><rect x="23.8744%" y="245" width="0.0175%" height="15" fill="rgb(240,116,54)" fg:x="92600" fg:w="68"/><text x="24.1244%" y="255.50"></text></g><g><title>ParseGenerator::generate (69 samples, 0.02%)</title><rect x="23.8744%" y="277" width="0.0178%" height="15" fill="rgb(216,10,36)" fg:x="92600" fg:w="69"/><text x="24.1244%" y="287.50"></text></g><g><title>Parse::Parse (69 samples, 0.02%)</title><rect x="23.8744%" y="261" width="0.0178%" height="15" fill="rgb(222,72,44)" fg:x="92600" fg:w="69"/><text x="24.1244%" y="271.50"></text></g><g><title>Parse::do_call (85 samples, 0.02%)</title><rect x="23.8729%" y="293" width="0.0219%" height="15" fill="rgb(232,159,9)" fg:x="92594" fg:w="85"/><text x="24.1229%" y="303.50"></text></g><g><title>Parse::do_all_blocks (93 samples, 0.02%)</title><rect x="23.8729%" y="341" width="0.0240%" height="15" fill="rgb(210,39,32)" fg:x="92594" fg:w="93"/><text x="24.1229%" y="351.50"></text></g><g><title>Parse::do_one_block (93 samples, 0.02%)</title><rect x="23.8729%" y="325" width="0.0240%" height="15" fill="rgb(216,194,45)" fg:x="92594" fg:w="93"/><text x="24.1229%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (93 samples, 0.02%)</title><rect x="23.8729%" y="309" width="0.0240%" height="15" fill="rgb(218,18,35)" fg:x="92594" fg:w="93"/><text x="24.1229%" y="319.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="23.8723%" y="373" width="0.0248%" height="15" fill="rgb(207,83,51)" fg:x="92592" fg:w="96"/><text x="24.1223%" y="383.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="23.8723%" y="357" width="0.0248%" height="15" fill="rgb(225,63,43)" fg:x="92592" fg:w="96"/><text x="24.1223%" y="367.50"></text></g><g><title>PredictedCallGenerator::generate (118 samples, 0.03%)</title><rect x="23.8721%" y="389" width="0.0304%" height="15" fill="rgb(207,57,36)" fg:x="92591" fg:w="118"/><text x="24.1221%" y="399.50"></text></g><g><title>Parse::do_call (942 samples, 0.24%)</title><rect x="23.6609%" y="405" width="0.2429%" height="15" fill="rgb(216,99,33)" fg:x="91772" fg:w="942"/><text x="23.9109%" y="415.50"></text></g><g><title>ParseGenerator::generate (968 samples, 0.25%)</title><rect x="23.6599%" y="485" width="0.2496%" height="15" fill="rgb(225,42,16)" fg:x="91768" fg:w="968"/><text x="23.9099%" y="495.50"></text></g><g><title>Parse::Parse (968 samples, 0.25%)</title><rect x="23.6599%" y="469" width="0.2496%" height="15" fill="rgb(220,201,45)" fg:x="91768" fg:w="968"/><text x="23.9099%" y="479.50"></text></g><g><title>Parse::do_all_blocks (964 samples, 0.25%)</title><rect x="23.6609%" y="453" width="0.2485%" height="15" fill="rgb(225,33,4)" fg:x="91772" fg:w="964"/><text x="23.9109%" y="463.50"></text></g><g><title>Parse::do_one_block (964 samples, 0.25%)</title><rect x="23.6609%" y="437" width="0.2485%" height="15" fill="rgb(224,33,50)" fg:x="91772" fg:w="964"/><text x="23.9109%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (964 samples, 0.25%)</title><rect x="23.6609%" y="421" width="0.2485%" height="15" fill="rgb(246,198,51)" fg:x="91772" fg:w="964"/><text x="23.9109%" y="431.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.01%)</title><rect x="23.9175%" y="229" width="0.0116%" height="15" fill="rgb(205,22,4)" fg:x="92767" fg:w="45"/><text x="24.1675%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.01%)</title><rect x="23.9177%" y="213" width="0.0113%" height="15" fill="rgb(206,3,8)" fg:x="92768" fg:w="44"/><text x="24.1677%" y="223.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.01%)</title><rect x="23.9175%" y="245" width="0.0121%" height="15" fill="rgb(251,23,15)" fg:x="92767" fg:w="47"/><text x="24.1675%" y="255.50"></text></g><g><title>ParseGenerator::generate (50 samples, 0.01%)</title><rect x="23.9172%" y="277" width="0.0129%" height="15" fill="rgb(252,88,28)" fg:x="92766" fg:w="50"/><text x="24.1672%" y="287.50"></text></g><g><title>Parse::Parse (50 samples, 0.01%)</title><rect x="23.9172%" y="261" width="0.0129%" height="15" fill="rgb(212,127,14)" fg:x="92766" fg:w="50"/><text x="24.1672%" y="271.50"></text></g><g><title>Parse::do_call (73 samples, 0.02%)</title><rect x="23.9139%" y="293" width="0.0188%" height="15" fill="rgb(247,145,37)" fg:x="92753" fg:w="73"/><text x="24.1639%" y="303.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="23.9133%" y="341" width="0.0211%" height="15" fill="rgb(209,117,53)" fg:x="92751" fg:w="82"/><text x="24.1633%" y="351.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.02%)</title><rect x="23.9133%" y="325" width="0.0211%" height="15" fill="rgb(212,90,42)" fg:x="92751" fg:w="82"/><text x="24.1633%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.02%)</title><rect x="23.9136%" y="309" width="0.0209%" height="15" fill="rgb(218,164,37)" fg:x="92752" fg:w="81"/><text x="24.1636%" y="319.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="23.9126%" y="373" width="0.0222%" height="15" fill="rgb(246,65,34)" fg:x="92748" fg:w="86"/><text x="24.1626%" y="383.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="23.9126%" y="357" width="0.0222%" height="15" fill="rgb(231,100,33)" fg:x="92748" fg:w="86"/><text x="24.1626%" y="367.50"></text></g><g><title>Parse::do_call (128 samples, 0.03%)</title><rect x="23.9097%" y="389" width="0.0330%" height="15" fill="rgb(228,126,14)" fg:x="92737" fg:w="128"/><text x="24.1597%" y="399.50"></text></g><g><title>ParseGenerator::generate (130 samples, 0.03%)</title><rect x="23.9095%" y="469" width="0.0335%" height="15" fill="rgb(215,173,21)" fg:x="92736" fg:w="130"/><text x="24.1595%" y="479.50"></text></g><g><title>Parse::Parse (130 samples, 0.03%)</title><rect x="23.9095%" y="453" width="0.0335%" height="15" fill="rgb(210,6,40)" fg:x="92736" fg:w="130"/><text x="24.1595%" y="463.50"></text></g><g><title>Parse::do_all_blocks (129 samples, 0.03%)</title><rect x="23.9097%" y="437" width="0.0333%" height="15" fill="rgb(212,48,18)" fg:x="92737" fg:w="129"/><text x="24.1597%" y="447.50"></text></g><g><title>Parse::do_one_block (129 samples, 0.03%)</title><rect x="23.9097%" y="421" width="0.0333%" height="15" fill="rgb(230,214,11)" fg:x="92737" fg:w="129"/><text x="24.1597%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (129 samples, 0.03%)</title><rect x="23.9097%" y="405" width="0.0333%" height="15" fill="rgb(254,105,39)" fg:x="92737" fg:w="129"/><text x="24.1597%" y="415.50"></text></g><g><title>Parse::do_call (1,149 samples, 0.30%)</title><rect x="23.6517%" y="501" width="0.2962%" height="15" fill="rgb(245,158,5)" fg:x="91736" fg:w="1149"/><text x="23.9017%" y="511.50"></text></g><g><title>PredictedCallGenerator::generate (149 samples, 0.04%)</title><rect x="23.9095%" y="485" width="0.0384%" height="15" fill="rgb(249,208,11)" fg:x="92736" fg:w="149"/><text x="24.1595%" y="495.50"></text></g><g><title>ParseGenerator::generate (1,151 samples, 0.30%)</title><rect x="23.6514%" y="581" width="0.2968%" height="15" fill="rgb(210,39,28)" fg:x="91735" fg:w="1151"/><text x="23.9014%" y="591.50"></text></g><g><title>Parse::Parse (1,151 samples, 0.30%)</title><rect x="23.6514%" y="565" width="0.2968%" height="15" fill="rgb(211,56,53)" fg:x="91735" fg:w="1151"/><text x="23.9014%" y="575.50"></text></g><g><title>Parse::do_all_blocks (1,150 samples, 0.30%)</title><rect x="23.6517%" y="549" width="0.2965%" height="15" fill="rgb(226,201,30)" fg:x="91736" fg:w="1150"/><text x="23.9017%" y="559.50"></text></g><g><title>Parse::do_one_block (1,150 samples, 0.30%)</title><rect x="23.6517%" y="533" width="0.2965%" height="15" fill="rgb(239,101,34)" fg:x="91736" fg:w="1150"/><text x="23.9017%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (1,150 samples, 0.30%)</title><rect x="23.6517%" y="517" width="0.2965%" height="15" fill="rgb(226,209,5)" fg:x="91736" fg:w="1150"/><text x="23.9017%" y="527.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="23.9595%" y="245" width="0.0108%" height="15" fill="rgb(250,105,47)" fg:x="92930" fg:w="42"/><text x="24.2095%" y="255.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="23.9595%" y="229" width="0.0108%" height="15" fill="rgb(230,72,3)" fg:x="92930" fg:w="42"/><text x="24.2095%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="23.9595%" y="213" width="0.0108%" height="15" fill="rgb(232,218,39)" fg:x="92930" fg:w="42"/><text x="24.2095%" y="223.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.01%)</title><rect x="23.9585%" y="277" width="0.0124%" height="15" fill="rgb(248,166,6)" fg:x="92926" fg:w="48"/><text x="24.2085%" y="287.50"></text></g><g><title>Parse::Parse (48 samples, 0.01%)</title><rect x="23.9585%" y="261" width="0.0124%" height="15" fill="rgb(247,89,20)" fg:x="92926" fg:w="48"/><text x="24.2085%" y="271.50"></text></g><g><title>Parse::do_call (74 samples, 0.02%)</title><rect x="23.9538%" y="293" width="0.0191%" height="15" fill="rgb(248,130,54)" fg:x="92908" fg:w="74"/><text x="24.2038%" y="303.50"></text></g><g><title>ParseGenerator::generate (100 samples, 0.03%)</title><rect x="23.9528%" y="373" width="0.0258%" height="15" fill="rgb(234,196,4)" fg:x="92904" fg:w="100"/><text x="24.2028%" y="383.50"></text></g><g><title>Parse::Parse (100 samples, 0.03%)</title><rect x="23.9528%" y="357" width="0.0258%" height="15" fill="rgb(250,143,31)" fg:x="92904" fg:w="100"/><text x="24.2028%" y="367.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.03%)</title><rect x="23.9530%" y="341" width="0.0255%" height="15" fill="rgb(211,110,34)" fg:x="92905" fg:w="99"/><text x="24.2030%" y="351.50"></text></g><g><title>Parse::do_one_block (99 samples, 0.03%)</title><rect x="23.9530%" y="325" width="0.0255%" height="15" fill="rgb(215,124,48)" fg:x="92905" fg:w="99"/><text x="24.2030%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (99 samples, 0.03%)</title><rect x="23.9530%" y="309" width="0.0255%" height="15" fill="rgb(216,46,13)" fg:x="92905" fg:w="99"/><text x="24.2030%" y="319.50"></text></g><g><title>Parse::do_call (123 samples, 0.03%)</title><rect x="23.9507%" y="389" width="0.0317%" height="15" fill="rgb(205,184,25)" fg:x="92896" fg:w="123"/><text x="24.2007%" y="399.50"></text></g><g><title>ParseGenerator::generate (136 samples, 0.04%)</title><rect x="23.9507%" y="469" width="0.0351%" height="15" fill="rgb(228,1,10)" fg:x="92896" fg:w="136"/><text x="24.2007%" y="479.50"></text></g><g><title>Parse::Parse (136 samples, 0.04%)</title><rect x="23.9507%" y="453" width="0.0351%" height="15" fill="rgb(213,116,27)" fg:x="92896" fg:w="136"/><text x="24.2007%" y="463.50"></text></g><g><title>Parse::do_all_blocks (136 samples, 0.04%)</title><rect x="23.9507%" y="437" width="0.0351%" height="15" fill="rgb(241,95,50)" fg:x="92896" fg:w="136"/><text x="24.2007%" y="447.50"></text></g><g><title>Parse::do_one_block (136 samples, 0.04%)</title><rect x="23.9507%" y="421" width="0.0351%" height="15" fill="rgb(238,48,32)" fg:x="92896" fg:w="136"/><text x="24.2007%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (136 samples, 0.04%)</title><rect x="23.9507%" y="405" width="0.0351%" height="15" fill="rgb(235,113,49)" fg:x="92896" fg:w="136"/><text x="24.2007%" y="415.50"></text></g><g><title>ParseGenerator::generate (176 samples, 0.05%)</title><rect x="23.9481%" y="565" width="0.0454%" height="15" fill="rgb(205,127,43)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="575.50"></text></g><g><title>Parse::Parse (176 samples, 0.05%)</title><rect x="23.9481%" y="549" width="0.0454%" height="15" fill="rgb(250,162,2)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="559.50"></text></g><g><title>Parse::do_all_blocks (176 samples, 0.05%)</title><rect x="23.9481%" y="533" width="0.0454%" height="15" fill="rgb(220,13,41)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="543.50"></text></g><g><title>Parse::do_one_block (176 samples, 0.05%)</title><rect x="23.9481%" y="517" width="0.0454%" height="15" fill="rgb(249,221,25)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (176 samples, 0.05%)</title><rect x="23.9481%" y="501" width="0.0454%" height="15" fill="rgb(215,208,19)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="511.50"></text></g><g><title>Parse::do_call (176 samples, 0.05%)</title><rect x="23.9481%" y="485" width="0.0454%" height="15" fill="rgb(236,175,2)" fg:x="92886" fg:w="176"/><text x="24.1981%" y="495.50"></text></g><g><title>Parse::do_call (1,365 samples, 0.35%)</title><rect x="23.6501%" y="597" width="0.3519%" height="15" fill="rgb(241,52,2)" fg:x="91730" fg:w="1365"/><text x="23.9001%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (209 samples, 0.05%)</title><rect x="23.9481%" y="581" width="0.0539%" height="15" fill="rgb(248,140,14)" fg:x="92886" fg:w="209"/><text x="24.1981%" y="591.50"></text></g><g><title>ParseGenerator::generate (1,367 samples, 0.35%)</title><rect x="23.6501%" y="677" width="0.3524%" height="15" fill="rgb(253,22,42)" fg:x="91730" fg:w="1367"/><text x="23.9001%" y="687.50"></text></g><g><title>Parse::Parse (1,367 samples, 0.35%)</title><rect x="23.6501%" y="661" width="0.3524%" height="15" fill="rgb(234,61,47)" fg:x="91730" fg:w="1367"/><text x="23.9001%" y="671.50"></text></g><g><title>Parse::do_all_blocks (1,367 samples, 0.35%)</title><rect x="23.6501%" y="645" width="0.3524%" height="15" fill="rgb(208,226,15)" fg:x="91730" fg:w="1367"/><text x="23.9001%" y="655.50"></text></g><g><title>Parse::do_one_block (1,367 samples, 0.35%)</title><rect x="23.6501%" y="629" width="0.3524%" height="15" fill="rgb(217,221,4)" fg:x="91730" fg:w="1367"/><text x="23.9001%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (1,367 samples, 0.35%)</title><rect x="23.6501%" y="613" width="0.3524%" height="15" fill="rgb(212,174,34)" fg:x="91730" fg:w="1367"/><text x="23.9001%" y="623.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.01%)</title><rect x="24.0273%" y="181" width="0.0106%" height="15" fill="rgb(253,83,4)" fg:x="93193" fg:w="41"/><text x="24.2773%" y="191.50"></text></g><g><title>Parse::Parse (41 samples, 0.01%)</title><rect x="24.0273%" y="165" width="0.0106%" height="15" fill="rgb(250,195,49)" fg:x="93193" fg:w="41"/><text x="24.2773%" y="175.50"></text></g><g><title>Parse::do_call (62 samples, 0.02%)</title><rect x="24.0229%" y="197" width="0.0160%" height="15" fill="rgb(241,192,25)" fg:x="93176" fg:w="62"/><text x="24.2729%" y="207.50"></text></g><g><title>Parse::do_all_blocks (97 samples, 0.03%)</title><rect x="24.0219%" y="245" width="0.0250%" height="15" fill="rgb(208,124,10)" fg:x="93172" fg:w="97"/><text x="24.2719%" y="255.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="24.0221%" y="229" width="0.0248%" height="15" fill="rgb(222,33,0)" fg:x="93173" fg:w="96"/><text x="24.2721%" y="239.50"></text></g><g><title>Parse::do_one_bytecode (95 samples, 0.02%)</title><rect x="24.0224%" y="213" width="0.0245%" height="15" fill="rgb(234,209,28)" fg:x="93174" fg:w="95"/><text x="24.2724%" y="223.50"></text></g><g><title>ParseGenerator::generate (109 samples, 0.03%)</title><rect x="24.0211%" y="277" width="0.0281%" height="15" fill="rgb(224,11,23)" fg:x="93169" fg:w="109"/><text x="24.2711%" y="287.50"></text></g><g><title>Parse::Parse (109 samples, 0.03%)</title><rect x="24.0211%" y="261" width="0.0281%" height="15" fill="rgb(232,99,1)" fg:x="93169" fg:w="109"/><text x="24.2711%" y="271.50"></text></g><g><title>Parse::do_call (147 samples, 0.04%)</title><rect x="24.0136%" y="293" width="0.0379%" height="15" fill="rgb(237,95,45)" fg:x="93140" fg:w="147"/><text x="24.2636%" y="303.50"></text></g><g><title>Parse::do_all_blocks (192 samples, 0.05%)</title><rect x="24.0108%" y="341" width="0.0495%" height="15" fill="rgb(208,109,11)" fg:x="93129" fg:w="192"/><text x="24.2608%" y="351.50"></text></g><g><title>Parse::do_one_block (192 samples, 0.05%)</title><rect x="24.0108%" y="325" width="0.0495%" height="15" fill="rgb(216,190,48)" fg:x="93129" fg:w="192"/><text x="24.2608%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (192 samples, 0.05%)</title><rect x="24.0108%" y="309" width="0.0495%" height="15" fill="rgb(251,171,36)" fg:x="93129" fg:w="192"/><text x="24.2608%" y="319.50"></text></g><g><title>ParseGenerator::generate (193 samples, 0.05%)</title><rect x="24.0108%" y="373" width="0.0498%" height="15" fill="rgb(230,62,22)" fg:x="93129" fg:w="193"/><text x="24.2608%" y="383.50"></text></g><g><title>Parse::Parse (193 samples, 0.05%)</title><rect x="24.0108%" y="357" width="0.0498%" height="15" fill="rgb(225,114,35)" fg:x="93129" fg:w="193"/><text x="24.2608%" y="367.50"></text></g><g><title>Parse::do_call (240 samples, 0.06%)</title><rect x="24.0072%" y="389" width="0.0619%" height="15" fill="rgb(215,118,42)" fg:x="93115" fg:w="240"/><text x="24.2572%" y="399.50"></text></g><g><title>ParseGenerator::generate (254 samples, 0.07%)</title><rect x="24.0067%" y="469" width="0.0655%" height="15" fill="rgb(243,119,21)" fg:x="93113" fg:w="254"/><text x="24.2567%" y="479.50"></text></g><g><title>Parse::Parse (254 samples, 0.07%)</title><rect x="24.0067%" y="453" width="0.0655%" height="15" fill="rgb(252,177,53)" fg:x="93113" fg:w="254"/><text x="24.2567%" y="463.50"></text></g><g><title>Parse::do_all_blocks (254 samples, 0.07%)</title><rect x="24.0067%" y="437" width="0.0655%" height="15" fill="rgb(237,209,29)" fg:x="93113" fg:w="254"/><text x="24.2567%" y="447.50"></text></g><g><title>Parse::do_one_block (254 samples, 0.07%)</title><rect x="24.0067%" y="421" width="0.0655%" height="15" fill="rgb(212,65,23)" fg:x="93113" fg:w="254"/><text x="24.2567%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (254 samples, 0.07%)</title><rect x="24.0067%" y="405" width="0.0655%" height="15" fill="rgb(230,222,46)" fg:x="93113" fg:w="254"/><text x="24.2567%" y="415.50"></text></g><g><title>ParseGenerator::generate (290 samples, 0.07%)</title><rect x="24.0031%" y="565" width="0.0748%" height="15" fill="rgb(215,135,32)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="575.50"></text></g><g><title>Parse::Parse (290 samples, 0.07%)</title><rect x="24.0031%" y="549" width="0.0748%" height="15" fill="rgb(246,101,22)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="559.50"></text></g><g><title>Parse::do_all_blocks (290 samples, 0.07%)</title><rect x="24.0031%" y="533" width="0.0748%" height="15" fill="rgb(206,107,13)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="543.50"></text></g><g><title>Parse::do_one_block (290 samples, 0.07%)</title><rect x="24.0031%" y="517" width="0.0748%" height="15" fill="rgb(250,100,44)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (290 samples, 0.07%)</title><rect x="24.0031%" y="501" width="0.0748%" height="15" fill="rgb(231,147,38)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="511.50"></text></g><g><title>Parse::do_call (290 samples, 0.07%)</title><rect x="24.0031%" y="485" width="0.0748%" height="15" fill="rgb(229,8,40)" fg:x="93099" fg:w="290"/><text x="24.2531%" y="495.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="24.0778%" y="549" width="0.0108%" height="15" fill="rgb(221,135,30)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="559.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="24.0778%" y="533" width="0.0108%" height="15" fill="rgb(249,193,18)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="543.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="24.0778%" y="517" width="0.0108%" height="15" fill="rgb(209,133,39)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="527.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="24.0778%" y="501" width="0.0108%" height="15" fill="rgb(232,100,14)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="24.0778%" y="485" width="0.0108%" height="15" fill="rgb(224,185,1)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="495.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="24.0778%" y="469" width="0.0108%" height="15" fill="rgb(223,139,8)" fg:x="93389" fg:w="42"/><text x="24.3278%" y="479.50"></text></g><g><title>ParseGenerator::generate (335 samples, 0.09%)</title><rect x="24.0025%" y="661" width="0.0864%" height="15" fill="rgb(232,213,38)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="671.50"></text></g><g><title>Parse::Parse (335 samples, 0.09%)</title><rect x="24.0025%" y="645" width="0.0864%" height="15" fill="rgb(207,94,22)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="655.50"></text></g><g><title>Parse::do_all_blocks (335 samples, 0.09%)</title><rect x="24.0025%" y="629" width="0.0864%" height="15" fill="rgb(219,183,54)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="639.50"></text></g><g><title>Parse::do_one_block (335 samples, 0.09%)</title><rect x="24.0025%" y="613" width="0.0864%" height="15" fill="rgb(216,185,54)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (335 samples, 0.09%)</title><rect x="24.0025%" y="597" width="0.0864%" height="15" fill="rgb(254,217,39)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="607.50"></text></g><g><title>Parse::do_call (335 samples, 0.09%)</title><rect x="24.0025%" y="581" width="0.0864%" height="15" fill="rgb(240,178,23)" fg:x="93097" fg:w="335"/><text x="24.2525%" y="591.50"></text></g><g><title>PredictedCallGenerator::generate (43 samples, 0.01%)</title><rect x="24.0778%" y="565" width="0.0111%" height="15" fill="rgb(218,11,47)" fg:x="93389" fg:w="43"/><text x="24.3278%" y="575.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="24.0992%" y="357" width="0.0101%" height="15" fill="rgb(218,51,51)" fg:x="93472" fg:w="39"/><text x="24.3492%" y="367.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="24.0990%" y="437" width="0.0108%" height="15" fill="rgb(238,126,27)" fg:x="93471" fg:w="42"/><text x="24.3490%" y="447.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="24.0990%" y="421" width="0.0108%" height="15" fill="rgb(249,202,22)" fg:x="93471" fg:w="42"/><text x="24.3490%" y="431.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="24.0990%" y="405" width="0.0108%" height="15" fill="rgb(254,195,49)" fg:x="93471" fg:w="42"/><text x="24.3490%" y="415.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="24.0990%" y="389" width="0.0108%" height="15" fill="rgb(208,123,14)" fg:x="93471" fg:w="42"/><text x="24.3490%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="24.0990%" y="373" width="0.0108%" height="15" fill="rgb(224,200,8)" fg:x="93471" fg:w="42"/><text x="24.3490%" y="383.50"></text></g><g><title>ParseGenerator::generate (1,788 samples, 0.46%)</title><rect x="23.6501%" y="773" width="0.4610%" height="15" fill="rgb(217,61,36)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="783.50"></text></g><g><title>Parse::Parse (1,788 samples, 0.46%)</title><rect x="23.6501%" y="757" width="0.4610%" height="15" fill="rgb(206,35,45)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="767.50"></text></g><g><title>Parse::do_all_blocks (1,788 samples, 0.46%)</title><rect x="23.6501%" y="741" width="0.4610%" height="15" fill="rgb(217,65,33)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="751.50"></text></g><g><title>Parse::do_one_block (1,788 samples, 0.46%)</title><rect x="23.6501%" y="725" width="0.4610%" height="15" fill="rgb(222,158,48)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (1,788 samples, 0.46%)</title><rect x="23.6501%" y="709" width="0.4610%" height="15" fill="rgb(254,2,54)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="719.50"></text></g><g><title>Parse::do_call (1,788 samples, 0.46%)</title><rect x="23.6501%" y="693" width="0.4610%" height="15" fill="rgb(250,143,38)" fg:x="91730" fg:w="1788"/><text x="23.9001%" y="703.50"></text></g><g><title>PredictedCallGenerator::generate (421 samples, 0.11%)</title><rect x="24.0025%" y="677" width="0.1085%" height="15" fill="rgb(248,25,0)" fg:x="93097" fg:w="421"/><text x="24.2525%" y="687.50"></text></g><g><title>PredictedCallGenerator::generate (86 samples, 0.02%)</title><rect x="24.0889%" y="661" width="0.0222%" height="15" fill="rgb(206,152,27)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="671.50"></text></g><g><title>ParseGenerator::generate (86 samples, 0.02%)</title><rect x="24.0889%" y="645" width="0.0222%" height="15" fill="rgb(240,77,30)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="655.50"></text></g><g><title>Parse::Parse (86 samples, 0.02%)</title><rect x="24.0889%" y="629" width="0.0222%" height="15" fill="rgb(231,5,3)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="639.50"></text></g><g><title>Parse::do_all_blocks (86 samples, 0.02%)</title><rect x="24.0889%" y="613" width="0.0222%" height="15" fill="rgb(207,226,32)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="623.50"></text></g><g><title>Parse::do_one_block (86 samples, 0.02%)</title><rect x="24.0889%" y="597" width="0.0222%" height="15" fill="rgb(222,207,47)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (86 samples, 0.02%)</title><rect x="24.0889%" y="581" width="0.0222%" height="15" fill="rgb(229,115,45)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="591.50"></text></g><g><title>Parse::do_call (86 samples, 0.02%)</title><rect x="24.0889%" y="565" width="0.0222%" height="15" fill="rgb(224,191,6)" fg:x="93432" fg:w="86"/><text x="24.3389%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (49 samples, 0.01%)</title><rect x="24.0985%" y="549" width="0.0126%" height="15" fill="rgb(230,227,24)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="559.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.01%)</title><rect x="24.0985%" y="533" width="0.0126%" height="15" fill="rgb(228,80,19)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="543.50"></text></g><g><title>Parse::Parse (49 samples, 0.01%)</title><rect x="24.0985%" y="517" width="0.0126%" height="15" fill="rgb(247,229,0)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="527.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.01%)</title><rect x="24.0985%" y="501" width="0.0126%" height="15" fill="rgb(237,194,15)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="511.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.01%)</title><rect x="24.0985%" y="485" width="0.0126%" height="15" fill="rgb(219,203,20)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.01%)</title><rect x="24.0985%" y="469" width="0.0126%" height="15" fill="rgb(234,128,8)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="479.50"></text></g><g><title>Parse::do_call (49 samples, 0.01%)</title><rect x="24.0985%" y="453" width="0.0126%" height="15" fill="rgb(248,202,8)" fg:x="93469" fg:w="49"/><text x="24.3485%" y="463.50"></text></g><g><title>Compile::Compile (69,527 samples, 17.93%)</title><rect x="6.1859%" y="789" width="17.9257%" height="15" fill="rgb(206,104,37)" fg:x="23993" fg:w="69527"/><text x="6.4359%" y="799.50">Compile::Compile</text></g><g><title>Compile::final_graph_reshaping_impl (166 samples, 0.04%)</title><rect x="24.1830%" y="741" width="0.0428%" height="15" fill="rgb(223,8,27)" fg:x="93797" fg:w="166"/><text x="24.4330%" y="751.50"></text></g><g><title>Compile::final_graph_reshaping_walk (447 samples, 0.12%)</title><rect x="24.1168%" y="757" width="0.1152%" height="15" fill="rgb(216,217,28)" fg:x="93540" fg:w="447"/><text x="24.3668%" y="767.50"></text></g><g><title>Compile::final_graph_reshaping (461 samples, 0.12%)</title><rect x="24.1137%" y="773" width="0.1189%" height="15" fill="rgb(249,199,1)" fg:x="93528" fg:w="461"/><text x="24.3637%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (138 samples, 0.04%)</title><rect x="24.2516%" y="725" width="0.0356%" height="15" fill="rgb(240,85,17)" fg:x="94063" fg:w="138"/><text x="24.5016%" y="735.50"></text></g><g><title>Compile::remove_useless_nodes (98 samples, 0.03%)</title><rect x="24.2872%" y="725" width="0.0253%" height="15" fill="rgb(206,108,45)" fg:x="94201" fg:w="98"/><text x="24.5372%" y="735.50"></text></g><g><title>Compile::inline_incrementally_one (337 samples, 0.09%)</title><rect x="24.2325%" y="757" width="0.0869%" height="15" fill="rgb(245,210,41)" fg:x="93989" fg:w="337"/><text x="24.4825%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (286 samples, 0.07%)</title><rect x="24.2457%" y="741" width="0.0737%" height="15" fill="rgb(206,13,37)" fg:x="94040" fg:w="286"/><text x="24.4957%" y="751.50"></text></g><g><title>Compile::inline_incrementally (351 samples, 0.09%)</title><rect x="24.2325%" y="773" width="0.0905%" height="15" fill="rgb(250,61,18)" fg:x="93989" fg:w="351"/><text x="24.4825%" y="783.50"></text></g><g><title>PhaseIterGVN::transform_old (90 samples, 0.02%)</title><rect x="24.3813%" y="741" width="0.0232%" height="15" fill="rgb(235,172,48)" fg:x="94566" fg:w="90"/><text x="24.6313%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (94 samples, 0.02%)</title><rect x="24.3808%" y="757" width="0.0242%" height="15" fill="rgb(249,201,17)" fg:x="94564" fg:w="94"/><text x="24.6308%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (68 samples, 0.02%)</title><rect x="24.4050%" y="757" width="0.0175%" height="15" fill="rgb(219,208,6)" fg:x="94658" fg:w="68"/><text x="24.6550%" y="767.50"></text></g><g><title>Compile::remove_speculative_types (382 samples, 0.10%)</title><rect x="24.3274%" y="773" width="0.0985%" height="15" fill="rgb(248,31,23)" fg:x="94357" fg:w="382"/><text x="24.5774%" y="783.50"></text></g><g><title>ConnectionGraph::add_call_node (40 samples, 0.01%)</title><rect x="24.4664%" y="741" width="0.0103%" height="15" fill="rgb(245,15,42)" fg:x="94896" fg:w="40"/><text x="24.7164%" y="751.50"></text></g><g><title>ciMethod::get_bcea (40 samples, 0.01%)</title><rect x="24.4664%" y="725" width="0.0103%" height="15" fill="rgb(222,217,39)" fg:x="94896" fg:w="40"/><text x="24.7164%" y="735.50"></text></g><g><title>ConnectionGraph::add_final_edges (60 samples, 0.02%)</title><rect x="24.4767%" y="741" width="0.0155%" height="15" fill="rgb(210,219,27)" fg:x="94936" fg:w="60"/><text x="24.7267%" y="751.50"></text></g><g><title>ConnectionGraph::add_field (43 samples, 0.01%)</title><rect x="24.5192%" y="725" width="0.0111%" height="15" fill="rgb(252,166,36)" fg:x="95101" fg:w="43"/><text x="24.7692%" y="735.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (153 samples, 0.04%)</title><rect x="24.4942%" y="741" width="0.0394%" height="15" fill="rgb(245,132,34)" fg:x="95004" fg:w="153"/><text x="24.7442%" y="751.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (98 samples, 0.03%)</title><rect x="24.5476%" y="725" width="0.0253%" height="15" fill="rgb(236,54,3)" fg:x="95211" fg:w="98"/><text x="24.7976%" y="735.50"></text></g><g><title>ConnectionGraph::add_java_object_edges (41 samples, 0.01%)</title><rect x="24.5729%" y="725" width="0.0106%" height="15" fill="rgb(241,173,43)" fg:x="95309" fg:w="41"/><text x="24.8229%" y="735.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (57 samples, 0.01%)</title><rect x="24.5834%" y="725" width="0.0147%" height="15" fill="rgb(215,190,9)" fg:x="95350" fg:w="57"/><text x="24.8334%" y="735.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (249 samples, 0.06%)</title><rect x="24.5347%" y="741" width="0.0642%" height="15" fill="rgb(242,101,16)" fg:x="95161" fg:w="249"/><text x="24.7847%" y="751.50"></text></g><g><title>ConnectionGraph::split_memory_phi (105 samples, 0.03%)</title><rect x="24.6172%" y="709" width="0.0271%" height="15" fill="rgb(223,190,21)" fg:x="95481" fg:w="105"/><text x="24.8672%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (85 samples, 0.02%)</title><rect x="24.6224%" y="693" width="0.0219%" height="15" fill="rgb(215,228,25)" fg:x="95501" fg:w="85"/><text x="24.8724%" y="703.50"></text></g><g><title>ConnectionGraph::split_memory_phi (67 samples, 0.02%)</title><rect x="24.6270%" y="677" width="0.0173%" height="15" fill="rgb(225,36,22)" fg:x="95519" fg:w="67"/><text x="24.8770%" y="687.50"></text></g><g><title>ConnectionGraph::find_inst_mem (62 samples, 0.02%)</title><rect x="24.6283%" y="661" width="0.0160%" height="15" fill="rgb(251,106,46)" fg:x="95524" fg:w="62"/><text x="24.8783%" y="671.50"></text></g><g><title>ConnectionGraph::find_inst_mem (139 samples, 0.04%)</title><rect x="24.6095%" y="725" width="0.0358%" height="15" fill="rgb(208,90,1)" fg:x="95451" fg:w="139"/><text x="24.8595%" y="735.50"></text></g><g><title>ConnectionGraph::split_unique_types (186 samples, 0.05%)</title><rect x="24.6053%" y="741" width="0.0480%" height="15" fill="rgb(243,10,4)" fg:x="95435" fg:w="186"/><text x="24.8553%" y="751.50"></text></g><g><title>ConnectionGraph::compute_escape (880 samples, 0.23%)</title><rect x="24.4280%" y="757" width="0.2269%" height="15" fill="rgb(212,137,27)" fg:x="94747" fg:w="880"/><text x="24.6780%" y="767.50"></text></g><g><title>ConnectionGraph::do_analysis (887 samples, 0.23%)</title><rect x="24.4267%" y="773" width="0.2287%" height="15" fill="rgb(231,220,49)" fg:x="94742" fg:w="887"/><text x="24.6767%" y="783.50"></text></g><g><title>LoadNode::Value (42 samples, 0.01%)</title><rect x="24.8513%" y="757" width="0.0108%" height="15" fill="rgb(237,96,20)" fg:x="96389" fg:w="42"/><text x="25.1013%" y="767.50"></text></g><g><title>PhiNode::Value (69 samples, 0.02%)</title><rect x="24.8681%" y="757" width="0.0178%" height="15" fill="rgb(239,229,30)" fg:x="96454" fg:w="69"/><text x="25.1181%" y="767.50"></text></g><g><title>TypeInstPtr::add_offset (61 samples, 0.02%)</title><rect x="24.9168%" y="757" width="0.0157%" height="15" fill="rgb(219,65,33)" fg:x="96643" fg:w="61"/><text x="25.1668%" y="767.50"></text></g><g><title>PhaseCCP::analyze (1,134 samples, 0.29%)</title><rect x="24.6561%" y="773" width="0.2924%" height="15" fill="rgb(243,134,7)" fg:x="95632" fg:w="1134"/><text x="24.9061%" y="783.50"></text></g><g><title>PhaseCCP::transform_once (150 samples, 0.04%)</title><rect x="24.9939%" y="741" width="0.0387%" height="15" fill="rgb(216,177,54)" fg:x="96942" fg:w="150"/><text x="25.2439%" y="751.50"></text></g><g><title>PhaseCCP::do_transform (328 samples, 0.08%)</title><rect x="24.9485%" y="773" width="0.0846%" height="15" fill="rgb(211,160,20)" fg:x="96766" fg:w="328"/><text x="25.1985%" y="783.50"></text></g><g><title>PhaseCCP::transform (328 samples, 0.08%)</title><rect x="24.9485%" y="757" width="0.0846%" height="15" fill="rgb(239,85,39)" fg:x="96766" fg:w="328"/><text x="25.1985%" y="767.50"></text></g><g><title>IdealLoopTree::counted_loop (48 samples, 0.01%)</title><rect x="25.0622%" y="725" width="0.0124%" height="15" fill="rgb(232,125,22)" fg:x="97207" fg:w="48"/><text x="25.3122%" y="735.50"></text></g><g><title>IdealLoopTree::counted_loop (70 samples, 0.02%)</title><rect x="25.0619%" y="757" width="0.0180%" height="15" fill="rgb(244,57,34)" fg:x="97206" fg:w="70"/><text x="25.3119%" y="767.50"></text></g><g><title>IdealLoopTree::counted_loop (70 samples, 0.02%)</title><rect x="25.0619%" y="741" width="0.0180%" height="15" fill="rgb(214,203,32)" fg:x="97206" fg:w="70"/><text x="25.3119%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (46 samples, 0.01%)</title><rect x="25.0903%" y="613" width="0.0119%" height="15" fill="rgb(207,58,43)" fg:x="97316" fg:w="46"/><text x="25.3403%" y="623.50"></text></g><g><title>IdealLoopTree::iteration_split (54 samples, 0.01%)</title><rect x="25.0900%" y="629" width="0.0139%" height="15" fill="rgb(215,193,15)" fg:x="97315" fg:w="54"/><text x="25.3400%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (59 samples, 0.02%)</title><rect x="25.0900%" y="645" width="0.0152%" height="15" fill="rgb(232,15,44)" fg:x="97315" fg:w="59"/><text x="25.3400%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (76 samples, 0.02%)</title><rect x="25.0893%" y="661" width="0.0196%" height="15" fill="rgb(212,3,48)" fg:x="97312" fg:w="76"/><text x="25.3393%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (96 samples, 0.02%)</title><rect x="25.0890%" y="677" width="0.0248%" height="15" fill="rgb(218,128,7)" fg:x="97311" fg:w="96"/><text x="25.3390%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (111 samples, 0.03%)</title><rect x="25.0882%" y="693" width="0.0286%" height="15" fill="rgb(226,216,39)" fg:x="97308" fg:w="111"/><text x="25.3382%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (151 samples, 0.04%)</title><rect x="25.0880%" y="709" width="0.0389%" height="15" fill="rgb(243,47,51)" fg:x="97307" fg:w="151"/><text x="25.3380%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (63 samples, 0.02%)</title><rect x="25.1269%" y="709" width="0.0162%" height="15" fill="rgb(241,183,40)" fg:x="97458" fg:w="63"/><text x="25.3769%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (228 samples, 0.06%)</title><rect x="25.0872%" y="725" width="0.0588%" height="15" fill="rgb(231,217,32)" fg:x="97304" fg:w="228"/><text x="25.3372%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (48 samples, 0.01%)</title><rect x="25.1460%" y="725" width="0.0124%" height="15" fill="rgb(229,61,38)" fg:x="97532" fg:w="48"/><text x="25.3960%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (302 samples, 0.08%)</title><rect x="25.0833%" y="741" width="0.0779%" height="15" fill="rgb(225,210,5)" fg:x="97289" fg:w="302"/><text x="25.3333%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (359 samples, 0.09%)</title><rect x="25.0802%" y="757" width="0.0926%" height="15" fill="rgb(231,79,45)" fg:x="97277" fg:w="359"/><text x="25.3302%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (47 samples, 0.01%)</title><rect x="25.1733%" y="709" width="0.0121%" height="15" fill="rgb(224,100,7)" fg:x="97638" fg:w="47"/><text x="25.4233%" y="719.50"></text></g><g><title>IdealLoopTree::loop_predication (98 samples, 0.03%)</title><rect x="25.1733%" y="725" width="0.0253%" height="15" fill="rgb(241,198,18)" fg:x="97638" fg:w="98"/><text x="25.4233%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (51 samples, 0.01%)</title><rect x="25.1854%" y="709" width="0.0131%" height="15" fill="rgb(252,97,53)" fg:x="97685" fg:w="51"/><text x="25.4354%" y="719.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (71 samples, 0.02%)</title><rect x="25.2053%" y="709" width="0.0183%" height="15" fill="rgb(220,88,7)" fg:x="97762" fg:w="71"/><text x="25.4553%" y="719.50"></text></g><g><title>IdealLoopTree::loop_predication (220 samples, 0.06%)</title><rect x="25.1733%" y="741" width="0.0567%" height="15" fill="rgb(213,176,14)" fg:x="97638" fg:w="220"/><text x="25.4233%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (122 samples, 0.03%)</title><rect x="25.1986%" y="725" width="0.0315%" height="15" fill="rgb(246,73,7)" fg:x="97736" fg:w="122"/><text x="25.4486%" y="735.50"></text></g><g><title>PathFrequency::to (43 samples, 0.01%)</title><rect x="25.2349%" y="725" width="0.0111%" height="15" fill="rgb(245,64,36)" fg:x="97877" fg:w="43"/><text x="25.4849%" y="735.50"></text></g><g><title>PathFrequency::to (41 samples, 0.01%)</title><rect x="25.2476%" y="709" width="0.0106%" height="15" fill="rgb(245,80,10)" fg:x="97926" fg:w="41"/><text x="25.4976%" y="719.50"></text></g><g><title>PhaseIdealLoop::is_dominator (47 samples, 0.01%)</title><rect x="25.2581%" y="709" width="0.0121%" height="15" fill="rgb(232,107,50)" fg:x="97967" fg:w="47"/><text x="25.5081%" y="719.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (109 samples, 0.03%)</title><rect x="25.2460%" y="725" width="0.0281%" height="15" fill="rgb(253,3,0)" fg:x="97920" fg:w="109"/><text x="25.4960%" y="735.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (68 samples, 0.02%)</title><rect x="25.2741%" y="725" width="0.0175%" height="15" fill="rgb(212,99,53)" fg:x="98029" fg:w="68"/><text x="25.5241%" y="735.50"></text></g><g><title>IdealLoopTree::loop_predication (489 samples, 0.13%)</title><rect x="25.1728%" y="757" width="0.1261%" height="15" fill="rgb(249,111,54)" fg:x="97636" fg:w="489"/><text x="25.4228%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (266 samples, 0.07%)</title><rect x="25.2303%" y="741" width="0.0686%" height="15" fill="rgb(249,55,30)" fg:x="97859" fg:w="266"/><text x="25.4803%" y="751.50"></text></g><g><title>NTarjan::DFS (522 samples, 0.13%)</title><rect x="25.6405%" y="741" width="0.1346%" height="15" fill="rgb(237,47,42)" fg:x="99450" fg:w="522"/><text x="25.8905%" y="751.50"></text></g><g><title>__handle_mm_fault (39 samples, 0.01%)</title><rect x="25.7929%" y="677" width="0.0101%" height="15" fill="rgb(211,20,18)" fg:x="100041" fg:w="39"/><text x="26.0429%" y="687.50"></text></g><g><title>asm_exc_page_fault (49 samples, 0.01%)</title><rect x="25.7908%" y="741" width="0.0126%" height="15" fill="rgb(231,203,46)" fg:x="100033" fg:w="49"/><text x="26.0408%" y="751.50"></text></g><g><title>exc_page_fault (49 samples, 0.01%)</title><rect x="25.7908%" y="725" width="0.0126%" height="15" fill="rgb(237,142,3)" fg:x="100033" fg:w="49"/><text x="26.0408%" y="735.50"></text></g><g><title>do_user_addr_fault (48 samples, 0.01%)</title><rect x="25.7911%" y="709" width="0.0124%" height="15" fill="rgb(241,107,1)" fg:x="100034" fg:w="48"/><text x="26.0411%" y="719.50"></text></g><g><title>handle_mm_fault (44 samples, 0.01%)</title><rect x="25.7921%" y="693" width="0.0113%" height="15" fill="rgb(229,83,13)" fg:x="100038" fg:w="44"/><text x="26.0421%" y="703.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,890 samples, 0.49%)</title><rect x="25.3192%" y="757" width="0.4873%" height="15" fill="rgb(241,91,40)" fg:x="98204" fg:w="1890"/><text x="25.5692%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (94 samples, 0.02%)</title><rect x="26.3590%" y="709" width="0.0242%" height="15" fill="rgb(225,3,45)" fg:x="102237" fg:w="94"/><text x="26.6090%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (262 samples, 0.07%)</title><rect x="26.3833%" y="709" width="0.0675%" height="15" fill="rgb(244,223,14)" fg:x="102331" fg:w="262"/><text x="26.6333%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (578 samples, 0.15%)</title><rect x="26.3026%" y="725" width="0.1490%" height="15" fill="rgb(224,124,37)" fg:x="102018" fg:w="578"/><text x="26.5526%" y="735.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (641 samples, 0.17%)</title><rect x="26.2866%" y="741" width="0.1653%" height="15" fill="rgb(251,171,30)" fg:x="101956" fg:w="641"/><text x="26.5366%" y="751.50"></text></g><g><title>PhiNode::pinned (59 samples, 0.02%)</title><rect x="26.4526%" y="741" width="0.0152%" height="15" fill="rgb(236,46,54)" fg:x="102600" fg:w="59"/><text x="26.7026%" y="751.50"></text></g><g><title>RegionNode::pinned (42 samples, 0.01%)</title><rect x="26.4761%" y="741" width="0.0108%" height="15" fill="rgb(245,213,5)" fg:x="102691" fg:w="42"/><text x="26.7261%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,657 samples, 0.69%)</title><rect x="25.8065%" y="757" width="0.6850%" height="15" fill="rgb(230,144,27)" fg:x="100094" fg:w="2657"/><text x="26.0565%" y="767.50"></text></g><g><title>Node_List::push (43 samples, 0.01%)</title><rect x="26.9987%" y="741" width="0.0111%" height="15" fill="rgb(220,86,6)" fg:x="104718" fg:w="43"/><text x="27.2487%" y="751.50"></text></g><g><title>Node::unique_ctrl_out (106 samples, 0.03%)</title><rect x="27.2674%" y="725" width="0.0273%" height="15" fill="rgb(240,20,13)" fg:x="105760" fg:w="106"/><text x="27.5174%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (132 samples, 0.03%)</title><rect x="27.2949%" y="725" width="0.0340%" height="15" fill="rgb(217,89,34)" fg:x="105867" fg:w="132"/><text x="27.5449%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (99 samples, 0.03%)</title><rect x="27.6381%" y="677" width="0.0255%" height="15" fill="rgb(229,13,5)" fg:x="107198" fg:w="99"/><text x="27.8881%" y="687.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (228 samples, 0.06%)</title><rect x="27.6636%" y="677" width="0.0588%" height="15" fill="rgb(244,67,35)" fg:x="107297" fg:w="228"/><text x="27.9136%" y="687.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (467 samples, 0.12%)</title><rect x="27.6025%" y="693" width="0.1204%" height="15" fill="rgb(221,40,2)" fg:x="107060" fg:w="467"/><text x="27.8525%" y="703.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (641 samples, 0.17%)</title><rect x="27.5693%" y="709" width="0.1653%" height="15" fill="rgb(237,157,21)" fg:x="106931" fg:w="641"/><text x="27.8193%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (45 samples, 0.01%)</title><rect x="27.7229%" y="693" width="0.0116%" height="15" fill="rgb(222,94,11)" fg:x="107527" fg:w="45"/><text x="27.9729%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_depth (43 samples, 0.01%)</title><rect x="27.7691%" y="693" width="0.0111%" height="15" fill="rgb(249,113,6)" fg:x="107706" fg:w="43"/><text x="28.0191%" y="703.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (205 samples, 0.05%)</title><rect x="27.7351%" y="709" width="0.0529%" height="15" fill="rgb(238,137,36)" fg:x="107574" fg:w="205"/><text x="27.9851%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_depth (960 samples, 0.25%)</title><rect x="28.6480%" y="693" width="0.2475%" height="15" fill="rgb(210,102,26)" fg:x="111115" fg:w="960"/><text x="28.8980%" y="703.50"></text></g><g><title>PhaseIdealLoop::is_dominator (4,276 samples, 1.10%)</title><rect x="27.7974%" y="709" width="1.1025%" height="15" fill="rgb(218,30,30)" fg:x="107816" fg:w="4276"/><text x="28.0474%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (6,133 samples, 1.58%)</title><rect x="27.3290%" y="725" width="1.5812%" height="15" fill="rgb(214,67,26)" fg:x="105999" fg:w="6133"/><text x="27.5790%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_loop (63 samples, 0.02%)</title><rect x="28.9102%" y="725" width="0.0162%" height="15" fill="rgb(251,9,53)" fg:x="112132" fg:w="63"/><text x="29.1602%" y="735.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (7,492 samples, 1.93%)</title><rect x="27.0106%" y="741" width="1.9316%" height="15" fill="rgb(228,204,25)" fg:x="104764" fg:w="7492"/><text x="27.2606%" y="751.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (9,536 samples, 2.46%)</title><rect x="26.4916%" y="757" width="2.4586%" height="15" fill="rgb(207,153,8)" fg:x="102751" fg:w="9536"/><text x="26.7416%" y="767.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (340 samples, 0.09%)</title><rect x="29.2152%" y="741" width="0.0877%" height="15" fill="rgb(242,9,16)" fg:x="113315" fg:w="340"/><text x="29.4652%" y="751.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,382 samples, 0.36%)</title><rect x="28.9520%" y="757" width="0.3563%" height="15" fill="rgb(217,211,10)" fg:x="112294" fg:w="1382"/><text x="29.2020%" y="767.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (40 samples, 0.01%)</title><rect x="29.3109%" y="757" width="0.0103%" height="15" fill="rgb(219,228,52)" fg:x="113686" fg:w="40"/><text x="29.5609%" y="767.50"></text></g><g><title>PhaseIdealLoop::do_split_if (147 samples, 0.04%)</title><rect x="29.5370%" y="741" width="0.0379%" height="15" fill="rgb(231,92,29)" fg:x="114563" fg:w="147"/><text x="29.7870%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (57 samples, 0.01%)</title><rect x="29.6417%" y="725" width="0.0147%" height="15" fill="rgb(232,8,23)" fg:x="114969" fg:w="57"/><text x="29.8917%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (432 samples, 0.11%)</title><rect x="29.5769%" y="741" width="0.1114%" height="15" fill="rgb(216,211,34)" fg:x="114718" fg:w="432"/><text x="29.8269%" y="751.50"></text></g><g><title>ConstraintCastNode::dominating_cast (101 samples, 0.03%)</title><rect x="29.7303%" y="725" width="0.0260%" height="15" fill="rgb(236,151,0)" fg:x="115313" fg:w="101"/><text x="29.9803%" y="735.50"></text></g><g><title>PhaseIdealLoop::conditional_move (41 samples, 0.01%)</title><rect x="29.7587%" y="725" width="0.0106%" height="15" fill="rgb(209,168,3)" fg:x="115423" fg:w="41"/><text x="30.0087%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (81 samples, 0.02%)</title><rect x="29.7711%" y="725" width="0.0209%" height="15" fill="rgb(208,129,28)" fg:x="115471" fg:w="81"/><text x="30.0211%" y="735.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (129 samples, 0.03%)</title><rect x="29.7920%" y="725" width="0.0333%" height="15" fill="rgb(229,78,22)" fg:x="115552" fg:w="129"/><text x="30.0420%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (41 samples, 0.01%)</title><rect x="29.8147%" y="709" width="0.0106%" height="15" fill="rgb(228,187,13)" fg:x="115640" fg:w="41"/><text x="30.0647%" y="719.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (83 samples, 0.02%)</title><rect x="29.8765%" y="709" width="0.0214%" height="15" fill="rgb(240,119,24)" fg:x="115880" fg:w="83"/><text x="30.1265%" y="719.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (283 samples, 0.07%)</title><rect x="29.8252%" y="725" width="0.0730%" height="15" fill="rgb(209,194,42)" fg:x="115681" fg:w="283"/><text x="30.0752%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (96 samples, 0.02%)</title><rect x="29.9425%" y="709" width="0.0248%" height="15" fill="rgb(247,200,46)" fg:x="116136" fg:w="96"/><text x="30.1925%" y="719.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (294 samples, 0.08%)</title><rect x="29.8982%" y="725" width="0.0758%" height="15" fill="rgb(218,76,16)" fg:x="115964" fg:w="294"/><text x="30.1482%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (1,187 samples, 0.31%)</title><rect x="29.6883%" y="741" width="0.3060%" height="15" fill="rgb(225,21,48)" fg:x="115150" fg:w="1187"/><text x="29.9383%" y="751.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (2,601 samples, 0.67%)</title><rect x="29.3258%" y="757" width="0.6706%" height="15" fill="rgb(239,223,50)" fg:x="113744" fg:w="2601"/><text x="29.5758%" y="767.50"></text></g><g><title>CallNode::Ideal (88 samples, 0.02%)</title><rect x="30.0867%" y="725" width="0.0227%" height="15" fill="rgb(244,45,21)" fg:x="116695" fg:w="88"/><text x="30.3367%" y="735.50"></text></g><g><title>Node::remove_dead_region (85 samples, 0.02%)</title><rect x="30.0874%" y="709" width="0.0219%" height="15" fill="rgb(232,33,43)" fg:x="116698" fg:w="85"/><text x="30.3374%" y="719.50"></text></g><g><title>CastIINode::Value (43 samples, 0.01%)</title><rect x="30.1106%" y="725" width="0.0111%" height="15" fill="rgb(209,8,3)" fg:x="116788" fg:w="43"/><text x="30.3606%" y="735.50"></text></g><g><title>IfNode::Ideal (44 samples, 0.01%)</title><rect x="30.1547%" y="725" width="0.0113%" height="15" fill="rgb(214,25,53)" fg:x="116959" fg:w="44"/><text x="30.4047%" y="735.50"></text></g><g><title>MemNode::Ideal_common (50 samples, 0.01%)</title><rect x="30.1766%" y="709" width="0.0129%" height="15" fill="rgb(254,186,54)" fg:x="117044" fg:w="50"/><text x="30.4266%" y="719.50"></text></g><g><title>MemNode::find_previous_store (45 samples, 0.01%)</title><rect x="30.1906%" y="709" width="0.0116%" height="15" fill="rgb(208,174,49)" fg:x="117098" fg:w="45"/><text x="30.4406%" y="719.50"></text></g><g><title>LoadNode::Ideal (126 samples, 0.03%)</title><rect x="30.1699%" y="725" width="0.0325%" height="15" fill="rgb(233,191,51)" fg:x="117018" fg:w="126"/><text x="30.4199%" y="735.50"></text></g><g><title>NodeHash::grow (65 samples, 0.02%)</title><rect x="30.2599%" y="709" width="0.0168%" height="15" fill="rgb(222,134,10)" fg:x="117367" fg:w="65"/><text x="30.5099%" y="719.50"></text></g><g><title>NodeHash::hash_find_insert (230 samples, 0.06%)</title><rect x="30.2218%" y="725" width="0.0593%" height="15" fill="rgb(230,226,20)" fg:x="117219" fg:w="230"/><text x="30.4718%" y="735.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (99 samples, 0.03%)</title><rect x="30.2816%" y="725" width="0.0255%" height="15" fill="rgb(251,111,25)" fg:x="117451" fg:w="99"/><text x="30.5316%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (63 samples, 0.02%)</title><rect x="30.3190%" y="709" width="0.0162%" height="15" fill="rgb(224,40,46)" fg:x="117596" fg:w="63"/><text x="30.5690%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (129 samples, 0.03%)</title><rect x="30.3071%" y="725" width="0.0333%" height="15" fill="rgb(236,108,47)" fg:x="117550" fg:w="129"/><text x="30.5571%" y="735.50"></text></g><g><title>PhiNode::Ideal (71 samples, 0.02%)</title><rect x="30.3416%" y="725" width="0.0183%" height="15" fill="rgb(234,93,0)" fg:x="117684" fg:w="71"/><text x="30.5916%" y="735.50"></text></g><g><title>PhiNode::Value (39 samples, 0.01%)</title><rect x="30.3628%" y="725" width="0.0101%" height="15" fill="rgb(224,213,32)" fg:x="117766" fg:w="39"/><text x="30.6128%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (42 samples, 0.01%)</title><rect x="30.4004%" y="709" width="0.0108%" height="15" fill="rgb(251,11,48)" fg:x="117912" fg:w="42"/><text x="30.6504%" y="719.50"></text></g><g><title>RegionNode::is_unreachable_region (252 samples, 0.06%)</title><rect x="30.4205%" y="709" width="0.0650%" height="15" fill="rgb(236,173,5)" fg:x="117990" fg:w="252"/><text x="30.6705%" y="719.50"></text></g><g><title>RegionNode::Ideal (404 samples, 0.10%)</title><rect x="30.3819%" y="725" width="0.1042%" height="15" fill="rgb(230,95,12)" fg:x="117840" fg:w="404"/><text x="30.6319%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (40 samples, 0.01%)</title><rect x="30.4891%" y="501" width="0.0103%" height="15" fill="rgb(232,209,1)" fg:x="118256" fg:w="40"/><text x="30.7391%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (48 samples, 0.01%)</title><rect x="30.4891%" y="517" width="0.0124%" height="15" fill="rgb(232,6,1)" fg:x="118256" fg:w="48"/><text x="30.7391%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.01%)</title><rect x="30.4891%" y="533" width="0.0139%" height="15" fill="rgb(210,224,50)" fg:x="118256" fg:w="54"/><text x="30.7391%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (63 samples, 0.02%)</title><rect x="30.4891%" y="549" width="0.0162%" height="15" fill="rgb(228,127,35)" fg:x="118256" fg:w="63"/><text x="30.7391%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (65 samples, 0.02%)</title><rect x="30.4889%" y="565" width="0.0168%" height="15" fill="rgb(245,102,45)" fg:x="118255" fg:w="65"/><text x="30.7389%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (71 samples, 0.02%)</title><rect x="30.4889%" y="581" width="0.0183%" height="15" fill="rgb(214,1,49)" fg:x="118255" fg:w="71"/><text x="30.7389%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.02%)</title><rect x="30.4889%" y="597" width="0.0201%" height="15" fill="rgb(226,163,40)" fg:x="118255" fg:w="78"/><text x="30.7389%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (84 samples, 0.02%)</title><rect x="30.4889%" y="613" width="0.0217%" height="15" fill="rgb(239,212,28)" fg:x="118255" fg:w="84"/><text x="30.7389%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (86 samples, 0.02%)</title><rect x="30.4889%" y="629" width="0.0222%" height="15" fill="rgb(220,20,13)" fg:x="118255" fg:w="86"/><text x="30.7389%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (89 samples, 0.02%)</title><rect x="30.4889%" y="645" width="0.0229%" height="15" fill="rgb(210,164,35)" fg:x="118255" fg:w="89"/><text x="30.7389%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (92 samples, 0.02%)</title><rect x="30.4889%" y="661" width="0.0237%" height="15" fill="rgb(248,109,41)" fg:x="118255" fg:w="92"/><text x="30.7389%" y="671.50"></text></g><g><title>InitializeNode::can_capture_store (106 samples, 0.03%)</title><rect x="30.4889%" y="709" width="0.0273%" height="15" fill="rgb(238,23,50)" fg:x="118255" fg:w="106"/><text x="30.7389%" y="719.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.03%)</title><rect x="30.4889%" y="693" width="0.0273%" height="15" fill="rgb(211,48,49)" fg:x="118255" fg:w="106"/><text x="30.7389%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (106 samples, 0.03%)</title><rect x="30.4889%" y="677" width="0.0273%" height="15" fill="rgb(223,36,21)" fg:x="118255" fg:w="106"/><text x="30.7389%" y="687.50"></text></g><g><title>StoreNode::Ideal (124 samples, 0.03%)</title><rect x="30.4886%" y="725" width="0.0320%" height="15" fill="rgb(207,123,46)" fg:x="118254" fg:w="124"/><text x="30.7386%" y="735.50"></text></g><g><title>PhaseIterGVN::transform_old (2,027 samples, 0.52%)</title><rect x="30.0145%" y="741" width="0.5226%" height="15" fill="rgb(240,218,32)" fg:x="116415" fg:w="2027"/><text x="30.2645%" y="751.50"></text></g><g><title>PhaseIterGVN::optimize (2,115 samples, 0.55%)</title><rect x="29.9969%" y="757" width="0.5453%" height="15" fill="rgb(252,5,43)" fg:x="116347" fg:w="2115"/><text x="30.2469%" y="767.50"></text></g><g><title>SuperWord::find_adjacent_refs (47 samples, 0.01%)</title><rect x="30.5634%" y="725" width="0.0121%" height="15" fill="rgb(252,84,19)" fg:x="118544" fg:w="47"/><text x="30.8134%" y="735.50"></text></g><g><title>SuperWord::SLP_extract (88 samples, 0.02%)</title><rect x="30.5572%" y="741" width="0.0227%" height="15" fill="rgb(243,152,39)" fg:x="118520" fg:w="88"/><text x="30.8072%" y="751.50"></text></g><g><title>SuperWord::transform_loop (89 samples, 0.02%)</title><rect x="30.5572%" y="757" width="0.0229%" height="15" fill="rgb(234,160,15)" fg:x="118520" fg:w="89"/><text x="30.8072%" y="767.50"></text></g><g><title>[libc.so.6] (44 samples, 0.01%)</title><rect x="30.5806%" y="757" width="0.0113%" height="15" fill="rgb(237,34,20)" fg:x="118611" fg:w="44"/><text x="30.8306%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (21,545 samples, 5.55%)</title><rect x="25.0385%" y="773" width="5.5548%" height="15" fill="rgb(229,97,13)" fg:x="97115" fg:w="21545"/><text x="25.2885%" y="783.50">PhaseId..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (93 samples, 0.02%)</title><rect x="30.6196%" y="757" width="0.0240%" height="15" fill="rgb(234,71,50)" fg:x="118762" fg:w="93"/><text x="30.8696%" y="767.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (196 samples, 0.05%)</title><rect x="30.5933%" y="773" width="0.0505%" height="15" fill="rgb(253,155,4)" fg:x="118660" fg:w="196"/><text x="30.8433%" y="783.50"></text></g><g><title>CallNode::Ideal (45 samples, 0.01%)</title><rect x="30.7593%" y="741" width="0.0116%" height="15" fill="rgb(222,185,37)" fg:x="119304" fg:w="45"/><text x="31.0093%" y="751.50"></text></g><g><title>Node::remove_dead_region (39 samples, 0.01%)</title><rect x="30.7609%" y="725" width="0.0101%" height="15" fill="rgb(251,177,13)" fg:x="119310" fg:w="39"/><text x="31.0109%" y="735.50"></text></g><g><title>IfNode::search_identical (51 samples, 0.01%)</title><rect x="30.8181%" y="725" width="0.0131%" height="15" fill="rgb(250,179,40)" fg:x="119532" fg:w="51"/><text x="31.0681%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (151 samples, 0.04%)</title><rect x="30.8503%" y="709" width="0.0389%" height="15" fill="rgb(242,44,2)" fg:x="119657" fg:w="151"/><text x="31.1003%" y="719.50"></text></g><g><title>Unique_Node_List::remove (137 samples, 0.04%)</title><rect x="30.8539%" y="693" width="0.0353%" height="15" fill="rgb(216,177,13)" fg:x="119671" fg:w="137"/><text x="31.1039%" y="703.50"></text></g><g><title>PhaseIterGVN::subsume_node (181 samples, 0.05%)</title><rect x="30.8439%" y="725" width="0.0467%" height="15" fill="rgb(216,106,43)" fg:x="119632" fg:w="181"/><text x="31.0939%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (62 samples, 0.02%)</title><rect x="30.9032%" y="709" width="0.0160%" height="15" fill="rgb(216,183,2)" fg:x="119862" fg:w="62"/><text x="31.1532%" y="719.50"></text></g><g><title>Unique_Node_List::remove (49 samples, 0.01%)</title><rect x="30.9065%" y="693" width="0.0126%" height="15" fill="rgb(249,75,3)" fg:x="119875" fg:w="49"/><text x="31.1565%" y="703.50"></text></g><g><title>IfNode::Ideal (476 samples, 0.12%)</title><rect x="30.8024%" y="741" width="0.1227%" height="15" fill="rgb(219,67,39)" fg:x="119471" fg:w="476"/><text x="31.0524%" y="751.50"></text></g><g><title>split_if (125 samples, 0.03%)</title><rect x="30.8929%" y="725" width="0.0322%" height="15" fill="rgb(253,228,2)" fg:x="119822" fg:w="125"/><text x="31.1429%" y="735.50"></text></g><g><title>MemNode::Ideal_common (98 samples, 0.03%)</title><rect x="30.9511%" y="725" width="0.0253%" height="15" fill="rgb(235,138,27)" fg:x="120048" fg:w="98"/><text x="31.2011%" y="735.50"></text></g><g><title>Node::dominates (72 samples, 0.02%)</title><rect x="30.9836%" y="693" width="0.0186%" height="15" fill="rgb(236,97,51)" fg:x="120174" fg:w="72"/><text x="31.2336%" y="703.50"></text></g><g><title>MemNode::all_controls_dominate (77 samples, 0.02%)</title><rect x="30.9834%" y="709" width="0.0199%" height="15" fill="rgb(240,80,30)" fg:x="120173" fg:w="77"/><text x="31.2334%" y="719.50"></text></g><g><title>MemNode::find_previous_store (139 samples, 0.04%)</title><rect x="30.9790%" y="725" width="0.0358%" height="15" fill="rgb(230,178,19)" fg:x="120156" fg:w="139"/><text x="31.2290%" y="735.50"></text></g><g><title>LoadNode::Ideal (296 samples, 0.08%)</title><rect x="30.9403%" y="741" width="0.0763%" height="15" fill="rgb(210,190,27)" fg:x="120006" fg:w="296"/><text x="31.1903%" y="751.50"></text></g><g><title>LoadNode::is_instance_field_load_with_local_phi (40 samples, 0.01%)</title><rect x="31.0171%" y="725" width="0.0103%" height="15" fill="rgb(222,107,31)" fg:x="120304" fg:w="40"/><text x="31.2671%" y="735.50"></text></g><g><title>LoadNode::Identity (52 samples, 0.01%)</title><rect x="31.0166%" y="741" width="0.0134%" height="15" fill="rgb(216,127,34)" fg:x="120302" fg:w="52"/><text x="31.2666%" y="751.50"></text></g><g><title>LoadNode::Value (45 samples, 0.01%)</title><rect x="31.0300%" y="741" width="0.0116%" height="15" fill="rgb(234,116,52)" fg:x="120354" fg:w="45"/><text x="31.2800%" y="751.50"></text></g><g><title>MergeMemNode::Ideal (84 samples, 0.02%)</title><rect x="31.0507%" y="741" width="0.0217%" height="15" fill="rgb(222,124,15)" fg:x="120434" fg:w="84"/><text x="31.3007%" y="751.50"></text></g><g><title>NodeHash::grow (101 samples, 0.03%)</title><rect x="31.1272%" y="725" width="0.0260%" height="15" fill="rgb(231,179,28)" fg:x="120731" fg:w="101"/><text x="31.3772%" y="735.50"></text></g><g><title>NodeHash::hash_find_insert (299 samples, 0.08%)</title><rect x="31.0788%" y="741" width="0.0771%" height="15" fill="rgb(226,93,45)" fg:x="120543" fg:w="299"/><text x="31.3288%" y="751.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (79 samples, 0.02%)</title><rect x="31.1561%" y="741" width="0.0204%" height="15" fill="rgb(215,8,51)" fg:x="120843" fg:w="79"/><text x="31.4061%" y="751.50"></text></g><g><title>Node::replace_edge (47 samples, 0.01%)</title><rect x="31.2291%" y="709" width="0.0121%" height="15" fill="rgb(223,106,5)" fg:x="121126" fg:w="47"/><text x="31.4791%" y="719.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (138 samples, 0.04%)</title><rect x="31.2175%" y="725" width="0.0356%" height="15" fill="rgb(250,191,5)" fg:x="121081" fg:w="138"/><text x="31.4675%" y="735.50"></text></g><g><title>Unique_Node_List::remove (44 samples, 0.01%)</title><rect x="31.2417%" y="709" width="0.0113%" height="15" fill="rgb(242,132,44)" fg:x="121175" fg:w="44"/><text x="31.4917%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (324 samples, 0.08%)</title><rect x="31.1770%" y="741" width="0.0835%" height="15" fill="rgb(251,152,29)" fg:x="120924" fg:w="324"/><text x="31.4270%" y="751.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (47 samples, 0.01%)</title><rect x="31.2907%" y="725" width="0.0121%" height="15" fill="rgb(218,179,5)" fg:x="121365" fg:w="47"/><text x="31.5407%" y="735.50"></text></g><g><title>PhiNode::Ideal (193 samples, 0.05%)</title><rect x="31.2616%" y="741" width="0.0498%" height="15" fill="rgb(227,67,19)" fg:x="121252" fg:w="193"/><text x="31.5116%" y="751.50"></text></g><g><title>PhiNode::Value (50 samples, 0.01%)</title><rect x="31.3149%" y="741" width="0.0129%" height="15" fill="rgb(233,119,31)" fg:x="121459" fg:w="50"/><text x="31.5649%" y="751.50"></text></g><g><title>Unique_Node_List::remove (159 samples, 0.04%)</title><rect x="31.3961%" y="693" width="0.0410%" height="15" fill="rgb(241,120,22)" fg:x="121774" fg:w="159"/><text x="31.6461%" y="703.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (187 samples, 0.05%)</title><rect x="31.3894%" y="709" width="0.0482%" height="15" fill="rgb(224,102,30)" fg:x="121748" fg:w="187"/><text x="31.6394%" y="719.50"></text></g><g><title>PhaseIterGVN::subsume_node (222 samples, 0.06%)</title><rect x="31.3840%" y="725" width="0.0572%" height="15" fill="rgb(210,164,37)" fg:x="121727" fg:w="222"/><text x="31.6340%" y="735.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (45 samples, 0.01%)</title><rect x="31.4413%" y="725" width="0.0116%" height="15" fill="rgb(226,191,16)" fg:x="121949" fg:w="45"/><text x="31.6913%" y="735.50"></text></g><g><title>RegionNode::is_unreachable_region (165 samples, 0.04%)</title><rect x="31.4531%" y="725" width="0.0425%" height="15" fill="rgb(214,40,45)" fg:x="121995" fg:w="165"/><text x="31.7031%" y="735.50"></text></g><g><title>RegionNode::Ideal (583 samples, 0.15%)</title><rect x="31.3490%" y="741" width="0.1503%" height="15" fill="rgb(244,29,26)" fg:x="121591" fg:w="583"/><text x="31.5990%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (52 samples, 0.01%)</title><rect x="31.5080%" y="421" width="0.0134%" height="15" fill="rgb(216,16,5)" fg:x="122208" fg:w="52"/><text x="31.7580%" y="431.50"></text></g><g><title>InitializeNode::detect_init_independence (67 samples, 0.02%)</title><rect x="31.5080%" y="437" width="0.0173%" height="15" fill="rgb(249,76,35)" fg:x="122208" fg:w="67"/><text x="31.7580%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (92 samples, 0.02%)</title><rect x="31.5080%" y="453" width="0.0237%" height="15" fill="rgb(207,11,44)" fg:x="122208" fg:w="92"/><text x="31.7580%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (112 samples, 0.03%)</title><rect x="31.5080%" y="469" width="0.0289%" height="15" fill="rgb(228,190,49)" fg:x="122208" fg:w="112"/><text x="31.7580%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (135 samples, 0.03%)</title><rect x="31.5080%" y="485" width="0.0348%" height="15" fill="rgb(214,173,12)" fg:x="122208" fg:w="135"/><text x="31.7580%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (151 samples, 0.04%)</title><rect x="31.5080%" y="501" width="0.0389%" height="15" fill="rgb(218,26,35)" fg:x="122208" fg:w="151"/><text x="31.7580%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (168 samples, 0.04%)</title><rect x="31.5080%" y="517" width="0.0433%" height="15" fill="rgb(220,200,19)" fg:x="122208" fg:w="168"/><text x="31.7580%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (181 samples, 0.05%)</title><rect x="31.5080%" y="533" width="0.0467%" height="15" fill="rgb(239,95,49)" fg:x="122208" fg:w="181"/><text x="31.7580%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (203 samples, 0.05%)</title><rect x="31.5080%" y="549" width="0.0523%" height="15" fill="rgb(235,85,53)" fg:x="122208" fg:w="203"/><text x="31.7580%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (225 samples, 0.06%)</title><rect x="31.5078%" y="565" width="0.0580%" height="15" fill="rgb(233,133,31)" fg:x="122207" fg:w="225"/><text x="31.7578%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (244 samples, 0.06%)</title><rect x="31.5078%" y="581" width="0.0629%" height="15" fill="rgb(218,25,20)" fg:x="122207" fg:w="244"/><text x="31.7578%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (267 samples, 0.07%)</title><rect x="31.5078%" y="597" width="0.0688%" height="15" fill="rgb(252,210,38)" fg:x="122207" fg:w="267"/><text x="31.7578%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (290 samples, 0.07%)</title><rect x="31.5075%" y="613" width="0.0748%" height="15" fill="rgb(242,134,21)" fg:x="122206" fg:w="290"/><text x="31.7575%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (313 samples, 0.08%)</title><rect x="31.5075%" y="629" width="0.0807%" height="15" fill="rgb(213,28,48)" fg:x="122206" fg:w="313"/><text x="31.7575%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (326 samples, 0.08%)</title><rect x="31.5073%" y="645" width="0.0841%" height="15" fill="rgb(250,196,2)" fg:x="122205" fg:w="326"/><text x="31.7573%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (338 samples, 0.09%)</title><rect x="31.5073%" y="661" width="0.0871%" height="15" fill="rgb(227,5,17)" fg:x="122205" fg:w="338"/><text x="31.7573%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (380 samples, 0.10%)</title><rect x="31.5067%" y="677" width="0.0980%" height="15" fill="rgb(221,226,24)" fg:x="122203" fg:w="380"/><text x="31.7567%" y="687.50"></text></g><g><title>MemNode::all_controls_dominate (40 samples, 0.01%)</title><rect x="31.5944%" y="661" width="0.0103%" height="15" fill="rgb(211,5,48)" fg:x="122543" fg:w="40"/><text x="31.8444%" y="671.50"></text></g><g><title>Node::dominates (58 samples, 0.01%)</title><rect x="31.6050%" y="661" width="0.0150%" height="15" fill="rgb(219,150,6)" fg:x="122584" fg:w="58"/><text x="31.8550%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (441 samples, 0.11%)</title><rect x="31.5067%" y="693" width="0.1137%" height="15" fill="rgb(251,46,16)" fg:x="122203" fg:w="441"/><text x="31.7567%" y="703.50"></text></g><g><title>MemNode::all_controls_dominate (61 samples, 0.02%)</title><rect x="31.6047%" y="677" width="0.0157%" height="15" fill="rgb(220,204,40)" fg:x="122583" fg:w="61"/><text x="31.8547%" y="687.50"></text></g><g><title>InitializeNode::can_capture_store (443 samples, 0.11%)</title><rect x="31.5065%" y="725" width="0.1142%" height="15" fill="rgb(211,85,2)" fg:x="122202" fg:w="443"/><text x="31.7565%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (443 samples, 0.11%)</title><rect x="31.5065%" y="709" width="0.1142%" height="15" fill="rgb(229,17,7)" fg:x="122202" fg:w="443"/><text x="31.7565%" y="719.50"></text></g><g><title>MemNode::Ideal_common (42 samples, 0.01%)</title><rect x="31.6207%" y="725" width="0.0108%" height="15" fill="rgb(239,72,28)" fg:x="122645" fg:w="42"/><text x="31.8707%" y="735.50"></text></g><g><title>StoreNode::Ideal (489 samples, 0.13%)</title><rect x="31.5057%" y="741" width="0.1261%" height="15" fill="rgb(230,47,54)" fg:x="122199" fg:w="489"/><text x="31.7557%" y="751.50"></text></g><g><title>PhaseIterGVN::transform_old (3,791 samples, 0.98%)</title><rect x="30.6799%" y="757" width="0.9774%" height="15" fill="rgb(214,50,8)" fg:x="118996" fg:w="3791"/><text x="30.9299%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (3,953 samples, 1.02%)</title><rect x="30.6438%" y="773" width="1.0192%" height="15" fill="rgb(216,198,43)" fg:x="118856" fg:w="3953"/><text x="30.8938%" y="783.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (66 samples, 0.02%)</title><rect x="31.6632%" y="773" width="0.0170%" height="15" fill="rgb(234,20,35)" fg:x="122810" fg:w="66"/><text x="31.9132%" y="783.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (65 samples, 0.02%)</title><rect x="31.6635%" y="757" width="0.0168%" height="15" fill="rgb(254,45,19)" fg:x="122811" fg:w="65"/><text x="31.9135%" y="767.50"></text></g><g><title>PhaseIterGVN::optimize (365 samples, 0.09%)</title><rect x="31.6828%" y="757" width="0.0941%" height="15" fill="rgb(219,14,44)" fg:x="122886" fg:w="365"/><text x="31.9328%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (349 samples, 0.09%)</title><rect x="31.6870%" y="741" width="0.0900%" height="15" fill="rgb(217,220,26)" fg:x="122902" fg:w="349"/><text x="31.9370%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (42 samples, 0.01%)</title><rect x="31.7903%" y="741" width="0.0108%" height="15" fill="rgb(213,158,28)" fg:x="123303" fg:w="42"/><text x="32.0403%" y="751.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (137 samples, 0.04%)</title><rect x="31.7787%" y="757" width="0.0353%" height="15" fill="rgb(252,51,52)" fg:x="123258" fg:w="137"/><text x="32.0287%" y="767.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (568 samples, 0.15%)</title><rect x="31.6803%" y="773" width="0.1464%" height="15" fill="rgb(246,89,16)" fg:x="122876" fg:w="568"/><text x="31.9303%" y="783.50"></text></g><g><title>Compile::identify_useful_nodes (122 samples, 0.03%)</title><rect x="31.8383%" y="741" width="0.0315%" height="15" fill="rgb(216,158,49)" fg:x="123489" fg:w="122"/><text x="32.0883%" y="751.50"></text></g><g><title>Compile::remove_useless_nodes (86 samples, 0.02%)</title><rect x="31.8698%" y="741" width="0.0222%" height="15" fill="rgb(236,107,19)" fg:x="123611" fg:w="86"/><text x="32.1198%" y="751.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (251 samples, 0.06%)</title><rect x="31.8329%" y="757" width="0.0647%" height="15" fill="rgb(228,185,30)" fg:x="123468" fg:w="251"/><text x="32.0829%" y="767.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (277 samples, 0.07%)</title><rect x="31.8267%" y="773" width="0.0714%" height="15" fill="rgb(246,134,8)" fg:x="123444" fg:w="277"/><text x="32.0767%" y="783.50"></text></g><g><title>Compile::Optimize (30,210 samples, 7.79%)</title><rect x="24.1116%" y="789" width="7.7888%" height="15" fill="rgb(214,143,50)" fg:x="93520" fg:w="30210"/><text x="24.3616%" y="799.50">Compile::Op..</text></g><g><title>Parse::do_call (53 samples, 0.01%)</title><rect x="31.9229%" y="645" width="0.0137%" height="15" fill="rgb(228,75,8)" fg:x="123817" fg:w="53"/><text x="32.1729%" y="655.50"></text></g><g><title>Parse::do_one_block (202 samples, 0.05%)</title><rect x="31.9102%" y="677" width="0.0521%" height="15" fill="rgb(207,175,4)" fg:x="123768" fg:w="202"/><text x="32.1602%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (175 samples, 0.05%)</title><rect x="31.9172%" y="661" width="0.0451%" height="15" fill="rgb(205,108,24)" fg:x="123795" fg:w="175"/><text x="32.1672%" y="671.50"></text></g><g><title>Parse::do_all_blocks (207 samples, 0.05%)</title><rect x="31.9097%" y="693" width="0.0534%" height="15" fill="rgb(244,120,49)" fg:x="123766" fg:w="207"/><text x="32.1597%" y="703.50"></text></g><g><title>ParseGenerator::generate (220 samples, 0.06%)</title><rect x="31.9097%" y="725" width="0.0567%" height="15" fill="rgb(223,47,38)" fg:x="123766" fg:w="220"/><text x="32.1597%" y="735.50"></text></g><g><title>Parse::Parse (220 samples, 0.06%)</title><rect x="31.9097%" y="709" width="0.0567%" height="15" fill="rgb(229,179,11)" fg:x="123766" fg:w="220"/><text x="32.1597%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (262 samples, 0.07%)</title><rect x="31.9048%" y="789" width="0.0675%" height="15" fill="rgb(231,122,1)" fg:x="123747" fg:w="262"/><text x="32.1548%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (262 samples, 0.07%)</title><rect x="31.9048%" y="773" width="0.0675%" height="15" fill="rgb(245,119,9)" fg:x="123747" fg:w="262"/><text x="32.1548%" y="783.50"></text></g><g><title>C2Compiler::compile_method (262 samples, 0.07%)</title><rect x="31.9048%" y="757" width="0.0675%" height="15" fill="rgb(241,163,25)" fg:x="123747" fg:w="262"/><text x="32.1548%" y="767.50"></text></g><g><title>Compile::Compile (262 samples, 0.07%)</title><rect x="31.9048%" y="741" width="0.0675%" height="15" fill="rgb(217,214,3)" fg:x="123747" fg:w="262"/><text x="32.1548%" y="751.50"></text></g><g><title>ciEnv::get_field_by_index (43 samples, 0.01%)</title><rect x="31.9729%" y="581" width="0.0111%" height="15" fill="rgb(240,86,28)" fg:x="124011" fg:w="43"/><text x="32.2229%" y="591.50"></text></g><g><title>ciField::ciField (41 samples, 0.01%)</title><rect x="31.9734%" y="565" width="0.0106%" height="15" fill="rgb(215,47,9)" fg:x="124013" fg:w="41"/><text x="32.2234%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (45 samples, 0.01%)</title><rect x="31.9729%" y="613" width="0.0116%" height="15" fill="rgb(252,25,45)" fg:x="124011" fg:w="45"/><text x="32.2229%" y="623.50"></text></g><g><title>ciBytecodeStream::get_field (45 samples, 0.01%)</title><rect x="31.9729%" y="597" width="0.0116%" height="15" fill="rgb(251,164,9)" fg:x="124011" fg:w="45"/><text x="32.2229%" y="607.50"></text></g><g><title>ciObjectFactory::get_metadata (46 samples, 0.01%)</title><rect x="31.9871%" y="565" width="0.0119%" height="15" fill="rgb(233,194,0)" fg:x="124066" fg:w="46"/><text x="32.2371%" y="575.50"></text></g><g><title>ciObjectFactory::create_new_metadata (46 samples, 0.01%)</title><rect x="31.9871%" y="549" width="0.0119%" height="15" fill="rgb(249,111,24)" fg:x="124066" fg:w="46"/><text x="32.2371%" y="559.50"></text></g><g><title>ciMethod::ciMethod (43 samples, 0.01%)</title><rect x="31.9878%" y="533" width="0.0111%" height="15" fill="rgb(250,223,3)" fg:x="124069" fg:w="43"/><text x="32.2378%" y="543.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (57 samples, 0.01%)</title><rect x="31.9845%" y="613" width="0.0147%" height="15" fill="rgb(236,178,37)" fg:x="124056" fg:w="57"/><text x="32.2345%" y="623.50"></text></g><g><title>ciBytecodeStream::get_method (57 samples, 0.01%)</title><rect x="31.9845%" y="597" width="0.0147%" height="15" fill="rgb(241,158,50)" fg:x="124056" fg:w="57"/><text x="32.2345%" y="607.50"></text></g><g><title>ciEnv::get_method_by_index_impl (57 samples, 0.01%)</title><rect x="31.9845%" y="581" width="0.0147%" height="15" fill="rgb(213,121,41)" fg:x="124056" fg:w="57"/><text x="32.2345%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (108 samples, 0.03%)</title><rect x="31.9726%" y="661" width="0.0278%" height="15" fill="rgb(240,92,3)" fg:x="124010" fg:w="108"/><text x="32.2226%" y="671.50"></text></g><g><title>ciTypeFlow::flow_block (108 samples, 0.03%)</title><rect x="31.9726%" y="645" width="0.0278%" height="15" fill="rgb(205,123,3)" fg:x="124010" fg:w="108"/><text x="32.2226%" y="655.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (108 samples, 0.03%)</title><rect x="31.9726%" y="629" width="0.0278%" height="15" fill="rgb(205,97,47)" fg:x="124010" fg:w="108"/><text x="32.2226%" y="639.50"></text></g><g><title>CallGenerator::for_inline (110 samples, 0.03%)</title><rect x="31.9724%" y="741" width="0.0284%" height="15" fill="rgb(247,152,14)" fg:x="124009" fg:w="110"/><text x="32.2224%" y="751.50"></text></g><g><title>InlineTree::check_can_parse (110 samples, 0.03%)</title><rect x="31.9724%" y="725" width="0.0284%" height="15" fill="rgb(248,195,53)" fg:x="124009" fg:w="110"/><text x="32.2224%" y="735.50"></text></g><g><title>ciMethod::get_flow_analysis (110 samples, 0.03%)</title><rect x="31.9724%" y="709" width="0.0284%" height="15" fill="rgb(226,201,16)" fg:x="124009" fg:w="110"/><text x="32.2224%" y="719.50"></text></g><g><title>ciTypeFlow::do_flow (110 samples, 0.03%)</title><rect x="31.9724%" y="693" width="0.0284%" height="15" fill="rgb(205,98,0)" fg:x="124009" fg:w="110"/><text x="32.2224%" y="703.50"></text></g><g><title>ciTypeFlow::flow_types (110 samples, 0.03%)</title><rect x="31.9724%" y="677" width="0.0284%" height="15" fill="rgb(214,191,48)" fg:x="124009" fg:w="110"/><text x="32.2224%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (66 samples, 0.02%)</title><rect x="32.0201%" y="629" width="0.0170%" height="15" fill="rgb(237,112,39)" fg:x="124194" fg:w="66"/><text x="32.2701%" y="639.50"></text></g><g><title>Compile::call_generator (98 samples, 0.03%)</title><rect x="32.0167%" y="645" width="0.0253%" height="15" fill="rgb(247,203,27)" fg:x="124181" fg:w="98"/><text x="32.2667%" y="655.50"></text></g><g><title>Parse::do_one_block (143 samples, 0.04%)</title><rect x="32.0799%" y="597" width="0.0369%" height="15" fill="rgb(235,124,28)" fg:x="124426" fg:w="143"/><text x="32.3299%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (132 samples, 0.03%)</title><rect x="32.0827%" y="581" width="0.0340%" height="15" fill="rgb(208,207,46)" fg:x="124437" fg:w="132"/><text x="32.3327%" y="591.50"></text></g><g><title>Parse::do_all_blocks (159 samples, 0.04%)</title><rect x="32.0794%" y="613" width="0.0410%" height="15" fill="rgb(234,176,4)" fg:x="124424" fg:w="159"/><text x="32.3294%" y="623.50"></text></g><g><title>ParseGenerator::generate (264 samples, 0.07%)</title><rect x="32.0654%" y="645" width="0.0681%" height="15" fill="rgb(230,133,28)" fg:x="124370" fg:w="264"/><text x="32.3154%" y="655.50"></text></g><g><title>Parse::Parse (263 samples, 0.07%)</title><rect x="32.0657%" y="629" width="0.0678%" height="15" fill="rgb(211,137,40)" fg:x="124371" fg:w="263"/><text x="32.3157%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (114 samples, 0.03%)</title><rect x="32.1335%" y="645" width="0.0294%" height="15" fill="rgb(254,35,13)" fg:x="124634" fg:w="114"/><text x="32.3835%" y="655.50"></text></g><g><title>Parse::do_call (604 samples, 0.16%)</title><rect x="32.0167%" y="661" width="0.1557%" height="15" fill="rgb(225,49,51)" fg:x="124181" fg:w="604"/><text x="32.2667%" y="671.50"></text></g><g><title>Parse::do_get_xxx (49 samples, 0.01%)</title><rect x="32.1848%" y="645" width="0.0126%" height="15" fill="rgb(251,10,15)" fg:x="124833" fg:w="49"/><text x="32.4348%" y="655.50"></text></g><g><title>Parse::do_field_access (99 samples, 0.03%)</title><rect x="32.1810%" y="661" width="0.0255%" height="15" fill="rgb(228,207,15)" fg:x="124818" fg:w="99"/><text x="32.4310%" y="671.50"></text></g><g><title>Parse::do_one_block (855 samples, 0.22%)</title><rect x="32.0046%" y="693" width="0.2204%" height="15" fill="rgb(241,99,19)" fg:x="124134" fg:w="855"/><text x="32.2546%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (846 samples, 0.22%)</title><rect x="32.0069%" y="677" width="0.2181%" height="15" fill="rgb(207,104,49)" fg:x="124143" fg:w="846"/><text x="32.2569%" y="687.50"></text></g><g><title>Parse::do_all_blocks (856 samples, 0.22%)</title><rect x="32.0046%" y="709" width="0.2207%" height="15" fill="rgb(234,99,18)" fg:x="124134" fg:w="856"/><text x="32.2546%" y="719.50"></text></g><g><title>ParseGenerator::generate (868 samples, 0.22%)</title><rect x="32.0046%" y="741" width="0.2238%" height="15" fill="rgb(213,191,49)" fg:x="124134" fg:w="868"/><text x="32.2546%" y="751.50"></text></g><g><title>Parse::Parse (868 samples, 0.22%)</title><rect x="32.0046%" y="725" width="0.2238%" height="15" fill="rgb(210,226,19)" fg:x="124134" fg:w="868"/><text x="32.2546%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,039 samples, 0.27%)</title><rect x="31.9724%" y="789" width="0.2679%" height="15" fill="rgb(229,97,18)" fg:x="124009" fg:w="1039"/><text x="32.2224%" y="799.50"></text></g><g><title>C2Compiler::compile_method (1,039 samples, 0.27%)</title><rect x="31.9724%" y="773" width="0.2679%" height="15" fill="rgb(211,167,15)" fg:x="124009" fg:w="1039"/><text x="32.2224%" y="783.50"></text></g><g><title>Compile::Compile (1,039 samples, 0.27%)</title><rect x="31.9724%" y="757" width="0.2679%" height="15" fill="rgb(210,169,34)" fg:x="124009" fg:w="1039"/><text x="32.2224%" y="767.50"></text></g><g><title>ciEnv::register_method (46 samples, 0.01%)</title><rect x="32.2284%" y="741" width="0.0119%" height="15" fill="rgb(241,121,31)" fg:x="125002" fg:w="46"/><text x="32.4784%" y="751.50"></text></g><g><title>nmethod::new_nmethod (44 samples, 0.01%)</title><rect x="32.2289%" y="725" width="0.0113%" height="15" fill="rgb(232,40,11)" fg:x="125004" fg:w="44"/><text x="32.4789%" y="735.50"></text></g><g><title>nmethod::nmethod (44 samples, 0.01%)</title><rect x="32.2289%" y="709" width="0.0113%" height="15" fill="rgb(205,86,26)" fg:x="125004" fg:w="44"/><text x="32.4789%" y="719.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="32.2676%" y="661" width="0.0142%" height="15" fill="rgb(231,126,28)" fg:x="125154" fg:w="55"/><text x="32.5176%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.01%)</title><rect x="32.2691%" y="645" width="0.0126%" height="15" fill="rgb(219,221,18)" fg:x="125160" fg:w="49"/><text x="32.5191%" y="655.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="32.2668%" y="677" width="0.0165%" height="15" fill="rgb(211,40,0)" fg:x="125151" fg:w="64"/><text x="32.5168%" y="687.50"></text></g><g><title>ParseGenerator::generate (71 samples, 0.02%)</title><rect x="32.2665%" y="709" width="0.0183%" height="15" fill="rgb(239,85,43)" fg:x="125150" fg:w="71"/><text x="32.5165%" y="719.50"></text></g><g><title>Parse::Parse (71 samples, 0.02%)</title><rect x="32.2665%" y="693" width="0.0183%" height="15" fill="rgb(231,55,21)" fg:x="125150" fg:w="71"/><text x="32.5165%" y="703.50"></text></g><g><title>JavaThread::thread_main_inner (98 samples, 0.03%)</title><rect x="32.2629%" y="789" width="0.0253%" height="15" fill="rgb(225,184,43)" fg:x="125136" fg:w="98"/><text x="32.5129%" y="799.50"></text></g><g><title>CompileBroker::compiler_thread_loop (98 samples, 0.03%)</title><rect x="32.2629%" y="773" width="0.0253%" height="15" fill="rgb(251,158,41)" fg:x="125136" fg:w="98"/><text x="32.5129%" y="783.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (98 samples, 0.03%)</title><rect x="32.2629%" y="757" width="0.0253%" height="15" fill="rgb(234,159,37)" fg:x="125136" fg:w="98"/><text x="32.5129%" y="767.50"></text></g><g><title>C2Compiler::compile_method (98 samples, 0.03%)</title><rect x="32.2629%" y="741" width="0.0253%" height="15" fill="rgb(216,204,22)" fg:x="125136" fg:w="98"/><text x="32.5129%" y="751.50"></text></g><g><title>Compile::Compile (98 samples, 0.03%)</title><rect x="32.2629%" y="725" width="0.0253%" height="15" fill="rgb(214,17,3)" fg:x="125136" fg:w="98"/><text x="32.5129%" y="735.50"></text></g><g><title>Parse::do_call (41 samples, 0.01%)</title><rect x="32.2916%" y="149" width="0.0106%" height="15" fill="rgb(212,111,17)" fg:x="125247" fg:w="41"/><text x="32.5416%" y="159.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="32.2916%" y="229" width="0.0108%" height="15" fill="rgb(221,157,24)" fg:x="125247" fg:w="42"/><text x="32.5416%" y="239.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="32.2916%" y="213" width="0.0108%" height="15" fill="rgb(252,16,13)" fg:x="125247" fg:w="42"/><text x="32.5416%" y="223.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="32.2916%" y="197" width="0.0108%" height="15" fill="rgb(221,62,2)" fg:x="125247" fg:w="42"/><text x="32.5416%" y="207.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="32.2916%" y="181" width="0.0108%" height="15" fill="rgb(247,87,22)" fg:x="125247" fg:w="42"/><text x="32.5416%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="32.2916%" y="165" width="0.0108%" height="15" fill="rgb(215,73,9)" fg:x="125247" fg:w="42"/><text x="32.5416%" y="175.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.01%)</title><rect x="32.2905%" y="325" width="0.0124%" height="15" fill="rgb(207,175,33)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="335.50"></text></g><g><title>Parse::Parse (48 samples, 0.01%)</title><rect x="32.2905%" y="309" width="0.0124%" height="15" fill="rgb(243,129,54)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="319.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.01%)</title><rect x="32.2905%" y="293" width="0.0124%" height="15" fill="rgb(227,119,45)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="303.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.01%)</title><rect x="32.2905%" y="277" width="0.0124%" height="15" fill="rgb(205,109,36)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.01%)</title><rect x="32.2905%" y="261" width="0.0124%" height="15" fill="rgb(205,6,39)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="271.50"></text></g><g><title>Parse::do_call (48 samples, 0.01%)</title><rect x="32.2905%" y="245" width="0.0124%" height="15" fill="rgb(221,32,16)" fg:x="125243" fg:w="48"/><text x="32.5405%" y="255.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.01%)</title><rect x="32.2905%" y="421" width="0.0137%" height="15" fill="rgb(228,144,50)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="431.50"></text></g><g><title>Parse::Parse (53 samples, 0.01%)</title><rect x="32.2905%" y="405" width="0.0137%" height="15" fill="rgb(229,201,53)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="415.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.01%)</title><rect x="32.2905%" y="389" width="0.0137%" height="15" fill="rgb(249,153,27)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="399.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.01%)</title><rect x="32.2905%" y="373" width="0.0137%" height="15" fill="rgb(227,106,25)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.01%)</title><rect x="32.2905%" y="357" width="0.0137%" height="15" fill="rgb(230,65,29)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="367.50"></text></g><g><title>Parse::do_call (53 samples, 0.01%)</title><rect x="32.2905%" y="341" width="0.0137%" height="15" fill="rgb(221,57,46)" fg:x="125243" fg:w="53"/><text x="32.5405%" y="351.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.02%)</title><rect x="32.2905%" y="517" width="0.0155%" height="15" fill="rgb(229,161,17)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="527.50"></text></g><g><title>Parse::Parse (60 samples, 0.02%)</title><rect x="32.2905%" y="501" width="0.0155%" height="15" fill="rgb(222,213,11)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="511.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.02%)</title><rect x="32.2905%" y="485" width="0.0155%" height="15" fill="rgb(235,35,13)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="495.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.02%)</title><rect x="32.2905%" y="469" width="0.0155%" height="15" fill="rgb(233,158,34)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.02%)</title><rect x="32.2905%" y="453" width="0.0155%" height="15" fill="rgb(215,151,48)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="463.50"></text></g><g><title>Parse::do_call (60 samples, 0.02%)</title><rect x="32.2905%" y="437" width="0.0155%" height="15" fill="rgb(229,84,14)" fg:x="125243" fg:w="60"/><text x="32.5405%" y="447.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.02%)</title><rect x="32.2905%" y="613" width="0.0175%" height="15" fill="rgb(229,68,14)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="623.50"></text></g><g><title>Parse::Parse (68 samples, 0.02%)</title><rect x="32.2905%" y="597" width="0.0175%" height="15" fill="rgb(243,106,26)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="607.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.02%)</title><rect x="32.2905%" y="581" width="0.0175%" height="15" fill="rgb(206,45,38)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="591.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.02%)</title><rect x="32.2905%" y="565" width="0.0175%" height="15" fill="rgb(226,6,15)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="32.2905%" y="549" width="0.0175%" height="15" fill="rgb(232,22,54)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="559.50"></text></g><g><title>Parse::do_call (68 samples, 0.02%)</title><rect x="32.2905%" y="533" width="0.0175%" height="15" fill="rgb(229,222,32)" fg:x="125243" fg:w="68"/><text x="32.5405%" y="543.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.02%)</title><rect x="32.2905%" y="709" width="0.0211%" height="15" fill="rgb(228,62,29)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="719.50"></text></g><g><title>Parse::Parse (82 samples, 0.02%)</title><rect x="32.2905%" y="693" width="0.0211%" height="15" fill="rgb(251,103,34)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="703.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.02%)</title><rect x="32.2905%" y="677" width="0.0211%" height="15" fill="rgb(233,12,30)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="687.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.02%)</title><rect x="32.2905%" y="661" width="0.0211%" height="15" fill="rgb(238,52,0)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.02%)</title><rect x="32.2905%" y="645" width="0.0211%" height="15" fill="rgb(223,98,5)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="655.50"></text></g><g><title>Parse::do_call (82 samples, 0.02%)</title><rect x="32.2905%" y="629" width="0.0211%" height="15" fill="rgb(228,75,37)" fg:x="125243" fg:w="82"/><text x="32.5405%" y="639.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="32.2905%" y="789" width="0.0248%" height="15" fill="rgb(205,115,49)" fg:x="125243" fg:w="96"/><text x="32.5405%" y="799.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="32.2905%" y="773" width="0.0248%" height="15" fill="rgb(250,154,43)" fg:x="125243" fg:w="96"/><text x="32.5405%" y="783.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="32.2905%" y="757" width="0.0248%" height="15" fill="rgb(226,43,29)" fg:x="125243" fg:w="96"/><text x="32.5405%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="32.2905%" y="741" width="0.0248%" height="15" fill="rgb(249,228,39)" fg:x="125243" fg:w="96"/><text x="32.5405%" y="751.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="32.2905%" y="725" width="0.0248%" height="15" fill="rgb(216,79,43)" fg:x="125243" fg:w="96"/><text x="32.5405%" y="735.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="32.3153%" y="533" width="0.0108%" height="15" fill="rgb(228,95,12)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="543.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="32.3153%" y="517" width="0.0108%" height="15" fill="rgb(249,221,15)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="527.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="32.3153%" y="501" width="0.0108%" height="15" fill="rgb(233,34,13)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="511.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="32.3153%" y="485" width="0.0108%" height="15" fill="rgb(214,103,39)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="32.3153%" y="469" width="0.0108%" height="15" fill="rgb(251,126,39)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="479.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="32.3153%" y="453" width="0.0108%" height="15" fill="rgb(214,216,36)" fg:x="125339" fg:w="42"/><text x="32.5653%" y="463.50"></text></g><g><title>ParseGenerator::generate (54 samples, 0.01%)</title><rect x="32.3153%" y="629" width="0.0139%" height="15" fill="rgb(220,221,8)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="639.50"></text></g><g><title>Parse::Parse (54 samples, 0.01%)</title><rect x="32.3153%" y="613" width="0.0139%" height="15" fill="rgb(240,216,3)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="623.50"></text></g><g><title>Parse::do_all_blocks (54 samples, 0.01%)</title><rect x="32.3153%" y="597" width="0.0139%" height="15" fill="rgb(232,218,17)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="607.50"></text></g><g><title>Parse::do_one_block (54 samples, 0.01%)</title><rect x="32.3153%" y="581" width="0.0139%" height="15" fill="rgb(229,163,45)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (54 samples, 0.01%)</title><rect x="32.3153%" y="565" width="0.0139%" height="15" fill="rgb(231,110,42)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="575.50"></text></g><g><title>Parse::do_call (54 samples, 0.01%)</title><rect x="32.3153%" y="549" width="0.0139%" height="15" fill="rgb(208,170,48)" fg:x="125339" fg:w="54"/><text x="32.5653%" y="559.50"></text></g><g><title>ParseGenerator::generate (68 samples, 0.02%)</title><rect x="32.3153%" y="725" width="0.0175%" height="15" fill="rgb(239,116,25)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="735.50"></text></g><g><title>Parse::Parse (68 samples, 0.02%)</title><rect x="32.3153%" y="709" width="0.0175%" height="15" fill="rgb(219,200,50)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="719.50"></text></g><g><title>Parse::do_all_blocks (68 samples, 0.02%)</title><rect x="32.3153%" y="693" width="0.0175%" height="15" fill="rgb(245,200,0)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="703.50"></text></g><g><title>Parse::do_one_block (68 samples, 0.02%)</title><rect x="32.3153%" y="677" width="0.0175%" height="15" fill="rgb(245,119,33)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (68 samples, 0.02%)</title><rect x="32.3153%" y="661" width="0.0175%" height="15" fill="rgb(231,125,12)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="671.50"></text></g><g><title>Parse::do_call (68 samples, 0.02%)</title><rect x="32.3153%" y="645" width="0.0175%" height="15" fill="rgb(216,96,41)" fg:x="125339" fg:w="68"/><text x="32.5653%" y="655.50"></text></g><g><title>Parse::do_all_blocks (83 samples, 0.02%)</title><rect x="32.3153%" y="789" width="0.0214%" height="15" fill="rgb(248,43,45)" fg:x="125339" fg:w="83"/><text x="32.5653%" y="799.50"></text></g><g><title>Parse::do_one_block (83 samples, 0.02%)</title><rect x="32.3153%" y="773" width="0.0214%" height="15" fill="rgb(217,222,7)" fg:x="125339" fg:w="83"/><text x="32.5653%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.02%)</title><rect x="32.3153%" y="757" width="0.0214%" height="15" fill="rgb(233,28,6)" fg:x="125339" fg:w="83"/><text x="32.5653%" y="767.50"></text></g><g><title>Parse::do_call (83 samples, 0.02%)</title><rect x="32.3153%" y="741" width="0.0214%" height="15" fill="rgb(231,218,15)" fg:x="125339" fg:w="83"/><text x="32.5653%" y="751.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="32.3390%" y="117" width="0.0108%" height="15" fill="rgb(226,171,48)" fg:x="125431" fg:w="42"/><text x="32.5890%" y="127.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.01%)</title><rect x="32.3385%" y="197" width="0.0124%" height="15" fill="rgb(235,201,9)" fg:x="125429" fg:w="48"/><text x="32.5885%" y="207.50"></text></g><g><title>Parse::Parse (48 samples, 0.01%)</title><rect x="32.3385%" y="181" width="0.0124%" height="15" fill="rgb(217,80,15)" fg:x="125429" fg:w="48"/><text x="32.5885%" y="191.50"></text></g><g><title>Parse::do_all_blocks (47 samples, 0.01%)</title><rect x="32.3387%" y="165" width="0.0121%" height="15" fill="rgb(219,152,8)" fg:x="125430" fg:w="47"/><text x="32.5887%" y="175.50"></text></g><g><title>Parse::do_one_block (47 samples, 0.01%)</title><rect x="32.3387%" y="149" width="0.0121%" height="15" fill="rgb(243,107,38)" fg:x="125430" fg:w="47"/><text x="32.5887%" y="159.50"></text></g><g><title>Parse::do_one_bytecode (47 samples, 0.01%)</title><rect x="32.3387%" y="133" width="0.0121%" height="15" fill="rgb(231,17,5)" fg:x="125430" fg:w="47"/><text x="32.5887%" y="143.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.01%)</title><rect x="32.3374%" y="293" width="0.0144%" height="15" fill="rgb(209,25,54)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="303.50"></text></g><g><title>Parse::Parse (56 samples, 0.01%)</title><rect x="32.3374%" y="277" width="0.0144%" height="15" fill="rgb(219,0,2)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="287.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.01%)</title><rect x="32.3374%" y="261" width="0.0144%" height="15" fill="rgb(246,9,5)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="271.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.01%)</title><rect x="32.3374%" y="245" width="0.0144%" height="15" fill="rgb(226,159,4)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="255.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.01%)</title><rect x="32.3374%" y="229" width="0.0144%" height="15" fill="rgb(219,175,34)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="239.50"></text></g><g><title>Parse::do_call (56 samples, 0.01%)</title><rect x="32.3374%" y="213" width="0.0144%" height="15" fill="rgb(236,10,46)" fg:x="125425" fg:w="56"/><text x="32.5874%" y="223.50"></text></g><g><title>ParseGenerator::generate (67 samples, 0.02%)</title><rect x="32.3367%" y="389" width="0.0173%" height="15" fill="rgb(240,211,16)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="399.50"></text></g><g><title>Parse::Parse (67 samples, 0.02%)</title><rect x="32.3367%" y="373" width="0.0173%" height="15" fill="rgb(205,3,43)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="383.50"></text></g><g><title>Parse::do_all_blocks (67 samples, 0.02%)</title><rect x="32.3367%" y="357" width="0.0173%" height="15" fill="rgb(245,7,22)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="367.50"></text></g><g><title>Parse::do_one_block (67 samples, 0.02%)</title><rect x="32.3367%" y="341" width="0.0173%" height="15" fill="rgb(239,132,32)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (67 samples, 0.02%)</title><rect x="32.3367%" y="325" width="0.0173%" height="15" fill="rgb(228,202,34)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="335.50"></text></g><g><title>Parse::do_call (67 samples, 0.02%)</title><rect x="32.3367%" y="309" width="0.0173%" height="15" fill="rgb(254,200,22)" fg:x="125422" fg:w="67"/><text x="32.5867%" y="319.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.02%)</title><rect x="32.3367%" y="485" width="0.0204%" height="15" fill="rgb(219,10,39)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="495.50"></text></g><g><title>Parse::Parse (79 samples, 0.02%)</title><rect x="32.3367%" y="469" width="0.0204%" height="15" fill="rgb(226,210,39)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="479.50"></text></g><g><title>Parse::do_all_blocks (79 samples, 0.02%)</title><rect x="32.3367%" y="453" width="0.0204%" height="15" fill="rgb(208,219,16)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="463.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.02%)</title><rect x="32.3367%" y="437" width="0.0204%" height="15" fill="rgb(216,158,51)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (79 samples, 0.02%)</title><rect x="32.3367%" y="421" width="0.0204%" height="15" fill="rgb(233,14,44)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="431.50"></text></g><g><title>Parse::do_call (79 samples, 0.02%)</title><rect x="32.3367%" y="405" width="0.0204%" height="15" fill="rgb(237,97,39)" fg:x="125422" fg:w="79"/><text x="32.5867%" y="415.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.02%)</title><rect x="32.3367%" y="581" width="0.0248%" height="15" fill="rgb(218,198,43)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="591.50"></text></g><g><title>Parse::Parse (96 samples, 0.02%)</title><rect x="32.3367%" y="565" width="0.0248%" height="15" fill="rgb(231,104,20)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="575.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.02%)</title><rect x="32.3367%" y="549" width="0.0248%" height="15" fill="rgb(254,36,13)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="559.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.02%)</title><rect x="32.3367%" y="533" width="0.0248%" height="15" fill="rgb(248,14,50)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.02%)</title><rect x="32.3367%" y="517" width="0.0248%" height="15" fill="rgb(217,107,29)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="527.50"></text></g><g><title>Parse::do_call (96 samples, 0.02%)</title><rect x="32.3367%" y="501" width="0.0248%" height="15" fill="rgb(251,169,33)" fg:x="125422" fg:w="96"/><text x="32.5867%" y="511.50"></text></g><g><title>ParseGenerator::generate (108 samples, 0.03%)</title><rect x="32.3367%" y="677" width="0.0278%" height="15" fill="rgb(217,108,32)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="687.50"></text></g><g><title>Parse::Parse (108 samples, 0.03%)</title><rect x="32.3367%" y="661" width="0.0278%" height="15" fill="rgb(219,66,42)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="671.50"></text></g><g><title>Parse::do_all_blocks (108 samples, 0.03%)</title><rect x="32.3367%" y="645" width="0.0278%" height="15" fill="rgb(206,180,7)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="655.50"></text></g><g><title>Parse::do_one_block (108 samples, 0.03%)</title><rect x="32.3367%" y="629" width="0.0278%" height="15" fill="rgb(208,226,31)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (108 samples, 0.03%)</title><rect x="32.3367%" y="613" width="0.0278%" height="15" fill="rgb(218,26,49)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="623.50"></text></g><g><title>Parse::do_call (108 samples, 0.03%)</title><rect x="32.3367%" y="597" width="0.0278%" height="15" fill="rgb(233,197,48)" fg:x="125422" fg:w="108"/><text x="32.5867%" y="607.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.03%)</title><rect x="32.3367%" y="773" width="0.0312%" height="15" fill="rgb(252,181,51)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="783.50"></text></g><g><title>Parse::Parse (121 samples, 0.03%)</title><rect x="32.3367%" y="757" width="0.0312%" height="15" fill="rgb(253,90,19)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="767.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.03%)</title><rect x="32.3367%" y="741" width="0.0312%" height="15" fill="rgb(215,171,30)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="751.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.03%)</title><rect x="32.3367%" y="725" width="0.0312%" height="15" fill="rgb(214,222,9)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.03%)</title><rect x="32.3367%" y="709" width="0.0312%" height="15" fill="rgb(223,3,22)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="719.50"></text></g><g><title>Parse::do_call (121 samples, 0.03%)</title><rect x="32.3367%" y="693" width="0.0312%" height="15" fill="rgb(225,196,46)" fg:x="125422" fg:w="121"/><text x="32.5867%" y="703.50"></text></g><g><title>Parse::do_call (144 samples, 0.04%)</title><rect x="32.3367%" y="789" width="0.0371%" height="15" fill="rgb(209,110,37)" fg:x="125422" fg:w="144"/><text x="32.5867%" y="799.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="32.3738%" y="645" width="0.0108%" height="15" fill="rgb(249,89,12)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="655.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="32.3738%" y="629" width="0.0108%" height="15" fill="rgb(226,27,33)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="639.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="32.3738%" y="613" width="0.0108%" height="15" fill="rgb(213,82,22)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="623.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="32.3738%" y="597" width="0.0108%" height="15" fill="rgb(248,140,0)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="32.3738%" y="581" width="0.0108%" height="15" fill="rgb(228,106,3)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="591.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="32.3738%" y="565" width="0.0108%" height="15" fill="rgb(209,23,37)" fg:x="125566" fg:w="42"/><text x="32.6238%" y="575.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.01%)</title><rect x="32.3738%" y="741" width="0.0131%" height="15" fill="rgb(241,93,50)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="751.50"></text></g><g><title>Parse::Parse (51 samples, 0.01%)</title><rect x="32.3738%" y="725" width="0.0131%" height="15" fill="rgb(253,46,43)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="735.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="32.3738%" y="709" width="0.0131%" height="15" fill="rgb(226,206,43)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="719.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.01%)</title><rect x="32.3738%" y="693" width="0.0131%" height="15" fill="rgb(217,54,7)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.01%)</title><rect x="32.3738%" y="677" width="0.0131%" height="15" fill="rgb(223,5,52)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="687.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="32.3738%" y="661" width="0.0131%" height="15" fill="rgb(206,52,46)" fg:x="125566" fg:w="51"/><text x="32.6238%" y="671.50"></text></g><g><title>Parse::do_one_block (61 samples, 0.02%)</title><rect x="32.3738%" y="789" width="0.0157%" height="15" fill="rgb(253,136,11)" fg:x="125566" fg:w="61"/><text x="32.6238%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (61 samples, 0.02%)</title><rect x="32.3738%" y="773" width="0.0157%" height="15" fill="rgb(208,106,33)" fg:x="125566" fg:w="61"/><text x="32.6238%" y="783.50"></text></g><g><title>Parse::do_call (61 samples, 0.02%)</title><rect x="32.3738%" y="757" width="0.0157%" height="15" fill="rgb(206,54,4)" fg:x="125566" fg:w="61"/><text x="32.6238%" y="767.50"></text></g><g><title>ParseGenerator::generate (48 samples, 0.01%)</title><rect x="32.3895%" y="373" width="0.0124%" height="15" fill="rgb(213,3,15)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="383.50"></text></g><g><title>Parse::Parse (48 samples, 0.01%)</title><rect x="32.3895%" y="357" width="0.0124%" height="15" fill="rgb(252,211,39)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="367.50"></text></g><g><title>Parse::do_all_blocks (48 samples, 0.01%)</title><rect x="32.3895%" y="341" width="0.0124%" height="15" fill="rgb(223,6,36)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="351.50"></text></g><g><title>Parse::do_one_block (48 samples, 0.01%)</title><rect x="32.3895%" y="325" width="0.0124%" height="15" fill="rgb(252,169,45)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="335.50"></text></g><g><title>Parse::do_one_bytecode (48 samples, 0.01%)</title><rect x="32.3895%" y="309" width="0.0124%" height="15" fill="rgb(212,48,26)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="319.50"></text></g><g><title>Parse::do_call (48 samples, 0.01%)</title><rect x="32.3895%" y="293" width="0.0124%" height="15" fill="rgb(251,102,48)" fg:x="125627" fg:w="48"/><text x="32.6395%" y="303.50"></text></g><g><title>ParseGenerator::generate (51 samples, 0.01%)</title><rect x="32.3895%" y="469" width="0.0131%" height="15" fill="rgb(243,208,16)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="479.50"></text></g><g><title>Parse::Parse (51 samples, 0.01%)</title><rect x="32.3895%" y="453" width="0.0131%" height="15" fill="rgb(219,96,24)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="463.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.01%)</title><rect x="32.3895%" y="437" width="0.0131%" height="15" fill="rgb(219,33,29)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="447.50"></text></g><g><title>Parse::do_one_block (51 samples, 0.01%)</title><rect x="32.3895%" y="421" width="0.0131%" height="15" fill="rgb(223,176,5)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="431.50"></text></g><g><title>Parse::do_one_bytecode (51 samples, 0.01%)</title><rect x="32.3895%" y="405" width="0.0131%" height="15" fill="rgb(228,140,14)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="415.50"></text></g><g><title>Parse::do_call (51 samples, 0.01%)</title><rect x="32.3895%" y="389" width="0.0131%" height="15" fill="rgb(217,179,31)" fg:x="125627" fg:w="51"/><text x="32.6395%" y="399.50"></text></g><g><title>ParseGenerator::generate (58 samples, 0.01%)</title><rect x="32.3895%" y="565" width="0.0150%" height="15" fill="rgb(230,9,30)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="575.50"></text></g><g><title>Parse::Parse (58 samples, 0.01%)</title><rect x="32.3895%" y="549" width="0.0150%" height="15" fill="rgb(230,136,20)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="559.50"></text></g><g><title>Parse::do_all_blocks (58 samples, 0.01%)</title><rect x="32.3895%" y="533" width="0.0150%" height="15" fill="rgb(215,210,22)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="543.50"></text></g><g><title>Parse::do_one_block (58 samples, 0.01%)</title><rect x="32.3895%" y="517" width="0.0150%" height="15" fill="rgb(218,43,5)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (58 samples, 0.01%)</title><rect x="32.3895%" y="501" width="0.0150%" height="15" fill="rgb(216,11,5)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="511.50"></text></g><g><title>Parse::do_call (58 samples, 0.01%)</title><rect x="32.3895%" y="485" width="0.0150%" height="15" fill="rgb(209,82,29)" fg:x="125627" fg:w="58"/><text x="32.6395%" y="495.50"></text></g><g><title>ParseGenerator::generate (63 samples, 0.02%)</title><rect x="32.3895%" y="661" width="0.0162%" height="15" fill="rgb(244,115,12)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="671.50"></text></g><g><title>Parse::Parse (63 samples, 0.02%)</title><rect x="32.3895%" y="645" width="0.0162%" height="15" fill="rgb(222,82,18)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="655.50"></text></g><g><title>Parse::do_all_blocks (63 samples, 0.02%)</title><rect x="32.3895%" y="629" width="0.0162%" height="15" fill="rgb(249,227,8)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="639.50"></text></g><g><title>Parse::do_one_block (63 samples, 0.02%)</title><rect x="32.3895%" y="613" width="0.0162%" height="15" fill="rgb(253,141,45)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (63 samples, 0.02%)</title><rect x="32.3895%" y="597" width="0.0162%" height="15" fill="rgb(234,184,4)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="607.50"></text></g><g><title>Parse::do_call (63 samples, 0.02%)</title><rect x="32.3895%" y="581" width="0.0162%" height="15" fill="rgb(218,194,23)" fg:x="125627" fg:w="63"/><text x="32.6395%" y="591.50"></text></g><g><title>ParseGenerator::generate (73 samples, 0.02%)</title><rect x="32.3895%" y="757" width="0.0188%" height="15" fill="rgb(235,66,41)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="767.50"></text></g><g><title>Parse::Parse (73 samples, 0.02%)</title><rect x="32.3895%" y="741" width="0.0188%" height="15" fill="rgb(245,217,1)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="751.50"></text></g><g><title>Parse::do_all_blocks (73 samples, 0.02%)</title><rect x="32.3895%" y="725" width="0.0188%" height="15" fill="rgb(229,91,1)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="735.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.02%)</title><rect x="32.3895%" y="709" width="0.0188%" height="15" fill="rgb(207,101,30)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (73 samples, 0.02%)</title><rect x="32.3895%" y="693" width="0.0188%" height="15" fill="rgb(223,82,49)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="703.50"></text></g><g><title>Parse::do_call (73 samples, 0.02%)</title><rect x="32.3895%" y="677" width="0.0188%" height="15" fill="rgb(218,167,17)" fg:x="125627" fg:w="73"/><text x="32.6395%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (87 samples, 0.02%)</title><rect x="32.3895%" y="789" width="0.0224%" height="15" fill="rgb(208,103,14)" fg:x="125627" fg:w="87"/><text x="32.6395%" y="799.50"></text></g><g><title>Parse::do_call (87 samples, 0.02%)</title><rect x="32.3895%" y="773" width="0.0224%" height="15" fill="rgb(238,20,8)" fg:x="125627" fg:w="87"/><text x="32.6395%" y="783.50"></text></g><g><title>Parse::do_call (69 samples, 0.02%)</title><rect x="32.4176%" y="37" width="0.0178%" height="15" fill="rgb(218,80,54)" fg:x="125736" fg:w="69"/><text x="32.6676%" y="47.50"></text></g><g><title>ParseGenerator::generate (107 samples, 0.03%)</title><rect x="32.4163%" y="117" width="0.0276%" height="15" fill="rgb(240,144,17)" fg:x="125731" fg:w="107"/><text x="32.6663%" y="127.50"></text></g><g><title>Parse::Parse (107 samples, 0.03%)</title><rect x="32.4163%" y="101" width="0.0276%" height="15" fill="rgb(245,27,50)" fg:x="125731" fg:w="107"/><text x="32.6663%" y="111.50"></text></g><g><title>Parse::do_all_blocks (107 samples, 0.03%)</title><rect x="32.4163%" y="85" width="0.0276%" height="15" fill="rgb(251,51,7)" fg:x="125731" fg:w="107"/><text x="32.6663%" y="95.50"></text></g><g><title>Parse::do_one_block (107 samples, 0.03%)</title><rect x="32.4163%" y="69" width="0.0276%" height="15" fill="rgb(245,217,29)" fg:x="125731" fg:w="107"/><text x="32.6663%" y="79.50"></text></g><g><title>Parse::do_one_bytecode (107 samples, 0.03%)</title><rect x="32.4163%" y="53" width="0.0276%" height="15" fill="rgb(221,176,29)" fg:x="125731" fg:w="107"/><text x="32.6663%" y="63.50"></text></g><g><title>Parse::do_call (133 samples, 0.03%)</title><rect x="32.4138%" y="133" width="0.0343%" height="15" fill="rgb(212,180,24)" fg:x="125721" fg:w="133"/><text x="32.6638%" y="143.50"></text></g><g><title>ParseGenerator::generate (141 samples, 0.04%)</title><rect x="32.4138%" y="213" width="0.0364%" height="15" fill="rgb(254,24,2)" fg:x="125721" fg:w="141"/><text x="32.6638%" y="223.50"></text></g><g><title>Parse::Parse (141 samples, 0.04%)</title><rect x="32.4138%" y="197" width="0.0364%" height="15" fill="rgb(230,100,2)" fg:x="125721" fg:w="141"/><text x="32.6638%" y="207.50"></text></g><g><title>Parse::do_all_blocks (141 samples, 0.04%)</title><rect x="32.4138%" y="181" width="0.0364%" height="15" fill="rgb(219,142,25)" fg:x="125721" fg:w="141"/><text x="32.6638%" y="191.50"></text></g><g><title>Parse::do_one_block (141 samples, 0.04%)</title><rect x="32.4138%" y="165" width="0.0364%" height="15" fill="rgb(240,73,43)" fg:x="125721" fg:w="141"/><text x="32.6638%" y="175.50"></text></g><g><title>Parse::do_one_bytecode (141 samples, 0.04%)</title><rect x="32.4138%" y="149" width="0.0364%" height="15" fill="rgb(214,114,15)" fg:x="125721" fg:w="141"/><text x="32.6638%" y="159.50"></text></g><g><title>ParseGenerator::generate (164 samples, 0.04%)</title><rect x="32.4120%" y="309" width="0.0423%" height="15" fill="rgb(207,130,4)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="319.50"></text></g><g><title>Parse::Parse (164 samples, 0.04%)</title><rect x="32.4120%" y="293" width="0.0423%" height="15" fill="rgb(221,25,40)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="303.50"></text></g><g><title>Parse::do_all_blocks (164 samples, 0.04%)</title><rect x="32.4120%" y="277" width="0.0423%" height="15" fill="rgb(241,184,7)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="287.50"></text></g><g><title>Parse::do_one_block (164 samples, 0.04%)</title><rect x="32.4120%" y="261" width="0.0423%" height="15" fill="rgb(235,159,4)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (164 samples, 0.04%)</title><rect x="32.4120%" y="245" width="0.0423%" height="15" fill="rgb(214,87,48)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="255.50"></text></g><g><title>Parse::do_call (164 samples, 0.04%)</title><rect x="32.4120%" y="229" width="0.0423%" height="15" fill="rgb(246,198,24)" fg:x="125714" fg:w="164"/><text x="32.6620%" y="239.50"></text></g><g><title>ParseGenerator::generate (186 samples, 0.05%)</title><rect x="32.4120%" y="405" width="0.0480%" height="15" fill="rgb(209,66,40)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="415.50"></text></g><g><title>Parse::Parse (186 samples, 0.05%)</title><rect x="32.4120%" y="389" width="0.0480%" height="15" fill="rgb(233,147,39)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="399.50"></text></g><g><title>Parse::do_all_blocks (186 samples, 0.05%)</title><rect x="32.4120%" y="373" width="0.0480%" height="15" fill="rgb(231,145,52)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="383.50"></text></g><g><title>Parse::do_one_block (186 samples, 0.05%)</title><rect x="32.4120%" y="357" width="0.0480%" height="15" fill="rgb(206,20,26)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (186 samples, 0.05%)</title><rect x="32.4120%" y="341" width="0.0480%" height="15" fill="rgb(238,220,4)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="351.50"></text></g><g><title>Parse::do_call (186 samples, 0.05%)</title><rect x="32.4120%" y="325" width="0.0480%" height="15" fill="rgb(252,195,42)" fg:x="125714" fg:w="186"/><text x="32.6620%" y="335.50"></text></g><g><title>ParseGenerator::generate (215 samples, 0.06%)</title><rect x="32.4120%" y="501" width="0.0554%" height="15" fill="rgb(209,10,6)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="511.50"></text></g><g><title>Parse::Parse (215 samples, 0.06%)</title><rect x="32.4120%" y="485" width="0.0554%" height="15" fill="rgb(229,3,52)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="495.50"></text></g><g><title>Parse::do_all_blocks (215 samples, 0.06%)</title><rect x="32.4120%" y="469" width="0.0554%" height="15" fill="rgb(253,49,37)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="479.50"></text></g><g><title>Parse::do_one_block (215 samples, 0.06%)</title><rect x="32.4120%" y="453" width="0.0554%" height="15" fill="rgb(240,103,49)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (215 samples, 0.06%)</title><rect x="32.4120%" y="437" width="0.0554%" height="15" fill="rgb(250,182,30)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="447.50"></text></g><g><title>Parse::do_call (215 samples, 0.06%)</title><rect x="32.4120%" y="421" width="0.0554%" height="15" fill="rgb(248,8,30)" fg:x="125714" fg:w="215"/><text x="32.6620%" y="431.50"></text></g><g><title>ParseGenerator::generate (261 samples, 0.07%)</title><rect x="32.4120%" y="597" width="0.0673%" height="15" fill="rgb(237,120,30)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="607.50"></text></g><g><title>Parse::Parse (261 samples, 0.07%)</title><rect x="32.4120%" y="581" width="0.0673%" height="15" fill="rgb(221,146,34)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="591.50"></text></g><g><title>Parse::do_all_blocks (261 samples, 0.07%)</title><rect x="32.4120%" y="565" width="0.0673%" height="15" fill="rgb(242,55,13)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="575.50"></text></g><g><title>Parse::do_one_block (261 samples, 0.07%)</title><rect x="32.4120%" y="549" width="0.0673%" height="15" fill="rgb(242,112,31)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (261 samples, 0.07%)</title><rect x="32.4120%" y="533" width="0.0673%" height="15" fill="rgb(249,192,27)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="543.50"></text></g><g><title>Parse::do_call (261 samples, 0.07%)</title><rect x="32.4120%" y="517" width="0.0673%" height="15" fill="rgb(208,204,44)" fg:x="125714" fg:w="261"/><text x="32.6620%" y="527.50"></text></g><g><title>PredictedCallGenerator::generate (46 samples, 0.01%)</title><rect x="32.4674%" y="501" width="0.0119%" height="15" fill="rgb(208,93,54)" fg:x="125929" fg:w="46"/><text x="32.7174%" y="511.50"></text></g><g><title>ParseGenerator::generate (42 samples, 0.01%)</title><rect x="32.4793%" y="485" width="0.0108%" height="15" fill="rgb(242,1,31)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="495.50"></text></g><g><title>Parse::Parse (42 samples, 0.01%)</title><rect x="32.4793%" y="469" width="0.0108%" height="15" fill="rgb(241,83,25)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="479.50"></text></g><g><title>Parse::do_all_blocks (42 samples, 0.01%)</title><rect x="32.4793%" y="453" width="0.0108%" height="15" fill="rgb(205,169,50)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="463.50"></text></g><g><title>Parse::do_one_block (42 samples, 0.01%)</title><rect x="32.4793%" y="437" width="0.0108%" height="15" fill="rgb(239,186,37)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.01%)</title><rect x="32.4793%" y="421" width="0.0108%" height="15" fill="rgb(205,221,10)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="431.50"></text></g><g><title>Parse::do_call (42 samples, 0.01%)</title><rect x="32.4793%" y="405" width="0.0108%" height="15" fill="rgb(218,196,15)" fg:x="125975" fg:w="42"/><text x="32.7293%" y="415.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.01%)</title><rect x="32.4793%" y="581" width="0.0142%" height="15" fill="rgb(218,196,35)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="591.50"></text></g><g><title>Parse::Parse (55 samples, 0.01%)</title><rect x="32.4793%" y="565" width="0.0142%" height="15" fill="rgb(233,63,24)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="575.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="32.4793%" y="549" width="0.0142%" height="15" fill="rgb(225,8,4)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="559.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="32.4793%" y="533" width="0.0142%" height="15" fill="rgb(234,105,35)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="32.4793%" y="517" width="0.0142%" height="15" fill="rgb(236,21,32)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="527.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="32.4793%" y="501" width="0.0142%" height="15" fill="rgb(228,109,6)" fg:x="125975" fg:w="55"/><text x="32.7293%" y="511.50"></text></g><g><title>ParseGenerator::generate (329 samples, 0.08%)</title><rect x="32.4120%" y="693" width="0.0848%" height="15" fill="rgb(229,215,31)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="703.50"></text></g><g><title>Parse::Parse (329 samples, 0.08%)</title><rect x="32.4120%" y="677" width="0.0848%" height="15" fill="rgb(221,52,54)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="687.50"></text></g><g><title>Parse::do_all_blocks (329 samples, 0.08%)</title><rect x="32.4120%" y="661" width="0.0848%" height="15" fill="rgb(252,129,43)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="671.50"></text></g><g><title>Parse::do_one_block (329 samples, 0.08%)</title><rect x="32.4120%" y="645" width="0.0848%" height="15" fill="rgb(248,183,27)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (329 samples, 0.08%)</title><rect x="32.4120%" y="629" width="0.0848%" height="15" fill="rgb(250,0,22)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="639.50"></text></g><g><title>Parse::do_call (329 samples, 0.08%)</title><rect x="32.4120%" y="613" width="0.0848%" height="15" fill="rgb(213,166,10)" fg:x="125714" fg:w="329"/><text x="32.6620%" y="623.50"></text></g><g><title>PredictedCallGenerator::generate (68 samples, 0.02%)</title><rect x="32.4793%" y="597" width="0.0175%" height="15" fill="rgb(207,163,36)" fg:x="125975" fg:w="68"/><text x="32.7293%" y="607.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.01%)</title><rect x="32.4968%" y="581" width="0.0142%" height="15" fill="rgb(208,122,22)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="591.50"></text></g><g><title>Parse::Parse (55 samples, 0.01%)</title><rect x="32.4968%" y="565" width="0.0142%" height="15" fill="rgb(207,104,49)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="575.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.01%)</title><rect x="32.4968%" y="549" width="0.0142%" height="15" fill="rgb(248,211,50)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="559.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.01%)</title><rect x="32.4968%" y="533" width="0.0142%" height="15" fill="rgb(217,13,45)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.01%)</title><rect x="32.4968%" y="517" width="0.0142%" height="15" fill="rgb(211,216,49)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="527.50"></text></g><g><title>Parse::do_call (55 samples, 0.01%)</title><rect x="32.4968%" y="501" width="0.0142%" height="15" fill="rgb(221,58,53)" fg:x="126043" fg:w="55"/><text x="32.7468%" y="511.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.02%)</title><rect x="32.4968%" y="677" width="0.0155%" height="15" fill="rgb(220,112,41)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="687.50"></text></g><g><title>Parse::Parse (60 samples, 0.02%)</title><rect x="32.4968%" y="661" width="0.0155%" height="15" fill="rgb(236,38,28)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="671.50"></text></g><g><title>Parse::do_all_blocks (60 samples, 0.02%)</title><rect x="32.4968%" y="645" width="0.0155%" height="15" fill="rgb(227,195,22)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="655.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.02%)</title><rect x="32.4968%" y="629" width="0.0155%" height="15" fill="rgb(214,55,33)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.02%)</title><rect x="32.4968%" y="613" width="0.0155%" height="15" fill="rgb(248,80,13)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="623.50"></text></g><g><title>Parse::do_call (60 samples, 0.02%)</title><rect x="32.4968%" y="597" width="0.0155%" height="15" fill="rgb(238,52,6)" fg:x="126043" fg:w="60"/><text x="32.7468%" y="607.50"></text></g><g><title>ParseGenerator::generate (401 samples, 0.10%)</title><rect x="32.4120%" y="789" width="0.1034%" height="15" fill="rgb(224,198,47)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="799.50"></text></g><g><title>Parse::Parse (401 samples, 0.10%)</title><rect x="32.4120%" y="773" width="0.1034%" height="15" fill="rgb(233,171,20)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="783.50"></text></g><g><title>Parse::do_all_blocks (401 samples, 0.10%)</title><rect x="32.4120%" y="757" width="0.1034%" height="15" fill="rgb(241,30,25)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="767.50"></text></g><g><title>Parse::do_one_block (401 samples, 0.10%)</title><rect x="32.4120%" y="741" width="0.1034%" height="15" fill="rgb(207,171,38)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (401 samples, 0.10%)</title><rect x="32.4120%" y="725" width="0.1034%" height="15" fill="rgb(234,70,1)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="735.50"></text></g><g><title>Parse::do_call (401 samples, 0.10%)</title><rect x="32.4120%" y="709" width="0.1034%" height="15" fill="rgb(232,178,18)" fg:x="125714" fg:w="401"/><text x="32.6620%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (72 samples, 0.02%)</title><rect x="32.4968%" y="693" width="0.0186%" height="15" fill="rgb(241,78,40)" fg:x="126043" fg:w="72"/><text x="32.7468%" y="703.50"></text></g><g><title>Thread::call_run (80 samples, 0.02%)</title><rect x="32.5308%" y="789" width="0.0206%" height="15" fill="rgb(222,35,25)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (80 samples, 0.02%)</title><rect x="32.5308%" y="773" width="0.0206%" height="15" fill="rgb(207,92,16)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (80 samples, 0.02%)</title><rect x="32.5308%" y="757" width="0.0206%" height="15" fill="rgb(216,59,51)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (80 samples, 0.02%)</title><rect x="32.5308%" y="741" width="0.0206%" height="15" fill="rgb(213,80,28)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="751.50"></text></g><g><title>C2Compiler::compile_method (80 samples, 0.02%)</title><rect x="32.5308%" y="725" width="0.0206%" height="15" fill="rgb(220,93,7)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="735.50"></text></g><g><title>Compile::Compile (80 samples, 0.02%)</title><rect x="32.5308%" y="709" width="0.0206%" height="15" fill="rgb(225,24,44)" fg:x="126175" fg:w="80"/><text x="32.7808%" y="719.50"></text></g><g><title>start_thread (67 samples, 0.02%)</title><rect x="32.5762%" y="789" width="0.0173%" height="15" fill="rgb(243,74,40)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="799.50"></text></g><g><title>thread_native_entry (67 samples, 0.02%)</title><rect x="32.5762%" y="773" width="0.0173%" height="15" fill="rgb(228,39,7)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="783.50"></text></g><g><title>Thread::call_run (67 samples, 0.02%)</title><rect x="32.5762%" y="757" width="0.0173%" height="15" fill="rgb(227,79,8)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (67 samples, 0.02%)</title><rect x="32.5762%" y="741" width="0.0173%" height="15" fill="rgb(236,58,11)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (67 samples, 0.02%)</title><rect x="32.5762%" y="725" width="0.0173%" height="15" fill="rgb(249,63,35)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="735.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (67 samples, 0.02%)</title><rect x="32.5762%" y="709" width="0.0173%" height="15" fill="rgb(252,114,16)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="719.50"></text></g><g><title>C2Compiler::compile_method (67 samples, 0.02%)</title><rect x="32.5762%" y="693" width="0.0173%" height="15" fill="rgb(254,151,24)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="703.50"></text></g><g><title>Compile::Compile (67 samples, 0.02%)</title><rect x="32.5762%" y="677" width="0.0173%" height="15" fill="rgb(253,54,39)" fg:x="126351" fg:w="67"/><text x="32.8262%" y="687.50"></text></g><g><title>[unknown] (106,099 samples, 27.35%)</title><rect x="5.2467%" y="805" width="27.3548%" height="15" fill="rgb(243,25,45)" fg:x="20350" fg:w="106099"/><text x="5.4967%" y="815.50">[unknown]</text></g><g><title>Dict::Insert (91 samples, 0.02%)</title><rect x="32.6360%" y="629" width="0.0235%" height="15" fill="rgb(234,134,9)" fg:x="126583" fg:w="91"/><text x="32.8860%" y="639.50"></text></g><g><title>Type::Initialize (111 samples, 0.03%)</title><rect x="32.6360%" y="645" width="0.0286%" height="15" fill="rgb(227,166,31)" fg:x="126583" fg:w="111"/><text x="32.8860%" y="655.50"></text></g><g><title>CompileWrapper::CompileWrapper (114 samples, 0.03%)</title><rect x="32.6355%" y="661" width="0.0294%" height="15" fill="rgb(245,143,41)" fg:x="126581" fg:w="114"/><text x="32.8855%" y="671.50"></text></g><g><title>Compile::identify_useful_nodes (262 samples, 0.07%)</title><rect x="32.6847%" y="645" width="0.0675%" height="15" fill="rgb(238,181,32)" fg:x="126772" fg:w="262"/><text x="32.9347%" y="655.50"></text></g><g><title>Compile::remove_useless_nodes (276 samples, 0.07%)</title><rect x="32.7523%" y="645" width="0.0712%" height="15" fill="rgb(224,113,18)" fg:x="127034" fg:w="276"/><text x="33.0023%" y="655.50"></text></g><g><title>Compile::update_dead_node_list (39 samples, 0.01%)</title><rect x="32.8234%" y="645" width="0.0101%" height="15" fill="rgb(240,229,28)" fg:x="127310" fg:w="39"/><text x="33.0734%" y="655.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (676 samples, 0.17%)</title><rect x="32.6700%" y="661" width="0.1743%" height="15" fill="rgb(250,185,3)" fg:x="126715" fg:w="676"/><text x="32.9200%" y="671.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (42 samples, 0.01%)</title><rect x="32.8335%" y="645" width="0.0108%" height="15" fill="rgb(212,59,25)" fg:x="127349" fg:w="42"/><text x="33.0835%" y="655.50"></text></g><g><title>C2Compiler::compile_method (992 samples, 0.26%)</title><rect x="32.6053%" y="693" width="0.2558%" height="15" fill="rgb(221,87,20)" fg:x="126464" fg:w="992"/><text x="32.8553%" y="703.50"></text></g><g><title>Compile::Compile (974 samples, 0.25%)</title><rect x="32.6100%" y="677" width="0.2511%" height="15" fill="rgb(213,74,28)" fg:x="126482" fg:w="974"/><text x="32.8600%" y="687.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,147 samples, 0.30%)</title><rect x="32.6030%" y="709" width="0.2957%" height="15" fill="rgb(224,132,34)" fg:x="126455" fg:w="1147"/><text x="32.8530%" y="719.50"></text></g><g><title>do_futex (40 samples, 0.01%)</title><rect x="32.9132%" y="517" width="0.0103%" height="15" fill="rgb(222,101,24)" fg:x="127658" fg:w="40"/><text x="33.1632%" y="527.50"></text></g><g><title>futex_wait (40 samples, 0.01%)</title><rect x="32.9132%" y="501" width="0.0103%" height="15" fill="rgb(254,142,4)" fg:x="127658" fg:w="40"/><text x="33.1632%" y="511.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.01%)</title><rect x="32.9129%" y="533" width="0.0111%" height="15" fill="rgb(230,229,49)" fg:x="127657" fg:w="43"/><text x="33.1629%" y="543.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.01%)</title><rect x="32.9127%" y="565" width="0.0142%" height="15" fill="rgb(238,70,47)" fg:x="127656" fg:w="55"/><text x="33.1627%" y="575.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="32.9129%" y="549" width="0.0139%" height="15" fill="rgb(231,160,17)" fg:x="127657" fg:w="54"/><text x="33.1629%" y="559.50"></text></g><g><title>___pthread_cond_timedwait64 (63 samples, 0.02%)</title><rect x="32.9108%" y="645" width="0.0162%" height="15" fill="rgb(218,68,53)" fg:x="127649" fg:w="63"/><text x="33.1608%" y="655.50"></text></g><g><title>__pthread_cond_wait_common (63 samples, 0.02%)</title><rect x="32.9108%" y="629" width="0.0162%" height="15" fill="rgb(236,111,10)" fg:x="127649" fg:w="63"/><text x="33.1608%" y="639.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (61 samples, 0.02%)</title><rect x="32.9114%" y="613" width="0.0157%" height="15" fill="rgb(224,34,41)" fg:x="127651" fg:w="61"/><text x="33.1614%" y="623.50"></text></g><g><title>__futex_abstimed_wait_common (61 samples, 0.02%)</title><rect x="32.9114%" y="597" width="0.0157%" height="15" fill="rgb(241,118,19)" fg:x="127651" fg:w="61"/><text x="33.1614%" y="607.50"></text></g><g><title>__futex_abstimed_wait_common64 (59 samples, 0.02%)</title><rect x="32.9119%" y="581" width="0.0152%" height="15" fill="rgb(238,129,25)" fg:x="127653" fg:w="59"/><text x="33.1619%" y="591.50"></text></g><g><title>Monitor::IWait (92 samples, 0.02%)</title><rect x="32.9044%" y="677" width="0.0237%" height="15" fill="rgb(238,22,31)" fg:x="127624" fg:w="92"/><text x="33.1544%" y="687.50"></text></g><g><title>os::PlatformEvent::park (70 samples, 0.02%)</title><rect x="32.9101%" y="661" width="0.0180%" height="15" fill="rgb(222,174,48)" fg:x="127646" fg:w="70"/><text x="33.1601%" y="671.50"></text></g><g><title>Monitor::wait (97 samples, 0.03%)</title><rect x="32.9034%" y="693" width="0.0250%" height="15" fill="rgb(206,152,40)" fg:x="127620" fg:w="97"/><text x="33.1534%" y="703.50"></text></g><g><title>CompileQueue::get (135 samples, 0.03%)</title><rect x="32.9016%" y="709" width="0.0348%" height="15" fill="rgb(218,99,54)" fg:x="127613" fg:w="135"/><text x="33.1516%" y="719.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,301 samples, 0.34%)</title><rect x="32.6020%" y="725" width="0.3354%" height="15" fill="rgb(220,174,26)" fg:x="126451" fg:w="1301"/><text x="32.8520%" y="735.50"></text></g><g><title>__clone3 (1,304 samples, 0.34%)</title><rect x="32.6020%" y="805" width="0.3362%" height="15" fill="rgb(245,116,9)" fg:x="126451" fg:w="1304"/><text x="32.8520%" y="815.50"></text></g><g><title>start_thread (1,304 samples, 0.34%)</title><rect x="32.6020%" y="789" width="0.3362%" height="15" fill="rgb(209,72,35)" fg:x="126451" fg:w="1304"/><text x="32.8520%" y="799.50"></text></g><g><title>thread_native_entry (1,304 samples, 0.34%)</title><rect x="32.6020%" y="773" width="0.3362%" height="15" fill="rgb(226,126,21)" fg:x="126451" fg:w="1304"/><text x="32.8520%" y="783.50"></text></g><g><title>Thread::call_run (1,304 samples, 0.34%)</title><rect x="32.6020%" y="757" width="0.3362%" height="15" fill="rgb(227,192,1)" fg:x="126451" fg:w="1304"/><text x="32.8520%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (1,304 samples, 0.34%)</title><rect x="32.6020%" y="741" width="0.3362%" height="15" fill="rgb(237,180,29)" fg:x="126451" fg:w="1304"/><text x="32.8520%" y="751.50"></text></g><g><title>asm_exc_page_fault (91 samples, 0.02%)</title><rect x="32.9418%" y="805" width="0.0235%" height="15" fill="rgb(230,197,35)" fg:x="127769" fg:w="91"/><text x="33.1918%" y="815.50"></text></g><g><title>C2_CompilerThre (113,268 samples, 29.20%)</title><rect x="3.7903%" y="821" width="29.2031%" height="15" fill="rgb(246,193,31)" fg:x="14701" fg:w="113268"/><text x="4.0403%" y="831.50">C2_CompilerThre</text></g><g><title>[perf-742530.map] (88 samples, 0.02%)</title><rect x="32.9936%" y="805" width="0.0227%" height="15" fill="rgb(241,36,4)" fg:x="127970" fg:w="88"/><text x="33.2436%" y="815.50"></text></g><g><title>Command-Accumul (99 samples, 0.03%)</title><rect x="32.9934%" y="821" width="0.0255%" height="15" fill="rgb(241,130,17)" fg:x="127969" fg:w="99"/><text x="33.2434%" y="831.50"></text></g><g><title>__schedule (95 samples, 0.02%)</title><rect x="33.1795%" y="565" width="0.0245%" height="15" fill="rgb(206,137,32)" fg:x="128691" fg:w="95"/><text x="33.4295%" y="575.50"></text></g><g><title>futex_wait_queue_me (111 samples, 0.03%)</title><rect x="33.1764%" y="597" width="0.0286%" height="15" fill="rgb(237,228,51)" fg:x="128679" fg:w="111"/><text x="33.4264%" y="607.50"></text></g><g><title>schedule (99 samples, 0.03%)</title><rect x="33.1795%" y="581" width="0.0255%" height="15" fill="rgb(243,6,42)" fg:x="128691" fg:w="99"/><text x="33.4295%" y="591.50"></text></g><g><title>futex_wait (138 samples, 0.04%)</title><rect x="33.1749%" y="613" width="0.0356%" height="15" fill="rgb(251,74,28)" fg:x="128673" fg:w="138"/><text x="33.4249%" y="623.50"></text></g><g><title>do_futex (141 samples, 0.04%)</title><rect x="33.1746%" y="629" width="0.0364%" height="15" fill="rgb(218,20,49)" fg:x="128672" fg:w="141"/><text x="33.4246%" y="639.50"></text></g><g><title>__x64_sys_futex (143 samples, 0.04%)</title><rect x="33.1743%" y="645" width="0.0369%" height="15" fill="rgb(238,28,14)" fg:x="128671" fg:w="143"/><text x="33.4243%" y="655.50"></text></g><g><title>do_syscall_64 (155 samples, 0.04%)</title><rect x="33.1743%" y="661" width="0.0400%" height="15" fill="rgb(229,40,46)" fg:x="128671" fg:w="155"/><text x="33.4243%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (159 samples, 0.04%)</title><rect x="33.1736%" y="677" width="0.0410%" height="15" fill="rgb(244,195,20)" fg:x="128668" fg:w="159"/><text x="33.4236%" y="687.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (173 samples, 0.04%)</title><rect x="33.1707%" y="725" width="0.0446%" height="15" fill="rgb(253,56,35)" fg:x="128657" fg:w="173"/><text x="33.4207%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (172 samples, 0.04%)</title><rect x="33.1710%" y="709" width="0.0443%" height="15" fill="rgb(210,149,44)" fg:x="128658" fg:w="172"/><text x="33.4210%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (171 samples, 0.04%)</title><rect x="33.1712%" y="693" width="0.0441%" height="15" fill="rgb(240,135,12)" fg:x="128659" fg:w="171"/><text x="33.4212%" y="703.50"></text></g><g><title>___pthread_cond_timedwait64 (189 samples, 0.05%)</title><rect x="33.1684%" y="757" width="0.0487%" height="15" fill="rgb(251,24,50)" fg:x="128648" fg:w="189"/><text x="33.4184%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (188 samples, 0.05%)</title><rect x="33.1687%" y="741" width="0.0485%" height="15" fill="rgb(243,200,47)" fg:x="128649" fg:w="188"/><text x="33.4187%" y="751.50"></text></g><g><title>Parker::park (268 samples, 0.07%)</title><rect x="33.1643%" y="773" width="0.0691%" height="15" fill="rgb(224,166,26)" fg:x="128632" fg:w="268"/><text x="33.4143%" y="783.50"></text></g><g><title>Unsafe_Park (287 samples, 0.07%)</title><rect x="33.1607%" y="789" width="0.0740%" height="15" fill="rgb(233,0,47)" fg:x="128618" fg:w="287"/><text x="33.4107%" y="799.50"></text></g><g><title>[perf-742530.map] (814 samples, 0.21%)</title><rect x="33.0276%" y="805" width="0.2099%" height="15" fill="rgb(253,80,5)" fg:x="128102" fg:w="814"/><text x="33.2776%" y="815.50"></text></g><g><title>ForkJoinPool.co (841 samples, 0.22%)</title><rect x="33.0235%" y="821" width="0.2168%" height="15" fill="rgb(214,133,25)" fg:x="128086" fg:w="841"/><text x="33.2735%" y="831.50"></text></g><g><title>G1_Conc#0 (41 samples, 0.01%)</title><rect x="33.2403%" y="821" width="0.0106%" height="15" fill="rgb(209,27,14)" fg:x="128927" fg:w="41"/><text x="33.4903%" y="831.50"></text></g><g><title>__clone3 (42 samples, 0.01%)</title><rect x="33.2617%" y="805" width="0.0108%" height="15" fill="rgb(219,102,51)" fg:x="129010" fg:w="42"/><text x="33.5117%" y="815.50"></text></g><g><title>start_thread (42 samples, 0.01%)</title><rect x="33.2617%" y="789" width="0.0108%" height="15" fill="rgb(237,18,16)" fg:x="129010" fg:w="42"/><text x="33.5117%" y="799.50"></text></g><g><title>thread_native_entry (42 samples, 0.01%)</title><rect x="33.2617%" y="773" width="0.0108%" height="15" fill="rgb(241,85,17)" fg:x="129010" fg:w="42"/><text x="33.5117%" y="783.50"></text></g><g><title>Thread::call_run (42 samples, 0.01%)</title><rect x="33.2617%" y="757" width="0.0108%" height="15" fill="rgb(236,90,42)" fg:x="129010" fg:w="42"/><text x="33.5117%" y="767.50"></text></g><g><title>ConcurrentGCThread::run (42 samples, 0.01%)</title><rect x="33.2617%" y="741" width="0.0108%" height="15" fill="rgb(249,57,21)" fg:x="129010" fg:w="42"/><text x="33.5117%" y="751.50"></text></g><g><title>G1_Refine#0 (44 samples, 0.01%)</title><rect x="33.2615%" y="821" width="0.0113%" height="15" fill="rgb(243,12,36)" fg:x="129009" fg:w="44"/><text x="33.5115%" y="831.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (47 samples, 0.01%)</title><rect x="33.3515%" y="661" width="0.0121%" height="15" fill="rgb(253,128,47)" fg:x="129358" fg:w="47"/><text x="33.6015%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (152 samples, 0.04%)</title><rect x="33.3319%" y="677" width="0.0392%" height="15" fill="rgb(207,33,20)" fg:x="129282" fg:w="152"/><text x="33.5819%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (252 samples, 0.06%)</title><rect x="33.3071%" y="693" width="0.0650%" height="15" fill="rgb(233,215,35)" fg:x="129186" fg:w="252"/><text x="33.5571%" y="703.50"></text></g><g><title>SpinPause (142 samples, 0.04%)</title><rect x="33.3739%" y="693" width="0.0366%" height="15" fill="rgb(249,188,52)" fg:x="129445" fg:w="142"/><text x="33.6239%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (417 samples, 0.11%)</title><rect x="33.3040%" y="709" width="0.1075%" height="15" fill="rgb(225,12,32)" fg:x="129174" fg:w="417"/><text x="33.5540%" y="719.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (58 samples, 0.01%)</title><rect x="33.4115%" y="645" width="0.0150%" height="15" fill="rgb(247,98,14)" fg:x="129591" fg:w="58"/><text x="33.6615%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (59 samples, 0.02%)</title><rect x="33.4115%" y="709" width="0.0152%" height="15" fill="rgb(247,219,48)" fg:x="129591" fg:w="59"/><text x="33.6615%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (59 samples, 0.02%)</title><rect x="33.4115%" y="693" width="0.0152%" height="15" fill="rgb(253,60,48)" fg:x="129591" fg:w="59"/><text x="33.6615%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (59 samples, 0.02%)</title><rect x="33.4115%" y="677" width="0.0152%" height="15" fill="rgb(245,15,52)" fg:x="129591" fg:w="59"/><text x="33.6615%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (59 samples, 0.02%)</title><rect x="33.4115%" y="661" width="0.0152%" height="15" fill="rgb(220,133,28)" fg:x="129591" fg:w="59"/><text x="33.6615%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (59 samples, 0.02%)</title><rect x="33.4268%" y="709" width="0.0152%" height="15" fill="rgb(217,180,4)" fg:x="129650" fg:w="59"/><text x="33.6768%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (59 samples, 0.02%)</title><rect x="33.4268%" y="693" width="0.0152%" height="15" fill="rgb(251,24,1)" fg:x="129650" fg:w="59"/><text x="33.6768%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (59 samples, 0.02%)</title><rect x="33.4268%" y="677" width="0.0152%" height="15" fill="rgb(212,185,49)" fg:x="129650" fg:w="59"/><text x="33.6768%" y="687.50"></text></g><g><title>frame::oops_do_internal (57 samples, 0.01%)</title><rect x="33.4461%" y="629" width="0.0147%" height="15" fill="rgb(215,175,22)" fg:x="129725" fg:w="57"/><text x="33.6961%" y="639.50"></text></g><g><title>OopMapSet::oops_do (57 samples, 0.01%)</title><rect x="33.4461%" y="613" width="0.0147%" height="15" fill="rgb(250,205,14)" fg:x="129725" fg:w="57"/><text x="33.6961%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.01%)</title><rect x="33.4466%" y="597" width="0.0142%" height="15" fill="rgb(225,211,22)" fg:x="129727" fg:w="55"/><text x="33.6966%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (55 samples, 0.01%)</title><rect x="33.4636%" y="597" width="0.0142%" height="15" fill="rgb(251,179,42)" fg:x="129793" fg:w="55"/><text x="33.7136%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (67 samples, 0.02%)</title><rect x="33.4610%" y="613" width="0.0173%" height="15" fill="rgb(208,216,51)" fg:x="129783" fg:w="67"/><text x="33.7110%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (67 samples, 0.02%)</title><rect x="33.4814%" y="581" width="0.0173%" height="15" fill="rgb(235,36,11)" fg:x="129862" fg:w="67"/><text x="33.7314%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (53 samples, 0.01%)</title><rect x="33.4850%" y="565" width="0.0137%" height="15" fill="rgb(213,189,28)" fg:x="129876" fg:w="53"/><text x="33.7350%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (81 samples, 0.02%)</title><rect x="33.4783%" y="613" width="0.0209%" height="15" fill="rgb(227,203,42)" fg:x="129850" fg:w="81"/><text x="33.7283%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (80 samples, 0.02%)</title><rect x="33.4786%" y="597" width="0.0206%" height="15" fill="rgb(244,72,36)" fg:x="129851" fg:w="80"/><text x="33.7286%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (155 samples, 0.04%)</title><rect x="33.4610%" y="629" width="0.0400%" height="15" fill="rgb(213,53,17)" fg:x="129783" fg:w="155"/><text x="33.7110%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (229 samples, 0.06%)</title><rect x="33.4422%" y="693" width="0.0590%" height="15" fill="rgb(207,167,3)" fg:x="129710" fg:w="229"/><text x="33.6922%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (229 samples, 0.06%)</title><rect x="33.4422%" y="677" width="0.0590%" height="15" fill="rgb(216,98,30)" fg:x="129710" fg:w="229"/><text x="33.6922%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (229 samples, 0.06%)</title><rect x="33.4422%" y="661" width="0.0590%" height="15" fill="rgb(236,123,15)" fg:x="129710" fg:w="229"/><text x="33.6922%" y="671.50"></text></g><g><title>JavaThread::oops_do (228 samples, 0.06%)</title><rect x="33.4425%" y="645" width="0.0588%" height="15" fill="rgb(248,81,50)" fg:x="129711" fg:w="228"/><text x="33.6925%" y="655.50"></text></g><g><title>G1ParTask::work (788 samples, 0.20%)</title><rect x="33.3040%" y="725" width="0.2032%" height="15" fill="rgb(214,120,4)" fg:x="129174" fg:w="788"/><text x="33.5540%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (253 samples, 0.07%)</title><rect x="33.4420%" y="709" width="0.0652%" height="15" fill="rgb(208,179,34)" fg:x="129709" fg:w="253"/><text x="33.6920%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (43 samples, 0.01%)</title><rect x="33.5111%" y="693" width="0.0111%" height="15" fill="rgb(227,140,7)" fg:x="129977" fg:w="43"/><text x="33.7611%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (48 samples, 0.01%)</title><rect x="33.5111%" y="709" width="0.0124%" height="15" fill="rgb(214,22,6)" fg:x="129977" fg:w="48"/><text x="33.7611%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (65 samples, 0.02%)</title><rect x="33.5111%" y="725" width="0.0168%" height="15" fill="rgb(207,137,27)" fg:x="129977" fg:w="65"/><text x="33.7611%" y="735.50"></text></g><g><title>__clone3 (922 samples, 0.24%)</title><rect x="33.3022%" y="805" width="0.2377%" height="15" fill="rgb(210,8,46)" fg:x="129167" fg:w="922"/><text x="33.5522%" y="815.50"></text></g><g><title>start_thread (922 samples, 0.24%)</title><rect x="33.3022%" y="789" width="0.2377%" height="15" fill="rgb(240,16,54)" fg:x="129167" fg:w="922"/><text x="33.5522%" y="799.50"></text></g><g><title>thread_native_entry (922 samples, 0.24%)</title><rect x="33.3022%" y="773" width="0.2377%" height="15" fill="rgb(211,209,29)" fg:x="129167" fg:w="922"/><text x="33.5522%" y="783.50"></text></g><g><title>Thread::call_run (922 samples, 0.24%)</title><rect x="33.3022%" y="757" width="0.2377%" height="15" fill="rgb(226,228,24)" fg:x="129167" fg:w="922"/><text x="33.5522%" y="767.50"></text></g><g><title>GangWorker::loop (922 samples, 0.24%)</title><rect x="33.3022%" y="741" width="0.2377%" height="15" fill="rgb(222,84,9)" fg:x="129167" fg:w="922"/><text x="33.5522%" y="751.50"></text></g><g><title>GC_Thread#0 (958 samples, 0.25%)</title><rect x="33.2955%" y="821" width="0.2470%" height="15" fill="rgb(234,203,30)" fg:x="129141" fg:w="958"/><text x="33.5455%" y="831.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (71 samples, 0.02%)</title><rect x="33.6010%" y="661" width="0.0183%" height="15" fill="rgb(238,109,14)" fg:x="130326" fg:w="71"/><text x="33.8510%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (212 samples, 0.05%)</title><rect x="33.5763%" y="677" width="0.0547%" height="15" fill="rgb(233,206,34)" fg:x="130230" fg:w="212"/><text x="33.8263%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (319 samples, 0.08%)</title><rect x="33.5508%" y="693" width="0.0822%" height="15" fill="rgb(220,167,47)" fg:x="130131" fg:w="319"/><text x="33.8008%" y="703.50"></text></g><g><title>SpinPause (144 samples, 0.04%)</title><rect x="33.6338%" y="693" width="0.0371%" height="15" fill="rgb(238,105,10)" fg:x="130453" fg:w="144"/><text x="33.8838%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (475 samples, 0.12%)</title><rect x="33.5495%" y="709" width="0.1225%" height="15" fill="rgb(213,227,17)" fg:x="130126" fg:w="475"/><text x="33.7995%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (48 samples, 0.01%)</title><rect x="33.6722%" y="629" width="0.0124%" height="15" fill="rgb(217,132,38)" fg:x="130602" fg:w="48"/><text x="33.9222%" y="639.50"></text></g><g><title>G1BlockOffsetTablePart::forward_to_block_containing_addr_slow (51 samples, 0.01%)</title><rect x="33.6856%" y="597" width="0.0131%" height="15" fill="rgb(242,146,4)" fg:x="130654" fg:w="51"/><text x="33.9356%" y="607.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (109 samples, 0.03%)</title><rect x="33.6722%" y="709" width="0.0281%" height="15" fill="rgb(212,61,9)" fg:x="130602" fg:w="109"/><text x="33.9222%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (109 samples, 0.03%)</title><rect x="33.6722%" y="693" width="0.0281%" height="15" fill="rgb(247,126,22)" fg:x="130602" fg:w="109"/><text x="33.9222%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (109 samples, 0.03%)</title><rect x="33.6722%" y="677" width="0.0281%" height="15" fill="rgb(220,196,2)" fg:x="130602" fg:w="109"/><text x="33.9222%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (109 samples, 0.03%)</title><rect x="33.6722%" y="661" width="0.0281%" height="15" fill="rgb(208,46,4)" fg:x="130602" fg:w="109"/><text x="33.9222%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (109 samples, 0.03%)</title><rect x="33.6722%" y="645" width="0.0281%" height="15" fill="rgb(252,104,46)" fg:x="130602" fg:w="109"/><text x="33.9222%" y="655.50"></text></g><g><title>G1RemSet::refine_card_during_gc (61 samples, 0.02%)</title><rect x="33.6846%" y="629" width="0.0157%" height="15" fill="rgb(237,152,48)" fg:x="130650" fg:w="61"/><text x="33.9346%" y="639.50"></text></g><g><title>HeapRegion::oops_on_card_seq_iterate_careful&lt;true, G1ScanObjsDuringUpdateRSClosure&gt; (61 samples, 0.02%)</title><rect x="33.6846%" y="613" width="0.0157%" height="15" fill="rgb(221,59,37)" fg:x="130650" fg:w="61"/><text x="33.9346%" y="623.50"></text></g><g><title>G1RemSet::scan_rem_set (45 samples, 0.01%)</title><rect x="33.7003%" y="709" width="0.0116%" height="15" fill="rgb(209,202,51)" fg:x="130711" fg:w="45"/><text x="33.9503%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (45 samples, 0.01%)</title><rect x="33.7003%" y="693" width="0.0116%" height="15" fill="rgb(228,81,30)" fg:x="130711" fg:w="45"/><text x="33.9503%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (45 samples, 0.01%)</title><rect x="33.7003%" y="677" width="0.0116%" height="15" fill="rgb(227,42,39)" fg:x="130711" fg:w="45"/><text x="33.9503%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (60 samples, 0.02%)</title><rect x="33.7191%" y="613" width="0.0155%" height="15" fill="rgb(221,26,2)" fg:x="130784" fg:w="60"/><text x="33.9691%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.01%)</title><rect x="33.7212%" y="597" width="0.0134%" height="15" fill="rgb(254,61,31)" fg:x="130792" fg:w="52"/><text x="33.9712%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (91 samples, 0.02%)</title><rect x="33.7122%" y="677" width="0.0235%" height="15" fill="rgb(222,173,38)" fg:x="130757" fg:w="91"/><text x="33.9622%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (90 samples, 0.02%)</title><rect x="33.7124%" y="661" width="0.0232%" height="15" fill="rgb(218,50,12)" fg:x="130758" fg:w="90"/><text x="33.9624%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (90 samples, 0.02%)</title><rect x="33.7124%" y="645" width="0.0232%" height="15" fill="rgb(223,88,40)" fg:x="130758" fg:w="90"/><text x="33.9624%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (81 samples, 0.02%)</title><rect x="33.7147%" y="629" width="0.0209%" height="15" fill="rgb(237,54,19)" fg:x="130767" fg:w="81"/><text x="33.9647%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (107 samples, 0.03%)</title><rect x="33.7493%" y="581" width="0.0276%" height="15" fill="rgb(251,129,25)" fg:x="130901" fg:w="107"/><text x="33.9993%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.02%)</title><rect x="33.7583%" y="565" width="0.0186%" height="15" fill="rgb(238,97,19)" fg:x="130936" fg:w="72"/><text x="34.0083%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (129 samples, 0.03%)</title><rect x="33.7446%" y="613" width="0.0333%" height="15" fill="rgb(240,169,18)" fg:x="130883" fg:w="129"/><text x="33.9946%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (128 samples, 0.03%)</title><rect x="33.7449%" y="597" width="0.0330%" height="15" fill="rgb(230,187,49)" fg:x="130884" fg:w="128"/><text x="33.9949%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (263 samples, 0.07%)</title><rect x="33.7122%" y="693" width="0.0678%" height="15" fill="rgb(209,44,26)" fg:x="130757" fg:w="263"/><text x="33.9622%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (172 samples, 0.04%)</title><rect x="33.7356%" y="677" width="0.0443%" height="15" fill="rgb(244,0,6)" fg:x="130848" fg:w="172"/><text x="33.9856%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (172 samples, 0.04%)</title><rect x="33.7356%" y="661" width="0.0443%" height="15" fill="rgb(248,18,21)" fg:x="130848" fg:w="172"/><text x="33.9856%" y="671.50"></text></g><g><title>JavaThread::oops_do (172 samples, 0.04%)</title><rect x="33.7356%" y="645" width="0.0443%" height="15" fill="rgb(245,180,19)" fg:x="130848" fg:w="172"/><text x="33.9856%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (139 samples, 0.04%)</title><rect x="33.7441%" y="629" width="0.0358%" height="15" fill="rgb(252,118,36)" fg:x="130881" fg:w="139"/><text x="33.9941%" y="639.50"></text></g><g><title>G1ParTask::work (908 samples, 0.23%)</title><rect x="33.5495%" y="725" width="0.2341%" height="15" fill="rgb(210,224,19)" fg:x="130126" fg:w="908"/><text x="33.7995%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (278 samples, 0.07%)</title><rect x="33.7119%" y="709" width="0.0717%" height="15" fill="rgb(218,30,24)" fg:x="130756" fg:w="278"/><text x="33.9619%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (40 samples, 0.01%)</title><rect x="33.7877%" y="693" width="0.0103%" height="15" fill="rgb(219,75,50)" fg:x="131050" fg:w="40"/><text x="34.0377%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (46 samples, 0.01%)</title><rect x="33.7877%" y="709" width="0.0119%" height="15" fill="rgb(234,72,50)" fg:x="131050" fg:w="46"/><text x="34.0377%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (70 samples, 0.02%)</title><rect x="33.7877%" y="725" width="0.0180%" height="15" fill="rgb(219,100,48)" fg:x="131050" fg:w="70"/><text x="34.0377%" y="735.50"></text></g><g><title>__clone3 (1,045 samples, 0.27%)</title><rect x="33.5477%" y="805" width="0.2694%" height="15" fill="rgb(253,5,41)" fg:x="130119" fg:w="1045"/><text x="33.7977%" y="815.50"></text></g><g><title>start_thread (1,045 samples, 0.27%)</title><rect x="33.5477%" y="789" width="0.2694%" height="15" fill="rgb(247,181,11)" fg:x="130119" fg:w="1045"/><text x="33.7977%" y="799.50"></text></g><g><title>thread_native_entry (1,045 samples, 0.27%)</title><rect x="33.5477%" y="773" width="0.2694%" height="15" fill="rgb(222,223,25)" fg:x="130119" fg:w="1045"/><text x="33.7977%" y="783.50"></text></g><g><title>Thread::call_run (1,045 samples, 0.27%)</title><rect x="33.5477%" y="757" width="0.2694%" height="15" fill="rgb(214,198,28)" fg:x="130119" fg:w="1045"/><text x="33.7977%" y="767.50"></text></g><g><title>GangWorker::loop (1,045 samples, 0.27%)</title><rect x="33.5477%" y="741" width="0.2694%" height="15" fill="rgb(230,46,43)" fg:x="130119" fg:w="1045"/><text x="33.7977%" y="751.50"></text></g><g><title>GC_Thread#1 (1,077 samples, 0.28%)</title><rect x="33.5425%" y="821" width="0.2777%" height="15" fill="rgb(233,65,53)" fg:x="130099" fg:w="1077"/><text x="33.7925%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (105 samples, 0.03%)</title><rect x="33.8504%" y="677" width="0.0271%" height="15" fill="rgb(221,121,27)" fg:x="131293" fg:w="105"/><text x="34.1004%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (198 samples, 0.05%)</title><rect x="33.8279%" y="693" width="0.0510%" height="15" fill="rgb(247,70,47)" fg:x="131206" fg:w="198"/><text x="34.0779%" y="703.50"></text></g><g><title>SpinPause (117 samples, 0.03%)</title><rect x="33.8805%" y="693" width="0.0302%" height="15" fill="rgb(228,85,35)" fg:x="131410" fg:w="117"/><text x="34.1305%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (337 samples, 0.09%)</title><rect x="33.8248%" y="709" width="0.0869%" height="15" fill="rgb(209,50,18)" fg:x="131194" fg:w="337"/><text x="34.0748%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (55 samples, 0.01%)</title><rect x="33.9120%" y="629" width="0.0142%" height="15" fill="rgb(250,19,35)" fg:x="131532" fg:w="55"/><text x="34.1620%" y="639.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (66 samples, 0.02%)</title><rect x="33.9117%" y="645" width="0.0170%" height="15" fill="rgb(253,107,29)" fg:x="131531" fg:w="66"/><text x="34.1617%" y="655.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (67 samples, 0.02%)</title><rect x="33.9117%" y="709" width="0.0173%" height="15" fill="rgb(252,179,29)" fg:x="131531" fg:w="67"/><text x="34.1617%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (67 samples, 0.02%)</title><rect x="33.9117%" y="693" width="0.0173%" height="15" fill="rgb(238,194,6)" fg:x="131531" fg:w="67"/><text x="34.1617%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (67 samples, 0.02%)</title><rect x="33.9117%" y="677" width="0.0173%" height="15" fill="rgb(238,164,29)" fg:x="131531" fg:w="67"/><text x="34.1617%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (67 samples, 0.02%)</title><rect x="33.9117%" y="661" width="0.0173%" height="15" fill="rgb(224,25,9)" fg:x="131531" fg:w="67"/><text x="34.1617%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (157 samples, 0.04%)</title><rect x="33.9540%" y="581" width="0.0405%" height="15" fill="rgb(244,153,23)" fg:x="131695" fg:w="157"/><text x="34.2040%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (120 samples, 0.03%)</title><rect x="33.9635%" y="565" width="0.0309%" height="15" fill="rgb(212,203,14)" fg:x="131732" fg:w="120"/><text x="34.2135%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (215 samples, 0.06%)</title><rect x="33.9427%" y="613" width="0.0554%" height="15" fill="rgb(220,164,20)" fg:x="131651" fg:w="215"/><text x="34.1927%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (215 samples, 0.06%)</title><rect x="33.9427%" y="597" width="0.0554%" height="15" fill="rgb(222,203,48)" fg:x="131651" fg:w="215"/><text x="34.1927%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (247 samples, 0.06%)</title><rect x="33.9370%" y="693" width="0.0637%" height="15" fill="rgb(215,159,22)" fg:x="131629" fg:w="247"/><text x="34.1870%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (247 samples, 0.06%)</title><rect x="33.9370%" y="677" width="0.0637%" height="15" fill="rgb(216,183,47)" fg:x="131629" fg:w="247"/><text x="34.1870%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (247 samples, 0.06%)</title><rect x="33.9370%" y="661" width="0.0637%" height="15" fill="rgb(229,195,25)" fg:x="131629" fg:w="247"/><text x="34.1870%" y="671.50"></text></g><g><title>JavaThread::oops_do (247 samples, 0.06%)</title><rect x="33.9370%" y="645" width="0.0637%" height="15" fill="rgb(224,132,51)" fg:x="131629" fg:w="247"/><text x="34.1870%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (228 samples, 0.06%)</title><rect x="33.9419%" y="629" width="0.0588%" height="15" fill="rgb(240,63,7)" fg:x="131648" fg:w="228"/><text x="34.1919%" y="639.50"></text></g><g><title>G1ParTask::work (691 samples, 0.18%)</title><rect x="33.8248%" y="725" width="0.1782%" height="15" fill="rgb(249,182,41)" fg:x="131194" fg:w="691"/><text x="34.0748%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (256 samples, 0.07%)</title><rect x="33.9370%" y="709" width="0.0660%" height="15" fill="rgb(243,47,26)" fg:x="131629" fg:w="256"/><text x="34.1870%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (43 samples, 0.01%)</title><rect x="34.0056%" y="693" width="0.0111%" height="15" fill="rgb(233,48,2)" fg:x="131895" fg:w="43"/><text x="34.2556%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (49 samples, 0.01%)</title><rect x="34.0056%" y="709" width="0.0126%" height="15" fill="rgb(244,165,34)" fg:x="131895" fg:w="49"/><text x="34.2556%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (80 samples, 0.02%)</title><rect x="34.0056%" y="725" width="0.0206%" height="15" fill="rgb(207,89,7)" fg:x="131895" fg:w="80"/><text x="34.2556%" y="735.50"></text></g><g><title>__clone3 (825 samples, 0.21%)</title><rect x="33.8235%" y="805" width="0.2127%" height="15" fill="rgb(244,117,36)" fg:x="131189" fg:w="825"/><text x="34.0735%" y="815.50"></text></g><g><title>start_thread (825 samples, 0.21%)</title><rect x="33.8235%" y="789" width="0.2127%" height="15" fill="rgb(226,144,34)" fg:x="131189" fg:w="825"/><text x="34.0735%" y="799.50"></text></g><g><title>thread_native_entry (825 samples, 0.21%)</title><rect x="33.8235%" y="773" width="0.2127%" height="15" fill="rgb(213,23,19)" fg:x="131189" fg:w="825"/><text x="34.0735%" y="783.50"></text></g><g><title>Thread::call_run (825 samples, 0.21%)</title><rect x="33.8235%" y="757" width="0.2127%" height="15" fill="rgb(217,75,12)" fg:x="131189" fg:w="825"/><text x="34.0735%" y="767.50"></text></g><g><title>GangWorker::loop (825 samples, 0.21%)</title><rect x="33.8235%" y="741" width="0.2127%" height="15" fill="rgb(224,159,17)" fg:x="131189" fg:w="825"/><text x="34.0735%" y="751.50"></text></g><g><title>GC_Thread#2 (845 samples, 0.22%)</title><rect x="33.8202%" y="821" width="0.2179%" height="15" fill="rgb(217,118,1)" fg:x="131176" fg:w="845"/><text x="34.0702%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (152 samples, 0.04%)</title><rect x="34.0744%" y="677" width="0.0392%" height="15" fill="rgb(232,180,48)" fg:x="132162" fg:w="152"/><text x="34.3244%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (259 samples, 0.07%)</title><rect x="34.0499%" y="693" width="0.0668%" height="15" fill="rgb(230,27,33)" fg:x="132067" fg:w="259"/><text x="34.2999%" y="703.50"></text></g><g><title>SpinPause (132 samples, 0.03%)</title><rect x="34.1180%" y="693" width="0.0340%" height="15" fill="rgb(205,31,21)" fg:x="132331" fg:w="132"/><text x="34.3680%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (408 samples, 0.11%)</title><rect x="34.0473%" y="709" width="0.1052%" height="15" fill="rgb(253,59,4)" fg:x="132057" fg:w="408"/><text x="34.2973%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.01%)</title><rect x="34.1554%" y="613" width="0.0144%" height="15" fill="rgb(224,201,9)" fg:x="132476" fg:w="56"/><text x="34.4054%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (52 samples, 0.01%)</title><rect x="34.1564%" y="597" width="0.0134%" height="15" fill="rgb(229,206,30)" fg:x="132480" fg:w="52"/><text x="34.4064%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (87 samples, 0.02%)</title><rect x="34.1525%" y="629" width="0.0224%" height="15" fill="rgb(212,67,47)" fg:x="132465" fg:w="87"/><text x="34.4025%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (114 samples, 0.03%)</title><rect x="34.1525%" y="709" width="0.0294%" height="15" fill="rgb(211,96,50)" fg:x="132465" fg:w="114"/><text x="34.4025%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (114 samples, 0.03%)</title><rect x="34.1525%" y="693" width="0.0294%" height="15" fill="rgb(252,114,18)" fg:x="132465" fg:w="114"/><text x="34.4025%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (114 samples, 0.03%)</title><rect x="34.1525%" y="677" width="0.0294%" height="15" fill="rgb(223,58,37)" fg:x="132465" fg:w="114"/><text x="34.4025%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (114 samples, 0.03%)</title><rect x="34.1525%" y="661" width="0.0294%" height="15" fill="rgb(237,70,4)" fg:x="132465" fg:w="114"/><text x="34.4025%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (114 samples, 0.03%)</title><rect x="34.1525%" y="645" width="0.0294%" height="15" fill="rgb(244,85,46)" fg:x="132465" fg:w="114"/><text x="34.4025%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (53 samples, 0.01%)</title><rect x="34.1855%" y="613" width="0.0137%" height="15" fill="rgb(223,39,52)" fg:x="132593" fg:w="53"/><text x="34.4355%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (40 samples, 0.01%)</title><rect x="34.1889%" y="597" width="0.0103%" height="15" fill="rgb(218,200,14)" fg:x="132606" fg:w="40"/><text x="34.4389%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (70 samples, 0.02%)</title><rect x="34.1819%" y="629" width="0.0180%" height="15" fill="rgb(208,171,16)" fg:x="132579" fg:w="70"/><text x="34.4319%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (81 samples, 0.02%)</title><rect x="34.1819%" y="645" width="0.0209%" height="15" fill="rgb(234,200,18)" fg:x="132579" fg:w="81"/><text x="34.4319%" y="655.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (82 samples, 0.02%)</title><rect x="34.1819%" y="661" width="0.0211%" height="15" fill="rgb(228,45,11)" fg:x="132579" fg:w="82"/><text x="34.4319%" y="671.50"></text></g><g><title>G1RemSet::scan_rem_set (111 samples, 0.03%)</title><rect x="34.1819%" y="709" width="0.0286%" height="15" fill="rgb(237,182,11)" fg:x="132579" fg:w="111"/><text x="34.4319%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (111 samples, 0.03%)</title><rect x="34.1819%" y="693" width="0.0286%" height="15" fill="rgb(241,175,49)" fg:x="132579" fg:w="111"/><text x="34.4319%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (111 samples, 0.03%)</title><rect x="34.1819%" y="677" width="0.0286%" height="15" fill="rgb(247,38,35)" fg:x="132579" fg:w="111"/><text x="34.4319%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (41 samples, 0.01%)</title><rect x="34.2265%" y="581" width="0.0106%" height="15" fill="rgb(228,39,49)" fg:x="132752" fg:w="41"/><text x="34.4765%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (55 samples, 0.01%)</title><rect x="34.2239%" y="613" width="0.0142%" height="15" fill="rgb(226,101,26)" fg:x="132742" fg:w="55"/><text x="34.4739%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (53 samples, 0.01%)</title><rect x="34.2245%" y="597" width="0.0137%" height="15" fill="rgb(206,141,19)" fg:x="132744" fg:w="53"/><text x="34.4745%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.02%)</title><rect x="34.2237%" y="629" width="0.0152%" height="15" fill="rgb(211,200,13)" fg:x="132741" fg:w="59"/><text x="34.4737%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (110 samples, 0.03%)</title><rect x="34.2108%" y="693" width="0.0284%" height="15" fill="rgb(241,121,6)" fg:x="132691" fg:w="110"/><text x="34.4608%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (109 samples, 0.03%)</title><rect x="34.2110%" y="677" width="0.0281%" height="15" fill="rgb(234,221,29)" fg:x="132692" fg:w="109"/><text x="34.4610%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (109 samples, 0.03%)</title><rect x="34.2110%" y="661" width="0.0281%" height="15" fill="rgb(229,136,5)" fg:x="132692" fg:w="109"/><text x="34.4610%" y="671.50"></text></g><g><title>JavaThread::oops_do (109 samples, 0.03%)</title><rect x="34.2110%" y="645" width="0.0281%" height="15" fill="rgb(238,36,11)" fg:x="132692" fg:w="109"/><text x="34.4610%" y="655.50"></text></g><g><title>G1RootProcessor::evacuate_roots (125 samples, 0.03%)</title><rect x="34.2105%" y="709" width="0.0322%" height="15" fill="rgb(251,55,41)" fg:x="132690" fg:w="125"/><text x="34.4605%" y="719.50"></text></g><g><title>G1ParTask::work (759 samples, 0.20%)</title><rect x="34.0473%" y="725" width="0.1957%" height="15" fill="rgb(242,34,40)" fg:x="132057" fg:w="759"/><text x="34.2973%" y="735.50"></text></g><g><title>G1STWRefProcTaskProxy::work (55 samples, 0.01%)</title><rect x="34.2435%" y="725" width="0.0142%" height="15" fill="rgb(215,42,17)" fg:x="132818" fg:w="55"/><text x="34.4935%" y="735.50"></text></g><g><title>__clone3 (872 samples, 0.22%)</title><rect x="34.0440%" y="805" width="0.2248%" height="15" fill="rgb(207,44,46)" fg:x="132044" fg:w="872"/><text x="34.2940%" y="815.50"></text></g><g><title>start_thread (872 samples, 0.22%)</title><rect x="34.0440%" y="789" width="0.2248%" height="15" fill="rgb(211,206,28)" fg:x="132044" fg:w="872"/><text x="34.2940%" y="799.50"></text></g><g><title>thread_native_entry (872 samples, 0.22%)</title><rect x="34.0440%" y="773" width="0.2248%" height="15" fill="rgb(237,167,16)" fg:x="132044" fg:w="872"/><text x="34.2940%" y="783.50"></text></g><g><title>Thread::call_run (872 samples, 0.22%)</title><rect x="34.0440%" y="757" width="0.2248%" height="15" fill="rgb(233,66,6)" fg:x="132044" fg:w="872"/><text x="34.2940%" y="767.50"></text></g><g><title>GangWorker::loop (872 samples, 0.22%)</title><rect x="34.0440%" y="741" width="0.2248%" height="15" fill="rgb(246,123,29)" fg:x="132044" fg:w="872"/><text x="34.2940%" y="751.50"></text></g><g><title>GC_Thread#3 (904 samples, 0.23%)</title><rect x="34.0380%" y="821" width="0.2331%" height="15" fill="rgb(209,62,40)" fg:x="132021" fg:w="904"/><text x="34.2880%" y="831.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (48 samples, 0.01%)</title><rect x="34.3214%" y="661" width="0.0124%" height="15" fill="rgb(218,4,25)" fg:x="133120" fg:w="48"/><text x="34.5714%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (144 samples, 0.04%)</title><rect x="34.3036%" y="677" width="0.0371%" height="15" fill="rgb(253,91,49)" fg:x="133051" fg:w="144"/><text x="34.5536%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (236 samples, 0.06%)</title><rect x="34.2814%" y="693" width="0.0608%" height="15" fill="rgb(228,155,29)" fg:x="132965" fg:w="236"/><text x="34.5314%" y="703.50"></text></g><g><title>SpinPause (123 samples, 0.03%)</title><rect x="34.3431%" y="693" width="0.0317%" height="15" fill="rgb(243,57,37)" fg:x="133204" fg:w="123"/><text x="34.5931%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (370 samples, 0.10%)</title><rect x="34.2799%" y="709" width="0.0954%" height="15" fill="rgb(244,167,17)" fg:x="132959" fg:w="370"/><text x="34.5299%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (79 samples, 0.02%)</title><rect x="34.3786%" y="613" width="0.0204%" height="15" fill="rgb(207,181,38)" fg:x="133342" fg:w="79"/><text x="34.6286%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (68 samples, 0.02%)</title><rect x="34.3815%" y="597" width="0.0175%" height="15" fill="rgb(211,8,23)" fg:x="133353" fg:w="68"/><text x="34.6315%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (110 samples, 0.03%)</title><rect x="34.3753%" y="629" width="0.0284%" height="15" fill="rgb(235,11,44)" fg:x="133329" fg:w="110"/><text x="34.6253%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (121 samples, 0.03%)</title><rect x="34.3753%" y="709" width="0.0312%" height="15" fill="rgb(248,18,52)" fg:x="133329" fg:w="121"/><text x="34.6253%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (121 samples, 0.03%)</title><rect x="34.3753%" y="693" width="0.0312%" height="15" fill="rgb(208,4,7)" fg:x="133329" fg:w="121"/><text x="34.6253%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (121 samples, 0.03%)</title><rect x="34.3753%" y="677" width="0.0312%" height="15" fill="rgb(240,17,39)" fg:x="133329" fg:w="121"/><text x="34.6253%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (121 samples, 0.03%)</title><rect x="34.3753%" y="661" width="0.0312%" height="15" fill="rgb(207,170,3)" fg:x="133329" fg:w="121"/><text x="34.6253%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (121 samples, 0.03%)</title><rect x="34.3753%" y="645" width="0.0312%" height="15" fill="rgb(236,100,52)" fg:x="133329" fg:w="121"/><text x="34.6253%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (99 samples, 0.03%)</title><rect x="34.4268%" y="613" width="0.0255%" height="15" fill="rgb(246,78,51)" fg:x="133529" fg:w="99"/><text x="34.6768%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.02%)</title><rect x="34.4333%" y="597" width="0.0191%" height="15" fill="rgb(211,17,15)" fg:x="133554" fg:w="74"/><text x="34.6833%" y="607.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (145 samples, 0.04%)</title><rect x="34.4152%" y="677" width="0.0374%" height="15" fill="rgb(209,59,46)" fg:x="133484" fg:w="145"/><text x="34.6652%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (143 samples, 0.04%)</title><rect x="34.4158%" y="661" width="0.0369%" height="15" fill="rgb(210,92,25)" fg:x="133486" fg:w="143"/><text x="34.6658%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (143 samples, 0.04%)</title><rect x="34.4158%" y="645" width="0.0369%" height="15" fill="rgb(238,174,52)" fg:x="133486" fg:w="143"/><text x="34.6658%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (120 samples, 0.03%)</title><rect x="34.4217%" y="629" width="0.0309%" height="15" fill="rgb(230,73,7)" fg:x="133509" fg:w="120"/><text x="34.6717%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (58 samples, 0.01%)</title><rect x="34.4573%" y="581" width="0.0150%" height="15" fill="rgb(243,124,40)" fg:x="133647" fg:w="58"/><text x="34.7073%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (44 samples, 0.01%)</title><rect x="34.4609%" y="565" width="0.0113%" height="15" fill="rgb(244,170,11)" fg:x="133661" fg:w="44"/><text x="34.7109%" y="575.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (70 samples, 0.02%)</title><rect x="34.4544%" y="597" width="0.0180%" height="15" fill="rgb(207,114,54)" fg:x="133636" fg:w="70"/><text x="34.7044%" y="607.50"></text></g><g><title>frame::oops_do_internal (72 samples, 0.02%)</title><rect x="34.4542%" y="629" width="0.0186%" height="15" fill="rgb(205,42,20)" fg:x="133635" fg:w="72"/><text x="34.7042%" y="639.50"></text></g><g><title>OopMapSet::oops_do (72 samples, 0.02%)</title><rect x="34.4542%" y="613" width="0.0186%" height="15" fill="rgb(230,30,28)" fg:x="133635" fg:w="72"/><text x="34.7042%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (108 samples, 0.03%)</title><rect x="34.4789%" y="581" width="0.0278%" height="15" fill="rgb(205,73,54)" fg:x="133731" fg:w="108"/><text x="34.7289%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (90 samples, 0.02%)</title><rect x="34.4836%" y="565" width="0.0232%" height="15" fill="rgb(254,227,23)" fg:x="133749" fg:w="90"/><text x="34.7336%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (141 samples, 0.04%)</title><rect x="34.4727%" y="613" width="0.0364%" height="15" fill="rgb(228,202,34)" fg:x="133707" fg:w="141"/><text x="34.7227%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (141 samples, 0.04%)</title><rect x="34.4727%" y="597" width="0.0364%" height="15" fill="rgb(222,225,37)" fg:x="133707" fg:w="141"/><text x="34.7227%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (366 samples, 0.09%)</title><rect x="34.4152%" y="693" width="0.0944%" height="15" fill="rgb(221,14,54)" fg:x="133484" fg:w="366"/><text x="34.6652%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (221 samples, 0.06%)</title><rect x="34.4526%" y="677" width="0.0570%" height="15" fill="rgb(254,102,2)" fg:x="133629" fg:w="221"/><text x="34.7026%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (221 samples, 0.06%)</title><rect x="34.4526%" y="661" width="0.0570%" height="15" fill="rgb(232,104,17)" fg:x="133629" fg:w="221"/><text x="34.7026%" y="671.50"></text></g><g><title>JavaThread::oops_do (221 samples, 0.06%)</title><rect x="34.4526%" y="645" width="0.0570%" height="15" fill="rgb(250,220,14)" fg:x="133629" fg:w="221"/><text x="34.7026%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (143 samples, 0.04%)</title><rect x="34.4727%" y="629" width="0.0369%" height="15" fill="rgb(241,158,9)" fg:x="133707" fg:w="143"/><text x="34.7227%" y="639.50"></text></g><g><title>G1ParTask::work (899 samples, 0.23%)</title><rect x="34.2796%" y="725" width="0.2318%" height="15" fill="rgb(246,9,43)" fg:x="132958" fg:w="899"/><text x="34.5296%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (390 samples, 0.10%)</title><rect x="34.4109%" y="709" width="0.1006%" height="15" fill="rgb(206,73,33)" fg:x="133467" fg:w="390"/><text x="34.6609%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (43 samples, 0.01%)</title><rect x="34.5137%" y="709" width="0.0111%" height="15" fill="rgb(222,79,8)" fg:x="133866" fg:w="43"/><text x="34.7637%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (79 samples, 0.02%)</title><rect x="34.5137%" y="725" width="0.0204%" height="15" fill="rgb(234,8,54)" fg:x="133866" fg:w="79"/><text x="34.7637%" y="735.50"></text></g><g><title>__clone3 (1,048 samples, 0.27%)</title><rect x="34.2760%" y="805" width="0.2702%" height="15" fill="rgb(209,134,38)" fg:x="132944" fg:w="1048"/><text x="34.5260%" y="815.50"></text></g><g><title>start_thread (1,048 samples, 0.27%)</title><rect x="34.2760%" y="789" width="0.2702%" height="15" fill="rgb(230,127,29)" fg:x="132944" fg:w="1048"/><text x="34.5260%" y="799.50"></text></g><g><title>thread_native_entry (1,048 samples, 0.27%)</title><rect x="34.2760%" y="773" width="0.2702%" height="15" fill="rgb(242,44,41)" fg:x="132944" fg:w="1048"/><text x="34.5260%" y="783.50"></text></g><g><title>Thread::call_run (1,048 samples, 0.27%)</title><rect x="34.2760%" y="757" width="0.2702%" height="15" fill="rgb(222,56,43)" fg:x="132944" fg:w="1048"/><text x="34.5260%" y="767.50"></text></g><g><title>GangWorker::loop (1,048 samples, 0.27%)</title><rect x="34.2760%" y="741" width="0.2702%" height="15" fill="rgb(238,39,47)" fg:x="132944" fg:w="1048"/><text x="34.5260%" y="751.50"></text></g><g><title>GC_Thread#4 (1,074 samples, 0.28%)</title><rect x="34.2711%" y="821" width="0.2769%" height="15" fill="rgb(226,79,43)" fg:x="132925" fg:w="1074"/><text x="34.5211%" y="831.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (44 samples, 0.01%)</title><rect x="34.5957%" y="661" width="0.0113%" height="15" fill="rgb(242,105,53)" fg:x="134184" fg:w="44"/><text x="34.8457%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (157 samples, 0.04%)</title><rect x="34.5759%" y="677" width="0.0405%" height="15" fill="rgb(251,132,46)" fg:x="134107" fg:w="157"/><text x="34.8259%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (253 samples, 0.07%)</title><rect x="34.5563%" y="693" width="0.0652%" height="15" fill="rgb(231,77,14)" fg:x="134031" fg:w="253"/><text x="34.8063%" y="703.50"></text></g><g><title>SpinPause (137 samples, 0.04%)</title><rect x="34.6230%" y="693" width="0.0353%" height="15" fill="rgb(240,135,9)" fg:x="134290" fg:w="137"/><text x="34.8730%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (408 samples, 0.11%)</title><rect x="34.5550%" y="709" width="0.1052%" height="15" fill="rgb(248,109,14)" fg:x="134026" fg:w="408"/><text x="34.8050%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (81 samples, 0.02%)</title><rect x="34.6628%" y="613" width="0.0209%" height="15" fill="rgb(227,146,52)" fg:x="134444" fg:w="81"/><text x="34.9128%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.02%)</title><rect x="34.6671%" y="597" width="0.0165%" height="15" fill="rgb(232,54,3)" fg:x="134461" fg:w="64"/><text x="34.9171%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (122 samples, 0.03%)</title><rect x="34.6602%" y="629" width="0.0315%" height="15" fill="rgb(229,201,43)" fg:x="134434" fg:w="122"/><text x="34.9102%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (144 samples, 0.04%)</title><rect x="34.6602%" y="709" width="0.0371%" height="15" fill="rgb(252,161,33)" fg:x="134434" fg:w="144"/><text x="34.9102%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (144 samples, 0.04%)</title><rect x="34.6602%" y="693" width="0.0371%" height="15" fill="rgb(226,146,40)" fg:x="134434" fg:w="144"/><text x="34.9102%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (144 samples, 0.04%)</title><rect x="34.6602%" y="677" width="0.0371%" height="15" fill="rgb(219,47,25)" fg:x="134434" fg:w="144"/><text x="34.9102%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (144 samples, 0.04%)</title><rect x="34.6602%" y="661" width="0.0371%" height="15" fill="rgb(250,135,13)" fg:x="134434" fg:w="144"/><text x="34.9102%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (144 samples, 0.04%)</title><rect x="34.6602%" y="645" width="0.0371%" height="15" fill="rgb(219,229,18)" fg:x="134434" fg:w="144"/><text x="34.9102%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.01%)</title><rect x="34.6973%" y="629" width="0.0121%" height="15" fill="rgb(217,152,27)" fg:x="134578" fg:w="47"/><text x="34.9473%" y="639.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (56 samples, 0.01%)</title><rect x="34.6973%" y="661" width="0.0144%" height="15" fill="rgb(225,71,47)" fg:x="134578" fg:w="56"/><text x="34.9473%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (56 samples, 0.01%)</title><rect x="34.6973%" y="645" width="0.0144%" height="15" fill="rgb(220,139,14)" fg:x="134578" fg:w="56"/><text x="34.9473%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (73 samples, 0.02%)</title><rect x="34.6973%" y="709" width="0.0188%" height="15" fill="rgb(247,54,32)" fg:x="134578" fg:w="73"/><text x="34.9473%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (73 samples, 0.02%)</title><rect x="34.6973%" y="693" width="0.0188%" height="15" fill="rgb(252,131,39)" fg:x="134578" fg:w="73"/><text x="34.9473%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (73 samples, 0.02%)</title><rect x="34.6973%" y="677" width="0.0188%" height="15" fill="rgb(210,108,39)" fg:x="134578" fg:w="73"/><text x="34.9473%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.02%)</title><rect x="34.7427%" y="565" width="0.0165%" height="15" fill="rgb(205,23,29)" fg:x="134754" fg:w="64"/><text x="34.9927%" y="575.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (91 samples, 0.02%)</title><rect x="34.7360%" y="581" width="0.0235%" height="15" fill="rgb(246,139,46)" fg:x="134728" fg:w="91"/><text x="34.9860%" y="591.50"></text></g><g><title>InterpreterOopMap::iterate_oop (134 samples, 0.03%)</title><rect x="34.7275%" y="613" width="0.0345%" height="15" fill="rgb(250,81,26)" fg:x="134695" fg:w="134"/><text x="34.9775%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (132 samples, 0.03%)</title><rect x="34.7280%" y="597" width="0.0340%" height="15" fill="rgb(214,104,7)" fg:x="134697" fg:w="132"/><text x="34.9780%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (137 samples, 0.04%)</title><rect x="34.7275%" y="629" width="0.0353%" height="15" fill="rgb(233,189,8)" fg:x="134695" fg:w="137"/><text x="34.9775%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (182 samples, 0.05%)</title><rect x="34.7161%" y="693" width="0.0469%" height="15" fill="rgb(228,141,17)" fg:x="134651" fg:w="182"/><text x="34.9661%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (182 samples, 0.05%)</title><rect x="34.7161%" y="677" width="0.0469%" height="15" fill="rgb(247,157,1)" fg:x="134651" fg:w="182"/><text x="34.9661%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (182 samples, 0.05%)</title><rect x="34.7161%" y="661" width="0.0469%" height="15" fill="rgb(249,225,5)" fg:x="134651" fg:w="182"/><text x="34.9661%" y="671.50"></text></g><g><title>JavaThread::oops_do (181 samples, 0.05%)</title><rect x="34.7164%" y="645" width="0.0467%" height="15" fill="rgb(242,55,13)" fg:x="134652" fg:w="181"/><text x="34.9664%" y="655.50"></text></g><g><title>G1ParTask::work (815 samples, 0.21%)</title><rect x="34.5550%" y="725" width="0.2101%" height="15" fill="rgb(230,49,50)" fg:x="134026" fg:w="815"/><text x="34.8050%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (190 samples, 0.05%)</title><rect x="34.7161%" y="709" width="0.0490%" height="15" fill="rgb(241,111,38)" fg:x="134651" fg:w="190"/><text x="34.9661%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (45 samples, 0.01%)</title><rect x="34.7685%" y="709" width="0.0116%" height="15" fill="rgb(252,155,4)" fg:x="134854" fg:w="45"/><text x="35.0185%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (63 samples, 0.02%)</title><rect x="34.7685%" y="725" width="0.0162%" height="15" fill="rgb(212,69,32)" fg:x="134854" fg:w="63"/><text x="35.0185%" y="735.50"></text></g><g><title>__clone3 (958 samples, 0.25%)</title><rect x="34.5514%" y="805" width="0.2470%" height="15" fill="rgb(243,107,47)" fg:x="134012" fg:w="958"/><text x="34.8014%" y="815.50"></text></g><g><title>start_thread (958 samples, 0.25%)</title><rect x="34.5514%" y="789" width="0.2470%" height="15" fill="rgb(247,130,12)" fg:x="134012" fg:w="958"/><text x="34.8014%" y="799.50"></text></g><g><title>thread_native_entry (958 samples, 0.25%)</title><rect x="34.5514%" y="773" width="0.2470%" height="15" fill="rgb(233,74,16)" fg:x="134012" fg:w="958"/><text x="34.8014%" y="783.50"></text></g><g><title>Thread::call_run (958 samples, 0.25%)</title><rect x="34.5514%" y="757" width="0.2470%" height="15" fill="rgb(208,58,18)" fg:x="134012" fg:w="958"/><text x="34.8014%" y="767.50"></text></g><g><title>GangWorker::loop (958 samples, 0.25%)</title><rect x="34.5514%" y="741" width="0.2470%" height="15" fill="rgb(242,225,1)" fg:x="134012" fg:w="958"/><text x="34.8014%" y="751.50"></text></g><g><title>GC_Thread#5 (979 samples, 0.25%)</title><rect x="34.5480%" y="821" width="0.2524%" height="15" fill="rgb(249,39,40)" fg:x="133999" fg:w="979"/><text x="34.7980%" y="831.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (42 samples, 0.01%)</title><rect x="34.8543%" y="661" width="0.0108%" height="15" fill="rgb(207,72,44)" fg:x="135187" fg:w="42"/><text x="35.1043%" y="671.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (150 samples, 0.04%)</title><rect x="34.8339%" y="677" width="0.0387%" height="15" fill="rgb(215,193,12)" fg:x="135108" fg:w="150"/><text x="35.0839%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (250 samples, 0.06%)</title><rect x="34.8102%" y="693" width="0.0645%" height="15" fill="rgb(248,41,39)" fg:x="135016" fg:w="250"/><text x="35.0602%" y="703.50"></text></g><g><title>SpinPause (155 samples, 0.04%)</title><rect x="34.8783%" y="693" width="0.0400%" height="15" fill="rgb(253,85,4)" fg:x="135280" fg:w="155"/><text x="35.1283%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (433 samples, 0.11%)</title><rect x="34.8069%" y="709" width="0.1116%" height="15" fill="rgb(243,70,31)" fg:x="135003" fg:w="433"/><text x="35.0569%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (59 samples, 0.02%)</title><rect x="34.9226%" y="613" width="0.0152%" height="15" fill="rgb(253,195,26)" fg:x="135452" fg:w="59"/><text x="35.1726%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (42 samples, 0.01%)</title><rect x="34.9270%" y="597" width="0.0108%" height="15" fill="rgb(243,42,11)" fg:x="135469" fg:w="42"/><text x="35.1770%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (82 samples, 0.02%)</title><rect x="34.9185%" y="629" width="0.0211%" height="15" fill="rgb(239,66,17)" fg:x="135436" fg:w="82"/><text x="35.1685%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (110 samples, 0.03%)</title><rect x="34.9185%" y="709" width="0.0284%" height="15" fill="rgb(217,132,21)" fg:x="135436" fg:w="110"/><text x="35.1685%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (110 samples, 0.03%)</title><rect x="34.9185%" y="693" width="0.0284%" height="15" fill="rgb(252,202,21)" fg:x="135436" fg:w="110"/><text x="35.1685%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (110 samples, 0.03%)</title><rect x="34.9185%" y="677" width="0.0284%" height="15" fill="rgb(233,98,36)" fg:x="135436" fg:w="110"/><text x="35.1685%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (110 samples, 0.03%)</title><rect x="34.9185%" y="661" width="0.0284%" height="15" fill="rgb(216,153,54)" fg:x="135436" fg:w="110"/><text x="35.1685%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (110 samples, 0.03%)</title><rect x="34.9185%" y="645" width="0.0284%" height="15" fill="rgb(250,99,7)" fg:x="135436" fg:w="110"/><text x="35.1685%" y="655.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (56 samples, 0.01%)</title><rect x="34.9572%" y="677" width="0.0144%" height="15" fill="rgb(207,56,50)" fg:x="135586" fg:w="56"/><text x="35.2072%" y="687.50"></text></g><g><title>G1CLDScanClosure::do_cld (54 samples, 0.01%)</title><rect x="34.9577%" y="661" width="0.0139%" height="15" fill="rgb(244,61,34)" fg:x="135588" fg:w="54"/><text x="35.2077%" y="671.50"></text></g><g><title>ClassLoaderData::oops_do (54 samples, 0.01%)</title><rect x="34.9577%" y="645" width="0.0139%" height="15" fill="rgb(241,50,38)" fg:x="135588" fg:w="54"/><text x="35.2077%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.01%)</title><rect x="34.9595%" y="629" width="0.0121%" height="15" fill="rgb(212,166,30)" fg:x="135595" fg:w="47"/><text x="35.2095%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (39 samples, 0.01%)</title><rect x="34.9739%" y="597" width="0.0101%" height="15" fill="rgb(249,127,32)" fg:x="135651" fg:w="39"/><text x="35.2239%" y="607.50"></text></g><g><title>frame::oops_do_internal (40 samples, 0.01%)</title><rect x="34.9739%" y="629" width="0.0103%" height="15" fill="rgb(209,103,0)" fg:x="135651" fg:w="40"/><text x="35.2239%" y="639.50"></text></g><g><title>OopMapSet::oops_do (40 samples, 0.01%)</title><rect x="34.9739%" y="613" width="0.0103%" height="15" fill="rgb(238,209,51)" fg:x="135651" fg:w="40"/><text x="35.2239%" y="623.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (88 samples, 0.02%)</title><rect x="35.0008%" y="581" width="0.0227%" height="15" fill="rgb(237,56,23)" fg:x="135755" fg:w="88"/><text x="35.2508%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.02%)</title><rect x="35.0054%" y="565" width="0.0180%" height="15" fill="rgb(215,153,46)" fg:x="135773" fg:w="70"/><text x="35.2554%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (119 samples, 0.03%)</title><rect x="34.9938%" y="613" width="0.0307%" height="15" fill="rgb(224,49,31)" fg:x="135728" fg:w="119"/><text x="35.2438%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (118 samples, 0.03%)</title><rect x="34.9941%" y="597" width="0.0304%" height="15" fill="rgb(250,18,42)" fg:x="135729" fg:w="118"/><text x="35.2441%" y="607.50"></text></g><g><title>frame::oops_interpreted_do (158 samples, 0.04%)</title><rect x="34.9845%" y="629" width="0.0407%" height="15" fill="rgb(215,176,39)" fg:x="135692" fg:w="158"/><text x="35.2345%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (265 samples, 0.07%)</title><rect x="34.9572%" y="693" width="0.0683%" height="15" fill="rgb(223,77,29)" fg:x="135586" fg:w="265"/><text x="35.2072%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (209 samples, 0.05%)</title><rect x="34.9716%" y="677" width="0.0539%" height="15" fill="rgb(234,94,52)" fg:x="135642" fg:w="209"/><text x="35.2216%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (209 samples, 0.05%)</title><rect x="34.9716%" y="661" width="0.0539%" height="15" fill="rgb(220,154,50)" fg:x="135642" fg:w="209"/><text x="35.2216%" y="671.50"></text></g><g><title>JavaThread::oops_do (209 samples, 0.05%)</title><rect x="34.9716%" y="645" width="0.0539%" height="15" fill="rgb(212,11,10)" fg:x="135642" fg:w="209"/><text x="35.2216%" y="655.50"></text></g><g><title>G1ParTask::work (862 samples, 0.22%)</title><rect x="34.8069%" y="725" width="0.2222%" height="15" fill="rgb(205,166,19)" fg:x="135003" fg:w="862"/><text x="35.0569%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (281 samples, 0.07%)</title><rect x="34.9567%" y="709" width="0.0724%" height="15" fill="rgb(244,198,16)" fg:x="135584" fg:w="281"/><text x="35.2067%" y="719.50"></text></g><g><title>__clone3 (964 samples, 0.25%)</title><rect x="34.8046%" y="805" width="0.2485%" height="15" fill="rgb(219,69,12)" fg:x="134994" fg:w="964"/><text x="35.0546%" y="815.50"></text></g><g><title>start_thread (964 samples, 0.25%)</title><rect x="34.8046%" y="789" width="0.2485%" height="15" fill="rgb(245,30,7)" fg:x="134994" fg:w="964"/><text x="35.0546%" y="799.50"></text></g><g><title>thread_native_entry (964 samples, 0.25%)</title><rect x="34.8046%" y="773" width="0.2485%" height="15" fill="rgb(218,221,48)" fg:x="134994" fg:w="964"/><text x="35.0546%" y="783.50"></text></g><g><title>Thread::call_run (964 samples, 0.25%)</title><rect x="34.8046%" y="757" width="0.2485%" height="15" fill="rgb(216,66,15)" fg:x="134994" fg:w="964"/><text x="35.0546%" y="767.50"></text></g><g><title>GangWorker::loop (964 samples, 0.25%)</title><rect x="34.8046%" y="741" width="0.2485%" height="15" fill="rgb(226,122,50)" fg:x="134994" fg:w="964"/><text x="35.0546%" y="751.50"></text></g><g><title>GC_Thread#6 (988 samples, 0.25%)</title><rect x="34.8004%" y="821" width="0.2547%" height="15" fill="rgb(239,156,16)" fg:x="134978" fg:w="988"/><text x="35.0504%" y="831.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (108 samples, 0.03%)</title><rect x="35.0838%" y="677" width="0.0278%" height="15" fill="rgb(224,27,38)" fg:x="136077" fg:w="108"/><text x="35.3338%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue (177 samples, 0.05%)</title><rect x="35.0673%" y="693" width="0.0456%" height="15" fill="rgb(224,39,27)" fg:x="136013" fg:w="177"/><text x="35.3173%" y="703.50"></text></g><g><title>SpinPause (93 samples, 0.02%)</title><rect x="35.1134%" y="693" width="0.0240%" height="15" fill="rgb(215,92,29)" fg:x="136192" fg:w="93"/><text x="35.3634%" y="703.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (291 samples, 0.08%)</title><rect x="35.0637%" y="709" width="0.0750%" height="15" fill="rgb(207,159,16)" fg:x="135999" fg:w="291"/><text x="35.3137%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (62 samples, 0.02%)</title><rect x="35.1420%" y="613" width="0.0160%" height="15" fill="rgb(238,163,47)" fg:x="136303" fg:w="62"/><text x="35.3920%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (57 samples, 0.01%)</title><rect x="35.1433%" y="597" width="0.0147%" height="15" fill="rgb(219,91,49)" fg:x="136308" fg:w="57"/><text x="35.3933%" y="607.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (94 samples, 0.02%)</title><rect x="35.1387%" y="629" width="0.0242%" height="15" fill="rgb(227,167,31)" fg:x="136290" fg:w="94"/><text x="35.3887%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (111 samples, 0.03%)</title><rect x="35.1387%" y="709" width="0.0286%" height="15" fill="rgb(234,80,54)" fg:x="136290" fg:w="111"/><text x="35.3887%" y="719.50"></text></g><g><title>G1RemSet::update_rem_set (111 samples, 0.03%)</title><rect x="35.1387%" y="693" width="0.0286%" height="15" fill="rgb(212,114,2)" fg:x="136290" fg:w="111"/><text x="35.3887%" y="703.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (111 samples, 0.03%)</title><rect x="35.1387%" y="677" width="0.0286%" height="15" fill="rgb(234,50,24)" fg:x="136290" fg:w="111"/><text x="35.3887%" y="687.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (111 samples, 0.03%)</title><rect x="35.1387%" y="661" width="0.0286%" height="15" fill="rgb(221,68,8)" fg:x="136290" fg:w="111"/><text x="35.3887%" y="671.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (111 samples, 0.03%)</title><rect x="35.1387%" y="645" width="0.0286%" height="15" fill="rgb(254,180,31)" fg:x="136290" fg:w="111"/><text x="35.3887%" y="655.50"></text></g><g><title>G1RemSet::scan_rem_set (52 samples, 0.01%)</title><rect x="35.1673%" y="709" width="0.0134%" height="15" fill="rgb(247,130,50)" fg:x="136401" fg:w="52"/><text x="35.4173%" y="719.50"></text></g><g><title>G1CollectionSet::iterate_from (52 samples, 0.01%)</title><rect x="35.1673%" y="693" width="0.0134%" height="15" fill="rgb(211,109,4)" fg:x="136401" fg:w="52"/><text x="35.4173%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (52 samples, 0.01%)</title><rect x="35.1673%" y="677" width="0.0134%" height="15" fill="rgb(238,50,21)" fg:x="136401" fg:w="52"/><text x="35.4173%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (63 samples, 0.02%)</title><rect x="35.1908%" y="581" width="0.0162%" height="15" fill="rgb(225,57,45)" fg:x="136492" fg:w="63"/><text x="35.4408%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (49 samples, 0.01%)</title><rect x="35.1944%" y="565" width="0.0126%" height="15" fill="rgb(209,196,50)" fg:x="136506" fg:w="49"/><text x="35.4444%" y="575.50"></text></g><g><title>frame::oops_do_internal (76 samples, 0.02%)</title><rect x="35.1877%" y="629" width="0.0196%" height="15" fill="rgb(242,140,13)" fg:x="136480" fg:w="76"/><text x="35.4377%" y="639.50"></text></g><g><title>OopMapSet::oops_do (76 samples, 0.02%)</title><rect x="35.1877%" y="613" width="0.0196%" height="15" fill="rgb(217,111,7)" fg:x="136480" fg:w="76"/><text x="35.4377%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (76 samples, 0.02%)</title><rect x="35.1877%" y="597" width="0.0196%" height="15" fill="rgb(253,193,51)" fg:x="136480" fg:w="76"/><text x="35.4377%" y="607.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (133 samples, 0.03%)</title><rect x="35.2212%" y="581" width="0.0343%" height="15" fill="rgb(252,70,29)" fg:x="136610" fg:w="133"/><text x="35.4712%" y="591.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (101 samples, 0.03%)</title><rect x="35.2294%" y="565" width="0.0260%" height="15" fill="rgb(232,127,12)" fg:x="136642" fg:w="101"/><text x="35.4794%" y="575.50"></text></g><g><title>InterpreterOopMap::iterate_oop (178 samples, 0.05%)</title><rect x="35.2129%" y="613" width="0.0459%" height="15" fill="rgb(211,180,21)" fg:x="136578" fg:w="178"/><text x="35.4629%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (175 samples, 0.05%)</title><rect x="35.2137%" y="597" width="0.0451%" height="15" fill="rgb(229,72,13)" fg:x="136581" fg:w="175"/><text x="35.4637%" y="607.50"></text></g><g><title>G1RootProcessor::process_java_roots (308 samples, 0.08%)</title><rect x="35.1812%" y="693" width="0.0794%" height="15" fill="rgb(240,211,49)" fg:x="136455" fg:w="308"/><text x="35.4312%" y="703.50"></text></g><g><title>Threads::possibly_parallel_oops_do (307 samples, 0.08%)</title><rect x="35.1815%" y="677" width="0.0792%" height="15" fill="rgb(219,149,40)" fg:x="136456" fg:w="307"/><text x="35.4315%" y="687.50"></text></g><g><title>Threads::possibly_parallel_threads_do (307 samples, 0.08%)</title><rect x="35.1815%" y="661" width="0.0792%" height="15" fill="rgb(210,127,46)" fg:x="136456" fg:w="307"/><text x="35.4315%" y="671.50"></text></g><g><title>JavaThread::oops_do (307 samples, 0.08%)</title><rect x="35.1815%" y="645" width="0.0792%" height="15" fill="rgb(220,106,7)" fg:x="136456" fg:w="307"/><text x="35.4315%" y="655.50"></text></g><g><title>frame::oops_interpreted_do (207 samples, 0.05%)</title><rect x="35.2073%" y="629" width="0.0534%" height="15" fill="rgb(249,31,22)" fg:x="136556" fg:w="207"/><text x="35.4573%" y="639.50"></text></g><g><title>G1ParTask::work (789 samples, 0.20%)</title><rect x="35.0637%" y="725" width="0.2034%" height="15" fill="rgb(253,1,49)" fg:x="135999" fg:w="789"/><text x="35.3137%" y="735.50"></text></g><g><title>G1RootProcessor::evacuate_roots (335 samples, 0.09%)</title><rect x="35.1807%" y="709" width="0.0864%" height="15" fill="rgb(227,144,33)" fg:x="136453" fg:w="335"/><text x="35.4307%" y="719.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (43 samples, 0.01%)</title><rect x="35.2686%" y="693" width="0.0111%" height="15" fill="rgb(249,163,44)" fg:x="136794" fg:w="43"/><text x="35.5186%" y="703.50"></text></g><g><title>RefProcPhase2Task::work (48 samples, 0.01%)</title><rect x="35.2686%" y="709" width="0.0124%" height="15" fill="rgb(234,15,39)" fg:x="136794" fg:w="48"/><text x="35.5186%" y="719.50"></text></g><g><title>G1STWRefProcTaskProxy::work (69 samples, 0.02%)</title><rect x="35.2686%" y="725" width="0.0178%" height="15" fill="rgb(207,66,16)" fg:x="136794" fg:w="69"/><text x="35.5186%" y="735.50"></text></g><g><title>__clone3 (928 samples, 0.24%)</title><rect x="35.0598%" y="805" width="0.2393%" height="15" fill="rgb(233,112,24)" fg:x="135984" fg:w="928"/><text x="35.3098%" y="815.50"></text></g><g><title>start_thread (928 samples, 0.24%)</title><rect x="35.0598%" y="789" width="0.2393%" height="15" fill="rgb(230,90,22)" fg:x="135984" fg:w="928"/><text x="35.3098%" y="799.50"></text></g><g><title>thread_native_entry (928 samples, 0.24%)</title><rect x="35.0598%" y="773" width="0.2393%" height="15" fill="rgb(229,61,13)" fg:x="135984" fg:w="928"/><text x="35.3098%" y="783.50"></text></g><g><title>Thread::call_run (928 samples, 0.24%)</title><rect x="35.0598%" y="757" width="0.2393%" height="15" fill="rgb(225,57,24)" fg:x="135984" fg:w="928"/><text x="35.3098%" y="767.50"></text></g><g><title>GangWorker::loop (928 samples, 0.24%)</title><rect x="35.0598%" y="741" width="0.2393%" height="15" fill="rgb(208,169,48)" fg:x="135984" fg:w="928"/><text x="35.3098%" y="751.50"></text></g><g><title>GC_Thread#7 (954 samples, 0.25%)</title><rect x="35.0552%" y="821" width="0.2460%" height="15" fill="rgb(244,218,51)" fg:x="135966" fg:w="954"/><text x="35.3052%" y="831.50"></text></g><g><title>[perf-742530.map] (145 samples, 0.04%)</title><rect x="35.3052%" y="805" width="0.0374%" height="15" fill="rgb(214,148,10)" fg:x="136936" fg:w="145"/><text x="35.5552%" y="815.50"></text></g><g><title>Service_Thread (160 samples, 0.04%)</title><rect x="35.3034%" y="821" width="0.0413%" height="15" fill="rgb(225,174,27)" fg:x="136929" fg:w="160"/><text x="35.5534%" y="831.50"></text></g><g><title>futex_wait_queue_me (76 samples, 0.02%)</title><rect x="35.3599%" y="501" width="0.0196%" height="15" fill="rgb(230,96,26)" fg:x="137148" fg:w="76"/><text x="35.6099%" y="511.50"></text></g><g><title>schedule (65 samples, 0.02%)</title><rect x="35.3627%" y="485" width="0.0168%" height="15" fill="rgb(232,10,30)" fg:x="137159" fg:w="65"/><text x="35.6127%" y="495.50"></text></g><g><title>__schedule (63 samples, 0.02%)</title><rect x="35.3633%" y="469" width="0.0162%" height="15" fill="rgb(222,8,50)" fg:x="137161" fg:w="63"/><text x="35.6133%" y="479.50"></text></g><g><title>futex_wait (84 samples, 0.02%)</title><rect x="35.3594%" y="517" width="0.0217%" height="15" fill="rgb(213,81,27)" fg:x="137146" fg:w="84"/><text x="35.6094%" y="527.50"></text></g><g><title>do_futex (87 samples, 0.02%)</title><rect x="35.3589%" y="533" width="0.0224%" height="15" fill="rgb(245,50,10)" fg:x="137144" fg:w="87"/><text x="35.6089%" y="543.50"></text></g><g><title>__x64_sys_futex (90 samples, 0.02%)</title><rect x="35.3584%" y="549" width="0.0232%" height="15" fill="rgb(216,100,18)" fg:x="137142" fg:w="90"/><text x="35.6084%" y="559.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (105 samples, 0.03%)</title><rect x="35.3568%" y="629" width="0.0271%" height="15" fill="rgb(236,147,54)" fg:x="137136" fg:w="105"/><text x="35.6068%" y="639.50"></text></g><g><title>__futex_abstimed_wait_common (105 samples, 0.03%)</title><rect x="35.3568%" y="613" width="0.0271%" height="15" fill="rgb(205,143,26)" fg:x="137136" fg:w="105"/><text x="35.6068%" y="623.50"></text></g><g><title>__futex_abstimed_wait_common64 (105 samples, 0.03%)</title><rect x="35.3568%" y="597" width="0.0271%" height="15" fill="rgb(236,26,9)" fg:x="137136" fg:w="105"/><text x="35.6068%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (99 samples, 0.03%)</title><rect x="35.3584%" y="581" width="0.0255%" height="15" fill="rgb(221,165,53)" fg:x="137142" fg:w="99"/><text x="35.6084%" y="591.50"></text></g><g><title>do_syscall_64 (99 samples, 0.03%)</title><rect x="35.3584%" y="565" width="0.0255%" height="15" fill="rgb(214,110,17)" fg:x="137142" fg:w="99"/><text x="35.6084%" y="575.50"></text></g><g><title>___pthread_cond_timedwait64 (115 samples, 0.03%)</title><rect x="35.3550%" y="661" width="0.0296%" height="15" fill="rgb(237,197,12)" fg:x="137129" fg:w="115"/><text x="35.6050%" y="671.50"></text></g><g><title>__pthread_cond_wait_common (115 samples, 0.03%)</title><rect x="35.3550%" y="645" width="0.0296%" height="15" fill="rgb(205,84,17)" fg:x="137129" fg:w="115"/><text x="35.6050%" y="655.50"></text></g><g><title>Monitor::IWait (143 samples, 0.04%)</title><rect x="35.3522%" y="693" width="0.0369%" height="15" fill="rgb(237,18,45)" fg:x="137118" fg:w="143"/><text x="35.6022%" y="703.50"></text></g><g><title>os::PlatformEvent::park (136 samples, 0.04%)</title><rect x="35.3540%" y="677" width="0.0351%" height="15" fill="rgb(221,87,14)" fg:x="137125" fg:w="136"/><text x="35.6040%" y="687.50"></text></g><g><title>Monitor::wait (145 samples, 0.04%)</title><rect x="35.3519%" y="709" width="0.0374%" height="15" fill="rgb(238,186,15)" fg:x="137117" fg:w="145"/><text x="35.6019%" y="719.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (128 samples, 0.03%)</title><rect x="35.3976%" y="661" width="0.0330%" height="15" fill="rgb(208,115,11)" fg:x="137294" fg:w="128"/><text x="35.6476%" y="671.50"></text></g><g><title>NMethodSweeper::process_compiled_method (161 samples, 0.04%)</title><rect x="35.3973%" y="677" width="0.0415%" height="15" fill="rgb(254,175,0)" fg:x="137293" fg:w="161"/><text x="35.6473%" y="687.50"></text></g><g><title>NMethodSweeper::possibly_sweep (195 samples, 0.05%)</title><rect x="35.3893%" y="709" width="0.0503%" height="15" fill="rgb(227,24,42)" fg:x="137262" fg:w="195"/><text x="35.6393%" y="719.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (192 samples, 0.05%)</title><rect x="35.3901%" y="693" width="0.0495%" height="15" fill="rgb(223,211,37)" fg:x="137265" fg:w="192"/><text x="35.6401%" y="703.50"></text></g><g><title>NMethodSweeper::sweeper_loop (349 samples, 0.09%)</title><rect x="35.3499%" y="725" width="0.0900%" height="15" fill="rgb(235,49,27)" fg:x="137109" fg:w="349"/><text x="35.5999%" y="735.50"></text></g><g><title>__clone3 (350 samples, 0.09%)</title><rect x="35.3499%" y="805" width="0.0902%" height="15" fill="rgb(254,97,51)" fg:x="137109" fg:w="350"/><text x="35.5999%" y="815.50"></text></g><g><title>start_thread (350 samples, 0.09%)</title><rect x="35.3499%" y="789" width="0.0902%" height="15" fill="rgb(249,51,40)" fg:x="137109" fg:w="350"/><text x="35.5999%" y="799.50"></text></g><g><title>thread_native_entry (350 samples, 0.09%)</title><rect x="35.3499%" y="773" width="0.0902%" height="15" fill="rgb(210,128,45)" fg:x="137109" fg:w="350"/><text x="35.5999%" y="783.50"></text></g><g><title>Thread::call_run (350 samples, 0.09%)</title><rect x="35.3499%" y="757" width="0.0902%" height="15" fill="rgb(224,137,50)" fg:x="137109" fg:w="350"/><text x="35.5999%" y="767.50"></text></g><g><title>JavaThread::thread_main_inner (350 samples, 0.09%)</title><rect x="35.3499%" y="741" width="0.0902%" height="15" fill="rgb(242,15,9)" fg:x="137109" fg:w="350"/><text x="35.5999%" y="751.50"></text></g><g><title>Sweeper_thread (370 samples, 0.10%)</title><rect x="35.3450%" y="821" width="0.0954%" height="15" fill="rgb(233,187,41)" fg:x="137090" fg:w="370"/><text x="35.5950%" y="831.50"></text></g><g><title>[perf-742530.map] (233 samples, 0.06%)</title><rect x="35.4429%" y="805" width="0.0601%" height="15" fill="rgb(227,2,29)" fg:x="137470" fg:w="233"/><text x="35.6929%" y="815.50"></text></g><g><title>Thread-0 (262 samples, 0.07%)</title><rect x="35.4403%" y="821" width="0.0675%" height="15" fill="rgb(222,70,3)" fg:x="137460" fg:w="262"/><text x="35.6903%" y="831.50"></text></g><g><title>[unknown] (97 samples, 0.03%)</title><rect x="35.5210%" y="805" width="0.0250%" height="15" fill="rgb(213,11,42)" fg:x="137773" fg:w="97"/><text x="35.7710%" y="815.50"></text></g><g><title>vframe::sender (93 samples, 0.02%)</title><rect x="35.5221%" y="789" width="0.0240%" height="15" fill="rgb(225,150,9)" fg:x="137777" fg:w="93"/><text x="35.7721%" y="799.50"></text></g><g><title>WorkGang::run_task (39 samples, 0.01%)</title><rect x="35.6665%" y="677" width="0.0101%" height="15" fill="rgb(230,162,45)" fg:x="138337" fg:w="39"/><text x="35.9165%" y="687.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (39 samples, 0.01%)</title><rect x="35.6665%" y="661" width="0.0101%" height="15" fill="rgb(222,14,52)" fg:x="138337" fg:w="39"/><text x="35.9165%" y="671.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (42 samples, 0.01%)</title><rect x="35.6659%" y="693" width="0.0108%" height="15" fill="rgb(254,198,14)" fg:x="138335" fg:w="42"/><text x="35.9159%" y="703.50"></text></g><g><title>__x64_sys_sched_yield (42 samples, 0.01%)</title><rect x="35.6842%" y="645" width="0.0108%" height="15" fill="rgb(220,217,30)" fg:x="138406" fg:w="42"/><text x="35.9342%" y="655.50"></text></g><g><title>do_sched_yield (42 samples, 0.01%)</title><rect x="35.6842%" y="629" width="0.0108%" height="15" fill="rgb(215,146,41)" fg:x="138406" fg:w="42"/><text x="35.9342%" y="639.50"></text></g><g><title>do_syscall_64 (49 samples, 0.01%)</title><rect x="35.6840%" y="661" width="0.0126%" height="15" fill="rgb(217,27,36)" fg:x="138405" fg:w="49"/><text x="35.9340%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (52 samples, 0.01%)</title><rect x="35.6835%" y="677" width="0.0134%" height="15" fill="rgb(219,218,39)" fg:x="138403" fg:w="52"/><text x="35.9335%" y="687.50"></text></g><g><title>__GI___sched_yield (61 samples, 0.02%)</title><rect x="35.6814%" y="693" width="0.0157%" height="15" fill="rgb(219,4,42)" fg:x="138395" fg:w="61"/><text x="35.9314%" y="703.50"></text></g><g><title>SafepointSynchronize::begin (558 samples, 0.14%)</title><rect x="35.5540%" y="709" width="0.1439%" height="15" fill="rgb(249,119,36)" fg:x="137901" fg:w="558"/><text x="35.8040%" y="719.50"></text></g><g><title>SpinPause (43 samples, 0.01%)</title><rect x="35.7005%" y="709" width="0.0111%" height="15" fill="rgb(209,23,33)" fg:x="138469" fg:w="43"/><text x="35.9505%" y="719.50"></text></g><g><title>VM_Deoptimize::doit (40 samples, 0.01%)</title><rect x="35.7173%" y="677" width="0.0103%" height="15" fill="rgb(211,10,0)" fg:x="138534" fg:w="40"/><text x="35.9673%" y="687.50"></text></g><g><title>VMThread::evaluate_operation (106 samples, 0.03%)</title><rect x="35.7116%" y="709" width="0.0273%" height="15" fill="rgb(208,99,37)" fg:x="138512" fg:w="106"/><text x="35.9616%" y="719.50"></text></g><g><title>VM_Operation::evaluate (105 samples, 0.03%)</title><rect x="35.7118%" y="693" width="0.0271%" height="15" fill="rgb(213,132,31)" fg:x="138513" fg:w="105"/><text x="35.9618%" y="703.50"></text></g><g><title>Thread::call_run (753 samples, 0.19%)</title><rect x="35.5461%" y="757" width="0.1941%" height="15" fill="rgb(243,129,40)" fg:x="137870" fg:w="753"/><text x="35.7961%" y="767.50"></text></g><g><title>VMThread::run (753 samples, 0.19%)</title><rect x="35.5461%" y="741" width="0.1941%" height="15" fill="rgb(210,66,33)" fg:x="137870" fg:w="753"/><text x="35.7961%" y="751.50"></text></g><g><title>VMThread::loop (753 samples, 0.19%)</title><rect x="35.5461%" y="725" width="0.1941%" height="15" fill="rgb(209,189,4)" fg:x="137870" fg:w="753"/><text x="35.7961%" y="735.50"></text></g><g><title>__clone3 (754 samples, 0.19%)</title><rect x="35.5461%" y="805" width="0.1944%" height="15" fill="rgb(214,107,37)" fg:x="137870" fg:w="754"/><text x="35.7961%" y="815.50"></text></g><g><title>start_thread (754 samples, 0.19%)</title><rect x="35.5461%" y="789" width="0.1944%" height="15" fill="rgb(245,88,54)" fg:x="137870" fg:w="754"/><text x="35.7961%" y="799.50"></text></g><g><title>thread_native_entry (754 samples, 0.19%)</title><rect x="35.5461%" y="773" width="0.1944%" height="15" fill="rgb(205,146,20)" fg:x="137870" fg:w="754"/><text x="35.7961%" y="783.50"></text></g><g><title>VM_Thread (879 samples, 0.23%)</title><rect x="35.5149%" y="821" width="0.2266%" height="15" fill="rgb(220,161,25)" fg:x="137749" fg:w="879"/><text x="35.7649%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.01%)</title><rect x="35.8108%" y="613" width="0.0126%" height="15" fill="rgb(215,152,15)" fg:x="138897" fg:w="49"/><text x="36.0608%" y="623.50"></text></g><g><title>x86_pmu_enable (48 samples, 0.01%)</title><rect x="35.8111%" y="597" width="0.0124%" height="15" fill="rgb(233,192,44)" fg:x="138898" fg:w="48"/><text x="36.0611%" y="607.50"></text></g><g><title>intel_pmu_enable_all (48 samples, 0.01%)</title><rect x="35.8111%" y="581" width="0.0124%" height="15" fill="rgb(240,170,46)" fg:x="138898" fg:w="48"/><text x="36.0611%" y="591.50"></text></g><g><title>native_write_msr (47 samples, 0.01%)</title><rect x="35.8114%" y="565" width="0.0121%" height="15" fill="rgb(207,104,33)" fg:x="138899" fg:w="47"/><text x="36.0614%" y="575.50"></text></g><g><title>finish_task_switch.isra.0 (51 samples, 0.01%)</title><rect x="35.8106%" y="629" width="0.0131%" height="15" fill="rgb(219,21,39)" fg:x="138896" fg:w="51"/><text x="36.0606%" y="639.50"></text></g><g><title>schedule_hrtimeout_range (64 samples, 0.02%)</title><rect x="35.8083%" y="693" width="0.0165%" height="15" fill="rgb(214,133,29)" fg:x="138887" fg:w="64"/><text x="36.0583%" y="703.50"></text></g><g><title>schedule_hrtimeout_range_clock (64 samples, 0.02%)</title><rect x="35.8083%" y="677" width="0.0165%" height="15" fill="rgb(226,93,6)" fg:x="138887" fg:w="64"/><text x="36.0583%" y="687.50"></text></g><g><title>schedule (61 samples, 0.02%)</title><rect x="35.8090%" y="661" width="0.0157%" height="15" fill="rgb(252,222,34)" fg:x="138890" fg:w="61"/><text x="36.0590%" y="671.50"></text></g><g><title>__schedule (61 samples, 0.02%)</title><rect x="35.8090%" y="645" width="0.0157%" height="15" fill="rgb(252,92,48)" fg:x="138890" fg:w="61"/><text x="36.0590%" y="655.50"></text></g><g><title>__x64_sys_epoll_pwait (70 samples, 0.02%)</title><rect x="35.8070%" y="757" width="0.0180%" height="15" fill="rgb(245,223,24)" fg:x="138882" fg:w="70"/><text x="36.0570%" y="767.50"></text></g><g><title>do_epoll_pwait.part.0 (70 samples, 0.02%)</title><rect x="35.8070%" y="741" width="0.0180%" height="15" fill="rgb(205,176,3)" fg:x="138882" fg:w="70"/><text x="36.0570%" y="751.50"></text></g><g><title>do_epoll_wait (70 samples, 0.02%)</title><rect x="35.8070%" y="725" width="0.0180%" height="15" fill="rgb(235,151,15)" fg:x="138882" fg:w="70"/><text x="36.0570%" y="735.50"></text></g><g><title>ep_poll (68 samples, 0.02%)</title><rect x="35.8075%" y="709" width="0.0175%" height="15" fill="rgb(237,209,11)" fg:x="138884" fg:w="68"/><text x="36.0575%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (109 samples, 0.03%)</title><rect x="35.8302%" y="645" width="0.0281%" height="15" fill="rgb(243,227,24)" fg:x="138972" fg:w="109"/><text x="36.0802%" y="655.50"></text></g><g><title>x86_pmu_enable (108 samples, 0.03%)</title><rect x="35.8304%" y="629" width="0.0278%" height="15" fill="rgb(239,193,16)" fg:x="138973" fg:w="108"/><text x="36.0804%" y="639.50"></text></g><g><title>intel_pmu_enable_all (107 samples, 0.03%)</title><rect x="35.8307%" y="613" width="0.0276%" height="15" fill="rgb(231,27,9)" fg:x="138974" fg:w="107"/><text x="36.0807%" y="623.50"></text></g><g><title>native_write_msr (107 samples, 0.03%)</title><rect x="35.8307%" y="597" width="0.0276%" height="15" fill="rgb(219,169,10)" fg:x="138974" fg:w="107"/><text x="36.0807%" y="607.50"></text></g><g><title>finish_task_switch.isra.0 (115 samples, 0.03%)</title><rect x="35.8297%" y="661" width="0.0296%" height="15" fill="rgb(244,229,43)" fg:x="138970" fg:w="115"/><text x="36.0797%" y="671.50"></text></g><g><title>futex_wait (137 samples, 0.04%)</title><rect x="35.8261%" y="725" width="0.0353%" height="15" fill="rgb(254,38,20)" fg:x="138956" fg:w="137"/><text x="36.0761%" y="735.50"></text></g><g><title>futex_wait_queue_me (135 samples, 0.03%)</title><rect x="35.8266%" y="709" width="0.0348%" height="15" fill="rgb(250,47,30)" fg:x="138958" fg:w="135"/><text x="36.0766%" y="719.50"></text></g><g><title>schedule (134 samples, 0.03%)</title><rect x="35.8268%" y="693" width="0.0345%" height="15" fill="rgb(224,124,36)" fg:x="138959" fg:w="134"/><text x="36.0768%" y="703.50"></text></g><g><title>__schedule (133 samples, 0.03%)</title><rect x="35.8271%" y="677" width="0.0343%" height="15" fill="rgb(246,68,51)" fg:x="138960" fg:w="133"/><text x="36.0771%" y="687.50"></text></g><g><title>__x64_sys_futex (145 samples, 0.04%)</title><rect x="35.8253%" y="757" width="0.0374%" height="15" fill="rgb(253,43,49)" fg:x="138953" fg:w="145"/><text x="36.0753%" y="767.50"></text></g><g><title>do_futex (143 samples, 0.04%)</title><rect x="35.8258%" y="741" width="0.0369%" height="15" fill="rgb(219,54,36)" fg:x="138955" fg:w="143"/><text x="36.0758%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (275 samples, 0.07%)</title><rect x="35.8059%" y="789" width="0.0709%" height="15" fill="rgb(227,133,34)" fg:x="138878" fg:w="275"/><text x="36.0559%" y="799.50"></text></g><g><title>do_syscall_64 (273 samples, 0.07%)</title><rect x="35.8065%" y="773" width="0.0704%" height="15" fill="rgb(247,227,15)" fg:x="138880" fg:w="273"/><text x="36.0565%" y="783.50"></text></g><g><title>schedule_tail (40 samples, 0.01%)</title><rect x="35.8768%" y="773" width="0.0103%" height="15" fill="rgb(229,96,14)" fg:x="139153" fg:w="40"/><text x="36.1268%" y="783.50"></text></g><g><title>finish_task_switch.isra.0 (40 samples, 0.01%)</title><rect x="35.8768%" y="757" width="0.0103%" height="15" fill="rgb(220,79,17)" fg:x="139153" fg:w="40"/><text x="36.1268%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="35.8768%" y="741" width="0.0103%" height="15" fill="rgb(205,131,53)" fg:x="139153" fg:w="40"/><text x="36.1268%" y="751.50"></text></g><g><title>ret_from_fork (41 samples, 0.01%)</title><rect x="35.8768%" y="789" width="0.0106%" height="15" fill="rgb(209,50,29)" fg:x="139153" fg:w="41"/><text x="36.1268%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (558 samples, 0.14%)</title><rect x="35.7438%" y="805" width="0.1439%" height="15" fill="rgb(245,86,46)" fg:x="138637" fg:w="558"/><text x="35.9938%" y="815.50"></text></g><g><title>bazel (597 samples, 0.15%)</title><rect x="35.7435%" y="821" width="0.1539%" height="15" fill="rgb(235,66,46)" fg:x="138636" fg:w="597"/><text x="35.9935%" y="831.50"></text></g><g><title>RunfilesCreator::ReadManifest (58 samples, 0.01%)</title><rect x="35.9044%" y="789" width="0.0150%" height="15" fill="rgb(232,148,31)" fg:x="139260" fg:w="58"/><text x="36.1544%" y="799.50"></text></g><g><title>[unknown] (62 samples, 0.02%)</title><rect x="35.9044%" y="805" width="0.0160%" height="15" fill="rgb(217,149,8)" fg:x="139260" fg:w="62"/><text x="36.1544%" y="815.50"></text></g><g><title>btrfs_log_new_name (53 samples, 0.01%)</title><rect x="35.9403%" y="581" width="0.0137%" height="15" fill="rgb(209,183,11)" fg:x="139399" fg:w="53"/><text x="36.1903%" y="591.50"></text></g><g><title>btrfs_log_inode_parent (53 samples, 0.01%)</title><rect x="35.9403%" y="565" width="0.0137%" height="15" fill="rgb(208,55,20)" fg:x="139399" fg:w="53"/><text x="36.1903%" y="575.50"></text></g><g><title>log_all_new_ancestors (46 samples, 0.01%)</title><rect x="35.9421%" y="549" width="0.0119%" height="15" fill="rgb(218,39,14)" fg:x="139406" fg:w="46"/><text x="36.1921%" y="559.50"></text></g><g><title>btrfs_log_inode (44 samples, 0.01%)</title><rect x="35.9426%" y="533" width="0.0113%" height="15" fill="rgb(216,169,33)" fg:x="139408" fg:w="44"/><text x="36.1926%" y="543.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (102 samples, 0.03%)</title><rect x="35.9279%" y="741" width="0.0263%" height="15" fill="rgb(233,80,24)" fg:x="139351" fg:w="102"/><text x="36.1779%" y="751.50"></text></g><g><title>rename (69 samples, 0.02%)</title><rect x="35.9364%" y="725" width="0.0178%" height="15" fill="rgb(213,179,31)" fg:x="139384" fg:w="69"/><text x="36.1864%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (69 samples, 0.02%)</title><rect x="35.9364%" y="709" width="0.0178%" height="15" fill="rgb(209,19,5)" fg:x="139384" fg:w="69"/><text x="36.1864%" y="719.50"></text></g><g><title>do_syscall_64 (69 samples, 0.02%)</title><rect x="35.9364%" y="693" width="0.0178%" height="15" fill="rgb(219,18,35)" fg:x="139384" fg:w="69"/><text x="36.1864%" y="703.50"></text></g><g><title>unload_network_ops_symbols (69 samples, 0.02%)</title><rect x="35.9364%" y="677" width="0.0178%" height="15" fill="rgb(209,169,16)" fg:x="139384" fg:w="69"/><text x="36.1864%" y="687.50"></text></g><g><title>__x64_sys_rename (69 samples, 0.02%)</title><rect x="35.9364%" y="661" width="0.0178%" height="15" fill="rgb(245,90,51)" fg:x="139384" fg:w="69"/><text x="36.1864%" y="671.50"></text></g><g><title>do_renameat2 (68 samples, 0.02%)</title><rect x="35.9367%" y="645" width="0.0175%" height="15" fill="rgb(220,99,45)" fg:x="139385" fg:w="68"/><text x="36.1867%" y="655.50"></text></g><g><title>vfs_rename (67 samples, 0.02%)</title><rect x="35.9369%" y="629" width="0.0173%" height="15" fill="rgb(249,89,25)" fg:x="139386" fg:w="67"/><text x="36.1869%" y="639.50"></text></g><g><title>btrfs_rename2 (66 samples, 0.02%)</title><rect x="35.9372%" y="613" width="0.0170%" height="15" fill="rgb(239,193,0)" fg:x="139387" fg:w="66"/><text x="36.1872%" y="623.50"></text></g><g><title>btrfs_rename (66 samples, 0.02%)</title><rect x="35.9372%" y="597" width="0.0170%" height="15" fill="rgb(231,126,1)" fg:x="139387" fg:w="66"/><text x="36.1872%" y="607.50"></text></g><g><title>__libc_start_call_main (125 samples, 0.03%)</title><rect x="35.9243%" y="773" width="0.0322%" height="15" fill="rgb(243,166,3)" fg:x="139337" fg:w="125"/><text x="36.1743%" y="783.50"></text></g><g><title>main (111 samples, 0.03%)</title><rect x="35.9279%" y="757" width="0.0286%" height="15" fill="rgb(223,22,34)" fg:x="139351" fg:w="111"/><text x="36.1779%" y="767.50"></text></g><g><title>__libc_start_main_impl (126 samples, 0.03%)</title><rect x="35.9243%" y="789" width="0.0325%" height="15" fill="rgb(251,52,51)" fg:x="139337" fg:w="126"/><text x="36.1743%" y="799.50"></text></g><g><title>_dl_map_segments (40 samples, 0.01%)</title><rect x="35.9663%" y="645" width="0.0103%" height="15" fill="rgb(221,165,28)" fg:x="139500" fg:w="40"/><text x="36.2163%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (56 samples, 0.01%)</title><rect x="35.9653%" y="661" width="0.0144%" height="15" fill="rgb(218,121,47)" fg:x="139496" fg:w="56"/><text x="36.2153%" y="671.50"></text></g><g><title>_dl_map_object_deps (101 samples, 0.03%)</title><rect x="35.9601%" y="725" width="0.0260%" height="15" fill="rgb(209,120,9)" fg:x="139476" fg:w="101"/><text x="36.2101%" y="735.50"></text></g><g><title>_dl_catch_exception (101 samples, 0.03%)</title><rect x="35.9601%" y="709" width="0.0260%" height="15" fill="rgb(236,68,12)" fg:x="139476" fg:w="101"/><text x="36.2101%" y="719.50"></text></g><g><title>openaux (101 samples, 0.03%)</title><rect x="35.9601%" y="693" width="0.0260%" height="15" fill="rgb(225,194,26)" fg:x="139476" fg:w="101"/><text x="36.2101%" y="703.50"></text></g><g><title>_dl_map_object (101 samples, 0.03%)</title><rect x="35.9601%" y="677" width="0.0260%" height="15" fill="rgb(231,84,39)" fg:x="139476" fg:w="101"/><text x="36.2101%" y="687.50"></text></g><g><title>dl_new_hash (50 samples, 0.01%)</title><rect x="36.0096%" y="661" width="0.0129%" height="15" fill="rgb(210,11,45)" fg:x="139668" fg:w="50"/><text x="36.2596%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (140 samples, 0.04%)</title><rect x="36.0065%" y="677" width="0.0361%" height="15" fill="rgb(224,54,52)" fg:x="139656" fg:w="140"/><text x="36.2565%" y="687.50"></text></g><g><title>do_lookup_x (78 samples, 0.02%)</title><rect x="36.0225%" y="661" width="0.0201%" height="15" fill="rgb(238,102,14)" fg:x="139718" fg:w="78"/><text x="36.2725%" y="671.50"></text></g><g><title>elf_machine_rela (179 samples, 0.05%)</title><rect x="35.9972%" y="693" width="0.0462%" height="15" fill="rgb(243,160,52)" fg:x="139620" fg:w="179"/><text x="36.2472%" y="703.50"></text></g><g><title>_dl_relocate_object (226 samples, 0.06%)</title><rect x="35.9882%" y="725" width="0.0583%" height="15" fill="rgb(216,114,19)" fg:x="139585" fg:w="226"/><text x="36.2382%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (213 samples, 0.05%)</title><rect x="35.9916%" y="709" width="0.0549%" height="15" fill="rgb(244,166,37)" fg:x="139598" fg:w="213"/><text x="36.2416%" y="719.50"></text></g><g><title>dl_main (360 samples, 0.09%)</title><rect x="35.9573%" y="741" width="0.0928%" height="15" fill="rgb(246,29,44)" fg:x="139465" fg:w="360"/><text x="36.2073%" y="751.50"></text></g><g><title>_dl_start_final (368 samples, 0.09%)</title><rect x="35.9570%" y="773" width="0.0949%" height="15" fill="rgb(215,56,53)" fg:x="139464" fg:w="368"/><text x="36.2070%" y="783.50"></text></g><g><title>_dl_sysdep_start (368 samples, 0.09%)</title><rect x="35.9570%" y="757" width="0.0949%" height="15" fill="rgb(217,60,2)" fg:x="139464" fg:w="368"/><text x="36.2070%" y="767.50"></text></g><g><title>_dl_start (370 samples, 0.10%)</title><rect x="35.9568%" y="789" width="0.0954%" height="15" fill="rgb(207,26,24)" fg:x="139463" fg:w="370"/><text x="36.2068%" y="799.50"></text></g><g><title>_start (501 samples, 0.13%)</title><rect x="35.9243%" y="805" width="0.1292%" height="15" fill="rgb(252,210,15)" fg:x="139337" fg:w="501"/><text x="36.1743%" y="815.50"></text></g><g><title>exit_mm (46 samples, 0.01%)</title><rect x="36.0622%" y="725" width="0.0119%" height="15" fill="rgb(253,209,26)" fg:x="139872" fg:w="46"/><text x="36.3122%" y="735.50"></text></g><g><title>mmput (46 samples, 0.01%)</title><rect x="36.0622%" y="709" width="0.0119%" height="15" fill="rgb(238,170,14)" fg:x="139872" fg:w="46"/><text x="36.3122%" y="719.50"></text></g><g><title>exit_mmap (46 samples, 0.01%)</title><rect x="36.0622%" y="693" width="0.0119%" height="15" fill="rgb(216,178,15)" fg:x="139872" fg:w="46"/><text x="36.3122%" y="703.50"></text></g><g><title>build-runfiles (693 samples, 0.18%)</title><rect x="35.8975%" y="821" width="0.1787%" height="15" fill="rgb(250,197,2)" fg:x="139233" fg:w="693"/><text x="36.1475%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.02%)</title><rect x="36.0553%" y="805" width="0.0209%" height="15" fill="rgb(212,70,42)" fg:x="139845" fg:w="81"/><text x="36.3053%" y="815.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="36.0553%" y="789" width="0.0209%" height="15" fill="rgb(227,213,9)" fg:x="139845" fg:w="81"/><text x="36.3053%" y="799.50"></text></g><g><title>__x64_sys_exit_group (57 samples, 0.01%)</title><rect x="36.0614%" y="773" width="0.0147%" height="15" fill="rgb(245,99,25)" fg:x="139869" fg:w="57"/><text x="36.3114%" y="783.50"></text></g><g><title>do_group_exit (57 samples, 0.01%)</title><rect x="36.0614%" y="757" width="0.0147%" height="15" fill="rgb(250,82,29)" fg:x="139869" fg:w="57"/><text x="36.3114%" y="767.50"></text></g><g><title>do_exit (57 samples, 0.01%)</title><rect x="36.0614%" y="741" width="0.0147%" height="15" fill="rgb(241,226,54)" fg:x="139869" fg:w="57"/><text x="36.3114%" y="751.50"></text></g><g><title>getpwuid (77 samples, 0.02%)</title><rect x="36.1048%" y="693" width="0.0199%" height="15" fill="rgb(221,99,41)" fg:x="140037" fg:w="77"/><text x="36.3548%" y="703.50"></text></g><g><title>__getpwuid_r (77 samples, 0.02%)</title><rect x="36.1048%" y="677" width="0.0199%" height="15" fill="rgb(213,90,21)" fg:x="140037" fg:w="77"/><text x="36.3548%" y="687.50"></text></g><g><title>[bash] (96 samples, 0.02%)</title><rect x="36.1011%" y="709" width="0.0248%" height="15" fill="rgb(205,208,24)" fg:x="140023" fg:w="96"/><text x="36.3511%" y="719.50"></text></g><g><title>initialize_shell_variables (125 samples, 0.03%)</title><rect x="36.1011%" y="725" width="0.0322%" height="15" fill="rgb(246,31,12)" fg:x="140023" fg:w="125"/><text x="36.3511%" y="735.50"></text></g><g><title>[bash] (186 samples, 0.05%)</title><rect x="36.0895%" y="741" width="0.0480%" height="15" fill="rgb(213,154,6)" fg:x="139978" fg:w="186"/><text x="36.3395%" y="751.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (135 samples, 0.03%)</title><rect x="36.1798%" y="261" width="0.0348%" height="15" fill="rgb(222,163,29)" fg:x="140328" fg:w="135"/><text x="36.4298%" y="271.50"></text></g><g><title>_ZdlPv (133 samples, 0.03%)</title><rect x="36.1803%" y="245" width="0.0343%" height="15" fill="rgb(227,201,8)" fg:x="140330" fg:w="133"/><text x="36.4303%" y="255.50"></text></g><g><title>_ZdlPv (130 samples, 0.03%)</title><rect x="36.1811%" y="229" width="0.0335%" height="15" fill="rgb(233,9,32)" fg:x="140333" fg:w="130"/><text x="36.4311%" y="239.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (128 samples, 0.03%)</title><rect x="36.1816%" y="213" width="0.0330%" height="15" fill="rgb(217,54,24)" fg:x="140335" fg:w="128"/><text x="36.4316%" y="223.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (114 samples, 0.03%)</title><rect x="36.1852%" y="197" width="0.0294%" height="15" fill="rgb(235,192,0)" fg:x="140349" fg:w="114"/><text x="36.4352%" y="207.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (173 samples, 0.04%)</title><rect x="36.1782%" y="277" width="0.0446%" height="15" fill="rgb(235,45,9)" fg:x="140322" fg:w="173"/><text x="36.4282%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (186 samples, 0.05%)</title><rect x="36.1754%" y="293" width="0.0480%" height="15" fill="rgb(246,42,40)" fg:x="140311" fg:w="186"/><text x="36.4254%" y="303.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="36.2275%" y="213" width="0.0134%" height="15" fill="rgb(248,111,24)" fg:x="140513" fg:w="52"/><text x="36.4775%" y="223.50"></text></g><g><title>_ZdlPv (64 samples, 0.02%)</title><rect x="36.2265%" y="229" width="0.0165%" height="15" fill="rgb(249,65,22)" fg:x="140509" fg:w="64"/><text x="36.4765%" y="239.50"></text></g><g><title>_ZdlPv (81 samples, 0.02%)</title><rect x="36.2252%" y="245" width="0.0209%" height="15" fill="rgb(238,111,51)" fg:x="140504" fg:w="81"/><text x="36.4752%" y="255.50"></text></g><g><title>_ZdlPv (90 samples, 0.02%)</title><rect x="36.2241%" y="277" width="0.0232%" height="15" fill="rgb(250,118,22)" fg:x="140500" fg:w="90"/><text x="36.4741%" y="287.50"></text></g><g><title>_ZdlPv (87 samples, 0.02%)</title><rect x="36.2249%" y="261" width="0.0224%" height="15" fill="rgb(234,84,26)" fg:x="140503" fg:w="87"/><text x="36.4749%" y="271.50"></text></g><g><title>_ZdlPv (109 samples, 0.03%)</title><rect x="36.2234%" y="293" width="0.0281%" height="15" fill="rgb(243,172,12)" fg:x="140497" fg:w="109"/><text x="36.4734%" y="303.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (46 samples, 0.01%)</title><rect x="36.2553%" y="245" width="0.0119%" height="15" fill="rgb(236,150,49)" fg:x="140621" fg:w="46"/><text x="36.5053%" y="255.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (43 samples, 0.01%)</title><rect x="36.2561%" y="229" width="0.0111%" height="15" fill="rgb(225,197,26)" fg:x="140624" fg:w="43"/><text x="36.5061%" y="239.50"></text></g><g><title>_ZdlPv (51 samples, 0.01%)</title><rect x="36.2546%" y="261" width="0.0131%" height="15" fill="rgb(214,17,42)" fg:x="140618" fg:w="51"/><text x="36.5046%" y="271.50"></text></g><g><title>_ZdlPv (53 samples, 0.01%)</title><rect x="36.2543%" y="277" width="0.0137%" height="15" fill="rgb(224,165,40)" fg:x="140617" fg:w="53"/><text x="36.5043%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (81 samples, 0.02%)</title><rect x="36.3012%" y="149" width="0.0209%" height="15" fill="rgb(246,100,4)" fg:x="140799" fg:w="81"/><text x="36.5512%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (79 samples, 0.02%)</title><rect x="36.3017%" y="133" width="0.0204%" height="15" fill="rgb(222,103,0)" fg:x="140801" fg:w="79"/><text x="36.5517%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (64 samples, 0.02%)</title><rect x="36.3056%" y="117" width="0.0165%" height="15" fill="rgb(227,189,26)" fg:x="140816" fg:w="64"/><text x="36.5556%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (41 samples, 0.01%)</title><rect x="36.3115%" y="101" width="0.0106%" height="15" fill="rgb(214,202,17)" fg:x="140839" fg:w="41"/><text x="36.5615%" y="111.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (40 samples, 0.01%)</title><rect x="36.3118%" y="85" width="0.0103%" height="15" fill="rgb(229,111,3)" fg:x="140840" fg:w="40"/><text x="36.5618%" y="95.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (110 samples, 0.03%)</title><rect x="36.2943%" y="181" width="0.0284%" height="15" fill="rgb(229,172,15)" fg:x="140772" fg:w="110"/><text x="36.5443%" y="191.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (94 samples, 0.02%)</title><rect x="36.2984%" y="165" width="0.0242%" height="15" fill="rgb(230,224,35)" fg:x="140788" fg:w="94"/><text x="36.5484%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (116 samples, 0.03%)</title><rect x="36.2930%" y="197" width="0.0299%" height="15" fill="rgb(251,141,6)" fg:x="140767" fg:w="116"/><text x="36.5430%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (136 samples, 0.04%)</title><rect x="36.2888%" y="213" width="0.0351%" height="15" fill="rgb(225,208,6)" fg:x="140751" fg:w="136"/><text x="36.5388%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (164 samples, 0.04%)</title><rect x="36.2821%" y="245" width="0.0423%" height="15" fill="rgb(246,181,16)" fg:x="140725" fg:w="164"/><text x="36.5321%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (144 samples, 0.04%)</title><rect x="36.2873%" y="229" width="0.0371%" height="15" fill="rgb(227,129,36)" fg:x="140745" fg:w="144"/><text x="36.5373%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (197 samples, 0.05%)</title><rect x="36.2757%" y="261" width="0.0508%" height="15" fill="rgb(248,117,24)" fg:x="140700" fg:w="197"/><text x="36.5257%" y="271.50"></text></g><g><title>_ZdlPv (613 samples, 0.16%)</title><rect x="36.1697%" y="341" width="0.1580%" height="15" fill="rgb(214,185,35)" fg:x="140289" fg:w="613"/><text x="36.4197%" y="351.50"></text></g><g><title>_ZdlPv (613 samples, 0.16%)</title><rect x="36.1697%" y="325" width="0.1580%" height="15" fill="rgb(236,150,34)" fg:x="140289" fg:w="613"/><text x="36.4197%" y="335.50"></text></g><g><title>_ZdlPv (608 samples, 0.16%)</title><rect x="36.1710%" y="309" width="0.1568%" height="15" fill="rgb(243,228,27)" fg:x="140294" fg:w="608"/><text x="36.4210%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (291 samples, 0.08%)</title><rect x="36.2527%" y="293" width="0.0750%" height="15" fill="rgb(245,77,44)" fg:x="140611" fg:w="291"/><text x="36.5027%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (230 samples, 0.06%)</title><rect x="36.2685%" y="277" width="0.0593%" height="15" fill="rgb(235,214,42)" fg:x="140672" fg:w="230"/><text x="36.5185%" y="287.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (44 samples, 0.01%)</title><rect x="36.3334%" y="229" width="0.0113%" height="15" fill="rgb(221,74,3)" fg:x="140924" fg:w="44"/><text x="36.5834%" y="239.50"></text></g><g><title>_ZdlPv (43 samples, 0.01%)</title><rect x="36.3337%" y="213" width="0.0111%" height="15" fill="rgb(206,121,29)" fg:x="140925" fg:w="43"/><text x="36.5837%" y="223.50"></text></g><g><title>_ZdlPv (43 samples, 0.01%)</title><rect x="36.3337%" y="197" width="0.0111%" height="15" fill="rgb(249,131,53)" fg:x="140925" fg:w="43"/><text x="36.5837%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (43 samples, 0.01%)</title><rect x="36.3337%" y="181" width="0.0111%" height="15" fill="rgb(236,170,29)" fg:x="140925" fg:w="43"/><text x="36.5837%" y="191.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (40 samples, 0.01%)</title><rect x="36.3345%" y="165" width="0.0103%" height="15" fill="rgb(247,96,15)" fg:x="140928" fg:w="40"/><text x="36.5845%" y="175.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (84 samples, 0.02%)</title><rect x="36.3322%" y="261" width="0.0217%" height="15" fill="rgb(211,210,7)" fg:x="140919" fg:w="84"/><text x="36.5822%" y="271.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (80 samples, 0.02%)</title><rect x="36.3332%" y="245" width="0.0206%" height="15" fill="rgb(240,88,50)" fg:x="140923" fg:w="80"/><text x="36.5832%" y="255.50"></text></g><g><title>_ZdlPv (49 samples, 0.01%)</title><rect x="36.3541%" y="261" width="0.0126%" height="15" fill="rgb(209,229,26)" fg:x="141004" fg:w="49"/><text x="36.6041%" y="271.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.02%)</title><rect x="36.3693%" y="197" width="0.0170%" height="15" fill="rgb(210,68,23)" fg:x="141063" fg:w="66"/><text x="36.6193%" y="207.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (73 samples, 0.02%)</title><rect x="36.3680%" y="213" width="0.0188%" height="15" fill="rgb(229,180,13)" fg:x="141058" fg:w="73"/><text x="36.6180%" y="223.50"></text></g><g><title>_ZdlPv (78 samples, 0.02%)</title><rect x="36.3677%" y="229" width="0.0201%" height="15" fill="rgb(236,53,44)" fg:x="141057" fg:w="78"/><text x="36.6177%" y="239.50"></text></g><g><title>_ZdlPv (79 samples, 0.02%)</title><rect x="36.3677%" y="245" width="0.0204%" height="15" fill="rgb(244,214,29)" fg:x="141057" fg:w="79"/><text x="36.6177%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (42 samples, 0.01%)</title><rect x="36.4092%" y="117" width="0.0108%" height="15" fill="rgb(220,75,29)" fg:x="141218" fg:w="42"/><text x="36.6592%" y="127.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (61 samples, 0.02%)</title><rect x="36.4046%" y="149" width="0.0157%" height="15" fill="rgb(214,183,37)" fg:x="141200" fg:w="61"/><text x="36.6546%" y="159.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (55 samples, 0.01%)</title><rect x="36.4062%" y="133" width="0.0142%" height="15" fill="rgb(239,117,29)" fg:x="141206" fg:w="55"/><text x="36.6562%" y="143.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (70 samples, 0.02%)</title><rect x="36.4031%" y="165" width="0.0180%" height="15" fill="rgb(237,171,35)" fg:x="141194" fg:w="70"/><text x="36.6531%" y="175.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (97 samples, 0.03%)</title><rect x="36.3966%" y="213" width="0.0250%" height="15" fill="rgb(229,178,53)" fg:x="141169" fg:w="97"/><text x="36.6466%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (81 samples, 0.02%)</title><rect x="36.4007%" y="197" width="0.0209%" height="15" fill="rgb(210,102,19)" fg:x="141185" fg:w="81"/><text x="36.6507%" y="207.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (77 samples, 0.02%)</title><rect x="36.4018%" y="181" width="0.0199%" height="15" fill="rgb(235,127,22)" fg:x="141189" fg:w="77"/><text x="36.6518%" y="191.50"></text></g><g><title>_ZdlPv (363 samples, 0.09%)</title><rect x="36.3283%" y="277" width="0.0936%" height="15" fill="rgb(244,31,31)" fg:x="140904" fg:w="363"/><text x="36.5783%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (212 samples, 0.05%)</title><rect x="36.3672%" y="261" width="0.0547%" height="15" fill="rgb(231,43,21)" fg:x="141055" fg:w="212"/><text x="36.6172%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (130 samples, 0.03%)</title><rect x="36.3884%" y="245" width="0.0335%" height="15" fill="rgb(217,131,35)" fg:x="141137" fg:w="130"/><text x="36.6384%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (115 samples, 0.03%)</title><rect x="36.3922%" y="229" width="0.0296%" height="15" fill="rgb(221,149,4)" fg:x="141152" fg:w="115"/><text x="36.6422%" y="239.50"></text></g><g><title>_ZdlPv (368 samples, 0.09%)</title><rect x="36.3278%" y="309" width="0.0949%" height="15" fill="rgb(232,170,28)" fg:x="140902" fg:w="368"/><text x="36.5778%" y="319.50"></text></g><g><title>_ZdlPv (368 samples, 0.09%)</title><rect x="36.3278%" y="293" width="0.0949%" height="15" fill="rgb(238,56,10)" fg:x="140902" fg:w="368"/><text x="36.5778%" y="303.50"></text></g><g><title>_ZdlPv (369 samples, 0.10%)</title><rect x="36.3278%" y="325" width="0.0951%" height="15" fill="rgb(235,196,14)" fg:x="140902" fg:w="369"/><text x="36.5778%" y="335.50"></text></g><g><title>cshook_security_sb_free_security (391 samples, 0.10%)</title><rect x="36.3278%" y="341" width="0.1008%" height="15" fill="rgb(216,45,48)" fg:x="140902" fg:w="391"/><text x="36.5778%" y="351.50"></text></g><g><title>cshook_security_file_permission (1,015 samples, 0.26%)</title><rect x="36.1692%" y="389" width="0.2617%" height="15" fill="rgb(238,213,17)" fg:x="140287" fg:w="1015"/><text x="36.4192%" y="399.50"></text></g><g><title>cshook_security_sb_free_security (1,015 samples, 0.26%)</title><rect x="36.1692%" y="373" width="0.2617%" height="15" fill="rgb(212,13,2)" fg:x="140287" fg:w="1015"/><text x="36.4192%" y="383.50"></text></g><g><title>cshook_security_sb_free_security (1,013 samples, 0.26%)</title><rect x="36.1697%" y="357" width="0.2612%" height="15" fill="rgb(240,114,20)" fg:x="140289" fg:w="1013"/><text x="36.4197%" y="367.50"></text></g><g><title>exec_binprm (1,048 samples, 0.27%)</title><rect x="36.1615%" y="485" width="0.2702%" height="15" fill="rgb(228,41,40)" fg:x="140257" fg:w="1048"/><text x="36.4115%" y="495.50"></text></g><g><title>search_binary_handler (1,048 samples, 0.27%)</title><rect x="36.1615%" y="469" width="0.2702%" height="15" fill="rgb(244,132,35)" fg:x="140257" fg:w="1048"/><text x="36.4115%" y="479.50"></text></g><g><title>security_bprm_check (1,024 samples, 0.26%)</title><rect x="36.1677%" y="453" width="0.2640%" height="15" fill="rgb(253,189,4)" fg:x="140281" fg:w="1024"/><text x="36.4177%" y="463.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,024 samples, 0.26%)</title><rect x="36.1677%" y="437" width="0.2640%" height="15" fill="rgb(224,37,19)" fg:x="140281" fg:w="1024"/><text x="36.4177%" y="447.50"></text></g><g><title>cshook_security_bprm_check_security (1,024 samples, 0.26%)</title><rect x="36.1677%" y="421" width="0.2640%" height="15" fill="rgb(235,223,18)" fg:x="140281" fg:w="1024"/><text x="36.4177%" y="431.50"></text></g><g><title>cshook_security_file_permission (1,023 samples, 0.26%)</title><rect x="36.1679%" y="405" width="0.2638%" height="15" fill="rgb(235,163,25)" fg:x="140282" fg:w="1023"/><text x="36.4179%" y="415.50"></text></g><g><title>bprm_execve.part.0 (1,070 samples, 0.28%)</title><rect x="36.1586%" y="501" width="0.2759%" height="15" fill="rgb(217,145,28)" fg:x="140246" fg:w="1070"/><text x="36.4086%" y="511.50"></text></g><g><title>bprm_execve (1,072 samples, 0.28%)</title><rect x="36.1584%" y="517" width="0.2764%" height="15" fill="rgb(223,223,32)" fg:x="140245" fg:w="1072"/><text x="36.4084%" y="527.50"></text></g><g><title>shell_execve (1,084 samples, 0.28%)</title><rect x="36.1574%" y="613" width="0.2795%" height="15" fill="rgb(227,189,39)" fg:x="140241" fg:w="1084"/><text x="36.4074%" y="623.50"></text></g><g><title>__GI_execve (1,084 samples, 0.28%)</title><rect x="36.1574%" y="597" width="0.2795%" height="15" fill="rgb(248,10,22)" fg:x="140241" fg:w="1084"/><text x="36.4074%" y="607.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,083 samples, 0.28%)</title><rect x="36.1576%" y="581" width="0.2792%" height="15" fill="rgb(248,46,39)" fg:x="140242" fg:w="1083"/><text x="36.4076%" y="591.50"></text></g><g><title>do_syscall_64 (1,083 samples, 0.28%)</title><rect x="36.1576%" y="565" width="0.2792%" height="15" fill="rgb(248,113,48)" fg:x="140242" fg:w="1083"/><text x="36.4076%" y="575.50"></text></g><g><title>__x64_sys_execve (1,083 samples, 0.28%)</title><rect x="36.1576%" y="549" width="0.2792%" height="15" fill="rgb(245,16,25)" fg:x="140242" fg:w="1083"/><text x="36.4076%" y="559.50"></text></g><g><title>do_execveat_common.isra.0 (1,083 samples, 0.28%)</title><rect x="36.1576%" y="533" width="0.2792%" height="15" fill="rgb(249,152,16)" fg:x="140242" fg:w="1083"/><text x="36.4076%" y="543.50"></text></g><g><title>exec_builtin (1,090 samples, 0.28%)</title><rect x="36.1563%" y="629" width="0.2810%" height="15" fill="rgb(250,16,1)" fg:x="140237" fg:w="1090"/><text x="36.4063%" y="639.50"></text></g><g><title>[bash] (1,105 samples, 0.28%)</title><rect x="36.1527%" y="645" width="0.2849%" height="15" fill="rgb(249,138,3)" fg:x="140223" fg:w="1105"/><text x="36.4027%" y="655.50"></text></g><g><title>[bash] (1,119 samples, 0.29%)</title><rect x="36.1527%" y="661" width="0.2885%" height="15" fill="rgb(227,71,41)" fg:x="140223" fg:w="1119"/><text x="36.4027%" y="671.50"></text></g><g><title>execute_command (1,123 samples, 0.29%)</title><rect x="36.1519%" y="725" width="0.2895%" height="15" fill="rgb(209,184,23)" fg:x="140220" fg:w="1123"/><text x="36.4019%" y="735.50"></text></g><g><title>execute_command_internal (1,123 samples, 0.29%)</title><rect x="36.1519%" y="709" width="0.2895%" height="15" fill="rgb(223,215,31)" fg:x="140220" fg:w="1123"/><text x="36.4019%" y="719.50"></text></g><g><title>execute_command (1,121 samples, 0.29%)</title><rect x="36.1525%" y="693" width="0.2890%" height="15" fill="rgb(210,146,28)" fg:x="140222" fg:w="1121"/><text x="36.4025%" y="703.50"></text></g><g><title>execute_command_internal (1,120 samples, 0.29%)</title><rect x="36.1527%" y="677" width="0.2888%" height="15" fill="rgb(209,183,41)" fg:x="140223" fg:w="1120"/><text x="36.4027%" y="687.50"></text></g><g><title>[bash] (48 samples, 0.01%)</title><rect x="36.4435%" y="677" width="0.0124%" height="15" fill="rgb(209,224,45)" fg:x="141351" fg:w="48"/><text x="36.6935%" y="687.50"></text></g><g><title>reader_loop (1,184 samples, 0.31%)</title><rect x="36.1517%" y="741" width="0.3053%" height="15" fill="rgb(224,209,51)" fg:x="140219" fg:w="1184"/><text x="36.4017%" y="751.50"></text></g><g><title>read_command (60 samples, 0.02%)</title><rect x="36.4415%" y="725" width="0.0155%" height="15" fill="rgb(223,17,39)" fg:x="141343" fg:w="60"/><text x="36.6915%" y="735.50"></text></g><g><title>parse_command (60 samples, 0.02%)</title><rect x="36.4415%" y="709" width="0.0155%" height="15" fill="rgb(234,204,37)" fg:x="141343" fg:w="60"/><text x="36.6915%" y="719.50"></text></g><g><title>yyparse (60 samples, 0.02%)</title><rect x="36.4415%" y="693" width="0.0155%" height="15" fill="rgb(236,120,5)" fg:x="141343" fg:w="60"/><text x="36.6915%" y="703.50"></text></g><g><title>__libc_start_call_main (1,479 samples, 0.38%)</title><rect x="36.0872%" y="773" width="0.3813%" height="15" fill="rgb(248,97,27)" fg:x="139969" fg:w="1479"/><text x="36.3372%" y="783.50"></text></g><g><title>main (1,479 samples, 0.38%)</title><rect x="36.0872%" y="757" width="0.3813%" height="15" fill="rgb(240,66,17)" fg:x="139969" fg:w="1479"/><text x="36.3372%" y="767.50"></text></g><g><title>__libc_start_main_impl (1,481 samples, 0.38%)</title><rect x="36.0870%" y="789" width="0.3818%" height="15" fill="rgb(210,79,3)" fg:x="139968" fg:w="1481"/><text x="36.3370%" y="799.50"></text></g><g><title>_dl_map_segments (42 samples, 0.01%)</title><rect x="36.4838%" y="645" width="0.0108%" height="15" fill="rgb(214,176,27)" fg:x="141507" fg:w="42"/><text x="36.7338%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (59 samples, 0.02%)</title><rect x="36.4827%" y="661" width="0.0152%" height="15" fill="rgb(235,185,3)" fg:x="141503" fg:w="59"/><text x="36.7327%" y="671.50"></text></g><g><title>_dl_map_object_deps (100 samples, 0.03%)</title><rect x="36.4755%" y="725" width="0.0258%" height="15" fill="rgb(227,24,12)" fg:x="141475" fg:w="100"/><text x="36.7255%" y="735.50"></text></g><g><title>_dl_catch_exception (95 samples, 0.02%)</title><rect x="36.4768%" y="709" width="0.0245%" height="15" fill="rgb(252,169,48)" fg:x="141480" fg:w="95"/><text x="36.7268%" y="719.50"></text></g><g><title>openaux (95 samples, 0.02%)</title><rect x="36.4768%" y="693" width="0.0245%" height="15" fill="rgb(212,65,1)" fg:x="141480" fg:w="95"/><text x="36.7268%" y="703.50"></text></g><g><title>_dl_map_object (95 samples, 0.02%)</title><rect x="36.4768%" y="677" width="0.0245%" height="15" fill="rgb(242,39,24)" fg:x="141480" fg:w="95"/><text x="36.7268%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (67 samples, 0.02%)</title><rect x="36.5147%" y="677" width="0.0173%" height="15" fill="rgb(249,32,23)" fg:x="141627" fg:w="67"/><text x="36.7647%" y="687.50"></text></g><g><title>do_lookup_x (45 samples, 0.01%)</title><rect x="36.5204%" y="661" width="0.0116%" height="15" fill="rgb(251,195,23)" fg:x="141649" fg:w="45"/><text x="36.7704%" y="671.50"></text></g><g><title>elf_machine_rela (82 samples, 0.02%)</title><rect x="36.5111%" y="693" width="0.0211%" height="15" fill="rgb(236,174,8)" fg:x="141613" fg:w="82"/><text x="36.7611%" y="703.50"></text></g><g><title>_dl_relocate_object (140 samples, 0.04%)</title><rect x="36.5039%" y="725" width="0.0361%" height="15" fill="rgb(220,197,8)" fg:x="141585" fg:w="140"/><text x="36.7539%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (121 samples, 0.03%)</title><rect x="36.5088%" y="709" width="0.0312%" height="15" fill="rgb(240,108,37)" fg:x="141604" fg:w="121"/><text x="36.7588%" y="719.50"></text></g><g><title>dl_main (308 samples, 0.08%)</title><rect x="36.4698%" y="741" width="0.0794%" height="15" fill="rgb(232,176,24)" fg:x="141453" fg:w="308"/><text x="36.7198%" y="751.50"></text></g><g><title>_dl_start_final (322 samples, 0.08%)</title><rect x="36.4691%" y="773" width="0.0830%" height="15" fill="rgb(243,35,29)" fg:x="141450" fg:w="322"/><text x="36.7191%" y="783.50"></text></g><g><title>_dl_sysdep_start (321 samples, 0.08%)</title><rect x="36.4693%" y="757" width="0.0828%" height="15" fill="rgb(210,37,18)" fg:x="141451" fg:w="321"/><text x="36.7193%" y="767.50"></text></g><g><title>_dl_start (327 samples, 0.08%)</title><rect x="36.4688%" y="789" width="0.0843%" height="15" fill="rgb(224,184,40)" fg:x="141449" fg:w="327"/><text x="36.7188%" y="799.50"></text></g><g><title>_start (1,819 samples, 0.47%)</title><rect x="36.0870%" y="805" width="0.4690%" height="15" fill="rgb(236,39,29)" fg:x="139968" fg:w="1819"/><text x="36.3370%" y="815.50"></text></g><g><title>mmput (91 samples, 0.02%)</title><rect x="36.5632%" y="629" width="0.0235%" height="15" fill="rgb(232,48,39)" fg:x="141815" fg:w="91"/><text x="36.8132%" y="639.50"></text></g><g><title>exit_mmap (90 samples, 0.02%)</title><rect x="36.5634%" y="613" width="0.0232%" height="15" fill="rgb(236,34,42)" fg:x="141816" fg:w="90"/><text x="36.8134%" y="623.50"></text></g><g><title>unmap_vmas (58 samples, 0.01%)</title><rect x="36.5717%" y="597" width="0.0150%" height="15" fill="rgb(243,106,37)" fg:x="141848" fg:w="58"/><text x="36.8217%" y="607.50"></text></g><g><title>unmap_single_vma (58 samples, 0.01%)</title><rect x="36.5717%" y="581" width="0.0150%" height="15" fill="rgb(218,96,6)" fg:x="141848" fg:w="58"/><text x="36.8217%" y="591.50"></text></g><g><title>unmap_page_range (57 samples, 0.01%)</title><rect x="36.5719%" y="565" width="0.0147%" height="15" fill="rgb(235,130,12)" fg:x="141849" fg:w="57"/><text x="36.8219%" y="575.50"></text></g><g><title>zap_pmd_range.isra.0 (57 samples, 0.01%)</title><rect x="36.5719%" y="549" width="0.0147%" height="15" fill="rgb(231,95,0)" fg:x="141849" fg:w="57"/><text x="36.8219%" y="559.50"></text></g><g><title>zap_pte_range (55 samples, 0.01%)</title><rect x="36.5724%" y="533" width="0.0142%" height="15" fill="rgb(228,12,23)" fg:x="141851" fg:w="55"/><text x="36.8224%" y="543.50"></text></g><g><title>exec_mmap (92 samples, 0.02%)</title><rect x="36.5632%" y="645" width="0.0237%" height="15" fill="rgb(216,12,1)" fg:x="141815" fg:w="92"/><text x="36.8132%" y="655.50"></text></g><g><title>begin_new_exec (97 samples, 0.03%)</title><rect x="36.5627%" y="661" width="0.0250%" height="15" fill="rgb(219,59,3)" fg:x="141813" fg:w="97"/><text x="36.8127%" y="671.50"></text></g><g><title>cc_wrapper.sh (2,019 samples, 0.52%)</title><rect x="36.0761%" y="821" width="0.5205%" height="15" fill="rgb(215,208,46)" fg:x="139926" fg:w="2019"/><text x="36.3261%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (135 samples, 0.03%)</title><rect x="36.5619%" y="805" width="0.0348%" height="15" fill="rgb(254,224,29)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="815.50"></text></g><g><title>do_syscall_64 (135 samples, 0.03%)</title><rect x="36.5619%" y="789" width="0.0348%" height="15" fill="rgb(232,14,29)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="799.50"></text></g><g><title>__x64_sys_execve (135 samples, 0.03%)</title><rect x="36.5619%" y="773" width="0.0348%" height="15" fill="rgb(208,45,52)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="783.50"></text></g><g><title>do_execveat_common.isra.0 (135 samples, 0.03%)</title><rect x="36.5619%" y="757" width="0.0348%" height="15" fill="rgb(234,191,28)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="767.50"></text></g><g><title>bprm_execve (135 samples, 0.03%)</title><rect x="36.5619%" y="741" width="0.0348%" height="15" fill="rgb(244,67,43)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="751.50"></text></g><g><title>bprm_execve.part.0 (135 samples, 0.03%)</title><rect x="36.5619%" y="725" width="0.0348%" height="15" fill="rgb(236,189,24)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="735.50"></text></g><g><title>exec_binprm (135 samples, 0.03%)</title><rect x="36.5619%" y="709" width="0.0348%" height="15" fill="rgb(239,214,33)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="719.50"></text></g><g><title>search_binary_handler (135 samples, 0.03%)</title><rect x="36.5619%" y="693" width="0.0348%" height="15" fill="rgb(226,176,41)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="703.50"></text></g><g><title>load_elf_binary (135 samples, 0.03%)</title><rect x="36.5619%" y="677" width="0.0348%" height="15" fill="rgb(248,47,8)" fg:x="141810" fg:w="135"/><text x="36.8119%" y="687.50"></text></g><g><title>[[heap]] (398 samples, 0.10%)</title><rect x="36.5972%" y="805" width="0.1026%" height="15" fill="rgb(218,81,44)" fg:x="141947" fg:w="398"/><text x="36.8472%" y="815.50"></text></g><g><title>[[stack]] (260 samples, 0.07%)</title><rect x="36.6998%" y="805" width="0.0670%" height="15" fill="rgb(213,98,6)" fg:x="142345" fg:w="260"/><text x="36.9498%" y="815.50"></text></g><g><title>[anon] (61 samples, 0.02%)</title><rect x="36.7705%" y="805" width="0.0157%" height="15" fill="rgb(222,85,22)" fg:x="142619" fg:w="61"/><text x="37.0205%" y="815.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (42 samples, 0.01%)</title><rect x="36.8104%" y="549" width="0.0108%" height="15" fill="rgb(239,46,39)" fg:x="142774" fg:w="42"/><text x="37.0604%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (42 samples, 0.01%)</title><rect x="36.8104%" y="533" width="0.0108%" height="15" fill="rgb(237,12,29)" fg:x="142774" fg:w="42"/><text x="37.0604%" y="543.50"></text></g><g><title>clang::Preprocessor::CachingLex (42 samples, 0.01%)</title><rect x="36.8104%" y="517" width="0.0108%" height="15" fill="rgb(214,77,8)" fg:x="142774" fg:w="42"/><text x="37.0604%" y="527.50"></text></g><g><title>clang::Preprocessor::Lex (42 samples, 0.01%)</title><rect x="36.8104%" y="501" width="0.0108%" height="15" fill="rgb(217,168,37)" fg:x="142774" fg:w="42"/><text x="37.0604%" y="511.50"></text></g><g><title>clang::Lexer::LexTokenInternal (42 samples, 0.01%)</title><rect x="36.8104%" y="485" width="0.0108%" height="15" fill="rgb(221,217,23)" fg:x="142774" fg:w="42"/><text x="37.0604%" y="495.50"></text></g><g><title>clang::Parser::ParseDeclGroup (44 samples, 0.01%)</title><rect x="36.8104%" y="565" width="0.0113%" height="15" fill="rgb(243,229,36)" fg:x="142774" fg:w="44"/><text x="37.0604%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclaration (47 samples, 0.01%)</title><rect x="36.8104%" y="597" width="0.0121%" height="15" fill="rgb(251,163,40)" fg:x="142774" fg:w="47"/><text x="37.0604%" y="607.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (47 samples, 0.01%)</title><rect x="36.8104%" y="581" width="0.0121%" height="15" fill="rgb(237,222,12)" fg:x="142774" fg:w="47"/><text x="37.0604%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (75 samples, 0.02%)</title><rect x="36.8104%" y="613" width="0.0193%" height="15" fill="rgb(248,132,6)" fg:x="142774" fg:w="75"/><text x="37.0604%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (76 samples, 0.02%)</title><rect x="36.8104%" y="693" width="0.0196%" height="15" fill="rgb(227,167,50)" fg:x="142774" fg:w="76"/><text x="37.0604%" y="703.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (76 samples, 0.02%)</title><rect x="36.8104%" y="677" width="0.0196%" height="15" fill="rgb(242,84,37)" fg:x="142774" fg:w="76"/><text x="37.0604%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (76 samples, 0.02%)</title><rect x="36.8104%" y="661" width="0.0196%" height="15" fill="rgb(212,4,50)" fg:x="142774" fg:w="76"/><text x="37.0604%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (76 samples, 0.02%)</title><rect x="36.8104%" y="645" width="0.0196%" height="15" fill="rgb(230,228,32)" fg:x="142774" fg:w="76"/><text x="37.0604%" y="655.50"></text></g><g><title>clang::Parser::ParseLinkage (76 samples, 0.02%)</title><rect x="36.8104%" y="629" width="0.0196%" height="15" fill="rgb(248,217,23)" fg:x="142774" fg:w="76"/><text x="37.0604%" y="639.50"></text></g><g><title>ExecuteCC1Tool (88 samples, 0.02%)</title><rect x="36.8084%" y="789" width="0.0227%" height="15" fill="rgb(238,197,32)" fg:x="142766" fg:w="88"/><text x="37.0584%" y="799.50"></text></g><g><title>cc1_main (88 samples, 0.02%)</title><rect x="36.8084%" y="773" width="0.0227%" height="15" fill="rgb(236,106,1)" fg:x="142766" fg:w="88"/><text x="37.0584%" y="783.50"></text></g><g><title>clang::ExecuteCompilerInvocation (86 samples, 0.02%)</title><rect x="36.8089%" y="757" width="0.0222%" height="15" fill="rgb(219,228,13)" fg:x="142768" fg:w="86"/><text x="37.0589%" y="767.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (86 samples, 0.02%)</title><rect x="36.8089%" y="741" width="0.0222%" height="15" fill="rgb(238,30,35)" fg:x="142768" fg:w="86"/><text x="37.0589%" y="751.50"></text></g><g><title>clang::FrontendAction::Execute (86 samples, 0.02%)</title><rect x="36.8089%" y="725" width="0.0222%" height="15" fill="rgb(236,70,23)" fg:x="142768" fg:w="86"/><text x="37.0589%" y="735.50"></text></g><g><title>clang::ParseAST (86 samples, 0.02%)</title><rect x="36.8089%" y="709" width="0.0222%" height="15" fill="rgb(249,104,48)" fg:x="142768" fg:w="86"/><text x="37.0589%" y="719.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (67 samples, 0.02%)</title><rect x="36.8452%" y="773" width="0.0173%" height="15" fill="rgb(254,117,50)" fg:x="142909" fg:w="67"/><text x="37.0952%" y="783.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (67 samples, 0.02%)</title><rect x="36.8452%" y="757" width="0.0173%" height="15" fill="rgb(223,152,4)" fg:x="142909" fg:w="67"/><text x="37.0952%" y="767.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (49 samples, 0.01%)</title><rect x="36.8772%" y="661" width="0.0126%" height="15" fill="rgb(245,6,2)" fg:x="143033" fg:w="49"/><text x="37.1272%" y="671.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (109 samples, 0.03%)</title><rect x="36.8684%" y="677" width="0.0281%" height="15" fill="rgb(249,150,24)" fg:x="142999" fg:w="109"/><text x="37.1184%" y="687.50"></text></g><g><title>llvm::FPPassManager::runOnModule (39 samples, 0.01%)</title><rect x="36.9177%" y="661" width="0.0101%" height="15" fill="rgb(228,185,42)" fg:x="143190" fg:w="39"/><text x="37.1677%" y="671.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (39 samples, 0.01%)</title><rect x="36.9177%" y="645" width="0.0101%" height="15" fill="rgb(226,39,33)" fg:x="143190" fg:w="39"/><text x="37.1677%" y="655.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (102 samples, 0.03%)</title><rect x="36.9038%" y="677" width="0.0263%" height="15" fill="rgb(221,166,19)" fg:x="143136" fg:w="102"/><text x="37.1538%" y="687.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (242 samples, 0.06%)</title><rect x="36.8682%" y="709" width="0.0624%" height="15" fill="rgb(209,109,2)" fg:x="142998" fg:w="242"/><text x="37.1182%" y="719.50"></text></g><g><title>clang::EmitBackendOutput (242 samples, 0.06%)</title><rect x="36.8682%" y="693" width="0.0624%" height="15" fill="rgb(252,216,26)" fg:x="142998" fg:w="242"/><text x="37.1182%" y="703.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (55 samples, 0.01%)</title><rect x="36.9393%" y="469" width="0.0142%" height="15" fill="rgb(227,173,36)" fg:x="143274" fg:w="55"/><text x="37.1893%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (45 samples, 0.01%)</title><rect x="36.9563%" y="469" width="0.0116%" height="15" fill="rgb(209,90,7)" fg:x="143340" fg:w="45"/><text x="37.2063%" y="479.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.01%)</title><rect x="36.9698%" y="437" width="0.0121%" height="15" fill="rgb(250,194,11)" fg:x="143392" fg:w="47"/><text x="37.2198%" y="447.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (58 samples, 0.01%)</title><rect x="36.9685%" y="453" width="0.0150%" height="15" fill="rgb(220,72,50)" fg:x="143387" fg:w="58"/><text x="37.2185%" y="463.50"></text></g><g><title>clang::Preprocessor::HandleIfdefDirective (61 samples, 0.02%)</title><rect x="36.9680%" y="469" width="0.0157%" height="15" fill="rgb(222,106,48)" fg:x="143385" fg:w="61"/><text x="37.2180%" y="479.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (207 samples, 0.05%)</title><rect x="36.9368%" y="565" width="0.0534%" height="15" fill="rgb(216,220,45)" fg:x="143264" fg:w="207"/><text x="37.1868%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (207 samples, 0.05%)</title><rect x="36.9368%" y="549" width="0.0534%" height="15" fill="rgb(234,112,18)" fg:x="143264" fg:w="207"/><text x="37.1868%" y="559.50"></text></g><g><title>clang::Preprocessor::CachingLex (207 samples, 0.05%)</title><rect x="36.9368%" y="533" width="0.0534%" height="15" fill="rgb(206,179,9)" fg:x="143264" fg:w="207"/><text x="37.1868%" y="543.50"></text></g><g><title>clang::Preprocessor::Lex (207 samples, 0.05%)</title><rect x="36.9368%" y="517" width="0.0534%" height="15" fill="rgb(215,115,40)" fg:x="143264" fg:w="207"/><text x="37.1868%" y="527.50"></text></g><g><title>clang::Lexer::LexTokenInternal (207 samples, 0.05%)</title><rect x="36.9368%" y="501" width="0.0534%" height="15" fill="rgb(222,69,34)" fg:x="143264" fg:w="207"/><text x="37.1868%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleDirective (197 samples, 0.05%)</title><rect x="36.9393%" y="485" width="0.0508%" height="15" fill="rgb(209,161,10)" fg:x="143274" fg:w="197"/><text x="37.1893%" y="495.50"></text></g><g><title>clang::Parser::ParseDeclGroup (242 samples, 0.06%)</title><rect x="36.9368%" y="581" width="0.0624%" height="15" fill="rgb(217,6,38)" fg:x="143264" fg:w="242"/><text x="37.1868%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaration (267 samples, 0.07%)</title><rect x="36.9368%" y="613" width="0.0688%" height="15" fill="rgb(229,229,48)" fg:x="143264" fg:w="267"/><text x="37.1868%" y="623.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (267 samples, 0.07%)</title><rect x="36.9368%" y="597" width="0.0688%" height="15" fill="rgb(225,21,28)" fg:x="143264" fg:w="267"/><text x="37.1868%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (40 samples, 0.01%)</title><rect x="37.0071%" y="517" width="0.0103%" height="15" fill="rgb(206,33,13)" fg:x="143537" fg:w="40"/><text x="37.2571%" y="527.50"></text></g><g><title>clang::Lexer::LexTokenInternal (47 samples, 0.01%)</title><rect x="37.0056%" y="533" width="0.0121%" height="15" fill="rgb(242,178,17)" fg:x="143531" fg:w="47"/><text x="37.2556%" y="543.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (54 samples, 0.01%)</title><rect x="37.0056%" y="565" width="0.0139%" height="15" fill="rgb(220,162,5)" fg:x="143531" fg:w="54"/><text x="37.2556%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (54 samples, 0.01%)</title><rect x="37.0056%" y="549" width="0.0139%" height="15" fill="rgb(210,33,43)" fg:x="143531" fg:w="54"/><text x="37.2556%" y="559.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (42 samples, 0.01%)</title><rect x="37.0249%" y="565" width="0.0108%" height="15" fill="rgb(216,116,54)" fg:x="143606" fg:w="42"/><text x="37.2749%" y="575.50"></text></g><g><title>clang::Sema::ActOnDeclarator (42 samples, 0.01%)</title><rect x="37.0249%" y="549" width="0.0108%" height="15" fill="rgb(249,92,24)" fg:x="143606" fg:w="42"/><text x="37.2749%" y="559.50"></text></g><g><title>clang::Sema::HandleDeclarator (42 samples, 0.01%)</title><rect x="37.0249%" y="533" width="0.0108%" height="15" fill="rgb(231,189,14)" fg:x="143606" fg:w="42"/><text x="37.2749%" y="543.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (45 samples, 0.01%)</title><rect x="37.0368%" y="549" width="0.0116%" height="15" fill="rgb(230,8,41)" fg:x="143652" fg:w="45"/><text x="37.2868%" y="559.50"></text></g><g><title>clang::Parser::ParseDeclGroup (173 samples, 0.04%)</title><rect x="37.0056%" y="581" width="0.0446%" height="15" fill="rgb(249,7,27)" fg:x="143531" fg:w="173"/><text x="37.2556%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (56 samples, 0.01%)</title><rect x="37.0358%" y="565" width="0.0144%" height="15" fill="rgb(232,86,5)" fg:x="143648" fg:w="56"/><text x="37.2858%" y="575.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (492 samples, 0.13%)</title><rect x="36.9368%" y="629" width="0.1268%" height="15" fill="rgb(224,175,18)" fg:x="143264" fg:w="492"/><text x="37.1868%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (225 samples, 0.06%)</title><rect x="37.0056%" y="613" width="0.0580%" height="15" fill="rgb(220,129,12)" fg:x="143531" fg:w="225"/><text x="37.2556%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (225 samples, 0.06%)</title><rect x="37.0056%" y="597" width="0.0580%" height="15" fill="rgb(210,19,36)" fg:x="143531" fg:w="225"/><text x="37.2556%" y="607.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (507 samples, 0.13%)</title><rect x="36.9342%" y="709" width="0.1307%" height="15" fill="rgb(219,96,14)" fg:x="143254" fg:w="507"/><text x="37.1842%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (507 samples, 0.13%)</title><rect x="36.9342%" y="693" width="0.1307%" height="15" fill="rgb(249,106,1)" fg:x="143254" fg:w="507"/><text x="37.1842%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (507 samples, 0.13%)</title><rect x="36.9342%" y="677" width="0.1307%" height="15" fill="rgb(249,155,20)" fg:x="143254" fg:w="507"/><text x="37.1842%" y="687.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (507 samples, 0.13%)</title><rect x="36.9342%" y="661" width="0.1307%" height="15" fill="rgb(244,168,9)" fg:x="143254" fg:w="507"/><text x="37.1842%" y="671.50"></text></g><g><title>clang::Parser::ParseLinkage (498 samples, 0.13%)</title><rect x="36.9365%" y="645" width="0.1284%" height="15" fill="rgb(216,23,50)" fg:x="143263" fg:w="498"/><text x="37.1865%" y="655.50"></text></g><g><title>cc1_main (858 samples, 0.22%)</title><rect x="36.8452%" y="789" width="0.2212%" height="15" fill="rgb(224,219,20)" fg:x="142909" fg:w="858"/><text x="37.0952%" y="799.50"></text></g><g><title>clang::ExecuteCompilerInvocation (791 samples, 0.20%)</title><rect x="36.8625%" y="773" width="0.2039%" height="15" fill="rgb(222,156,15)" fg:x="142976" fg:w="791"/><text x="37.1125%" y="783.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (791 samples, 0.20%)</title><rect x="36.8625%" y="757" width="0.2039%" height="15" fill="rgb(231,97,17)" fg:x="142976" fg:w="791"/><text x="37.1125%" y="767.50"></text></g><g><title>clang::FrontendAction::Execute (775 samples, 0.20%)</title><rect x="36.8666%" y="741" width="0.1998%" height="15" fill="rgb(218,70,48)" fg:x="142992" fg:w="775"/><text x="37.1166%" y="751.50"></text></g><g><title>clang::ParseAST (775 samples, 0.20%)</title><rect x="36.8666%" y="725" width="0.1998%" height="15" fill="rgb(212,196,52)" fg:x="142992" fg:w="775"/><text x="37.1166%" y="735.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (50 samples, 0.01%)</title><rect x="37.0824%" y="677" width="0.0129%" height="15" fill="rgb(243,203,18)" fg:x="143829" fg:w="50"/><text x="37.3324%" y="687.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (116 samples, 0.03%)</title><rect x="37.0672%" y="789" width="0.0299%" height="15" fill="rgb(252,125,41)" fg:x="143770" fg:w="116"/><text x="37.3172%" y="799.50"></text></g><g><title>clang::EmitBackendOutput (109 samples, 0.03%)</title><rect x="37.0690%" y="773" width="0.0281%" height="15" fill="rgb(223,180,33)" fg:x="143777" fg:w="109"/><text x="37.3190%" y="783.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (109 samples, 0.03%)</title><rect x="37.0690%" y="757" width="0.0281%" height="15" fill="rgb(254,159,46)" fg:x="143777" fg:w="109"/><text x="37.3190%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnModule (85 samples, 0.02%)</title><rect x="37.0752%" y="741" width="0.0219%" height="15" fill="rgb(254,38,10)" fg:x="143801" fg:w="85"/><text x="37.3252%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (85 samples, 0.02%)</title><rect x="37.0752%" y="725" width="0.0219%" height="15" fill="rgb(208,217,32)" fg:x="143801" fg:w="85"/><text x="37.3252%" y="735.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (60 samples, 0.02%)</title><rect x="37.0816%" y="709" width="0.0155%" height="15" fill="rgb(221,120,13)" fg:x="143826" fg:w="60"/><text x="37.3316%" y="719.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (60 samples, 0.02%)</title><rect x="37.0816%" y="693" width="0.0155%" height="15" fill="rgb(246,54,52)" fg:x="143826" fg:w="60"/><text x="37.3316%" y="703.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitTopLevelDecl (40 samples, 0.01%)</title><rect x="37.1030%" y="789" width="0.0103%" height="15" fill="rgb(242,34,25)" fg:x="143909" fg:w="40"/><text x="37.3530%" y="799.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalDefinition (40 samples, 0.01%)</title><rect x="37.1030%" y="773" width="0.0103%" height="15" fill="rgb(247,209,9)" fg:x="143909" fg:w="40"/><text x="37.3530%" y="783.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalFunctionDefinition (40 samples, 0.01%)</title><rect x="37.1030%" y="757" width="0.0103%" height="15" fill="rgb(228,71,26)" fg:x="143909" fg:w="40"/><text x="37.3530%" y="767.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (55 samples, 0.01%)</title><rect x="37.1175%" y="629" width="0.0142%" height="15" fill="rgb(222,145,49)" fg:x="143965" fg:w="55"/><text x="37.3675%" y="639.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (60 samples, 0.02%)</title><rect x="37.1165%" y="645" width="0.0155%" height="15" fill="rgb(218,121,17)" fg:x="143961" fg:w="60"/><text x="37.3665%" y="655.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (71 samples, 0.02%)</title><rect x="37.1144%" y="741" width="0.0183%" height="15" fill="rgb(244,50,7)" fg:x="143953" fg:w="71"/><text x="37.3644%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (71 samples, 0.02%)</title><rect x="37.1144%" y="725" width="0.0183%" height="15" fill="rgb(246,229,37)" fg:x="143953" fg:w="71"/><text x="37.3644%" y="735.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (69 samples, 0.02%)</title><rect x="37.1149%" y="709" width="0.0178%" height="15" fill="rgb(225,18,5)" fg:x="143955" fg:w="69"/><text x="37.3649%" y="719.50"></text></g><g><title>llvm::FPPassManager::runOnModule (69 samples, 0.02%)</title><rect x="37.1149%" y="693" width="0.0178%" height="15" fill="rgb(213,204,8)" fg:x="143955" fg:w="69"/><text x="37.3649%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (69 samples, 0.02%)</title><rect x="37.1149%" y="677" width="0.0178%" height="15" fill="rgb(238,103,6)" fg:x="143955" fg:w="69"/><text x="37.3649%" y="687.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (63 samples, 0.02%)</title><rect x="37.1165%" y="661" width="0.0162%" height="15" fill="rgb(222,25,35)" fg:x="143961" fg:w="63"/><text x="37.3665%" y="671.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (93 samples, 0.02%)</title><rect x="37.1144%" y="789" width="0.0240%" height="15" fill="rgb(213,203,35)" fg:x="143953" fg:w="93"/><text x="37.3644%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (93 samples, 0.02%)</title><rect x="37.1144%" y="773" width="0.0240%" height="15" fill="rgb(221,79,53)" fg:x="143953" fg:w="93"/><text x="37.3644%" y="783.50"></text></g><g><title>clang::ParseAST (93 samples, 0.02%)</title><rect x="37.1144%" y="757" width="0.0240%" height="15" fill="rgb(243,200,35)" fg:x="143953" fg:w="93"/><text x="37.3644%" y="767.50"></text></g><g><title>__GI_readlink (51 samples, 0.01%)</title><rect x="37.1518%" y="677" width="0.0131%" height="15" fill="rgb(248,60,25)" fg:x="144098" fg:w="51"/><text x="37.4018%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.01%)</title><rect x="37.1518%" y="661" width="0.0131%" height="15" fill="rgb(227,53,46)" fg:x="144098" fg:w="51"/><text x="37.4018%" y="671.50"></text></g><g><title>do_syscall_64 (51 samples, 0.01%)</title><rect x="37.1518%" y="645" width="0.0131%" height="15" fill="rgb(216,120,32)" fg:x="144098" fg:w="51"/><text x="37.4018%" y="655.50"></text></g><g><title>__x64_sys_readlink (51 samples, 0.01%)</title><rect x="37.1518%" y="629" width="0.0131%" height="15" fill="rgb(220,134,1)" fg:x="144098" fg:w="51"/><text x="37.4018%" y="639.50"></text></g><g><title>do_readlinkat (51 samples, 0.01%)</title><rect x="37.1518%" y="613" width="0.0131%" height="15" fill="rgb(237,168,5)" fg:x="144098" fg:w="51"/><text x="37.4018%" y="623.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (75 samples, 0.02%)</title><rect x="37.1770%" y="533" width="0.0193%" height="15" fill="rgb(231,100,33)" fg:x="144196" fg:w="75"/><text x="37.4270%" y="543.50"></text></g><g><title>walk_component (40 samples, 0.01%)</title><rect x="37.1861%" y="517" width="0.0103%" height="15" fill="rgb(236,177,47)" fg:x="144231" fg:w="40"/><text x="37.4361%" y="527.50"></text></g><g><title>do_filp_open (137 samples, 0.04%)</title><rect x="37.1696%" y="565" width="0.0353%" height="15" fill="rgb(235,7,49)" fg:x="144167" fg:w="137"/><text x="37.4196%" y="575.50"></text></g><g><title>path_openat (136 samples, 0.04%)</title><rect x="37.1698%" y="549" width="0.0351%" height="15" fill="rgb(232,119,22)" fg:x="144168" fg:w="136"/><text x="37.4198%" y="559.50"></text></g><g><title>__x64_sys_openat (154 samples, 0.04%)</title><rect x="37.1691%" y="597" width="0.0397%" height="15" fill="rgb(254,73,53)" fg:x="144165" fg:w="154"/><text x="37.4191%" y="607.50"></text></g><g><title>do_sys_openat2 (152 samples, 0.04%)</title><rect x="37.1696%" y="581" width="0.0392%" height="15" fill="rgb(251,35,20)" fg:x="144167" fg:w="152"/><text x="37.4196%" y="591.50"></text></g><g><title>__libc_open64 (207 samples, 0.05%)</title><rect x="37.1649%" y="661" width="0.0534%" height="15" fill="rgb(241,119,20)" fg:x="144149" fg:w="207"/><text x="37.4149%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (205 samples, 0.05%)</title><rect x="37.1654%" y="645" width="0.0529%" height="15" fill="rgb(207,102,14)" fg:x="144151" fg:w="205"/><text x="37.4154%" y="655.50"></text></g><g><title>do_syscall_64 (204 samples, 0.05%)</title><rect x="37.1657%" y="629" width="0.0526%" height="15" fill="rgb(248,201,50)" fg:x="144152" fg:w="204"/><text x="37.4157%" y="639.50"></text></g><g><title>unload_network_ops_symbols (192 samples, 0.05%)</title><rect x="37.1688%" y="613" width="0.0495%" height="15" fill="rgb(222,185,44)" fg:x="144164" fg:w="192"/><text x="37.4188%" y="623.50"></text></g><g><title>llvm::sys::fs::openFile (208 samples, 0.05%)</title><rect x="37.1649%" y="677" width="0.0536%" height="15" fill="rgb(218,107,18)" fg:x="144149" fg:w="208"/><text x="37.4149%" y="687.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (269 samples, 0.07%)</title><rect x="37.1495%" y="789" width="0.0694%" height="15" fill="rgb(237,177,39)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="799.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (269 samples, 0.07%)</title><rect x="37.1495%" y="773" width="0.0694%" height="15" fill="rgb(246,69,6)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="783.50"></text></g><g><title>clang::FileManager::getFileRef (269 samples, 0.07%)</title><rect x="37.1495%" y="757" width="0.0694%" height="15" fill="rgb(234,208,37)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="767.50"></text></g><g><title>clang::FileManager::getStatValue (269 samples, 0.07%)</title><rect x="37.1495%" y="741" width="0.0694%" height="15" fill="rgb(225,4,6)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="751.50"></text></g><g><title>clang::FileSystemStatCache::get (269 samples, 0.07%)</title><rect x="37.1495%" y="725" width="0.0694%" height="15" fill="rgb(233,45,0)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="735.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (269 samples, 0.07%)</title><rect x="37.1495%" y="709" width="0.0694%" height="15" fill="rgb(226,136,5)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="719.50"></text></g><g><title>llvm::sys::fs::openFileForRead (269 samples, 0.07%)</title><rect x="37.1495%" y="693" width="0.0694%" height="15" fill="rgb(211,91,47)" fg:x="144089" fg:w="269"/><text x="37.3995%" y="703.50"></text></g><g><title>clang::EmitBackendOutput (44 samples, 0.01%)</title><rect x="37.2188%" y="789" width="0.0113%" height="15" fill="rgb(242,88,51)" fg:x="144358" fg:w="44"/><text x="37.4688%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (48 samples, 0.01%)</title><rect x="37.2338%" y="789" width="0.0124%" height="15" fill="rgb(230,91,28)" fg:x="144416" fg:w="48"/><text x="37.4838%" y="799.50"></text></g><g><title>clang::ParseAST (48 samples, 0.01%)</title><rect x="37.2338%" y="773" width="0.0124%" height="15" fill="rgb(254,186,29)" fg:x="144416" fg:w="48"/><text x="37.4838%" y="783.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (44 samples, 0.01%)</title><rect x="37.2740%" y="789" width="0.0113%" height="15" fill="rgb(238,6,4)" fg:x="144572" fg:w="44"/><text x="37.5240%" y="799.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (44 samples, 0.01%)</title><rect x="37.2740%" y="773" width="0.0113%" height="15" fill="rgb(221,151,16)" fg:x="144572" fg:w="44"/><text x="37.5240%" y="783.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (44 samples, 0.01%)</title><rect x="37.2740%" y="757" width="0.0113%" height="15" fill="rgb(251,143,52)" fg:x="144572" fg:w="44"/><text x="37.5240%" y="767.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (44 samples, 0.01%)</title><rect x="37.2740%" y="741" width="0.0113%" height="15" fill="rgb(206,90,15)" fg:x="144572" fg:w="44"/><text x="37.5240%" y="751.50"></text></g><g><title>clang::Sema::GetTypeForDeclarator (39 samples, 0.01%)</title><rect x="37.3052%" y="693" width="0.0101%" height="15" fill="rgb(218,35,8)" fg:x="144693" fg:w="39"/><text x="37.5552%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (109 samples, 0.03%)</title><rect x="37.2892%" y="773" width="0.0281%" height="15" fill="rgb(239,215,6)" fg:x="144631" fg:w="109"/><text x="37.5392%" y="783.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (95 samples, 0.02%)</title><rect x="37.2928%" y="757" width="0.0245%" height="15" fill="rgb(245,116,39)" fg:x="144645" fg:w="95"/><text x="37.5428%" y="767.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (95 samples, 0.02%)</title><rect x="37.2928%" y="741" width="0.0245%" height="15" fill="rgb(242,65,28)" fg:x="144645" fg:w="95"/><text x="37.5428%" y="751.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (95 samples, 0.02%)</title><rect x="37.2928%" y="725" width="0.0245%" height="15" fill="rgb(252,132,53)" fg:x="144645" fg:w="95"/><text x="37.5428%" y="735.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (54 samples, 0.01%)</title><rect x="37.3034%" y="709" width="0.0139%" height="15" fill="rgb(224,159,50)" fg:x="144686" fg:w="54"/><text x="37.5534%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclGroup (124 samples, 0.03%)</title><rect x="37.2858%" y="789" width="0.0320%" height="15" fill="rgb(224,93,4)" fg:x="144618" fg:w="124"/><text x="37.5358%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (41 samples, 0.01%)</title><rect x="37.3178%" y="789" width="0.0106%" height="15" fill="rgb(208,81,34)" fg:x="144742" fg:w="41"/><text x="37.5678%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (61 samples, 0.02%)</title><rect x="37.3343%" y="741" width="0.0157%" height="15" fill="rgb(233,92,54)" fg:x="144806" fg:w="61"/><text x="37.5843%" y="751.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (55 samples, 0.01%)</title><rect x="37.3359%" y="725" width="0.0142%" height="15" fill="rgb(237,21,14)" fg:x="144812" fg:w="55"/><text x="37.5859%" y="735.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (55 samples, 0.01%)</title><rect x="37.3359%" y="709" width="0.0142%" height="15" fill="rgb(249,128,51)" fg:x="144812" fg:w="55"/><text x="37.5859%" y="719.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (55 samples, 0.01%)</title><rect x="37.3359%" y="693" width="0.0142%" height="15" fill="rgb(223,129,24)" fg:x="144812" fg:w="55"/><text x="37.5859%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclGroup (82 samples, 0.02%)</title><rect x="37.3297%" y="757" width="0.0211%" height="15" fill="rgb(231,168,25)" fg:x="144788" fg:w="82"/><text x="37.5797%" y="767.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (51 samples, 0.01%)</title><rect x="37.3560%" y="629" width="0.0131%" height="15" fill="rgb(224,39,20)" fg:x="144890" fg:w="51"/><text x="37.6060%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (84 samples, 0.02%)</title><rect x="37.3560%" y="677" width="0.0217%" height="15" fill="rgb(225,152,53)" fg:x="144890" fg:w="84"/><text x="37.6060%" y="687.50"></text></g><g><title>clang::Sema::ActOnDeclarator (84 samples, 0.02%)</title><rect x="37.3560%" y="661" width="0.0217%" height="15" fill="rgb(252,17,24)" fg:x="144890" fg:w="84"/><text x="37.6060%" y="671.50"></text></g><g><title>clang::Sema::HandleDeclarator (84 samples, 0.02%)</title><rect x="37.3560%" y="645" width="0.0217%" height="15" fill="rgb(250,114,30)" fg:x="144890" fg:w="84"/><text x="37.6060%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclGroup (85 samples, 0.02%)</title><rect x="37.3560%" y="693" width="0.0219%" height="15" fill="rgb(229,5,4)" fg:x="144890" fg:w="85"/><text x="37.6060%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (195 samples, 0.05%)</title><rect x="37.3297%" y="789" width="0.0503%" height="15" fill="rgb(225,176,49)" fg:x="144788" fg:w="195"/><text x="37.5797%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (195 samples, 0.05%)</title><rect x="37.3297%" y="773" width="0.0503%" height="15" fill="rgb(224,221,49)" fg:x="144788" fg:w="195"/><text x="37.5797%" y="783.50"></text></g><g><title>clang::Parser::ParseLinkage (101 samples, 0.03%)</title><rect x="37.3539%" y="757" width="0.0260%" height="15" fill="rgb(253,169,27)" fg:x="144882" fg:w="101"/><text x="37.6039%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (100 samples, 0.03%)</title><rect x="37.3542%" y="741" width="0.0258%" height="15" fill="rgb(211,206,16)" fg:x="144883" fg:w="100"/><text x="37.6042%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (93 samples, 0.02%)</title><rect x="37.3560%" y="725" width="0.0240%" height="15" fill="rgb(244,87,35)" fg:x="144890" fg:w="93"/><text x="37.6060%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (93 samples, 0.02%)</title><rect x="37.3560%" y="709" width="0.0240%" height="15" fill="rgb(246,28,10)" fg:x="144890" fg:w="93"/><text x="37.6060%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (45 samples, 0.01%)</title><rect x="37.3800%" y="789" width="0.0116%" height="15" fill="rgb(229,12,44)" fg:x="144983" fg:w="45"/><text x="37.6300%" y="799.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (43 samples, 0.01%)</title><rect x="37.3805%" y="773" width="0.0111%" height="15" fill="rgb(210,145,37)" fg:x="144985" fg:w="43"/><text x="37.6305%" y="783.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (43 samples, 0.01%)</title><rect x="37.3805%" y="757" width="0.0111%" height="15" fill="rgb(227,112,52)" fg:x="144985" fg:w="43"/><text x="37.6305%" y="767.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (43 samples, 0.01%)</title><rect x="37.3805%" y="741" width="0.0111%" height="15" fill="rgb(238,155,34)" fg:x="144985" fg:w="43"/><text x="37.6305%" y="751.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (43 samples, 0.01%)</title><rect x="37.3805%" y="725" width="0.0111%" height="15" fill="rgb(239,226,36)" fg:x="144985" fg:w="43"/><text x="37.6305%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (70 samples, 0.02%)</title><rect x="37.3985%" y="789" width="0.0180%" height="15" fill="rgb(230,16,23)" fg:x="145055" fg:w="70"/><text x="37.6485%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (62 samples, 0.02%)</title><rect x="37.4006%" y="773" width="0.0160%" height="15" fill="rgb(236,171,36)" fg:x="145063" fg:w="62"/><text x="37.6506%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (62 samples, 0.02%)</title><rect x="37.4006%" y="757" width="0.0160%" height="15" fill="rgb(221,22,14)" fg:x="145063" fg:w="62"/><text x="37.6506%" y="767.50"></text></g><g><title>clang::Parser::ParseLinkage (43 samples, 0.01%)</title><rect x="37.4055%" y="741" width="0.0111%" height="15" fill="rgb(242,43,11)" fg:x="145082" fg:w="43"/><text x="37.6555%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (43 samples, 0.01%)</title><rect x="37.4055%" y="725" width="0.0111%" height="15" fill="rgb(232,69,23)" fg:x="145082" fg:w="43"/><text x="37.6555%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (42 samples, 0.01%)</title><rect x="37.4057%" y="709" width="0.0108%" height="15" fill="rgb(216,180,54)" fg:x="145083" fg:w="42"/><text x="37.6557%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (42 samples, 0.01%)</title><rect x="37.4057%" y="693" width="0.0108%" height="15" fill="rgb(216,5,24)" fg:x="145083" fg:w="42"/><text x="37.6557%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (46 samples, 0.01%)</title><rect x="37.4168%" y="789" width="0.0119%" height="15" fill="rgb(225,89,9)" fg:x="145126" fg:w="46"/><text x="37.6668%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (46 samples, 0.01%)</title><rect x="37.4168%" y="773" width="0.0119%" height="15" fill="rgb(243,75,33)" fg:x="145126" fg:w="46"/><text x="37.6668%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (41 samples, 0.01%)</title><rect x="37.4297%" y="773" width="0.0106%" height="15" fill="rgb(247,141,45)" fg:x="145176" fg:w="41"/><text x="37.6797%" y="783.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (48 samples, 0.01%)</title><rect x="37.4297%" y="789" width="0.0124%" height="15" fill="rgb(232,177,36)" fg:x="145176" fg:w="48"/><text x="37.6797%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (40 samples, 0.01%)</title><rect x="37.4423%" y="645" width="0.0103%" height="15" fill="rgb(219,125,36)" fg:x="145225" fg:w="40"/><text x="37.6923%" y="655.50"></text></g><g><title>clang::Sema::ActOnDeclarator (40 samples, 0.01%)</title><rect x="37.4423%" y="629" width="0.0103%" height="15" fill="rgb(227,94,9)" fg:x="145225" fg:w="40"/><text x="37.6923%" y="639.50"></text></g><g><title>clang::Sema::HandleDeclarator (40 samples, 0.01%)</title><rect x="37.4423%" y="613" width="0.0103%" height="15" fill="rgb(240,34,52)" fg:x="145225" fg:w="40"/><text x="37.6923%" y="623.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (40 samples, 0.01%)</title><rect x="37.4423%" y="597" width="0.0103%" height="15" fill="rgb(216,45,12)" fg:x="145225" fg:w="40"/><text x="37.6923%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (51 samples, 0.01%)</title><rect x="37.4421%" y="661" width="0.0131%" height="15" fill="rgb(246,21,19)" fg:x="145224" fg:w="51"/><text x="37.6921%" y="671.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (52 samples, 0.01%)</title><rect x="37.4421%" y="789" width="0.0134%" height="15" fill="rgb(213,98,42)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (52 samples, 0.01%)</title><rect x="37.4421%" y="773" width="0.0134%" height="15" fill="rgb(250,136,47)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (52 samples, 0.01%)</title><rect x="37.4421%" y="757" width="0.0134%" height="15" fill="rgb(251,124,27)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (52 samples, 0.01%)</title><rect x="37.4421%" y="741" width="0.0134%" height="15" fill="rgb(229,180,14)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="751.50"></text></g><g><title>clang::Parser::ParseLinkage (52 samples, 0.01%)</title><rect x="37.4421%" y="725" width="0.0134%" height="15" fill="rgb(245,216,25)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (52 samples, 0.01%)</title><rect x="37.4421%" y="709" width="0.0134%" height="15" fill="rgb(251,43,5)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (52 samples, 0.01%)</title><rect x="37.4421%" y="693" width="0.0134%" height="15" fill="rgb(250,128,24)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (52 samples, 0.01%)</title><rect x="37.4421%" y="677" width="0.0134%" height="15" fill="rgb(217,117,27)" fg:x="145224" fg:w="52"/><text x="37.6921%" y="687.50"></text></g><g><title>clang::FileManager::getFileRef (74 samples, 0.02%)</title><rect x="37.4601%" y="693" width="0.0191%" height="15" fill="rgb(245,147,4)" fg:x="145294" fg:w="74"/><text x="37.7101%" y="703.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (76 samples, 0.02%)</title><rect x="37.4599%" y="709" width="0.0196%" height="15" fill="rgb(242,201,35)" fg:x="145293" fg:w="76"/><text x="37.7099%" y="719.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (81 samples, 0.02%)</title><rect x="37.4588%" y="789" width="0.0209%" height="15" fill="rgb(218,181,1)" fg:x="145289" fg:w="81"/><text x="37.7088%" y="799.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (80 samples, 0.02%)</title><rect x="37.4591%" y="773" width="0.0206%" height="15" fill="rgb(222,6,29)" fg:x="145290" fg:w="80"/><text x="37.7091%" y="783.50"></text></g><g><title>clang::Preprocessor::LookupFile (80 samples, 0.02%)</title><rect x="37.4591%" y="757" width="0.0206%" height="15" fill="rgb(208,186,3)" fg:x="145290" fg:w="80"/><text x="37.7091%" y="767.50"></text></g><g><title>clang::HeaderSearch::LookupFile (80 samples, 0.02%)</title><rect x="37.4591%" y="741" width="0.0206%" height="15" fill="rgb(216,36,26)" fg:x="145290" fg:w="80"/><text x="37.7091%" y="751.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (80 samples, 0.02%)</title><rect x="37.4591%" y="725" width="0.0206%" height="15" fill="rgb(248,201,23)" fg:x="145290" fg:w="80"/><text x="37.7091%" y="735.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (64 samples, 0.02%)</title><rect x="37.5099%" y="645" width="0.0165%" height="15" fill="rgb(251,170,31)" fg:x="145487" fg:w="64"/><text x="37.7599%" y="655.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (64 samples, 0.02%)</title><rect x="37.5099%" y="629" width="0.0165%" height="15" fill="rgb(207,110,25)" fg:x="145487" fg:w="64"/><text x="37.7599%" y="639.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (64 samples, 0.02%)</title><rect x="37.5099%" y="613" width="0.0165%" height="15" fill="rgb(250,54,15)" fg:x="145487" fg:w="64"/><text x="37.7599%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (64 samples, 0.02%)</title><rect x="37.5099%" y="597" width="0.0165%" height="15" fill="rgb(227,68,33)" fg:x="145487" fg:w="64"/><text x="37.7599%" y="607.50"></text></g><g><title>clang::Parser::ParseLinkage (61 samples, 0.02%)</title><rect x="37.5107%" y="581" width="0.0157%" height="15" fill="rgb(238,34,41)" fg:x="145490" fg:w="61"/><text x="37.7607%" y="591.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (61 samples, 0.02%)</title><rect x="37.5107%" y="565" width="0.0157%" height="15" fill="rgb(220,11,15)" fg:x="145490" fg:w="61"/><text x="37.7607%" y="575.50"></text></g><g><title>clang::driver::CC1Command::Execute (136 samples, 0.04%)</title><rect x="37.5019%" y="789" width="0.0351%" height="15" fill="rgb(246,111,35)" fg:x="145456" fg:w="136"/><text x="37.7519%" y="799.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (136 samples, 0.04%)</title><rect x="37.5019%" y="773" width="0.0351%" height="15" fill="rgb(209,88,53)" fg:x="145456" fg:w="136"/><text x="37.7519%" y="783.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (136 samples, 0.04%)</title><rect x="37.5019%" y="757" width="0.0351%" height="15" fill="rgb(231,185,47)" fg:x="145456" fg:w="136"/><text x="37.7519%" y="767.50"></text></g><g><title>ExecuteCC1Tool (136 samples, 0.04%)</title><rect x="37.5019%" y="741" width="0.0351%" height="15" fill="rgb(233,154,1)" fg:x="145456" fg:w="136"/><text x="37.7519%" y="751.50"></text></g><g><title>cc1_main (136 samples, 0.04%)</title><rect x="37.5019%" y="725" width="0.0351%" height="15" fill="rgb(225,15,46)" fg:x="145456" fg:w="136"/><text x="37.7519%" y="735.50"></text></g><g><title>clang::ExecuteCompilerInvocation (128 samples, 0.03%)</title><rect x="37.5040%" y="709" width="0.0330%" height="15" fill="rgb(211,135,41)" fg:x="145464" fg:w="128"/><text x="37.7540%" y="719.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (128 samples, 0.03%)</title><rect x="37.5040%" y="693" width="0.0330%" height="15" fill="rgb(208,54,0)" fg:x="145464" fg:w="128"/><text x="37.7540%" y="703.50"></text></g><g><title>clang::FrontendAction::Execute (117 samples, 0.03%)</title><rect x="37.5068%" y="677" width="0.0302%" height="15" fill="rgb(244,136,14)" fg:x="145475" fg:w="117"/><text x="37.7568%" y="687.50"></text></g><g><title>clang::ParseAST (117 samples, 0.03%)</title><rect x="37.5068%" y="661" width="0.0302%" height="15" fill="rgb(241,56,14)" fg:x="145475" fg:w="117"/><text x="37.7568%" y="671.50"></text></g><g><title>clang::Preprocessor::Lex (41 samples, 0.01%)</title><rect x="37.5264%" y="645" width="0.0106%" height="15" fill="rgb(205,80,24)" fg:x="145551" fg:w="41"/><text x="37.7764%" y="655.50"></text></g><g><title>clang::Lexer::LexTokenInternal (41 samples, 0.01%)</title><rect x="37.5264%" y="629" width="0.0106%" height="15" fill="rgb(220,57,4)" fg:x="145551" fg:w="41"/><text x="37.7764%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleDirective (41 samples, 0.01%)</title><rect x="37.5264%" y="613" width="0.0106%" height="15" fill="rgb(226,193,50)" fg:x="145551" fg:w="41"/><text x="37.7764%" y="623.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (44 samples, 0.01%)</title><rect x="37.5424%" y="789" width="0.0113%" height="15" fill="rgb(231,168,22)" fg:x="145613" fg:w="44"/><text x="37.7924%" y="799.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (64 samples, 0.02%)</title><rect x="37.6215%" y="709" width="0.0165%" height="15" fill="rgb(254,215,14)" fg:x="145920" fg:w="64"/><text x="37.8715%" y="719.50"></text></g><g><title>clang::driver::ToolChain::GetFilePath[abi:cxx11] (41 samples, 0.01%)</title><rect x="37.6393%" y="693" width="0.0106%" height="15" fill="rgb(211,115,16)" fg:x="145989" fg:w="41"/><text x="37.8893%" y="703.50"></text></g><g><title>clang::driver::Driver::GetFilePath[abi:cxx11] (41 samples, 0.01%)</title><rect x="37.6393%" y="677" width="0.0106%" height="15" fill="rgb(236,210,16)" fg:x="145989" fg:w="41"/><text x="37.8893%" y="687.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (92 samples, 0.02%)</title><rect x="37.6380%" y="709" width="0.0237%" height="15" fill="rgb(221,94,12)" fg:x="145984" fg:w="92"/><text x="37.8880%" y="719.50"></text></g><g><title>clang::driver::Driver::BuildJobs (175 samples, 0.05%)</title><rect x="37.6171%" y="757" width="0.0451%" height="15" fill="rgb(235,218,49)" fg:x="145903" fg:w="175"/><text x="37.8671%" y="767.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (175 samples, 0.05%)</title><rect x="37.6171%" y="741" width="0.0451%" height="15" fill="rgb(217,114,14)" fg:x="145903" fg:w="175"/><text x="37.8671%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (175 samples, 0.05%)</title><rect x="37.6171%" y="725" width="0.0451%" height="15" fill="rgb(216,145,22)" fg:x="145903" fg:w="175"/><text x="37.8671%" y="735.50"></text></g><g><title>__x64_sys_openat (41 samples, 0.01%)</title><rect x="37.6857%" y="581" width="0.0106%" height="15" fill="rgb(217,112,39)" fg:x="146169" fg:w="41"/><text x="37.9357%" y="591.50"></text></g><g><title>do_sys_openat2 (41 samples, 0.01%)</title><rect x="37.6857%" y="565" width="0.0106%" height="15" fill="rgb(225,85,32)" fg:x="146169" fg:w="41"/><text x="37.9357%" y="575.50"></text></g><g><title>__GI___open64_nocancel (63 samples, 0.02%)</title><rect x="37.6813%" y="645" width="0.0162%" height="15" fill="rgb(245,209,47)" fg:x="146152" fg:w="63"/><text x="37.9313%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (62 samples, 0.02%)</title><rect x="37.6816%" y="629" width="0.0160%" height="15" fill="rgb(218,220,15)" fg:x="146153" fg:w="62"/><text x="37.9316%" y="639.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="37.6819%" y="613" width="0.0157%" height="15" fill="rgb(222,202,31)" fg:x="146154" fg:w="61"/><text x="37.9319%" y="623.50"></text></g><g><title>unload_network_ops_symbols (47 samples, 0.01%)</title><rect x="37.6855%" y="597" width="0.0121%" height="15" fill="rgb(243,203,4)" fg:x="146168" fg:w="47"/><text x="37.9355%" y="607.50"></text></g><g><title>__opendir (66 samples, 0.02%)</title><rect x="37.6813%" y="661" width="0.0170%" height="15" fill="rgb(237,92,17)" fg:x="146152" fg:w="66"/><text x="37.9313%" y="671.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (81 samples, 0.02%)</title><rect x="37.6803%" y="693" width="0.0209%" height="15" fill="rgb(231,119,7)" fg:x="146148" fg:w="81"/><text x="37.9303%" y="703.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (80 samples, 0.02%)</title><rect x="37.6806%" y="677" width="0.0206%" height="15" fill="rgb(237,82,41)" fg:x="146149" fg:w="80"/><text x="37.9306%" y="687.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (153 samples, 0.04%)</title><rect x="37.6669%" y="709" width="0.0394%" height="15" fill="rgb(226,81,48)" fg:x="146096" fg:w="153"/><text x="37.9169%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (191 samples, 0.05%)</title><rect x="37.6646%" y="725" width="0.0492%" height="15" fill="rgb(234,70,51)" fg:x="146087" fg:w="191"/><text x="37.9146%" y="735.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (58 samples, 0.01%)</title><rect x="37.7138%" y="709" width="0.0150%" height="15" fill="rgb(251,86,4)" fg:x="146278" fg:w="58"/><text x="37.9638%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (100 samples, 0.03%)</title><rect x="37.7138%" y="725" width="0.0258%" height="15" fill="rgb(244,144,28)" fg:x="146278" fg:w="100"/><text x="37.9638%" y="735.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (478 samples, 0.12%)</title><rect x="37.6169%" y="773" width="0.1232%" height="15" fill="rgb(232,161,39)" fg:x="145902" fg:w="478"/><text x="37.8669%" y="783.50"></text></g><g><title>clang::driver::Driver::getToolChain (302 samples, 0.08%)</title><rect x="37.6623%" y="757" width="0.0779%" height="15" fill="rgb(247,34,51)" fg:x="146078" fg:w="302"/><text x="37.9123%" y="767.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (302 samples, 0.08%)</title><rect x="37.6623%" y="741" width="0.0779%" height="15" fill="rgb(225,132,2)" fg:x="146078" fg:w="302"/><text x="37.9123%" y="751.50"></text></g><g><title>clang::Builtin::Context::builtinIsSupported (41 samples, 0.01%)</title><rect x="37.7654%" y="581" width="0.0106%" height="15" fill="rgb(209,159,44)" fg:x="146478" fg:w="41"/><text x="38.0154%" y="591.50"></text></g><g><title>llvm::StringMap&lt;clang::IdentifierInfo*, llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul, 128ul&gt; &gt;::try_emplace&lt;clang::IdentifierInfo*&gt; (108 samples, 0.03%)</title><rect x="37.7765%" y="565" width="0.0278%" height="15" fill="rgb(251,214,1)" fg:x="146521" fg:w="108"/><text x="38.0265%" y="575.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (66 samples, 0.02%)</title><rect x="37.7873%" y="549" width="0.0170%" height="15" fill="rgb(247,84,47)" fg:x="146563" fg:w="66"/><text x="38.0373%" y="559.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (176 samples, 0.05%)</title><rect x="37.7626%" y="597" width="0.0454%" height="15" fill="rgb(240,111,43)" fg:x="146467" fg:w="176"/><text x="38.0126%" y="607.50"></text></g><g><title>clang::IdentifierTable::get (124 samples, 0.03%)</title><rect x="37.7760%" y="581" width="0.0320%" height="15" fill="rgb(215,214,35)" fg:x="146519" fg:w="124"/><text x="38.0260%" y="591.50"></text></g><g><title>InitializePredefinedMacros (49 samples, 0.01%)</title><rect x="37.8244%" y="565" width="0.0126%" height="15" fill="rgb(248,207,23)" fg:x="146707" fg:w="49"/><text x="38.0744%" y="575.50"></text></g><g><title>clang::InitializePreprocessor (52 samples, 0.01%)</title><rect x="37.8244%" y="581" width="0.0134%" height="15" fill="rgb(214,186,4)" fg:x="146707" fg:w="52"/><text x="38.0744%" y="591.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (133 samples, 0.03%)</title><rect x="37.8144%" y="597" width="0.0343%" height="15" fill="rgb(220,133,22)" fg:x="146668" fg:w="133"/><text x="38.0644%" y="607.50"></text></g><g><title>std::__shared_ptr&lt;clang::Preprocessor, (__gnu_cxx::_Lock_policy)2&gt;::__shared_ptr&lt;std::allocator&lt;clang::Preprocessor&gt;, std::shared_ptr&lt;clang::PreprocessorOptions&gt;, clang::DiagnosticsEngine&amp;, clang::LangOptions&amp;, clang::SourceManager&amp;, clang::HeaderSearch&amp;, clang::CompilerInstance&amp;, decltype(nullptr), bool, clang::TranslationUnitKind&amp;&gt; (39 samples, 0.01%)</title><rect x="37.8386%" y="581" width="0.0101%" height="15" fill="rgb(239,134,19)" fg:x="146762" fg:w="39"/><text x="38.0886%" y="591.50"></text></g><g><title>clang::Preprocessor::Preprocessor (39 samples, 0.01%)</title><rect x="37.8386%" y="565" width="0.0101%" height="15" fill="rgb(250,140,9)" fg:x="146762" fg:w="39"/><text x="38.0886%" y="575.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (384 samples, 0.10%)</title><rect x="37.7590%" y="613" width="0.0990%" height="15" fill="rgb(225,59,14)" fg:x="146453" fg:w="384"/><text x="38.0090%" y="623.50"></text></g><g><title>llvm::raw_fd_ostream::~raw_fd_ostream (41 samples, 0.01%)</title><rect x="37.8752%" y="581" width="0.0106%" height="15" fill="rgb(214,152,51)" fg:x="146904" fg:w="41"/><text x="38.1252%" y="591.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (69 samples, 0.02%)</title><rect x="37.8683%" y="597" width="0.0178%" height="15" fill="rgb(251,227,43)" fg:x="146877" fg:w="69"/><text x="38.1183%" y="607.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (110 samples, 0.03%)</title><rect x="37.8580%" y="613" width="0.0284%" height="15" fill="rgb(241,96,17)" fg:x="146837" fg:w="110"/><text x="38.1080%" y="623.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (47 samples, 0.01%)</title><rect x="37.9116%" y="405" width="0.0121%" height="15" fill="rgb(234,198,43)" fg:x="147045" fg:w="47"/><text x="38.1616%" y="415.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (106 samples, 0.03%)</title><rect x="37.9013%" y="485" width="0.0273%" height="15" fill="rgb(220,108,29)" fg:x="147005" fg:w="106"/><text x="38.1513%" y="495.50"></text></g><g><title>clang::Parser::ConsumeBrace (106 samples, 0.03%)</title><rect x="37.9013%" y="469" width="0.0273%" height="15" fill="rgb(226,163,33)" fg:x="147005" fg:w="106"/><text x="38.1513%" y="479.50"></text></g><g><title>clang::Preprocessor::Lex (106 samples, 0.03%)</title><rect x="37.9013%" y="453" width="0.0273%" height="15" fill="rgb(205,194,45)" fg:x="147005" fg:w="106"/><text x="38.1513%" y="463.50"></text></g><g><title>clang::Lexer::LexTokenInternal (106 samples, 0.03%)</title><rect x="37.9013%" y="437" width="0.0273%" height="15" fill="rgb(206,143,44)" fg:x="147005" fg:w="106"/><text x="38.1513%" y="447.50"></text></g><g><title>clang::Preprocessor::HandleDirective (102 samples, 0.03%)</title><rect x="37.9023%" y="421" width="0.0263%" height="15" fill="rgb(236,136,36)" fg:x="147009" fg:w="102"/><text x="38.1523%" y="431.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (107 samples, 0.03%)</title><rect x="37.9013%" y="501" width="0.0276%" height="15" fill="rgb(249,172,42)" fg:x="147005" fg:w="107"/><text x="38.1513%" y="511.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (121 samples, 0.03%)</title><rect x="37.8997%" y="549" width="0.0312%" height="15" fill="rgb(216,139,23)" fg:x="146999" fg:w="121"/><text x="38.1497%" y="559.50"></text></g><g><title>clang::Parser::ParseDeclaration (121 samples, 0.03%)</title><rect x="37.8997%" y="533" width="0.0312%" height="15" fill="rgb(207,166,20)" fg:x="146999" fg:w="121"/><text x="38.1497%" y="543.50"></text></g><g><title>clang::Parser::ParseNamespace (119 samples, 0.03%)</title><rect x="37.9002%" y="517" width="0.0307%" height="15" fill="rgb(210,209,22)" fg:x="147001" fg:w="119"/><text x="38.1502%" y="527.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (123 samples, 0.03%)</title><rect x="37.8997%" y="581" width="0.0317%" height="15" fill="rgb(232,118,20)" fg:x="146999" fg:w="123"/><text x="38.1497%" y="591.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (123 samples, 0.03%)</title><rect x="37.8997%" y="565" width="0.0317%" height="15" fill="rgb(238,113,42)" fg:x="146999" fg:w="123"/><text x="38.1497%" y="575.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (80 samples, 0.02%)</title><rect x="37.9332%" y="501" width="0.0206%" height="15" fill="rgb(231,42,5)" fg:x="147129" fg:w="80"/><text x="38.1832%" y="511.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (107 samples, 0.03%)</title><rect x="37.9314%" y="533" width="0.0276%" height="15" fill="rgb(243,166,24)" fg:x="147122" fg:w="107"/><text x="38.1814%" y="543.50"></text></g><g><title>clang::Parser::ParseLinkage (105 samples, 0.03%)</title><rect x="37.9320%" y="517" width="0.0271%" height="15" fill="rgb(237,226,12)" fg:x="147124" fg:w="105"/><text x="38.1820%" y="527.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (108 samples, 0.03%)</title><rect x="37.9314%" y="565" width="0.0278%" height="15" fill="rgb(229,133,24)" fg:x="147122" fg:w="108"/><text x="38.1814%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (108 samples, 0.03%)</title><rect x="37.9314%" y="549" width="0.0278%" height="15" fill="rgb(238,33,43)" fg:x="147122" fg:w="108"/><text x="38.1814%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (110 samples, 0.03%)</title><rect x="37.9314%" y="581" width="0.0284%" height="15" fill="rgb(227,59,38)" fg:x="147122" fg:w="110"/><text x="38.1814%" y="591.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (65 samples, 0.02%)</title><rect x="37.9812%" y="517" width="0.0168%" height="15" fill="rgb(230,97,0)" fg:x="147315" fg:w="65"/><text x="38.2312%" y="527.50"></text></g><g><title>clang::Preprocessor::Lex (52 samples, 0.01%)</title><rect x="37.9845%" y="501" width="0.0134%" height="15" fill="rgb(250,173,50)" fg:x="147328" fg:w="52"/><text x="38.2345%" y="511.50"></text></g><g><title>clang::Lexer::LexTokenInternal (51 samples, 0.01%)</title><rect x="37.9848%" y="485" width="0.0131%" height="15" fill="rgb(240,15,50)" fg:x="147329" fg:w="51"/><text x="38.2348%" y="495.50"></text></g><g><title>clang::Lexer::LexIdentifierContinue (48 samples, 0.01%)</title><rect x="37.9856%" y="469" width="0.0124%" height="15" fill="rgb(221,93,22)" fg:x="147332" fg:w="48"/><text x="38.2356%" y="479.50"></text></g><g><title>clang::Preprocessor::AllocateMacroInfo (40 samples, 0.01%)</title><rect x="37.9987%" y="501" width="0.0103%" height="15" fill="rgb(245,180,53)" fg:x="147383" fg:w="40"/><text x="38.2487%" y="511.50"></text></g><g><title>clang::Preprocessor::Lex (44 samples, 0.01%)</title><rect x="38.0090%" y="501" width="0.0113%" height="15" fill="rgb(231,88,51)" fg:x="147423" fg:w="44"/><text x="38.2590%" y="511.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (94 samples, 0.02%)</title><rect x="37.9980%" y="517" width="0.0242%" height="15" fill="rgb(240,58,21)" fg:x="147380" fg:w="94"/><text x="38.2480%" y="527.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (185 samples, 0.05%)</title><rect x="37.9791%" y="533" width="0.0477%" height="15" fill="rgb(237,21,10)" fg:x="147307" fg:w="185"/><text x="38.2291%" y="543.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (97 samples, 0.03%)</title><rect x="38.0307%" y="517" width="0.0250%" height="15" fill="rgb(218,43,11)" fg:x="147507" fg:w="97"/><text x="38.2807%" y="527.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (137 samples, 0.04%)</title><rect x="38.0302%" y="533" width="0.0353%" height="15" fill="rgb(218,221,29)" fg:x="147505" fg:w="137"/><text x="38.2802%" y="543.50"></text></g><g><title>clang::Preprocessor::Lex (46 samples, 0.01%)</title><rect x="38.0779%" y="533" width="0.0119%" height="15" fill="rgb(214,118,42)" fg:x="147690" fg:w="46"/><text x="38.3279%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (41 samples, 0.01%)</title><rect x="38.0792%" y="517" width="0.0106%" height="15" fill="rgb(251,200,26)" fg:x="147695" fg:w="41"/><text x="38.3292%" y="527.50"></text></g><g><title>clang::Preprocessor::Lex (492 samples, 0.13%)</title><rect x="37.9662%" y="581" width="0.1268%" height="15" fill="rgb(237,101,39)" fg:x="147257" fg:w="492"/><text x="38.2162%" y="591.50"></text></g><g><title>clang::Lexer::LexTokenInternal (487 samples, 0.13%)</title><rect x="37.9675%" y="565" width="0.1256%" height="15" fill="rgb(251,117,11)" fg:x="147262" fg:w="487"/><text x="38.2175%" y="575.50"></text></g><g><title>clang::Preprocessor::HandleDirective (457 samples, 0.12%)</title><rect x="37.9753%" y="549" width="0.1178%" height="15" fill="rgb(216,223,23)" fg:x="147292" fg:w="457"/><text x="38.2253%" y="559.50"></text></g><g><title>clang::FrontendAction::Execute (803 samples, 0.21%)</title><rect x="37.8863%" y="613" width="0.2070%" height="15" fill="rgb(251,54,12)" fg:x="146947" fg:w="803"/><text x="38.1363%" y="623.50"></text></g><g><title>clang::ParseAST (791 samples, 0.20%)</title><rect x="37.8894%" y="597" width="0.2039%" height="15" fill="rgb(254,176,54)" fg:x="146959" fg:w="791"/><text x="38.1394%" y="607.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,328 samples, 0.34%)</title><rect x="37.7512%" y="629" width="0.3424%" height="15" fill="rgb(210,32,8)" fg:x="146423" fg:w="1328"/><text x="38.0012%" y="639.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,365 samples, 0.35%)</title><rect x="37.7510%" y="645" width="0.3519%" height="15" fill="rgb(235,52,38)" fg:x="146422" fg:w="1365"/><text x="38.0010%" y="655.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,442 samples, 0.37%)</title><rect x="37.7401%" y="725" width="0.3718%" height="15" fill="rgb(231,4,44)" fg:x="146380" fg:w="1442"/><text x="37.9901%" y="735.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,442 samples, 0.37%)</title><rect x="37.7401%" y="709" width="0.3718%" height="15" fill="rgb(249,2,32)" fg:x="146380" fg:w="1442"/><text x="37.9901%" y="719.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (1,441 samples, 0.37%)</title><rect x="37.7404%" y="693" width="0.3715%" height="15" fill="rgb(224,65,26)" fg:x="146381" fg:w="1441"/><text x="37.9904%" y="703.50"></text></g><g><title>ExecuteCC1Tool (1,441 samples, 0.37%)</title><rect x="37.7404%" y="677" width="0.3715%" height="15" fill="rgb(250,73,40)" fg:x="146381" fg:w="1441"/><text x="37.9904%" y="687.50"></text></g><g><title>cc1_main (1,440 samples, 0.37%)</title><rect x="37.7406%" y="661" width="0.3713%" height="15" fill="rgb(253,177,16)" fg:x="146382" fg:w="1440"/><text x="37.9906%" y="671.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,454 samples, 0.37%)</title><rect x="37.7401%" y="773" width="0.3749%" height="15" fill="rgb(217,32,34)" fg:x="146380" fg:w="1454"/><text x="37.9901%" y="783.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,454 samples, 0.37%)</title><rect x="37.7401%" y="757" width="0.3749%" height="15" fill="rgb(212,7,10)" fg:x="146380" fg:w="1454"/><text x="37.9901%" y="767.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,454 samples, 0.37%)</title><rect x="37.7401%" y="741" width="0.3749%" height="15" fill="rgb(245,89,8)" fg:x="146380" fg:w="1454"/><text x="37.9901%" y="751.50"></text></g><g><title>main (1,957 samples, 0.50%)</title><rect x="37.6161%" y="789" width="0.5046%" height="15" fill="rgb(237,16,53)" fg:x="145899" fg:w="1957"/><text x="37.8661%" y="799.50"></text></g><g><title>[unknown] (5,121 samples, 1.32%)</title><rect x="36.8035%" y="805" width="1.3203%" height="15" fill="rgb(250,204,30)" fg:x="142747" fg:w="5121"/><text x="37.0535%" y="815.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (97 samples, 0.03%)</title><rect x="38.1361%" y="437" width="0.0250%" height="15" fill="rgb(208,77,27)" fg:x="147916" fg:w="97"/><text x="38.3861%" y="447.50"></text></g><g><title>_ZdlPv (96 samples, 0.02%)</title><rect x="38.1364%" y="421" width="0.0248%" height="15" fill="rgb(250,204,28)" fg:x="147917" fg:w="96"/><text x="38.3864%" y="431.50"></text></g><g><title>_ZdlPv (94 samples, 0.02%)</title><rect x="38.1369%" y="405" width="0.0242%" height="15" fill="rgb(244,63,21)" fg:x="147919" fg:w="94"/><text x="38.3869%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (92 samples, 0.02%)</title><rect x="38.1374%" y="389" width="0.0237%" height="15" fill="rgb(236,85,44)" fg:x="147921" fg:w="92"/><text x="38.3874%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (81 samples, 0.02%)</title><rect x="38.1403%" y="373" width="0.0209%" height="15" fill="rgb(215,98,4)" fg:x="147932" fg:w="81"/><text x="38.3903%" y="383.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (122 samples, 0.03%)</title><rect x="38.1341%" y="469" width="0.0315%" height="15" fill="rgb(235,38,11)" fg:x="147908" fg:w="122"/><text x="38.3841%" y="479.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (120 samples, 0.03%)</title><rect x="38.1346%" y="453" width="0.0309%" height="15" fill="rgb(254,186,25)" fg:x="147910" fg:w="120"/><text x="38.3846%" y="463.50"></text></g><g><title>_ZdlPv (41 samples, 0.01%)</title><rect x="38.1661%" y="453" width="0.0106%" height="15" fill="rgb(225,55,31)" fg:x="148032" fg:w="41"/><text x="38.4161%" y="463.50"></text></g><g><title>_ZdlPv (47 samples, 0.01%)</title><rect x="38.1655%" y="469" width="0.0121%" height="15" fill="rgb(211,15,21)" fg:x="148030" fg:w="47"/><text x="38.4155%" y="479.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="38.1787%" y="453" width="0.0134%" height="15" fill="rgb(215,187,41)" fg:x="148081" fg:w="52"/><text x="38.4287%" y="463.50"></text></g><g><title>_ZdlPv (51 samples, 0.01%)</title><rect x="38.1789%" y="437" width="0.0131%" height="15" fill="rgb(248,69,32)" fg:x="148082" fg:w="51"/><text x="38.4289%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (51 samples, 0.01%)</title><rect x="38.1789%" y="421" width="0.0131%" height="15" fill="rgb(252,102,52)" fg:x="148082" fg:w="51"/><text x="38.4289%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (48 samples, 0.01%)</title><rect x="38.1797%" y="405" width="0.0124%" height="15" fill="rgb(253,140,32)" fg:x="148085" fg:w="48"/><text x="38.4297%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (48 samples, 0.01%)</title><rect x="38.2083%" y="309" width="0.0124%" height="15" fill="rgb(216,56,42)" fg:x="148196" fg:w="48"/><text x="38.4583%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (64 samples, 0.02%)</title><rect x="38.2045%" y="357" width="0.0165%" height="15" fill="rgb(216,184,14)" fg:x="148181" fg:w="64"/><text x="38.4545%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (53 samples, 0.01%)</title><rect x="38.2073%" y="341" width="0.0137%" height="15" fill="rgb(237,187,27)" fg:x="148192" fg:w="53"/><text x="38.4573%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (51 samples, 0.01%)</title><rect x="38.2078%" y="325" width="0.0131%" height="15" fill="rgb(219,65,3)" fg:x="148194" fg:w="51"/><text x="38.4578%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (70 samples, 0.02%)</title><rect x="38.2032%" y="373" width="0.0180%" height="15" fill="rgb(245,83,25)" fg:x="148176" fg:w="70"/><text x="38.4532%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (80 samples, 0.02%)</title><rect x="38.2014%" y="389" width="0.0206%" height="15" fill="rgb(214,205,45)" fg:x="148169" fg:w="80"/><text x="38.4514%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (98 samples, 0.03%)</title><rect x="38.1970%" y="421" width="0.0253%" height="15" fill="rgb(241,20,18)" fg:x="148152" fg:w="98"/><text x="38.4470%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (88 samples, 0.02%)</title><rect x="38.1996%" y="405" width="0.0227%" height="15" fill="rgb(232,163,23)" fg:x="148162" fg:w="88"/><text x="38.4496%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (109 samples, 0.03%)</title><rect x="38.1947%" y="437" width="0.0281%" height="15" fill="rgb(214,5,46)" fg:x="148143" fg:w="109"/><text x="38.4447%" y="447.50"></text></g><g><title>_ZdlPv (354 samples, 0.09%)</title><rect x="38.1323%" y="517" width="0.0913%" height="15" fill="rgb(229,78,17)" fg:x="147901" fg:w="354"/><text x="38.3823%" y="527.50"></text></g><g><title>_ZdlPv (354 samples, 0.09%)</title><rect x="38.1323%" y="501" width="0.0913%" height="15" fill="rgb(248,89,10)" fg:x="147901" fg:w="354"/><text x="38.3823%" y="511.50"></text></g><g><title>_ZdlPv (353 samples, 0.09%)</title><rect x="38.1325%" y="485" width="0.0910%" height="15" fill="rgb(248,54,15)" fg:x="147902" fg:w="353"/><text x="38.3825%" y="495.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (176 samples, 0.05%)</title><rect x="38.1782%" y="469" width="0.0454%" height="15" fill="rgb(223,116,6)" fg:x="148079" fg:w="176"/><text x="38.4282%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (121 samples, 0.03%)</title><rect x="38.1924%" y="453" width="0.0312%" height="15" fill="rgb(205,125,38)" fg:x="148134" fg:w="121"/><text x="38.4424%" y="463.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (45 samples, 0.01%)</title><rect x="38.2274%" y="405" width="0.0116%" height="15" fill="rgb(251,78,38)" fg:x="148270" fg:w="45"/><text x="38.4774%" y="415.50"></text></g><g><title>_ZdlPv (45 samples, 0.01%)</title><rect x="38.2274%" y="389" width="0.0116%" height="15" fill="rgb(253,78,28)" fg:x="148270" fg:w="45"/><text x="38.4774%" y="399.50"></text></g><g><title>_ZdlPv (45 samples, 0.01%)</title><rect x="38.2274%" y="373" width="0.0116%" height="15" fill="rgb(209,120,3)" fg:x="148270" fg:w="45"/><text x="38.4774%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (45 samples, 0.01%)</title><rect x="38.2274%" y="357" width="0.0116%" height="15" fill="rgb(238,229,9)" fg:x="148270" fg:w="45"/><text x="38.4774%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (44 samples, 0.01%)</title><rect x="38.2277%" y="341" width="0.0113%" height="15" fill="rgb(253,159,18)" fg:x="148271" fg:w="44"/><text x="38.4777%" y="351.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (62 samples, 0.02%)</title><rect x="38.2266%" y="421" width="0.0160%" height="15" fill="rgb(244,42,34)" fg:x="148267" fg:w="62"/><text x="38.4766%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (64 samples, 0.02%)</title><rect x="38.2266%" y="437" width="0.0165%" height="15" fill="rgb(224,8,7)" fg:x="148267" fg:w="64"/><text x="38.4766%" y="447.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.02%)</title><rect x="38.2522%" y="373" width="0.0170%" height="15" fill="rgb(210,201,45)" fg:x="148366" fg:w="66"/><text x="38.5022%" y="383.50"></text></g><g><title>_ZdlPv (73 samples, 0.02%)</title><rect x="38.2506%" y="421" width="0.0188%" height="15" fill="rgb(252,185,21)" fg:x="148360" fg:w="73"/><text x="38.5006%" y="431.50"></text></g><g><title>_ZdlPv (73 samples, 0.02%)</title><rect x="38.2506%" y="405" width="0.0188%" height="15" fill="rgb(223,131,1)" fg:x="148360" fg:w="73"/><text x="38.5006%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (73 samples, 0.02%)</title><rect x="38.2506%" y="389" width="0.0188%" height="15" fill="rgb(245,141,16)" fg:x="148360" fg:w="73"/><text x="38.5006%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (43 samples, 0.01%)</title><rect x="38.2720%" y="405" width="0.0111%" height="15" fill="rgb(229,55,45)" fg:x="148443" fg:w="43"/><text x="38.5220%" y="415.50"></text></g><g><title>_ZdlPv (228 samples, 0.06%)</title><rect x="38.2246%" y="501" width="0.0588%" height="15" fill="rgb(208,92,15)" fg:x="148259" fg:w="228"/><text x="38.4746%" y="511.50"></text></g><g><title>_ZdlPv (228 samples, 0.06%)</title><rect x="38.2246%" y="485" width="0.0588%" height="15" fill="rgb(234,185,47)" fg:x="148259" fg:w="228"/><text x="38.4746%" y="495.50"></text></g><g><title>_ZdlPv (228 samples, 0.06%)</title><rect x="38.2246%" y="469" width="0.0588%" height="15" fill="rgb(253,104,50)" fg:x="148259" fg:w="228"/><text x="38.4746%" y="479.50"></text></g><g><title>_ZdlPv (228 samples, 0.06%)</title><rect x="38.2246%" y="453" width="0.0588%" height="15" fill="rgb(205,70,7)" fg:x="148259" fg:w="228"/><text x="38.4746%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (130 samples, 0.03%)</title><rect x="38.2498%" y="437" width="0.0335%" height="15" fill="rgb(240,178,43)" fg:x="148357" fg:w="130"/><text x="38.4998%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (53 samples, 0.01%)</title><rect x="38.2697%" y="421" width="0.0137%" height="15" fill="rgb(214,112,2)" fg:x="148434" fg:w="53"/><text x="38.5197%" y="431.50"></text></g><g><title>cshook_security_sb_free_security (240 samples, 0.06%)</title><rect x="38.2241%" y="517" width="0.0619%" height="15" fill="rgb(206,46,17)" fg:x="148257" fg:w="240"/><text x="38.4741%" y="527.50"></text></g><g><title>cshook_security_file_permission (609 samples, 0.16%)</title><rect x="38.1315%" y="565" width="0.1570%" height="15" fill="rgb(225,220,16)" fg:x="147898" fg:w="609"/><text x="38.3815%" y="575.50"></text></g><g><title>cshook_security_sb_free_security (608 samples, 0.16%)</title><rect x="38.1318%" y="549" width="0.1568%" height="15" fill="rgb(238,65,40)" fg:x="147899" fg:w="608"/><text x="38.3818%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (608 samples, 0.16%)</title><rect x="38.1318%" y="533" width="0.1568%" height="15" fill="rgb(230,151,21)" fg:x="147899" fg:w="608"/><text x="38.3818%" y="543.50"></text></g><g><title>exec_binprm (626 samples, 0.16%)</title><rect x="38.1276%" y="661" width="0.1614%" height="15" fill="rgb(218,58,49)" fg:x="147883" fg:w="626"/><text x="38.3776%" y="671.50"></text></g><g><title>search_binary_handler (626 samples, 0.16%)</title><rect x="38.1276%" y="645" width="0.1614%" height="15" fill="rgb(219,179,14)" fg:x="147883" fg:w="626"/><text x="38.3776%" y="655.50"></text></g><g><title>security_bprm_check (616 samples, 0.16%)</title><rect x="38.1302%" y="629" width="0.1588%" height="15" fill="rgb(223,72,1)" fg:x="147893" fg:w="616"/><text x="38.3802%" y="639.50"></text></g><g><title>pinnedhook_security_bprm_check_security (616 samples, 0.16%)</title><rect x="38.1302%" y="613" width="0.1588%" height="15" fill="rgb(238,126,10)" fg:x="147893" fg:w="616"/><text x="38.3802%" y="623.50"></text></g><g><title>cshook_security_bprm_check_security (616 samples, 0.16%)</title><rect x="38.1302%" y="597" width="0.1588%" height="15" fill="rgb(224,206,38)" fg:x="147893" fg:w="616"/><text x="38.3802%" y="607.50"></text></g><g><title>cshook_security_file_permission (616 samples, 0.16%)</title><rect x="38.1302%" y="581" width="0.1588%" height="15" fill="rgb(212,201,54)" fg:x="147893" fg:w="616"/><text x="38.3802%" y="591.50"></text></g><g><title>bprm_execve (633 samples, 0.16%)</title><rect x="38.1266%" y="693" width="0.1632%" height="15" fill="rgb(218,154,48)" fg:x="147879" fg:w="633"/><text x="38.3766%" y="703.50"></text></g><g><title>bprm_execve.part.0 (633 samples, 0.16%)</title><rect x="38.1266%" y="677" width="0.1632%" height="15" fill="rgb(232,93,24)" fg:x="147879" fg:w="633"/><text x="38.3766%" y="687.50"></text></g><g><title>__spawni_child (643 samples, 0.17%)</title><rect x="38.1256%" y="789" width="0.1658%" height="15" fill="rgb(245,30,21)" fg:x="147875" fg:w="643"/><text x="38.3756%" y="799.50"></text></g><g><title>__GI_execve (640 samples, 0.17%)</title><rect x="38.1263%" y="773" width="0.1650%" height="15" fill="rgb(242,148,29)" fg:x="147878" fg:w="640"/><text x="38.3763%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (640 samples, 0.17%)</title><rect x="38.1263%" y="757" width="0.1650%" height="15" fill="rgb(244,153,54)" fg:x="147878" fg:w="640"/><text x="38.3763%" y="767.50"></text></g><g><title>do_syscall_64 (640 samples, 0.17%)</title><rect x="38.1263%" y="741" width="0.1650%" height="15" fill="rgb(252,87,22)" fg:x="147878" fg:w="640"/><text x="38.3763%" y="751.50"></text></g><g><title>__x64_sys_execve (640 samples, 0.17%)</title><rect x="38.1263%" y="725" width="0.1650%" height="15" fill="rgb(210,51,29)" fg:x="147878" fg:w="640"/><text x="38.3763%" y="735.50"></text></g><g><title>do_execveat_common.isra.0 (640 samples, 0.17%)</title><rect x="38.1263%" y="709" width="0.1650%" height="15" fill="rgb(242,136,47)" fg:x="147878" fg:w="640"/><text x="38.3763%" y="719.50"></text></g><g><title>__clone3 (662 samples, 0.17%)</title><rect x="38.1253%" y="805" width="0.1707%" height="15" fill="rgb(238,68,4)" fg:x="147874" fg:w="662"/><text x="38.3753%" y="815.50"></text></g><g><title>_GLOBAL__sub_I_AArch64TargetMachine.cpp (42 samples, 0.01%)</title><rect x="38.3241%" y="757" width="0.0108%" height="15" fill="rgb(242,161,30)" fg:x="148645" fg:w="42"/><text x="38.5741%" y="767.50"></text></g><g><title>initializeCodeGenerationPassOnce (42 samples, 0.01%)</title><rect x="38.6585%" y="693" width="0.0108%" height="15" fill="rgb(218,58,44)" fg:x="149942" fg:w="42"/><text x="38.9085%" y="703.50"></text></g><g><title>llvm::initializeDependenceInfoPass (42 samples, 0.01%)</title><rect x="38.6585%" y="677" width="0.0108%" height="15" fill="rgb(252,125,32)" fg:x="149942" fg:w="42"/><text x="38.9085%" y="687.50"></text></g><g><title>__pthread_once_slow (45 samples, 0.01%)</title><rect x="38.6580%" y="709" width="0.0116%" height="15" fill="rgb(219,178,0)" fg:x="149940" fg:w="45"/><text x="38.9080%" y="719.50"></text></g><g><title>llvm::initializeCodeGenerationPass (48 samples, 0.01%)</title><rect x="38.6577%" y="725" width="0.0124%" height="15" fill="rgb(213,152,7)" fg:x="149939" fg:w="48"/><text x="38.9077%" y="735.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (87 samples, 0.02%)</title><rect x="38.6546%" y="757" width="0.0224%" height="15" fill="rgb(249,109,34)" fg:x="149927" fg:w="87"/><text x="38.9046%" y="767.50"></text></g><g><title>polly::initializePollyPasses (75 samples, 0.02%)</title><rect x="38.6577%" y="741" width="0.0193%" height="15" fill="rgb(232,96,21)" fg:x="149939" fg:w="75"/><text x="38.9077%" y="751.50"></text></g><g><title>__libc_csu_init (1,765 samples, 0.46%)</title><rect x="38.3073%" y="773" width="0.4551%" height="15" fill="rgb(228,27,39)" fg:x="148580" fg:w="1765"/><text x="38.5573%" y="783.50"></text></g><g><title>__GI_exit (137 samples, 0.04%)</title><rect x="38.7624%" y="757" width="0.0353%" height="15" fill="rgb(211,182,52)" fg:x="150345" fg:w="137"/><text x="39.0124%" y="767.50"></text></g><g><title>__run_exit_handlers (137 samples, 0.04%)</title><rect x="38.7624%" y="741" width="0.0353%" height="15" fill="rgb(234,178,38)" fg:x="150345" fg:w="137"/><text x="39.0124%" y="751.50"></text></g><g><title>clang::CreateAndPopulateDiagOpts (45 samples, 0.01%)</title><rect x="38.8036%" y="741" width="0.0116%" height="15" fill="rgb(221,111,3)" fg:x="150505" fg:w="45"/><text x="39.0536%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (93 samples, 0.02%)</title><rect x="38.8202%" y="741" width="0.0240%" height="15" fill="rgb(228,175,21)" fg:x="150569" fg:w="93"/><text x="39.0702%" y="751.50"></text></g><g><title>clang::driver::CC1Command::Execute (61 samples, 0.02%)</title><rect x="38.8470%" y="693" width="0.0157%" height="15" fill="rgb(228,174,43)" fg:x="150673" fg:w="61"/><text x="39.0970%" y="703.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (61 samples, 0.02%)</title><rect x="38.8470%" y="677" width="0.0157%" height="15" fill="rgb(211,191,0)" fg:x="150673" fg:w="61"/><text x="39.0970%" y="687.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (61 samples, 0.02%)</title><rect x="38.8470%" y="661" width="0.0157%" height="15" fill="rgb(253,117,3)" fg:x="150673" fg:w="61"/><text x="39.0970%" y="671.50"></text></g><g><title>ExecuteCC1Tool (61 samples, 0.02%)</title><rect x="38.8470%" y="645" width="0.0157%" height="15" fill="rgb(241,127,19)" fg:x="150673" fg:w="61"/><text x="39.0970%" y="655.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (65 samples, 0.02%)</title><rect x="38.8464%" y="725" width="0.0168%" height="15" fill="rgb(218,103,12)" fg:x="150671" fg:w="65"/><text x="39.0964%" y="735.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (64 samples, 0.02%)</title><rect x="38.8467%" y="709" width="0.0165%" height="15" fill="rgb(236,214,43)" fg:x="150672" fg:w="64"/><text x="39.0967%" y="719.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (68 samples, 0.02%)</title><rect x="38.8464%" y="741" width="0.0175%" height="15" fill="rgb(244,144,19)" fg:x="150671" fg:w="68"/><text x="39.0964%" y="751.50"></text></g><g><title>[libc.so.6] (63 samples, 0.02%)</title><rect x="38.8735%" y="677" width="0.0162%" height="15" fill="rgb(246,188,10)" fg:x="150776" fg:w="63"/><text x="39.1235%" y="687.50"></text></g><g><title>llvm::opt::OptTable::OptTable (112 samples, 0.03%)</title><rect x="38.8684%" y="693" width="0.0289%" height="15" fill="rgb(212,193,33)" fg:x="150756" fg:w="112"/><text x="39.1184%" y="703.50"></text></g><g><title>[libc.so.6] (41 samples, 0.01%)</title><rect x="38.9001%" y="661" width="0.0106%" height="15" fill="rgb(241,51,29)" fg:x="150879" fg:w="41"/><text x="39.1501%" y="671.50"></text></g><g><title>clang::driver::getDriverOptTable (167 samples, 0.04%)</title><rect x="38.8684%" y="725" width="0.0431%" height="15" fill="rgb(211,58,19)" fg:x="150756" fg:w="167"/><text x="39.1184%" y="735.50"></text></g><g><title>clang::driver::getDriverOptTable (167 samples, 0.04%)</title><rect x="38.8684%" y="709" width="0.0431%" height="15" fill="rgb(229,111,26)" fg:x="150756" fg:w="167"/><text x="39.1184%" y="719.50"></text></g><g><title>llvm::opt::OptTable::addValues (55 samples, 0.01%)</title><rect x="38.8972%" y="693" width="0.0142%" height="15" fill="rgb(213,115,40)" fg:x="150868" fg:w="55"/><text x="39.1472%" y="703.50"></text></g><g><title>optionMatches (50 samples, 0.01%)</title><rect x="38.8985%" y="677" width="0.0129%" height="15" fill="rgb(209,56,44)" fg:x="150873" fg:w="50"/><text x="39.1485%" y="687.50"></text></g><g><title>clang::driver::getDriverMode (174 samples, 0.04%)</title><rect x="38.8668%" y="741" width="0.0449%" height="15" fill="rgb(230,108,32)" fg:x="150750" fg:w="174"/><text x="39.1168%" y="751.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (61 samples, 0.02%)</title><rect x="38.9202%" y="709" width="0.0157%" height="15" fill="rgb(216,165,31)" fg:x="150957" fg:w="61"/><text x="39.1702%" y="719.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (89 samples, 0.02%)</title><rect x="38.9137%" y="741" width="0.0229%" height="15" fill="rgb(218,122,21)" fg:x="150932" fg:w="89"/><text x="39.1637%" y="751.50"></text></g><g><title>llvm::llvm_shutdown (89 samples, 0.02%)</title><rect x="38.9137%" y="725" width="0.0229%" height="15" fill="rgb(223,224,47)" fg:x="150932" fg:w="89"/><text x="39.1637%" y="735.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (72 samples, 0.02%)</title><rect x="38.9449%" y="725" width="0.0186%" height="15" fill="rgb(238,102,44)" fg:x="151053" fg:w="72"/><text x="39.1949%" y="735.50"></text></g><g><title>llvm::InitializeAllTargets (256 samples, 0.07%)</title><rect x="38.9367%" y="741" width="0.0660%" height="15" fill="rgb(236,46,40)" fg:x="151021" fg:w="256"/><text x="39.1867%" y="751.50"></text></g><g><title>__libc_start_call_main (964 samples, 0.25%)</title><rect x="38.7624%" y="773" width="0.2485%" height="15" fill="rgb(247,202,50)" fg:x="150345" fg:w="964"/><text x="39.0124%" y="783.50"></text></g><g><title>main (827 samples, 0.21%)</title><rect x="38.7977%" y="757" width="0.2132%" height="15" fill="rgb(209,99,20)" fg:x="150482" fg:w="827"/><text x="39.0477%" y="767.50"></text></g><g><title>__libc_start_main_impl (2,731 samples, 0.70%)</title><rect x="38.3073%" y="789" width="0.7041%" height="15" fill="rgb(252,27,34)" fg:x="148580" fg:w="2731"/><text x="38.5573%" y="799.50"></text></g><g><title>[ld-linux-x86-64.so.2] (51 samples, 0.01%)</title><rect x="39.0262%" y="661" width="0.0131%" height="15" fill="rgb(215,206,23)" fg:x="151368" fg:w="51"/><text x="39.2762%" y="671.50"></text></g><g><title>open_verify (44 samples, 0.01%)</title><rect x="39.0280%" y="645" width="0.0113%" height="15" fill="rgb(212,135,36)" fg:x="151375" fg:w="44"/><text x="39.2780%" y="655.50"></text></g><g><title>__GI___open64_nocancel (44 samples, 0.01%)</title><rect x="39.0280%" y="629" width="0.0113%" height="15" fill="rgb(240,189,1)" fg:x="151375" fg:w="44"/><text x="39.2780%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.01%)</title><rect x="39.0285%" y="613" width="0.0108%" height="15" fill="rgb(242,56,20)" fg:x="151377" fg:w="42"/><text x="39.2785%" y="623.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="39.0287%" y="597" width="0.0106%" height="15" fill="rgb(247,132,33)" fg:x="151378" fg:w="41"/><text x="39.2787%" y="607.50"></text></g><g><title>__do_munmap (57 samples, 0.01%)</title><rect x="39.0602%" y="469" width="0.0147%" height="15" fill="rgb(208,149,11)" fg:x="151500" fg:w="57"/><text x="39.3102%" y="479.50"></text></g><g><title>do_mmap (81 samples, 0.02%)</title><rect x="39.0599%" y="501" width="0.0209%" height="15" fill="rgb(211,33,11)" fg:x="151499" fg:w="81"/><text x="39.3099%" y="511.50"></text></g><g><title>mmap_region (80 samples, 0.02%)</title><rect x="39.0602%" y="485" width="0.0206%" height="15" fill="rgb(221,29,38)" fg:x="151500" fg:w="80"/><text x="39.3102%" y="495.50"></text></g><g><title>__x64_sys_mmap (84 samples, 0.02%)</title><rect x="39.0594%" y="549" width="0.0217%" height="15" fill="rgb(206,182,49)" fg:x="151497" fg:w="84"/><text x="39.3094%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (84 samples, 0.02%)</title><rect x="39.0594%" y="533" width="0.0217%" height="15" fill="rgb(216,140,1)" fg:x="151497" fg:w="84"/><text x="39.3094%" y="543.50"></text></g><g><title>vm_mmap_pgoff (83 samples, 0.02%)</title><rect x="39.0597%" y="517" width="0.0214%" height="15" fill="rgb(232,57,40)" fg:x="151498" fg:w="83"/><text x="39.3097%" y="527.50"></text></g><g><title>__mmap64 (96 samples, 0.02%)</title><rect x="39.0584%" y="629" width="0.0248%" height="15" fill="rgb(224,186,18)" fg:x="151493" fg:w="96"/><text x="39.3084%" y="639.50"></text></g><g><title>__mmap64 (96 samples, 0.02%)</title><rect x="39.0584%" y="613" width="0.0248%" height="15" fill="rgb(215,121,11)" fg:x="151493" fg:w="96"/><text x="39.3084%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (94 samples, 0.02%)</title><rect x="39.0589%" y="597" width="0.0242%" height="15" fill="rgb(245,147,10)" fg:x="151495" fg:w="94"/><text x="39.3089%" y="607.50"></text></g><g><title>do_syscall_64 (94 samples, 0.02%)</title><rect x="39.0589%" y="581" width="0.0242%" height="15" fill="rgb(238,153,13)" fg:x="151495" fg:w="94"/><text x="39.3089%" y="591.50"></text></g><g><title>unload_network_ops_symbols (93 samples, 0.02%)</title><rect x="39.0592%" y="565" width="0.0240%" height="15" fill="rgb(233,108,0)" fg:x="151496" fg:w="93"/><text x="39.3092%" y="575.50"></text></g><g><title>_dl_map_segments (140 samples, 0.04%)</title><rect x="39.0537%" y="645" width="0.0361%" height="15" fill="rgb(212,157,17)" fg:x="151475" fg:w="140"/><text x="39.3037%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (209 samples, 0.05%)</title><rect x="39.0470%" y="661" width="0.0539%" height="15" fill="rgb(225,213,38)" fg:x="151449" fg:w="209"/><text x="39.2970%" y="671.50"></text></g><g><title>_dl_map_object_deps (353 samples, 0.09%)</title><rect x="39.0246%" y="725" width="0.0910%" height="15" fill="rgb(248,16,11)" fg:x="151362" fg:w="353"/><text x="39.2746%" y="735.50"></text></g><g><title>_dl_catch_exception (350 samples, 0.09%)</title><rect x="39.0254%" y="709" width="0.0902%" height="15" fill="rgb(241,33,4)" fg:x="151365" fg:w="350"/><text x="39.2754%" y="719.50"></text></g><g><title>openaux (350 samples, 0.09%)</title><rect x="39.0254%" y="693" width="0.0902%" height="15" fill="rgb(222,26,43)" fg:x="151365" fg:w="350"/><text x="39.2754%" y="703.50"></text></g><g><title>_dl_map_object (350 samples, 0.09%)</title><rect x="39.0254%" y="677" width="0.0902%" height="15" fill="rgb(243,29,36)" fg:x="151365" fg:w="350"/><text x="39.2754%" y="687.50"></text></g><g><title>open_verify (54 samples, 0.01%)</title><rect x="39.1017%" y="661" width="0.0139%" height="15" fill="rgb(241,9,27)" fg:x="151661" fg:w="54"/><text x="39.3517%" y="671.50"></text></g><g><title>do_mprotect_pkey (39 samples, 0.01%)</title><rect x="39.1218%" y="629" width="0.0101%" height="15" fill="rgb(205,117,26)" fg:x="151739" fg:w="39"/><text x="39.3718%" y="639.50"></text></g><g><title>_dl_protect_relro (40 samples, 0.01%)</title><rect x="39.1218%" y="709" width="0.0103%" height="15" fill="rgb(209,80,39)" fg:x="151739" fg:w="40"/><text x="39.3718%" y="719.50"></text></g><g><title>__mprotect (40 samples, 0.01%)</title><rect x="39.1218%" y="693" width="0.0103%" height="15" fill="rgb(239,155,6)" fg:x="151739" fg:w="40"/><text x="39.3718%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="39.1218%" y="677" width="0.0103%" height="15" fill="rgb(212,104,12)" fg:x="151739" fg:w="40"/><text x="39.3718%" y="687.50"></text></g><g><title>do_syscall_64 (40 samples, 0.01%)</title><rect x="39.1218%" y="661" width="0.0103%" height="15" fill="rgb(234,204,3)" fg:x="151739" fg:w="40"/><text x="39.3718%" y="671.50"></text></g><g><title>__x64_sys_mprotect (40 samples, 0.01%)</title><rect x="39.1218%" y="645" width="0.0103%" height="15" fill="rgb(251,218,7)" fg:x="151739" fg:w="40"/><text x="39.3718%" y="655.50"></text></g><g><title>dl_new_hash (127 samples, 0.03%)</title><rect x="39.1850%" y="661" width="0.0327%" height="15" fill="rgb(221,81,32)" fg:x="151984" fg:w="127"/><text x="39.4350%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (429 samples, 0.11%)</title><rect x="39.1788%" y="677" width="0.1106%" height="15" fill="rgb(214,152,26)" fg:x="151960" fg:w="429"/><text x="39.4288%" y="687.50"></text></g><g><title>do_lookup_x (278 samples, 0.07%)</title><rect x="39.2177%" y="661" width="0.0717%" height="15" fill="rgb(223,22,3)" fg:x="152111" fg:w="278"/><text x="39.4677%" y="671.50"></text></g><g><title>__alloc_pages (58 samples, 0.01%)</title><rect x="39.3162%" y="549" width="0.0150%" height="15" fill="rgb(207,174,7)" fg:x="152493" fg:w="58"/><text x="39.5662%" y="559.50"></text></g><g><title>get_page_from_freelist (53 samples, 0.01%)</title><rect x="39.3175%" y="533" width="0.0137%" height="15" fill="rgb(224,19,52)" fg:x="152498" fg:w="53"/><text x="39.5675%" y="543.50"></text></g><g><title>alloc_pages_vma (62 samples, 0.02%)</title><rect x="39.3157%" y="565" width="0.0160%" height="15" fill="rgb(228,24,14)" fg:x="152491" fg:w="62"/><text x="39.5657%" y="575.50"></text></g><g><title>copy_page (81 samples, 0.02%)</title><rect x="39.3317%" y="565" width="0.0209%" height="15" fill="rgb(230,153,43)" fg:x="152553" fg:w="81"/><text x="39.5817%" y="575.50"></text></g><g><title>do_set_pte (45 samples, 0.01%)</title><rect x="39.3600%" y="549" width="0.0116%" height="15" fill="rgb(231,106,12)" fg:x="152663" fg:w="45"/><text x="39.6100%" y="559.50"></text></g><g><title>finish_fault (50 samples, 0.01%)</title><rect x="39.3590%" y="565" width="0.0129%" height="15" fill="rgb(215,92,2)" fg:x="152659" fg:w="50"/><text x="39.6090%" y="575.50"></text></g><g><title>do_fault (288 samples, 0.07%)</title><rect x="39.3000%" y="581" width="0.0743%" height="15" fill="rgb(249,143,25)" fg:x="152430" fg:w="288"/><text x="39.5500%" y="591.50"></text></g><g><title>__handle_mm_fault (315 samples, 0.08%)</title><rect x="39.2953%" y="613" width="0.0812%" height="15" fill="rgb(252,7,35)" fg:x="152412" fg:w="315"/><text x="39.5453%" y="623.50"></text></g><g><title>handle_pte_fault (299 samples, 0.08%)</title><rect x="39.2994%" y="597" width="0.0771%" height="15" fill="rgb(216,69,40)" fg:x="152428" fg:w="299"/><text x="39.5494%" y="607.50"></text></g><g><title>handle_mm_fault (328 samples, 0.08%)</title><rect x="39.2938%" y="629" width="0.0846%" height="15" fill="rgb(240,36,33)" fg:x="152406" fg:w="328"/><text x="39.5438%" y="639.50"></text></g><g><title>do_user_addr_fault (341 samples, 0.09%)</title><rect x="39.2909%" y="645" width="0.0879%" height="15" fill="rgb(231,128,14)" fg:x="152395" fg:w="341"/><text x="39.5409%" y="655.50"></text></g><g><title>asm_exc_page_fault (361 samples, 0.09%)</title><rect x="39.2894%" y="677" width="0.0931%" height="15" fill="rgb(245,143,14)" fg:x="152389" fg:w="361"/><text x="39.5394%" y="687.50"></text></g><g><title>exc_page_fault (358 samples, 0.09%)</title><rect x="39.2902%" y="661" width="0.0923%" height="15" fill="rgb(222,130,28)" fg:x="152392" fg:w="358"/><text x="39.5402%" y="671.50"></text></g><g><title>elf_machine_rela (957 samples, 0.25%)</title><rect x="39.1455%" y="693" width="0.2467%" height="15" fill="rgb(212,10,48)" fg:x="151831" fg:w="957"/><text x="39.3955%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (1,030 samples, 0.27%)</title><rect x="39.1321%" y="709" width="0.2656%" height="15" fill="rgb(254,118,45)" fg:x="151779" fg:w="1030"/><text x="39.3821%" y="719.50"></text></g><g><title>_dl_relocate_object (1,076 samples, 0.28%)</title><rect x="39.1210%" y="725" width="0.2774%" height="15" fill="rgb(228,6,45)" fg:x="151736" fg:w="1076"/><text x="39.3710%" y="735.50"></text></g><g><title>dl_main (1,552 samples, 0.40%)</title><rect x="39.0130%" y="741" width="0.4001%" height="15" fill="rgb(241,18,35)" fg:x="151317" fg:w="1552"/><text x="39.2630%" y="751.50"></text></g><g><title>_dl_sysdep_start (1,561 samples, 0.40%)</title><rect x="39.0125%" y="757" width="0.4025%" height="15" fill="rgb(227,214,53)" fg:x="151315" fg:w="1561"/><text x="39.2625%" y="767.50"></text></g><g><title>_dl_start_final (1,564 samples, 0.40%)</title><rect x="39.0120%" y="773" width="0.4032%" height="15" fill="rgb(224,107,51)" fg:x="151313" fg:w="1564"/><text x="39.2620%" y="783.50"></text></g><g><title>_dl_start (1,569 samples, 0.40%)</title><rect x="39.0115%" y="789" width="0.4045%" height="15" fill="rgb(248,60,28)" fg:x="151311" fg:w="1569"/><text x="39.2615%" y="799.50"></text></g><g><title>_start (4,312 samples, 1.11%)</title><rect x="38.3073%" y="805" width="1.1117%" height="15" fill="rgb(249,101,23)" fg:x="148580" fg:w="4312"/><text x="38.5573%" y="815.50"></text></g><g><title>asm_exc_page_fault (341 samples, 0.09%)</title><rect x="39.4191%" y="805" width="0.0879%" height="15" fill="rgb(228,51,19)" fg:x="152892" fg:w="341"/><text x="39.6691%" y="815.50"></text></g><g><title>__x64_sys_execve (44 samples, 0.01%)</title><rect x="39.5124%" y="773" width="0.0113%" height="15" fill="rgb(213,20,6)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="783.50"></text></g><g><title>do_execveat_common.isra.0 (44 samples, 0.01%)</title><rect x="39.5124%" y="757" width="0.0113%" height="15" fill="rgb(212,124,10)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="767.50"></text></g><g><title>bprm_execve (44 samples, 0.01%)</title><rect x="39.5124%" y="741" width="0.0113%" height="15" fill="rgb(248,3,40)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="751.50"></text></g><g><title>bprm_execve.part.0 (44 samples, 0.01%)</title><rect x="39.5124%" y="725" width="0.0113%" height="15" fill="rgb(223,178,23)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="735.50"></text></g><g><title>exec_binprm (44 samples, 0.01%)</title><rect x="39.5124%" y="709" width="0.0113%" height="15" fill="rgb(240,132,45)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="719.50"></text></g><g><title>search_binary_handler (44 samples, 0.01%)</title><rect x="39.5124%" y="693" width="0.0113%" height="15" fill="rgb(245,164,36)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="703.50"></text></g><g><title>load_elf_binary (44 samples, 0.01%)</title><rect x="39.5124%" y="677" width="0.0113%" height="15" fill="rgb(231,188,53)" fg:x="153254" fg:w="44"/><text x="39.7624%" y="687.50"></text></g><g><title>free_pages_and_swap_cache (73 samples, 0.02%)</title><rect x="39.5361%" y="661" width="0.0188%" height="15" fill="rgb(237,198,39)" fg:x="153346" fg:w="73"/><text x="39.7861%" y="671.50"></text></g><g><title>release_pages (71 samples, 0.02%)</title><rect x="39.5366%" y="645" width="0.0183%" height="15" fill="rgb(223,120,35)" fg:x="153348" fg:w="71"/><text x="39.7866%" y="655.50"></text></g><g><title>tlb_finish_mmu (98 samples, 0.03%)</title><rect x="39.5356%" y="677" width="0.0253%" height="15" fill="rgb(253,107,49)" fg:x="153344" fg:w="98"/><text x="39.7856%" y="687.50"></text></g><g><title>__mod_lruvec_state (70 samples, 0.02%)</title><rect x="39.7718%" y="549" width="0.0180%" height="15" fill="rgb(216,44,31)" fg:x="154260" fg:w="70"/><text x="40.0218%" y="559.50"></text></g><g><title>__mod_lruvec_page_state (90 samples, 0.02%)</title><rect x="39.7684%" y="565" width="0.0232%" height="15" fill="rgb(253,87,21)" fg:x="154247" fg:w="90"/><text x="40.0184%" y="575.50"></text></g><g><title>page_remove_file_rmap (187 samples, 0.05%)</title><rect x="39.7452%" y="581" width="0.0482%" height="15" fill="rgb(226,18,2)" fg:x="154157" fg:w="187"/><text x="39.9952%" y="591.50"></text></g><g><title>page_remove_rmap (287 samples, 0.07%)</title><rect x="39.7249%" y="597" width="0.0740%" height="15" fill="rgb(216,8,46)" fg:x="154078" fg:w="287"/><text x="39.9749%" y="607.50"></text></g><g><title>free_pages_and_swap_cache (92 samples, 0.02%)</title><rect x="39.7988%" y="581" width="0.0237%" height="15" fill="rgb(226,140,39)" fg:x="154365" fg:w="92"/><text x="40.0488%" y="591.50"></text></g><g><title>release_pages (89 samples, 0.02%)</title><rect x="39.7996%" y="565" width="0.0229%" height="15" fill="rgb(221,194,54)" fg:x="154368" fg:w="89"/><text x="40.0496%" y="575.50"></text></g><g><title>tlb_flush_mmu (180 samples, 0.05%)</title><rect x="39.7988%" y="597" width="0.0464%" height="15" fill="rgb(213,92,11)" fg:x="154365" fg:w="180"/><text x="40.0488%" y="607.50"></text></g><g><title>free_swap_cache (88 samples, 0.02%)</title><rect x="39.8226%" y="581" width="0.0227%" height="15" fill="rgb(229,162,46)" fg:x="154457" fg:w="88"/><text x="40.0726%" y="591.50"></text></g><g><title>zap_pmd_range.isra.0 (1,127 samples, 0.29%)</title><rect x="39.5624%" y="629" width="0.2906%" height="15" fill="rgb(214,111,36)" fg:x="153448" fg:w="1127"/><text x="39.8124%" y="639.50"></text></g><g><title>zap_pte_range (1,105 samples, 0.28%)</title><rect x="39.5681%" y="613" width="0.2849%" height="15" fill="rgb(207,6,21)" fg:x="153470" fg:w="1105"/><text x="39.8181%" y="623.50"></text></g><g><title>unmap_page_range (1,130 samples, 0.29%)</title><rect x="39.5619%" y="645" width="0.2913%" height="15" fill="rgb(213,127,38)" fg:x="153446" fg:w="1130"/><text x="39.8119%" y="655.50"></text></g><g><title>unmap_single_vma (1,133 samples, 0.29%)</title><rect x="39.5614%" y="661" width="0.2921%" height="15" fill="rgb(238,118,32)" fg:x="153444" fg:w="1133"/><text x="39.8114%" y="671.50"></text></g><g><title>exit_mm (1,267 samples, 0.33%)</title><rect x="39.5271%" y="725" width="0.3267%" height="15" fill="rgb(240,139,39)" fg:x="153311" fg:w="1267"/><text x="39.7771%" y="735.50"></text></g><g><title>mmput (1,267 samples, 0.33%)</title><rect x="39.5271%" y="709" width="0.3267%" height="15" fill="rgb(235,10,37)" fg:x="153311" fg:w="1267"/><text x="39.7771%" y="719.50"></text></g><g><title>exit_mmap (1,266 samples, 0.33%)</title><rect x="39.5274%" y="693" width="0.3264%" height="15" fill="rgb(249,171,38)" fg:x="153312" fg:w="1266"/><text x="39.7774%" y="703.50"></text></g><g><title>unmap_vmas (1,136 samples, 0.29%)</title><rect x="39.5609%" y="677" width="0.2929%" height="15" fill="rgb(242,144,32)" fg:x="153442" fg:w="1136"/><text x="39.8109%" y="687.50"></text></g><g><title>do_exit (1,298 samples, 0.33%)</title><rect x="39.5237%" y="741" width="0.3347%" height="15" fill="rgb(217,117,21)" fg:x="153298" fg:w="1298"/><text x="39.7737%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,344 samples, 0.35%)</title><rect x="39.5121%" y="805" width="0.3465%" height="15" fill="rgb(249,87,1)" fg:x="153253" fg:w="1344"/><text x="39.7621%" y="815.50"></text></g><g><title>do_syscall_64 (1,343 samples, 0.35%)</title><rect x="39.5124%" y="789" width="0.3463%" height="15" fill="rgb(248,196,48)" fg:x="153254" fg:w="1343"/><text x="39.7624%" y="799.50"></text></g><g><title>__x64_sys_exit_group (1,299 samples, 0.33%)</title><rect x="39.5237%" y="773" width="0.3349%" height="15" fill="rgb(251,206,33)" fg:x="153298" fg:w="1299"/><text x="39.7737%" y="783.50"></text></g><g><title>do_group_exit (1,299 samples, 0.33%)</title><rect x="39.5237%" y="757" width="0.3349%" height="15" fill="rgb(232,141,28)" fg:x="153298" fg:w="1299"/><text x="39.7737%" y="767.50"></text></g><g><title>clang (12,675 samples, 3.27%)</title><rect x="36.5967%" y="821" width="3.2679%" height="15" fill="rgb(209,167,14)" fg:x="141945" fg:w="12675"/><text x="36.8467%" y="831.50">cla..</text></g><g><title>[perf-742530.map] (358 samples, 0.09%)</title><rect x="39.8667%" y="805" width="0.0923%" height="15" fill="rgb(225,11,50)" fg:x="154628" fg:w="358"/><text x="40.1167%" y="815.50"></text></g><g><title>find-action-loo (375 samples, 0.10%)</title><rect x="39.8656%" y="821" width="0.0967%" height="15" fill="rgb(209,50,20)" fg:x="154624" fg:w="375"/><text x="40.1156%" y="831.50"></text></g><g><title>globbing_pool-0 (43 samples, 0.01%)</title><rect x="39.9623%" y="821" width="0.0111%" height="15" fill="rgb(212,17,46)" fg:x="154999" fg:w="43"/><text x="40.2123%" y="831.50"></text></g><g><title>[libunix_jni.so] (44 samples, 0.01%)</title><rect x="39.9744%" y="805" width="0.0113%" height="15" fill="rgb(216,101,39)" fg:x="155046" fg:w="44"/><text x="40.2244%" y="815.50"></text></g><g><title>[perf-742530.map] (186 samples, 0.05%)</title><rect x="39.9858%" y="805" width="0.0480%" height="15" fill="rgb(212,228,48)" fg:x="155090" fg:w="186"/><text x="40.2358%" y="815.50"></text></g><g><title>globbing_pool-1 (245 samples, 0.06%)</title><rect x="39.9734%" y="821" width="0.0632%" height="15" fill="rgb(250,6,50)" fg:x="155042" fg:w="245"/><text x="40.2234%" y="831.50"></text></g><g><title>[perf-742530.map] (129 samples, 0.03%)</title><rect x="40.0420%" y="805" width="0.0333%" height="15" fill="rgb(250,160,48)" fg:x="155308" fg:w="129"/><text x="40.2920%" y="815.50"></text></g><g><title>globbing_pool-2 (162 samples, 0.04%)</title><rect x="40.0366%" y="821" width="0.0418%" height="15" fill="rgb(244,216,33)" fg:x="155287" fg:w="162"/><text x="40.2866%" y="831.50"></text></g><g><title>[libunix_jni.so] (63 samples, 0.02%)</title><rect x="40.0799%" y="805" width="0.0162%" height="15" fill="rgb(207,157,5)" fg:x="155455" fg:w="63"/><text x="40.3299%" y="815.50"></text></g><g><title>[perf-742530.map] (245 samples, 0.06%)</title><rect x="40.0961%" y="805" width="0.0632%" height="15" fill="rgb(228,199,8)" fg:x="155518" fg:w="245"/><text x="40.3461%" y="815.50"></text></g><g><title>globbing_pool-3 (322 samples, 0.08%)</title><rect x="40.0783%" y="821" width="0.0830%" height="15" fill="rgb(227,80,20)" fg:x="155449" fg:w="322"/><text x="40.3283%" y="831.50"></text></g><g><title>[libunix_jni.so] (40 samples, 0.01%)</title><rect x="40.1616%" y="805" width="0.0103%" height="15" fill="rgb(222,9,33)" fg:x="155772" fg:w="40"/><text x="40.4116%" y="815.50"></text></g><g><title>[perf-742530.map] (153 samples, 0.04%)</title><rect x="40.1719%" y="805" width="0.0394%" height="15" fill="rgb(239,44,28)" fg:x="155812" fg:w="153"/><text x="40.4219%" y="815.50"></text></g><g><title>globbing_pool-4 (198 samples, 0.05%)</title><rect x="40.1613%" y="821" width="0.0510%" height="15" fill="rgb(249,187,43)" fg:x="155771" fg:w="198"/><text x="40.4113%" y="831.50"></text></g><g><title>[perf-742530.map] (140 samples, 0.04%)</title><rect x="40.2230%" y="805" width="0.0361%" height="15" fill="rgb(216,141,28)" fg:x="156010" fg:w="140"/><text x="40.4730%" y="815.50"></text></g><g><title>globbing_pool-5 (186 samples, 0.05%)</title><rect x="40.2124%" y="821" width="0.0480%" height="15" fill="rgb(230,154,53)" fg:x="155969" fg:w="186"/><text x="40.4624%" y="831.50"></text></g><g><title>[libunix_jni.so] (57 samples, 0.01%)</title><rect x="40.2611%" y="805" width="0.0147%" height="15" fill="rgb(227,82,4)" fg:x="156158" fg:w="57"/><text x="40.5111%" y="815.50"></text></g><g><title>[perf-742530.map] (196 samples, 0.05%)</title><rect x="40.2758%" y="805" width="0.0505%" height="15" fill="rgb(220,107,16)" fg:x="156215" fg:w="196"/><text x="40.5258%" y="815.50"></text></g><g><title>page_remove_rmap (74 samples, 0.02%)</title><rect x="40.3454%" y="533" width="0.0191%" height="15" fill="rgb(207,187,2)" fg:x="156485" fg:w="74"/><text x="40.5954%" y="543.50"></text></g><g><title>__free_one_page (75 samples, 0.02%)</title><rect x="40.4148%" y="437" width="0.0193%" height="15" fill="rgb(210,162,52)" fg:x="156754" fg:w="75"/><text x="40.6648%" y="447.50"></text></g><g><title>free_unref_page_list (163 samples, 0.04%)</title><rect x="40.3929%" y="485" width="0.0420%" height="15" fill="rgb(217,216,49)" fg:x="156669" fg:w="163"/><text x="40.6429%" y="495.50"></text></g><g><title>free_unref_page_commit.constprop.0 (128 samples, 0.03%)</title><rect x="40.4019%" y="469" width="0.0330%" height="15" fill="rgb(218,146,49)" fg:x="156704" fg:w="128"/><text x="40.6519%" y="479.50"></text></g><g><title>free_pcppages_bulk (117 samples, 0.03%)</title><rect x="40.4047%" y="453" width="0.0302%" height="15" fill="rgb(216,55,40)" fg:x="156715" fg:w="117"/><text x="40.6547%" y="463.50"></text></g><g><title>free_pages_and_swap_cache (281 samples, 0.07%)</title><rect x="40.3645%" y="517" width="0.0724%" height="15" fill="rgb(208,196,21)" fg:x="156559" fg:w="281"/><text x="40.6145%" y="527.50"></text></g><g><title>release_pages (272 samples, 0.07%)</title><rect x="40.3668%" y="501" width="0.0701%" height="15" fill="rgb(242,117,42)" fg:x="156568" fg:w="272"/><text x="40.6168%" y="511.50"></text></g><g><title>tlb_flush_mmu (298 samples, 0.08%)</title><rect x="40.3645%" y="533" width="0.0768%" height="15" fill="rgb(210,11,23)" fg:x="156559" fg:w="298"/><text x="40.6145%" y="543.50"></text></g><g><title>globbing_pool-6 (707 samples, 0.18%)</title><rect x="40.2603%" y="821" width="0.1823%" height="15" fill="rgb(217,110,2)" fg:x="156155" fg:w="707"/><text x="40.5103%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (446 samples, 0.11%)</title><rect x="40.3276%" y="805" width="0.1150%" height="15" fill="rgb(229,77,54)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="815.50"></text></g><g><title>do_syscall_64 (446 samples, 0.11%)</title><rect x="40.3276%" y="789" width="0.1150%" height="15" fill="rgb(218,53,16)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (446 samples, 0.11%)</title><rect x="40.3276%" y="773" width="0.1150%" height="15" fill="rgb(215,38,13)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (446 samples, 0.11%)</title><rect x="40.3276%" y="757" width="0.1150%" height="15" fill="rgb(235,42,18)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="767.50"></text></g><g><title>exit_to_user_mode_loop (446 samples, 0.11%)</title><rect x="40.3276%" y="741" width="0.1150%" height="15" fill="rgb(219,66,54)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="751.50"></text></g><g><title>arch_do_signal_or_restart (446 samples, 0.11%)</title><rect x="40.3276%" y="725" width="0.1150%" height="15" fill="rgb(222,205,4)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="735.50"></text></g><g><title>get_signal (446 samples, 0.11%)</title><rect x="40.3276%" y="709" width="0.1150%" height="15" fill="rgb(227,213,46)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="719.50"></text></g><g><title>do_group_exit (446 samples, 0.11%)</title><rect x="40.3276%" y="693" width="0.1150%" height="15" fill="rgb(250,145,42)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="703.50"></text></g><g><title>do_exit (446 samples, 0.11%)</title><rect x="40.3276%" y="677" width="0.1150%" height="15" fill="rgb(219,15,2)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="687.50"></text></g><g><title>exit_mm (446 samples, 0.11%)</title><rect x="40.3276%" y="661" width="0.1150%" height="15" fill="rgb(231,181,52)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="671.50"></text></g><g><title>mmput (446 samples, 0.11%)</title><rect x="40.3276%" y="645" width="0.1150%" height="15" fill="rgb(235,1,42)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="655.50"></text></g><g><title>exit_mmap (446 samples, 0.11%)</title><rect x="40.3276%" y="629" width="0.1150%" height="15" fill="rgb(249,88,27)" fg:x="156416" fg:w="446"/><text x="40.5776%" y="639.50"></text></g><g><title>unmap_vmas (445 samples, 0.11%)</title><rect x="40.3279%" y="613" width="0.1147%" height="15" fill="rgb(235,145,16)" fg:x="156417" fg:w="445"/><text x="40.5779%" y="623.50"></text></g><g><title>unmap_single_vma (445 samples, 0.11%)</title><rect x="40.3279%" y="597" width="0.1147%" height="15" fill="rgb(237,114,19)" fg:x="156417" fg:w="445"/><text x="40.5779%" y="607.50"></text></g><g><title>unmap_page_range (445 samples, 0.11%)</title><rect x="40.3279%" y="581" width="0.1147%" height="15" fill="rgb(238,51,50)" fg:x="156417" fg:w="445"/><text x="40.5779%" y="591.50"></text></g><g><title>zap_pmd_range.isra.0 (444 samples, 0.11%)</title><rect x="40.3282%" y="565" width="0.1145%" height="15" fill="rgb(205,194,25)" fg:x="156418" fg:w="444"/><text x="40.5782%" y="575.50"></text></g><g><title>zap_pte_range (437 samples, 0.11%)</title><rect x="40.3300%" y="549" width="0.1127%" height="15" fill="rgb(215,203,17)" fg:x="156425" fg:w="437"/><text x="40.5800%" y="559.50"></text></g><g><title>[perf-742530.map] (87 samples, 0.02%)</title><rect x="40.4462%" y="805" width="0.0224%" height="15" fill="rgb(233,112,49)" fg:x="156876" fg:w="87"/><text x="40.6962%" y="815.50"></text></g><g><title>globbing_pool-7 (103 samples, 0.03%)</title><rect x="40.4426%" y="821" width="0.0266%" height="15" fill="rgb(241,130,26)" fg:x="156862" fg:w="103"/><text x="40.6926%" y="831.50"></text></g><g><title>[perf-742530.map] (140 samples, 0.04%)</title><rect x="40.4785%" y="805" width="0.0361%" height="15" fill="rgb(252,223,19)" fg:x="157001" fg:w="140"/><text x="40.7285%" y="815.50"></text></g><g><title>globbing_pool-8 (180 samples, 0.05%)</title><rect x="40.4692%" y="821" width="0.0464%" height="15" fill="rgb(211,95,25)" fg:x="156965" fg:w="180"/><text x="40.7192%" y="831.50"></text></g><g><title>[perf-742530.map] (152 samples, 0.04%)</title><rect x="40.5256%" y="805" width="0.0392%" height="15" fill="rgb(251,182,27)" fg:x="157184" fg:w="152"/><text x="40.7756%" y="815.50"></text></g><g><title>globbing_pool-9 (194 samples, 0.05%)</title><rect x="40.5156%" y="821" width="0.0500%" height="15" fill="rgb(238,24,4)" fg:x="157145" fg:w="194"/><text x="40.7656%" y="831.50"></text></g><g><title>[anon] (221 samples, 0.06%)</title><rect x="40.5700%" y="805" width="0.0570%" height="15" fill="rgb(224,220,25)" fg:x="157356" fg:w="221"/><text x="40.8200%" y="815.50"></text></g><g><title>btrfs_rmdir (42 samples, 0.01%)</title><rect x="40.6512%" y="677" width="0.0108%" height="15" fill="rgb(239,133,26)" fg:x="157671" fg:w="42"/><text x="40.9012%" y="687.50"></text></g><g><title>btrfs_evict_inode (53 samples, 0.01%)</title><rect x="40.6628%" y="645" width="0.0137%" height="15" fill="rgb(211,94,48)" fg:x="157716" fg:w="53"/><text x="40.9128%" y="655.50"></text></g><g><title>iput (58 samples, 0.01%)</title><rect x="40.6626%" y="677" width="0.0150%" height="15" fill="rgb(239,87,6)" fg:x="157715" fg:w="58"/><text x="40.9126%" y="687.50"></text></g><g><title>evict (58 samples, 0.01%)</title><rect x="40.6626%" y="661" width="0.0150%" height="15" fill="rgb(227,62,0)" fg:x="157715" fg:w="58"/><text x="40.9126%" y="671.50"></text></g><g><title>do_rmdir (118 samples, 0.03%)</title><rect x="40.6499%" y="709" width="0.0304%" height="15" fill="rgb(211,226,4)" fg:x="157666" fg:w="118"/><text x="40.8999%" y="719.50"></text></g><g><title>vfs_rmdir (113 samples, 0.03%)</title><rect x="40.6512%" y="693" width="0.0291%" height="15" fill="rgb(253,38,52)" fg:x="157671" fg:w="113"/><text x="40.9012%" y="703.50"></text></g><g><title>btrfs_del_items (58 samples, 0.01%)</title><rect x="40.6878%" y="613" width="0.0150%" height="15" fill="rgb(229,126,40)" fg:x="157813" fg:w="58"/><text x="40.9378%" y="623.50"></text></g><g><title>btrfs_lookup_inode (56 samples, 0.01%)</title><rect x="40.7038%" y="613" width="0.0144%" height="15" fill="rgb(229,165,44)" fg:x="157875" fg:w="56"/><text x="40.9538%" y="623.50"></text></g><g><title>btrfs_search_slot (56 samples, 0.01%)</title><rect x="40.7038%" y="597" width="0.0144%" height="15" fill="rgb(247,95,47)" fg:x="157875" fg:w="56"/><text x="40.9538%" y="607.50"></text></g><g><title>__btrfs_update_delayed_inode (126 samples, 0.03%)</title><rect x="40.6878%" y="629" width="0.0325%" height="15" fill="rgb(216,140,30)" fg:x="157813" fg:w="126"/><text x="40.9378%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (142 samples, 0.04%)</title><rect x="40.6873%" y="645" width="0.0366%" height="15" fill="rgb(246,214,8)" fg:x="157811" fg:w="142"/><text x="40.9373%" y="655.50"></text></g><g><title>btrfs_del_orphan_item (58 samples, 0.01%)</title><rect x="40.7239%" y="645" width="0.0150%" height="15" fill="rgb(227,224,15)" fg:x="157953" fg:w="58"/><text x="40.9739%" y="655.50"></text></g><g><title>btrfs_search_slot (46 samples, 0.01%)</title><rect x="40.7270%" y="629" width="0.0119%" height="15" fill="rgb(233,175,4)" fg:x="157965" fg:w="46"/><text x="40.9770%" y="639.50"></text></g><g><title>btrfs_del_items (54 samples, 0.01%)</title><rect x="40.7476%" y="629" width="0.0139%" height="15" fill="rgb(221,66,45)" fg:x="158045" fg:w="54"/><text x="40.9976%" y="639.50"></text></g><g><title>btrfs_search_slot (41 samples, 0.01%)</title><rect x="40.7688%" y="629" width="0.0106%" height="15" fill="rgb(221,178,18)" fg:x="158127" fg:w="41"/><text x="41.0188%" y="639.50"></text></g><g><title>btrfs_truncate_inode_items (141 samples, 0.04%)</title><rect x="40.7451%" y="645" width="0.0364%" height="15" fill="rgb(213,81,29)" fg:x="158035" fg:w="141"/><text x="40.9951%" y="655.50"></text></g><g><title>evict_inode_truncate_pages (72 samples, 0.02%)</title><rect x="40.7817%" y="645" width="0.0186%" height="15" fill="rgb(220,89,49)" fg:x="158177" fg:w="72"/><text x="41.0317%" y="655.50"></text></g><g><title>truncate_inode_pages_final (46 samples, 0.01%)</title><rect x="40.7884%" y="629" width="0.0119%" height="15" fill="rgb(227,60,33)" fg:x="158203" fg:w="46"/><text x="41.0384%" y="639.50"></text></g><g><title>truncate_inode_pages_range (45 samples, 0.01%)</title><rect x="40.7886%" y="613" width="0.0116%" height="15" fill="rgb(205,113,12)" fg:x="158204" fg:w="45"/><text x="41.0386%" y="623.50"></text></g><g><title>btrfs_evict_inode (465 samples, 0.12%)</title><rect x="40.6858%" y="661" width="0.1199%" height="15" fill="rgb(211,32,1)" fg:x="157805" fg:w="465"/><text x="40.9358%" y="671.50"></text></g><g><title>iput (505 samples, 0.13%)</title><rect x="40.6850%" y="693" width="0.1302%" height="15" fill="rgb(246,2,12)" fg:x="157802" fg:w="505"/><text x="40.9350%" y="703.50"></text></g><g><title>evict (504 samples, 0.13%)</title><rect x="40.6852%" y="677" width="0.1299%" height="15" fill="rgb(243,37,27)" fg:x="157803" fg:w="504"/><text x="40.9352%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (41 samples, 0.01%)</title><rect x="40.8185%" y="645" width="0.0106%" height="15" fill="rgb(248,211,31)" fg:x="158320" fg:w="41"/><text x="41.0685%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (46 samples, 0.01%)</title><rect x="40.8291%" y="629" width="0.0119%" height="15" fill="rgb(242,146,47)" fg:x="158361" fg:w="46"/><text x="41.0791%" y="639.50"></text></g><g><title>btrfs_del_inode_ref_in_log (48 samples, 0.01%)</title><rect x="40.8291%" y="645" width="0.0124%" height="15" fill="rgb(206,70,20)" fg:x="158361" fg:w="48"/><text x="41.0791%" y="655.50"></text></g><g><title>btrfs_del_items (59 samples, 0.02%)</title><rect x="40.8464%" y="629" width="0.0152%" height="15" fill="rgb(215,10,51)" fg:x="158428" fg:w="59"/><text x="41.0964%" y="639.50"></text></g><g><title>btrfs_delete_one_dir_name (67 samples, 0.02%)</title><rect x="40.8461%" y="645" width="0.0173%" height="15" fill="rgb(243,178,53)" fg:x="158427" fg:w="67"/><text x="41.0961%" y="655.50"></text></g><g><title>btrfs_lookup_dir_item (55 samples, 0.01%)</title><rect x="40.8642%" y="645" width="0.0142%" height="15" fill="rgb(233,221,20)" fg:x="158497" fg:w="55"/><text x="41.1142%" y="655.50"></text></g><g><title>btrfs_search_slot (48 samples, 0.01%)</title><rect x="40.8660%" y="629" width="0.0124%" height="15" fill="rgb(218,95,35)" fg:x="158504" fg:w="48"/><text x="41.1160%" y="639.50"></text></g><g><title>__btrfs_unlink_inode (251 samples, 0.06%)</title><rect x="40.8170%" y="661" width="0.0647%" height="15" fill="rgb(229,13,5)" fg:x="158314" fg:w="251"/><text x="41.0670%" y="671.50"></text></g><g><title>btrfs_search_slot (39 samples, 0.01%)</title><rect x="40.8874%" y="613" width="0.0101%" height="15" fill="rgb(252,164,30)" fg:x="158587" fg:w="39"/><text x="41.1374%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (47 samples, 0.01%)</title><rect x="40.8874%" y="629" width="0.0121%" height="15" fill="rgb(232,68,36)" fg:x="158587" fg:w="47"/><text x="41.1374%" y="639.50"></text></g><g><title>btrfs_orphan_add (55 samples, 0.01%)</title><rect x="40.8858%" y="661" width="0.0142%" height="15" fill="rgb(219,59,54)" fg:x="158581" fg:w="55"/><text x="41.1358%" y="671.50"></text></g><g><title>btrfs_insert_orphan_item (55 samples, 0.01%)</title><rect x="40.8858%" y="645" width="0.0142%" height="15" fill="rgb(250,92,33)" fg:x="158581" fg:w="55"/><text x="41.1358%" y="655.50"></text></g><g><title>btrfs_unlink (344 samples, 0.09%)</title><rect x="40.8170%" y="677" width="0.0887%" height="15" fill="rgb(229,162,54)" fg:x="158314" fg:w="344"/><text x="41.0670%" y="687.50"></text></g><g><title>do_unlinkat (885 samples, 0.23%)</title><rect x="40.6803%" y="709" width="0.2282%" height="15" fill="rgb(244,114,52)" fg:x="157784" fg:w="885"/><text x="40.9303%" y="719.50"></text></g><g><title>vfs_unlink (357 samples, 0.09%)</title><rect x="40.8165%" y="693" width="0.0920%" height="15" fill="rgb(212,211,43)" fg:x="158312" fg:w="357"/><text x="41.0665%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (1,010 samples, 0.26%)</title><rect x="40.6499%" y="725" width="0.2604%" height="15" fill="rgb(226,147,8)" fg:x="157666" fg:w="1010"/><text x="40.8999%" y="735.50"></text></g><g><title>[[falcon_kal]] (45 samples, 0.01%)</title><rect x="40.9209%" y="677" width="0.0116%" height="15" fill="rgb(226,23,13)" fg:x="158717" fg:w="45"/><text x="41.1709%" y="687.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (42 samples, 0.01%)</title><rect x="40.9335%" y="677" width="0.0108%" height="15" fill="rgb(240,63,4)" fg:x="158766" fg:w="42"/><text x="41.1835%" y="687.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (117 samples, 0.03%)</title><rect x="40.9181%" y="709" width="0.0302%" height="15" fill="rgb(221,1,32)" fg:x="158706" fg:w="117"/><text x="41.1681%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (109 samples, 0.03%)</title><rect x="40.9201%" y="693" width="0.0281%" height="15" fill="rgb(242,117,10)" fg:x="158714" fg:w="109"/><text x="41.1701%" y="703.50"></text></g><g><title>do_syscall_64 (1,168 samples, 0.30%)</title><rect x="40.6479%" y="757" width="0.3011%" height="15" fill="rgb(249,172,44)" fg:x="157658" fg:w="1168"/><text x="40.8979%" y="767.50"></text></g><g><title>unload_network_ops_symbols (1,165 samples, 0.30%)</title><rect x="40.6486%" y="741" width="0.3004%" height="15" fill="rgb(244,46,45)" fg:x="157661" fg:w="1165"/><text x="40.8986%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (122 samples, 0.03%)</title><rect x="40.9175%" y="725" width="0.0315%" height="15" fill="rgb(206,43,17)" fg:x="158704" fg:w="122"/><text x="41.1675%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,170 samples, 0.30%)</title><rect x="40.6476%" y="773" width="0.3017%" height="15" fill="rgb(239,218,39)" fg:x="157657" fg:w="1170"/><text x="40.8976%" y="783.50"></text></g><g><title>__GI_unlinkat (1,174 samples, 0.30%)</title><rect x="40.6471%" y="789" width="0.3027%" height="15" fill="rgb(208,169,54)" fg:x="157655" fg:w="1174"/><text x="40.8971%" y="799.50"></text></g><g><title>[libunix_jni.so] (1,290 samples, 0.33%)</title><rect x="40.6270%" y="805" width="0.3326%" height="15" fill="rgb(247,25,42)" fg:x="157577" fg:w="1290"/><text x="40.8770%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (47 samples, 0.01%)</title><rect x="41.4956%" y="629" width="0.0121%" height="15" fill="rgb(226,23,31)" fg:x="160946" fg:w="47"/><text x="41.7456%" y="639.50"></text></g><g><title>ClassFileParser::parse_constant_pool (50 samples, 0.01%)</title><rect x="41.4951%" y="645" width="0.0129%" height="15" fill="rgb(247,16,28)" fg:x="160944" fg:w="50"/><text x="41.7451%" y="655.50"></text></g><g><title>ClassFileParser::ClassFileParser (67 samples, 0.02%)</title><rect x="41.4945%" y="677" width="0.0173%" height="15" fill="rgb(231,147,38)" fg:x="160942" fg:w="67"/><text x="41.7445%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (67 samples, 0.02%)</title><rect x="41.4945%" y="661" width="0.0173%" height="15" fill="rgb(253,81,48)" fg:x="160942" fg:w="67"/><text x="41.7445%" y="671.50"></text></g><g><title>ClassLoader::load_class (113 samples, 0.03%)</title><rect x="41.4917%" y="709" width="0.0291%" height="15" fill="rgb(249,222,43)" fg:x="160931" fg:w="113"/><text x="41.7417%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (103 samples, 0.03%)</title><rect x="41.4943%" y="693" width="0.0266%" height="15" fill="rgb(221,3,27)" fg:x="160941" fg:w="103"/><text x="41.7443%" y="703.50"></text></g><g><title>SystemDictionary::load_instance_class (126 samples, 0.03%)</title><rect x="41.4917%" y="725" width="0.0325%" height="15" fill="rgb(228,180,5)" fg:x="160931" fg:w="126"/><text x="41.7417%" y="735.50"></text></g><g><title>ConstantPool::klass_at_impl (137 samples, 0.04%)</title><rect x="41.4894%" y="773" width="0.0353%" height="15" fill="rgb(227,131,42)" fg:x="160922" fg:w="137"/><text x="41.7394%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_fail (136 samples, 0.04%)</title><rect x="41.4896%" y="757" width="0.0351%" height="15" fill="rgb(212,3,39)" fg:x="160923" fg:w="136"/><text x="41.7396%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (136 samples, 0.04%)</title><rect x="41.4896%" y="741" width="0.0351%" height="15" fill="rgb(226,45,5)" fg:x="160923" fg:w="136"/><text x="41.7396%" y="751.50"></text></g><g><title>Rewriter::rewrite (55 samples, 0.01%)</title><rect x="41.5379%" y="741" width="0.0142%" height="15" fill="rgb(215,167,45)" fg:x="161110" fg:w="55"/><text x="41.7879%" y="751.50"></text></g><g><title>Rewriter::Rewriter (54 samples, 0.01%)</title><rect x="41.5381%" y="725" width="0.0139%" height="15" fill="rgb(250,218,53)" fg:x="161111" fg:w="54"/><text x="41.7881%" y="735.50"></text></g><g><title>InstanceKlass::link_class_impl (127 samples, 0.03%)</title><rect x="41.5260%" y="757" width="0.0327%" height="15" fill="rgb(207,140,0)" fg:x="161064" fg:w="127"/><text x="41.7760%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (274 samples, 0.07%)</title><rect x="41.4891%" y="789" width="0.0706%" height="15" fill="rgb(238,133,51)" fg:x="160921" fg:w="274"/><text x="41.7391%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (134 samples, 0.03%)</title><rect x="41.5252%" y="773" width="0.0345%" height="15" fill="rgb(218,203,53)" fg:x="161061" fg:w="134"/><text x="41.7752%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (47 samples, 0.01%)</title><rect x="41.5724%" y="789" width="0.0121%" height="15" fill="rgb(226,184,25)" fg:x="161244" fg:w="47"/><text x="41.8224%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (46 samples, 0.01%)</title><rect x="41.5727%" y="773" width="0.0119%" height="15" fill="rgb(231,121,21)" fg:x="161245" fg:w="46"/><text x="41.8227%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (40 samples, 0.01%)</title><rect x="41.5742%" y="757" width="0.0103%" height="15" fill="rgb(251,14,34)" fg:x="161251" fg:w="40"/><text x="41.8242%" y="767.50"></text></g><g><title>LinkResolver::resolve_field (53 samples, 0.01%)</title><rect x="41.6142%" y="741" width="0.0137%" height="15" fill="rgb(249,193,11)" fg:x="161406" fg:w="53"/><text x="41.8642%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (106 samples, 0.03%)</title><rect x="41.6008%" y="773" width="0.0273%" height="15" fill="rgb(220,172,37)" fg:x="161354" fg:w="106"/><text x="41.8508%" y="783.50"></text></g><g><title>LinkResolver::resolve_field_access (94 samples, 0.02%)</title><rect x="41.6039%" y="757" width="0.0242%" height="15" fill="rgb(231,229,43)" fg:x="161366" fg:w="94"/><text x="41.8539%" y="767.50"></text></g><g><title>ClassFileParser::ClassFileParser (46 samples, 0.01%)</title><rect x="41.6397%" y="645" width="0.0119%" height="15" fill="rgb(250,161,5)" fg:x="161505" fg:w="46"/><text x="41.8897%" y="655.50"></text></g><g><title>ClassFileParser::parse_stream (46 samples, 0.01%)</title><rect x="41.6397%" y="629" width="0.0119%" height="15" fill="rgb(218,225,18)" fg:x="161505" fg:w="46"/><text x="41.8897%" y="639.50"></text></g><g><title>ClassLoader::load_class (71 samples, 0.02%)</title><rect x="41.6379%" y="677" width="0.0183%" height="15" fill="rgb(245,45,42)" fg:x="161498" fg:w="71"/><text x="41.8879%" y="687.50"></text></g><g><title>KlassFactory::create_from_stream (64 samples, 0.02%)</title><rect x="41.6397%" y="661" width="0.0165%" height="15" fill="rgb(211,115,1)" fg:x="161505" fg:w="64"/><text x="41.8897%" y="671.50"></text></g><g><title>SystemDictionary::load_instance_class (79 samples, 0.02%)</title><rect x="41.6379%" y="693" width="0.0204%" height="15" fill="rgb(248,133,52)" fg:x="161498" fg:w="79"/><text x="41.8879%" y="703.50"></text></g><g><title>ConstantPool::klass_ref_at (94 samples, 0.02%)</title><rect x="41.6345%" y="741" width="0.0242%" height="15" fill="rgb(238,100,21)" fg:x="161485" fg:w="94"/><text x="41.8845%" y="751.50"></text></g><g><title>SystemDictionary::resolve_or_fail (92 samples, 0.02%)</title><rect x="41.6351%" y="725" width="0.0237%" height="15" fill="rgb(247,144,11)" fg:x="161487" fg:w="92"/><text x="41.8851%" y="735.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (92 samples, 0.02%)</title><rect x="41.6351%" y="709" width="0.0237%" height="15" fill="rgb(206,164,16)" fg:x="161487" fg:w="92"/><text x="41.8851%" y="719.50"></text></g><g><title>InstanceKlass::link_class_impl (62 samples, 0.02%)</title><rect x="41.6745%" y="709" width="0.0160%" height="15" fill="rgb(222,34,3)" fg:x="161640" fg:w="62"/><text x="41.9245%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (63 samples, 0.02%)</title><rect x="41.6745%" y="725" width="0.0162%" height="15" fill="rgb(248,82,4)" fg:x="161640" fg:w="63"/><text x="41.9245%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (84 samples, 0.02%)</title><rect x="41.6740%" y="741" width="0.0217%" height="15" fill="rgb(228,81,46)" fg:x="161638" fg:w="84"/><text x="41.9240%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (246 samples, 0.06%)</title><rect x="41.6340%" y="757" width="0.0634%" height="15" fill="rgb(227,67,47)" fg:x="161483" fg:w="246"/><text x="41.8840%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (277 samples, 0.07%)</title><rect x="41.6281%" y="773" width="0.0714%" height="15" fill="rgb(215,93,53)" fg:x="161460" fg:w="277"/><text x="41.8781%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (49 samples, 0.01%)</title><rect x="41.6995%" y="773" width="0.0126%" height="15" fill="rgb(248,194,39)" fg:x="161737" fg:w="49"/><text x="41.9495%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (49 samples, 0.01%)</title><rect x="41.6995%" y="757" width="0.0126%" height="15" fill="rgb(215,5,19)" fg:x="161737" fg:w="49"/><text x="41.9495%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (49 samples, 0.01%)</title><rect x="41.6995%" y="741" width="0.0126%" height="15" fill="rgb(226,215,51)" fg:x="161737" fg:w="49"/><text x="41.9495%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (441 samples, 0.11%)</title><rect x="41.5995%" y="789" width="0.1137%" height="15" fill="rgb(225,56,26)" fg:x="161349" fg:w="441"/><text x="41.8495%" y="799.50"></text></g><g><title>JVM_GetClassDeclaredMethods (43 samples, 0.01%)</title><rect x="41.7464%" y="789" width="0.0111%" height="15" fill="rgb(222,75,29)" fg:x="161919" fg:w="43"/><text x="41.9964%" y="799.50"></text></g><g><title>get_class_declared_methods_helper (43 samples, 0.01%)</title><rect x="41.7464%" y="773" width="0.0111%" height="15" fill="rgb(236,139,6)" fg:x="161919" fg:w="43"/><text x="41.9964%" y="783.50"></text></g><g><title>SymbolTable::basic_add (58 samples, 0.01%)</title><rect x="41.8006%" y="629" width="0.0150%" height="15" fill="rgb(223,137,36)" fg:x="162129" fg:w="58"/><text x="42.0506%" y="639.50"></text></g><g><title>SymbolTable::add (60 samples, 0.02%)</title><rect x="41.8003%" y="645" width="0.0155%" height="15" fill="rgb(226,99,2)" fg:x="162128" fg:w="60"/><text x="42.0503%" y="655.50"></text></g><g><title>SymbolTable::lookup_only (461 samples, 0.12%)</title><rect x="41.8158%" y="645" width="0.1189%" height="15" fill="rgb(206,133,23)" fg:x="162188" fg:w="461"/><text x="42.0658%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (550 samples, 0.14%)</title><rect x="41.7934%" y="661" width="0.1418%" height="15" fill="rgb(243,173,15)" fg:x="162101" fg:w="550"/><text x="42.0434%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (562 samples, 0.14%)</title><rect x="41.7913%" y="677" width="0.1449%" height="15" fill="rgb(228,69,28)" fg:x="162093" fg:w="562"/><text x="42.0413%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (142 samples, 0.04%)</title><rect x="41.9398%" y="661" width="0.0366%" height="15" fill="rgb(212,51,22)" fg:x="162669" fg:w="142"/><text x="42.1898%" y="671.50"></text></g><g><title>ClassFileParser::parse_methods (145 samples, 0.04%)</title><rect x="41.9396%" y="677" width="0.0374%" height="15" fill="rgb(227,113,0)" fg:x="162668" fg:w="145"/><text x="42.1896%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (739 samples, 0.19%)</title><rect x="41.7900%" y="709" width="0.1905%" height="15" fill="rgb(252,84,27)" fg:x="162088" fg:w="739"/><text x="42.0400%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (739 samples, 0.19%)</title><rect x="41.7900%" y="693" width="0.1905%" height="15" fill="rgb(223,145,39)" fg:x="162088" fg:w="739"/><text x="42.0400%" y="703.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (68 samples, 0.02%)</title><rect x="41.9857%" y="661" width="0.0175%" height="15" fill="rgb(239,219,30)" fg:x="162847" fg:w="68"/><text x="42.2357%" y="671.50"></text></g><g><title>DefaultMethods::generate_default_methods (99 samples, 0.03%)</title><rect x="41.9821%" y="677" width="0.0255%" height="15" fill="rgb(224,196,39)" fg:x="162833" fg:w="99"/><text x="42.2321%" y="687.50"></text></g><g><title>ClassFileParser::fill_instance_klass (142 samples, 0.04%)</title><rect x="41.9808%" y="693" width="0.0366%" height="15" fill="rgb(205,35,43)" fg:x="162828" fg:w="142"/><text x="42.2308%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (160 samples, 0.04%)</title><rect x="41.9805%" y="709" width="0.0413%" height="15" fill="rgb(228,201,21)" fg:x="162827" fg:w="160"/><text x="42.2305%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (942 samples, 0.24%)</title><rect x="41.7895%" y="725" width="0.2429%" height="15" fill="rgb(237,118,16)" fg:x="162086" fg:w="942"/><text x="42.0395%" y="735.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (41 samples, 0.01%)</title><rect x="42.0218%" y="709" width="0.0106%" height="15" fill="rgb(241,17,19)" fg:x="162987" fg:w="41"/><text x="42.2718%" y="719.50"></text></g><g><title>JVM_DefineClassWithSource (993 samples, 0.26%)</title><rect x="41.7856%" y="773" width="0.2560%" height="15" fill="rgb(214,10,25)" fg:x="162071" fg:w="993"/><text x="42.0356%" y="783.50"></text></g><g><title>jvm_define_class_common (993 samples, 0.26%)</title><rect x="41.7856%" y="757" width="0.2560%" height="15" fill="rgb(238,37,29)" fg:x="162071" fg:w="993"/><text x="42.0356%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (978 samples, 0.25%)</title><rect x="41.7895%" y="741" width="0.2522%" height="15" fill="rgb(253,83,25)" fg:x="162086" fg:w="978"/><text x="42.0395%" y="751.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (1,024 samples, 0.26%)</title><rect x="41.7854%" y="789" width="0.2640%" height="15" fill="rgb(234,192,12)" fg:x="162070" fg:w="1024"/><text x="42.0354%" y="799.50"></text></g><g><title>ClassLoader::load_class (48 samples, 0.01%)</title><rect x="42.0527%" y="709" width="0.0124%" height="15" fill="rgb(241,216,45)" fg:x="163107" fg:w="48"/><text x="42.3027%" y="719.50"></text></g><g><title>JVM_FindClassFromBootLoader (72 samples, 0.02%)</title><rect x="42.0494%" y="773" width="0.0186%" height="15" fill="rgb(242,22,33)" fg:x="163094" fg:w="72"/><text x="42.2994%" y="783.50"></text></g><g><title>SystemDictionary::resolve_or_null (69 samples, 0.02%)</title><rect x="42.0502%" y="757" width="0.0178%" height="15" fill="rgb(231,105,49)" fg:x="163097" fg:w="69"/><text x="42.3002%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (69 samples, 0.02%)</title><rect x="42.0502%" y="741" width="0.0178%" height="15" fill="rgb(218,204,15)" fg:x="163097" fg:w="69"/><text x="42.3002%" y="751.50"></text></g><g><title>SystemDictionary::load_instance_class (60 samples, 0.02%)</title><rect x="42.0525%" y="725" width="0.0155%" height="15" fill="rgb(235,138,41)" fg:x="163106" fg:w="60"/><text x="42.3025%" y="735.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (90 samples, 0.02%)</title><rect x="42.0494%" y="789" width="0.0232%" height="15" fill="rgb(246,0,9)" fg:x="163094" fg:w="90"/><text x="42.2994%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (70 samples, 0.02%)</title><rect x="42.0984%" y="789" width="0.0180%" height="15" fill="rgb(210,74,4)" fg:x="163284" fg:w="70"/><text x="42.3484%" y="799.50"></text></g><g><title>SystemDictionary::parse_stream (69 samples, 0.02%)</title><rect x="42.0986%" y="773" width="0.0178%" height="15" fill="rgb(250,60,41)" fg:x="163285" fg:w="69"/><text x="42.3486%" y="783.50"></text></g><g><title>[perf-742530.map] (4,578 samples, 1.18%)</title><rect x="40.9596%" y="805" width="1.1803%" height="15" fill="rgb(220,115,12)" fg:x="158867" fg:w="4578"/><text x="41.2096%" y="815.50"></text></g><g><title>__x64_sys_read (45 samples, 0.01%)</title><rect x="42.1628%" y="677" width="0.0116%" height="15" fill="rgb(237,100,13)" fg:x="163534" fg:w="45"/><text x="42.4128%" y="687.50"></text></g><g><title>ksys_read (45 samples, 0.01%)</title><rect x="42.1628%" y="661" width="0.0116%" height="15" fill="rgb(213,55,26)" fg:x="163534" fg:w="45"/><text x="42.4128%" y="671.50"></text></g><g><title>vfs_read (43 samples, 0.01%)</title><rect x="42.1633%" y="645" width="0.0111%" height="15" fill="rgb(216,17,4)" fg:x="163536" fg:w="43"/><text x="42.4133%" y="655.50"></text></g><g><title>handleRead (54 samples, 0.01%)</title><rect x="42.1610%" y="773" width="0.0139%" height="15" fill="rgb(220,153,47)" fg:x="163527" fg:w="54"/><text x="42.4110%" y="783.50"></text></g><g><title>__GI___libc_read (54 samples, 0.01%)</title><rect x="42.1610%" y="757" width="0.0139%" height="15" fill="rgb(215,131,9)" fg:x="163527" fg:w="54"/><text x="42.4110%" y="767.50"></text></g><g><title>__GI___libc_read (54 samples, 0.01%)</title><rect x="42.1610%" y="741" width="0.0139%" height="15" fill="rgb(233,46,42)" fg:x="163527" fg:w="54"/><text x="42.4110%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (50 samples, 0.01%)</title><rect x="42.1621%" y="725" width="0.0129%" height="15" fill="rgb(226,86,7)" fg:x="163531" fg:w="50"/><text x="42.4121%" y="735.50"></text></g><g><title>do_syscall_64 (50 samples, 0.01%)</title><rect x="42.1621%" y="709" width="0.0129%" height="15" fill="rgb(239,226,21)" fg:x="163531" fg:w="50"/><text x="42.4121%" y="719.50"></text></g><g><title>unload_network_ops_symbols (47 samples, 0.01%)</title><rect x="42.1628%" y="693" width="0.0121%" height="15" fill="rgb(244,137,22)" fg:x="163534" fg:w="47"/><text x="42.4128%" y="703.50"></text></g><g><title>readBytes (63 samples, 0.02%)</title><rect x="42.1605%" y="789" width="0.0162%" height="15" fill="rgb(211,139,35)" fg:x="163525" fg:w="63"/><text x="42.4105%" y="799.50"></text></g><g><title>[unknown] (148 samples, 0.04%)</title><rect x="42.1399%" y="805" width="0.0382%" height="15" fill="rgb(214,62,50)" fg:x="163445" fg:w="148"/><text x="42.3899%" y="815.50"></text></g><g><title>init_globals (39 samples, 0.01%)</title><rect x="42.1829%" y="725" width="0.0101%" height="15" fill="rgb(212,113,44)" fg:x="163612" fg:w="39"/><text x="42.4329%" y="735.50"></text></g><g><title>JNI_CreateJavaVM (47 samples, 0.01%)</title><rect x="42.1811%" y="757" width="0.0121%" height="15" fill="rgb(226,150,43)" fg:x="163605" fg:w="47"/><text x="42.4311%" y="767.50"></text></g><g><title>Threads::create_vm (47 samples, 0.01%)</title><rect x="42.1811%" y="741" width="0.0121%" height="15" fill="rgb(250,71,37)" fg:x="163605" fg:w="47"/><text x="42.4311%" y="751.50"></text></g><g><title>JavaMain (49 samples, 0.01%)</title><rect x="42.1811%" y="773" width="0.0126%" height="15" fill="rgb(219,76,19)" fg:x="163605" fg:w="49"/><text x="42.4311%" y="783.50"></text></g><g><title>__clone3 (74 samples, 0.02%)</title><rect x="42.1783%" y="805" width="0.0191%" height="15" fill="rgb(250,39,11)" fg:x="163594" fg:w="74"/><text x="42.4283%" y="815.50"></text></g><g><title>start_thread (63 samples, 0.02%)</title><rect x="42.1811%" y="789" width="0.0162%" height="15" fill="rgb(230,64,31)" fg:x="163605" fg:w="63"/><text x="42.4311%" y="799.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="42.2061%" y="757" width="0.0103%" height="15" fill="rgb(208,222,23)" fg:x="163702" fg:w="40"/><text x="42.4561%" y="767.50"></text></g><g><title>x86_pmu_enable (40 samples, 0.01%)</title><rect x="42.2061%" y="741" width="0.0103%" height="15" fill="rgb(227,125,18)" fg:x="163702" fg:w="40"/><text x="42.4561%" y="751.50"></text></g><g><title>intel_pmu_enable_all (40 samples, 0.01%)</title><rect x="42.2061%" y="725" width="0.0103%" height="15" fill="rgb(234,210,9)" fg:x="163702" fg:w="40"/><text x="42.4561%" y="735.50"></text></g><g><title>native_write_msr (40 samples, 0.01%)</title><rect x="42.2061%" y="709" width="0.0103%" height="15" fill="rgb(217,127,24)" fg:x="163702" fg:w="40"/><text x="42.4561%" y="719.50"></text></g><g><title>ret_from_fork (44 samples, 0.01%)</title><rect x="42.2056%" y="805" width="0.0113%" height="15" fill="rgb(239,141,48)" fg:x="163700" fg:w="44"/><text x="42.4556%" y="815.50"></text></g><g><title>schedule_tail (43 samples, 0.01%)</title><rect x="42.2059%" y="789" width="0.0111%" height="15" fill="rgb(227,109,8)" fg:x="163701" fg:w="43"/><text x="42.4559%" y="799.50"></text></g><g><title>finish_task_switch.isra.0 (42 samples, 0.01%)</title><rect x="42.2061%" y="773" width="0.0108%" height="15" fill="rgb(235,184,23)" fg:x="163702" fg:w="42"/><text x="42.4561%" y="783.50"></text></g><g><title>java (6,407 samples, 1.65%)</title><rect x="40.5656%" y="821" width="1.6519%" height="15" fill="rgb(227,226,48)" fg:x="157339" fg:w="6407"/><text x="40.8156%" y="831.50"></text></g><g><title>[[heap]] (76 samples, 0.02%)</title><rect x="42.2175%" y="805" width="0.0196%" height="15" fill="rgb(206,150,11)" fg:x="163746" fg:w="76"/><text x="42.4675%" y="815.50"></text></g><g><title>[[stack]] (46 samples, 0.01%)</title><rect x="42.2371%" y="805" width="0.0119%" height="15" fill="rgb(254,2,33)" fg:x="163822" fg:w="46"/><text x="42.4871%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (44 samples, 0.01%)</title><rect x="42.2855%" y="725" width="0.0113%" height="15" fill="rgb(243,160,20)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="735.50"></text></g><g><title>lld::elf::readFile (44 samples, 0.01%)</title><rect x="42.2855%" y="709" width="0.0113%" height="15" fill="rgb(218,208,30)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="719.50"></text></g><g><title>llvm::MemoryBuffer::getFile (44 samples, 0.01%)</title><rect x="42.2855%" y="693" width="0.0113%" height="15" fill="rgb(224,120,49)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="703.50"></text></g><g><title>getFileAux&lt;llvm::MemoryBuffer&gt; (44 samples, 0.01%)</title><rect x="42.2855%" y="677" width="0.0113%" height="15" fill="rgb(246,12,2)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="687.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (44 samples, 0.01%)</title><rect x="42.2855%" y="661" width="0.0113%" height="15" fill="rgb(236,117,3)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="671.50"></text></g><g><title>llvm::sys::fs::openFileForRead (44 samples, 0.01%)</title><rect x="42.2855%" y="645" width="0.0113%" height="15" fill="rgb(216,128,52)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="655.50"></text></g><g><title>llvm::sys::fs::openFile (44 samples, 0.01%)</title><rect x="42.2855%" y="629" width="0.0113%" height="15" fill="rgb(246,145,19)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="639.50"></text></g><g><title>__libc_open64 (44 samples, 0.01%)</title><rect x="42.2855%" y="613" width="0.0113%" height="15" fill="rgb(222,11,46)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.01%)</title><rect x="42.2855%" y="597" width="0.0113%" height="15" fill="rgb(245,82,36)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="607.50"></text></g><g><title>do_syscall_64 (44 samples, 0.01%)</title><rect x="42.2855%" y="581" width="0.0113%" height="15" fill="rgb(250,73,51)" fg:x="164010" fg:w="44"/><text x="42.5355%" y="591.50"></text></g><g><title>unload_network_ops_symbols (43 samples, 0.01%)</title><rect x="42.2858%" y="565" width="0.0111%" height="15" fill="rgb(221,189,23)" fg:x="164011" fg:w="43"/><text x="42.5358%" y="575.50"></text></g><g><title>lldMain (111 samples, 0.03%)</title><rect x="42.2814%" y="789" width="0.0286%" height="15" fill="rgb(210,33,7)" fg:x="163994" fg:w="111"/><text x="42.5314%" y="799.50"></text></g><g><title>lld::elf::link (111 samples, 0.03%)</title><rect x="42.2814%" y="773" width="0.0286%" height="15" fill="rgb(210,107,22)" fg:x="163994" fg:w="111"/><text x="42.5314%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (111 samples, 0.03%)</title><rect x="42.2814%" y="757" width="0.0286%" height="15" fill="rgb(222,116,37)" fg:x="163994" fg:w="111"/><text x="42.5314%" y="767.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (95 samples, 0.02%)</title><rect x="42.2855%" y="741" width="0.0245%" height="15" fill="rgb(254,17,48)" fg:x="164010" fg:w="95"/><text x="42.5355%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (51 samples, 0.01%)</title><rect x="42.2969%" y="725" width="0.0131%" height="15" fill="rgb(224,36,32)" fg:x="164054" fg:w="51"/><text x="42.5469%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (51 samples, 0.01%)</title><rect x="42.2969%" y="709" width="0.0131%" height="15" fill="rgb(232,90,46)" fg:x="164054" fg:w="51"/><text x="42.5469%" y="719.50"></text></g><g><title>[unknown] (328 samples, 0.08%)</title><rect x="42.2623%" y="805" width="0.0846%" height="15" fill="rgb(241,66,40)" fg:x="163920" fg:w="328"/><text x="42.5123%" y="815.50"></text></g><g><title>copy_process (47 samples, 0.01%)</title><rect x="42.3490%" y="709" width="0.0121%" height="15" fill="rgb(249,184,29)" fg:x="164256" fg:w="47"/><text x="42.5990%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="42.3485%" y="789" width="0.0150%" height="15" fill="rgb(231,181,1)" fg:x="164254" fg:w="58"/><text x="42.5985%" y="799.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="42.3485%" y="773" width="0.0150%" height="15" fill="rgb(224,94,2)" fg:x="164254" fg:w="58"/><text x="42.5985%" y="783.50"></text></g><g><title>__x64_sys_clone3 (58 samples, 0.01%)</title><rect x="42.3485%" y="757" width="0.0150%" height="15" fill="rgb(229,170,15)" fg:x="164254" fg:w="58"/><text x="42.5985%" y="767.50"></text></g><g><title>__do_sys_clone3 (58 samples, 0.01%)</title><rect x="42.3485%" y="741" width="0.0150%" height="15" fill="rgb(240,127,35)" fg:x="164254" fg:w="58"/><text x="42.5985%" y="751.50"></text></g><g><title>kernel_clone (57 samples, 0.01%)</title><rect x="42.3487%" y="725" width="0.0147%" height="15" fill="rgb(248,196,34)" fg:x="164255" fg:w="57"/><text x="42.5987%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="42.3742%" y="677" width="0.0106%" height="15" fill="rgb(236,137,7)" fg:x="164354" fg:w="41"/><text x="42.6242%" y="687.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="42.3742%" y="661" width="0.0106%" height="15" fill="rgb(235,127,16)" fg:x="164354" fg:w="41"/><text x="42.6242%" y="671.50"></text></g><g><title>___pthread_mutex_unlock (52 samples, 0.01%)</title><rect x="42.3722%" y="741" width="0.0134%" height="15" fill="rgb(250,192,54)" fg:x="164346" fg:w="52"/><text x="42.6222%" y="751.50"></text></g><g><title>__GI___pthread_mutex_unlock_usercnt (52 samples, 0.01%)</title><rect x="42.3722%" y="725" width="0.0134%" height="15" fill="rgb(218,98,20)" fg:x="164346" fg:w="52"/><text x="42.6222%" y="735.50"></text></g><g><title>lll_mutex_unlock_optimized (50 samples, 0.01%)</title><rect x="42.3727%" y="709" width="0.0129%" height="15" fill="rgb(230,176,47)" fg:x="164348" fg:w="50"/><text x="42.6227%" y="719.50"></text></g><g><title>__GI___lll_lock_wake (46 samples, 0.01%)</title><rect x="42.3737%" y="693" width="0.0119%" height="15" fill="rgb(244,2,33)" fg:x="164352" fg:w="46"/><text x="42.6237%" y="703.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (56 samples, 0.01%)</title><rect x="42.3941%" y="741" width="0.0144%" height="15" fill="rgb(231,100,17)" fg:x="164431" fg:w="56"/><text x="42.6441%" y="751.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (43 samples, 0.01%)</title><rect x="42.3974%" y="725" width="0.0111%" height="15" fill="rgb(245,23,12)" fg:x="164444" fg:w="43"/><text x="42.6474%" y="735.50"></text></g><g><title>futex_wait_queue_me (140 samples, 0.04%)</title><rect x="42.4157%" y="565" width="0.0361%" height="15" fill="rgb(249,55,22)" fg:x="164515" fg:w="140"/><text x="42.6657%" y="575.50"></text></g><g><title>schedule (139 samples, 0.04%)</title><rect x="42.4160%" y="549" width="0.0358%" height="15" fill="rgb(207,134,9)" fg:x="164516" fg:w="139"/><text x="42.6660%" y="559.50"></text></g><g><title>__schedule (138 samples, 0.04%)</title><rect x="42.4163%" y="533" width="0.0356%" height="15" fill="rgb(218,134,0)" fg:x="164517" fg:w="138"/><text x="42.6663%" y="543.50"></text></g><g><title>__x64_sys_futex (159 samples, 0.04%)</title><rect x="42.4137%" y="613" width="0.0410%" height="15" fill="rgb(213,212,33)" fg:x="164507" fg:w="159"/><text x="42.6637%" y="623.50"></text></g><g><title>do_futex (156 samples, 0.04%)</title><rect x="42.4145%" y="597" width="0.0402%" height="15" fill="rgb(252,106,18)" fg:x="164510" fg:w="156"/><text x="42.6645%" y="607.50"></text></g><g><title>futex_wait (156 samples, 0.04%)</title><rect x="42.4145%" y="581" width="0.0402%" height="15" fill="rgb(208,126,42)" fg:x="164510" fg:w="156"/><text x="42.6645%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (184 samples, 0.05%)</title><rect x="42.4132%" y="645" width="0.0474%" height="15" fill="rgb(246,175,29)" fg:x="164505" fg:w="184"/><text x="42.6632%" y="655.50"></text></g><g><title>do_syscall_64 (183 samples, 0.05%)</title><rect x="42.4134%" y="629" width="0.0472%" height="15" fill="rgb(215,13,50)" fg:x="164506" fg:w="183"/><text x="42.6634%" y="639.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (199 samples, 0.05%)</title><rect x="42.4098%" y="693" width="0.0513%" height="15" fill="rgb(216,172,15)" fg:x="164492" fg:w="199"/><text x="42.6598%" y="703.50"></text></g><g><title>__futex_abstimed_wait_common (199 samples, 0.05%)</title><rect x="42.4098%" y="677" width="0.0513%" height="15" fill="rgb(212,103,13)" fg:x="164492" fg:w="199"/><text x="42.6598%" y="687.50"></text></g><g><title>__futex_abstimed_wait_common64 (199 samples, 0.05%)</title><rect x="42.4098%" y="661" width="0.0513%" height="15" fill="rgb(231,171,36)" fg:x="164492" fg:w="199"/><text x="42.6598%" y="671.50"></text></g><g><title>___pthread_cond_wait (266 samples, 0.07%)</title><rect x="42.4088%" y="725" width="0.0686%" height="15" fill="rgb(250,123,20)" fg:x="164488" fg:w="266"/><text x="42.6588%" y="735.50"></text></g><g><title>__pthread_cond_wait_common (266 samples, 0.07%)</title><rect x="42.4088%" y="709" width="0.0686%" height="15" fill="rgb(212,53,50)" fg:x="164488" fg:w="266"/><text x="42.6588%" y="719.50"></text></g><g><title>std::condition_variable::wait (268 samples, 0.07%)</title><rect x="42.4085%" y="741" width="0.0691%" height="15" fill="rgb(243,54,12)" fg:x="164487" fg:w="268"/><text x="42.6585%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (442 samples, 0.11%)</title><rect x="42.3639%" y="757" width="0.1140%" height="15" fill="rgb(234,101,34)" fg:x="164314" fg:w="442"/><text x="42.6139%" y="767.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (112 samples, 0.03%)</title><rect x="42.4779%" y="741" width="0.0289%" height="15" fill="rgb(254,67,22)" fg:x="164756" fg:w="112"/><text x="42.7279%" y="751.50"></text></g><g><title>std::condition_variable::wait (44 samples, 0.01%)</title><rect x="42.4954%" y="725" width="0.0113%" height="15" fill="rgb(250,35,47)" fg:x="164824" fg:w="44"/><text x="42.7454%" y="735.50"></text></g><g><title>___pthread_cond_wait (43 samples, 0.01%)</title><rect x="42.4957%" y="709" width="0.0111%" height="15" fill="rgb(226,126,38)" fg:x="164825" fg:w="43"/><text x="42.7457%" y="719.50"></text></g><g><title>__pthread_cond_wait_common (43 samples, 0.01%)</title><rect x="42.4957%" y="693" width="0.0111%" height="15" fill="rgb(216,138,53)" fg:x="164825" fg:w="43"/><text x="42.7457%" y="703.50"></text></g><g><title>[libstdc++.so.6.0.30] (583 samples, 0.15%)</title><rect x="42.3637%" y="773" width="0.1503%" height="15" fill="rgb(246,199,43)" fg:x="164313" fg:w="583"/><text x="42.6137%" y="783.50"></text></g><g><title>std::thread::_State_impl&lt;std::thread::_Invoker&lt;std::tuple&lt;llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::ThreadPoolExecutor(llvm::ThreadPoolStrategy)::{lambda()#1}&gt; &gt; &gt;::_M_run (140 samples, 0.04%)</title><rect x="42.4779%" y="757" width="0.0361%" height="15" fill="rgb(232,125,11)" fg:x="164756" fg:w="140"/><text x="42.7279%" y="767.50"></text></g><g><title>__clone3 (659 samples, 0.17%)</title><rect x="42.3477%" y="805" width="0.1699%" height="15" fill="rgb(218,219,45)" fg:x="164251" fg:w="659"/><text x="42.5977%" y="815.50"></text></g><g><title>start_thread (598 samples, 0.15%)</title><rect x="42.3634%" y="789" width="0.1542%" height="15" fill="rgb(216,102,54)" fg:x="164312" fg:w="598"/><text x="42.6134%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (56 samples, 0.01%)</title><rect x="42.6550%" y="757" width="0.0144%" height="15" fill="rgb(250,228,7)" fg:x="165443" fg:w="56"/><text x="42.9050%" y="767.50"></text></g><g><title>polly::initializePollyPasses (42 samples, 0.01%)</title><rect x="42.6586%" y="741" width="0.0108%" height="15" fill="rgb(226,125,25)" fg:x="165457" fg:w="42"/><text x="42.9086%" y="751.50"></text></g><g><title>__libc_csu_init (687 samples, 0.18%)</title><rect x="42.5225%" y="773" width="0.1771%" height="15" fill="rgb(224,165,27)" fg:x="164929" fg:w="687"/><text x="42.7725%" y="783.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (46 samples, 0.01%)</title><rect x="42.7174%" y="629" width="0.0119%" height="15" fill="rgb(233,86,3)" fg:x="165685" fg:w="46"/><text x="42.9674%" y="639.50"></text></g><g><title>lld::elf::readLinkerScript (90 samples, 0.02%)</title><rect x="42.7161%" y="645" width="0.0232%" height="15" fill="rgb(228,116,20)" fg:x="165680" fg:w="90"/><text x="42.9661%" y="655.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (116 samples, 0.03%)</title><rect x="42.7110%" y="661" width="0.0299%" height="15" fill="rgb(209,192,17)" fg:x="165660" fg:w="116"/><text x="42.9610%" y="671.50"></text></g><g><title>__GI___access (39 samples, 0.01%)</title><rect x="42.7447%" y="597" width="0.0101%" height="15" fill="rgb(224,88,34)" fg:x="165791" fg:w="39"/><text x="42.9947%" y="607.50"></text></g><g><title>llvm::sys::fs::access (45 samples, 0.01%)</title><rect x="42.7445%" y="613" width="0.0116%" height="15" fill="rgb(233,38,6)" fg:x="165790" fg:w="45"/><text x="42.9945%" y="623.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (207 samples, 0.05%)</title><rect x="42.7040%" y="693" width="0.0534%" height="15" fill="rgb(212,59,30)" fg:x="165633" fg:w="207"/><text x="42.9540%" y="703.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (181 samples, 0.05%)</title><rect x="42.7107%" y="677" width="0.0467%" height="15" fill="rgb(213,80,3)" fg:x="165659" fg:w="181"/><text x="42.9607%" y="687.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (64 samples, 0.02%)</title><rect x="42.7409%" y="661" width="0.0165%" height="15" fill="rgb(251,178,7)" fg:x="165776" fg:w="64"/><text x="42.9909%" y="671.50"></text></g><g><title>lld::elf::searchLibraryBaseName[abi:cxx11] (52 samples, 0.01%)</title><rect x="42.7440%" y="645" width="0.0134%" height="15" fill="rgb(213,154,26)" fg:x="165788" fg:w="52"/><text x="42.9940%" y="655.50"></text></g><g><title>findFile[abi:cxx11] (50 samples, 0.01%)</title><rect x="42.7445%" y="629" width="0.0129%" height="15" fill="rgb(238,165,49)" fg:x="165790" fg:w="50"/><text x="42.9945%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (66 samples, 0.02%)</title><rect x="42.7811%" y="629" width="0.0170%" height="15" fill="rgb(248,91,46)" fg:x="165932" fg:w="66"/><text x="43.0311%" y="639.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (63 samples, 0.02%)</title><rect x="42.7819%" y="613" width="0.0162%" height="15" fill="rgb(244,21,52)" fg:x="165935" fg:w="63"/><text x="43.0319%" y="623.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (40 samples, 0.01%)</title><rect x="42.7981%" y="629" width="0.0103%" height="15" fill="rgb(247,122,20)" fg:x="165998" fg:w="40"/><text x="43.0481%" y="639.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (187 samples, 0.05%)</title><rect x="42.7674%" y="661" width="0.0482%" height="15" fill="rgb(218,27,9)" fg:x="165879" fg:w="187"/><text x="43.0174%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::insert (176 samples, 0.05%)</title><rect x="42.7703%" y="645" width="0.0454%" height="15" fill="rgb(246,7,6)" fg:x="165890" fg:w="176"/><text x="43.0203%" y="655.50"></text></g><g><title>lld::elf::ArchiveFile::parse (232 samples, 0.06%)</title><rect x="42.7656%" y="677" width="0.0598%" height="15" fill="rgb(227,135,54)" fg:x="165872" fg:w="232"/><text x="43.0156%" y="687.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (48 samples, 0.01%)</title><rect x="42.8388%" y="661" width="0.0124%" height="15" fill="rgb(247,14,11)" fg:x="166156" fg:w="48"/><text x="43.0888%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::find (59 samples, 0.02%)</title><rect x="42.8383%" y="677" width="0.0152%" height="15" fill="rgb(206,149,34)" fg:x="166154" fg:w="59"/><text x="43.0883%" y="687.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (70 samples, 0.02%)</title><rect x="42.8927%" y="613" width="0.0180%" height="15" fill="rgb(227,228,4)" fg:x="166365" fg:w="70"/><text x="43.1427%" y="623.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::InsertIntoBucketImpl&lt;llvm::CachedHashStringRef&gt; (106 samples, 0.03%)</title><rect x="42.9108%" y="613" width="0.0273%" height="15" fill="rgb(238,218,28)" fg:x="166435" fg:w="106"/><text x="43.1608%" y="623.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (97 samples, 0.03%)</title><rect x="42.9131%" y="597" width="0.0250%" height="15" fill="rgb(252,86,40)" fg:x="166444" fg:w="97"/><text x="43.1631%" y="607.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (80 samples, 0.02%)</title><rect x="42.9381%" y="613" width="0.0206%" height="15" fill="rgb(251,225,11)" fg:x="166541" fg:w="80"/><text x="43.1881%" y="623.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (329 samples, 0.08%)</title><rect x="42.8796%" y="645" width="0.0848%" height="15" fill="rgb(206,46,49)" fg:x="166314" fg:w="329"/><text x="43.1296%" y="655.50"></text></g><g><title>lld::elf::SymbolTable::insert (304 samples, 0.08%)</title><rect x="42.8860%" y="629" width="0.0784%" height="15" fill="rgb(245,128,24)" fg:x="166339" fg:w="304"/><text x="43.1360%" y="639.50"></text></g><g><title>llvm::Twine::toVector (58 samples, 0.01%)</title><rect x="42.9680%" y="645" width="0.0150%" height="15" fill="rgb(219,177,34)" fg:x="166657" fg:w="58"/><text x="43.2180%" y="655.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (476 samples, 0.12%)</title><rect x="42.8664%" y="661" width="0.1227%" height="15" fill="rgb(218,60,48)" fg:x="166263" fg:w="476"/><text x="43.1164%" y="671.50"></text></g><g><title>lld::elf::parseFile (485 samples, 0.13%)</title><rect x="42.8644%" y="677" width="0.1250%" height="15" fill="rgb(221,11,5)" fg:x="166255" fg:w="485"/><text x="43.1144%" y="687.50"></text></g><g><title>enqueue_task (52 samples, 0.01%)</title><rect x="43.0582%" y="469" width="0.0134%" height="15" fill="rgb(220,148,13)" fg:x="167007" fg:w="52"/><text x="43.3082%" y="479.50"></text></g><g><title>ttwu_do_activate (58 samples, 0.01%)</title><rect x="43.0580%" y="485" width="0.0150%" height="15" fill="rgb(210,16,3)" fg:x="167006" fg:w="58"/><text x="43.3080%" y="495.50"></text></g><g><title>futex_wake (123 samples, 0.03%)</title><rect x="43.0438%" y="533" width="0.0317%" height="15" fill="rgb(236,80,2)" fg:x="166951" fg:w="123"/><text x="43.2938%" y="543.50"></text></g><g><title>wake_up_q (113 samples, 0.03%)</title><rect x="43.0464%" y="517" width="0.0291%" height="15" fill="rgb(239,129,19)" fg:x="166961" fg:w="113"/><text x="43.2964%" y="527.50"></text></g><g><title>try_to_wake_up (111 samples, 0.03%)</title><rect x="43.0469%" y="501" width="0.0286%" height="15" fill="rgb(220,106,35)" fg:x="166963" fg:w="111"/><text x="43.2969%" y="511.50"></text></g><g><title>__x64_sys_futex (126 samples, 0.03%)</title><rect x="43.0433%" y="565" width="0.0325%" height="15" fill="rgb(252,139,45)" fg:x="166949" fg:w="126"/><text x="43.2933%" y="575.50"></text></g><g><title>do_futex (125 samples, 0.03%)</title><rect x="43.0435%" y="549" width="0.0322%" height="15" fill="rgb(229,8,36)" fg:x="166950" fg:w="125"/><text x="43.2935%" y="559.50"></text></g><g><title>___pthread_cond_signal (188 samples, 0.05%)</title><rect x="43.0317%" y="629" width="0.0485%" height="15" fill="rgb(230,126,33)" fg:x="166904" fg:w="188"/><text x="43.2817%" y="639.50"></text></g><g><title>futex_wake (151 samples, 0.04%)</title><rect x="43.0412%" y="613" width="0.0389%" height="15" fill="rgb(239,140,21)" fg:x="166941" fg:w="151"/><text x="43.2912%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (144 samples, 0.04%)</title><rect x="43.0430%" y="597" width="0.0371%" height="15" fill="rgb(254,104,9)" fg:x="166948" fg:w="144"/><text x="43.2930%" y="607.50"></text></g><g><title>do_syscall_64 (143 samples, 0.04%)</title><rect x="43.0433%" y="581" width="0.0369%" height="15" fill="rgb(239,52,14)" fg:x="166949" fg:w="143"/><text x="43.2933%" y="591.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (101 samples, 0.03%)</title><rect x="43.0845%" y="629" width="0.0260%" height="15" fill="rgb(208,227,44)" fg:x="167109" fg:w="101"/><text x="43.3345%" y="639.50"></text></g><g><title>std::deque&lt;std::function&lt;void ()&gt;, std::allocator&lt;std::function&lt;void ()&gt; &gt; &gt;::push_back (48 samples, 0.01%)</title><rect x="43.0982%" y="613" width="0.0124%" height="15" fill="rgb(246,18,19)" fg:x="167162" fg:w="48"/><text x="43.3482%" y="623.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (44 samples, 0.01%)</title><rect x="43.0992%" y="597" width="0.0113%" height="15" fill="rgb(235,228,25)" fg:x="167166" fg:w="44"/><text x="43.3492%" y="607.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (334 samples, 0.09%)</title><rect x="43.0307%" y="645" width="0.0861%" height="15" fill="rgb(240,156,20)" fg:x="166900" fg:w="334"/><text x="43.2807%" y="655.50"></text></g><g><title>llvm::parallelForEachN (343 samples, 0.09%)</title><rect x="43.0304%" y="661" width="0.0884%" height="15" fill="rgb(224,8,20)" fg:x="166899" fg:w="343"/><text x="43.2804%" y="671.50"></text></g><g><title>__GI___close (41 samples, 0.01%)</title><rect x="43.1191%" y="645" width="0.0106%" height="15" fill="rgb(214,12,52)" fg:x="167243" fg:w="41"/><text x="43.3691%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="43.1191%" y="629" width="0.0106%" height="15" fill="rgb(211,220,47)" fg:x="167243" fg:w="41"/><text x="43.3691%" y="639.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="43.1191%" y="613" width="0.0106%" height="15" fill="rgb(250,173,5)" fg:x="167243" fg:w="41"/><text x="43.3691%" y="623.50"></text></g><g><title>unload_network_ops_symbols (39 samples, 0.01%)</title><rect x="43.1196%" y="597" width="0.0101%" height="15" fill="rgb(250,125,52)" fg:x="167245" fg:w="39"/><text x="43.3696%" y="607.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (66 samples, 0.02%)</title><rect x="43.1188%" y="661" width="0.0170%" height="15" fill="rgb(209,133,18)" fg:x="167242" fg:w="66"/><text x="43.3688%" y="671.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (552 samples, 0.14%)</title><rect x="42.9956%" y="677" width="0.1423%" height="15" fill="rgb(216,173,22)" fg:x="166764" fg:w="552"/><text x="43.2456%" y="687.50"></text></g><g><title>lld::tryCreateFile (74 samples, 0.02%)</title><rect x="43.1379%" y="677" width="0.0191%" height="15" fill="rgb(205,3,22)" fg:x="167316" fg:w="74"/><text x="43.3879%" y="687.50"></text></g><g><title>lld::elf::LinkerDriver::link (1,551 samples, 0.40%)</title><rect x="42.7574%" y="693" width="0.3999%" height="15" fill="rgb(248,22,20)" fg:x="165840" fg:w="1551"/><text x="43.0074%" y="703.50"></text></g><g><title>llvm::InitializeAllTargets (106 samples, 0.03%)</title><rect x="43.1598%" y="693" width="0.0273%" height="15" fill="rgb(233,6,29)" fg:x="167401" fg:w="106"/><text x="43.4098%" y="703.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (1,931 samples, 0.50%)</title><rect x="42.7032%" y="709" width="0.4979%" height="15" fill="rgb(240,22,54)" fg:x="165630" fg:w="1931"/><text x="42.9532%" y="719.50"></text></g><g><title>readConfigs (49 samples, 0.01%)</title><rect x="43.1884%" y="693" width="0.0126%" height="15" fill="rgb(231,133,32)" fg:x="167512" fg:w="49"/><text x="43.4384%" y="703.50"></text></g><g><title>lld::elf::link (1,945 samples, 0.50%)</title><rect x="42.6999%" y="725" width="0.5015%" height="15" fill="rgb(248,193,4)" fg:x="165617" fg:w="1945"/><text x="42.9499%" y="735.50"></text></g><g><title>llvm::llvm_shutdown (42 samples, 0.01%)</title><rect x="43.2013%" y="709" width="0.0108%" height="15" fill="rgb(211,178,46)" fg:x="167562" fg:w="42"/><text x="43.4513%" y="719.50"></text></g><g><title>lld::exitLld (47 samples, 0.01%)</title><rect x="43.2013%" y="725" width="0.0121%" height="15" fill="rgb(224,5,42)" fg:x="167562" fg:w="47"/><text x="43.4513%" y="735.50"></text></g><g><title>lldMain (1,993 samples, 0.51%)</title><rect x="42.6999%" y="741" width="0.5138%" height="15" fill="rgb(239,176,25)" fg:x="165617" fg:w="1993"/><text x="42.9499%" y="751.50"></text></g><g><title>__libc_start_main_impl (2,691 samples, 0.69%)</title><rect x="42.5225%" y="789" width="0.6938%" height="15" fill="rgb(245,187,50)" fg:x="164929" fg:w="2691"/><text x="42.7725%" y="799.50"></text></g><g><title>__libc_start_call_main (2,004 samples, 0.52%)</title><rect x="42.6996%" y="773" width="0.5167%" height="15" fill="rgb(248,24,15)" fg:x="165616" fg:w="2004"/><text x="42.9496%" y="783.50"></text></g><g><title>main (2,004 samples, 0.52%)</title><rect x="42.6996%" y="757" width="0.5167%" height="15" fill="rgb(205,166,13)" fg:x="165616" fg:w="2004"/><text x="42.9496%" y="767.50"></text></g><g><title>__mmap64 (43 samples, 0.01%)</title><rect x="43.2356%" y="629" width="0.0111%" height="15" fill="rgb(208,114,23)" fg:x="167695" fg:w="43"/><text x="43.4856%" y="639.50"></text></g><g><title>__mmap64 (43 samples, 0.01%)</title><rect x="43.2356%" y="613" width="0.0111%" height="15" fill="rgb(239,127,18)" fg:x="167695" fg:w="43"/><text x="43.4856%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="43.2356%" y="597" width="0.0111%" height="15" fill="rgb(219,154,28)" fg:x="167695" fg:w="43"/><text x="43.4856%" y="607.50"></text></g><g><title>do_syscall_64 (43 samples, 0.01%)</title><rect x="43.2356%" y="581" width="0.0111%" height="15" fill="rgb(225,157,23)" fg:x="167695" fg:w="43"/><text x="43.4856%" y="591.50"></text></g><g><title>unload_network_ops_symbols (41 samples, 0.01%)</title><rect x="43.2361%" y="565" width="0.0106%" height="15" fill="rgb(219,8,6)" fg:x="167697" fg:w="41"/><text x="43.4861%" y="575.50"></text></g><g><title>_dl_map_segments (58 samples, 0.01%)</title><rect x="43.2333%" y="645" width="0.0150%" height="15" fill="rgb(212,47,6)" fg:x="167686" fg:w="58"/><text x="43.4833%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (91 samples, 0.02%)</title><rect x="43.2302%" y="661" width="0.0235%" height="15" fill="rgb(224,190,4)" fg:x="167674" fg:w="91"/><text x="43.4802%" y="671.50"></text></g><g><title>_dl_map_object_deps (147 samples, 0.04%)</title><rect x="43.2202%" y="725" width="0.0379%" height="15" fill="rgb(239,183,29)" fg:x="167635" fg:w="147"/><text x="43.4702%" y="735.50"></text></g><g><title>_dl_catch_exception (143 samples, 0.04%)</title><rect x="43.2212%" y="709" width="0.0369%" height="15" fill="rgb(213,57,7)" fg:x="167639" fg:w="143"/><text x="43.4712%" y="719.50"></text></g><g><title>openaux (143 samples, 0.04%)</title><rect x="43.2212%" y="693" width="0.0369%" height="15" fill="rgb(216,148,1)" fg:x="167639" fg:w="143"/><text x="43.4712%" y="703.50"></text></g><g><title>_dl_map_object (143 samples, 0.04%)</title><rect x="43.2212%" y="677" width="0.0369%" height="15" fill="rgb(236,182,29)" fg:x="167639" fg:w="143"/><text x="43.4712%" y="687.50"></text></g><g><title>dl_new_hash (51 samples, 0.01%)</title><rect x="43.2823%" y="661" width="0.0131%" height="15" fill="rgb(244,120,48)" fg:x="167876" fg:w="51"/><text x="43.5323%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (168 samples, 0.04%)</title><rect x="43.2797%" y="677" width="0.0433%" height="15" fill="rgb(206,71,34)" fg:x="167866" fg:w="168"/><text x="43.5297%" y="687.50"></text></g><g><title>do_lookup_x (107 samples, 0.03%)</title><rect x="43.2954%" y="661" width="0.0276%" height="15" fill="rgb(242,32,6)" fg:x="167927" fg:w="107"/><text x="43.5454%" y="671.50"></text></g><g><title>do_fault (53 samples, 0.01%)</title><rect x="43.3241%" y="581" width="0.0137%" height="15" fill="rgb(241,35,3)" fg:x="168038" fg:w="53"/><text x="43.5741%" y="591.50"></text></g><g><title>do_user_addr_fault (58 samples, 0.01%)</title><rect x="43.3233%" y="645" width="0.0150%" height="15" fill="rgb(222,62,19)" fg:x="168035" fg:w="58"/><text x="43.5733%" y="655.50"></text></g><g><title>handle_mm_fault (56 samples, 0.01%)</title><rect x="43.3238%" y="629" width="0.0144%" height="15" fill="rgb(223,110,41)" fg:x="168037" fg:w="56"/><text x="43.5738%" y="639.50"></text></g><g><title>__handle_mm_fault (56 samples, 0.01%)</title><rect x="43.3238%" y="613" width="0.0144%" height="15" fill="rgb(208,224,4)" fg:x="168037" fg:w="56"/><text x="43.5738%" y="623.50"></text></g><g><title>handle_pte_fault (56 samples, 0.01%)</title><rect x="43.3238%" y="597" width="0.0144%" height="15" fill="rgb(241,137,19)" fg:x="168037" fg:w="56"/><text x="43.5738%" y="607.50"></text></g><g><title>asm_exc_page_fault (61 samples, 0.02%)</title><rect x="43.3230%" y="677" width="0.0157%" height="15" fill="rgb(244,24,17)" fg:x="168034" fg:w="61"/><text x="43.5730%" y="687.50"></text></g><g><title>exc_page_fault (60 samples, 0.02%)</title><rect x="43.3233%" y="661" width="0.0155%" height="15" fill="rgb(245,178,49)" fg:x="168035" fg:w="60"/><text x="43.5733%" y="671.50"></text></g><g><title>elf_machine_rela (263 samples, 0.07%)</title><rect x="43.2722%" y="693" width="0.0678%" height="15" fill="rgb(219,160,38)" fg:x="167837" fg:w="263"/><text x="43.5222%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (292 samples, 0.08%)</title><rect x="43.2673%" y="709" width="0.0753%" height="15" fill="rgb(228,137,14)" fg:x="167818" fg:w="292"/><text x="43.5173%" y="719.50"></text></g><g><title>_dl_relocate_object (314 samples, 0.08%)</title><rect x="43.2624%" y="725" width="0.0810%" height="15" fill="rgb(237,134,11)" fg:x="167799" fg:w="314"/><text x="43.5124%" y="735.50"></text></g><g><title>dl_main (513 samples, 0.13%)</title><rect x="43.2168%" y="741" width="0.1323%" height="15" fill="rgb(211,126,44)" fg:x="167622" fg:w="513"/><text x="43.4668%" y="751.50"></text></g><g><title>_dl_start_final (519 samples, 0.13%)</title><rect x="43.2163%" y="773" width="0.1338%" height="15" fill="rgb(226,171,33)" fg:x="167620" fg:w="519"/><text x="43.4663%" y="783.50"></text></g><g><title>_dl_sysdep_start (518 samples, 0.13%)</title><rect x="43.2165%" y="757" width="0.1336%" height="15" fill="rgb(253,99,13)" fg:x="167621" fg:w="518"/><text x="43.4665%" y="767.50"></text></g><g><title>_dl_start (521 samples, 0.13%)</title><rect x="43.2163%" y="789" width="0.1343%" height="15" fill="rgb(244,48,7)" fg:x="167620" fg:w="521"/><text x="43.4663%" y="799.50"></text></g><g><title>_start (3,215 samples, 0.83%)</title><rect x="42.5225%" y="805" width="0.8289%" height="15" fill="rgb(244,217,54)" fg:x="164929" fg:w="3215"/><text x="42.7725%" y="815.50"></text></g><g><title>asm_exc_page_fault (127 samples, 0.03%)</title><rect x="43.3514%" y="805" width="0.0327%" height="15" fill="rgb(224,15,18)" fg:x="168144" fg:w="127"/><text x="43.6014%" y="815.50"></text></g><g><title>exit_mm (79 samples, 0.02%)</title><rect x="43.3901%" y="725" width="0.0204%" height="15" fill="rgb(244,99,12)" fg:x="168294" fg:w="79"/><text x="43.6401%" y="735.50"></text></g><g><title>mmput (69 samples, 0.02%)</title><rect x="43.3926%" y="709" width="0.0178%" height="15" fill="rgb(233,226,8)" fg:x="168304" fg:w="69"/><text x="43.6426%" y="719.50"></text></g><g><title>exit_mmap (69 samples, 0.02%)</title><rect x="43.3926%" y="693" width="0.0178%" height="15" fill="rgb(229,211,3)" fg:x="168304" fg:w="69"/><text x="43.6426%" y="703.50"></text></g><g><title>unmap_vmas (66 samples, 0.02%)</title><rect x="43.3934%" y="677" width="0.0170%" height="15" fill="rgb(216,140,21)" fg:x="168307" fg:w="66"/><text x="43.6434%" y="687.50"></text></g><g><title>unmap_single_vma (64 samples, 0.02%)</title><rect x="43.3939%" y="661" width="0.0165%" height="15" fill="rgb(234,122,30)" fg:x="168309" fg:w="64"/><text x="43.6439%" y="671.50"></text></g><g><title>unmap_page_range (64 samples, 0.02%)</title><rect x="43.3939%" y="645" width="0.0165%" height="15" fill="rgb(236,25,46)" fg:x="168309" fg:w="64"/><text x="43.6439%" y="655.50"></text></g><g><title>zap_pmd_range.isra.0 (64 samples, 0.02%)</title><rect x="43.3939%" y="629" width="0.0165%" height="15" fill="rgb(217,52,54)" fg:x="168309" fg:w="64"/><text x="43.6439%" y="639.50"></text></g><g><title>zap_pte_range (63 samples, 0.02%)</title><rect x="43.3942%" y="613" width="0.0162%" height="15" fill="rgb(222,29,26)" fg:x="168310" fg:w="63"/><text x="43.6442%" y="623.50"></text></g><g><title>__x64_sys_exit_group (82 samples, 0.02%)</title><rect x="43.3901%" y="773" width="0.0211%" height="15" fill="rgb(216,177,29)" fg:x="168294" fg:w="82"/><text x="43.6401%" y="783.50"></text></g><g><title>do_group_exit (82 samples, 0.02%)</title><rect x="43.3901%" y="757" width="0.0211%" height="15" fill="rgb(247,136,51)" fg:x="168294" fg:w="82"/><text x="43.6401%" y="767.50"></text></g><g><title>do_exit (82 samples, 0.02%)</title><rect x="43.3901%" y="741" width="0.0211%" height="15" fill="rgb(231,47,47)" fg:x="168294" fg:w="82"/><text x="43.6401%" y="751.50"></text></g><g><title>page_remove_rmap (48 samples, 0.01%)</title><rect x="43.4267%" y="533" width="0.0124%" height="15" fill="rgb(211,192,36)" fg:x="168436" fg:w="48"/><text x="43.6767%" y="543.50"></text></g><g><title>exit_mm (136 samples, 0.04%)</title><rect x="43.4117%" y="661" width="0.0351%" height="15" fill="rgb(229,156,32)" fg:x="168378" fg:w="136"/><text x="43.6617%" y="671.50"></text></g><g><title>mmput (130 samples, 0.03%)</title><rect x="43.4133%" y="645" width="0.0335%" height="15" fill="rgb(248,213,20)" fg:x="168384" fg:w="130"/><text x="43.6633%" y="655.50"></text></g><g><title>exit_mmap (130 samples, 0.03%)</title><rect x="43.4133%" y="629" width="0.0335%" height="15" fill="rgb(217,64,7)" fg:x="168384" fg:w="130"/><text x="43.6633%" y="639.50"></text></g><g><title>unmap_vmas (122 samples, 0.03%)</title><rect x="43.4153%" y="613" width="0.0315%" height="15" fill="rgb(232,142,8)" fg:x="168392" fg:w="122"/><text x="43.6653%" y="623.50"></text></g><g><title>unmap_single_vma (122 samples, 0.03%)</title><rect x="43.4153%" y="597" width="0.0315%" height="15" fill="rgb(224,92,44)" fg:x="168392" fg:w="122"/><text x="43.6653%" y="607.50"></text></g><g><title>unmap_page_range (121 samples, 0.03%)</title><rect x="43.4156%" y="581" width="0.0312%" height="15" fill="rgb(214,169,17)" fg:x="168393" fg:w="121"/><text x="43.6656%" y="591.50"></text></g><g><title>zap_pmd_range.isra.0 (121 samples, 0.03%)</title><rect x="43.4156%" y="565" width="0.0312%" height="15" fill="rgb(210,59,37)" fg:x="168393" fg:w="121"/><text x="43.6656%" y="575.50"></text></g><g><title>zap_pte_range (120 samples, 0.03%)</title><rect x="43.4158%" y="549" width="0.0309%" height="15" fill="rgb(214,116,48)" fg:x="168394" fg:w="120"/><text x="43.6658%" y="559.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.06%)</title><rect x="43.3846%" y="805" width="0.0627%" height="15" fill="rgb(244,191,6)" fg:x="168273" fg:w="243"/><text x="43.6346%" y="815.50"></text></g><g><title>do_syscall_64 (241 samples, 0.06%)</title><rect x="43.3852%" y="789" width="0.0621%" height="15" fill="rgb(241,50,52)" fg:x="168275" fg:w="241"/><text x="43.6352%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (139 samples, 0.04%)</title><rect x="43.4115%" y="773" width="0.0358%" height="15" fill="rgb(236,75,39)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (139 samples, 0.04%)</title><rect x="43.4115%" y="757" width="0.0358%" height="15" fill="rgb(236,99,0)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="767.50"></text></g><g><title>exit_to_user_mode_loop (139 samples, 0.04%)</title><rect x="43.4115%" y="741" width="0.0358%" height="15" fill="rgb(207,202,15)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="751.50"></text></g><g><title>arch_do_signal_or_restart (139 samples, 0.04%)</title><rect x="43.4115%" y="725" width="0.0358%" height="15" fill="rgb(233,207,14)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="735.50"></text></g><g><title>get_signal (139 samples, 0.04%)</title><rect x="43.4115%" y="709" width="0.0358%" height="15" fill="rgb(226,27,51)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="719.50"></text></g><g><title>do_group_exit (139 samples, 0.04%)</title><rect x="43.4115%" y="693" width="0.0358%" height="15" fill="rgb(206,104,42)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="703.50"></text></g><g><title>do_exit (139 samples, 0.04%)</title><rect x="43.4115%" y="677" width="0.0358%" height="15" fill="rgb(212,225,4)" fg:x="168377" fg:w="139"/><text x="43.6615%" y="687.50"></text></g><g><title>page_remove_file_rmap (39 samples, 0.01%)</title><rect x="43.4821%" y="533" width="0.0101%" height="15" fill="rgb(233,96,42)" fg:x="168651" fg:w="39"/><text x="43.7321%" y="543.50"></text></g><g><title>page_remove_rmap (59 samples, 0.02%)</title><rect x="43.4782%" y="549" width="0.0152%" height="15" fill="rgb(229,21,32)" fg:x="168636" fg:w="59"/><text x="43.7282%" y="559.50"></text></g><g><title>tlb_flush_mmu (47 samples, 0.01%)</title><rect x="43.4937%" y="549" width="0.0121%" height="15" fill="rgb(226,216,24)" fg:x="168696" fg:w="47"/><text x="43.7437%" y="559.50"></text></g><g><title>exit_mm (221 samples, 0.06%)</title><rect x="43.4509%" y="677" width="0.0570%" height="15" fill="rgb(221,163,17)" fg:x="168530" fg:w="221"/><text x="43.7009%" y="687.50"></text></g><g><title>mmput (218 samples, 0.06%)</title><rect x="43.4517%" y="661" width="0.0562%" height="15" fill="rgb(216,216,42)" fg:x="168533" fg:w="218"/><text x="43.7017%" y="671.50"></text></g><g><title>exit_mmap (218 samples, 0.06%)</title><rect x="43.4517%" y="645" width="0.0562%" height="15" fill="rgb(240,118,7)" fg:x="168533" fg:w="218"/><text x="43.7017%" y="655.50"></text></g><g><title>unmap_vmas (206 samples, 0.05%)</title><rect x="43.4548%" y="629" width="0.0531%" height="15" fill="rgb(221,67,37)" fg:x="168545" fg:w="206"/><text x="43.7048%" y="639.50"></text></g><g><title>unmap_single_vma (204 samples, 0.05%)</title><rect x="43.4553%" y="613" width="0.0526%" height="15" fill="rgb(241,32,44)" fg:x="168547" fg:w="204"/><text x="43.7053%" y="623.50"></text></g><g><title>unmap_page_range (204 samples, 0.05%)</title><rect x="43.4553%" y="597" width="0.0526%" height="15" fill="rgb(235,204,43)" fg:x="168547" fg:w="204"/><text x="43.7053%" y="607.50"></text></g><g><title>zap_pmd_range.isra.0 (202 samples, 0.05%)</title><rect x="43.4558%" y="581" width="0.0521%" height="15" fill="rgb(213,116,10)" fg:x="168549" fg:w="202"/><text x="43.7058%" y="591.50"></text></g><g><title>zap_pte_range (195 samples, 0.05%)</title><rect x="43.4576%" y="565" width="0.0503%" height="15" fill="rgb(239,15,48)" fg:x="168556" fg:w="195"/><text x="43.7076%" y="575.50"></text></g><g><title>ret_from_fork (229 samples, 0.06%)</title><rect x="43.4496%" y="805" width="0.0590%" height="15" fill="rgb(207,123,36)" fg:x="168525" fg:w="229"/><text x="43.6996%" y="815.50"></text></g><g><title>syscall_exit_to_user_mode (229 samples, 0.06%)</title><rect x="43.4496%" y="789" width="0.0590%" height="15" fill="rgb(209,103,30)" fg:x="168525" fg:w="229"/><text x="43.6996%" y="799.50"></text></g><g><title>exit_to_user_mode_prepare (229 samples, 0.06%)</title><rect x="43.4496%" y="773" width="0.0590%" height="15" fill="rgb(238,100,19)" fg:x="168525" fg:w="229"/><text x="43.6996%" y="783.50"></text></g><g><title>exit_to_user_mode_loop (229 samples, 0.06%)</title><rect x="43.4496%" y="757" width="0.0590%" height="15" fill="rgb(244,30,14)" fg:x="168525" fg:w="229"/><text x="43.6996%" y="767.50"></text></g><g><title>arch_do_signal_or_restart (228 samples, 0.06%)</title><rect x="43.4499%" y="741" width="0.0588%" height="15" fill="rgb(249,174,6)" fg:x="168526" fg:w="228"/><text x="43.6999%" y="751.50"></text></g><g><title>get_signal (228 samples, 0.06%)</title><rect x="43.4499%" y="725" width="0.0588%" height="15" fill="rgb(235,213,41)" fg:x="168526" fg:w="228"/><text x="43.6999%" y="735.50"></text></g><g><title>do_group_exit (228 samples, 0.06%)</title><rect x="43.4499%" y="709" width="0.0588%" height="15" fill="rgb(213,118,6)" fg:x="168526" fg:w="228"/><text x="43.6999%" y="719.50"></text></g><g><title>do_exit (228 samples, 0.06%)</title><rect x="43.4499%" y="693" width="0.0588%" height="15" fill="rgb(235,44,51)" fg:x="168526" fg:w="228"/><text x="43.6999%" y="703.50"></text></g><g><title>ld.lld (5,019 samples, 1.29%)</title><rect x="42.2175%" y="821" width="1.2940%" height="15" fill="rgb(217,9,53)" fg:x="163746" fg:w="5019"/><text x="42.4675%" y="831.50"></text></g><g><title>bprm_execve (39 samples, 0.01%)</title><rect x="43.5375%" y="213" width="0.0101%" height="15" fill="rgb(237,172,34)" fg:x="168866" fg:w="39"/><text x="43.7875%" y="223.50"></text></g><g><title>bprm_execve.part.0 (39 samples, 0.01%)</title><rect x="43.5375%" y="197" width="0.0101%" height="15" fill="rgb(206,206,11)" fg:x="168866" fg:w="39"/><text x="43.7875%" y="207.50"></text></g><g><title>exec_binprm (39 samples, 0.01%)</title><rect x="43.5375%" y="181" width="0.0101%" height="15" fill="rgb(214,149,29)" fg:x="168866" fg:w="39"/><text x="43.7875%" y="191.50"></text></g><g><title>search_binary_handler (39 samples, 0.01%)</title><rect x="43.5375%" y="165" width="0.0101%" height="15" fill="rgb(208,123,3)" fg:x="168866" fg:w="39"/><text x="43.7875%" y="175.50"></text></g><g><title>[bash] (56 samples, 0.01%)</title><rect x="43.5337%" y="341" width="0.0144%" height="15" fill="rgb(229,126,4)" fg:x="168851" fg:w="56"/><text x="43.7837%" y="351.50"></text></g><g><title>[bash] (56 samples, 0.01%)</title><rect x="43.5337%" y="325" width="0.0144%" height="15" fill="rgb(222,92,36)" fg:x="168851" fg:w="56"/><text x="43.7837%" y="335.50"></text></g><g><title>shell_execve (41 samples, 0.01%)</title><rect x="43.5375%" y="309" width="0.0106%" height="15" fill="rgb(216,39,41)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="319.50"></text></g><g><title>__GI_execve (41 samples, 0.01%)</title><rect x="43.5375%" y="293" width="0.0106%" height="15" fill="rgb(253,127,28)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="303.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.01%)</title><rect x="43.5375%" y="277" width="0.0106%" height="15" fill="rgb(249,152,51)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="287.50"></text></g><g><title>do_syscall_64 (41 samples, 0.01%)</title><rect x="43.5375%" y="261" width="0.0106%" height="15" fill="rgb(209,123,42)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="271.50"></text></g><g><title>__x64_sys_execve (41 samples, 0.01%)</title><rect x="43.5375%" y="245" width="0.0106%" height="15" fill="rgb(241,118,22)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="255.50"></text></g><g><title>do_execveat_common.isra.0 (41 samples, 0.01%)</title><rect x="43.5375%" y="229" width="0.0106%" height="15" fill="rgb(208,25,7)" fg:x="168866" fg:w="41"/><text x="43.7875%" y="239.50"></text></g><g><title>[bash] (97 samples, 0.03%)</title><rect x="43.5234%" y="789" width="0.0250%" height="15" fill="rgb(243,144,39)" fg:x="168811" fg:w="97"/><text x="43.7734%" y="799.50"></text></g><g><title>execute_command_internal (64 samples, 0.02%)</title><rect x="43.5319%" y="773" width="0.0165%" height="15" fill="rgb(250,50,5)" fg:x="168844" fg:w="64"/><text x="43.7819%" y="783.50"></text></g><g><title>execute_command_internal (64 samples, 0.02%)</title><rect x="43.5319%" y="757" width="0.0165%" height="15" fill="rgb(207,67,11)" fg:x="168844" fg:w="64"/><text x="43.7819%" y="767.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="741" width="0.0147%" height="15" fill="rgb(245,204,40)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="751.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="725" width="0.0147%" height="15" fill="rgb(238,228,24)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="735.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="709" width="0.0147%" height="15" fill="rgb(217,116,22)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="719.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="693" width="0.0147%" height="15" fill="rgb(234,98,12)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="703.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="677" width="0.0147%" height="15" fill="rgb(242,170,50)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="687.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="43.5337%" y="661" width="0.0147%" height="15" fill="rgb(235,7,5)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="671.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="645" width="0.0147%" height="15" fill="rgb(241,114,28)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="655.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="43.5337%" y="629" width="0.0147%" height="15" fill="rgb(246,112,42)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="639.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="613" width="0.0147%" height="15" fill="rgb(248,228,14)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="623.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="43.5337%" y="597" width="0.0147%" height="15" fill="rgb(208,133,18)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="607.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="581" width="0.0147%" height="15" fill="rgb(207,35,49)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="591.50"></text></g><g><title>execute_command (57 samples, 0.01%)</title><rect x="43.5337%" y="565" width="0.0147%" height="15" fill="rgb(205,68,36)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="575.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="549" width="0.0147%" height="15" fill="rgb(245,62,40)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="559.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="533" width="0.0147%" height="15" fill="rgb(228,27,24)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="543.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="517" width="0.0147%" height="15" fill="rgb(253,19,12)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="527.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="501" width="0.0147%" height="15" fill="rgb(232,28,20)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="511.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="485" width="0.0147%" height="15" fill="rgb(218,35,51)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="495.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="469" width="0.0147%" height="15" fill="rgb(212,90,40)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="479.50"></text></g><g><title>expand_string_assignment (57 samples, 0.01%)</title><rect x="43.5337%" y="453" width="0.0147%" height="15" fill="rgb(220,172,12)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="463.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="437" width="0.0147%" height="15" fill="rgb(226,159,20)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="447.50"></text></g><g><title>command_substitute (57 samples, 0.01%)</title><rect x="43.5337%" y="421" width="0.0147%" height="15" fill="rgb(234,205,16)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="431.50"></text></g><g><title>parse_and_execute (57 samples, 0.01%)</title><rect x="43.5337%" y="405" width="0.0147%" height="15" fill="rgb(207,9,39)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="415.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="389" width="0.0147%" height="15" fill="rgb(249,143,15)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="399.50"></text></g><g><title>[bash] (57 samples, 0.01%)</title><rect x="43.5337%" y="373" width="0.0147%" height="15" fill="rgb(253,133,29)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="383.50"></text></g><g><title>execute_command_internal (57 samples, 0.01%)</title><rect x="43.5337%" y="357" width="0.0147%" height="15" fill="rgb(221,187,0)" fg:x="168851" fg:w="57"/><text x="43.7837%" y="367.50"></text></g><g><title>execute_command_internal (72 samples, 0.02%)</title><rect x="43.5574%" y="789" width="0.0186%" height="15" fill="rgb(205,204,26)" fg:x="168943" fg:w="72"/><text x="43.8074%" y="799.50"></text></g><g><title>execute_command_internal (53 samples, 0.01%)</title><rect x="43.5623%" y="773" width="0.0137%" height="15" fill="rgb(224,68,54)" fg:x="168962" fg:w="53"/><text x="43.8123%" y="783.50"></text></g><g><title>[unknown] (218 samples, 0.06%)</title><rect x="43.5234%" y="805" width="0.0562%" height="15" fill="rgb(209,67,4)" fg:x="168811" fg:w="218"/><text x="43.7734%" y="815.50"></text></g><g><title>exec_binprm (59 samples, 0.02%)</title><rect x="43.6048%" y="357" width="0.0152%" height="15" fill="rgb(228,229,18)" fg:x="169127" fg:w="59"/><text x="43.8548%" y="367.50"></text></g><g><title>search_binary_handler (59 samples, 0.02%)</title><rect x="43.6048%" y="341" width="0.0152%" height="15" fill="rgb(231,89,13)" fg:x="169127" fg:w="59"/><text x="43.8548%" y="351.50"></text></g><g><title>security_bprm_check (59 samples, 0.02%)</title><rect x="43.6048%" y="325" width="0.0152%" height="15" fill="rgb(210,182,18)" fg:x="169127" fg:w="59"/><text x="43.8548%" y="335.50"></text></g><g><title>pinnedhook_security_bprm_check_security (59 samples, 0.02%)</title><rect x="43.6048%" y="309" width="0.0152%" height="15" fill="rgb(240,105,2)" fg:x="169127" fg:w="59"/><text x="43.8548%" y="319.50"></text></g><g><title>cshook_security_bprm_check_security (58 samples, 0.01%)</title><rect x="43.6051%" y="293" width="0.0150%" height="15" fill="rgb(207,170,50)" fg:x="169128" fg:w="58"/><text x="43.8551%" y="303.50"></text></g><g><title>cshook_security_file_permission (58 samples, 0.01%)</title><rect x="43.6051%" y="277" width="0.0150%" height="15" fill="rgb(232,133,24)" fg:x="169128" fg:w="58"/><text x="43.8551%" y="287.50"></text></g><g><title>cshook_security_file_permission (58 samples, 0.01%)</title><rect x="43.6051%" y="261" width="0.0150%" height="15" fill="rgb(235,166,27)" fg:x="169128" fg:w="58"/><text x="43.8551%" y="271.50"></text></g><g><title>cshook_security_sb_free_security (58 samples, 0.01%)</title><rect x="43.6051%" y="245" width="0.0150%" height="15" fill="rgb(209,19,13)" fg:x="169128" fg:w="58"/><text x="43.8551%" y="255.50"></text></g><g><title>cshook_security_sb_free_security (58 samples, 0.01%)</title><rect x="43.6051%" y="229" width="0.0150%" height="15" fill="rgb(226,79,39)" fg:x="169128" fg:w="58"/><text x="43.8551%" y="239.50"></text></g><g><title>bprm_execve (62 samples, 0.02%)</title><rect x="43.6043%" y="389" width="0.0160%" height="15" fill="rgb(222,163,10)" fg:x="169125" fg:w="62"/><text x="43.8543%" y="399.50"></text></g><g><title>bprm_execve.part.0 (62 samples, 0.02%)</title><rect x="43.6043%" y="373" width="0.0160%" height="15" fill="rgb(214,44,19)" fg:x="169125" fg:w="62"/><text x="43.8543%" y="383.50"></text></g><g><title>[bash] (84 samples, 0.02%)</title><rect x="43.5992%" y="501" width="0.0217%" height="15" fill="rgb(210,217,13)" fg:x="169105" fg:w="84"/><text x="43.8492%" y="511.50"></text></g><g><title>shell_execve (65 samples, 0.02%)</title><rect x="43.6041%" y="485" width="0.0168%" height="15" fill="rgb(237,61,54)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="495.50"></text></g><g><title>__GI_execve (65 samples, 0.02%)</title><rect x="43.6041%" y="469" width="0.0168%" height="15" fill="rgb(226,184,24)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="479.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (65 samples, 0.02%)</title><rect x="43.6041%" y="453" width="0.0168%" height="15" fill="rgb(223,226,4)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="463.50"></text></g><g><title>do_syscall_64 (65 samples, 0.02%)</title><rect x="43.6041%" y="437" width="0.0168%" height="15" fill="rgb(210,26,41)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="447.50"></text></g><g><title>__x64_sys_execve (65 samples, 0.02%)</title><rect x="43.6041%" y="421" width="0.0168%" height="15" fill="rgb(220,221,6)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="431.50"></text></g><g><title>do_execveat_common.isra.0 (65 samples, 0.02%)</title><rect x="43.6041%" y="405" width="0.0168%" height="15" fill="rgb(225,89,49)" fg:x="169124" fg:w="65"/><text x="43.8541%" y="415.50"></text></g><g><title>[bash] (99 samples, 0.03%)</title><rect x="43.5992%" y="517" width="0.0255%" height="15" fill="rgb(218,70,45)" fg:x="169105" fg:w="99"/><text x="43.8492%" y="527.50"></text></g><g><title>parse_and_execute (110 samples, 0.03%)</title><rect x="43.5971%" y="581" width="0.0284%" height="15" fill="rgb(238,166,21)" fg:x="169097" fg:w="110"/><text x="43.8471%" y="591.50"></text></g><g><title>execute_command_internal (108 samples, 0.03%)</title><rect x="43.5976%" y="565" width="0.0278%" height="15" fill="rgb(224,141,44)" fg:x="169099" fg:w="108"/><text x="43.8476%" y="575.50"></text></g><g><title>[bash] (108 samples, 0.03%)</title><rect x="43.5976%" y="549" width="0.0278%" height="15" fill="rgb(230,12,49)" fg:x="169099" fg:w="108"/><text x="43.8476%" y="559.50"></text></g><g><title>execute_command_internal (102 samples, 0.03%)</title><rect x="43.5992%" y="533" width="0.0263%" height="15" fill="rgb(212,174,12)" fg:x="169105" fg:w="102"/><text x="43.8492%" y="543.50"></text></g><g><title>command_substitute (127 samples, 0.03%)</title><rect x="43.5932%" y="597" width="0.0327%" height="15" fill="rgb(246,67,9)" fg:x="169082" fg:w="127"/><text x="43.8432%" y="607.50"></text></g><g><title>expand_string_assignment (140 samples, 0.04%)</title><rect x="43.5904%" y="629" width="0.0361%" height="15" fill="rgb(239,35,23)" fg:x="169071" fg:w="140"/><text x="43.8404%" y="639.50"></text></g><g><title>[bash] (140 samples, 0.04%)</title><rect x="43.5904%" y="613" width="0.0361%" height="15" fill="rgb(211,167,0)" fg:x="169071" fg:w="140"/><text x="43.8404%" y="623.50"></text></g><g><title>[bash] (147 samples, 0.04%)</title><rect x="43.5888%" y="645" width="0.0379%" height="15" fill="rgb(225,119,45)" fg:x="169065" fg:w="147"/><text x="43.8388%" y="655.50"></text></g><g><title>[bash] (151 samples, 0.04%)</title><rect x="43.5888%" y="661" width="0.0389%" height="15" fill="rgb(210,162,6)" fg:x="169065" fg:w="151"/><text x="43.8388%" y="671.50"></text></g><g><title>[bash] (173 samples, 0.04%)</title><rect x="43.5886%" y="677" width="0.0446%" height="15" fill="rgb(208,118,35)" fg:x="169064" fg:w="173"/><text x="43.8386%" y="687.50"></text></g><g><title>[bash] (177 samples, 0.05%)</title><rect x="43.5883%" y="693" width="0.0456%" height="15" fill="rgb(239,4,53)" fg:x="169063" fg:w="177"/><text x="43.8383%" y="703.50"></text></g><g><title>copy_command (42 samples, 0.01%)</title><rect x="43.6368%" y="565" width="0.0108%" height="15" fill="rgb(213,130,21)" fg:x="169251" fg:w="42"/><text x="43.8868%" y="575.50"></text></g><g><title>copy_command (40 samples, 0.01%)</title><rect x="43.6373%" y="549" width="0.0103%" height="15" fill="rgb(235,148,0)" fg:x="169253" fg:w="40"/><text x="43.8873%" y="559.50"></text></g><g><title>copy_command (47 samples, 0.01%)</title><rect x="43.6358%" y="597" width="0.0121%" height="15" fill="rgb(244,224,18)" fg:x="169247" fg:w="47"/><text x="43.8858%" y="607.50"></text></g><g><title>copy_command (44 samples, 0.01%)</title><rect x="43.6365%" y="581" width="0.0113%" height="15" fill="rgb(211,214,4)" fg:x="169250" fg:w="44"/><text x="43.8865%" y="591.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="43.6353%" y="613" width="0.0131%" height="15" fill="rgb(206,119,25)" fg:x="169245" fg:w="51"/><text x="43.8853%" y="623.50"></text></g><g><title>copy_command (55 samples, 0.01%)</title><rect x="43.6345%" y="629" width="0.0142%" height="15" fill="rgb(243,93,47)" fg:x="169242" fg:w="55"/><text x="43.8845%" y="639.50"></text></g><g><title>bind_function (58 samples, 0.01%)</title><rect x="43.6340%" y="693" width="0.0150%" height="15" fill="rgb(224,194,6)" fg:x="169240" fg:w="58"/><text x="43.8840%" y="703.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="43.6342%" y="677" width="0.0147%" height="15" fill="rgb(243,229,6)" fg:x="169241" fg:w="57"/><text x="43.8842%" y="687.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="43.6342%" y="661" width="0.0147%" height="15" fill="rgb(207,23,50)" fg:x="169241" fg:w="57"/><text x="43.8842%" y="671.50"></text></g><g><title>copy_command (57 samples, 0.01%)</title><rect x="43.6342%" y="645" width="0.0147%" height="15" fill="rgb(253,192,32)" fg:x="169241" fg:w="57"/><text x="43.8842%" y="655.50"></text></g><g><title>copy_command (41 samples, 0.01%)</title><rect x="43.6510%" y="581" width="0.0106%" height="15" fill="rgb(213,21,6)" fg:x="169306" fg:w="41"/><text x="43.9010%" y="591.50"></text></g><g><title>copy_command (46 samples, 0.01%)</title><rect x="43.6502%" y="597" width="0.0119%" height="15" fill="rgb(243,151,13)" fg:x="169303" fg:w="46"/><text x="43.9002%" y="607.50"></text></g><g><title>copy_command (51 samples, 0.01%)</title><rect x="43.6494%" y="629" width="0.0131%" height="15" fill="rgb(233,165,41)" fg:x="169300" fg:w="51"/><text x="43.8994%" y="639.50"></text></g><g><title>copy_command (50 samples, 0.01%)</title><rect x="43.6497%" y="613" width="0.0129%" height="15" fill="rgb(246,176,45)" fg:x="169301" fg:w="50"/><text x="43.8997%" y="623.50"></text></g><g><title>copy_command (52 samples, 0.01%)</title><rect x="43.6494%" y="645" width="0.0134%" height="15" fill="rgb(217,170,52)" fg:x="169300" fg:w="52"/><text x="43.8994%" y="655.50"></text></g><g><title>copy_function_def_contents (55 samples, 0.01%)</title><rect x="43.6492%" y="693" width="0.0142%" height="15" fill="rgb(214,203,54)" fg:x="169299" fg:w="55"/><text x="43.8992%" y="703.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="43.6494%" y="677" width="0.0139%" height="15" fill="rgb(248,215,49)" fg:x="169300" fg:w="54"/><text x="43.8994%" y="687.50"></text></g><g><title>copy_command (54 samples, 0.01%)</title><rect x="43.6494%" y="661" width="0.0139%" height="15" fill="rgb(208,46,10)" fg:x="169300" fg:w="54"/><text x="43.8994%" y="671.50"></text></g><g><title>expand_word_leave_quoted (44 samples, 0.01%)</title><rect x="43.6768%" y="661" width="0.0113%" height="15" fill="rgb(254,5,31)" fg:x="169406" fg:w="44"/><text x="43.9268%" y="671.50"></text></g><g><title>[bash] (44 samples, 0.01%)</title><rect x="43.6768%" y="645" width="0.0113%" height="15" fill="rgb(222,104,33)" fg:x="169406" fg:w="44"/><text x="43.9268%" y="655.50"></text></g><g><title>command_substitute (44 samples, 0.01%)</title><rect x="43.6768%" y="629" width="0.0113%" height="15" fill="rgb(248,49,16)" fg:x="169406" fg:w="44"/><text x="43.9268%" y="639.50"></text></g><g><title>execute_command (109 samples, 0.03%)</title><rect x="43.6634%" y="693" width="0.0281%" height="15" fill="rgb(232,198,41)" fg:x="169354" fg:w="109"/><text x="43.9134%" y="703.50"></text></g><g><title>execute_command_internal (108 samples, 0.03%)</title><rect x="43.6636%" y="677" width="0.0278%" height="15" fill="rgb(214,125,3)" fg:x="169355" fg:w="108"/><text x="43.9136%" y="687.50"></text></g><g><title>execute_command (405 samples, 0.10%)</title><rect x="43.5876%" y="725" width="0.1044%" height="15" fill="rgb(229,220,28)" fg:x="169060" fg:w="405"/><text x="43.8376%" y="735.50"></text></g><g><title>execute_command_internal (404 samples, 0.10%)</title><rect x="43.5878%" y="709" width="0.1042%" height="15" fill="rgb(222,64,37)" fg:x="169061" fg:w="404"/><text x="43.8378%" y="719.50"></text></g><g><title>[bash] (209 samples, 0.05%)</title><rect x="43.7247%" y="661" width="0.0539%" height="15" fill="rgb(249,184,13)" fg:x="169592" fg:w="209"/><text x="43.9747%" y="671.50"></text></g><g><title>buffered_getchar (46 samples, 0.01%)</title><rect x="43.7667%" y="645" width="0.0119%" height="15" fill="rgb(252,176,6)" fg:x="169755" fg:w="46"/><text x="44.0167%" y="655.50"></text></g><g><title>[bash] (340 samples, 0.09%)</title><rect x="43.7049%" y="677" width="0.0877%" height="15" fill="rgb(228,153,7)" fg:x="169515" fg:w="340"/><text x="43.9549%" y="687.50"></text></g><g><title>reader_loop (852 samples, 0.22%)</title><rect x="43.5824%" y="741" width="0.2197%" height="15" fill="rgb(242,193,5)" fg:x="169040" fg:w="852"/><text x="43.8324%" y="751.50"></text></g><g><title>read_command (427 samples, 0.11%)</title><rect x="43.6920%" y="725" width="0.1101%" height="15" fill="rgb(232,140,9)" fg:x="169465" fg:w="427"/><text x="43.9420%" y="735.50"></text></g><g><title>parse_command (426 samples, 0.11%)</title><rect x="43.6922%" y="709" width="0.1098%" height="15" fill="rgb(213,222,16)" fg:x="169466" fg:w="426"/><text x="43.9422%" y="719.50"></text></g><g><title>yyparse (425 samples, 0.11%)</title><rect x="43.6925%" y="693" width="0.1096%" height="15" fill="rgb(222,75,50)" fg:x="169467" fg:w="425"/><text x="43.9425%" y="703.50"></text></g><g><title>__libc_start_main_impl (871 samples, 0.22%)</title><rect x="43.5796%" y="789" width="0.2246%" height="15" fill="rgb(205,180,2)" fg:x="169029" fg:w="871"/><text x="43.8296%" y="799.50"></text></g><g><title>__libc_start_call_main (871 samples, 0.22%)</title><rect x="43.5796%" y="773" width="0.2246%" height="15" fill="rgb(216,34,7)" fg:x="169029" fg:w="871"/><text x="43.8296%" y="783.50"></text></g><g><title>main (871 samples, 0.22%)</title><rect x="43.5796%" y="757" width="0.2246%" height="15" fill="rgb(253,16,32)" fg:x="169029" fg:w="871"/><text x="43.8296%" y="767.50"></text></g><g><title>_start (896 samples, 0.23%)</title><rect x="43.5796%" y="805" width="0.2310%" height="15" fill="rgb(208,97,28)" fg:x="169029" fg:w="896"/><text x="43.8296%" y="815.50"></text></g><g><title>exit_mm (60 samples, 0.02%)</title><rect x="43.8206%" y="725" width="0.0155%" height="15" fill="rgb(225,92,11)" fg:x="169964" fg:w="60"/><text x="44.0706%" y="735.50"></text></g><g><title>mmput (60 samples, 0.02%)</title><rect x="43.8206%" y="709" width="0.0155%" height="15" fill="rgb(243,38,12)" fg:x="169964" fg:w="60"/><text x="44.0706%" y="719.50"></text></g><g><title>exit_mmap (60 samples, 0.02%)</title><rect x="43.8206%" y="693" width="0.0155%" height="15" fill="rgb(208,139,16)" fg:x="169964" fg:w="60"/><text x="44.0706%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (79 samples, 0.02%)</title><rect x="43.8165%" y="805" width="0.0204%" height="15" fill="rgb(227,24,9)" fg:x="169948" fg:w="79"/><text x="44.0665%" y="815.50"></text></g><g><title>do_syscall_64 (79 samples, 0.02%)</title><rect x="43.8165%" y="789" width="0.0204%" height="15" fill="rgb(206,62,11)" fg:x="169948" fg:w="79"/><text x="44.0665%" y="799.50"></text></g><g><title>__x64_sys_exit_group (68 samples, 0.02%)</title><rect x="43.8193%" y="773" width="0.0175%" height="15" fill="rgb(228,134,27)" fg:x="169959" fg:w="68"/><text x="44.0693%" y="783.50"></text></g><g><title>do_group_exit (68 samples, 0.02%)</title><rect x="43.8193%" y="757" width="0.0175%" height="15" fill="rgb(205,55,33)" fg:x="169959" fg:w="68"/><text x="44.0693%" y="767.50"></text></g><g><title>do_exit (68 samples, 0.02%)</title><rect x="43.8193%" y="741" width="0.0175%" height="15" fill="rgb(243,75,43)" fg:x="169959" fg:w="68"/><text x="44.0693%" y="751.50"></text></g><g><title>libtool (1,263 samples, 0.33%)</title><rect x="43.5115%" y="821" width="0.3256%" height="15" fill="rgb(223,27,42)" fg:x="168765" fg:w="1263"/><text x="43.7615%" y="831.50"></text></g><g><title>copy_tree (41 samples, 0.01%)</title><rect x="43.8559%" y="613" width="0.0106%" height="15" fill="rgb(232,189,33)" fg:x="170101" fg:w="41"/><text x="44.1059%" y="623.50"></text></g><g><title>clone_mnt (39 samples, 0.01%)</title><rect x="43.8565%" y="597" width="0.0101%" height="15" fill="rgb(210,9,39)" fg:x="170103" fg:w="39"/><text x="44.1065%" y="607.50"></text></g><g><title>copy_namespaces (64 samples, 0.02%)</title><rect x="43.8505%" y="661" width="0.0165%" height="15" fill="rgb(242,85,26)" fg:x="170080" fg:w="64"/><text x="44.1005%" y="671.50"></text></g><g><title>create_new_namespaces (64 samples, 0.02%)</title><rect x="43.8505%" y="645" width="0.0165%" height="15" fill="rgb(248,44,4)" fg:x="170080" fg:w="64"/><text x="44.1005%" y="655.50"></text></g><g><title>copy_mnt_ns (45 samples, 0.01%)</title><rect x="43.8554%" y="629" width="0.0116%" height="15" fill="rgb(250,96,46)" fg:x="170099" fg:w="45"/><text x="44.1054%" y="639.50"></text></g><g><title>dup_mmap (44 samples, 0.01%)</title><rect x="43.8683%" y="645" width="0.0113%" height="15" fill="rgb(229,116,26)" fg:x="170149" fg:w="44"/><text x="44.1183%" y="655.50"></text></g><g><title>dup_mm (45 samples, 0.01%)</title><rect x="43.8683%" y="661" width="0.0116%" height="15" fill="rgb(246,94,34)" fg:x="170149" fg:w="45"/><text x="44.1183%" y="671.50"></text></g><g><title>copy_process (148 samples, 0.04%)</title><rect x="43.8469%" y="677" width="0.0382%" height="15" fill="rgb(251,73,21)" fg:x="170066" fg:w="148"/><text x="44.0969%" y="687.50"></text></g><g><title>[libc.so.6] (153 samples, 0.04%)</title><rect x="43.8467%" y="805" width="0.0394%" height="15" fill="rgb(254,121,25)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="815.50"></text></g><g><title>__libc_start_call_main (153 samples, 0.04%)</title><rect x="43.8467%" y="789" width="0.0394%" height="15" fill="rgb(215,161,49)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="799.50"></text></g><g><title>__GI___clone (153 samples, 0.04%)</title><rect x="43.8467%" y="773" width="0.0394%" height="15" fill="rgb(221,43,13)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (153 samples, 0.04%)</title><rect x="43.8467%" y="757" width="0.0394%" height="15" fill="rgb(249,5,37)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="767.50"></text></g><g><title>do_syscall_64 (153 samples, 0.04%)</title><rect x="43.8467%" y="741" width="0.0394%" height="15" fill="rgb(226,25,44)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="751.50"></text></g><g><title>__x64_sys_clone (153 samples, 0.04%)</title><rect x="43.8467%" y="725" width="0.0394%" height="15" fill="rgb(238,189,16)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="735.50"></text></g><g><title>__do_sys_clone (153 samples, 0.04%)</title><rect x="43.8467%" y="709" width="0.0394%" height="15" fill="rgb(251,186,8)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="719.50"></text></g><g><title>kernel_clone (153 samples, 0.04%)</title><rect x="43.8467%" y="693" width="0.0394%" height="15" fill="rgb(254,34,31)" fg:x="170065" fg:w="153"/><text x="44.0967%" y="703.50"></text></g><g><title>__fopen_internal (42 samples, 0.01%)</title><rect x="43.9062%" y="741" width="0.0108%" height="15" fill="rgb(225,215,27)" fg:x="170296" fg:w="42"/><text x="44.1562%" y="751.50"></text></g><g><title>_IO_new_fopen (45 samples, 0.01%)</title><rect x="43.9062%" y="757" width="0.0116%" height="15" fill="rgb(221,192,48)" fg:x="170296" fg:w="45"/><text x="44.1562%" y="767.50"></text></g><g><title>WriteFile (67 samples, 0.02%)</title><rect x="43.9016%" y="773" width="0.0173%" height="15" fill="rgb(219,137,20)" fg:x="170278" fg:w="67"/><text x="44.1516%" y="783.50"></text></g><g><title>_ZdlPv (89 samples, 0.02%)</title><rect x="43.9413%" y="389" width="0.0229%" height="15" fill="rgb(219,84,11)" fg:x="170432" fg:w="89"/><text x="44.1913%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (88 samples, 0.02%)</title><rect x="43.9415%" y="373" width="0.0227%" height="15" fill="rgb(224,10,23)" fg:x="170433" fg:w="88"/><text x="44.1915%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (75 samples, 0.02%)</title><rect x="43.9449%" y="357" width="0.0193%" height="15" fill="rgb(248,22,39)" fg:x="170446" fg:w="75"/><text x="44.1949%" y="367.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (92 samples, 0.02%)</title><rect x="43.9408%" y="421" width="0.0237%" height="15" fill="rgb(212,154,20)" fg:x="170430" fg:w="92"/><text x="44.1908%" y="431.50"></text></g><g><title>_ZdlPv (92 samples, 0.02%)</title><rect x="43.9408%" y="405" width="0.0237%" height="15" fill="rgb(236,199,50)" fg:x="170430" fg:w="92"/><text x="44.1908%" y="415.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (114 samples, 0.03%)</title><rect x="43.9405%" y="437" width="0.0294%" height="15" fill="rgb(211,9,17)" fg:x="170429" fg:w="114"/><text x="44.1905%" y="447.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (127 samples, 0.03%)</title><rect x="43.9379%" y="453" width="0.0327%" height="15" fill="rgb(243,216,36)" fg:x="170419" fg:w="127"/><text x="44.1879%" y="463.50"></text></g><g><title>_ZdlPv (41 samples, 0.01%)</title><rect x="43.9745%" y="373" width="0.0106%" height="15" fill="rgb(250,2,10)" fg:x="170561" fg:w="41"/><text x="44.2245%" y="383.50"></text></g><g><title>_ZdlPv (49 samples, 0.01%)</title><rect x="43.9740%" y="389" width="0.0126%" height="15" fill="rgb(226,50,48)" fg:x="170559" fg:w="49"/><text x="44.2240%" y="399.50"></text></g><g><title>_ZdlPv (61 samples, 0.02%)</title><rect x="43.9730%" y="405" width="0.0157%" height="15" fill="rgb(243,81,16)" fg:x="170555" fg:w="61"/><text x="44.2230%" y="415.50"></text></g><g><title>_ZdlPv (67 samples, 0.02%)</title><rect x="43.9727%" y="421" width="0.0173%" height="15" fill="rgb(250,14,2)" fg:x="170554" fg:w="67"/><text x="44.2227%" y="431.50"></text></g><g><title>_ZdlPv (75 samples, 0.02%)</title><rect x="43.9720%" y="437" width="0.0193%" height="15" fill="rgb(233,135,29)" fg:x="170551" fg:w="75"/><text x="44.2220%" y="447.50"></text></g><g><title>_ZdlPv (98 samples, 0.03%)</title><rect x="43.9709%" y="453" width="0.0253%" height="15" fill="rgb(224,64,43)" fg:x="170547" fg:w="98"/><text x="44.2209%" y="463.50"></text></g><g><title>_ZdlPv (44 samples, 0.01%)</title><rect x="43.9980%" y="437" width="0.0113%" height="15" fill="rgb(238,84,13)" fg:x="170652" fg:w="44"/><text x="44.2480%" y="447.50"></text></g><g><title>_ZdlPv (44 samples, 0.01%)</title><rect x="43.9980%" y="421" width="0.0113%" height="15" fill="rgb(253,48,26)" fg:x="170652" fg:w="44"/><text x="44.2480%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (86 samples, 0.02%)</title><rect x="44.0478%" y="309" width="0.0222%" height="15" fill="rgb(205,223,31)" fg:x="170845" fg:w="86"/><text x="44.2978%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (82 samples, 0.02%)</title><rect x="44.0488%" y="293" width="0.0211%" height="15" fill="rgb(221,41,32)" fg:x="170849" fg:w="82"/><text x="44.2988%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (60 samples, 0.02%)</title><rect x="44.0545%" y="277" width="0.0155%" height="15" fill="rgb(213,158,31)" fg:x="170871" fg:w="60"/><text x="44.3045%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (131 samples, 0.03%)</title><rect x="44.0364%" y="357" width="0.0338%" height="15" fill="rgb(245,126,43)" fg:x="170801" fg:w="131"/><text x="44.2864%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (119 samples, 0.03%)</title><rect x="44.0395%" y="341" width="0.0307%" height="15" fill="rgb(227,7,22)" fg:x="170813" fg:w="119"/><text x="44.2895%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (95 samples, 0.02%)</title><rect x="44.0457%" y="325" width="0.0245%" height="15" fill="rgb(252,90,44)" fg:x="170837" fg:w="95"/><text x="44.2957%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (152 samples, 0.04%)</title><rect x="44.0313%" y="389" width="0.0392%" height="15" fill="rgb(253,91,0)" fg:x="170781" fg:w="152"/><text x="44.2813%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (138 samples, 0.04%)</title><rect x="44.0349%" y="373" width="0.0356%" height="15" fill="rgb(252,175,49)" fg:x="170795" fg:w="138"/><text x="44.2849%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (176 samples, 0.05%)</title><rect x="44.0259%" y="405" width="0.0454%" height="15" fill="rgb(246,150,1)" fg:x="170760" fg:w="176"/><text x="44.2759%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (213 samples, 0.05%)</title><rect x="44.0179%" y="421" width="0.0549%" height="15" fill="rgb(241,192,25)" fg:x="170729" fg:w="213"/><text x="44.2679%" y="431.50"></text></g><g><title>_ZdlPv (552 samples, 0.14%)</title><rect x="43.9323%" y="469" width="0.1423%" height="15" fill="rgb(239,187,11)" fg:x="170397" fg:w="552"/><text x="44.1823%" y="479.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (300 samples, 0.08%)</title><rect x="43.9972%" y="453" width="0.0773%" height="15" fill="rgb(218,202,51)" fg:x="170649" fg:w="300"/><text x="44.2472%" y="463.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (252 samples, 0.06%)</title><rect x="44.0096%" y="437" width="0.0650%" height="15" fill="rgb(225,176,8)" fg:x="170697" fg:w="252"/><text x="44.2596%" y="447.50"></text></g><g><title>_ZdlPv (563 samples, 0.15%)</title><rect x="43.9310%" y="501" width="0.1452%" height="15" fill="rgb(219,122,41)" fg:x="170392" fg:w="563"/><text x="44.1810%" y="511.50"></text></g><g><title>_ZdlPv (563 samples, 0.15%)</title><rect x="43.9310%" y="485" width="0.1452%" height="15" fill="rgb(248,140,20)" fg:x="170392" fg:w="563"/><text x="44.1810%" y="495.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (83 samples, 0.02%)</title><rect x="44.0833%" y="421" width="0.0214%" height="15" fill="rgb(245,41,37)" fg:x="170983" fg:w="83"/><text x="44.3333%" y="431.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (76 samples, 0.02%)</title><rect x="44.0852%" y="405" width="0.0196%" height="15" fill="rgb(235,82,39)" fg:x="170990" fg:w="76"/><text x="44.3352%" y="415.50"></text></g><g><title>_ZdlPv (43 samples, 0.01%)</title><rect x="44.1047%" y="421" width="0.0111%" height="15" fill="rgb(230,108,42)" fg:x="171066" fg:w="43"/><text x="44.3547%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (49 samples, 0.01%)</title><rect x="44.1202%" y="357" width="0.0126%" height="15" fill="rgb(215,150,50)" fg:x="171126" fg:w="49"/><text x="44.3702%" y="367.50"></text></g><g><title>_ZdlPv (60 samples, 0.02%)</title><rect x="44.1176%" y="389" width="0.0155%" height="15" fill="rgb(233,212,5)" fg:x="171116" fg:w="60"/><text x="44.3676%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (57 samples, 0.01%)</title><rect x="44.1184%" y="373" width="0.0147%" height="15" fill="rgb(245,80,22)" fg:x="171119" fg:w="57"/><text x="44.3684%" y="383.50"></text></g><g><title>_ZdlPv (61 samples, 0.02%)</title><rect x="44.1176%" y="405" width="0.0157%" height="15" fill="rgb(238,129,16)" fg:x="171116" fg:w="61"/><text x="44.3676%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (72 samples, 0.02%)</title><rect x="44.1501%" y="325" width="0.0186%" height="15" fill="rgb(240,19,0)" fg:x="171242" fg:w="72"/><text x="44.4001%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (68 samples, 0.02%)</title><rect x="44.1512%" y="309" width="0.0175%" height="15" fill="rgb(232,42,35)" fg:x="171246" fg:w="68"/><text x="44.4012%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (59 samples, 0.02%)</title><rect x="44.1535%" y="293" width="0.0152%" height="15" fill="rgb(223,130,24)" fg:x="171255" fg:w="59"/><text x="44.4035%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (39 samples, 0.01%)</title><rect x="44.1586%" y="277" width="0.0101%" height="15" fill="rgb(237,16,22)" fg:x="171275" fg:w="39"/><text x="44.4086%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (104 samples, 0.03%)</title><rect x="44.1424%" y="373" width="0.0268%" height="15" fill="rgb(248,192,20)" fg:x="171212" fg:w="104"/><text x="44.3924%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (91 samples, 0.02%)</title><rect x="44.1457%" y="357" width="0.0235%" height="15" fill="rgb(233,167,2)" fg:x="171225" fg:w="91"/><text x="44.3957%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (80 samples, 0.02%)</title><rect x="44.1486%" y="341" width="0.0206%" height="15" fill="rgb(252,71,44)" fg:x="171236" fg:w="80"/><text x="44.3986%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (126 samples, 0.03%)</title><rect x="44.1370%" y="389" width="0.0325%" height="15" fill="rgb(238,37,47)" fg:x="171191" fg:w="126"/><text x="44.3870%" y="399.50"></text></g><g><title>_ZdlPv (348 samples, 0.09%)</title><rect x="44.0800%" y="437" width="0.0897%" height="15" fill="rgb(214,202,54)" fg:x="170970" fg:w="348"/><text x="44.3300%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (207 samples, 0.05%)</title><rect x="44.1164%" y="421" width="0.0534%" height="15" fill="rgb(254,165,40)" fg:x="171111" fg:w="207"/><text x="44.3664%" y="431.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (141 samples, 0.04%)</title><rect x="44.1334%" y="405" width="0.0364%" height="15" fill="rgb(246,173,38)" fg:x="171177" fg:w="141"/><text x="44.3834%" y="415.50"></text></g><g><title>_ZdlPv (370 samples, 0.10%)</title><rect x="44.0782%" y="453" width="0.0954%" height="15" fill="rgb(215,3,27)" fg:x="170963" fg:w="370"/><text x="44.3282%" y="463.50"></text></g><g><title>_ZdlPv (371 samples, 0.10%)</title><rect x="44.0782%" y="469" width="0.0957%" height="15" fill="rgb(239,169,51)" fg:x="170963" fg:w="371"/><text x="44.3282%" y="479.50"></text></g><g><title>_ZdlPv (373 samples, 0.10%)</title><rect x="44.0779%" y="485" width="0.0962%" height="15" fill="rgb(212,5,25)" fg:x="170962" fg:w="373"/><text x="44.3279%" y="495.50"></text></g><g><title>cshook_security_sb_free_security (396 samples, 0.10%)</title><rect x="44.0779%" y="501" width="0.1021%" height="15" fill="rgb(243,45,17)" fg:x="170962" fg:w="396"/><text x="44.3279%" y="511.50"></text></g><g><title>cshook_security_file_permission (979 samples, 0.25%)</title><rect x="43.9302%" y="549" width="0.2524%" height="15" fill="rgb(242,97,9)" fg:x="170389" fg:w="979"/><text x="44.1802%" y="559.50"></text></g><g><title>cshook_security_sb_free_security (977 samples, 0.25%)</title><rect x="43.9307%" y="533" width="0.2519%" height="15" fill="rgb(228,71,31)" fg:x="170391" fg:w="977"/><text x="44.1807%" y="543.50"></text></g><g><title>cshook_security_sb_free_security (976 samples, 0.25%)</title><rect x="43.9310%" y="517" width="0.2516%" height="15" fill="rgb(252,184,16)" fg:x="170392" fg:w="976"/><text x="44.1810%" y="527.50"></text></g><g><title>search_binary_handler (1,014 samples, 0.26%)</title><rect x="43.9230%" y="629" width="0.2614%" height="15" fill="rgb(236,169,46)" fg:x="170361" fg:w="1014"/><text x="44.1730%" y="639.50"></text></g><g><title>security_bprm_check (995 samples, 0.26%)</title><rect x="43.9279%" y="613" width="0.2565%" height="15" fill="rgb(207,17,47)" fg:x="170380" fg:w="995"/><text x="44.1779%" y="623.50"></text></g><g><title>pinnedhook_security_bprm_check_security (994 samples, 0.26%)</title><rect x="43.9281%" y="597" width="0.2563%" height="15" fill="rgb(206,201,28)" fg:x="170381" fg:w="994"/><text x="44.1781%" y="607.50"></text></g><g><title>cshook_security_bprm_check_security (994 samples, 0.26%)</title><rect x="43.9281%" y="581" width="0.2563%" height="15" fill="rgb(224,184,23)" fg:x="170381" fg:w="994"/><text x="44.1781%" y="591.50"></text></g><g><title>cshook_security_file_permission (993 samples, 0.26%)</title><rect x="43.9284%" y="565" width="0.2560%" height="15" fill="rgb(208,139,48)" fg:x="170382" fg:w="993"/><text x="44.1784%" y="575.50"></text></g><g><title>exec_binprm (1,017 samples, 0.26%)</title><rect x="43.9225%" y="645" width="0.2622%" height="15" fill="rgb(208,130,10)" fg:x="170359" fg:w="1017"/><text x="44.1725%" y="655.50"></text></g><g><title>bprm_execve.part.0 (1,038 samples, 0.27%)</title><rect x="43.9191%" y="661" width="0.2676%" height="15" fill="rgb(211,213,45)" fg:x="170346" fg:w="1038"/><text x="44.1691%" y="671.50"></text></g><g><title>bprm_execve (1,040 samples, 0.27%)</title><rect x="43.9191%" y="677" width="0.2681%" height="15" fill="rgb(235,100,30)" fg:x="170346" fg:w="1040"/><text x="44.1691%" y="687.50"></text></g><g><title>[libc.so.6] (1,044 samples, 0.27%)</title><rect x="43.9189%" y="773" width="0.2692%" height="15" fill="rgb(206,144,31)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="783.50"></text></g><g><title>__GI_execve (1,044 samples, 0.27%)</title><rect x="43.9189%" y="757" width="0.2692%" height="15" fill="rgb(224,200,26)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,044 samples, 0.27%)</title><rect x="43.9189%" y="741" width="0.2692%" height="15" fill="rgb(247,104,53)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="751.50"></text></g><g><title>do_syscall_64 (1,044 samples, 0.27%)</title><rect x="43.9189%" y="725" width="0.2692%" height="15" fill="rgb(220,14,17)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="735.50"></text></g><g><title>__x64_sys_execve (1,044 samples, 0.27%)</title><rect x="43.9189%" y="709" width="0.2692%" height="15" fill="rgb(230,140,40)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="719.50"></text></g><g><title>do_execveat_common.isra.0 (1,044 samples, 0.27%)</title><rect x="43.9189%" y="693" width="0.2692%" height="15" fill="rgb(229,2,41)" fg:x="170345" fg:w="1044"/><text x="44.1689%" y="703.50"></text></g><g><title>__x64_sys_read (44 samples, 0.01%)</title><rect x="44.1932%" y="613" width="0.0113%" height="15" fill="rgb(232,89,16)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="623.50"></text></g><g><title>ksys_read (44 samples, 0.01%)</title><rect x="44.1932%" y="597" width="0.0113%" height="15" fill="rgb(247,59,52)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="607.50"></text></g><g><title>vfs_read (44 samples, 0.01%)</title><rect x="44.1932%" y="581" width="0.0113%" height="15" fill="rgb(226,110,21)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="591.50"></text></g><g><title>new_sync_read (44 samples, 0.01%)</title><rect x="44.1932%" y="565" width="0.0113%" height="15" fill="rgb(224,176,43)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="575.50"></text></g><g><title>seq_read_iter (44 samples, 0.01%)</title><rect x="44.1932%" y="549" width="0.0113%" height="15" fill="rgb(221,73,6)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="559.50"></text></g><g><title>m_show (44 samples, 0.01%)</title><rect x="44.1932%" y="533" width="0.0113%" height="15" fill="rgb(232,78,19)" fg:x="171409" fg:w="44"/><text x="44.4432%" y="543.50"></text></g><g><title>show_vfsmnt (42 samples, 0.01%)</title><rect x="44.1937%" y="517" width="0.0108%" height="15" fill="rgb(233,112,48)" fg:x="171411" fg:w="42"/><text x="44.4437%" y="527.50"></text></g><g><title>[libc.so.6] (46 samples, 0.01%)</title><rect x="44.1929%" y="725" width="0.0119%" height="15" fill="rgb(243,131,47)" fg:x="171408" fg:w="46"/><text x="44.4429%" y="735.50"></text></g><g><title>__GI__IO_default_uflow (46 samples, 0.01%)</title><rect x="44.1929%" y="709" width="0.0119%" height="15" fill="rgb(226,51,1)" fg:x="171408" fg:w="46"/><text x="44.4429%" y="719.50"></text></g><g><title>_IO_new_file_underflow (46 samples, 0.01%)</title><rect x="44.1929%" y="693" width="0.0119%" height="15" fill="rgb(247,58,7)" fg:x="171408" fg:w="46"/><text x="44.4429%" y="703.50"></text></g><g><title>__GI___read_nocancel (45 samples, 0.01%)</title><rect x="44.1932%" y="677" width="0.0116%" height="15" fill="rgb(209,7,32)" fg:x="171409" fg:w="45"/><text x="44.4432%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.01%)</title><rect x="44.1932%" y="661" width="0.0116%" height="15" fill="rgb(209,39,41)" fg:x="171409" fg:w="45"/><text x="44.4432%" y="671.50"></text></g><g><title>do_syscall_64 (45 samples, 0.01%)</title><rect x="44.1932%" y="645" width="0.0116%" height="15" fill="rgb(226,182,46)" fg:x="171409" fg:w="45"/><text x="44.4432%" y="655.50"></text></g><g><title>unload_network_ops_symbols (45 samples, 0.01%)</title><rect x="44.1932%" y="629" width="0.0116%" height="15" fill="rgb(230,219,10)" fg:x="171409" fg:w="45"/><text x="44.4432%" y="639.50"></text></g><g><title>__GI___fgets_unlocked (48 samples, 0.01%)</title><rect x="44.1929%" y="741" width="0.0124%" height="15" fill="rgb(227,175,30)" fg:x="171408" fg:w="48"/><text x="44.4429%" y="751.50"></text></g><g><title>__GI___getmntent_r (67 samples, 0.02%)</title><rect x="44.1914%" y="773" width="0.0173%" height="15" fill="rgb(217,2,50)" fg:x="171402" fg:w="67"/><text x="44.4414%" y="783.50"></text></g><g><title>get_mnt_entry (67 samples, 0.02%)</title><rect x="44.1914%" y="757" width="0.0173%" height="15" fill="rgb(229,160,0)" fg:x="171402" fg:w="67"/><text x="44.4414%" y="767.50"></text></g><g><title>path_mount (64 samples, 0.02%)</title><rect x="44.2143%" y="693" width="0.0165%" height="15" fill="rgb(207,78,37)" fg:x="171491" fg:w="64"/><text x="44.4643%" y="703.50"></text></g><g><title>__x64_sys_mount (89 samples, 0.02%)</title><rect x="44.2141%" y="709" width="0.0229%" height="15" fill="rgb(225,57,0)" fg:x="171490" fg:w="89"/><text x="44.4641%" y="719.50"></text></g><g><title>[[falcon_kal]] (50 samples, 0.01%)</title><rect x="44.2388%" y="677" width="0.0129%" height="15" fill="rgb(232,154,2)" fg:x="171586" fg:w="50"/><text x="44.4888%" y="687.50"></text></g><g><title>user_path_at_empty (49 samples, 0.01%)</title><rect x="44.2391%" y="661" width="0.0126%" height="15" fill="rgb(241,212,25)" fg:x="171587" fg:w="49"/><text x="44.4891%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_mount (74 samples, 0.02%)</title><rect x="44.2380%" y="709" width="0.0191%" height="15" fill="rgb(226,69,20)" fg:x="171583" fg:w="74"/><text x="44.4880%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (72 samples, 0.02%)</title><rect x="44.2386%" y="693" width="0.0186%" height="15" fill="rgb(247,184,54)" fg:x="171585" fg:w="72"/><text x="44.4886%" y="703.50"></text></g><g><title>do_syscall_64 (168 samples, 0.04%)</title><rect x="44.2141%" y="741" width="0.0433%" height="15" fill="rgb(210,145,0)" fg:x="171490" fg:w="168"/><text x="44.4641%" y="751.50"></text></g><g><title>unload_network_ops_symbols (168 samples, 0.04%)</title><rect x="44.2141%" y="725" width="0.0433%" height="15" fill="rgb(253,82,12)" fg:x="171490" fg:w="168"/><text x="44.4641%" y="735.50"></text></g><g><title>__GI___mount (171 samples, 0.04%)</title><rect x="44.2135%" y="773" width="0.0441%" height="15" fill="rgb(245,42,11)" fg:x="171488" fg:w="171"/><text x="44.4635%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (170 samples, 0.04%)</title><rect x="44.2138%" y="757" width="0.0438%" height="15" fill="rgb(219,147,32)" fg:x="171489" fg:w="170"/><text x="44.4638%" y="767.50"></text></g><g><title>dup_mmap (45 samples, 0.01%)</title><rect x="44.2705%" y="613" width="0.0116%" height="15" fill="rgb(246,12,7)" fg:x="171709" fg:w="45"/><text x="44.5205%" y="623.50"></text></g><g><title>dup_mm (48 samples, 0.01%)</title><rect x="44.2703%" y="629" width="0.0124%" height="15" fill="rgb(243,50,9)" fg:x="171708" fg:w="48"/><text x="44.5203%" y="639.50"></text></g><g><title>copy_process (77 samples, 0.02%)</title><rect x="44.2669%" y="645" width="0.0199%" height="15" fill="rgb(219,149,6)" fg:x="171695" fg:w="77"/><text x="44.5169%" y="655.50"></text></g><g><title>__do_sys_clone (79 samples, 0.02%)</title><rect x="44.2669%" y="677" width="0.0204%" height="15" fill="rgb(241,51,42)" fg:x="171695" fg:w="79"/><text x="44.5169%" y="687.50"></text></g><g><title>kernel_clone (79 samples, 0.02%)</title><rect x="44.2669%" y="661" width="0.0204%" height="15" fill="rgb(226,128,27)" fg:x="171695" fg:w="79"/><text x="44.5169%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.02%)</title><rect x="44.2669%" y="725" width="0.0206%" height="15" fill="rgb(244,144,4)" fg:x="171695" fg:w="80"/><text x="44.5169%" y="735.50"></text></g><g><title>do_syscall_64 (80 samples, 0.02%)</title><rect x="44.2669%" y="709" width="0.0206%" height="15" fill="rgb(221,4,13)" fg:x="171695" fg:w="80"/><text x="44.5169%" y="719.50"></text></g><g><title>__x64_sys_clone (80 samples, 0.02%)</title><rect x="44.2669%" y="693" width="0.0206%" height="15" fill="rgb(208,170,28)" fg:x="171695" fg:w="80"/><text x="44.5169%" y="703.50"></text></g><g><title>__GI__Fork (83 samples, 0.02%)</title><rect x="44.2664%" y="757" width="0.0214%" height="15" fill="rgb(226,131,13)" fg:x="171693" fg:w="83"/><text x="44.5164%" y="767.50"></text></g><g><title>arch_fork (83 samples, 0.02%)</title><rect x="44.2664%" y="741" width="0.0214%" height="15" fill="rgb(215,72,41)" fg:x="171693" fg:w="83"/><text x="44.5164%" y="751.50"></text></g><g><title>__libc_fork (87 samples, 0.02%)</title><rect x="44.2661%" y="773" width="0.0224%" height="15" fill="rgb(243,108,20)" fg:x="171692" fg:w="87"/><text x="44.5161%" y="783.50"></text></g><g><title>Pid1Main (1,595 samples, 0.41%)</title><rect x="43.8959%" y="789" width="0.4112%" height="15" fill="rgb(230,189,17)" fg:x="170256" fg:w="1595"/><text x="44.1459%" y="799.50"></text></g><g><title>__GI___clone (1,599 samples, 0.41%)</title><rect x="43.8957%" y="805" width="0.4123%" height="15" fill="rgb(220,50,17)" fg:x="170255" fg:w="1599"/><text x="44.1457%" y="815.50"></text></g><g><title>std::locale::_Impl::_Impl (44 samples, 0.01%)</title><rect x="44.3208%" y="693" width="0.0113%" height="15" fill="rgb(248,152,48)" fg:x="171904" fg:w="44"/><text x="44.5708%" y="703.50"></text></g><g><title>_GLOBAL__sub_I_opt (60 samples, 0.02%)</title><rect x="44.3169%" y="757" width="0.0155%" height="15" fill="rgb(244,91,11)" fg:x="171889" fg:w="60"/><text x="44.5669%" y="767.50"></text></g><g><title>std::ios_base::Init::Init (60 samples, 0.02%)</title><rect x="44.3169%" y="741" width="0.0155%" height="15" fill="rgb(220,157,5)" fg:x="171889" fg:w="60"/><text x="44.5669%" y="751.50"></text></g><g><title>std::locale::locale (46 samples, 0.01%)</title><rect x="44.3205%" y="725" width="0.0119%" height="15" fill="rgb(253,137,8)" fg:x="171903" fg:w="46"/><text x="44.5705%" y="735.50"></text></g><g><title>[libstdc++.so.6.0.30] (46 samples, 0.01%)</title><rect x="44.3205%" y="709" width="0.0119%" height="15" fill="rgb(217,137,51)" fg:x="171903" fg:w="46"/><text x="44.5705%" y="719.50"></text></g><g><title>__libc_csu_init (63 samples, 0.02%)</title><rect x="44.3169%" y="773" width="0.0162%" height="15" fill="rgb(218,209,53)" fg:x="171889" fg:w="63"/><text x="44.5669%" y="783.50"></text></g><g><title>get_page_from_freelist (47 samples, 0.01%)</title><rect x="44.3744%" y="581" width="0.0121%" height="15" fill="rgb(249,137,25)" fg:x="172112" fg:w="47"/><text x="44.6244%" y="591.50"></text></g><g><title>__alloc_pages (56 samples, 0.01%)</title><rect x="44.3724%" y="597" width="0.0144%" height="15" fill="rgb(239,155,26)" fg:x="172104" fg:w="56"/><text x="44.6224%" y="607.50"></text></g><g><title>alloc_pages_vma (61 samples, 0.02%)</title><rect x="44.3716%" y="613" width="0.0157%" height="15" fill="rgb(227,85,46)" fg:x="172101" fg:w="61"/><text x="44.6216%" y="623.50"></text></g><g><title>do_anonymous_page (112 samples, 0.03%)</title><rect x="44.3651%" y="629" width="0.0289%" height="15" fill="rgb(251,107,43)" fg:x="172076" fg:w="112"/><text x="44.6151%" y="639.50"></text></g><g><title>handle_pte_fault (121 samples, 0.03%)</title><rect x="44.3631%" y="645" width="0.0312%" height="15" fill="rgb(234,170,33)" fg:x="172068" fg:w="121"/><text x="44.6131%" y="655.50"></text></g><g><title>__handle_mm_fault (133 samples, 0.03%)</title><rect x="44.3608%" y="661" width="0.0343%" height="15" fill="rgb(206,29,35)" fg:x="172059" fg:w="133"/><text x="44.6108%" y="671.50"></text></g><g><title>handle_mm_fault (139 samples, 0.04%)</title><rect x="44.3595%" y="677" width="0.0358%" height="15" fill="rgb(227,138,25)" fg:x="172054" fg:w="139"/><text x="44.6095%" y="687.50"></text></g><g><title>do_user_addr_fault (152 samples, 0.04%)</title><rect x="44.3566%" y="693" width="0.0392%" height="15" fill="rgb(249,131,35)" fg:x="172043" fg:w="152"/><text x="44.6066%" y="703.50"></text></g><g><title>asm_exc_page_fault (162 samples, 0.04%)</title><rect x="44.3559%" y="725" width="0.0418%" height="15" fill="rgb(239,6,40)" fg:x="172040" fg:w="162"/><text x="44.6059%" y="735.50"></text></g><g><title>exc_page_fault (160 samples, 0.04%)</title><rect x="44.3564%" y="709" width="0.0413%" height="15" fill="rgb(246,136,47)" fg:x="172042" fg:w="160"/><text x="44.6064%" y="719.50"></text></g><g><title>[libc.so.6] (209 samples, 0.05%)</title><rect x="44.3486%" y="741" width="0.0539%" height="15" fill="rgb(253,58,26)" fg:x="172012" fg:w="209"/><text x="44.5986%" y="751.50"></text></g><g><title>__libc_start_call_main (342 samples, 0.09%)</title><rect x="44.3332%" y="773" width="0.0882%" height="15" fill="rgb(237,141,10)" fg:x="171952" fg:w="342"/><text x="44.5832%" y="783.50"></text></g><g><title>main (315 samples, 0.08%)</title><rect x="44.3401%" y="757" width="0.0812%" height="15" fill="rgb(234,156,12)" fg:x="171979" fg:w="315"/><text x="44.5901%" y="767.50"></text></g><g><title>__libc_start_main_impl (406 samples, 0.10%)</title><rect x="44.3169%" y="789" width="0.1047%" height="15" fill="rgb(243,224,36)" fg:x="171889" fg:w="406"/><text x="44.5669%" y="799.50"></text></g><g><title>__do_munmap (50 samples, 0.01%)</title><rect x="44.4479%" y="469" width="0.0129%" height="15" fill="rgb(205,229,51)" fg:x="172397" fg:w="50"/><text x="44.6979%" y="479.50"></text></g><g><title>__x64_sys_mmap (72 samples, 0.02%)</title><rect x="44.4471%" y="549" width="0.0186%" height="15" fill="rgb(223,189,4)" fg:x="172394" fg:w="72"/><text x="44.6971%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (72 samples, 0.02%)</title><rect x="44.4471%" y="533" width="0.0186%" height="15" fill="rgb(249,167,54)" fg:x="172394" fg:w="72"/><text x="44.6971%" y="543.50"></text></g><g><title>vm_mmap_pgoff (72 samples, 0.02%)</title><rect x="44.4471%" y="517" width="0.0186%" height="15" fill="rgb(218,34,28)" fg:x="172394" fg:w="72"/><text x="44.6971%" y="527.50"></text></g><g><title>do_mmap (72 samples, 0.02%)</title><rect x="44.4471%" y="501" width="0.0186%" height="15" fill="rgb(232,109,42)" fg:x="172394" fg:w="72"/><text x="44.6971%" y="511.50"></text></g><g><title>mmap_region (70 samples, 0.02%)</title><rect x="44.4477%" y="485" width="0.0180%" height="15" fill="rgb(248,214,46)" fg:x="172396" fg:w="70"/><text x="44.6977%" y="495.50"></text></g><g><title>__mmap64 (82 samples, 0.02%)</title><rect x="44.4464%" y="629" width="0.0211%" height="15" fill="rgb(244,216,40)" fg:x="172391" fg:w="82"/><text x="44.6964%" y="639.50"></text></g><g><title>__mmap64 (82 samples, 0.02%)</title><rect x="44.4464%" y="613" width="0.0211%" height="15" fill="rgb(231,226,31)" fg:x="172391" fg:w="82"/><text x="44.6964%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (82 samples, 0.02%)</title><rect x="44.4464%" y="597" width="0.0211%" height="15" fill="rgb(238,38,43)" fg:x="172391" fg:w="82"/><text x="44.6964%" y="607.50"></text></g><g><title>do_syscall_64 (81 samples, 0.02%)</title><rect x="44.4466%" y="581" width="0.0209%" height="15" fill="rgb(208,88,43)" fg:x="172392" fg:w="81"/><text x="44.6966%" y="591.50"></text></g><g><title>unload_network_ops_symbols (81 samples, 0.02%)</title><rect x="44.4466%" y="565" width="0.0209%" height="15" fill="rgb(205,136,37)" fg:x="172392" fg:w="81"/><text x="44.6966%" y="575.50"></text></g><g><title>_dl_map_segments (118 samples, 0.03%)</title><rect x="44.4425%" y="645" width="0.0304%" height="15" fill="rgb(237,34,14)" fg:x="172376" fg:w="118"/><text x="44.6925%" y="655.50"></text></g><g><title>_dl_map_object_from_fd (167 samples, 0.04%)</title><rect x="44.4386%" y="661" width="0.0431%" height="15" fill="rgb(236,193,44)" fg:x="172361" fg:w="167"/><text x="44.6886%" y="671.50"></text></g><g><title>open_verify (49 samples, 0.01%)</title><rect x="44.4822%" y="661" width="0.0126%" height="15" fill="rgb(231,48,10)" fg:x="172530" fg:w="49"/><text x="44.7322%" y="671.50"></text></g><g><title>_dl_catch_exception (243 samples, 0.06%)</title><rect x="44.4327%" y="709" width="0.0627%" height="15" fill="rgb(213,141,34)" fg:x="172338" fg:w="243"/><text x="44.6827%" y="719.50"></text></g><g><title>openaux (243 samples, 0.06%)</title><rect x="44.4327%" y="693" width="0.0627%" height="15" fill="rgb(249,130,34)" fg:x="172338" fg:w="243"/><text x="44.6827%" y="703.50"></text></g><g><title>_dl_map_object (242 samples, 0.06%)</title><rect x="44.4330%" y="677" width="0.0624%" height="15" fill="rgb(219,42,41)" fg:x="172339" fg:w="242"/><text x="44.6830%" y="687.50"></text></g><g><title>_dl_map_object_deps (249 samples, 0.06%)</title><rect x="44.4319%" y="725" width="0.0642%" height="15" fill="rgb(224,100,54)" fg:x="172335" fg:w="249"/><text x="44.6819%" y="735.50"></text></g><g><title>dl_new_hash (119 samples, 0.03%)</title><rect x="44.5376%" y="661" width="0.0307%" height="15" fill="rgb(229,200,27)" fg:x="172745" fg:w="119"/><text x="44.7876%" y="671.50"></text></g><g><title>_dl_lookup_symbol_x (345 samples, 0.09%)</title><rect x="44.5309%" y="677" width="0.0889%" height="15" fill="rgb(217,118,10)" fg:x="172719" fg:w="345"/><text x="44.7809%" y="687.50"></text></g><g><title>do_lookup_x (200 samples, 0.05%)</title><rect x="44.5683%" y="661" width="0.0516%" height="15" fill="rgb(206,22,3)" fg:x="172864" fg:w="200"/><text x="44.8183%" y="671.50"></text></g><g><title>elf_machine_rela (404 samples, 0.10%)</title><rect x="44.5175%" y="693" width="0.1042%" height="15" fill="rgb(232,163,46)" fg:x="172667" fg:w="404"/><text x="44.7675%" y="703.50"></text></g><g><title>elf_dynamic_do_Rela (475 samples, 0.12%)</title><rect x="44.5067%" y="709" width="0.1225%" height="15" fill="rgb(206,95,13)" fg:x="172625" fg:w="475"/><text x="44.7567%" y="719.50"></text></g><g><title>_dl_relocate_object (511 samples, 0.13%)</title><rect x="44.4984%" y="725" width="0.1317%" height="15" fill="rgb(253,154,18)" fg:x="172593" fg:w="511"/><text x="44.7484%" y="735.50"></text></g><g><title>dl_main (827 samples, 0.21%)</title><rect x="44.4239%" y="741" width="0.2132%" height="15" fill="rgb(219,32,23)" fg:x="172304" fg:w="827"/><text x="44.6739%" y="751.50"></text></g><g><title>_dl_start_final (847 samples, 0.22%)</title><rect x="44.4216%" y="773" width="0.2184%" height="15" fill="rgb(230,191,45)" fg:x="172295" fg:w="847"/><text x="44.6716%" y="783.50"></text></g><g><title>_dl_sysdep_start (842 samples, 0.22%)</title><rect x="44.4229%" y="757" width="0.2171%" height="15" fill="rgb(229,64,36)" fg:x="172300" fg:w="842"/><text x="44.6729%" y="767.50"></text></g><g><title>_dl_start (854 samples, 0.22%)</title><rect x="44.4216%" y="789" width="0.2202%" height="15" fill="rgb(205,129,25)" fg:x="172295" fg:w="854"/><text x="44.6716%" y="799.50"></text></g><g><title>_start (1,267 samples, 0.33%)</title><rect x="44.3169%" y="805" width="0.3267%" height="15" fill="rgb(254,112,7)" fg:x="171889" fg:w="1267"/><text x="44.5669%" y="815.50"></text></g><g><title>asm_exc_page_fault (138 samples, 0.04%)</title><rect x="44.6436%" y="805" width="0.0356%" height="15" fill="rgb(226,53,48)" fg:x="173156" fg:w="138"/><text x="44.8936%" y="815.50"></text></g><g><title>exec_mmap (73 samples, 0.02%)</title><rect x="44.6805%" y="645" width="0.0188%" height="15" fill="rgb(214,153,38)" fg:x="173299" fg:w="73"/><text x="44.9305%" y="655.50"></text></g><g><title>mmput (72 samples, 0.02%)</title><rect x="44.6807%" y="629" width="0.0186%" height="15" fill="rgb(243,101,7)" fg:x="173300" fg:w="72"/><text x="44.9307%" y="639.50"></text></g><g><title>exit_mmap (69 samples, 0.02%)</title><rect x="44.6815%" y="613" width="0.0178%" height="15" fill="rgb(240,140,22)" fg:x="173303" fg:w="69"/><text x="44.9315%" y="623.50"></text></g><g><title>begin_new_exec (78 samples, 0.02%)</title><rect x="44.6802%" y="661" width="0.0201%" height="15" fill="rgb(235,114,2)" fg:x="173298" fg:w="78"/><text x="44.9302%" y="671.50"></text></g><g><title>__x64_sys_execve (118 samples, 0.03%)</title><rect x="44.6794%" y="773" width="0.0304%" height="15" fill="rgb(242,59,12)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="783.50"></text></g><g><title>do_execveat_common.isra.0 (118 samples, 0.03%)</title><rect x="44.6794%" y="757" width="0.0304%" height="15" fill="rgb(252,134,9)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="767.50"></text></g><g><title>bprm_execve (118 samples, 0.03%)</title><rect x="44.6794%" y="741" width="0.0304%" height="15" fill="rgb(236,4,44)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="751.50"></text></g><g><title>bprm_execve.part.0 (118 samples, 0.03%)</title><rect x="44.6794%" y="725" width="0.0304%" height="15" fill="rgb(254,172,41)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="735.50"></text></g><g><title>exec_binprm (118 samples, 0.03%)</title><rect x="44.6794%" y="709" width="0.0304%" height="15" fill="rgb(244,63,20)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="719.50"></text></g><g><title>search_binary_handler (118 samples, 0.03%)</title><rect x="44.6794%" y="693" width="0.0304%" height="15" fill="rgb(250,73,31)" fg:x="173295" fg:w="118"/><text x="44.9294%" y="703.50"></text></g><g><title>load_elf_binary (117 samples, 0.03%)</title><rect x="44.6797%" y="677" width="0.0302%" height="15" fill="rgb(241,38,36)" fg:x="173296" fg:w="117"/><text x="44.9297%" y="687.50"></text></g><g><title>tlb_finish_mmu (44 samples, 0.01%)</title><rect x="44.7184%" y="693" width="0.0113%" height="15" fill="rgb(245,211,2)" fg:x="173446" fg:w="44"/><text x="44.9684%" y="703.50"></text></g><g><title>exit_mm (118 samples, 0.03%)</title><rect x="44.7106%" y="741" width="0.0304%" height="15" fill="rgb(206,120,28)" fg:x="173416" fg:w="118"/><text x="44.9606%" y="751.50"></text></g><g><title>mmput (118 samples, 0.03%)</title><rect x="44.7106%" y="725" width="0.0304%" height="15" fill="rgb(211,59,34)" fg:x="173416" fg:w="118"/><text x="44.9606%" y="735.50"></text></g><g><title>exit_mmap (117 samples, 0.03%)</title><rect x="44.7109%" y="709" width="0.0302%" height="15" fill="rgb(233,168,5)" fg:x="173417" fg:w="117"/><text x="44.9609%" y="719.50"></text></g><g><title>unmap_vmas (43 samples, 0.01%)</title><rect x="44.7300%" y="693" width="0.0111%" height="15" fill="rgb(234,33,13)" fg:x="173491" fg:w="43"/><text x="44.9800%" y="703.50"></text></g><g><title>unmap_single_vma (43 samples, 0.01%)</title><rect x="44.7300%" y="677" width="0.0111%" height="15" fill="rgb(231,150,26)" fg:x="173491" fg:w="43"/><text x="44.9800%" y="687.50"></text></g><g><title>unmap_page_range (43 samples, 0.01%)</title><rect x="44.7300%" y="661" width="0.0111%" height="15" fill="rgb(217,191,4)" fg:x="173491" fg:w="43"/><text x="44.9800%" y="671.50"></text></g><g><title>zap_pmd_range.isra.0 (41 samples, 0.01%)</title><rect x="44.7305%" y="645" width="0.0106%" height="15" fill="rgb(246,198,38)" fg:x="173493" fg:w="41"/><text x="44.9805%" y="655.50"></text></g><g><title>zap_pte_range (41 samples, 0.01%)</title><rect x="44.7305%" y="629" width="0.0106%" height="15" fill="rgb(245,64,37)" fg:x="173493" fg:w="41"/><text x="44.9805%" y="639.50"></text></g><g><title>cleanup_mnt (43 samples, 0.01%)</title><rect x="44.7447%" y="709" width="0.0111%" height="15" fill="rgb(250,30,36)" fg:x="173548" fg:w="43"/><text x="44.9947%" y="719.50"></text></g><g><title>__x64_sys_exit (180 samples, 0.05%)</title><rect x="44.7099%" y="773" width="0.0464%" height="15" fill="rgb(217,86,53)" fg:x="173413" fg:w="180"/><text x="44.9599%" y="783.50"></text></g><g><title>do_exit (180 samples, 0.05%)</title><rect x="44.7099%" y="757" width="0.0464%" height="15" fill="rgb(228,157,16)" fg:x="173413" fg:w="180"/><text x="44.9599%" y="767.50"></text></g><g><title>task_work_run (46 samples, 0.01%)</title><rect x="44.7444%" y="741" width="0.0119%" height="15" fill="rgb(217,59,31)" fg:x="173547" fg:w="46"/><text x="44.9944%" y="751.50"></text></g><g><title>__cleanup_mnt (45 samples, 0.01%)</title><rect x="44.7447%" y="725" width="0.0116%" height="15" fill="rgb(237,138,41)" fg:x="173548" fg:w="45"/><text x="44.9947%" y="735.50"></text></g><g><title>exit_mmap (101 samples, 0.03%)</title><rect x="44.7581%" y="693" width="0.0260%" height="15" fill="rgb(227,91,49)" fg:x="173600" fg:w="101"/><text x="45.0081%" y="703.50"></text></g><g><title>unmap_vmas (60 samples, 0.02%)</title><rect x="44.7686%" y="677" width="0.0155%" height="15" fill="rgb(247,21,44)" fg:x="173641" fg:w="60"/><text x="45.0186%" y="687.50"></text></g><g><title>unmap_single_vma (60 samples, 0.02%)</title><rect x="44.7686%" y="661" width="0.0155%" height="15" fill="rgb(219,210,51)" fg:x="173641" fg:w="60"/><text x="45.0186%" y="671.50"></text></g><g><title>unmap_page_range (60 samples, 0.02%)</title><rect x="44.7686%" y="645" width="0.0155%" height="15" fill="rgb(209,140,6)" fg:x="173641" fg:w="60"/><text x="45.0186%" y="655.50"></text></g><g><title>zap_pmd_range.isra.0 (59 samples, 0.02%)</title><rect x="44.7689%" y="629" width="0.0152%" height="15" fill="rgb(221,188,24)" fg:x="173642" fg:w="59"/><text x="45.0189%" y="639.50"></text></g><g><title>zap_pte_range (54 samples, 0.01%)</title><rect x="44.7702%" y="613" width="0.0139%" height="15" fill="rgb(232,154,20)" fg:x="173647" fg:w="54"/><text x="45.0202%" y="623.50"></text></g><g><title>exit_mm (103 samples, 0.03%)</title><rect x="44.7581%" y="725" width="0.0266%" height="15" fill="rgb(244,137,50)" fg:x="173600" fg:w="103"/><text x="45.0081%" y="735.50"></text></g><g><title>mmput (103 samples, 0.03%)</title><rect x="44.7581%" y="709" width="0.0266%" height="15" fill="rgb(225,185,43)" fg:x="173600" fg:w="103"/><text x="45.0081%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (417 samples, 0.11%)</title><rect x="44.6792%" y="805" width="0.1075%" height="15" fill="rgb(213,205,38)" fg:x="173294" fg:w="417"/><text x="44.9292%" y="815.50"></text></g><g><title>do_syscall_64 (416 samples, 0.11%)</title><rect x="44.6794%" y="789" width="0.1073%" height="15" fill="rgb(236,73,12)" fg:x="173295" fg:w="416"/><text x="44.9294%" y="799.50"></text></g><g><title>__x64_sys_exit_group (118 samples, 0.03%)</title><rect x="44.7563%" y="773" width="0.0304%" height="15" fill="rgb(235,219,13)" fg:x="173593" fg:w="118"/><text x="45.0063%" y="783.50"></text></g><g><title>do_group_exit (118 samples, 0.03%)</title><rect x="44.7563%" y="757" width="0.0304%" height="15" fill="rgb(218,59,36)" fg:x="173593" fg:w="118"/><text x="45.0063%" y="767.50"></text></g><g><title>do_exit (118 samples, 0.03%)</title><rect x="44.7563%" y="741" width="0.0304%" height="15" fill="rgb(205,110,39)" fg:x="173593" fg:w="118"/><text x="45.0063%" y="751.50"></text></g><g><title>linux-sandbox (3,685 samples, 0.95%)</title><rect x="43.8371%" y="821" width="0.9501%" height="15" fill="rgb(218,206,42)" fg:x="170028" fg:w="3685"/><text x="44.0871%" y="831.50"></text></g><g><title>_ZdlPv (61 samples, 0.02%)</title><rect x="44.7965%" y="437" width="0.0157%" height="15" fill="rgb(248,125,24)" fg:x="173749" fg:w="61"/><text x="45.0465%" y="447.50"></text></g><g><title>_ZdlPv (61 samples, 0.02%)</title><rect x="44.7965%" y="421" width="0.0157%" height="15" fill="rgb(242,28,27)" fg:x="173749" fg:w="61"/><text x="45.0465%" y="431.50"></text></g><g><title>_ZdlPv (60 samples, 0.02%)</title><rect x="44.7967%" y="405" width="0.0155%" height="15" fill="rgb(216,228,15)" fg:x="173750" fg:w="60"/><text x="45.0467%" y="415.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (41 samples, 0.01%)</title><rect x="44.8016%" y="389" width="0.0106%" height="15" fill="rgb(235,116,46)" fg:x="173769" fg:w="41"/><text x="45.0516%" y="399.50"></text></g><g><title>exec_binprm (104 samples, 0.03%)</title><rect x="44.7955%" y="581" width="0.0268%" height="15" fill="rgb(224,18,32)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="591.50"></text></g><g><title>search_binary_handler (104 samples, 0.03%)</title><rect x="44.7955%" y="565" width="0.0268%" height="15" fill="rgb(252,5,12)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="575.50"></text></g><g><title>security_bprm_check (104 samples, 0.03%)</title><rect x="44.7955%" y="549" width="0.0268%" height="15" fill="rgb(251,36,5)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="559.50"></text></g><g><title>pinnedhook_security_bprm_check_security (104 samples, 0.03%)</title><rect x="44.7955%" y="533" width="0.0268%" height="15" fill="rgb(217,53,14)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="543.50"></text></g><g><title>cshook_security_bprm_check_security (104 samples, 0.03%)</title><rect x="44.7955%" y="517" width="0.0268%" height="15" fill="rgb(215,86,45)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="527.50"></text></g><g><title>cshook_security_file_permission (104 samples, 0.03%)</title><rect x="44.7955%" y="501" width="0.0268%" height="15" fill="rgb(242,169,11)" fg:x="173745" fg:w="104"/><text x="45.0455%" y="511.50"></text></g><g><title>cshook_security_file_permission (100 samples, 0.03%)</title><rect x="44.7965%" y="485" width="0.0258%" height="15" fill="rgb(211,213,45)" fg:x="173749" fg:w="100"/><text x="45.0465%" y="495.50"></text></g><g><title>cshook_security_sb_free_security (100 samples, 0.03%)</title><rect x="44.7965%" y="469" width="0.0258%" height="15" fill="rgb(205,88,11)" fg:x="173749" fg:w="100"/><text x="45.0465%" y="479.50"></text></g><g><title>cshook_security_sb_free_security (100 samples, 0.03%)</title><rect x="44.7965%" y="453" width="0.0258%" height="15" fill="rgb(252,69,26)" fg:x="173749" fg:w="100"/><text x="45.0465%" y="463.50"></text></g><g><title>[libc.so.6] (113 samples, 0.03%)</title><rect x="44.7937%" y="709" width="0.0291%" height="15" fill="rgb(246,123,37)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="719.50"></text></g><g><title>__GI_execve (113 samples, 0.03%)</title><rect x="44.7937%" y="693" width="0.0291%" height="15" fill="rgb(212,205,5)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (113 samples, 0.03%)</title><rect x="44.7937%" y="677" width="0.0291%" height="15" fill="rgb(253,148,0)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="687.50"></text></g><g><title>do_syscall_64 (113 samples, 0.03%)</title><rect x="44.7937%" y="661" width="0.0291%" height="15" fill="rgb(239,22,4)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="671.50"></text></g><g><title>__x64_sys_execve (113 samples, 0.03%)</title><rect x="44.7937%" y="645" width="0.0291%" height="15" fill="rgb(226,26,53)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="655.50"></text></g><g><title>do_execveat_common.isra.0 (113 samples, 0.03%)</title><rect x="44.7937%" y="629" width="0.0291%" height="15" fill="rgb(225,229,45)" fg:x="173738" fg:w="113"/><text x="45.0437%" y="639.50"></text></g><g><title>bprm_execve (110 samples, 0.03%)</title><rect x="44.7944%" y="613" width="0.0284%" height="15" fill="rgb(220,60,37)" fg:x="173741" fg:w="110"/><text x="45.0444%" y="623.50"></text></g><g><title>bprm_execve.part.0 (110 samples, 0.03%)</title><rect x="44.7944%" y="597" width="0.0284%" height="15" fill="rgb(217,180,35)" fg:x="173741" fg:w="110"/><text x="45.0444%" y="607.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (124 samples, 0.03%)</title><rect x="44.7926%" y="741" width="0.0320%" height="15" fill="rgb(229,7,53)" fg:x="173734" fg:w="124"/><text x="45.0426%" y="751.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (124 samples, 0.03%)</title><rect x="44.7926%" y="725" width="0.0320%" height="15" fill="rgb(254,137,3)" fg:x="173734" fg:w="124"/><text x="45.0426%" y="735.50"></text></g><g><title>__libc_start_main_impl (139 samples, 0.04%)</title><rect x="44.7913%" y="789" width="0.0358%" height="15" fill="rgb(215,140,41)" fg:x="173729" fg:w="139"/><text x="45.0413%" y="799.50"></text></g><g><title>__libc_start_call_main (134 samples, 0.03%)</title><rect x="44.7926%" y="773" width="0.0345%" height="15" fill="rgb(250,80,15)" fg:x="173734" fg:w="134"/><text x="45.0426%" y="783.50"></text></g><g><title>main (134 samples, 0.03%)</title><rect x="44.7926%" y="757" width="0.0345%" height="15" fill="rgb(252,191,6)" fg:x="173734" fg:w="134"/><text x="45.0426%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (42 samples, 0.01%)</title><rect x="44.8357%" y="709" width="0.0108%" height="15" fill="rgb(246,217,18)" fg:x="173901" fg:w="42"/><text x="45.0857%" y="719.50"></text></g><g><title>_dl_relocate_object (48 samples, 0.01%)</title><rect x="44.8344%" y="725" width="0.0124%" height="15" fill="rgb(223,93,7)" fg:x="173896" fg:w="48"/><text x="45.0844%" y="735.50"></text></g><g><title>dl_main (75 samples, 0.02%)</title><rect x="44.8279%" y="741" width="0.0193%" height="15" fill="rgb(225,55,52)" fg:x="173871" fg:w="75"/><text x="45.0779%" y="751.50"></text></g><g><title>_dl_start_final (79 samples, 0.02%)</title><rect x="44.8272%" y="773" width="0.0204%" height="15" fill="rgb(240,31,24)" fg:x="173868" fg:w="79"/><text x="45.0772%" y="783.50"></text></g><g><title>_dl_sysdep_start (79 samples, 0.02%)</title><rect x="44.8272%" y="757" width="0.0204%" height="15" fill="rgb(205,56,52)" fg:x="173868" fg:w="79"/><text x="45.0772%" y="767.50"></text></g><g><title>_dl_start (80 samples, 0.02%)</title><rect x="44.8272%" y="789" width="0.0206%" height="15" fill="rgb(246,146,12)" fg:x="173868" fg:w="80"/><text x="45.0772%" y="799.50"></text></g><g><title>_start (220 samples, 0.06%)</title><rect x="44.7913%" y="805" width="0.0567%" height="15" fill="rgb(239,84,36)" fg:x="173729" fg:w="220"/><text x="45.0413%" y="815.50"></text></g><g><title>process-wrapper (268 samples, 0.07%)</title><rect x="44.7888%" y="821" width="0.0691%" height="15" fill="rgb(207,41,40)" fg:x="173719" fg:w="268"/><text x="45.0388%" y="831.50"></text></g><g><title>process_reaper (112 samples, 0.03%)</title><rect x="44.8578%" y="821" width="0.0289%" height="15" fill="rgb(241,179,25)" fg:x="173987" fg:w="112"/><text x="45.1078%" y="831.50"></text></g><g><title>[perf-742530.map] (107 samples, 0.03%)</title><rect x="44.8591%" y="805" width="0.0276%" height="15" fill="rgb(210,0,34)" fg:x="173992" fg:w="107"/><text x="45.1091%" y="815.50"></text></g><g><title>Java_java_util_zip_Deflater_deflateBytesBytes (46 samples, 0.01%)</title><rect x="44.9798%" y="789" width="0.0119%" height="15" fill="rgb(225,217,29)" fg:x="174460" fg:w="46"/><text x="45.2298%" y="799.50"></text></g><g><title>deflate (46 samples, 0.01%)</title><rect x="44.9798%" y="773" width="0.0119%" height="15" fill="rgb(216,191,38)" fg:x="174460" fg:w="46"/><text x="45.2298%" y="783.50"></text></g><g><title>[libz.so.1.2.11] (46 samples, 0.01%)</title><rect x="44.9798%" y="757" width="0.0119%" height="15" fill="rgb(232,140,52)" fg:x="174460" fg:w="46"/><text x="45.2298%" y="767.50"></text></g><g><title>futex_wait (39 samples, 0.01%)</title><rect x="44.9948%" y="613" width="0.0101%" height="15" fill="rgb(223,158,51)" fg:x="174518" fg:w="39"/><text x="45.2448%" y="623.50"></text></g><g><title>__x64_sys_futex (40 samples, 0.01%)</title><rect x="44.9948%" y="645" width="0.0103%" height="15" fill="rgb(235,29,51)" fg:x="174518" fg:w="40"/><text x="45.2448%" y="655.50"></text></g><g><title>do_futex (40 samples, 0.01%)</title><rect x="44.9948%" y="629" width="0.0103%" height="15" fill="rgb(215,181,18)" fg:x="174518" fg:w="40"/><text x="45.2448%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (42 samples, 0.01%)</title><rect x="44.9948%" y="677" width="0.0108%" height="15" fill="rgb(227,125,34)" fg:x="174518" fg:w="42"/><text x="45.2448%" y="687.50"></text></g><g><title>do_syscall_64 (42 samples, 0.01%)</title><rect x="44.9948%" y="661" width="0.0108%" height="15" fill="rgb(230,197,49)" fg:x="174518" fg:w="42"/><text x="45.2448%" y="671.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (44 samples, 0.01%)</title><rect x="44.9945%" y="725" width="0.0113%" height="15" fill="rgb(239,141,16)" fg:x="174517" fg:w="44"/><text x="45.2445%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (43 samples, 0.01%)</title><rect x="44.9948%" y="709" width="0.0111%" height="15" fill="rgb(225,105,43)" fg:x="174518" fg:w="43"/><text x="45.2448%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (43 samples, 0.01%)</title><rect x="44.9948%" y="693" width="0.0111%" height="15" fill="rgb(214,131,14)" fg:x="174518" fg:w="43"/><text x="45.2448%" y="703.50"></text></g><g><title>___pthread_cond_wait (46 samples, 0.01%)</title><rect x="44.9942%" y="757" width="0.0119%" height="15" fill="rgb(229,177,11)" fg:x="174516" fg:w="46"/><text x="45.2442%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (45 samples, 0.01%)</title><rect x="44.9945%" y="741" width="0.0116%" height="15" fill="rgb(231,180,14)" fg:x="174517" fg:w="45"/><text x="45.2445%" y="751.50"></text></g><g><title>Parker::park (58 samples, 0.01%)</title><rect x="44.9929%" y="773" width="0.0150%" height="15" fill="rgb(232,88,2)" fg:x="174511" fg:w="58"/><text x="45.2429%" y="783.50"></text></g><g><title>Unsafe_Park (60 samples, 0.02%)</title><rect x="44.9929%" y="789" width="0.0155%" height="15" fill="rgb(205,220,8)" fg:x="174511" fg:w="60"/><text x="45.2429%" y="799.50"></text></g><g><title>[perf-742530.map] (470 samples, 0.12%)</title><rect x="44.8901%" y="805" width="0.1212%" height="15" fill="rgb(225,23,53)" fg:x="174112" fg:w="470"/><text x="45.1401%" y="815.50"></text></g><g><title>profile-writer- (497 samples, 0.13%)</title><rect x="44.8867%" y="821" width="0.1281%" height="15" fill="rgb(213,62,29)" fg:x="174099" fg:w="497"/><text x="45.1367%" y="831.50"></text></g><g><title>[python3.10] (63 samples, 0.02%)</title><rect x="45.0388%" y="789" width="0.0162%" height="15" fill="rgb(227,75,7)" fg:x="174689" fg:w="63"/><text x="45.2888%" y="799.50"></text></g><g><title>PyEval_EvalCode (45 samples, 0.01%)</title><rect x="45.0749%" y="613" width="0.0116%" height="15" fill="rgb(207,105,14)" fg:x="174829" fg:w="45"/><text x="45.3249%" y="623.50"></text></g><g><title>[python3.10] (45 samples, 0.01%)</title><rect x="45.0749%" y="597" width="0.0116%" height="15" fill="rgb(245,62,29)" fg:x="174829" fg:w="45"/><text x="45.3249%" y="607.50"></text></g><g><title>_PyEval_EvalFrameDefault (45 samples, 0.01%)</title><rect x="45.0749%" y="581" width="0.0116%" height="15" fill="rgb(236,202,4)" fg:x="174829" fg:w="45"/><text x="45.3249%" y="591.50"></text></g><g><title>_PyFunction_Vectorcall (93 samples, 0.02%)</title><rect x="45.0636%" y="773" width="0.0240%" height="15" fill="rgb(250,67,1)" fg:x="174785" fg:w="93"/><text x="45.3136%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (93 samples, 0.02%)</title><rect x="45.0636%" y="757" width="0.0240%" height="15" fill="rgb(253,115,44)" fg:x="174785" fg:w="93"/><text x="45.3136%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (78 samples, 0.02%)</title><rect x="45.0675%" y="741" width="0.0201%" height="15" fill="rgb(251,139,18)" fg:x="174800" fg:w="78"/><text x="45.3175%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (78 samples, 0.02%)</title><rect x="45.0675%" y="725" width="0.0201%" height="15" fill="rgb(218,22,32)" fg:x="174800" fg:w="78"/><text x="45.3175%" y="735.50"></text></g><g><title>_PyFunction_Vectorcall (69 samples, 0.02%)</title><rect x="45.0698%" y="709" width="0.0178%" height="15" fill="rgb(243,53,5)" fg:x="174809" fg:w="69"/><text x="45.3198%" y="719.50"></text></g><g><title>_PyEval_EvalFrameDefault (69 samples, 0.02%)</title><rect x="45.0698%" y="693" width="0.0178%" height="15" fill="rgb(227,56,16)" fg:x="174809" fg:w="69"/><text x="45.3198%" y="703.50"></text></g><g><title>_PyFunction_Vectorcall (49 samples, 0.01%)</title><rect x="45.0749%" y="677" width="0.0126%" height="15" fill="rgb(245,53,0)" fg:x="174829" fg:w="49"/><text x="45.3249%" y="687.50"></text></g><g><title>_PyEval_EvalFrameDefault (49 samples, 0.01%)</title><rect x="45.0749%" y="661" width="0.0126%" height="15" fill="rgb(216,170,35)" fg:x="174829" fg:w="49"/><text x="45.3249%" y="671.50"></text></g><g><title>[python3.10] (49 samples, 0.01%)</title><rect x="45.0749%" y="645" width="0.0126%" height="15" fill="rgb(211,200,8)" fg:x="174829" fg:w="49"/><text x="45.3249%" y="655.50"></text></g><g><title>[python3.10] (49 samples, 0.01%)</title><rect x="45.0749%" y="629" width="0.0126%" height="15" fill="rgb(228,204,44)" fg:x="174829" fg:w="49"/><text x="45.3249%" y="639.50"></text></g><g><title>_PyEval_EvalFrameDefault (127 samples, 0.03%)</title><rect x="45.0553%" y="789" width="0.0327%" height="15" fill="rgb(214,121,17)" fg:x="174753" fg:w="127"/><text x="45.3053%" y="799.50"></text></g><g><title>[unknown] (301 samples, 0.08%)</title><rect x="45.0239%" y="805" width="0.0776%" height="15" fill="rgb(233,64,38)" fg:x="174631" fg:w="301"/><text x="45.2739%" y="815.50"></text></g><g><title>Py_RunMain (73 samples, 0.02%)</title><rect x="45.1017%" y="741" width="0.0188%" height="15" fill="rgb(253,54,19)" fg:x="174933" fg:w="73"/><text x="45.3517%" y="751.50"></text></g><g><title>Py_FinalizeEx (54 samples, 0.01%)</title><rect x="45.1066%" y="725" width="0.0139%" height="15" fill="rgb(253,94,18)" fg:x="174952" fg:w="54"/><text x="45.3566%" y="735.50"></text></g><g><title>Py_InitializeFromConfig (82 samples, 0.02%)</title><rect x="45.1206%" y="709" width="0.0211%" height="15" fill="rgb(227,57,52)" fg:x="175006" fg:w="82"/><text x="45.3706%" y="719.50"></text></g><g><title>[python3.10] (82 samples, 0.02%)</title><rect x="45.1206%" y="693" width="0.0211%" height="15" fill="rgb(230,228,50)" fg:x="175006" fg:w="82"/><text x="45.3706%" y="703.50"></text></g><g><title>[python3.10] (82 samples, 0.02%)</title><rect x="45.1206%" y="677" width="0.0211%" height="15" fill="rgb(217,205,27)" fg:x="175006" fg:w="82"/><text x="45.3706%" y="687.50"></text></g><g><title>__libc_start_main_impl (157 samples, 0.04%)</title><rect x="45.1017%" y="789" width="0.0405%" height="15" fill="rgb(252,71,50)" fg:x="174933" fg:w="157"/><text x="45.3517%" y="799.50"></text></g><g><title>__libc_start_call_main (157 samples, 0.04%)</title><rect x="45.1017%" y="773" width="0.0405%" height="15" fill="rgb(209,86,4)" fg:x="174933" fg:w="157"/><text x="45.3517%" y="783.50"></text></g><g><title>Py_BytesMain (157 samples, 0.04%)</title><rect x="45.1017%" y="757" width="0.0405%" height="15" fill="rgb(229,94,0)" fg:x="174933" fg:w="157"/><text x="45.3517%" y="767.50"></text></g><g><title>[python3.10] (84 samples, 0.02%)</title><rect x="45.1206%" y="741" width="0.0217%" height="15" fill="rgb(252,223,21)" fg:x="175006" fg:w="84"/><text x="45.3706%" y="751.50"></text></g><g><title>[python3.10] (84 samples, 0.02%)</title><rect x="45.1206%" y="725" width="0.0217%" height="15" fill="rgb(230,210,4)" fg:x="175006" fg:w="84"/><text x="45.3706%" y="735.50"></text></g><g><title>_start (174 samples, 0.04%)</title><rect x="45.1017%" y="805" width="0.0449%" height="15" fill="rgb(240,149,38)" fg:x="174933" fg:w="174"/><text x="45.3517%" y="815.50"></text></g><g><title>python3 (524 samples, 0.14%)</title><rect x="45.0159%" y="821" width="0.1351%" height="15" fill="rgb(254,105,20)" fg:x="174600" fg:w="524"/><text x="45.2659%" y="831.50"></text></g><g><title>_dl_start_final (51 samples, 0.01%)</title><rect x="45.1567%" y="773" width="0.0131%" height="15" fill="rgb(253,87,46)" fg:x="175146" fg:w="51"/><text x="45.4067%" y="783.50"></text></g><g><title>_dl_sysdep_start (51 samples, 0.01%)</title><rect x="45.1567%" y="757" width="0.0131%" height="15" fill="rgb(253,116,33)" fg:x="175146" fg:w="51"/><text x="45.4067%" y="767.50"></text></g><g><title>dl_main (50 samples, 0.01%)</title><rect x="45.1569%" y="741" width="0.0129%" height="15" fill="rgb(229,198,5)" fg:x="175147" fg:w="50"/><text x="45.4069%" y="751.50"></text></g><g><title>_start (54 samples, 0.01%)</title><rect x="45.1564%" y="805" width="0.0139%" height="15" fill="rgb(242,38,37)" fg:x="175145" fg:w="54"/><text x="45.4064%" y="815.50"></text></g><g><title>_dl_start (54 samples, 0.01%)</title><rect x="45.1564%" y="789" width="0.0139%" height="15" fill="rgb(242,69,53)" fg:x="175145" fg:w="54"/><text x="45.4064%" y="799.50"></text></g><g><title>sed (94 samples, 0.02%)</title><rect x="45.1510%" y="821" width="0.0242%" height="15" fill="rgb(249,80,16)" fg:x="175124" fg:w="94"/><text x="45.4010%" y="831.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;1097844ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)2, 1097844ul&gt;::oop_access_barrier (69 samples, 0.02%)</title><rect x="45.1915%" y="789" width="0.0178%" height="15" fill="rgb(206,128,11)" fg:x="175281" fg:w="69"/><text x="45.4415%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;5292148ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)0, 5292148ul&gt;::oop_access_barrier (49 samples, 0.01%)</title><rect x="45.2121%" y="789" width="0.0126%" height="15" fill="rgb(212,35,20)" fg:x="175361" fg:w="49"/><text x="45.4621%" y="799.50"></text></g><g><title>HandleMark::pop_and_restore (63 samples, 0.02%)</title><rect x="45.2910%" y="789" width="0.0162%" height="15" fill="rgb(236,79,13)" fg:x="175667" fg:w="63"/><text x="45.5410%" y="799.50"></text></g><g><title>ThreadHeapSampler::enabled (45 samples, 0.01%)</title><rect x="45.4410%" y="789" width="0.0116%" height="15" fill="rgb(233,123,3)" fg:x="176249" fg:w="45"/><text x="45.6910%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (61 samples, 0.02%)</title><rect x="45.4604%" y="789" width="0.0157%" height="15" fill="rgb(214,93,52)" fg:x="176324" fg:w="61"/><text x="45.7104%" y="799.50"></text></g><g><title>check_bounds (60 samples, 0.02%)</title><rect x="45.5411%" y="789" width="0.0155%" height="15" fill="rgb(251,37,40)" fg:x="176637" fg:w="60"/><text x="45.7911%" y="799.50"></text></g><g><title>[anon] (1,788 samples, 0.46%)</title><rect x="45.1830%" y="805" width="0.4610%" height="15" fill="rgb(227,80,54)" fg:x="175248" fg:w="1788"/><text x="45.4330%" y="815.50"></text></g><g><title>[libc.so.6] (210 samples, 0.05%)</title><rect x="46.3563%" y="789" width="0.0541%" height="15" fill="rgb(254,48,11)" fg:x="179799" fg:w="210"/><text x="46.6063%" y="799.50"></text></g><g><title>[libstdc++.so.6.0.30] (168 samples, 0.04%)</title><rect x="46.4105%" y="789" width="0.0433%" height="15" fill="rgb(235,193,26)" fg:x="180009" fg:w="168"/><text x="46.6605%" y="799.50"></text></g><g><title>_ZdlPv (52 samples, 0.01%)</title><rect x="46.4543%" y="645" width="0.0134%" height="15" fill="rgb(229,99,21)" fg:x="180179" fg:w="52"/><text x="46.7043%" y="655.50"></text></g><g><title>__GI___close (58 samples, 0.01%)</title><rect x="46.4538%" y="789" width="0.0150%" height="15" fill="rgb(211,140,41)" fg:x="180177" fg:w="58"/><text x="46.7038%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (58 samples, 0.01%)</title><rect x="46.4538%" y="773" width="0.0150%" height="15" fill="rgb(240,227,30)" fg:x="180177" fg:w="58"/><text x="46.7038%" y="783.50"></text></g><g><title>do_syscall_64 (58 samples, 0.01%)</title><rect x="46.4538%" y="757" width="0.0150%" height="15" fill="rgb(215,224,45)" fg:x="180177" fg:w="58"/><text x="46.7038%" y="767.50"></text></g><g><title>unload_network_ops_symbols (57 samples, 0.01%)</title><rect x="46.4540%" y="741" width="0.0147%" height="15" fill="rgb(206,123,31)" fg:x="180178" fg:w="57"/><text x="46.7040%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_close (57 samples, 0.01%)</title><rect x="46.4540%" y="725" width="0.0147%" height="15" fill="rgb(210,138,16)" fg:x="180178" fg:w="57"/><text x="46.7040%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (57 samples, 0.01%)</title><rect x="46.4540%" y="709" width="0.0147%" height="15" fill="rgb(228,57,28)" fg:x="180178" fg:w="57"/><text x="46.7040%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (56 samples, 0.01%)</title><rect x="46.4543%" y="693" width="0.0144%" height="15" fill="rgb(242,170,10)" fg:x="180179" fg:w="56"/><text x="46.7043%" y="703.50"></text></g><g><title>_ZdlPv (56 samples, 0.01%)</title><rect x="46.4543%" y="677" width="0.0144%" height="15" fill="rgb(228,214,39)" fg:x="180179" fg:w="56"/><text x="46.7043%" y="687.50"></text></g><g><title>_ZdlPv (56 samples, 0.01%)</title><rect x="46.4543%" y="661" width="0.0144%" height="15" fill="rgb(218,179,33)" fg:x="180179" fg:w="56"/><text x="46.7043%" y="671.50"></text></g><g><title>__rseq_handle_notify_resume (47 samples, 0.01%)</title><rect x="46.5053%" y="693" width="0.0121%" height="15" fill="rgb(235,193,39)" fg:x="180377" fg:w="47"/><text x="46.7553%" y="703.50"></text></g><g><title>kfree (71 samples, 0.02%)</title><rect x="46.5386%" y="629" width="0.0183%" height="15" fill="rgb(219,221,36)" fg:x="180506" fg:w="71"/><text x="46.7886%" y="639.50"></text></g><g><title>btrfs_release_file (91 samples, 0.02%)</title><rect x="46.5337%" y="645" width="0.0235%" height="15" fill="rgb(248,218,19)" fg:x="180487" fg:w="91"/><text x="46.7837%" y="655.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (98 samples, 0.03%)</title><rect x="46.6237%" y="565" width="0.0253%" height="15" fill="rgb(205,50,9)" fg:x="180836" fg:w="98"/><text x="46.8737%" y="575.50"></text></g><g><title>cshook_security_inode_free_security (69 samples, 0.02%)</title><rect x="46.6312%" y="549" width="0.0178%" height="15" fill="rgb(238,81,28)" fg:x="180865" fg:w="69"/><text x="46.8812%" y="559.50"></text></g><g><title>pinnedhook_security_file_free_security (206 samples, 0.05%)</title><rect x="46.5987%" y="629" width="0.0531%" height="15" fill="rgb(235,110,19)" fg:x="180739" fg:w="206"/><text x="46.8487%" y="639.50"></text></g><g><title>cshook_security_file_free_security (175 samples, 0.05%)</title><rect x="46.6067%" y="613" width="0.0451%" height="15" fill="rgb(214,7,14)" fg:x="180770" fg:w="175"/><text x="46.8567%" y="623.50"></text></g><g><title>cshook_security_file_free_security (131 samples, 0.03%)</title><rect x="46.6180%" y="597" width="0.0338%" height="15" fill="rgb(211,77,3)" fg:x="180814" fg:w="131"/><text x="46.8680%" y="607.50"></text></g><g><title>cshook_security_file_free_security (110 samples, 0.03%)</title><rect x="46.6234%" y="581" width="0.0284%" height="15" fill="rgb(229,5,9)" fg:x="180835" fg:w="110"/><text x="46.8734%" y="591.50"></text></g><g><title>__fput (502 samples, 0.13%)</title><rect x="46.5231%" y="661" width="0.1294%" height="15" fill="rgb(225,90,11)" fg:x="180446" fg:w="502"/><text x="46.7731%" y="671.50"></text></g><g><title>security_file_free (270 samples, 0.07%)</title><rect x="46.5829%" y="645" width="0.0696%" height="15" fill="rgb(242,56,8)" fg:x="180678" fg:w="270"/><text x="46.8329%" y="655.50"></text></g><g><title>____fput (549 samples, 0.14%)</title><rect x="46.5226%" y="677" width="0.1415%" height="15" fill="rgb(249,212,39)" fg:x="180444" fg:w="549"/><text x="46.7726%" y="687.50"></text></g><g><title>exit_to_user_mode_loop (658 samples, 0.17%)</title><rect x="46.4976%" y="709" width="0.1696%" height="15" fill="rgb(236,90,9)" fg:x="180347" fg:w="658"/><text x="46.7476%" y="719.50"></text></g><g><title>task_work_run (567 samples, 0.15%)</title><rect x="46.5211%" y="693" width="0.1462%" height="15" fill="rgb(206,88,35)" fg:x="180438" fg:w="567"/><text x="46.7711%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (696 samples, 0.18%)</title><rect x="46.4914%" y="741" width="0.1794%" height="15" fill="rgb(205,126,30)" fg:x="180323" fg:w="696"/><text x="46.7414%" y="751.50"></text></g><g><title>exit_to_user_mode_prepare (683 samples, 0.18%)</title><rect x="46.4948%" y="725" width="0.1761%" height="15" fill="rgb(230,176,12)" fg:x="180336" fg:w="683"/><text x="46.7448%" y="735.50"></text></g><g><title>dnotify_flush (60 samples, 0.02%)</title><rect x="46.6827%" y="677" width="0.0155%" height="15" fill="rgb(243,19,9)" fg:x="181065" fg:w="60"/><text x="46.9327%" y="687.50"></text></g><g><title>filp_close (107 samples, 0.03%)</title><rect x="46.6817%" y="693" width="0.0276%" height="15" fill="rgb(245,171,17)" fg:x="181061" fg:w="107"/><text x="46.9317%" y="703.50"></text></g><g><title>close_fd (136 samples, 0.04%)</title><rect x="46.6752%" y="709" width="0.0351%" height="15" fill="rgb(227,52,21)" fg:x="181036" fg:w="136"/><text x="46.9252%" y="719.50"></text></g><g><title>__x64_sys_close (143 samples, 0.04%)</title><rect x="46.6750%" y="725" width="0.0369%" height="15" fill="rgb(238,69,14)" fg:x="181035" fg:w="143"/><text x="46.9250%" y="735.50"></text></g><g><title>cshook_systemcalltable_post_close (54 samples, 0.01%)</title><rect x="46.7196%" y="725" width="0.0139%" height="15" fill="rgb(241,156,39)" fg:x="181208" fg:w="54"/><text x="46.9696%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (92 samples, 0.02%)</title><rect x="46.7926%" y="645" width="0.0237%" height="15" fill="rgb(212,227,28)" fg:x="181491" fg:w="92"/><text x="47.0426%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (62 samples, 0.02%)</title><rect x="46.8003%" y="629" width="0.0160%" height="15" fill="rgb(209,118,27)" fg:x="181521" fg:w="62"/><text x="47.0503%" y="639.50"></text></g><g><title>cshook_security_file_free_security (107 samples, 0.03%)</title><rect x="46.7926%" y="661" width="0.0276%" height="15" fill="rgb(226,102,5)" fg:x="181491" fg:w="107"/><text x="47.0426%" y="671.50"></text></g><g><title>cshook_security_file_free_security (207 samples, 0.05%)</title><rect x="46.7688%" y="677" width="0.0534%" height="15" fill="rgb(223,34,3)" fg:x="181399" fg:w="207"/><text x="47.0188%" y="687.50"></text></g><g><title>cshook_security_file_free_security (283 samples, 0.07%)</title><rect x="46.7498%" y="693" width="0.0730%" height="15" fill="rgb(221,81,38)" fg:x="181325" fg:w="283"/><text x="46.9998%" y="703.50"></text></g><g><title>[[falcon_kal]] (71 samples, 0.02%)</title><rect x="46.8253%" y="677" width="0.0183%" height="15" fill="rgb(236,219,28)" fg:x="181618" fg:w="71"/><text x="47.0753%" y="687.50"></text></g><g><title>kfree (39 samples, 0.01%)</title><rect x="46.8606%" y="629" width="0.0101%" height="15" fill="rgb(213,200,14)" fg:x="181755" fg:w="39"/><text x="47.1106%" y="639.50"></text></g><g><title>[[falcon_kal]] (40 samples, 0.01%)</title><rect x="46.8606%" y="645" width="0.0103%" height="15" fill="rgb(240,33,19)" fg:x="181755" fg:w="40"/><text x="47.1106%" y="655.50"></text></g><g><title>_ZdlPv (110 samples, 0.03%)</title><rect x="46.8436%" y="677" width="0.0284%" height="15" fill="rgb(233,113,27)" fg:x="181689" fg:w="110"/><text x="47.0936%" y="687.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (59 samples, 0.02%)</title><rect x="46.8568%" y="661" width="0.0152%" height="15" fill="rgb(220,221,18)" fg:x="181740" fg:w="59"/><text x="47.1068%" y="671.50"></text></g><g><title>__kmalloc (50 samples, 0.01%)</title><rect x="46.8830%" y="645" width="0.0129%" height="15" fill="rgb(238,92,8)" fg:x="181842" fg:w="50"/><text x="47.1330%" y="655.50"></text></g><g><title>[[falcon_kal]] (62 samples, 0.02%)</title><rect x="46.8825%" y="661" width="0.0160%" height="15" fill="rgb(222,164,16)" fg:x="181840" fg:w="62"/><text x="47.1325%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (103 samples, 0.03%)</title><rect x="46.8727%" y="677" width="0.0266%" height="15" fill="rgb(241,119,3)" fg:x="181802" fg:w="103"/><text x="47.1227%" y="687.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (646 samples, 0.17%)</title><rect x="46.7335%" y="709" width="0.1666%" height="15" fill="rgb(241,44,8)" fg:x="181262" fg:w="646"/><text x="46.9835%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (298 samples, 0.08%)</title><rect x="46.8232%" y="693" width="0.0768%" height="15" fill="rgb(230,36,40)" fg:x="181610" fg:w="298"/><text x="47.0732%" y="703.50"></text></g><g><title>do_syscall_64 (1,633 samples, 0.42%)</title><rect x="46.4806%" y="757" width="0.4210%" height="15" fill="rgb(243,16,36)" fg:x="180281" fg:w="1633"/><text x="46.7306%" y="767.50"></text></g><g><title>unload_network_ops_symbols (895 samples, 0.23%)</title><rect x="46.6709%" y="741" width="0.2308%" height="15" fill="rgb(231,4,26)" fg:x="181019" fg:w="895"/><text x="46.9209%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_close (652 samples, 0.17%)</title><rect x="46.7335%" y="725" width="0.1681%" height="15" fill="rgb(240,9,31)" fg:x="181262" fg:w="652"/><text x="46.9835%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,651 samples, 0.43%)</title><rect x="46.4778%" y="773" width="0.4257%" height="15" fill="rgb(207,173,15)" fg:x="180270" fg:w="1651"/><text x="46.7278%" y="783.50"></text></g><g><title>__GI___close_nocancel (1,694 samples, 0.44%)</title><rect x="46.4687%" y="789" width="0.4368%" height="15" fill="rgb(224,192,53)" fg:x="180235" fg:w="1694"/><text x="46.7187%" y="799.50"></text></g><g><title>_int_free (179 samples, 0.05%)</title><rect x="46.9447%" y="773" width="0.0462%" height="15" fill="rgb(223,67,28)" fg:x="182081" fg:w="179"/><text x="47.1947%" y="783.50"></text></g><g><title>arena_for_chunk (48 samples, 0.01%)</title><rect x="46.9908%" y="773" width="0.0124%" height="15" fill="rgb(211,20,47)" fg:x="182260" fg:w="48"/><text x="47.2408%" y="783.50"></text></g><g><title>arena_for_chunk (45 samples, 0.01%)</title><rect x="46.9916%" y="757" width="0.0116%" height="15" fill="rgb(240,228,2)" fg:x="182263" fg:w="45"/><text x="47.2416%" y="767.50"></text></g><g><title>__GI___libc_free (364 samples, 0.09%)</title><rect x="46.9099%" y="789" width="0.0938%" height="15" fill="rgb(248,151,12)" fg:x="181946" fg:w="364"/><text x="47.1599%" y="799.50"></text></g><g><title>__fdget_pos (55 samples, 0.01%)</title><rect x="47.0780%" y="709" width="0.0142%" height="15" fill="rgb(244,8,39)" fg:x="182598" fg:w="55"/><text x="47.3280%" y="719.50"></text></g><g><title>kmem_cache_alloc (65 samples, 0.02%)</title><rect x="47.2056%" y="661" width="0.0168%" height="15" fill="rgb(222,26,8)" fg:x="183093" fg:w="65"/><text x="47.4556%" y="671.50"></text></g><g><title>btrfs_alloc_path (73 samples, 0.02%)</title><rect x="47.2053%" y="677" width="0.0188%" height="15" fill="rgb(213,106,44)" fg:x="183092" fg:w="73"/><text x="47.4553%" y="687.50"></text></g><g><title>memchr (73 samples, 0.02%)</title><rect x="47.3007%" y="645" width="0.0188%" height="15" fill="rgb(214,129,20)" fg:x="183462" fg:w="73"/><text x="47.5507%" y="655.50"></text></g><g><title>filldir64 (328 samples, 0.08%)</title><rect x="47.2386%" y="661" width="0.0846%" height="15" fill="rgb(212,32,13)" fg:x="183221" fg:w="328"/><text x="47.4886%" y="671.50"></text></g><g><title>btrfs_filldir (378 samples, 0.10%)</title><rect x="47.2290%" y="677" width="0.0975%" height="15" fill="rgb(208,168,33)" fg:x="183184" fg:w="378"/><text x="47.4790%" y="687.50"></text></g><g><title>kmem_cache_free (44 samples, 0.01%)</title><rect x="47.3322%" y="661" width="0.0113%" height="15" fill="rgb(231,207,8)" fg:x="183584" fg:w="44"/><text x="47.5822%" y="671.50"></text></g><g><title>btrfs_free_path (67 samples, 0.02%)</title><rect x="47.3265%" y="677" width="0.0173%" height="15" fill="rgb(235,219,23)" fg:x="183562" fg:w="67"/><text x="47.5765%" y="687.50"></text></g><g><title>btrfs_get_16 (121 samples, 0.03%)</title><rect x="47.3438%" y="677" width="0.0312%" height="15" fill="rgb(226,216,26)" fg:x="183629" fg:w="121"/><text x="47.5938%" y="687.50"></text></g><g><title>btrfs_get_32 (51 samples, 0.01%)</title><rect x="47.3750%" y="677" width="0.0131%" height="15" fill="rgb(239,137,16)" fg:x="183750" fg:w="51"/><text x="47.6250%" y="687.50"></text></g><g><title>btrfs_search_slot (46 samples, 0.01%)</title><rect x="47.4031%" y="661" width="0.0119%" height="15" fill="rgb(207,12,36)" fg:x="183859" fg:w="46"/><text x="47.6531%" y="671.50"></text></g><g><title>btrfs_next_old_leaf (81 samples, 0.02%)</title><rect x="47.4000%" y="677" width="0.0209%" height="15" fill="rgb(210,214,24)" fg:x="183847" fg:w="81"/><text x="47.6500%" y="687.50"></text></g><g><title>btrfs_get_delayed_node (80 samples, 0.02%)</title><rect x="47.4291%" y="661" width="0.0206%" height="15" fill="rgb(206,56,30)" fg:x="183960" fg:w="80"/><text x="47.6791%" y="671.50"></text></g><g><title>btrfs_readdir_get_delayed_items (163 samples, 0.04%)</title><rect x="47.4240%" y="677" width="0.0420%" height="15" fill="rgb(228,143,26)" fg:x="183940" fg:w="163"/><text x="47.6740%" y="687.50"></text></g><g><title>_raw_spin_lock (43 samples, 0.01%)</title><rect x="47.4861%" y="645" width="0.0111%" height="15" fill="rgb(216,218,46)" fg:x="184181" fg:w="43"/><text x="47.7361%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (74 samples, 0.02%)</title><rect x="47.4972%" y="645" width="0.0191%" height="15" fill="rgb(206,6,19)" fg:x="184224" fg:w="74"/><text x="47.7472%" y="655.50"></text></g><g><title>release_extent_buffer (44 samples, 0.01%)</title><rect x="47.5049%" y="629" width="0.0113%" height="15" fill="rgb(239,177,51)" fg:x="184254" fg:w="44"/><text x="47.7549%" y="639.50"></text></g><g><title>free_extent_buffer (124 samples, 0.03%)</title><rect x="47.4861%" y="661" width="0.0320%" height="15" fill="rgb(216,55,25)" fg:x="184181" fg:w="124"/><text x="47.7361%" y="671.50"></text></g><g><title>btrfs_release_path (181 samples, 0.05%)</title><rect x="47.4745%" y="677" width="0.0467%" height="15" fill="rgb(231,163,29)" fg:x="184136" fg:w="181"/><text x="47.7245%" y="687.50"></text></g><g><title>generic_bin_search.constprop.0 (473 samples, 0.12%)</title><rect x="47.5745%" y="645" width="0.1220%" height="15" fill="rgb(232,149,50)" fg:x="184524" fg:w="473"/><text x="47.8245%" y="655.50"></text></g><g><title>btrfs_bin_search (499 samples, 0.13%)</title><rect x="47.5681%" y="661" width="0.1287%" height="15" fill="rgb(223,142,48)" fg:x="184499" fg:w="499"/><text x="47.8181%" y="671.50"></text></g><g><title>schedule (55 samples, 0.01%)</title><rect x="47.7135%" y="597" width="0.0142%" height="15" fill="rgb(245,83,23)" fg:x="185063" fg:w="55"/><text x="47.9635%" y="607.50"></text></g><g><title>__schedule (55 samples, 0.01%)</title><rect x="47.7135%" y="581" width="0.0142%" height="15" fill="rgb(224,63,2)" fg:x="185063" fg:w="55"/><text x="47.9635%" y="591.50"></text></g><g><title>__btrfs_tree_read_lock (82 samples, 0.02%)</title><rect x="47.7068%" y="645" width="0.0211%" height="15" fill="rgb(218,65,53)" fg:x="185037" fg:w="82"/><text x="47.9568%" y="655.50"></text></g><g><title>down_read (81 samples, 0.02%)</title><rect x="47.7071%" y="629" width="0.0209%" height="15" fill="rgb(221,84,29)" fg:x="185038" fg:w="81"/><text x="47.9571%" y="639.50"></text></g><g><title>rwsem_down_read_slowpath (63 samples, 0.02%)</title><rect x="47.7117%" y="613" width="0.0162%" height="15" fill="rgb(234,0,32)" fg:x="185056" fg:w="63"/><text x="47.9617%" y="623.50"></text></g><g><title>btrfs_root_node (57 samples, 0.01%)</title><rect x="47.7279%" y="645" width="0.0147%" height="15" fill="rgb(206,20,16)" fg:x="185119" fg:w="57"/><text x="47.9779%" y="655.50"></text></g><g><title>btrfs_read_lock_root_node (142 samples, 0.04%)</title><rect x="47.7065%" y="661" width="0.0366%" height="15" fill="rgb(244,172,18)" fg:x="185036" fg:w="142"/><text x="47.9565%" y="671.50"></text></g><g><title>__btrfs_tree_read_lock (78 samples, 0.02%)</title><rect x="47.7450%" y="645" width="0.0201%" height="15" fill="rgb(254,133,1)" fg:x="185185" fg:w="78"/><text x="47.9950%" y="655.50"></text></g><g><title>down_read (69 samples, 0.02%)</title><rect x="47.7473%" y="629" width="0.0178%" height="15" fill="rgb(222,206,41)" fg:x="185194" fg:w="69"/><text x="47.9973%" y="639.50"></text></g><g><title>btrfs_tree_read_lock (81 samples, 0.02%)</title><rect x="47.7447%" y="661" width="0.0209%" height="15" fill="rgb(212,3,42)" fg:x="185184" fg:w="81"/><text x="47.9947%" y="671.50"></text></g><g><title>btrfs_buffer_uptodate (68 samples, 0.02%)</title><rect x="47.7908%" y="645" width="0.0175%" height="15" fill="rgb(241,11,4)" fg:x="185363" fg:w="68"/><text x="48.0408%" y="655.50"></text></g><g><title>verify_parent_transid (54 samples, 0.01%)</title><rect x="47.7945%" y="629" width="0.0139%" height="15" fill="rgb(205,19,26)" fg:x="185377" fg:w="54"/><text x="48.0445%" y="639.50"></text></g><g><title>btrfs_get_64 (71 samples, 0.02%)</title><rect x="47.8084%" y="645" width="0.0183%" height="15" fill="rgb(210,179,32)" fg:x="185431" fg:w="71"/><text x="48.0584%" y="655.50"></text></g><g><title>btrfs_node_key (85 samples, 0.02%)</title><rect x="47.8267%" y="645" width="0.0219%" height="15" fill="rgb(227,116,49)" fg:x="185502" fg:w="85"/><text x="48.0767%" y="655.50"></text></g><g><title>read_extent_buffer (82 samples, 0.02%)</title><rect x="47.8275%" y="629" width="0.0211%" height="15" fill="rgb(211,146,6)" fg:x="185505" fg:w="82"/><text x="48.0775%" y="639.50"></text></g><g><title>radix_tree_lookup (269 samples, 0.07%)</title><rect x="47.8968%" y="613" width="0.0694%" height="15" fill="rgb(219,44,39)" fg:x="185774" fg:w="269"/><text x="48.1468%" y="623.50"></text></g><g><title>__radix_tree_lookup (269 samples, 0.07%)</title><rect x="47.8968%" y="597" width="0.0694%" height="15" fill="rgb(234,128,11)" fg:x="185774" fg:w="269"/><text x="48.1468%" y="607.50"></text></g><g><title>find_extent_buffer_nolock (377 samples, 0.10%)</title><rect x="47.8695%" y="629" width="0.0972%" height="15" fill="rgb(220,183,53)" fg:x="185668" fg:w="377"/><text x="48.1195%" y="639.50"></text></g><g><title>mark_page_accessed (144 samples, 0.04%)</title><rect x="47.9667%" y="629" width="0.0371%" height="15" fill="rgb(213,219,32)" fg:x="186045" fg:w="144"/><text x="48.2167%" y="639.50"></text></g><g><title>find_extent_buffer (569 samples, 0.15%)</title><rect x="47.8592%" y="645" width="0.1467%" height="15" fill="rgb(232,156,16)" fg:x="185628" fg:w="569"/><text x="48.1092%" y="655.50"></text></g><g><title>read_block_for_search (918 samples, 0.24%)</title><rect x="47.7764%" y="661" width="0.2367%" height="15" fill="rgb(246,135,34)" fg:x="185307" fg:w="918"/><text x="48.0264%" y="671.50"></text></g><g><title>unlock_up (73 samples, 0.02%)</title><rect x="48.0131%" y="661" width="0.0188%" height="15" fill="rgb(241,99,0)" fg:x="186225" fg:w="73"/><text x="48.2631%" y="671.50"></text></g><g><title>btrfs_search_slot (2,015 samples, 0.52%)</title><rect x="47.5212%" y="677" width="0.5195%" height="15" fill="rgb(222,103,45)" fg:x="184317" fg:w="2015"/><text x="47.7712%" y="687.50"></text></g><g><title>filldir64 (70 samples, 0.02%)</title><rect x="48.0543%" y="677" width="0.0180%" height="15" fill="rgb(212,57,4)" fg:x="186385" fg:w="70"/><text x="48.3043%" y="687.50"></text></g><g><title>read_extent_buffer (429 samples, 0.11%)</title><rect x="48.0837%" y="677" width="0.1106%" height="15" fill="rgb(215,68,47)" fg:x="186499" fg:w="429"/><text x="48.3337%" y="687.50"></text></g><g><title>btrfs_real_readdir (4,106 samples, 1.06%)</title><rect x="47.1440%" y="693" width="1.0586%" height="15" fill="rgb(230,84,2)" fg:x="182854" fg:w="4106"/><text x="47.3940%" y="703.50"></text></g><g><title>pinnedhook_security_file_permission (53 samples, 0.01%)</title><rect x="48.2570%" y="677" width="0.0137%" height="15" fill="rgb(220,102,14)" fg:x="187171" fg:w="53"/><text x="48.5070%" y="687.50"></text></g><g><title>security_file_permission (177 samples, 0.05%)</title><rect x="48.2263%" y="693" width="0.0456%" height="15" fill="rgb(240,10,32)" fg:x="187052" fg:w="177"/><text x="48.4763%" y="703.50"></text></g><g><title>atime_needs_update (42 samples, 0.01%)</title><rect x="48.2750%" y="677" width="0.0108%" height="15" fill="rgb(215,47,27)" fg:x="187241" fg:w="42"/><text x="48.5250%" y="687.50"></text></g><g><title>btrfs_update_time (64 samples, 0.02%)</title><rect x="48.2864%" y="677" width="0.0165%" height="15" fill="rgb(233,188,43)" fg:x="187285" fg:w="64"/><text x="48.5364%" y="687.50"></text></g><g><title>btrfs_dirty_inode (64 samples, 0.02%)</title><rect x="48.2864%" y="661" width="0.0165%" height="15" fill="rgb(253,190,1)" fg:x="187285" fg:w="64"/><text x="48.5364%" y="671.50"></text></g><g><title>iterate_dir (4,669 samples, 1.20%)</title><rect x="47.1009%" y="709" width="1.2038%" height="15" fill="rgb(206,114,52)" fg:x="182687" fg:w="4669"/><text x="47.3509%" y="719.50"></text></g><g><title>touch_atime (127 samples, 0.03%)</title><rect x="48.2719%" y="693" width="0.0327%" height="15" fill="rgb(233,120,37)" fg:x="187229" fg:w="127"/><text x="48.5219%" y="703.50"></text></g><g><title>__x64_sys_getdents64 (4,815 samples, 1.24%)</title><rect x="47.0738%" y="725" width="1.2414%" height="15" fill="rgb(214,52,39)" fg:x="182582" fg:w="4815"/><text x="47.3238%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (39 samples, 0.01%)</title><rect x="48.3183%" y="709" width="0.0101%" height="15" fill="rgb(223,80,29)" fg:x="187409" fg:w="39"/><text x="48.5683%" y="719.50"></text></g><g><title>do_syscall_64 (4,910 samples, 1.27%)</title><rect x="47.0628%" y="741" width="1.2659%" height="15" fill="rgb(230,101,40)" fg:x="182539" fg:w="4910"/><text x="47.3128%" y="751.50"></text></g><g><title>syscall_exit_to_user_mode (42 samples, 0.01%)</title><rect x="48.3178%" y="725" width="0.0108%" height="15" fill="rgb(219,211,8)" fg:x="187407" fg:w="42"/><text x="48.5678%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,920 samples, 1.27%)</title><rect x="47.0609%" y="757" width="1.2685%" height="15" fill="rgb(252,126,28)" fg:x="182532" fg:w="4920"/><text x="47.3109%" y="767.50"></text></g><g><title>__GI___getdents64 (4,991 samples, 1.29%)</title><rect x="47.0478%" y="773" width="1.2868%" height="15" fill="rgb(215,56,38)" fg:x="182481" fg:w="4991"/><text x="47.2978%" y="783.50"></text></g><g><title>__GI___readdir64 (5,127 samples, 1.32%)</title><rect x="47.0132%" y="789" width="1.3219%" height="15" fill="rgb(249,55,44)" fg:x="182347" fg:w="5127"/><text x="47.2632%" y="799.50"></text></g><g><title>read_block_for_search (43 samples, 0.01%)</title><rect x="48.3722%" y="597" width="0.0111%" height="15" fill="rgb(220,221,32)" fg:x="187618" fg:w="43"/><text x="48.6222%" y="607.50"></text></g><g><title>btrfs_search_slot (117 samples, 0.03%)</title><rect x="48.3539%" y="613" width="0.0302%" height="15" fill="rgb(212,216,41)" fg:x="187547" fg:w="117"/><text x="48.6039%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (124 samples, 0.03%)</title><rect x="48.3534%" y="629" width="0.0320%" height="15" fill="rgb(228,213,43)" fg:x="187545" fg:w="124"/><text x="48.6034%" y="639.50"></text></g><g><title>btrfs_lookup_dentry (141 samples, 0.04%)</title><rect x="48.3493%" y="645" width="0.0364%" height="15" fill="rgb(211,31,26)" fg:x="187529" fg:w="141"/><text x="48.5993%" y="655.50"></text></g><g><title>btrfs_lookup (148 samples, 0.04%)</title><rect x="48.3490%" y="661" width="0.0382%" height="15" fill="rgb(229,202,19)" fg:x="187528" fg:w="148"/><text x="48.5990%" y="671.50"></text></g><g><title>__lookup_hash (161 samples, 0.04%)</title><rect x="48.3485%" y="677" width="0.0415%" height="15" fill="rgb(229,105,46)" fg:x="187526" fg:w="161"/><text x="48.5985%" y="687.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (56 samples, 0.01%)</title><rect x="48.3911%" y="645" width="0.0144%" height="15" fill="rgb(235,108,1)" fg:x="187691" fg:w="56"/><text x="48.6411%" y="655.50"></text></g><g><title>filename_parentat (63 samples, 0.02%)</title><rect x="48.3903%" y="677" width="0.0162%" height="15" fill="rgb(245,111,35)" fg:x="187688" fg:w="63"/><text x="48.6403%" y="687.50"></text></g><g><title>path_parentat (63 samples, 0.02%)</title><rect x="48.3903%" y="661" width="0.0162%" height="15" fill="rgb(219,185,31)" fg:x="187688" fg:w="63"/><text x="48.6403%" y="671.50"></text></g><g><title>filename_create (233 samples, 0.06%)</title><rect x="48.3477%" y="693" width="0.0601%" height="15" fill="rgb(214,4,43)" fg:x="187523" fg:w="233"/><text x="48.5977%" y="703.50"></text></g><g><title>rwsem_optimistic_spin (66 samples, 0.02%)</title><rect x="48.4418%" y="517" width="0.0170%" height="15" fill="rgb(235,227,40)" fg:x="187888" fg:w="66"/><text x="48.6918%" y="527.50"></text></g><g><title>btrfs_tree_lock (90 samples, 0.02%)</title><rect x="48.4400%" y="581" width="0.0232%" height="15" fill="rgb(230,88,30)" fg:x="187881" fg:w="90"/><text x="48.6900%" y="591.50"></text></g><g><title>__btrfs_tree_lock (90 samples, 0.02%)</title><rect x="48.4400%" y="565" width="0.0232%" height="15" fill="rgb(216,217,1)" fg:x="187881" fg:w="90"/><text x="48.6900%" y="575.50"></text></g><g><title>down_write (88 samples, 0.02%)</title><rect x="48.4406%" y="549" width="0.0227%" height="15" fill="rgb(248,139,50)" fg:x="187883" fg:w="88"/><text x="48.6906%" y="559.50"></text></g><g><title>rwsem_down_write_slowpath (86 samples, 0.02%)</title><rect x="48.4411%" y="533" width="0.0222%" height="15" fill="rgb(233,1,21)" fg:x="187885" fg:w="86"/><text x="48.6911%" y="543.50"></text></g><g><title>btrfs_search_slot (200 samples, 0.05%)</title><rect x="48.4313%" y="597" width="0.0516%" height="15" fill="rgb(215,183,12)" fg:x="187847" fg:w="200"/><text x="48.6813%" y="607.50"></text></g><g><title>insert_with_overflow (288 samples, 0.07%)</title><rect x="48.4295%" y="629" width="0.0743%" height="15" fill="rgb(229,104,42)" fg:x="187840" fg:w="288"/><text x="48.6795%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (287 samples, 0.07%)</title><rect x="48.4297%" y="613" width="0.0740%" height="15" fill="rgb(243,34,48)" fg:x="187841" fg:w="287"/><text x="48.6797%" y="623.50"></text></g><g><title>setup_items_for_insert (78 samples, 0.02%)</title><rect x="48.4836%" y="597" width="0.0201%" height="15" fill="rgb(239,11,44)" fg:x="188050" fg:w="78"/><text x="48.7336%" y="607.50"></text></g><g><title>btrfs_insert_dir_item (344 samples, 0.09%)</title><rect x="48.4163%" y="645" width="0.0887%" height="15" fill="rgb(231,98,35)" fg:x="187789" fg:w="344"/><text x="48.6663%" y="655.50"></text></g><g><title>btrfs_add_link (362 samples, 0.09%)</title><rect x="48.4155%" y="661" width="0.0933%" height="15" fill="rgb(233,28,25)" fg:x="187786" fg:w="362"/><text x="48.6655%" y="671.50"></text></g><g><title>rwsem_optimistic_spin (58 samples, 0.01%)</title><rect x="48.5329%" y="549" width="0.0150%" height="15" fill="rgb(234,123,11)" fg:x="188241" fg:w="58"/><text x="48.7829%" y="559.50"></text></g><g><title>down_write (82 samples, 0.02%)</title><rect x="48.5311%" y="581" width="0.0211%" height="15" fill="rgb(220,69,3)" fg:x="188234" fg:w="82"/><text x="48.7811%" y="591.50"></text></g><g><title>rwsem_down_write_slowpath (77 samples, 0.02%)</title><rect x="48.5323%" y="565" width="0.0199%" height="15" fill="rgb(214,64,36)" fg:x="188239" fg:w="77"/><text x="48.7823%" y="575.50"></text></g><g><title>btrfs_tree_lock (83 samples, 0.02%)</title><rect x="48.5311%" y="613" width="0.0214%" height="15" fill="rgb(211,138,32)" fg:x="188234" fg:w="83"/><text x="48.7811%" y="623.50"></text></g><g><title>__btrfs_tree_lock (83 samples, 0.02%)</title><rect x="48.5311%" y="597" width="0.0214%" height="15" fill="rgb(213,118,47)" fg:x="188234" fg:w="83"/><text x="48.7811%" y="607.50"></text></g><g><title>btrfs_search_slot (184 samples, 0.05%)</title><rect x="48.5249%" y="629" width="0.0474%" height="15" fill="rgb(243,124,49)" fg:x="188210" fg:w="184"/><text x="48.7749%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (227 samples, 0.06%)</title><rect x="48.5238%" y="645" width="0.0585%" height="15" fill="rgb(221,30,28)" fg:x="188206" fg:w="227"/><text x="48.7738%" y="655.50"></text></g><g><title>btrfs_new_inode (338 samples, 0.09%)</title><rect x="48.5187%" y="661" width="0.0871%" height="15" fill="rgb(246,37,13)" fg:x="188186" fg:w="338"/><text x="48.7687%" y="671.50"></text></g><g><title>btrfs_mkdir (827 samples, 0.21%)</title><rect x="48.4130%" y="677" width="0.2132%" height="15" fill="rgb(249,66,14)" fg:x="187776" fg:w="827"/><text x="48.6630%" y="687.50"></text></g><g><title>do_mkdirat (1,104 samples, 0.28%)</title><rect x="48.3434%" y="709" width="0.2846%" height="15" fill="rgb(213,166,5)" fg:x="187506" fg:w="1104"/><text x="48.5934%" y="719.50"></text></g><g><title>vfs_mkdir (838 samples, 0.22%)</title><rect x="48.4119%" y="693" width="0.2161%" height="15" fill="rgb(221,66,24)" fg:x="187772" fg:w="838"/><text x="48.6619%" y="703.50"></text></g><g><title>__x64_sys_mkdir (1,121 samples, 0.29%)</title><rect x="48.3434%" y="725" width="0.2890%" height="15" fill="rgb(210,132,17)" fg:x="187506" fg:w="1121"/><text x="48.5934%" y="735.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (53 samples, 0.01%)</title><rect x="48.6448%" y="613" width="0.0137%" height="15" fill="rgb(243,202,5)" fg:x="188675" fg:w="53"/><text x="48.8948%" y="623.50"></text></g><g><title>filename_lookup (67 samples, 0.02%)</title><rect x="48.6437%" y="645" width="0.0173%" height="15" fill="rgb(233,70,48)" fg:x="188671" fg:w="67"/><text x="48.8937%" y="655.50"></text></g><g><title>path_lookupat (67 samples, 0.02%)</title><rect x="48.6437%" y="629" width="0.0173%" height="15" fill="rgb(238,41,26)" fg:x="188671" fg:w="67"/><text x="48.8937%" y="639.50"></text></g><g><title>[[falcon_kal]] (106 samples, 0.03%)</title><rect x="48.6391%" y="677" width="0.0273%" height="15" fill="rgb(241,19,31)" fg:x="188653" fg:w="106"/><text x="48.8891%" y="687.50"></text></g><g><title>user_path_at_empty (88 samples, 0.02%)</title><rect x="48.6437%" y="661" width="0.0227%" height="15" fill="rgb(214,76,10)" fg:x="188671" fg:w="88"/><text x="48.8937%" y="671.50"></text></g><g><title>_ZdlPv (40 samples, 0.01%)</title><rect x="48.6664%" y="677" width="0.0103%" height="15" fill="rgb(254,202,22)" fg:x="188759" fg:w="40"/><text x="48.9164%" y="687.50"></text></g><g><title>[[falcon_kal]] (46 samples, 0.01%)</title><rect x="48.6796%" y="661" width="0.0119%" height="15" fill="rgb(214,72,24)" fg:x="188810" fg:w="46"/><text x="48.9296%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (74 samples, 0.02%)</title><rect x="48.6778%" y="677" width="0.0191%" height="15" fill="rgb(221,92,46)" fg:x="188803" fg:w="74"/><text x="48.9278%" y="687.50"></text></g><g><title>cshook_systemcalltable_post_mkdir (266 samples, 0.07%)</title><rect x="48.6332%" y="725" width="0.0686%" height="15" fill="rgb(246,13,50)" fg:x="188630" fg:w="266"/><text x="48.8832%" y="735.50"></text></g><g><title>fshook_syscalltable_pre_lchown (252 samples, 0.06%)</title><rect x="48.6368%" y="709" width="0.0650%" height="15" fill="rgb(240,165,38)" fg:x="188644" fg:w="252"/><text x="48.8868%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (248 samples, 0.06%)</title><rect x="48.6378%" y="693" width="0.0639%" height="15" fill="rgb(241,24,51)" fg:x="188648" fg:w="248"/><text x="48.8878%" y="703.50"></text></g><g><title>do_syscall_64 (1,416 samples, 0.37%)</title><rect x="48.3379%" y="757" width="0.3651%" height="15" fill="rgb(227,51,44)" fg:x="187485" fg:w="1416"/><text x="48.5879%" y="767.50"></text></g><g><title>unload_network_ops_symbols (1,399 samples, 0.36%)</title><rect x="48.3423%" y="741" width="0.3607%" height="15" fill="rgb(231,121,3)" fg:x="187502" fg:w="1399"/><text x="48.5923%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,422 samples, 0.37%)</title><rect x="48.3369%" y="773" width="0.3666%" height="15" fill="rgb(245,3,41)" fg:x="187481" fg:w="1422"/><text x="48.5869%" y="783.50"></text></g><g><title>__GI_mkdir (1,433 samples, 0.37%)</title><rect x="48.3351%" y="789" width="0.3695%" height="15" fill="rgb(214,13,26)" fg:x="187474" fg:w="1433"/><text x="48.5851%" y="799.50"></text></g><g><title>__entry_text_start (124 samples, 0.03%)</title><rect x="48.7309%" y="773" width="0.0320%" height="15" fill="rgb(252,75,11)" fg:x="189009" fg:w="124"/><text x="48.9809%" y="783.50"></text></g><g><title>btrfs_update_time (40 samples, 0.01%)</title><rect x="48.8159%" y="709" width="0.0103%" height="15" fill="rgb(218,226,17)" fg:x="189339" fg:w="40"/><text x="49.0659%" y="719.50"></text></g><g><title>__cond_resched (42 samples, 0.01%)</title><rect x="48.8585%" y="677" width="0.0108%" height="15" fill="rgb(248,89,38)" fg:x="189504" fg:w="42"/><text x="49.1085%" y="687.50"></text></g><g><title>_raw_spin_lock (49 samples, 0.01%)</title><rect x="48.8698%" y="677" width="0.0126%" height="15" fill="rgb(237,73,46)" fg:x="189548" fg:w="49"/><text x="49.1198%" y="687.50"></text></g><g><title>btrfs_dentry_delete (280 samples, 0.07%)</title><rect x="48.8825%" y="677" width="0.0722%" height="15" fill="rgb(242,78,33)" fg:x="189597" fg:w="280"/><text x="49.1325%" y="687.50"></text></g><g><title>dput (443 samples, 0.11%)</title><rect x="48.8466%" y="693" width="0.1142%" height="15" fill="rgb(235,60,3)" fg:x="189458" fg:w="443"/><text x="49.0966%" y="703.50"></text></g><g><title>path_put (540 samples, 0.14%)</title><rect x="48.8343%" y="709" width="0.1392%" height="15" fill="rgb(216,172,19)" fg:x="189410" fg:w="540"/><text x="49.0843%" y="719.50"></text></g><g><title>current_time (53 samples, 0.01%)</title><rect x="49.0240%" y="677" width="0.0137%" height="15" fill="rgb(227,6,42)" fg:x="190146" fg:w="53"/><text x="49.2740%" y="687.50"></text></g><g><title>atime_needs_update (190 samples, 0.05%)</title><rect x="48.9897%" y="693" width="0.0490%" height="15" fill="rgb(223,207,42)" fg:x="190013" fg:w="190"/><text x="49.2397%" y="703.50"></text></g><g><title>btrfs_balance_delayed_items (55 samples, 0.01%)</title><rect x="49.0459%" y="661" width="0.0142%" height="15" fill="rgb(246,138,30)" fg:x="190231" fg:w="55"/><text x="49.2959%" y="671.50"></text></g><g><title>__btrfs_end_transaction (40 samples, 0.01%)</title><rect x="49.0606%" y="645" width="0.0103%" height="15" fill="rgb(251,199,47)" fg:x="190288" fg:w="40"/><text x="49.3106%" y="655.50"></text></g><g><title>btrfs_end_transaction (43 samples, 0.01%)</title><rect x="49.0606%" y="661" width="0.0111%" height="15" fill="rgb(228,218,44)" fg:x="190288" fg:w="43"/><text x="49.3106%" y="671.50"></text></g><g><title>btrfs_join_transaction (92 samples, 0.02%)</title><rect x="49.0717%" y="661" width="0.0237%" height="15" fill="rgb(220,68,6)" fg:x="190331" fg:w="92"/><text x="49.3217%" y="671.50"></text></g><g><title>start_transaction (82 samples, 0.02%)</title><rect x="49.0743%" y="645" width="0.0211%" height="15" fill="rgb(240,60,26)" fg:x="190341" fg:w="82"/><text x="49.3243%" y="655.50"></text></g><g><title>need_preemptive_reclaim (47 samples, 0.01%)</title><rect x="49.1259%" y="581" width="0.0121%" height="15" fill="rgb(211,200,19)" fg:x="190541" fg:w="47"/><text x="49.3759%" y="591.50"></text></g><g><title>__reserve_bytes (107 samples, 0.03%)</title><rect x="49.1189%" y="597" width="0.0276%" height="15" fill="rgb(242,145,30)" fg:x="190514" fg:w="107"/><text x="49.3689%" y="607.50"></text></g><g><title>btrfs_block_rsv_add (136 samples, 0.04%)</title><rect x="49.1153%" y="629" width="0.0351%" height="15" fill="rgb(225,64,13)" fg:x="190500" fg:w="136"/><text x="49.3653%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (133 samples, 0.03%)</title><rect x="49.1161%" y="613" width="0.0343%" height="15" fill="rgb(218,103,35)" fg:x="190503" fg:w="133"/><text x="49.3661%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (41 samples, 0.01%)</title><rect x="49.1514%" y="629" width="0.0106%" height="15" fill="rgb(216,93,46)" fg:x="190640" fg:w="41"/><text x="49.4014%" y="639.50"></text></g><g><title>btrfs_get_delayed_node (39 samples, 0.01%)</title><rect x="49.1519%" y="613" width="0.0101%" height="15" fill="rgb(225,159,27)" fg:x="190642" fg:w="39"/><text x="49.4019%" y="623.50"></text></g><g><title>fill_stack_inode_item (40 samples, 0.01%)</title><rect x="49.1630%" y="629" width="0.0103%" height="15" fill="rgb(225,204,11)" fg:x="190685" fg:w="40"/><text x="49.4130%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (298 samples, 0.08%)</title><rect x="49.1003%" y="645" width="0.0768%" height="15" fill="rgb(205,56,4)" fg:x="190442" fg:w="298"/><text x="49.3503%" y="655.50"></text></g><g><title>btrfs_update_inode (349 samples, 0.09%)</title><rect x="49.0954%" y="661" width="0.0900%" height="15" fill="rgb(206,6,35)" fg:x="190423" fg:w="349"/><text x="49.3454%" y="671.50"></text></g><g><title>btrfs_dirty_inode (581 samples, 0.15%)</title><rect x="49.0395%" y="677" width="0.1498%" height="15" fill="rgb(247,73,52)" fg:x="190206" fg:w="581"/><text x="49.2895%" y="687.50"></text></g><g><title>btrfs_update_time (583 samples, 0.15%)</title><rect x="49.0392%" y="693" width="0.1503%" height="15" fill="rgb(246,97,4)" fg:x="190205" fg:w="583"/><text x="49.2892%" y="703.50"></text></g><g><title>touch_atime (803 samples, 0.21%)</title><rect x="48.9828%" y="709" width="0.2070%" height="15" fill="rgb(212,37,15)" fg:x="189986" fg:w="803"/><text x="49.2328%" y="719.50"></text></g><g><title>__legitimize_mnt (88 samples, 0.02%)</title><rect x="49.2599%" y="613" width="0.0227%" height="15" fill="rgb(208,130,40)" fg:x="191061" fg:w="88"/><text x="49.5099%" y="623.50"></text></g><g><title>__legitimize_path (159 samples, 0.04%)</title><rect x="49.2561%" y="629" width="0.0410%" height="15" fill="rgb(236,55,29)" fg:x="191046" fg:w="159"/><text x="49.5061%" y="639.50"></text></g><g><title>lockref_get_not_dead (56 samples, 0.01%)</title><rect x="49.2826%" y="613" width="0.0144%" height="15" fill="rgb(209,156,45)" fg:x="191149" fg:w="56"/><text x="49.5326%" y="623.50"></text></g><g><title>complete_walk (263 samples, 0.07%)</title><rect x="49.2339%" y="661" width="0.0678%" height="15" fill="rgb(249,107,4)" fg:x="190960" fg:w="263"/><text x="49.4839%" y="671.50"></text></g><g><title>try_to_unlazy (221 samples, 0.06%)</title><rect x="49.2447%" y="645" width="0.0570%" height="15" fill="rgb(227,7,13)" fg:x="191002" fg:w="221"/><text x="49.4947%" y="655.50"></text></g><g><title>inode_permission (62 samples, 0.02%)</title><rect x="49.3043%" y="661" width="0.0160%" height="15" fill="rgb(250,129,14)" fg:x="191233" fg:w="62"/><text x="49.5543%" y="671.50"></text></g><g><title>btrfs_permission (132 samples, 0.03%)</title><rect x="49.7361%" y="645" width="0.0340%" height="15" fill="rgb(229,92,13)" fg:x="192908" fg:w="132"/><text x="49.9861%" y="655.50"></text></g><g><title>generic_permission (391 samples, 0.10%)</title><rect x="50.0697%" y="613" width="0.1008%" height="15" fill="rgb(245,98,39)" fg:x="194202" fg:w="391"/><text x="50.3197%" y="623.50"></text></g><g><title>btrfs_permission (422 samples, 0.11%)</title><rect x="50.0630%" y="629" width="0.1088%" height="15" fill="rgb(234,135,48)" fg:x="194176" fg:w="422"/><text x="50.3130%" y="639.50"></text></g><g><title>generic_permission (121 samples, 0.03%)</title><rect x="50.1718%" y="629" width="0.0312%" height="15" fill="rgb(230,98,28)" fg:x="194598" fg:w="121"/><text x="50.4218%" y="639.50"></text></g><g><title>inode_permission (1,895 samples, 0.49%)</title><rect x="49.7712%" y="645" width="0.4886%" height="15" fill="rgb(223,121,0)" fg:x="193044" fg:w="1895"/><text x="50.0212%" y="655.50"></text></g><g><title>security_inode_permission (215 samples, 0.06%)</title><rect x="50.2043%" y="629" width="0.0554%" height="15" fill="rgb(234,173,33)" fg:x="194724" fg:w="215"/><text x="50.4543%" y="639.50"></text></g><g><title>lookup_fast (55 samples, 0.01%)</title><rect x="50.2598%" y="645" width="0.0142%" height="15" fill="rgb(245,47,8)" fg:x="194939" fg:w="55"/><text x="50.5098%" y="655.50"></text></g><g><title>security_inode_permission (54 samples, 0.01%)</title><rect x="50.2739%" y="645" width="0.0139%" height="15" fill="rgb(205,17,20)" fg:x="194994" fg:w="54"/><text x="50.5239%" y="655.50"></text></g><g><title>step_into (47 samples, 0.01%)</title><rect x="50.2879%" y="645" width="0.0121%" height="15" fill="rgb(232,151,16)" fg:x="195048" fg:w="47"/><text x="50.5379%" y="655.50"></text></g><g><title>__d_lookup_rcu (71 samples, 0.02%)</title><rect x="50.4163%" y="629" width="0.0183%" height="15" fill="rgb(208,30,32)" fg:x="195546" fg:w="71"/><text x="50.6663%" y="639.50"></text></g><g><title>__d_lookup_rcu (2,092 samples, 0.54%)</title><rect x="50.5390%" y="613" width="0.5394%" height="15" fill="rgb(254,26,3)" fg:x="196022" fg:w="2092"/><text x="50.7890%" y="623.50"></text></g><g><title>lookup_fast (2,498 samples, 0.64%)</title><rect x="50.4369%" y="629" width="0.6440%" height="15" fill="rgb(240,177,30)" fg:x="195626" fg:w="2498"/><text x="50.6869%" y="639.50"></text></g><g><title>__lookup_mnt (111 samples, 0.03%)</title><rect x="51.2194%" y="613" width="0.0286%" height="15" fill="rgb(248,76,44)" fg:x="198661" fg:w="111"/><text x="51.4694%" y="623.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (7,483 samples, 1.93%)</title><rect x="49.3202%" y="661" width="1.9293%" height="15" fill="rgb(241,186,54)" fg:x="191295" fg:w="7483"/><text x="49.5702%" y="671.50">l..</text></g><g><title>walk_component (3,683 samples, 0.95%)</title><rect x="50.3000%" y="645" width="0.9496%" height="15" fill="rgb(249,171,29)" fg:x="195095" fg:w="3683"/><text x="50.5500%" y="655.50"></text></g><g><title>step_into (653 samples, 0.17%)</title><rect x="51.0812%" y="629" width="0.1684%" height="15" fill="rgb(237,151,44)" fg:x="198125" fg:w="653"/><text x="51.3312%" y="639.50"></text></g><g><title>nd_jump_root (158 samples, 0.04%)</title><rect x="51.2671%" y="645" width="0.0407%" height="15" fill="rgb(228,174,30)" fg:x="198846" fg:w="158"/><text x="51.5171%" y="655.50"></text></g><g><title>set_root (141 samples, 0.04%)</title><rect x="51.2715%" y="629" width="0.0364%" height="15" fill="rgb(252,14,37)" fg:x="198863" fg:w="141"/><text x="51.5215%" y="639.50"></text></g><g><title>path_init (213 samples, 0.05%)</title><rect x="51.2544%" y="661" width="0.0549%" height="15" fill="rgb(207,111,40)" fg:x="198797" fg:w="213"/><text x="51.5044%" y="671.50"></text></g><g><title>terminate_walk (47 samples, 0.01%)</title><rect x="51.3101%" y="661" width="0.0121%" height="15" fill="rgb(248,171,54)" fg:x="199013" fg:w="47"/><text x="51.5601%" y="671.50"></text></g><g><title>lookup_fast (777 samples, 0.20%)</title><rect x="51.3522%" y="645" width="0.2003%" height="15" fill="rgb(211,127,2)" fg:x="199176" fg:w="777"/><text x="51.6022%" y="655.50"></text></g><g><title>__d_lookup_rcu (746 samples, 0.19%)</title><rect x="51.3601%" y="629" width="0.1923%" height="15" fill="rgb(236,87,47)" fg:x="199207" fg:w="746"/><text x="51.6101%" y="639.50"></text></g><g><title>path_lookupat (9,069 samples, 2.34%)</title><rect x="49.2218%" y="677" width="2.3382%" height="15" fill="rgb(223,190,45)" fg:x="190913" fg:w="9069"/><text x="49.4718%" y="687.50">p..</text></g><g><title>walk_component (919 samples, 0.24%)</title><rect x="51.3230%" y="661" width="0.2369%" height="15" fill="rgb(215,5,16)" fg:x="199063" fg:w="919"/><text x="51.5730%" y="671.50"></text></g><g><title>filename_lookup (9,190 samples, 2.37%)</title><rect x="49.1939%" y="693" width="2.3694%" height="15" fill="rgb(252,82,33)" fg:x="190805" fg:w="9190"/><text x="49.4439%" y="703.50">fi..</text></g><g><title>kmem_cache_alloc (204 samples, 0.05%)</title><rect x="51.5922%" y="661" width="0.0526%" height="15" fill="rgb(247,213,44)" fg:x="200107" fg:w="204"/><text x="51.8422%" y="671.50"></text></g><g><title>memset_erms (477 samples, 0.12%)</title><rect x="51.6461%" y="661" width="0.1230%" height="15" fill="rgb(205,196,44)" fg:x="200316" fg:w="477"/><text x="51.8961%" y="671.50"></text></g><g><title>__check_heap_object (85 samples, 0.02%)</title><rect x="51.8838%" y="613" width="0.0219%" height="15" fill="rgb(237,96,54)" fg:x="201238" fg:w="85"/><text x="52.1338%" y="623.50"></text></g><g><title>__virt_addr_valid (135 samples, 0.03%)</title><rect x="51.9057%" y="613" width="0.0348%" height="15" fill="rgb(230,113,34)" fg:x="201323" fg:w="135"/><text x="52.1557%" y="623.50"></text></g><g><title>__check_object_size.part.0 (294 samples, 0.08%)</title><rect x="51.8652%" y="629" width="0.0758%" height="15" fill="rgb(221,224,12)" fg:x="201166" fg:w="294"/><text x="52.1152%" y="639.50"></text></g><g><title>__virt_addr_valid (61 samples, 0.02%)</title><rect x="51.9410%" y="629" width="0.0157%" height="15" fill="rgb(219,112,44)" fg:x="201460" fg:w="61"/><text x="52.1910%" y="639.50"></text></g><g><title>__check_object_size (380 samples, 0.10%)</title><rect x="51.8644%" y="645" width="0.0980%" height="15" fill="rgb(210,31,13)" fg:x="201163" fg:w="380"/><text x="52.1144%" y="655.50"></text></g><g><title>getname_flags.part.0 (1,516 samples, 0.39%)</title><rect x="51.5721%" y="677" width="0.3909%" height="15" fill="rgb(230,25,16)" fg:x="200029" fg:w="1516"/><text x="51.8221%" y="687.50"></text></g><g><title>strncpy_from_user (751 samples, 0.19%)</title><rect x="51.7693%" y="661" width="0.1936%" height="15" fill="rgb(246,108,53)" fg:x="200794" fg:w="751"/><text x="52.0193%" y="671.50"></text></g><g><title>getname_flags (1,523 samples, 0.39%)</title><rect x="51.5721%" y="693" width="0.3927%" height="15" fill="rgb(241,172,50)" fg:x="200029" fg:w="1523"/><text x="51.8221%" y="703.50"></text></g><g><title>memcg_slab_free_hook (43 samples, 0.01%)</title><rect x="52.0199%" y="661" width="0.0111%" height="15" fill="rgb(235,141,10)" fg:x="201766" fg:w="43"/><text x="52.2699%" y="671.50"></text></g><g><title>kmem_cache_free (269 samples, 0.07%)</title><rect x="51.9751%" y="677" width="0.0694%" height="15" fill="rgb(220,174,43)" fg:x="201592" fg:w="269"/><text x="52.2251%" y="687.50"></text></g><g><title>slab_free_freelist_hook.constprop.0 (52 samples, 0.01%)</title><rect x="52.0310%" y="661" width="0.0134%" height="15" fill="rgb(215,181,40)" fg:x="201809" fg:w="52"/><text x="52.2810%" y="671.50"></text></g><g><title>user_path_at_empty (11,084 samples, 2.86%)</title><rect x="49.1898%" y="709" width="2.8577%" height="15" fill="rgb(230,97,2)" fg:x="190789" fg:w="11084"/><text x="49.4398%" y="719.50">us..</text></g><g><title>putname (309 samples, 0.08%)</title><rect x="51.9678%" y="693" width="0.0797%" height="15" fill="rgb(211,25,27)" fg:x="201564" fg:w="309"/><text x="52.2178%" y="703.50"></text></g><g><title>__check_object_size (82 samples, 0.02%)</title><rect x="52.1058%" y="693" width="0.0211%" height="15" fill="rgb(230,87,26)" fg:x="202099" fg:w="82"/><text x="52.3558%" y="703.50"></text></g><g><title>clear_page_erms (62 samples, 0.02%)</title><rect x="52.1929%" y="581" width="0.0160%" height="15" fill="rgb(227,160,17)" fg:x="202437" fg:w="62"/><text x="52.4429%" y="591.50"></text></g><g><title>get_page_from_freelist (120 samples, 0.03%)</title><rect x="52.1890%" y="597" width="0.0309%" height="15" fill="rgb(244,85,34)" fg:x="202422" fg:w="120"/><text x="52.4390%" y="607.50"></text></g><g><title>__alloc_pages (148 samples, 0.04%)</title><rect x="52.1831%" y="613" width="0.0382%" height="15" fill="rgb(207,70,0)" fg:x="202399" fg:w="148"/><text x="52.4331%" y="623.50"></text></g><g><title>__page_cache_alloc (176 samples, 0.05%)</title><rect x="52.1787%" y="645" width="0.0454%" height="15" fill="rgb(223,129,7)" fg:x="202382" fg:w="176"/><text x="52.4287%" y="655.50"></text></g><g><title>alloc_pages (163 samples, 0.04%)</title><rect x="52.1821%" y="629" width="0.0420%" height="15" fill="rgb(246,105,7)" fg:x="202395" fg:w="163"/><text x="52.4321%" y="639.50"></text></g><g><title>__mem_cgroup_charge (53 samples, 0.01%)</title><rect x="52.2331%" y="613" width="0.0137%" height="15" fill="rgb(215,154,42)" fg:x="202593" fg:w="53"/><text x="52.4831%" y="623.50"></text></g><g><title>__add_to_page_cache_locked (154 samples, 0.04%)</title><rect x="52.2262%" y="629" width="0.0397%" height="15" fill="rgb(220,215,30)" fg:x="202566" fg:w="154"/><text x="52.4762%" y="639.50"></text></g><g><title>lru_cache_add (58 samples, 0.01%)</title><rect x="52.2677%" y="629" width="0.0150%" height="15" fill="rgb(228,81,51)" fg:x="202727" fg:w="58"/><text x="52.5177%" y="639.50"></text></g><g><title>__pagevec_lru_add (53 samples, 0.01%)</title><rect x="52.2690%" y="613" width="0.0137%" height="15" fill="rgb(247,71,54)" fg:x="202732" fg:w="53"/><text x="52.5190%" y="623.50"></text></g><g><title>add_to_page_cache_lru (237 samples, 0.06%)</title><rect x="52.2241%" y="645" width="0.0611%" height="15" fill="rgb(234,176,34)" fg:x="202558" fg:w="237"/><text x="52.4741%" y="655.50"></text></g><g><title>__clear_extent_bit (121 samples, 0.03%)</title><rect x="52.3007%" y="613" width="0.0312%" height="15" fill="rgb(241,103,54)" fg:x="202855" fg:w="121"/><text x="52.5507%" y="623.50"></text></g><g><title>alloc_extent_map (42 samples, 0.01%)</title><rect x="52.3639%" y="597" width="0.0108%" height="15" fill="rgb(228,22,34)" fg:x="203100" fg:w="42"/><text x="52.6139%" y="607.50"></text></g><g><title>btrfs_extent_item_to_extent_map (39 samples, 0.01%)</title><rect x="52.3827%" y="597" width="0.0101%" height="15" fill="rgb(241,179,48)" fg:x="203173" fg:w="39"/><text x="52.6327%" y="607.50"></text></g><g><title>btrfs_free_path (42 samples, 0.01%)</title><rect x="52.3997%" y="597" width="0.0108%" height="15" fill="rgb(235,167,37)" fg:x="203239" fg:w="42"/><text x="52.6497%" y="607.50"></text></g><g><title>btrfs_get_8 (39 samples, 0.01%)</title><rect x="52.4126%" y="597" width="0.0101%" height="15" fill="rgb(213,109,30)" fg:x="203289" fg:w="39"/><text x="52.6626%" y="607.50"></text></g><g><title>btrfs_bin_search (161 samples, 0.04%)</title><rect x="52.4409%" y="565" width="0.0415%" height="15" fill="rgb(222,172,16)" fg:x="203399" fg:w="161"/><text x="52.6909%" y="575.50"></text></g><g><title>generic_bin_search.constprop.0 (156 samples, 0.04%)</title><rect x="52.4422%" y="549" width="0.0402%" height="15" fill="rgb(233,192,5)" fg:x="203404" fg:w="156"/><text x="52.6922%" y="559.50"></text></g><g><title>btrfs_buffer_uptodate (39 samples, 0.01%)</title><rect x="52.5106%" y="549" width="0.0101%" height="15" fill="rgb(247,189,41)" fg:x="203669" fg:w="39"/><text x="52.7606%" y="559.50"></text></g><g><title>find_extent_buffer_nolock (143 samples, 0.04%)</title><rect x="52.5428%" y="533" width="0.0369%" height="15" fill="rgb(218,134,47)" fg:x="203794" fg:w="143"/><text x="52.7928%" y="543.50"></text></g><g><title>radix_tree_lookup (90 samples, 0.02%)</title><rect x="52.5564%" y="517" width="0.0232%" height="15" fill="rgb(216,29,3)" fg:x="203847" fg:w="90"/><text x="52.8064%" y="527.50"></text></g><g><title>__radix_tree_lookup (90 samples, 0.02%)</title><rect x="52.5564%" y="501" width="0.0232%" height="15" fill="rgb(246,140,12)" fg:x="203847" fg:w="90"/><text x="52.8064%" y="511.50"></text></g><g><title>mark_page_accessed (48 samples, 0.01%)</title><rect x="52.5796%" y="533" width="0.0124%" height="15" fill="rgb(230,136,11)" fg:x="203937" fg:w="48"/><text x="52.8296%" y="543.50"></text></g><g><title>find_extent_buffer (209 samples, 0.05%)</title><rect x="52.5397%" y="549" width="0.0539%" height="15" fill="rgb(247,22,47)" fg:x="203782" fg:w="209"/><text x="52.7897%" y="559.50"></text></g><g><title>read_block_for_search (346 samples, 0.09%)</title><rect x="52.5067%" y="565" width="0.0892%" height="15" fill="rgb(218,84,22)" fg:x="203654" fg:w="346"/><text x="52.7567%" y="575.50"></text></g><g><title>btrfs_search_slot (719 samples, 0.19%)</title><rect x="52.4239%" y="581" width="0.1854%" height="15" fill="rgb(216,87,39)" fg:x="203333" fg:w="719"/><text x="52.6739%" y="591.50"></text></g><g><title>btrfs_lookup_file_extent (733 samples, 0.19%)</title><rect x="52.4226%" y="597" width="0.1890%" height="15" fill="rgb(221,178,8)" fg:x="203328" fg:w="733"/><text x="52.6726%" y="607.50"></text></g><g><title>free_extent_buffer (51 samples, 0.01%)</title><rect x="52.6160%" y="581" width="0.0131%" height="15" fill="rgb(230,42,11)" fg:x="204078" fg:w="51"/><text x="52.8660%" y="591.50"></text></g><g><title>btrfs_release_path (70 samples, 0.02%)</title><rect x="52.6116%" y="597" width="0.0180%" height="15" fill="rgb(237,229,4)" fg:x="204061" fg:w="70"/><text x="52.8616%" y="607.50"></text></g><g><title>read_extent_buffer (58 samples, 0.01%)</title><rect x="52.6343%" y="597" width="0.0150%" height="15" fill="rgb(222,31,33)" fg:x="204149" fg:w="58"/><text x="52.8843%" y="607.50"></text></g><g><title>set_extent_bit (74 samples, 0.02%)</title><rect x="52.6493%" y="597" width="0.0191%" height="15" fill="rgb(210,17,39)" fg:x="204207" fg:w="74"/><text x="52.8993%" y="607.50"></text></g><g><title>btrfs_get_extent (1,266 samples, 0.33%)</title><rect x="52.3425%" y="613" width="0.3264%" height="15" fill="rgb(244,93,20)" fg:x="203017" fg:w="1266"/><text x="52.5925%" y="623.50"></text></g><g><title>btrfs_do_readpage (1,510 samples, 0.39%)</title><rect x="52.2875%" y="629" width="0.3893%" height="15" fill="rgb(210,40,47)" fg:x="202804" fg:w="1510"/><text x="52.5375%" y="639.50"></text></g><g><title>lock_extent_bits (84 samples, 0.02%)</title><rect x="52.6895%" y="613" width="0.0217%" height="15" fill="rgb(239,211,47)" fg:x="204363" fg:w="84"/><text x="52.9395%" y="623.50"></text></g><g><title>set_extent_bit (51 samples, 0.01%)</title><rect x="52.6980%" y="597" width="0.0131%" height="15" fill="rgb(251,223,49)" fg:x="204396" fg:w="51"/><text x="52.9480%" y="607.50"></text></g><g><title>btrfs_lock_and_flush_ordered_range (136 samples, 0.04%)</title><rect x="52.6771%" y="629" width="0.0351%" height="15" fill="rgb(221,149,5)" fg:x="204315" fg:w="136"/><text x="52.9271%" y="639.50"></text></g><g><title>btrfs_readpage (1,679 samples, 0.43%)</title><rect x="52.2868%" y="645" width="0.4329%" height="15" fill="rgb(219,224,51)" fg:x="202801" fg:w="1679"/><text x="52.5368%" y="655.50"></text></g><g><title>__activate_page.part.0 (63 samples, 0.02%)</title><rect x="52.7312%" y="597" width="0.0162%" height="15" fill="rgb(223,7,8)" fg:x="204525" fg:w="63"/><text x="52.9812%" y="607.50"></text></g><g><title>__activate_page (66 samples, 0.02%)</title><rect x="52.7310%" y="613" width="0.0170%" height="15" fill="rgb(241,217,22)" fg:x="204524" fg:w="66"/><text x="52.9810%" y="623.50"></text></g><g><title>pagevec_lru_move_fn (83 samples, 0.02%)</title><rect x="52.7292%" y="629" width="0.0214%" height="15" fill="rgb(248,209,0)" fg:x="204517" fg:w="83"/><text x="52.9792%" y="639.50"></text></g><g><title>workingset_activation (58 samples, 0.01%)</title><rect x="52.7508%" y="629" width="0.0150%" height="15" fill="rgb(217,205,4)" fg:x="204601" fg:w="58"/><text x="53.0008%" y="639.50"></text></g><g><title>workingset_age_nonresident (44 samples, 0.01%)</title><rect x="52.7545%" y="613" width="0.0113%" height="15" fill="rgb(228,124,39)" fg:x="204615" fg:w="44"/><text x="53.0045%" y="623.50"></text></g><g><title>mark_page_accessed (180 samples, 0.05%)</title><rect x="52.7196%" y="645" width="0.0464%" height="15" fill="rgb(250,116,42)" fg:x="204480" fg:w="180"/><text x="52.9696%" y="655.50"></text></g><g><title>xas_load (91 samples, 0.02%)</title><rect x="52.8470%" y="629" width="0.0235%" height="15" fill="rgb(223,202,9)" fg:x="204974" fg:w="91"/><text x="53.0970%" y="639.50"></text></g><g><title>xas_start (76 samples, 0.02%)</title><rect x="52.8509%" y="613" width="0.0196%" height="15" fill="rgb(242,222,40)" fg:x="204989" fg:w="76"/><text x="53.1009%" y="623.50"></text></g><g><title>pagecache_get_page (414 samples, 0.11%)</title><rect x="52.7661%" y="645" width="0.1067%" height="15" fill="rgb(229,99,46)" fg:x="204660" fg:w="414"/><text x="53.0161%" y="655.50"></text></g><g><title>do_read_cache_page (2,735 samples, 0.71%)</title><rect x="52.1715%" y="661" width="0.7051%" height="15" fill="rgb(225,56,46)" fg:x="202354" fg:w="2735"/><text x="52.4215%" y="671.50"></text></g><g><title>page_get_link (2,893 samples, 0.75%)</title><rect x="52.1318%" y="693" width="0.7459%" height="15" fill="rgb(227,94,5)" fg:x="202200" fg:w="2893"/><text x="52.3818%" y="703.50"></text></g><g><title>read_cache_page (2,749 samples, 0.71%)</title><rect x="52.1689%" y="677" width="0.7088%" height="15" fill="rgb(205,112,38)" fg:x="202344" fg:w="2749"/><text x="52.4189%" y="687.50"></text></g><g><title>read_cache_page (57 samples, 0.01%)</title><rect x="52.8867%" y="693" width="0.0147%" height="15" fill="rgb(231,133,46)" fg:x="205128" fg:w="57"/><text x="53.1367%" y="703.50"></text></g><g><title>__check_object_size.part.0 (155 samples, 0.04%)</title><rect x="52.9125%" y="661" width="0.0400%" height="15" fill="rgb(217,16,9)" fg:x="205228" fg:w="155"/><text x="53.1625%" y="671.50"></text></g><g><title>__virt_addr_valid (119 samples, 0.03%)</title><rect x="52.9218%" y="645" width="0.0307%" height="15" fill="rgb(249,173,9)" fg:x="205264" fg:w="119"/><text x="53.1718%" y="655.50"></text></g><g><title>__check_object_size (198 samples, 0.05%)</title><rect x="52.9125%" y="677" width="0.0510%" height="15" fill="rgb(205,163,53)" fg:x="205228" fg:w="198"/><text x="53.1625%" y="687.50"></text></g><g><title>readlink_copy (407 samples, 0.10%)</title><rect x="52.9014%" y="693" width="0.1049%" height="15" fill="rgb(217,54,41)" fg:x="205185" fg:w="407"/><text x="53.1514%" y="703.50"></text></g><g><title>copy_user_enhanced_fast_string (156 samples, 0.04%)</title><rect x="52.9661%" y="677" width="0.0402%" height="15" fill="rgb(228,216,12)" fg:x="205436" fg:w="156"/><text x="53.2161%" y="687.50"></text></g><g><title>do_readlinkat (17,141 samples, 4.42%)</title><rect x="48.7925%" y="725" width="4.4193%" height="15" fill="rgb(244,228,15)" fg:x="189248" fg:w="17141"/><text x="49.0425%" y="735.50">do_re..</text></g><g><title>vfs_readlink (4,516 samples, 1.16%)</title><rect x="52.0475%" y="709" width="1.1643%" height="15" fill="rgb(221,176,53)" fg:x="201873" fg:w="4516"/><text x="52.2975%" y="719.50"></text></g><g><title>strlen (797 samples, 0.21%)</title><rect x="53.0063%" y="693" width="0.2055%" height="15" fill="rgb(205,94,34)" fg:x="205592" fg:w="797"/><text x="53.2563%" y="703.50"></text></g><g><title>security_inode_readlink (376 samples, 0.10%)</title><rect x="53.2121%" y="725" width="0.0969%" height="15" fill="rgb(213,110,48)" fg:x="206390" fg:w="376"/><text x="53.4621%" y="735.50"></text></g><g><title>__x64_sys_readlink (17,533 samples, 4.52%)</title><rect x="48.7915%" y="741" width="4.5204%" height="15" fill="rgb(236,142,28)" fg:x="189244" fg:w="17533"/><text x="49.0415%" y="751.50">__x64..</text></g><g><title>fpregs_assert_state_consistent (44 samples, 0.01%)</title><rect x="53.3338%" y="709" width="0.0113%" height="15" fill="rgb(225,135,29)" fg:x="206862" fg:w="44"/><text x="53.5838%" y="719.50"></text></g><g><title>exit_to_user_mode_prepare (85 samples, 0.02%)</title><rect x="53.3242%" y="725" width="0.0219%" height="15" fill="rgb(252,45,31)" fg:x="206825" fg:w="85"/><text x="53.5742%" y="735.50"></text></g><g><title>do_syscall_64 (17,704 samples, 4.56%)</title><rect x="48.7835%" y="757" width="4.5645%" height="15" fill="rgb(211,187,50)" fg:x="189213" fg:w="17704"/><text x="49.0335%" y="767.50">do_sy..</text></g><g><title>syscall_exit_to_user_mode (97 samples, 0.03%)</title><rect x="53.3230%" y="741" width="0.0250%" height="15" fill="rgb(229,109,7)" fg:x="206820" fg:w="97"/><text x="53.5730%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (17,788 samples, 4.59%)</title><rect x="48.7644%" y="773" width="4.5862%" height="15" fill="rgb(251,131,51)" fg:x="189139" fg:w="17788"/><text x="49.0144%" y="783.50">entry..</text></g><g><title>__GI_readlink (18,083 samples, 4.66%)</title><rect x="48.7046%" y="789" width="4.6622%" height="15" fill="rgb(251,180,35)" fg:x="188907" fg:w="18083"/><text x="48.9546%" y="799.50">__GI_..</text></g><g><title>syscall_return_via_sysret (59 samples, 0.02%)</title><rect x="53.3516%" y="773" width="0.0152%" height="15" fill="rgb(211,46,32)" fg:x="206931" fg:w="59"/><text x="53.6016%" y="783.50"></text></g><g><title>btrfs_rmdir (44 samples, 0.01%)</title><rect x="53.3686%" y="645" width="0.0113%" height="15" fill="rgb(248,123,17)" fg:x="206997" fg:w="44"/><text x="53.6186%" y="655.50"></text></g><g><title>iput (39 samples, 0.01%)</title><rect x="53.3799%" y="645" width="0.0101%" height="15" fill="rgb(227,141,18)" fg:x="207041" fg:w="39"/><text x="53.6299%" y="655.50"></text></g><g><title>evict (39 samples, 0.01%)</title><rect x="53.3799%" y="629" width="0.0101%" height="15" fill="rgb(216,102,9)" fg:x="207041" fg:w="39"/><text x="53.6299%" y="639.50"></text></g><g><title>do_rmdir (92 samples, 0.02%)</title><rect x="53.3681%" y="677" width="0.0237%" height="15" fill="rgb(253,47,13)" fg:x="206995" fg:w="92"/><text x="53.6181%" y="687.50"></text></g><g><title>vfs_rmdir (90 samples, 0.02%)</title><rect x="53.3686%" y="661" width="0.0232%" height="15" fill="rgb(226,93,23)" fg:x="206997" fg:w="90"/><text x="53.6186%" y="671.50"></text></g><g><title>__GI_remove (97 samples, 0.03%)</title><rect x="53.3673%" y="773" width="0.0250%" height="15" fill="rgb(247,104,17)" fg:x="206992" fg:w="97"/><text x="53.6173%" y="783.50"></text></g><g><title>__GI___rmdir (96 samples, 0.02%)</title><rect x="53.3676%" y="757" width="0.0248%" height="15" fill="rgb(233,203,26)" fg:x="206993" fg:w="96"/><text x="53.6176%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (96 samples, 0.02%)</title><rect x="53.3676%" y="741" width="0.0248%" height="15" fill="rgb(244,98,49)" fg:x="206993" fg:w="96"/><text x="53.6176%" y="751.50"></text></g><g><title>do_syscall_64 (96 samples, 0.02%)</title><rect x="53.3676%" y="725" width="0.0248%" height="15" fill="rgb(235,134,22)" fg:x="206993" fg:w="96"/><text x="53.6176%" y="735.50"></text></g><g><title>unload_network_ops_symbols (95 samples, 0.02%)</title><rect x="53.3678%" y="709" width="0.0245%" height="15" fill="rgb(221,70,32)" fg:x="206994" fg:w="95"/><text x="53.6178%" y="719.50"></text></g><g><title>__x64_sys_rmdir (94 samples, 0.02%)</title><rect x="53.3681%" y="693" width="0.0242%" height="15" fill="rgb(238,15,50)" fg:x="206995" fg:w="94"/><text x="53.6181%" y="703.50"></text></g><g><title>do_unlinkat (72 samples, 0.02%)</title><rect x="53.3936%" y="693" width="0.0186%" height="15" fill="rgb(215,221,48)" fg:x="207094" fg:w="72"/><text x="53.6436%" y="703.50"></text></g><g><title>__x64_sys_unlink (74 samples, 0.02%)</title><rect x="53.3936%" y="709" width="0.0191%" height="15" fill="rgb(236,73,3)" fg:x="207094" fg:w="74"/><text x="53.6436%" y="719.50"></text></g><g><title>filename_lookup (42 samples, 0.01%)</title><rect x="53.4153%" y="613" width="0.0108%" height="15" fill="rgb(250,107,11)" fg:x="207178" fg:w="42"/><text x="53.6653%" y="623.50"></text></g><g><title>path_lookupat (42 samples, 0.01%)</title><rect x="53.4153%" y="597" width="0.0108%" height="15" fill="rgb(242,39,14)" fg:x="207178" fg:w="42"/><text x="53.6653%" y="607.50"></text></g><g><title>[[falcon_kal]] (46 samples, 0.01%)</title><rect x="53.4147%" y="645" width="0.0119%" height="15" fill="rgb(248,164,37)" fg:x="207176" fg:w="46"/><text x="53.6647%" y="655.50"></text></g><g><title>user_path_at_empty (44 samples, 0.01%)</title><rect x="53.4153%" y="629" width="0.0113%" height="15" fill="rgb(217,60,12)" fg:x="207178" fg:w="44"/><text x="53.6653%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_unlink (53 samples, 0.01%)</title><rect x="53.4137%" y="709" width="0.0137%" height="15" fill="rgb(240,125,29)" fg:x="207172" fg:w="53"/><text x="53.6637%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (53 samples, 0.01%)</title><rect x="53.4137%" y="693" width="0.0137%" height="15" fill="rgb(208,207,28)" fg:x="207172" fg:w="53"/><text x="53.6637%" y="703.50"></text></g><g><title>fshook_syscalltable_pre_lchown (50 samples, 0.01%)</title><rect x="53.4145%" y="677" width="0.0129%" height="15" fill="rgb(209,159,27)" fg:x="207175" fg:w="50"/><text x="53.6645%" y="687.50"></text></g><g><title>fshook_syscalltable_pre_lchown (49 samples, 0.01%)</title><rect x="53.4147%" y="661" width="0.0126%" height="15" fill="rgb(251,176,53)" fg:x="207176" fg:w="49"/><text x="53.6647%" y="671.50"></text></g><g><title>do_syscall_64 (135 samples, 0.03%)</title><rect x="53.3928%" y="741" width="0.0348%" height="15" fill="rgb(211,85,7)" fg:x="207091" fg:w="135"/><text x="53.6428%" y="751.50"></text></g><g><title>unload_network_ops_symbols (132 samples, 0.03%)</title><rect x="53.3936%" y="725" width="0.0340%" height="15" fill="rgb(216,64,54)" fg:x="207094" fg:w="132"/><text x="53.6436%" y="735.50"></text></g><g><title>__GI_remove (237 samples, 0.06%)</title><rect x="53.3668%" y="789" width="0.0611%" height="15" fill="rgb(217,54,24)" fg:x="206990" fg:w="237"/><text x="53.6168%" y="799.50"></text></g><g><title>__unlink (138 samples, 0.04%)</title><rect x="53.3923%" y="773" width="0.0356%" height="15" fill="rgb(208,206,53)" fg:x="207089" fg:w="138"/><text x="53.6423%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (136 samples, 0.04%)</title><rect x="53.3928%" y="757" width="0.0351%" height="15" fill="rgb(251,74,39)" fg:x="207091" fg:w="136"/><text x="53.6428%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (53 samples, 0.01%)</title><rect x="53.4552%" y="725" width="0.0137%" height="15" fill="rgb(226,47,5)" fg:x="207333" fg:w="53"/><text x="53.7052%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (60 samples, 0.02%)</title><rect x="53.4544%" y="741" width="0.0155%" height="15" fill="rgb(234,111,33)" fg:x="207330" fg:w="60"/><text x="53.7044%" y="751.50"></text></g><g><title>d_lru_add (68 samples, 0.02%)</title><rect x="53.4965%" y="677" width="0.0175%" height="15" fill="rgb(251,14,10)" fg:x="207493" fg:w="68"/><text x="53.7465%" y="687.50"></text></g><g><title>list_lru_add (47 samples, 0.01%)</title><rect x="53.5019%" y="661" width="0.0121%" height="15" fill="rgb(232,43,0)" fg:x="207514" fg:w="47"/><text x="53.7519%" y="671.50"></text></g><g><title>dput (106 samples, 0.03%)</title><rect x="53.4880%" y="693" width="0.0273%" height="15" fill="rgb(222,68,43)" fg:x="207460" fg:w="106"/><text x="53.7380%" y="703.50"></text></g><g><title>free_extent_buffer (66 samples, 0.02%)</title><rect x="53.5341%" y="597" width="0.0170%" height="15" fill="rgb(217,24,23)" fg:x="207639" fg:w="66"/><text x="53.7841%" y="607.50"></text></g><g><title>free_extent_buffer.part.0 (52 samples, 0.01%)</title><rect x="53.5377%" y="581" width="0.0134%" height="15" fill="rgb(229,209,14)" fg:x="207653" fg:w="52"/><text x="53.7877%" y="591.50"></text></g><g><title>btrfs_release_path (74 samples, 0.02%)</title><rect x="53.5331%" y="613" width="0.0191%" height="15" fill="rgb(250,149,48)" fg:x="207635" fg:w="74"/><text x="53.7831%" y="623.50"></text></g><g><title>btrfs_free_path (103 samples, 0.03%)</title><rect x="53.5328%" y="629" width="0.0266%" height="15" fill="rgb(210,120,37)" fg:x="207634" fg:w="103"/><text x="53.7828%" y="639.50"></text></g><g><title>btrfs_bin_search (177 samples, 0.05%)</title><rect x="53.5803%" y="597" width="0.0456%" height="15" fill="rgb(210,21,8)" fg:x="207818" fg:w="177"/><text x="53.8303%" y="607.50"></text></g><g><title>generic_bin_search.constprop.0 (171 samples, 0.04%)</title><rect x="53.5818%" y="581" width="0.0441%" height="15" fill="rgb(243,145,7)" fg:x="207824" fg:w="171"/><text x="53.8318%" y="591.50"></text></g><g><title>btrfs_root_node (42 samples, 0.01%)</title><rect x="53.6349%" y="581" width="0.0108%" height="15" fill="rgb(238,178,32)" fg:x="208030" fg:w="42"/><text x="53.8849%" y="591.50"></text></g><g><title>btrfs_read_lock_root_node (68 samples, 0.02%)</title><rect x="53.6285%" y="597" width="0.0175%" height="15" fill="rgb(222,4,10)" fg:x="208005" fg:w="68"/><text x="53.8785%" y="607.50"></text></g><g><title>dequeue_task_fair (42 samples, 0.01%)</title><rect x="53.6635%" y="485" width="0.0108%" height="15" fill="rgb(239,7,37)" fg:x="208141" fg:w="42"/><text x="53.9135%" y="495.50"></text></g><g><title>dequeue_task (44 samples, 0.01%)</title><rect x="53.6633%" y="501" width="0.0113%" height="15" fill="rgb(215,31,37)" fg:x="208140" fg:w="44"/><text x="53.9133%" y="511.50"></text></g><g><title>__schedule (137 samples, 0.04%)</title><rect x="53.6599%" y="517" width="0.0353%" height="15" fill="rgb(224,83,33)" fg:x="208127" fg:w="137"/><text x="53.9099%" y="527.50"></text></g><g><title>schedule (143 samples, 0.04%)</title><rect x="53.6592%" y="533" width="0.0369%" height="15" fill="rgb(239,55,3)" fg:x="208124" fg:w="143"/><text x="53.9092%" y="543.50"></text></g><g><title>rwsem_down_read_slowpath (164 samples, 0.04%)</title><rect x="53.6540%" y="549" width="0.0423%" height="15" fill="rgb(247,92,11)" fg:x="208104" fg:w="164"/><text x="53.9040%" y="559.50"></text></g><g><title>__btrfs_tree_read_lock (196 samples, 0.05%)</title><rect x="53.6460%" y="581" width="0.0505%" height="15" fill="rgb(239,200,7)" fg:x="208073" fg:w="196"/><text x="53.8960%" y="591.50"></text></g><g><title>down_read (190 samples, 0.05%)</title><rect x="53.6476%" y="565" width="0.0490%" height="15" fill="rgb(227,115,8)" fg:x="208079" fg:w="190"/><text x="53.8976%" y="575.50"></text></g><g><title>btrfs_tree_read_lock (197 samples, 0.05%)</title><rect x="53.6460%" y="597" width="0.0508%" height="15" fill="rgb(215,189,27)" fg:x="208073" fg:w="197"/><text x="53.8960%" y="607.50"></text></g><g><title>find_extent_buffer_nolock (154 samples, 0.04%)</title><rect x="53.7414%" y="565" width="0.0397%" height="15" fill="rgb(251,216,39)" fg:x="208443" fg:w="154"/><text x="53.9914%" y="575.50"></text></g><g><title>radix_tree_lookup (88 samples, 0.02%)</title><rect x="53.7584%" y="549" width="0.0227%" height="15" fill="rgb(207,29,47)" fg:x="208509" fg:w="88"/><text x="54.0084%" y="559.50"></text></g><g><title>__radix_tree_lookup (88 samples, 0.02%)</title><rect x="53.7584%" y="533" width="0.0227%" height="15" fill="rgb(210,71,34)" fg:x="208509" fg:w="88"/><text x="54.0084%" y="543.50"></text></g><g><title>mark_page_accessed (45 samples, 0.01%)</title><rect x="53.7811%" y="565" width="0.0116%" height="15" fill="rgb(253,217,51)" fg:x="208597" fg:w="45"/><text x="54.0311%" y="575.50"></text></g><g><title>find_extent_buffer (222 samples, 0.06%)</title><rect x="53.7360%" y="581" width="0.0572%" height="15" fill="rgb(222,117,46)" fg:x="208422" fg:w="222"/><text x="53.9860%" y="591.50"></text></g><g><title>read_block_for_search (340 samples, 0.09%)</title><rect x="53.7076%" y="597" width="0.0877%" height="15" fill="rgb(226,132,6)" fg:x="208312" fg:w="340"/><text x="53.9576%" y="607.50"></text></g><g><title>btrfs_search_slot (938 samples, 0.24%)</title><rect x="53.5658%" y="613" width="0.2418%" height="15" fill="rgb(254,145,51)" fg:x="207762" fg:w="938"/><text x="53.8158%" y="623.50"></text></g><g><title>btrfs_lookup_dir_item (1,006 samples, 0.26%)</title><rect x="53.5594%" y="629" width="0.2594%" height="15" fill="rgb(231,199,27)" fg:x="207737" fg:w="1006"/><text x="53.8094%" y="639.50"></text></g><g><title>btrfs_lookup_dentry (1,160 samples, 0.30%)</title><rect x="53.5210%" y="645" width="0.2991%" height="15" fill="rgb(245,158,14)" fg:x="207588" fg:w="1160"/><text x="53.7710%" y="655.50"></text></g><g><title>btrfs_lookup (1,195 samples, 0.31%)</title><rect x="53.5184%" y="661" width="0.3081%" height="15" fill="rgb(240,113,14)" fg:x="207578" fg:w="1195"/><text x="53.7684%" y="671.50"></text></g><g><title>kmem_cache_alloc (78 samples, 0.02%)</title><rect x="53.8352%" y="629" width="0.0201%" height="15" fill="rgb(210,20,13)" fg:x="208807" fg:w="78"/><text x="54.0852%" y="639.50"></text></g><g><title>__d_alloc (107 samples, 0.03%)</title><rect x="53.8283%" y="645" width="0.0276%" height="15" fill="rgb(241,144,13)" fg:x="208780" fg:w="107"/><text x="54.0783%" y="655.50"></text></g><g><title>d_alloc (124 samples, 0.03%)</title><rect x="53.8278%" y="661" width="0.0320%" height="15" fill="rgb(235,43,34)" fg:x="208778" fg:w="124"/><text x="54.0778%" y="671.50"></text></g><g><title>__lookup_hash (1,381 samples, 0.36%)</title><rect x="53.5176%" y="677" width="0.3561%" height="15" fill="rgb(208,36,20)" fg:x="207575" fg:w="1381"/><text x="53.7676%" y="687.50"></text></g><g><title>lookup_dcache (41 samples, 0.01%)</title><rect x="53.8631%" y="661" width="0.0106%" height="15" fill="rgb(239,204,10)" fg:x="208915" fg:w="41"/><text x="54.1131%" y="671.50"></text></g><g><title>complete_walk (42 samples, 0.01%)</title><rect x="53.8853%" y="645" width="0.0108%" height="15" fill="rgb(217,84,43)" fg:x="209001" fg:w="42"/><text x="54.1353%" y="655.50"></text></g><g><title>btrfs_permission (45 samples, 0.01%)</title><rect x="53.9660%" y="613" width="0.0116%" height="15" fill="rgb(241,170,50)" fg:x="209314" fg:w="45"/><text x="54.2160%" y="623.50"></text></g><g><title>inode_permission (222 samples, 0.06%)</title><rect x="53.9306%" y="629" width="0.0572%" height="15" fill="rgb(226,205,29)" fg:x="209177" fg:w="222"/><text x="54.1806%" y="639.50"></text></g><g><title>lookup_fast (284 samples, 0.07%)</title><rect x="54.0033%" y="613" width="0.0732%" height="15" fill="rgb(233,113,1)" fg:x="209459" fg:w="284"/><text x="54.2533%" y="623.50"></text></g><g><title>__d_lookup_rcu (250 samples, 0.06%)</title><rect x="54.0121%" y="597" width="0.0645%" height="15" fill="rgb(253,98,13)" fg:x="209493" fg:w="250"/><text x="54.2621%" y="607.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (752 samples, 0.19%)</title><rect x="53.8987%" y="645" width="0.1939%" height="15" fill="rgb(211,115,12)" fg:x="209053" fg:w="752"/><text x="54.1487%" y="655.50"></text></g><g><title>walk_component (389 samples, 0.10%)</title><rect x="53.9923%" y="629" width="0.1003%" height="15" fill="rgb(208,12,16)" fg:x="209416" fg:w="389"/><text x="54.2423%" y="639.50"></text></g><g><title>step_into (62 samples, 0.02%)</title><rect x="54.0766%" y="613" width="0.0160%" height="15" fill="rgb(237,193,54)" fg:x="209743" fg:w="62"/><text x="54.3266%" y="623.50"></text></g><g><title>path_parentat (874 samples, 0.23%)</title><rect x="53.8847%" y="661" width="0.2253%" height="15" fill="rgb(243,22,42)" fg:x="208999" fg:w="874"/><text x="54.1347%" y="671.50"></text></g><g><title>filename_parentat (910 samples, 0.23%)</title><rect x="53.8762%" y="677" width="0.2346%" height="15" fill="rgb(233,151,36)" fg:x="208966" fg:w="910"/><text x="54.1262%" y="687.50"></text></g><g><title>filename_create (2,327 samples, 0.60%)</title><rect x="53.5153%" y="693" width="0.6000%" height="15" fill="rgb(237,57,45)" fg:x="207566" fg:w="2327"/><text x="53.7653%" y="703.50"></text></g><g><title>kmem_cache_free (48 samples, 0.01%)</title><rect x="54.1240%" y="677" width="0.0124%" height="15" fill="rgb(221,88,17)" fg:x="209927" fg:w="48"/><text x="54.3740%" y="687.50"></text></g><g><title>putname (56 samples, 0.01%)</title><rect x="54.1222%" y="693" width="0.0144%" height="15" fill="rgb(230,79,15)" fg:x="209920" fg:w="56"/><text x="54.3722%" y="703.50"></text></g><g><title>__btrfs_add_delayed_item (60 samples, 0.02%)</title><rect x="54.1934%" y="613" width="0.0155%" height="15" fill="rgb(213,57,13)" fg:x="210196" fg:w="60"/><text x="54.4434%" y="623.50"></text></g><g><title>__kmalloc (58 samples, 0.01%)</title><rect x="54.2155%" y="597" width="0.0150%" height="15" fill="rgb(222,116,39)" fg:x="210282" fg:w="58"/><text x="54.4655%" y="607.50"></text></g><g><title>btrfs_alloc_delayed_item (71 samples, 0.02%)</title><rect x="54.2148%" y="613" width="0.0183%" height="15" fill="rgb(245,107,2)" fg:x="210279" fg:w="71"/><text x="54.4648%" y="623.50"></text></g><g><title>btrfs_delayed_item_reserve_metadata.isra.0 (43 samples, 0.01%)</title><rect x="54.2336%" y="613" width="0.0111%" height="15" fill="rgb(238,1,10)" fg:x="210352" fg:w="43"/><text x="54.4836%" y="623.50"></text></g><g><title>btrfs_insert_delayed_dir_index (274 samples, 0.07%)</title><rect x="54.1895%" y="629" width="0.0706%" height="15" fill="rgb(249,4,48)" fg:x="210181" fg:w="274"/><text x="54.4395%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (53 samples, 0.01%)</title><rect x="54.2666%" y="597" width="0.0137%" height="15" fill="rgb(223,151,18)" fg:x="210480" fg:w="53"/><text x="54.5166%" y="607.50"></text></g><g><title>free_extent_buffer (59 samples, 0.02%)</title><rect x="54.2653%" y="613" width="0.0152%" height="15" fill="rgb(227,65,43)" fg:x="210475" fg:w="59"/><text x="54.5153%" y="623.50"></text></g><g><title>btrfs_release_path (72 samples, 0.02%)</title><rect x="54.2630%" y="629" width="0.0186%" height="15" fill="rgb(218,40,45)" fg:x="210466" fg:w="72"/><text x="54.5130%" y="639.50"></text></g><g><title>btrfs_get_token_32 (43 samples, 0.01%)</title><rect x="54.2980%" y="597" width="0.0111%" height="15" fill="rgb(252,121,31)" fg:x="210602" fg:w="43"/><text x="54.5480%" y="607.50"></text></g><g><title>btrfs_bin_search (155 samples, 0.04%)</title><rect x="54.3236%" y="581" width="0.0400%" height="15" fill="rgb(219,158,43)" fg:x="210701" fg:w="155"/><text x="54.5736%" y="591.50"></text></g><g><title>generic_bin_search.constprop.0 (153 samples, 0.04%)</title><rect x="54.3241%" y="565" width="0.0394%" height="15" fill="rgb(231,162,42)" fg:x="210703" fg:w="153"/><text x="54.5741%" y="575.50"></text></g><g><title>osq_lock (152 samples, 0.04%)</title><rect x="54.4187%" y="501" width="0.0392%" height="15" fill="rgb(217,179,25)" fg:x="211070" fg:w="152"/><text x="54.6687%" y="511.50"></text></g><g><title>rwsem_spin_on_owner (169 samples, 0.04%)</title><rect x="54.4600%" y="501" width="0.0436%" height="15" fill="rgb(206,212,31)" fg:x="211230" fg:w="169"/><text x="54.7100%" y="511.50"></text></g><g><title>rwsem_optimistic_spin (458 samples, 0.12%)</title><rect x="54.3862%" y="517" width="0.1181%" height="15" fill="rgb(235,144,12)" fg:x="210944" fg:w="458"/><text x="54.6362%" y="527.50"></text></g><g><title>__schedule (46 samples, 0.01%)</title><rect x="54.5043%" y="501" width="0.0119%" height="15" fill="rgb(213,51,10)" fg:x="211402" fg:w="46"/><text x="54.7543%" y="511.50"></text></g><g><title>schedule (47 samples, 0.01%)</title><rect x="54.5043%" y="517" width="0.0121%" height="15" fill="rgb(231,145,14)" fg:x="211402" fg:w="47"/><text x="54.7543%" y="527.50"></text></g><g><title>btrfs_tree_lock (534 samples, 0.14%)</title><rect x="54.3790%" y="581" width="0.1377%" height="15" fill="rgb(235,15,28)" fg:x="210916" fg:w="534"/><text x="54.6290%" y="591.50"></text></g><g><title>__btrfs_tree_lock (534 samples, 0.14%)</title><rect x="54.3790%" y="565" width="0.1377%" height="15" fill="rgb(237,206,10)" fg:x="210916" fg:w="534"/><text x="54.6290%" y="575.50"></text></g><g><title>down_write (528 samples, 0.14%)</title><rect x="54.3805%" y="549" width="0.1361%" height="15" fill="rgb(236,227,27)" fg:x="210922" fg:w="528"/><text x="54.6305%" y="559.50"></text></g><g><title>rwsem_down_write_slowpath (512 samples, 0.13%)</title><rect x="54.3847%" y="533" width="0.1320%" height="15" fill="rgb(246,83,35)" fg:x="210938" fg:w="512"/><text x="54.6347%" y="543.50"></text></g><g><title>radix_tree_lookup (73 samples, 0.02%)</title><rect x="54.5716%" y="533" width="0.0188%" height="15" fill="rgb(220,136,24)" fg:x="211663" fg:w="73"/><text x="54.8216%" y="543.50"></text></g><g><title>__radix_tree_lookup (72 samples, 0.02%)</title><rect x="54.5718%" y="517" width="0.0186%" height="15" fill="rgb(217,3,25)" fg:x="211664" fg:w="72"/><text x="54.8218%" y="527.50"></text></g><g><title>find_extent_buffer_nolock (118 samples, 0.03%)</title><rect x="54.5602%" y="549" width="0.0304%" height="15" fill="rgb(239,24,14)" fg:x="211619" fg:w="118"/><text x="54.8102%" y="559.50"></text></g><g><title>mark_page_accessed (41 samples, 0.01%)</title><rect x="54.5907%" y="549" width="0.0106%" height="15" fill="rgb(244,16,53)" fg:x="211737" fg:w="41"/><text x="54.8407%" y="559.50"></text></g><g><title>find_extent_buffer (185 samples, 0.05%)</title><rect x="54.5541%" y="565" width="0.0477%" height="15" fill="rgb(208,175,44)" fg:x="211595" fg:w="185"/><text x="54.8041%" y="575.50"></text></g><g><title>read_block_for_search (308 samples, 0.08%)</title><rect x="54.5241%" y="581" width="0.0794%" height="15" fill="rgb(252,18,48)" fg:x="211479" fg:w="308"/><text x="54.7741%" y="591.50"></text></g><g><title>__push_leaf_left (46 samples, 0.01%)</title><rect x="54.6128%" y="549" width="0.0119%" height="15" fill="rgb(234,199,32)" fg:x="211823" fg:w="46"/><text x="54.8628%" y="559.50"></text></g><g><title>push_leaf_left (58 samples, 0.01%)</title><rect x="54.6126%" y="565" width="0.0150%" height="15" fill="rgb(225,77,54)" fg:x="211822" fg:w="58"/><text x="54.8626%" y="575.50"></text></g><g><title>__push_leaf_right (63 samples, 0.02%)</title><rect x="54.6278%" y="549" width="0.0162%" height="15" fill="rgb(225,42,25)" fg:x="211881" fg:w="63"/><text x="54.8778%" y="559.50"></text></g><g><title>split_leaf (173 samples, 0.04%)</title><rect x="54.6036%" y="581" width="0.0446%" height="15" fill="rgb(242,227,46)" fg:x="211787" fg:w="173"/><text x="54.8536%" y="591.50"></text></g><g><title>push_leaf_right (80 samples, 0.02%)</title><rect x="54.6275%" y="565" width="0.0206%" height="15" fill="rgb(246,197,35)" fg:x="211880" fg:w="80"/><text x="54.8775%" y="575.50"></text></g><g><title>try_to_wake_up (98 samples, 0.03%)</title><rect x="54.6621%" y="501" width="0.0253%" height="15" fill="rgb(215,159,26)" fg:x="212014" fg:w="98"/><text x="54.9121%" y="511.50"></text></g><g><title>btrfs_tree_unlock (118 samples, 0.03%)</title><rect x="54.6572%" y="565" width="0.0304%" height="15" fill="rgb(212,194,50)" fg:x="211995" fg:w="118"/><text x="54.9072%" y="575.50"></text></g><g><title>up_write (112 samples, 0.03%)</title><rect x="54.6587%" y="549" width="0.0289%" height="15" fill="rgb(246,132,1)" fg:x="212001" fg:w="112"/><text x="54.9087%" y="559.50"></text></g><g><title>rwsem_wake.isra.0 (112 samples, 0.03%)</title><rect x="54.6587%" y="533" width="0.0289%" height="15" fill="rgb(217,71,7)" fg:x="212001" fg:w="112"/><text x="54.9087%" y="543.50"></text></g><g><title>wake_up_q (100 samples, 0.03%)</title><rect x="54.6618%" y="517" width="0.0258%" height="15" fill="rgb(252,59,32)" fg:x="212013" fg:w="100"/><text x="54.9118%" y="527.50"></text></g><g><title>btrfs_search_slot (1,494 samples, 0.39%)</title><rect x="54.3099%" y="597" width="0.3852%" height="15" fill="rgb(253,204,25)" fg:x="210648" fg:w="1494"/><text x="54.5599%" y="607.50"></text></g><g><title>unlock_up (182 samples, 0.05%)</title><rect x="54.6482%" y="581" width="0.0469%" height="15" fill="rgb(232,21,16)" fg:x="211960" fg:w="182"/><text x="54.8982%" y="591.50"></text></g><g><title>btrfs_get_token_32 (308 samples, 0.08%)</title><rect x="54.7312%" y="581" width="0.0794%" height="15" fill="rgb(248,90,29)" fg:x="212282" fg:w="308"/><text x="54.9812%" y="591.50"></text></g><g><title>btrfs_leaf_free_space (39 samples, 0.01%)</title><rect x="54.8106%" y="581" width="0.0101%" height="15" fill="rgb(249,223,7)" fg:x="212590" fg:w="39"/><text x="55.0606%" y="591.50"></text></g><g><title>btrfs_set_token_32 (236 samples, 0.06%)</title><rect x="54.8248%" y="581" width="0.0608%" height="15" fill="rgb(231,119,42)" fg:x="212645" fg:w="236"/><text x="55.0748%" y="591.50"></text></g><g><title>check_setget_bounds.isra.0 (91 samples, 0.02%)</title><rect x="54.8872%" y="581" width="0.0235%" height="15" fill="rgb(215,41,35)" fg:x="212887" fg:w="91"/><text x="55.1372%" y="591.50"></text></g><g><title>memcpy_extent_buffer (82 samples, 0.02%)</title><rect x="54.9194%" y="565" width="0.0211%" height="15" fill="rgb(220,44,45)" fg:x="213012" fg:w="82"/><text x="55.1694%" y="575.50"></text></g><g><title>memmove (75 samples, 0.02%)</title><rect x="54.9212%" y="549" width="0.0193%" height="15" fill="rgb(253,197,36)" fg:x="213019" fg:w="75"/><text x="55.1712%" y="559.50"></text></g><g><title>memmove_extent_buffer (162 samples, 0.04%)</title><rect x="54.9142%" y="581" width="0.0418%" height="15" fill="rgb(245,225,54)" fg:x="212992" fg:w="162"/><text x="55.1642%" y="591.50"></text></g><g><title>memmove (60 samples, 0.02%)</title><rect x="54.9405%" y="565" width="0.0155%" height="15" fill="rgb(239,94,37)" fg:x="213094" fg:w="60"/><text x="55.1905%" y="575.50"></text></g><g><title>setup_items_for_insert (990 samples, 0.26%)</title><rect x="54.7046%" y="597" width="0.2552%" height="15" fill="rgb(242,217,10)" fg:x="212179" fg:w="990"/><text x="54.9546%" y="607.50"></text></g><g><title>btrfs_insert_empty_items (2,575 samples, 0.66%)</title><rect x="54.2965%" y="613" width="0.6639%" height="15" fill="rgb(250,193,7)" fg:x="210596" fg:w="2575"/><text x="54.5465%" y="623.50"></text></g><g><title>insert_with_overflow (2,597 samples, 0.67%)</title><rect x="54.2921%" y="629" width="0.6696%" height="15" fill="rgb(230,104,19)" fg:x="210579" fg:w="2597"/><text x="54.5421%" y="639.50"></text></g><g><title>btrfs_insert_dir_item (3,090 samples, 0.80%)</title><rect x="54.1753%" y="645" width="0.7967%" height="15" fill="rgb(230,181,4)" fg:x="210126" fg:w="3090"/><text x="54.4253%" y="655.50"></text></g><g><title>btrfs_delayed_update_inode (70 samples, 0.02%)</title><rect x="54.9789%" y="629" width="0.0180%" height="15" fill="rgb(216,219,49)" fg:x="213243" fg:w="70"/><text x="55.2289%" y="639.50"></text></g><g><title>btrfs_update_inode (114 samples, 0.03%)</title><rect x="54.9735%" y="645" width="0.0294%" height="15" fill="rgb(254,144,0)" fg:x="213222" fg:w="114"/><text x="55.2235%" y="655.50"></text></g><g><title>btrfs_add_link (3,248 samples, 0.84%)</title><rect x="54.1684%" y="661" width="0.8374%" height="15" fill="rgb(205,209,38)" fg:x="210099" fg:w="3248"/><text x="54.4184%" y="671.50"></text></g><g><title>btrfs_alloc_path (42 samples, 0.01%)</title><rect x="55.0058%" y="661" width="0.0108%" height="15" fill="rgb(240,21,42)" fg:x="213347" fg:w="42"/><text x="55.2558%" y="671.50"></text></g><g><title>__queue_work (50 samples, 0.01%)</title><rect x="55.0292%" y="581" width="0.0129%" height="15" fill="rgb(241,132,3)" fg:x="213438" fg:w="50"/><text x="55.2792%" y="591.50"></text></g><g><title>insert_work (43 samples, 0.01%)</title><rect x="55.0310%" y="565" width="0.0111%" height="15" fill="rgb(225,14,2)" fg:x="213445" fg:w="43"/><text x="55.2810%" y="575.50"></text></g><g><title>wake_up_process (43 samples, 0.01%)</title><rect x="55.0310%" y="549" width="0.0111%" height="15" fill="rgb(210,141,35)" fg:x="213445" fg:w="43"/><text x="55.2810%" y="559.50"></text></g><g><title>try_to_wake_up (40 samples, 0.01%)</title><rect x="55.0318%" y="533" width="0.0103%" height="15" fill="rgb(251,14,44)" fg:x="213448" fg:w="40"/><text x="55.2818%" y="543.50"></text></g><g><title>btrfs_queue_work (60 samples, 0.02%)</title><rect x="55.0282%" y="613" width="0.0155%" height="15" fill="rgb(247,48,18)" fg:x="213434" fg:w="60"/><text x="55.2782%" y="623.50"></text></g><g><title>queue_work_on (57 samples, 0.01%)</title><rect x="55.0290%" y="597" width="0.0147%" height="15" fill="rgb(225,0,40)" fg:x="213437" fg:w="57"/><text x="55.2790%" y="607.50"></text></g><g><title>btrfs_wq_run_delayed_node (64 samples, 0.02%)</title><rect x="55.0279%" y="629" width="0.0165%" height="15" fill="rgb(221,31,33)" fg:x="213433" fg:w="64"/><text x="55.2779%" y="639.50"></text></g><g><title>btrfs_balance_delayed_items (96 samples, 0.02%)</title><rect x="55.0230%" y="645" width="0.0248%" height="15" fill="rgb(237,42,40)" fg:x="213414" fg:w="96"/><text x="55.2730%" y="655.50"></text></g><g><title>btrfs_btree_balance_dirty (135 samples, 0.03%)</title><rect x="55.0171%" y="661" width="0.0348%" height="15" fill="rgb(233,51,29)" fg:x="213391" fg:w="135"/><text x="55.2671%" y="671.50"></text></g><g><title>btrfs_trans_release_metadata (49 samples, 0.01%)</title><rect x="55.0633%" y="629" width="0.0126%" height="15" fill="rgb(226,58,20)" fg:x="213570" fg:w="49"/><text x="55.3133%" y="639.50"></text></g><g><title>__btrfs_end_transaction (113 samples, 0.03%)</title><rect x="55.0522%" y="645" width="0.0291%" height="15" fill="rgb(208,98,7)" fg:x="213527" fg:w="113"/><text x="55.3022%" y="655.50"></text></g><g><title>btrfs_end_transaction (122 samples, 0.03%)</title><rect x="55.0522%" y="661" width="0.0315%" height="15" fill="rgb(228,143,44)" fg:x="213527" fg:w="122"/><text x="55.3022%" y="671.50"></text></g><g><title>free_extent_buffer (75 samples, 0.02%)</title><rect x="55.0867%" y="629" width="0.0193%" height="15" fill="rgb(246,55,38)" fg:x="213661" fg:w="75"/><text x="55.3367%" y="639.50"></text></g><g><title>free_extent_buffer.part.0 (70 samples, 0.02%)</title><rect x="55.0880%" y="613" width="0.0180%" height="15" fill="rgb(247,87,16)" fg:x="213666" fg:w="70"/><text x="55.3380%" y="623.50"></text></g><g><title>btrfs_release_path (94 samples, 0.02%)</title><rect x="55.0836%" y="645" width="0.0242%" height="15" fill="rgb(234,129,42)" fg:x="213649" fg:w="94"/><text x="55.3336%" y="655.50"></text></g><g><title>btrfs_free_path (108 samples, 0.03%)</title><rect x="55.0836%" y="661" width="0.0278%" height="15" fill="rgb(220,82,16)" fg:x="213649" fg:w="108"/><text x="55.3336%" y="671.50"></text></g><g><title>btrfs_bin_search (117 samples, 0.03%)</title><rect x="55.1434%" y="629" width="0.0302%" height="15" fill="rgb(211,88,4)" fg:x="213881" fg:w="117"/><text x="55.3934%" y="639.50"></text></g><g><title>generic_bin_search.constprop.0 (115 samples, 0.03%)</title><rect x="55.1440%" y="613" width="0.0296%" height="15" fill="rgb(248,151,21)" fg:x="213883" fg:w="115"/><text x="55.3940%" y="623.50"></text></g><g><title>osq_lock (552 samples, 0.14%)</title><rect x="55.2479%" y="549" width="0.1423%" height="15" fill="rgb(238,163,6)" fg:x="214286" fg:w="552"/><text x="55.4979%" y="559.50"></text></g><g><title>rwsem_spin_on_owner (594 samples, 0.15%)</title><rect x="55.3930%" y="549" width="0.1531%" height="15" fill="rgb(209,183,11)" fg:x="214849" fg:w="594"/><text x="55.6430%" y="559.50"></text></g><g><title>rwsem_optimistic_spin (1,322 samples, 0.34%)</title><rect x="55.2058%" y="565" width="0.3408%" height="15" fill="rgb(219,37,20)" fg:x="214123" fg:w="1322"/><text x="55.4558%" y="575.50"></text></g><g><title>__schedule (63 samples, 0.02%)</title><rect x="55.5480%" y="549" width="0.0162%" height="15" fill="rgb(210,158,4)" fg:x="215450" fg:w="63"/><text x="55.7980%" y="559.50"></text></g><g><title>rwsem_down_write_slowpath (1,417 samples, 0.37%)</title><rect x="55.1991%" y="581" width="0.3653%" height="15" fill="rgb(221,167,53)" fg:x="214097" fg:w="1417"/><text x="55.4491%" y="591.50"></text></g><g><title>schedule (66 samples, 0.02%)</title><rect x="55.5474%" y="565" width="0.0170%" height="15" fill="rgb(237,151,45)" fg:x="215448" fg:w="66"/><text x="55.7974%" y="575.50"></text></g><g><title>__btrfs_tree_lock (1,444 samples, 0.37%)</title><rect x="55.1927%" y="613" width="0.3723%" height="15" fill="rgb(231,39,3)" fg:x="214072" fg:w="1444"/><text x="55.4427%" y="623.50"></text></g><g><title>down_write (1,441 samples, 0.37%)</title><rect x="55.1935%" y="597" width="0.3715%" height="15" fill="rgb(212,167,28)" fg:x="214075" fg:w="1441"/><text x="55.4435%" y="607.50"></text></g><g><title>btrfs_tree_lock (1,446 samples, 0.37%)</title><rect x="55.1927%" y="629" width="0.3728%" height="15" fill="rgb(232,178,8)" fg:x="214072" fg:w="1446"/><text x="55.4427%" y="639.50"></text></g><g><title>btrfs_node_key (39 samples, 0.01%)</title><rect x="55.5908%" y="613" width="0.0101%" height="15" fill="rgb(225,151,20)" fg:x="215616" fg:w="39"/><text x="55.8408%" y="623.50"></text></g><g><title>find_extent_buffer_nolock (138 samples, 0.04%)</title><rect x="55.6096%" y="597" width="0.0356%" height="15" fill="rgb(238,3,37)" fg:x="215689" fg:w="138"/><text x="55.8596%" y="607.50"></text></g><g><title>radix_tree_lookup (63 samples, 0.02%)</title><rect x="55.6289%" y="581" width="0.0162%" height="15" fill="rgb(251,147,42)" fg:x="215764" fg:w="63"/><text x="55.8789%" y="591.50"></text></g><g><title>__radix_tree_lookup (63 samples, 0.02%)</title><rect x="55.6289%" y="565" width="0.0162%" height="15" fill="rgb(208,173,10)" fg:x="215764" fg:w="63"/><text x="55.8789%" y="575.50"></text></g><g><title>mark_page_accessed (66 samples, 0.02%)</title><rect x="55.6452%" y="597" width="0.0170%" height="15" fill="rgb(246,225,4)" fg:x="215827" fg:w="66"/><text x="55.8952%" y="607.50"></text></g><g><title>find_extent_buffer (230 samples, 0.06%)</title><rect x="55.6039%" y="613" width="0.0593%" height="15" fill="rgb(248,102,6)" fg:x="215667" fg:w="230"/><text x="55.8539%" y="623.50"></text></g><g><title>read_block_for_search (356 samples, 0.09%)</title><rect x="55.5727%" y="629" width="0.0918%" height="15" fill="rgb(232,6,21)" fg:x="215546" fg:w="356"/><text x="55.8227%" y="639.50"></text></g><g><title>btrfs_find_create_tree_block (43 samples, 0.01%)</title><rect x="55.6681%" y="581" width="0.0111%" height="15" fill="rgb(221,179,22)" fg:x="215916" fg:w="43"/><text x="55.9181%" y="591.50"></text></g><g><title>alloc_extent_buffer (41 samples, 0.01%)</title><rect x="55.6686%" y="565" width="0.0106%" height="15" fill="rgb(252,50,20)" fg:x="215918" fg:w="41"/><text x="55.9186%" y="575.50"></text></g><g><title>btrfs_init_new_buffer (55 samples, 0.01%)</title><rect x="55.6673%" y="597" width="0.0142%" height="15" fill="rgb(222,56,38)" fg:x="215913" fg:w="55"/><text x="55.9173%" y="607.50"></text></g><g><title>btrfs_alloc_tree_block (78 samples, 0.02%)</title><rect x="55.6648%" y="613" width="0.0201%" height="15" fill="rgb(206,193,29)" fg:x="215903" fg:w="78"/><text x="55.9148%" y="623.50"></text></g><g><title>push_leaf_left (43 samples, 0.01%)</title><rect x="55.6911%" y="613" width="0.0111%" height="15" fill="rgb(239,192,45)" fg:x="216005" fg:w="43"/><text x="55.9411%" y="623.50"></text></g><g><title>split_leaf (150 samples, 0.04%)</title><rect x="55.6645%" y="629" width="0.0387%" height="15" fill="rgb(254,18,36)" fg:x="215902" fg:w="150"/><text x="55.9145%" y="639.50"></text></g><g><title>select_task_rq_fair (54 samples, 0.01%)</title><rect x="55.7349%" y="533" width="0.0139%" height="15" fill="rgb(221,127,11)" fg:x="216175" fg:w="54"/><text x="55.9849%" y="543.50"></text></g><g><title>btrfs_tree_unlock (196 samples, 0.05%)</title><rect x="55.7104%" y="613" width="0.0505%" height="15" fill="rgb(234,146,35)" fg:x="216080" fg:w="196"/><text x="55.9604%" y="623.50"></text></g><g><title>up_write (196 samples, 0.05%)</title><rect x="55.7104%" y="597" width="0.0505%" height="15" fill="rgb(254,201,37)" fg:x="216080" fg:w="196"/><text x="55.9604%" y="607.50"></text></g><g><title>rwsem_wake.isra.0 (195 samples, 0.05%)</title><rect x="55.7107%" y="581" width="0.0503%" height="15" fill="rgb(211,202,23)" fg:x="216081" fg:w="195"/><text x="55.9607%" y="591.50"></text></g><g><title>wake_up_q (143 samples, 0.04%)</title><rect x="55.7241%" y="565" width="0.0369%" height="15" fill="rgb(237,91,2)" fg:x="216133" fg:w="143"/><text x="55.9741%" y="575.50"></text></g><g><title>try_to_wake_up (137 samples, 0.04%)</title><rect x="55.7256%" y="549" width="0.0353%" height="15" fill="rgb(226,228,36)" fg:x="216139" fg:w="137"/><text x="55.9756%" y="559.50"></text></g><g><title>btrfs_search_slot (2,508 samples, 0.65%)</title><rect x="55.1275%" y="645" width="0.6466%" height="15" fill="rgb(213,63,50)" fg:x="213819" fg:w="2508"/><text x="55.3775%" y="655.50"></text></g><g><title>unlock_up (275 samples, 0.07%)</title><rect x="55.7032%" y="629" width="0.0709%" height="15" fill="rgb(235,194,19)" fg:x="216052" fg:w="275"/><text x="55.9532%" y="639.50"></text></g><g><title>btrfs_get_token_32 (47 samples, 0.01%)</title><rect x="55.7893%" y="629" width="0.0121%" height="15" fill="rgb(207,204,18)" fg:x="216386" fg:w="47"/><text x="56.0393%" y="639.50"></text></g><g><title>memmove_extent_buffer (40 samples, 0.01%)</title><rect x="55.8251%" y="629" width="0.0103%" height="15" fill="rgb(248,8,7)" fg:x="216525" fg:w="40"/><text x="56.0751%" y="639.50"></text></g><g><title>setup_items_for_insert (245 samples, 0.06%)</title><rect x="55.7759%" y="645" width="0.0632%" height="15" fill="rgb(223,145,47)" fg:x="216334" fg:w="245"/><text x="56.0259%" y="655.50"></text></g><g><title>btrfs_insert_empty_items (2,783 samples, 0.72%)</title><rect x="55.1223%" y="661" width="0.7175%" height="15" fill="rgb(228,84,11)" fg:x="213799" fg:w="2783"/><text x="55.3723%" y="671.50"></text></g><g><title>_raw_spin_lock (41 samples, 0.01%)</title><rect x="55.8561%" y="645" width="0.0106%" height="15" fill="rgb(218,76,45)" fg:x="216645" fg:w="41"/><text x="56.1061%" y="655.50"></text></g><g><title>free_extent_buffer.part.0 (61 samples, 0.02%)</title><rect x="55.8767%" y="597" width="0.0157%" height="15" fill="rgb(223,80,15)" fg:x="216725" fg:w="61"/><text x="56.1267%" y="607.50"></text></g><g><title>free_extent_buffer (67 samples, 0.02%)</title><rect x="55.8754%" y="613" width="0.0173%" height="15" fill="rgb(219,218,33)" fg:x="216720" fg:w="67"/><text x="56.1254%" y="623.50"></text></g><g><title>btrfs_release_path (88 samples, 0.02%)</title><rect x="55.8731%" y="629" width="0.0227%" height="15" fill="rgb(208,51,11)" fg:x="216711" fg:w="88"/><text x="56.1231%" y="639.50"></text></g><g><title>btrfs_free_path (118 samples, 0.03%)</title><rect x="55.8726%" y="645" width="0.0304%" height="15" fill="rgb(229,165,39)" fg:x="216709" fg:w="118"/><text x="56.1226%" y="655.50"></text></g><g><title>btrfs_bin_search (130 samples, 0.03%)</title><rect x="55.9283%" y="613" width="0.0335%" height="15" fill="rgb(241,100,24)" fg:x="216925" fg:w="130"/><text x="56.1783%" y="623.50"></text></g><g><title>generic_bin_search.constprop.0 (124 samples, 0.03%)</title><rect x="55.9298%" y="597" width="0.0320%" height="15" fill="rgb(228,14,23)" fg:x="216931" fg:w="124"/><text x="56.1798%" y="607.50"></text></g><g><title>osq_lock (732 samples, 0.19%)</title><rect x="56.0523%" y="533" width="0.1887%" height="15" fill="rgb(247,116,52)" fg:x="217406" fg:w="732"/><text x="56.3023%" y="543.50"></text></g><g><title>rwsem_spin_on_owner (481 samples, 0.12%)</title><rect x="56.2467%" y="533" width="0.1240%" height="15" fill="rgb(216,149,33)" fg:x="218160" fg:w="481"/><text x="56.4967%" y="543.50"></text></g><g><title>rwsem_optimistic_spin (1,442 samples, 0.37%)</title><rect x="55.9999%" y="549" width="0.3718%" height="15" fill="rgb(238,142,29)" fg:x="217203" fg:w="1442"/><text x="56.2499%" y="559.50"></text></g><g><title>dequeue_entity (46 samples, 0.01%)</title><rect x="56.3784%" y="485" width="0.0119%" height="15" fill="rgb(224,83,40)" fg:x="218671" fg:w="46"/><text x="56.6284%" y="495.50"></text></g><g><title>dequeue_task (56 samples, 0.01%)</title><rect x="56.3763%" y="517" width="0.0144%" height="15" fill="rgb(234,165,11)" fg:x="218663" fg:w="56"/><text x="56.6263%" y="527.50"></text></g><g><title>dequeue_task_fair (55 samples, 0.01%)</title><rect x="56.3766%" y="501" width="0.0142%" height="15" fill="rgb(215,96,23)" fg:x="218664" fg:w="55"/><text x="56.6266%" y="511.50"></text></g><g><title>psi_task_switch (39 samples, 0.01%)</title><rect x="56.4052%" y="517" width="0.0101%" height="15" fill="rgb(233,179,26)" fg:x="218775" fg:w="39"/><text x="56.6552%" y="527.50"></text></g><g><title>__schedule (172 samples, 0.04%)</title><rect x="56.3725%" y="533" width="0.0443%" height="15" fill="rgb(225,129,33)" fg:x="218648" fg:w="172"/><text x="56.6225%" y="543.50"></text></g><g><title>down_write (1,686 samples, 0.43%)</title><rect x="55.9829%" y="581" width="0.4347%" height="15" fill="rgb(237,49,13)" fg:x="217137" fg:w="1686"/><text x="56.2329%" y="591.50"></text></g><g><title>rwsem_down_write_slowpath (1,657 samples, 0.43%)</title><rect x="55.9904%" y="565" width="0.4272%" height="15" fill="rgb(211,3,31)" fg:x="217166" fg:w="1657"/><text x="56.2404%" y="575.50"></text></g><g><title>schedule (176 samples, 0.05%)</title><rect x="56.3722%" y="549" width="0.0454%" height="15" fill="rgb(216,152,19)" fg:x="218647" fg:w="176"/><text x="56.6222%" y="559.50"></text></g><g><title>__btrfs_tree_lock (1,700 samples, 0.44%)</title><rect x="55.9798%" y="597" width="0.4383%" height="15" fill="rgb(251,121,35)" fg:x="217125" fg:w="1700"/><text x="56.2298%" y="607.50"></text></g><g><title>btrfs_tree_lock (1,701 samples, 0.44%)</title><rect x="55.9798%" y="613" width="0.4386%" height="15" fill="rgb(210,217,47)" fg:x="217125" fg:w="1701"/><text x="56.2298%" y="623.50"></text></g><g><title>radix_tree_lookup (73 samples, 0.02%)</title><rect x="56.4857%" y="565" width="0.0188%" height="15" fill="rgb(244,116,22)" fg:x="219087" fg:w="73"/><text x="56.7357%" y="575.50"></text></g><g><title>__radix_tree_lookup (72 samples, 0.02%)</title><rect x="56.4859%" y="549" width="0.0186%" height="15" fill="rgb(228,17,21)" fg:x="219088" fg:w="72"/><text x="56.7359%" y="559.50"></text></g><g><title>find_extent_buffer_nolock (180 samples, 0.05%)</title><rect x="56.4583%" y="581" width="0.0464%" height="15" fill="rgb(240,149,34)" fg:x="218981" fg:w="180"/><text x="56.7083%" y="591.50"></text></g><g><title>mark_page_accessed (71 samples, 0.02%)</title><rect x="56.5047%" y="581" width="0.0183%" height="15" fill="rgb(208,125,47)" fg:x="219161" fg:w="71"/><text x="56.7547%" y="591.50"></text></g><g><title>find_extent_buffer (274 samples, 0.07%)</title><rect x="56.4529%" y="597" width="0.0706%" height="15" fill="rgb(249,186,39)" fg:x="218960" fg:w="274"/><text x="56.7029%" y="607.50"></text></g><g><title>read_block_for_search (400 samples, 0.10%)</title><rect x="56.4228%" y="613" width="0.1031%" height="15" fill="rgb(240,220,33)" fg:x="218843" fg:w="400"/><text x="56.6728%" y="623.50"></text></g><g><title>btrfs_init_new_buffer (44 samples, 0.01%)</title><rect x="56.5300%" y="581" width="0.0113%" height="15" fill="rgb(243,110,23)" fg:x="219259" fg:w="44"/><text x="56.7800%" y="591.50"></text></g><g><title>btrfs_alloc_tree_block (72 samples, 0.02%)</title><rect x="56.5261%" y="597" width="0.0186%" height="15" fill="rgb(219,163,46)" fg:x="219244" fg:w="72"/><text x="56.7761%" y="607.50"></text></g><g><title>push_leaf_left (42 samples, 0.01%)</title><rect x="56.5535%" y="597" width="0.0108%" height="15" fill="rgb(216,126,30)" fg:x="219350" fg:w="42"/><text x="56.8035%" y="607.50"></text></g><g><title>split_leaf (157 samples, 0.04%)</title><rect x="56.5259%" y="613" width="0.0405%" height="15" fill="rgb(208,139,11)" fg:x="219243" fg:w="157"/><text x="56.7759%" y="623.50"></text></g><g><title>select_task_rq_fair (54 samples, 0.01%)</title><rect x="56.6092%" y="517" width="0.0139%" height="15" fill="rgb(213,118,36)" fg:x="219566" fg:w="54"/><text x="56.8592%" y="527.50"></text></g><g><title>enqueue_task (42 samples, 0.01%)</title><rect x="56.6259%" y="501" width="0.0108%" height="15" fill="rgb(226,43,17)" fg:x="219631" fg:w="42"/><text x="56.8759%" y="511.50"></text></g><g><title>ttwu_do_activate (55 samples, 0.01%)</title><rect x="56.6259%" y="517" width="0.0142%" height="15" fill="rgb(254,217,4)" fg:x="219631" fg:w="55"/><text x="56.8759%" y="527.50"></text></g><g><title>try_to_wake_up (205 samples, 0.05%)</title><rect x="56.5950%" y="533" width="0.0529%" height="15" fill="rgb(210,134,47)" fg:x="219511" fg:w="205"/><text x="56.8450%" y="543.50"></text></g><g><title>btrfs_tree_unlock (281 samples, 0.07%)</title><rect x="56.5756%" y="597" width="0.0724%" height="15" fill="rgb(237,24,49)" fg:x="219436" fg:w="281"/><text x="56.8256%" y="607.50"></text></g><g><title>up_write (278 samples, 0.07%)</title><rect x="56.5764%" y="581" width="0.0717%" height="15" fill="rgb(251,39,46)" fg:x="219439" fg:w="278"/><text x="56.8264%" y="591.50"></text></g><g><title>rwsem_wake.isra.0 (278 samples, 0.07%)</title><rect x="56.5764%" y="565" width="0.0717%" height="15" fill="rgb(251,220,3)" fg:x="219439" fg:w="278"/><text x="56.8264%" y="575.50"></text></g><g><title>wake_up_q (211 samples, 0.05%)</title><rect x="56.5937%" y="549" width="0.0544%" height="15" fill="rgb(228,105,12)" fg:x="219506" fg:w="211"/><text x="56.8437%" y="559.50"></text></g><g><title>btrfs_search_slot (2,891 samples, 0.75%)</title><rect x="55.9110%" y="629" width="0.7454%" height="15" fill="rgb(215,196,1)" fg:x="216858" fg:w="2891"/><text x="56.1610%" y="639.50"></text></g><g><title>unlock_up (348 samples, 0.09%)</title><rect x="56.5666%" y="613" width="0.0897%" height="15" fill="rgb(214,33,39)" fg:x="219401" fg:w="348"/><text x="56.8166%" y="623.50"></text></g><g><title>btrfs_leaf_free_space (41 samples, 0.01%)</title><rect x="56.6801%" y="613" width="0.0106%" height="15" fill="rgb(220,19,52)" fg:x="219841" fg:w="41"/><text x="56.9301%" y="623.50"></text></g><g><title>memmove_extent_buffer (43 samples, 0.01%)</title><rect x="56.7154%" y="613" width="0.0111%" height="15" fill="rgb(221,78,38)" fg:x="219978" fg:w="43"/><text x="56.9654%" y="623.50"></text></g><g><title>setup_items_for_insert (281 samples, 0.07%)</title><rect x="56.6597%" y="629" width="0.0724%" height="15" fill="rgb(253,30,16)" fg:x="219762" fg:w="281"/><text x="56.9097%" y="639.50"></text></g><g><title>btrfs_insert_empty_items (3,209 samples, 0.83%)</title><rect x="55.9061%" y="645" width="0.8274%" height="15" fill="rgb(242,65,0)" fg:x="216839" fg:w="3209"/><text x="56.1561%" y="655.50"></text></g><g><title>btrfs_set_token_64 (39 samples, 0.01%)</title><rect x="56.7711%" y="629" width="0.0101%" height="15" fill="rgb(235,201,12)" fg:x="220194" fg:w="39"/><text x="57.0211%" y="639.50"></text></g><g><title>fill_inode_item (124 samples, 0.03%)</title><rect x="56.7543%" y="645" width="0.0320%" height="15" fill="rgb(233,161,9)" fg:x="220129" fg:w="124"/><text x="57.0043%" y="655.50"></text></g><g><title>inode_tree_add (264 samples, 0.07%)</title><rect x="56.7914%" y="645" width="0.0681%" height="15" fill="rgb(241,207,41)" fg:x="220273" fg:w="264"/><text x="57.0414%" y="655.50"></text></g><g><title>insert_inode_locked4 (57 samples, 0.01%)</title><rect x="56.8595%" y="645" width="0.0147%" height="15" fill="rgb(212,69,46)" fg:x="220537" fg:w="57"/><text x="57.1095%" y="655.50"></text></g><g><title>memcg_slab_post_alloc_hook (42 samples, 0.01%)</title><rect x="56.9093%" y="581" width="0.0108%" height="15" fill="rgb(239,69,45)" fg:x="220730" fg:w="42"/><text x="57.1593%" y="591.50"></text></g><g><title>btrfs_alloc_inode (162 samples, 0.04%)</title><rect x="56.8845%" y="613" width="0.0418%" height="15" fill="rgb(242,117,48)" fg:x="220634" fg:w="162"/><text x="57.1345%" y="623.50"></text></g><g><title>kmem_cache_alloc (118 samples, 0.03%)</title><rect x="56.8959%" y="597" width="0.0304%" height="15" fill="rgb(228,41,36)" fg:x="220678" fg:w="118"/><text x="57.1459%" y="607.50"></text></g><g><title>inode_init_always (74 samples, 0.02%)</title><rect x="56.9291%" y="613" width="0.0191%" height="15" fill="rgb(212,3,32)" fg:x="220807" fg:w="74"/><text x="57.1791%" y="623.50"></text></g><g><title>alloc_inode (271 samples, 0.07%)</title><rect x="56.8796%" y="629" width="0.0699%" height="15" fill="rgb(233,41,49)" fg:x="220615" fg:w="271"/><text x="57.1296%" y="639.50"></text></g><g><title>new_inode (288 samples, 0.07%)</title><rect x="56.8768%" y="645" width="0.0743%" height="15" fill="rgb(252,170,49)" fg:x="220604" fg:w="288"/><text x="57.1268%" y="655.50"></text></g><g><title>btrfs_new_inode (4,329 samples, 1.12%)</title><rect x="55.8452%" y="661" width="1.1161%" height="15" fill="rgb(229,53,26)" fg:x="216603" fg:w="4329"/><text x="56.0952%" y="671.50"></text></g><g><title>need_preemptive_reclaim (64 samples, 0.02%)</title><rect x="57.0078%" y="581" width="0.0165%" height="15" fill="rgb(217,157,12)" fg:x="221112" fg:w="64"/><text x="57.2578%" y="591.50"></text></g><g><title>__reserve_bytes (147 samples, 0.04%)</title><rect x="56.9972%" y="597" width="0.0379%" height="15" fill="rgb(227,17,9)" fg:x="221071" fg:w="147"/><text x="57.2472%" y="607.50"></text></g><g><title>work_busy (41 samples, 0.01%)</title><rect x="57.0245%" y="581" width="0.0106%" height="15" fill="rgb(218,84,12)" fg:x="221177" fg:w="41"/><text x="57.2745%" y="591.50"></text></g><g><title>btrfs_block_rsv_add (179 samples, 0.05%)</title><rect x="56.9938%" y="629" width="0.0462%" height="15" fill="rgb(212,79,24)" fg:x="221058" fg:w="179"/><text x="57.2438%" y="639.50"></text></g><g><title>btrfs_reserve_metadata_bytes (175 samples, 0.05%)</title><rect x="56.9949%" y="613" width="0.0451%" height="15" fill="rgb(217,222,37)" fg:x="221062" fg:w="175"/><text x="57.2449%" y="623.50"></text></g><g><title>start_transaction (332 samples, 0.09%)</title><rect x="56.9686%" y="645" width="0.0856%" height="15" fill="rgb(246,208,8)" fg:x="220960" fg:w="332"/><text x="57.2186%" y="655.50"></text></g><g><title>btrfs_start_transaction (339 samples, 0.09%)</title><rect x="56.9675%" y="661" width="0.0874%" height="15" fill="rgb(244,133,10)" fg:x="220956" fg:w="339"/><text x="57.2175%" y="671.50"></text></g><g><title>btrfs_get_delayed_node (84 samples, 0.02%)</title><rect x="57.0993%" y="613" width="0.0217%" height="15" fill="rgb(209,219,41)" fg:x="221467" fg:w="84"/><text x="57.3493%" y="623.50"></text></g><g><title>radix_tree_lookup (72 samples, 0.02%)</title><rect x="57.1024%" y="597" width="0.0186%" height="15" fill="rgb(253,175,45)" fg:x="221479" fg:w="72"/><text x="57.3524%" y="607.50"></text></g><g><title>__radix_tree_lookup (72 samples, 0.02%)</title><rect x="57.1024%" y="581" width="0.0186%" height="15" fill="rgb(235,100,37)" fg:x="221479" fg:w="72"/><text x="57.3524%" y="591.50"></text></g><g><title>kmem_cache_alloc (56 samples, 0.01%)</title><rect x="57.1209%" y="613" width="0.0144%" height="15" fill="rgb(225,87,19)" fg:x="221551" fg:w="56"/><text x="57.3709%" y="623.50"></text></g><g><title>btrfs_get_or_create_delayed_node (209 samples, 0.05%)</title><rect x="57.0918%" y="629" width="0.0539%" height="15" fill="rgb(217,152,17)" fg:x="221438" fg:w="209"/><text x="57.3418%" y="639.50"></text></g><g><title>btrfs_delayed_update_inode (352 samples, 0.09%)</title><rect x="57.0632%" y="645" width="0.0908%" height="15" fill="rgb(235,72,13)" fg:x="221327" fg:w="352"/><text x="57.3132%" y="655.50"></text></g><g><title>btrfs_update_inode (409 samples, 0.11%)</title><rect x="57.0565%" y="661" width="0.1054%" height="15" fill="rgb(233,140,18)" fg:x="221301" fg:w="409"/><text x="57.3065%" y="671.50"></text></g><g><title>d_instantiate_new (39 samples, 0.01%)</title><rect x="57.1689%" y="661" width="0.0101%" height="15" fill="rgb(207,212,28)" fg:x="221737" fg:w="39"/><text x="57.4189%" y="671.50"></text></g><g><title>btrfs_symlink (11,801 samples, 3.04%)</title><rect x="54.1549%" y="677" width="3.0426%" height="15" fill="rgb(220,130,25)" fg:x="210047" fg:w="11801"/><text x="54.4049%" y="687.50">btr..</text></g><g><title>may_create (46 samples, 0.01%)</title><rect x="57.2073%" y="677" width="0.0119%" height="15" fill="rgb(205,55,34)" fg:x="221886" fg:w="46"/><text x="57.4573%" y="687.50"></text></g><g><title>strlen (51 samples, 0.01%)</title><rect x="57.2199%" y="677" width="0.0131%" height="15" fill="rgb(237,54,35)" fg:x="221935" fg:w="51"/><text x="57.4699%" y="687.50"></text></g><g><title>do_symlinkat (14,566 samples, 3.76%)</title><rect x="53.4784%" y="709" width="3.7554%" height="15" fill="rgb(208,67,23)" fg:x="207423" fg:w="14566"/><text x="53.7284%" y="719.50">do_s..</text></g><g><title>vfs_symlink (11,994 samples, 3.09%)</title><rect x="54.1415%" y="693" width="3.0923%" height="15" fill="rgb(206,207,50)" fg:x="209995" fg:w="11994"/><text x="54.3915%" y="703.50">vfs..</text></g><g><title>memset_erms (84 samples, 0.02%)</title><rect x="57.2532%" y="677" width="0.0217%" height="15" fill="rgb(213,211,42)" fg:x="222064" fg:w="84"/><text x="57.5032%" y="687.50"></text></g><g><title>__check_object_size.part.0 (61 samples, 0.02%)</title><rect x="57.2896%" y="645" width="0.0157%" height="15" fill="rgb(252,197,50)" fg:x="222205" fg:w="61"/><text x="57.5396%" y="655.50"></text></g><g><title>__check_object_size (72 samples, 0.02%)</title><rect x="57.2890%" y="661" width="0.0186%" height="15" fill="rgb(251,211,41)" fg:x="222203" fg:w="72"/><text x="57.5390%" y="671.50"></text></g><g><title>getname_flags.part.0 (275 samples, 0.07%)</title><rect x="57.2370%" y="693" width="0.0709%" height="15" fill="rgb(229,211,5)" fg:x="222001" fg:w="275"/><text x="57.4870%" y="703.50"></text></g><g><title>strncpy_from_user (127 samples, 0.03%)</title><rect x="57.2751%" y="677" width="0.0327%" height="15" fill="rgb(239,36,31)" fg:x="222149" fg:w="127"/><text x="57.5251%" y="687.50"></text></g><g><title>getname_flags (278 samples, 0.07%)</title><rect x="57.2370%" y="709" width="0.0717%" height="15" fill="rgb(248,67,31)" fg:x="222001" fg:w="278"/><text x="57.4870%" y="719.50"></text></g><g><title>__x64_sys_symlink (14,887 samples, 3.84%)</title><rect x="53.4776%" y="725" width="3.8382%" height="15" fill="rgb(249,55,44)" fg:x="207420" fg:w="14887"/><text x="53.7276%" y="735.50">__x6..</text></g><g><title>do_syscall_64 (15,067 samples, 3.88%)</title><rect x="53.4400%" y="757" width="3.8846%" height="15" fill="rgb(216,82,12)" fg:x="207274" fg:w="15067"/><text x="53.6900%" y="767.50">do_s..</text></g><g><title>unload_network_ops_symbols (14,951 samples, 3.85%)</title><rect x="53.4699%" y="741" width="3.8547%" height="15" fill="rgb(242,174,1)" fg:x="207390" fg:w="14951"/><text x="53.7199%" y="751.50">unlo..</text></g><g><title>entry_SYSCALL_64_after_hwframe (15,090 samples, 3.89%)</title><rect x="53.4372%" y="773" width="3.8905%" height="15" fill="rgb(208,120,29)" fg:x="207263" fg:w="15090"/><text x="53.6872%" y="783.50">entr..</text></g><g><title>__GI_symlink (15,136 samples, 3.90%)</title><rect x="53.4279%" y="789" width="3.9024%" height="15" fill="rgb(221,105,43)" fg:x="207227" fg:w="15136"/><text x="53.6779%" y="799.50">__GI..</text></g><g><title>__btrfs_unlink_inode (47 samples, 0.01%)</title><rect x="57.3367%" y="661" width="0.0121%" height="15" fill="rgb(234,124,22)" fg:x="222388" fg:w="47"/><text x="57.5867%" y="671.50"></text></g><g><title>btrfs_rmdir (74 samples, 0.02%)</title><rect x="57.3367%" y="677" width="0.0191%" height="15" fill="rgb(212,23,30)" fg:x="222388" fg:w="74"/><text x="57.5867%" y="687.50"></text></g><g><title>__btrfs_update_delayed_inode (39 samples, 0.01%)</title><rect x="57.3579%" y="613" width="0.0101%" height="15" fill="rgb(219,122,53)" fg:x="222470" fg:w="39"/><text x="57.6079%" y="623.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (43 samples, 0.01%)</title><rect x="57.3576%" y="629" width="0.0111%" height="15" fill="rgb(248,84,24)" fg:x="222469" fg:w="43"/><text x="57.6076%" y="639.50"></text></g><g><title>btrfs_truncate_inode_items (49 samples, 0.01%)</title><rect x="57.3752%" y="629" width="0.0126%" height="15" fill="rgb(245,115,18)" fg:x="222537" fg:w="49"/><text x="57.6252%" y="639.50"></text></g><g><title>btrfs_evict_inode (125 samples, 0.03%)</title><rect x="57.3569%" y="645" width="0.0322%" height="15" fill="rgb(227,176,51)" fg:x="222466" fg:w="125"/><text x="57.6069%" y="655.50"></text></g><g><title>iput (133 samples, 0.03%)</title><rect x="57.3561%" y="677" width="0.0343%" height="15" fill="rgb(229,63,42)" fg:x="222463" fg:w="133"/><text x="57.6061%" y="687.50"></text></g><g><title>evict (132 samples, 0.03%)</title><rect x="57.3563%" y="661" width="0.0340%" height="15" fill="rgb(247,202,24)" fg:x="222464" fg:w="132"/><text x="57.6063%" y="671.50"></text></g><g><title>do_rmdir (223 samples, 0.06%)</title><rect x="57.3362%" y="709" width="0.0575%" height="15" fill="rgb(244,173,20)" fg:x="222386" fg:w="223"/><text x="57.5862%" y="719.50"></text></g><g><title>vfs_rmdir (221 samples, 0.06%)</title><rect x="57.3367%" y="693" width="0.0570%" height="15" fill="rgb(242,81,47)" fg:x="222388" fg:w="221"/><text x="57.5867%" y="703.50"></text></g><g><title>btrfs_del_items (88 samples, 0.02%)</title><rect x="57.4102%" y="613" width="0.0227%" height="15" fill="rgb(231,185,54)" fg:x="222673" fg:w="88"/><text x="57.6602%" y="623.50"></text></g><g><title>__btrfs_cow_block (52 samples, 0.01%)</title><rect x="57.4424%" y="565" width="0.0134%" height="15" fill="rgb(243,55,32)" fg:x="222798" fg:w="52"/><text x="57.6924%" y="575.50"></text></g><g><title>btrfs_cow_block (53 samples, 0.01%)</title><rect x="57.4424%" y="581" width="0.0137%" height="15" fill="rgb(208,167,19)" fg:x="222798" fg:w="53"/><text x="57.6924%" y="591.50"></text></g><g><title>rwsem_optimistic_spin (66 samples, 0.02%)</title><rect x="57.4566%" y="517" width="0.0170%" height="15" fill="rgb(231,72,35)" fg:x="222853" fg:w="66"/><text x="57.7066%" y="527.50"></text></g><g><title>__btrfs_tree_lock (81 samples, 0.02%)</title><rect x="57.4561%" y="565" width="0.0209%" height="15" fill="rgb(250,173,51)" fg:x="222851" fg:w="81"/><text x="57.7061%" y="575.50"></text></g><g><title>down_write (81 samples, 0.02%)</title><rect x="57.4561%" y="549" width="0.0209%" height="15" fill="rgb(209,5,22)" fg:x="222851" fg:w="81"/><text x="57.7061%" y="559.50"></text></g><g><title>rwsem_down_write_slowpath (80 samples, 0.02%)</title><rect x="57.4564%" y="533" width="0.0206%" height="15" fill="rgb(250,174,19)" fg:x="222852" fg:w="80"/><text x="57.7064%" y="543.50"></text></g><g><title>btrfs_lock_root_node (83 samples, 0.02%)</title><rect x="57.4561%" y="581" width="0.0214%" height="15" fill="rgb(217,3,49)" fg:x="222851" fg:w="83"/><text x="57.7061%" y="591.50"></text></g><g><title>btrfs_search_slot (300 samples, 0.08%)</title><rect x="57.4360%" y="597" width="0.0773%" height="15" fill="rgb(218,225,5)" fg:x="222773" fg:w="300"/><text x="57.6860%" y="607.50"></text></g><g><title>unlock_up (57 samples, 0.01%)</title><rect x="57.4987%" y="581" width="0.0147%" height="15" fill="rgb(236,89,11)" fg:x="223016" fg:w="57"/><text x="57.7487%" y="591.50"></text></g><g><title>btrfs_tree_unlock (51 samples, 0.01%)</title><rect x="57.5002%" y="565" width="0.0131%" height="15" fill="rgb(206,33,28)" fg:x="223022" fg:w="51"/><text x="57.7502%" y="575.50"></text></g><g><title>up_write (50 samples, 0.01%)</title><rect x="57.5005%" y="549" width="0.0129%" height="15" fill="rgb(241,56,42)" fg:x="223023" fg:w="50"/><text x="57.7505%" y="559.50"></text></g><g><title>rwsem_wake.isra.0 (49 samples, 0.01%)</title><rect x="57.5007%" y="533" width="0.0126%" height="15" fill="rgb(222,44,11)" fg:x="223024" fg:w="49"/><text x="57.7507%" y="543.50"></text></g><g><title>wake_up_q (40 samples, 0.01%)</title><rect x="57.5030%" y="517" width="0.0103%" height="15" fill="rgb(234,111,20)" fg:x="223033" fg:w="40"/><text x="57.7530%" y="527.50"></text></g><g><title>try_to_wake_up (39 samples, 0.01%)</title><rect x="57.5033%" y="501" width="0.0101%" height="15" fill="rgb(237,77,6)" fg:x="223034" fg:w="39"/><text x="57.7533%" y="511.50"></text></g><g><title>btrfs_lookup_inode (302 samples, 0.08%)</title><rect x="57.4357%" y="613" width="0.0779%" height="15" fill="rgb(235,111,23)" fg:x="222772" fg:w="302"/><text x="57.6857%" y="623.50"></text></g><g><title>__btrfs_update_delayed_inode (422 samples, 0.11%)</title><rect x="57.4102%" y="629" width="0.1088%" height="15" fill="rgb(251,135,29)" fg:x="222673" fg:w="422"/><text x="57.6602%" y="639.50"></text></g><g><title>btrfs_commit_inode_delayed_inode (462 samples, 0.12%)</title><rect x="57.4089%" y="645" width="0.1191%" height="15" fill="rgb(217,57,1)" fg:x="222668" fg:w="462"/><text x="57.6589%" y="655.50"></text></g><g><title>rwsem_optimistic_spin (58 samples, 0.01%)</title><rect x="57.5420%" y="549" width="0.0150%" height="15" fill="rgb(249,119,31)" fg:x="223184" fg:w="58"/><text x="57.7920%" y="559.50"></text></g><g><title>btrfs_lock_root_node (71 samples, 0.02%)</title><rect x="57.5415%" y="613" width="0.0183%" height="15" fill="rgb(233,164,33)" fg:x="223182" fg:w="71"/><text x="57.7915%" y="623.50"></text></g><g><title>__btrfs_tree_lock (71 samples, 0.02%)</title><rect x="57.5415%" y="597" width="0.0183%" height="15" fill="rgb(250,217,43)" fg:x="223182" fg:w="71"/><text x="57.7915%" y="607.50"></text></g><g><title>down_write (71 samples, 0.02%)</title><rect x="57.5415%" y="581" width="0.0183%" height="15" fill="rgb(232,154,50)" fg:x="223182" fg:w="71"/><text x="57.7915%" y="591.50"></text></g><g><title>rwsem_down_write_slowpath (71 samples, 0.02%)</title><rect x="57.5415%" y="565" width="0.0183%" height="15" fill="rgb(227,190,8)" fg:x="223182" fg:w="71"/><text x="57.7915%" y="575.50"></text></g><g><title>unlock_up (39 samples, 0.01%)</title><rect x="57.5773%" y="613" width="0.0101%" height="15" fill="rgb(209,217,32)" fg:x="223321" fg:w="39"/><text x="57.8273%" y="623.50"></text></g><g><title>btrfs_search_slot (209 samples, 0.05%)</title><rect x="57.5337%" y="629" width="0.0539%" height="15" fill="rgb(243,203,50)" fg:x="223152" fg:w="209"/><text x="57.7837%" y="639.50"></text></g><g><title>btrfs_del_orphan_item (231 samples, 0.06%)</title><rect x="57.5283%" y="645" width="0.0596%" height="15" fill="rgb(232,152,27)" fg:x="223131" fg:w="231"/><text x="57.7783%" y="655.50"></text></g><g><title>btrfs_del_items (79 samples, 0.02%)</title><rect x="57.6075%" y="629" width="0.0204%" height="15" fill="rgb(240,34,29)" fg:x="223438" fg:w="79"/><text x="57.8575%" y="639.50"></text></g><g><title>rwsem_optimistic_spin (60 samples, 0.02%)</title><rect x="57.6464%" y="549" width="0.0155%" height="15" fill="rgb(215,185,52)" fg:x="223589" fg:w="60"/><text x="57.8964%" y="559.50"></text></g><g><title>btrfs_lock_root_node (80 samples, 0.02%)</title><rect x="57.6454%" y="613" width="0.0206%" height="15" fill="rgb(240,89,49)" fg:x="223585" fg:w="80"/><text x="57.8954%" y="623.50"></text></g><g><title>__btrfs_tree_lock (80 samples, 0.02%)</title><rect x="57.6454%" y="597" width="0.0206%" height="15" fill="rgb(225,12,52)" fg:x="223585" fg:w="80"/><text x="57.8954%" y="607.50"></text></g><g><title>down_write (80 samples, 0.02%)</title><rect x="57.6454%" y="581" width="0.0206%" height="15" fill="rgb(239,128,45)" fg:x="223585" fg:w="80"/><text x="57.8954%" y="591.50"></text></g><g><title>rwsem_down_write_slowpath (78 samples, 0.02%)</title><rect x="57.6459%" y="565" width="0.0201%" height="15" fill="rgb(211,78,47)" fg:x="223587" fg:w="78"/><text x="57.8959%" y="575.50"></text></g><g><title>btrfs_search_slot (231 samples, 0.06%)</title><rect x="57.6389%" y="629" width="0.0596%" height="15" fill="rgb(232,31,21)" fg:x="223560" fg:w="231"/><text x="57.8889%" y="639.50"></text></g><g><title>btrfs_truncate_inode_items (401 samples, 0.10%)</title><rect x="57.6002%" y="645" width="0.1034%" height="15" fill="rgb(222,168,14)" fg:x="223410" fg:w="401"/><text x="57.8502%" y="655.50"></text></g><g><title>__pagevec_release (43 samples, 0.01%)</title><rect x="57.7155%" y="597" width="0.0111%" height="15" fill="rgb(209,128,24)" fg:x="223857" fg:w="43"/><text x="57.9655%" y="607.50"></text></g><g><title>evict_inode_truncate_pages (135 samples, 0.03%)</title><rect x="57.7039%" y="645" width="0.0348%" height="15" fill="rgb(249,35,13)" fg:x="223812" fg:w="135"/><text x="57.9539%" y="655.50"></text></g><g><title>truncate_inode_pages_final (94 samples, 0.02%)</title><rect x="57.7145%" y="629" width="0.0242%" height="15" fill="rgb(218,7,2)" fg:x="223853" fg:w="94"/><text x="57.9645%" y="639.50"></text></g><g><title>truncate_inode_pages_range (92 samples, 0.02%)</title><rect x="57.7150%" y="613" width="0.0237%" height="15" fill="rgb(238,107,27)" fg:x="223855" fg:w="92"/><text x="57.9650%" y="623.50"></text></g><g><title>btrfs_evict_inode (1,333 samples, 0.34%)</title><rect x="57.4048%" y="661" width="0.3437%" height="15" fill="rgb(217,88,38)" fg:x="222652" fg:w="1333"/><text x="57.6548%" y="671.50"></text></g><g><title>destroy_inode (78 samples, 0.02%)</title><rect x="57.7495%" y="661" width="0.0201%" height="15" fill="rgb(230,207,0)" fg:x="223989" fg:w="78"/><text x="57.9995%" y="671.50"></text></g><g><title>iput (1,431 samples, 0.37%)</title><rect x="57.4025%" y="693" width="0.3689%" height="15" fill="rgb(249,64,54)" fg:x="222643" fg:w="1431"/><text x="57.6525%" y="703.50"></text></g><g><title>evict (1,428 samples, 0.37%)</title><rect x="57.4033%" y="677" width="0.3682%" height="15" fill="rgb(231,7,11)" fg:x="222646" fg:w="1428"/><text x="57.6533%" y="687.50"></text></g><g><title>btrfs_del_dir_entries_in_log (70 samples, 0.02%)</title><rect x="57.7779%" y="645" width="0.0180%" height="15" fill="rgb(205,149,21)" fg:x="224099" fg:w="70"/><text x="58.0279%" y="655.50"></text></g><g><title>btrfs_del_inode_ref (68 samples, 0.02%)</title><rect x="57.7959%" y="629" width="0.0175%" height="15" fill="rgb(215,126,34)" fg:x="224169" fg:w="68"/><text x="58.0459%" y="639.50"></text></g><g><title>btrfs_del_inode_ref_in_log (72 samples, 0.02%)</title><rect x="57.7959%" y="645" width="0.0186%" height="15" fill="rgb(241,132,45)" fg:x="224169" fg:w="72"/><text x="58.0459%" y="655.50"></text></g><g><title>btrfs_del_items (134 samples, 0.03%)</title><rect x="57.8245%" y="629" width="0.0345%" height="15" fill="rgb(252,69,32)" fg:x="224280" fg:w="134"/><text x="58.0745%" y="639.50"></text></g><g><title>btrfs_delete_one_dir_name (140 samples, 0.04%)</title><rect x="57.8245%" y="645" width="0.0361%" height="15" fill="rgb(232,204,19)" fg:x="224280" fg:w="140"/><text x="58.0745%" y="655.50"></text></g><g><title>rwsem_optimistic_spin (58 samples, 0.01%)</title><rect x="57.8789%" y="549" width="0.0150%" height="15" fill="rgb(249,15,47)" fg:x="224491" fg:w="58"/><text x="58.1289%" y="559.50"></text></g><g><title>rwsem_down_write_slowpath (71 samples, 0.02%)</title><rect x="57.8787%" y="565" width="0.0183%" height="15" fill="rgb(209,227,23)" fg:x="224490" fg:w="71"/><text x="58.1287%" y="575.50"></text></g><g><title>__btrfs_tree_lock (72 samples, 0.02%)</title><rect x="57.8787%" y="597" width="0.0186%" height="15" fill="rgb(248,92,24)" fg:x="224490" fg:w="72"/><text x="58.1287%" y="607.50"></text></g><g><title>down_write (72 samples, 0.02%)</title><rect x="57.8787%" y="581" width="0.0186%" height="15" fill="rgb(247,59,2)" fg:x="224490" fg:w="72"/><text x="58.1287%" y="591.50"></text></g><g><title>btrfs_lock_root_node (73 samples, 0.02%)</title><rect x="57.8787%" y="613" width="0.0188%" height="15" fill="rgb(221,30,5)" fg:x="224490" fg:w="73"/><text x="58.1287%" y="623.50"></text></g><g><title>btrfs_tree_unlock (46 samples, 0.01%)</title><rect x="57.9297%" y="597" width="0.0119%" height="15" fill="rgb(208,108,53)" fg:x="224688" fg:w="46"/><text x="58.1797%" y="607.50"></text></g><g><title>up_write (46 samples, 0.01%)</title><rect x="57.9297%" y="581" width="0.0119%" height="15" fill="rgb(211,183,26)" fg:x="224688" fg:w="46"/><text x="58.1797%" y="591.50"></text></g><g><title>rwsem_wake.isra.0 (46 samples, 0.01%)</title><rect x="57.9297%" y="565" width="0.0119%" height="15" fill="rgb(232,132,4)" fg:x="224688" fg:w="46"/><text x="58.1797%" y="575.50"></text></g><g><title>wake_up_q (41 samples, 0.01%)</title><rect x="57.9310%" y="549" width="0.0106%" height="15" fill="rgb(253,128,37)" fg:x="224693" fg:w="41"/><text x="58.1810%" y="559.50"></text></g><g><title>try_to_wake_up (40 samples, 0.01%)</title><rect x="57.9313%" y="533" width="0.0103%" height="15" fill="rgb(221,58,24)" fg:x="224694" fg:w="40"/><text x="58.1813%" y="543.50"></text></g><g><title>unlock_up (50 samples, 0.01%)</title><rect x="57.9290%" y="613" width="0.0129%" height="15" fill="rgb(230,54,45)" fg:x="224685" fg:w="50"/><text x="58.1790%" y="623.50"></text></g><g><title>btrfs_search_slot (296 samples, 0.08%)</title><rect x="57.8661%" y="629" width="0.0763%" height="15" fill="rgb(254,21,18)" fg:x="224441" fg:w="296"/><text x="58.1161%" y="639.50"></text></g><g><title>btrfs_lookup_dir_item (324 samples, 0.08%)</title><rect x="57.8609%" y="645" width="0.0835%" height="15" fill="rgb(221,108,0)" fg:x="224421" fg:w="324"/><text x="58.1109%" y="655.50"></text></g><g><title>__btrfs_unlink_inode (672 samples, 0.17%)</title><rect x="57.7761%" y="661" width="0.1733%" height="15" fill="rgb(206,95,1)" fg:x="224092" fg:w="672"/><text x="58.0261%" y="671.50"></text></g><g><title>btrfs_search_slot (93 samples, 0.02%)</title><rect x="57.9584%" y="613" width="0.0240%" height="15" fill="rgb(237,52,5)" fg:x="224799" fg:w="93"/><text x="58.2084%" y="623.50"></text></g><g><title>btrfs_insert_empty_items (116 samples, 0.03%)</title><rect x="57.9578%" y="629" width="0.0299%" height="15" fill="rgb(218,150,34)" fg:x="224797" fg:w="116"/><text x="58.2078%" y="639.50"></text></g><g><title>btrfs_orphan_add (134 samples, 0.03%)</title><rect x="57.9542%" y="661" width="0.0345%" height="15" fill="rgb(235,194,28)" fg:x="224783" fg:w="134"/><text x="58.2042%" y="671.50"></text></g><g><title>btrfs_insert_orphan_item (132 samples, 0.03%)</title><rect x="57.9547%" y="645" width="0.0340%" height="15" fill="rgb(245,92,18)" fg:x="224785" fg:w="132"/><text x="58.2047%" y="655.50"></text></g><g><title>btrfs_unlink (870 samples, 0.22%)</title><rect x="57.7761%" y="677" width="0.2243%" height="15" fill="rgb(253,203,53)" fg:x="224092" fg:w="870"/><text x="58.0261%" y="687.50"></text></g><g><title>do_unlinkat (2,372 samples, 0.61%)</title><rect x="57.3937%" y="709" width="0.6116%" height="15" fill="rgb(249,185,47)" fg:x="222609" fg:w="2372"/><text x="57.6437%" y="719.50"></text></g><g><title>vfs_unlink (895 samples, 0.23%)</title><rect x="57.7745%" y="693" width="0.2308%" height="15" fill="rgb(252,194,52)" fg:x="224086" fg:w="895"/><text x="58.0245%" y="703.50"></text></g><g><title>__x64_sys_unlinkat (2,613 samples, 0.67%)</title><rect x="57.3362%" y="725" width="0.6737%" height="15" fill="rgb(210,53,36)" fg:x="222386" fg:w="2613"/><text x="57.5862%" y="735.50"></text></g><g><title>[[falcon_kal]] (48 samples, 0.01%)</title><rect x="58.0146%" y="645" width="0.0124%" height="15" fill="rgb(237,37,25)" fg:x="225017" fg:w="48"/><text x="58.2646%" y="655.50"></text></g><g><title>complete (48 samples, 0.01%)</title><rect x="58.0146%" y="629" width="0.0124%" height="15" fill="rgb(242,116,27)" fg:x="225017" fg:w="48"/><text x="58.2646%" y="639.50"></text></g><g><title>swake_up_locked (44 samples, 0.01%)</title><rect x="58.0156%" y="613" width="0.0113%" height="15" fill="rgb(213,185,26)" fg:x="225021" fg:w="44"/><text x="58.2656%" y="623.50"></text></g><g><title>wake_up_process (43 samples, 0.01%)</title><rect x="58.0158%" y="597" width="0.0111%" height="15" fill="rgb(225,204,8)" fg:x="225022" fg:w="43"/><text x="58.2658%" y="607.50"></text></g><g><title>try_to_wake_up (42 samples, 0.01%)</title><rect x="58.0161%" y="581" width="0.0108%" height="15" fill="rgb(254,111,37)" fg:x="225023" fg:w="42"/><text x="58.2661%" y="591.50"></text></g><g><title>_ZdlPv (55 samples, 0.01%)</title><rect x="58.0133%" y="677" width="0.0142%" height="15" fill="rgb(242,35,9)" fg:x="225012" fg:w="55"/><text x="58.2633%" y="687.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (50 samples, 0.01%)</title><rect x="58.0146%" y="661" width="0.0129%" height="15" fill="rgb(232,138,49)" fg:x="225017" fg:w="50"/><text x="58.2646%" y="671.50"></text></g><g><title>_ZdlPv (62 samples, 0.02%)</title><rect x="58.0122%" y="709" width="0.0160%" height="15" fill="rgb(247,56,4)" fg:x="225008" fg:w="62"/><text x="58.2622%" y="719.50"></text></g><g><title>_ZdlPv (60 samples, 0.02%)</title><rect x="58.0128%" y="693" width="0.0155%" height="15" fill="rgb(226,179,17)" fg:x="225010" fg:w="60"/><text x="58.2628%" y="703.50"></text></g><g><title>cshook_systemcalltable_post_unlinkat (87 samples, 0.02%)</title><rect x="58.0109%" y="725" width="0.0224%" height="15" fill="rgb(216,163,45)" fg:x="225003" fg:w="87"/><text x="58.2609%" y="735.50"></text></g><g><title>[[falcon_kal]] (76 samples, 0.02%)</title><rect x="58.0401%" y="677" width="0.0196%" height="15" fill="rgb(211,157,3)" fg:x="225116" fg:w="76"/><text x="58.2901%" y="687.50"></text></g><g><title>user_path_at_empty (61 samples, 0.02%)</title><rect x="58.0439%" y="661" width="0.0157%" height="15" fill="rgb(234,44,20)" fg:x="225131" fg:w="61"/><text x="58.2939%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (64 samples, 0.02%)</title><rect x="58.0607%" y="677" width="0.0165%" height="15" fill="rgb(254,138,23)" fg:x="225196" fg:w="64"/><text x="58.3107%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,918 samples, 0.75%)</title><rect x="57.3311%" y="773" width="0.7523%" height="15" fill="rgb(206,119,39)" fg:x="222366" fg:w="2918"/><text x="57.5811%" y="783.50"></text></g><g><title>do_syscall_64 (2,916 samples, 0.75%)</title><rect x="57.3316%" y="757" width="0.7518%" height="15" fill="rgb(231,105,52)" fg:x="222368" fg:w="2916"/><text x="57.5816%" y="767.50"></text></g><g><title>unload_network_ops_symbols (2,900 samples, 0.75%)</title><rect x="57.3357%" y="741" width="0.7477%" height="15" fill="rgb(250,20,5)" fg:x="222384" fg:w="2900"/><text x="57.5857%" y="751.50"></text></g><g><title>cshook_systemcalltable_pre_unlinkat (194 samples, 0.05%)</title><rect x="58.0334%" y="725" width="0.0500%" height="15" fill="rgb(215,198,30)" fg:x="225090" fg:w="194"/><text x="58.2834%" y="735.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (194 samples, 0.05%)</title><rect x="58.0334%" y="709" width="0.0500%" height="15" fill="rgb(246,142,8)" fg:x="225090" fg:w="194"/><text x="58.2834%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (169 samples, 0.04%)</title><rect x="58.0398%" y="693" width="0.0436%" height="15" fill="rgb(243,26,38)" fg:x="225115" fg:w="169"/><text x="58.2898%" y="703.50"></text></g><g><title>__GI_unlinkat (2,924 samples, 0.75%)</title><rect x="57.3303%" y="789" width="0.7539%" height="15" fill="rgb(205,133,28)" fg:x="222363" fg:w="2924"/><text x="57.5803%" y="799.50"></text></g><g><title>inode_permission (58 samples, 0.01%)</title><rect x="58.1118%" y="629" width="0.0150%" height="15" fill="rgb(212,34,0)" fg:x="225394" fg:w="58"/><text x="58.3618%" y="639.50"></text></g><g><title>lookup_fast (86 samples, 0.02%)</title><rect x="58.1298%" y="613" width="0.0222%" height="15" fill="rgb(251,226,22)" fg:x="225464" fg:w="86"/><text x="58.3798%" y="623.50"></text></g><g><title>__d_lookup_rcu (81 samples, 0.02%)</title><rect x="58.1311%" y="597" width="0.0209%" height="15" fill="rgb(252,119,9)" fg:x="225469" fg:w="81"/><text x="58.3811%" y="607.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (199 samples, 0.05%)</title><rect x="58.1035%" y="645" width="0.0513%" height="15" fill="rgb(213,150,50)" fg:x="225362" fg:w="199"/><text x="58.3535%" y="655.50"></text></g><g><title>walk_component (105 samples, 0.03%)</title><rect x="58.1277%" y="629" width="0.0271%" height="15" fill="rgb(212,24,39)" fg:x="225456" fg:w="105"/><text x="58.3777%" y="639.50"></text></g><g><title>filename_lookup (277 samples, 0.07%)</title><rect x="58.0986%" y="677" width="0.0714%" height="15" fill="rgb(213,46,39)" fg:x="225343" fg:w="277"/><text x="58.3486%" y="687.50"></text></g><g><title>path_lookupat (275 samples, 0.07%)</title><rect x="58.0991%" y="661" width="0.0709%" height="15" fill="rgb(239,106,12)" fg:x="225345" fg:w="275"/><text x="58.3491%" y="671.50"></text></g><g><title>getname_flags.part.0 (59 samples, 0.02%)</title><rect x="58.1711%" y="661" width="0.0152%" height="15" fill="rgb(249,229,21)" fg:x="225624" fg:w="59"/><text x="58.4211%" y="671.50"></text></g><g><title>getname_flags (60 samples, 0.02%)</title><rect x="58.1711%" y="677" width="0.0155%" height="15" fill="rgb(212,158,3)" fg:x="225624" fg:w="60"/><text x="58.4211%" y="687.50"></text></g><g><title>user_path_at_empty (354 samples, 0.09%)</title><rect x="58.0986%" y="693" width="0.0913%" height="15" fill="rgb(253,26,48)" fg:x="225343" fg:w="354"/><text x="58.3486%" y="703.50"></text></g><g><title>__do_sys_newlstat (410 samples, 0.11%)</title><rect x="58.0878%" y="725" width="0.1057%" height="15" fill="rgb(238,178,20)" fg:x="225301" fg:w="410"/><text x="58.3378%" y="735.50"></text></g><g><title>vfs_statx (384 samples, 0.10%)</title><rect x="58.0945%" y="709" width="0.0990%" height="15" fill="rgb(208,86,15)" fg:x="225327" fg:w="384"/><text x="58.3445%" y="719.50"></text></g><g><title>__x64_sys_newlstat (411 samples, 0.11%)</title><rect x="58.0878%" y="741" width="0.1060%" height="15" fill="rgb(239,42,53)" fg:x="225301" fg:w="411"/><text x="58.3378%" y="751.50"></text></g><g><title>do_syscall_64 (428 samples, 0.11%)</title><rect x="58.0867%" y="757" width="0.1103%" height="15" fill="rgb(245,226,8)" fg:x="225297" fg:w="428"/><text x="58.3367%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (432 samples, 0.11%)</title><rect x="58.0862%" y="773" width="0.1114%" height="15" fill="rgb(216,176,32)" fg:x="225295" fg:w="432"/><text x="58.3362%" y="783.50"></text></g><g><title>___lxstat64 (445 samples, 0.11%)</title><rect x="58.0842%" y="789" width="0.1147%" height="15" fill="rgb(231,186,21)" fg:x="225287" fg:w="445"/><text x="58.3342%" y="799.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (94 samples, 0.02%)</title><rect x="58.2159%" y="645" width="0.0242%" height="15" fill="rgb(205,95,49)" fg:x="225798" fg:w="94"/><text x="58.4659%" y="655.50"></text></g><g><title>walk_component (51 samples, 0.01%)</title><rect x="58.2270%" y="629" width="0.0131%" height="15" fill="rgb(217,145,8)" fg:x="225841" fg:w="51"/><text x="58.4770%" y="639.50"></text></g><g><title>path_lookupat (130 samples, 0.03%)</title><rect x="58.2123%" y="661" width="0.0335%" height="15" fill="rgb(239,144,48)" fg:x="225784" fg:w="130"/><text x="58.4623%" y="671.50"></text></g><g><title>filename_lookup (134 samples, 0.03%)</title><rect x="58.2115%" y="677" width="0.0345%" height="15" fill="rgb(214,189,23)" fg:x="225781" fg:w="134"/><text x="58.4615%" y="687.50"></text></g><g><title>getname_flags.part.0 (40 samples, 0.01%)</title><rect x="58.2463%" y="661" width="0.0103%" height="15" fill="rgb(229,157,17)" fg:x="225916" fg:w="40"/><text x="58.4963%" y="671.50"></text></g><g><title>getname_flags (43 samples, 0.01%)</title><rect x="58.2461%" y="677" width="0.0111%" height="15" fill="rgb(230,5,48)" fg:x="225915" fg:w="43"/><text x="58.4961%" y="687.50"></text></g><g><title>user_path_at_empty (183 samples, 0.05%)</title><rect x="58.2115%" y="693" width="0.0472%" height="15" fill="rgb(224,156,48)" fg:x="225781" fg:w="183"/><text x="58.4615%" y="703.50"></text></g><g><title>__do_sys_newstat (230 samples, 0.06%)</title><rect x="58.2015%" y="725" width="0.0593%" height="15" fill="rgb(223,14,29)" fg:x="225742" fg:w="230"/><text x="58.4515%" y="735.50"></text></g><g><title>vfs_statx (207 samples, 0.05%)</title><rect x="58.2074%" y="709" width="0.0534%" height="15" fill="rgb(229,96,36)" fg:x="225765" fg:w="207"/><text x="58.4574%" y="719.50"></text></g><g><title>__x64_sys_newstat (231 samples, 0.06%)</title><rect x="58.2015%" y="741" width="0.0596%" height="15" fill="rgb(231,102,53)" fg:x="225742" fg:w="231"/><text x="58.4515%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (238 samples, 0.06%)</title><rect x="58.2004%" y="773" width="0.0614%" height="15" fill="rgb(210,77,38)" fg:x="225738" fg:w="238"/><text x="58.4504%" y="783.50"></text></g><g><title>do_syscall_64 (238 samples, 0.06%)</title><rect x="58.2004%" y="757" width="0.0614%" height="15" fill="rgb(235,131,6)" fg:x="225738" fg:w="238"/><text x="58.4504%" y="767.50"></text></g><g><title>___xstat64 (246 samples, 0.06%)</title><rect x="58.1989%" y="789" width="0.0634%" height="15" fill="rgb(252,55,38)" fg:x="225732" fg:w="246"/><text x="58.4489%" y="799.50"></text></g><g><title>_int_free (43 samples, 0.01%)</title><rect x="58.2762%" y="757" width="0.0111%" height="15" fill="rgb(246,38,14)" fg:x="226032" fg:w="43"/><text x="58.5262%" y="767.50"></text></g><g><title>__closedir (66 samples, 0.02%)</title><rect x="58.2713%" y="789" width="0.0170%" height="15" fill="rgb(242,27,5)" fg:x="226013" fg:w="66"/><text x="58.5213%" y="799.50"></text></g><g><title>__GI___libc_free (57 samples, 0.01%)</title><rect x="58.2737%" y="773" width="0.0147%" height="15" fill="rgb(228,65,35)" fg:x="226022" fg:w="57"/><text x="58.5237%" y="783.50"></text></g><g><title>__x64_sys_openat (41 samples, 0.01%)</title><rect x="58.2946%" y="725" width="0.0106%" height="15" fill="rgb(245,93,11)" fg:x="226103" fg:w="41"/><text x="58.5446%" y="735.50"></text></g><g><title>do_sys_openat2 (41 samples, 0.01%)</title><rect x="58.2946%" y="709" width="0.0106%" height="15" fill="rgb(213,1,31)" fg:x="226103" fg:w="41"/><text x="58.5446%" y="719.50"></text></g><g><title>do_filp_open (41 samples, 0.01%)</title><rect x="58.2946%" y="693" width="0.0106%" height="15" fill="rgb(237,205,14)" fg:x="226103" fg:w="41"/><text x="58.5446%" y="703.50"></text></g><g><title>path_openat (41 samples, 0.01%)</title><rect x="58.2946%" y="677" width="0.0106%" height="15" fill="rgb(232,118,45)" fg:x="226103" fg:w="41"/><text x="58.5446%" y="687.50"></text></g><g><title>__libc_open64 (54 samples, 0.01%)</title><rect x="58.2946%" y="789" width="0.0139%" height="15" fill="rgb(218,5,6)" fg:x="226103" fg:w="54"/><text x="58.5446%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (54 samples, 0.01%)</title><rect x="58.2946%" y="773" width="0.0139%" height="15" fill="rgb(251,87,51)" fg:x="226103" fg:w="54"/><text x="58.5446%" y="783.50"></text></g><g><title>do_syscall_64 (54 samples, 0.01%)</title><rect x="58.2946%" y="757" width="0.0139%" height="15" fill="rgb(207,225,20)" fg:x="226103" fg:w="54"/><text x="58.5446%" y="767.50"></text></g><g><title>unload_network_ops_symbols (54 samples, 0.01%)</title><rect x="58.2946%" y="741" width="0.0139%" height="15" fill="rgb(222,78,54)" fg:x="226103" fg:w="54"/><text x="58.5446%" y="751.50"></text></g><g><title>__libc_openat64 (52 samples, 0.01%)</title><rect x="58.3085%" y="789" width="0.0134%" height="15" fill="rgb(232,85,16)" fg:x="226157" fg:w="52"/><text x="58.5585%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.01%)</title><rect x="58.3100%" y="773" width="0.0119%" height="15" fill="rgb(244,25,33)" fg:x="226163" fg:w="46"/><text x="58.5600%" y="783.50"></text></g><g><title>do_syscall_64 (46 samples, 0.01%)</title><rect x="58.3100%" y="757" width="0.0119%" height="15" fill="rgb(233,24,36)" fg:x="226163" fg:w="46"/><text x="58.5600%" y="767.50"></text></g><g><title>unload_network_ops_symbols (45 samples, 0.01%)</title><rect x="58.3103%" y="741" width="0.0116%" height="15" fill="rgb(253,49,54)" fg:x="226164" fg:w="45"/><text x="58.5603%" y="751.50"></text></g><g><title>get_obj_cgroup_from_current (52 samples, 0.01%)</title><rect x="58.4201%" y="597" width="0.0134%" height="15" fill="rgb(245,12,22)" fg:x="226590" fg:w="52"/><text x="58.6701%" y="607.50"></text></g><g><title>memcg_slab_post_alloc_hook (47 samples, 0.01%)</title><rect x="58.4335%" y="597" width="0.0121%" height="15" fill="rgb(253,141,28)" fg:x="226642" fg:w="47"/><text x="58.6835%" y="607.50"></text></g><g><title>kmem_cache_alloc (162 samples, 0.04%)</title><rect x="58.4085%" y="613" width="0.0418%" height="15" fill="rgb(225,207,27)" fg:x="226545" fg:w="162"/><text x="58.6585%" y="623.50"></text></g><g><title>__alloc_file (271 samples, 0.07%)</title><rect x="58.3969%" y="629" width="0.0699%" height="15" fill="rgb(220,84,2)" fg:x="226500" fg:w="271"/><text x="58.6469%" y="639.50"></text></g><g><title>security_file_alloc (58 samples, 0.01%)</title><rect x="58.4518%" y="613" width="0.0150%" height="15" fill="rgb(224,37,37)" fg:x="226713" fg:w="58"/><text x="58.7018%" y="623.50"></text></g><g><title>alloc_empty_file (280 samples, 0.07%)</title><rect x="58.3961%" y="645" width="0.0722%" height="15" fill="rgb(220,143,18)" fg:x="226497" fg:w="280"/><text x="58.6461%" y="655.50"></text></g><g><title>complete_walk (48 samples, 0.01%)</title><rect x="58.4725%" y="629" width="0.0124%" height="15" fill="rgb(210,88,33)" fg:x="226793" fg:w="48"/><text x="58.7225%" y="639.50"></text></g><g><title>ima_file_check (52 samples, 0.01%)</title><rect x="58.4851%" y="629" width="0.0134%" height="15" fill="rgb(219,87,51)" fg:x="226842" fg:w="52"/><text x="58.7351%" y="639.50"></text></g><g><title>security_task_getsecid_subj (42 samples, 0.01%)</title><rect x="58.4877%" y="613" width="0.0108%" height="15" fill="rgb(211,7,35)" fg:x="226852" fg:w="42"/><text x="58.7377%" y="623.50"></text></g><g><title>may_open (73 samples, 0.02%)</title><rect x="58.4985%" y="629" width="0.0188%" height="15" fill="rgb(232,77,2)" fg:x="226894" fg:w="73"/><text x="58.7485%" y="639.50"></text></g><g><title>kmem_cache_alloc_trace (83 samples, 0.02%)</title><rect x="58.5377%" y="581" width="0.0214%" height="15" fill="rgb(249,94,25)" fg:x="227046" fg:w="83"/><text x="58.7877%" y="591.50"></text></g><g><title>memset_erms (67 samples, 0.02%)</title><rect x="58.5591%" y="581" width="0.0173%" height="15" fill="rgb(215,112,2)" fg:x="227129" fg:w="67"/><text x="58.8091%" y="591.50"></text></g><g><title>btrfs_opendir (173 samples, 0.04%)</title><rect x="58.5328%" y="597" width="0.0446%" height="15" fill="rgb(226,115,48)" fg:x="227027" fg:w="173"/><text x="58.7828%" y="607.50"></text></g><g><title>pinnedhook_security_file_open (41 samples, 0.01%)</title><rect x="58.6145%" y="581" width="0.0106%" height="15" fill="rgb(249,196,10)" fg:x="227344" fg:w="41"/><text x="58.8645%" y="591.50"></text></g><g><title>do_dentry_open (402 samples, 0.10%)</title><rect x="58.5220%" y="613" width="0.1036%" height="15" fill="rgb(237,109,14)" fg:x="226985" fg:w="402"/><text x="58.7720%" y="623.50"></text></g><g><title>security_file_open (136 samples, 0.04%)</title><rect x="58.5905%" y="597" width="0.0351%" height="15" fill="rgb(217,103,53)" fg:x="227251" fg:w="136"/><text x="58.8405%" y="607.50"></text></g><g><title>do_open (638 samples, 0.16%)</title><rect x="58.4691%" y="645" width="0.1645%" height="15" fill="rgb(244,137,9)" fg:x="226780" fg:w="638"/><text x="58.7191%" y="655.50"></text></g><g><title>vfs_open (446 samples, 0.11%)</title><rect x="58.5186%" y="629" width="0.1150%" height="15" fill="rgb(227,201,3)" fg:x="226972" fg:w="446"/><text x="58.7686%" y="639.50"></text></g><g><title>inode_permission (190 samples, 0.05%)</title><rect x="58.6893%" y="629" width="0.0490%" height="15" fill="rgb(243,94,6)" fg:x="227634" fg:w="190"/><text x="58.9393%" y="639.50"></text></g><g><title>__d_lookup_rcu (281 samples, 0.07%)</title><rect x="58.7695%" y="597" width="0.0724%" height="15" fill="rgb(235,118,5)" fg:x="227945" fg:w="281"/><text x="59.0195%" y="607.50"></text></g><g><title>lookup_fast (327 samples, 0.08%)</title><rect x="58.7579%" y="613" width="0.0843%" height="15" fill="rgb(247,10,30)" fg:x="227900" fg:w="327"/><text x="59.0079%" y="623.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (876 samples, 0.23%)</title><rect x="58.6357%" y="645" width="0.2259%" height="15" fill="rgb(205,26,28)" fg:x="227426" fg:w="876"/><text x="58.8857%" y="655.50"></text></g><g><title>walk_component (460 samples, 0.12%)</title><rect x="58.7429%" y="629" width="0.1186%" height="15" fill="rgb(206,99,35)" fg:x="227842" fg:w="460"/><text x="58.9929%" y="639.50"></text></g><g><title>step_into (75 samples, 0.02%)</title><rect x="58.8422%" y="613" width="0.0193%" height="15" fill="rgb(238,130,40)" fg:x="228227" fg:w="75"/><text x="59.0922%" y="623.50"></text></g><g><title>lookup_fast (77 samples, 0.02%)</title><rect x="58.8682%" y="629" width="0.0199%" height="15" fill="rgb(224,126,31)" fg:x="228328" fg:w="77"/><text x="59.1182%" y="639.50"></text></g><g><title>__d_lookup_rcu (70 samples, 0.02%)</title><rect x="58.8700%" y="613" width="0.0180%" height="15" fill="rgb(254,105,17)" fg:x="228335" fg:w="70"/><text x="59.1200%" y="623.50"></text></g><g><title>open_last_lookups (92 samples, 0.02%)</title><rect x="58.8664%" y="645" width="0.0237%" height="15" fill="rgb(216,87,36)" fg:x="228321" fg:w="92"/><text x="59.1164%" y="655.50"></text></g><g><title>path_openat (1,979 samples, 0.51%)</title><rect x="58.3948%" y="661" width="0.5102%" height="15" fill="rgb(240,21,12)" fg:x="226492" fg:w="1979"/><text x="58.6448%" y="671.50"></text></g><g><title>do_filp_open (2,025 samples, 0.52%)</title><rect x="58.3850%" y="677" width="0.5221%" height="15" fill="rgb(245,192,34)" fg:x="226454" fg:w="2025"/><text x="58.6350%" y="687.50"></text></g><g><title>get_unused_fd_flags (70 samples, 0.02%)</title><rect x="58.9115%" y="677" width="0.0180%" height="15" fill="rgb(226,100,49)" fg:x="228496" fg:w="70"/><text x="59.1615%" y="687.50"></text></g><g><title>memset_erms (61 samples, 0.02%)</title><rect x="58.9450%" y="645" width="0.0157%" height="15" fill="rgb(245,188,27)" fg:x="228626" fg:w="61"/><text x="59.1950%" y="655.50"></text></g><g><title>getname_flags.part.0 (199 samples, 0.05%)</title><rect x="58.9314%" y="661" width="0.0513%" height="15" fill="rgb(212,170,8)" fg:x="228573" fg:w="199"/><text x="59.1814%" y="671.50"></text></g><g><title>strncpy_from_user (84 samples, 0.02%)</title><rect x="58.9610%" y="645" width="0.0217%" height="15" fill="rgb(217,113,29)" fg:x="228688" fg:w="84"/><text x="59.2110%" y="655.50"></text></g><g><title>__check_object_size (47 samples, 0.01%)</title><rect x="58.9706%" y="629" width="0.0121%" height="15" fill="rgb(237,30,3)" fg:x="228725" fg:w="47"/><text x="59.2206%" y="639.50"></text></g><g><title>getname (207 samples, 0.05%)</title><rect x="58.9296%" y="677" width="0.0534%" height="15" fill="rgb(227,19,28)" fg:x="228566" fg:w="207"/><text x="59.1796%" y="687.50"></text></g><g><title>do_sys_openat2 (2,374 samples, 0.61%)</title><rect x="58.3814%" y="693" width="0.6121%" height="15" fill="rgb(239,172,45)" fg:x="226440" fg:w="2374"/><text x="58.6314%" y="703.50"></text></g><g><title>putname (39 samples, 0.01%)</title><rect x="58.9835%" y="677" width="0.0101%" height="15" fill="rgb(254,55,39)" fg:x="228775" fg:w="39"/><text x="59.2335%" y="687.50"></text></g><g><title>__x64_sys_openat (2,449 samples, 0.63%)</title><rect x="58.3711%" y="709" width="0.6314%" height="15" fill="rgb(249,208,12)" fg:x="226400" fg:w="2449"/><text x="58.6211%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (53 samples, 0.01%)</title><rect x="59.0407%" y="661" width="0.0137%" height="15" fill="rgb(240,52,13)" fg:x="228997" fg:w="53"/><text x="59.2907%" y="671.50"></text></g><g><title>__cond_resched (77 samples, 0.02%)</title><rect x="59.1064%" y="581" width="0.0199%" height="15" fill="rgb(252,149,13)" fg:x="229252" fg:w="77"/><text x="59.3564%" y="591.50"></text></g><g><title>__schedule (70 samples, 0.02%)</title><rect x="59.1082%" y="565" width="0.0180%" height="15" fill="rgb(232,81,48)" fg:x="229259" fg:w="70"/><text x="59.3582%" y="575.50"></text></g><g><title>[[falcon_kal]] (205 samples, 0.05%)</title><rect x="59.0737%" y="613" width="0.0529%" height="15" fill="rgb(222,144,2)" fg:x="229125" fg:w="205"/><text x="59.3237%" y="623.50"></text></g><g><title>down_read (201 samples, 0.05%)</title><rect x="59.0747%" y="597" width="0.0518%" height="15" fill="rgb(216,81,32)" fg:x="229129" fg:w="201"/><text x="59.3247%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (296 samples, 0.08%)</title><rect x="59.0544%" y="645" width="0.0763%" height="15" fill="rgb(244,78,51)" fg:x="229050" fg:w="296"/><text x="59.3044%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (248 samples, 0.06%)</title><rect x="59.0667%" y="629" width="0.0639%" height="15" fill="rgb(217,66,21)" fg:x="229098" fg:w="248"/><text x="59.3167%" y="639.50"></text></g><g><title>cshook_security_file_free_security (307 samples, 0.08%)</title><rect x="59.0544%" y="661" width="0.0792%" height="15" fill="rgb(247,101,42)" fg:x="229050" fg:w="307"/><text x="59.3044%" y="671.50"></text></g><g><title>cshook_security_file_free_security (422 samples, 0.11%)</title><rect x="59.0252%" y="693" width="0.1088%" height="15" fill="rgb(227,81,39)" fg:x="228937" fg:w="422"/><text x="59.2752%" y="703.50"></text></g><g><title>cshook_security_file_free_security (394 samples, 0.10%)</title><rect x="59.0324%" y="677" width="0.1016%" height="15" fill="rgb(220,223,44)" fg:x="228965" fg:w="394"/><text x="59.2824%" y="687.50"></text></g><g><title>[[falcon_kal]] (79 samples, 0.02%)</title><rect x="59.1474%" y="677" width="0.0204%" height="15" fill="rgb(205,218,2)" fg:x="229411" fg:w="79"/><text x="59.3974%" y="687.50"></text></g><g><title>select_idle_sibling (43 samples, 0.01%)</title><rect x="59.2361%" y="533" width="0.0111%" height="15" fill="rgb(212,207,28)" fg:x="229755" fg:w="43"/><text x="59.4861%" y="543.50"></text></g><g><title>select_task_rq_fair (73 samples, 0.02%)</title><rect x="59.2307%" y="549" width="0.0188%" height="15" fill="rgb(224,12,41)" fg:x="229734" fg:w="73"/><text x="59.4807%" y="559.50"></text></g><g><title>enqueue_entity (50 samples, 0.01%)</title><rect x="59.2570%" y="501" width="0.0129%" height="15" fill="rgb(216,118,12)" fg:x="229836" fg:w="50"/><text x="59.5070%" y="511.50"></text></g><g><title>enqueue_task_fair (76 samples, 0.02%)</title><rect x="59.2526%" y="517" width="0.0196%" height="15" fill="rgb(252,97,46)" fg:x="229819" fg:w="76"/><text x="59.5026%" y="527.50"></text></g><g><title>enqueue_task (126 samples, 0.03%)</title><rect x="59.2506%" y="533" width="0.0325%" height="15" fill="rgb(244,206,19)" fg:x="229811" fg:w="126"/><text x="59.5006%" y="543.50"></text></g><g><title>check_preempt_curr (43 samples, 0.01%)</title><rect x="59.2841%" y="517" width="0.0111%" height="15" fill="rgb(231,84,31)" fg:x="229941" fg:w="43"/><text x="59.5341%" y="527.50"></text></g><g><title>ttwu_do_activate (177 samples, 0.05%)</title><rect x="59.2500%" y="549" width="0.0456%" height="15" fill="rgb(244,133,0)" fg:x="229809" fg:w="177"/><text x="59.5000%" y="559.50"></text></g><g><title>ttwu_do_wakeup (48 samples, 0.01%)</title><rect x="59.2833%" y="533" width="0.0124%" height="15" fill="rgb(223,15,50)" fg:x="229938" fg:w="48"/><text x="59.5333%" y="543.50"></text></g><g><title>swake_up_locked (339 samples, 0.09%)</title><rect x="59.2142%" y="597" width="0.0874%" height="15" fill="rgb(250,118,49)" fg:x="229670" fg:w="339"/><text x="59.4642%" y="607.50"></text></g><g><title>wake_up_process (331 samples, 0.09%)</title><rect x="59.2163%" y="581" width="0.0853%" height="15" fill="rgb(248,25,38)" fg:x="229678" fg:w="331"/><text x="59.4663%" y="591.50"></text></g><g><title>try_to_wake_up (319 samples, 0.08%)</title><rect x="59.2194%" y="565" width="0.0822%" height="15" fill="rgb(215,70,14)" fg:x="229690" fg:w="319"/><text x="59.4694%" y="575.50"></text></g><g><title>complete (374 samples, 0.10%)</title><rect x="59.2054%" y="613" width="0.0964%" height="15" fill="rgb(215,28,15)" fg:x="229636" fg:w="374"/><text x="59.4554%" y="623.50"></text></g><g><title>[[falcon_kal]] (381 samples, 0.10%)</title><rect x="59.2042%" y="629" width="0.0982%" height="15" fill="rgb(243,6,28)" fg:x="229631" fg:w="381"/><text x="59.4542%" y="639.50"></text></g><g><title>_ZdlPv (487 samples, 0.13%)</title><rect x="59.1858%" y="661" width="0.1256%" height="15" fill="rgb(222,130,1)" fg:x="229560" fg:w="487"/><text x="59.4358%" y="671.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (440 samples, 0.11%)</title><rect x="59.1980%" y="645" width="0.1134%" height="15" fill="rgb(236,166,44)" fg:x="229607" fg:w="440"/><text x="59.4480%" y="655.50"></text></g><g><title>_ZdlPv (622 samples, 0.16%)</title><rect x="59.1678%" y="677" width="0.1604%" height="15" fill="rgb(221,108,14)" fg:x="229490" fg:w="622"/><text x="59.4178%" y="687.50"></text></g><g><title>__kmalloc (47 samples, 0.01%)</title><rect x="59.3537%" y="645" width="0.0121%" height="15" fill="rgb(252,3,45)" fg:x="230211" fg:w="47"/><text x="59.6037%" y="655.50"></text></g><g><title>copy_from_kernel_nofault (160 samples, 0.04%)</title><rect x="59.3998%" y="581" width="0.0413%" height="15" fill="rgb(237,68,30)" fg:x="230390" fg:w="160"/><text x="59.6498%" y="591.50"></text></g><g><title>copy_from_kernel_nofault_allowed (45 samples, 0.01%)</title><rect x="59.4295%" y="565" width="0.0116%" height="15" fill="rgb(211,79,22)" fg:x="230505" fg:w="45"/><text x="59.6795%" y="575.50"></text></g><g><title>prepend (223 samples, 0.06%)</title><rect x="59.3877%" y="613" width="0.0575%" height="15" fill="rgb(252,185,21)" fg:x="230343" fg:w="223"/><text x="59.6377%" y="623.50"></text></g><g><title>prepend_copy (194 samples, 0.05%)</title><rect x="59.3952%" y="597" width="0.0500%" height="15" fill="rgb(225,189,26)" fg:x="230372" fg:w="194"/><text x="59.6452%" y="607.50"></text></g><g><title>prepend_path (304 samples, 0.08%)</title><rect x="59.3699%" y="629" width="0.0784%" height="15" fill="rgb(241,30,40)" fg:x="230274" fg:w="304"/><text x="59.6199%" y="639.50"></text></g><g><title>d_path (321 samples, 0.08%)</title><rect x="59.3658%" y="645" width="0.0828%" height="15" fill="rgb(235,215,44)" fg:x="230258" fg:w="321"/><text x="59.6158%" y="655.50"></text></g><g><title>[[falcon_kal]] (397 samples, 0.10%)</title><rect x="59.3519%" y="661" width="0.1024%" height="15" fill="rgb(205,8,29)" fg:x="230204" fg:w="397"/><text x="59.6019%" y="671.50"></text></g><g><title>___slab_alloc (68 samples, 0.02%)</title><rect x="59.4710%" y="613" width="0.0175%" height="15" fill="rgb(241,137,42)" fg:x="230666" fg:w="68"/><text x="59.7210%" y="623.50"></text></g><g><title>__kmalloc (109 samples, 0.03%)</title><rect x="59.4635%" y="629" width="0.0281%" height="15" fill="rgb(237,155,2)" fg:x="230637" fg:w="109"/><text x="59.7135%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (313 samples, 0.08%)</title><rect x="59.4555%" y="661" width="0.0807%" height="15" fill="rgb(245,29,42)" fg:x="230606" fg:w="313"/><text x="59.7055%" y="671.50"></text></g><g><title>[[falcon_kal]] (288 samples, 0.07%)</title><rect x="59.4620%" y="645" width="0.0743%" height="15" fill="rgb(234,101,35)" fg:x="230631" fg:w="288"/><text x="59.7120%" y="655.50"></text></g><g><title>memset_erms (172 samples, 0.04%)</title><rect x="59.4919%" y="629" width="0.0443%" height="15" fill="rgb(228,64,37)" fg:x="230747" fg:w="172"/><text x="59.7419%" y="639.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (792 samples, 0.20%)</title><rect x="59.3323%" y="677" width="0.2042%" height="15" fill="rgb(217,214,36)" fg:x="230128" fg:w="792"/><text x="59.5823%" y="687.50"></text></g><g><title>cshook_systemcalltable_post_openat (2,261 samples, 0.58%)</title><rect x="59.0056%" y="709" width="0.5829%" height="15" fill="rgb(243,70,3)" fg:x="228861" fg:w="2261"/><text x="59.2556%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (1,743 samples, 0.45%)</title><rect x="59.1392%" y="693" width="0.4494%" height="15" fill="rgb(253,158,52)" fg:x="229379" fg:w="1743"/><text x="59.3892%" y="703.50"></text></g><g><title>strlen (155 samples, 0.04%)</title><rect x="59.5486%" y="677" width="0.0400%" height="15" fill="rgb(234,111,54)" fg:x="230967" fg:w="155"/><text x="59.7986%" y="687.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (45 samples, 0.01%)</title><rect x="59.5888%" y="693" width="0.0116%" height="15" fill="rgb(217,70,32)" fg:x="231123" fg:w="45"/><text x="59.8388%" y="703.50"></text></g><g><title>cshook_systemcalltable_pre_openat (61 samples, 0.02%)</title><rect x="59.5886%" y="709" width="0.0157%" height="15" fill="rgb(234,18,33)" fg:x="231122" fg:w="61"/><text x="59.8386%" y="719.50"></text></g><g><title>do_syscall_64 (4,940 samples, 1.27%)</title><rect x="58.3374%" y="741" width="1.2736%" height="15" fill="rgb(234,12,49)" fg:x="226269" fg:w="4940"/><text x="58.5874%" y="751.50"></text></g><g><title>unload_network_ops_symbols (4,843 samples, 1.25%)</title><rect x="58.3624%" y="725" width="1.2486%" height="15" fill="rgb(236,10,21)" fg:x="226366" fg:w="4843"/><text x="58.6124%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (4,958 samples, 1.28%)</title><rect x="58.3358%" y="757" width="1.2783%" height="15" fill="rgb(248,182,45)" fg:x="226263" fg:w="4958"/><text x="58.5858%" y="767.50"></text></g><g><title>__GI___open64_nocancel (5,017 samples, 1.29%)</title><rect x="58.3237%" y="773" width="1.2935%" height="15" fill="rgb(217,95,36)" fg:x="226216" fg:w="5017"/><text x="58.5737%" y="783.50"></text></g><g><title>cp_new_stat (51 samples, 0.01%)</title><rect x="59.6296%" y="677" width="0.0131%" height="15" fill="rgb(212,110,31)" fg:x="231281" fg:w="51"/><text x="59.8796%" y="687.50"></text></g><g><title>path_init (62 samples, 0.02%)</title><rect x="59.6860%" y="613" width="0.0160%" height="15" fill="rgb(206,32,53)" fg:x="231500" fg:w="62"/><text x="59.9360%" y="623.50"></text></g><g><title>path_lookupat (120 samples, 0.03%)</title><rect x="59.6775%" y="629" width="0.0309%" height="15" fill="rgb(246,141,37)" fg:x="231467" fg:w="120"/><text x="59.9275%" y="639.50"></text></g><g><title>filename_lookup (143 samples, 0.04%)</title><rect x="59.6729%" y="645" width="0.0369%" height="15" fill="rgb(219,16,7)" fg:x="231449" fg:w="143"/><text x="59.9229%" y="655.50"></text></g><g><title>memset_erms (54 samples, 0.01%)</title><rect x="59.7229%" y="613" width="0.0139%" height="15" fill="rgb(230,205,45)" fg:x="231643" fg:w="54"/><text x="59.9729%" y="623.50"></text></g><g><title>getname_flags.part.0 (161 samples, 0.04%)</title><rect x="59.7115%" y="629" width="0.0415%" height="15" fill="rgb(231,43,49)" fg:x="231599" fg:w="161"/><text x="59.9615%" y="639.50"></text></g><g><title>strncpy_from_user (63 samples, 0.02%)</title><rect x="59.7368%" y="613" width="0.0162%" height="15" fill="rgb(212,106,34)" fg:x="231697" fg:w="63"/><text x="59.9868%" y="623.50"></text></g><g><title>__check_object_size (42 samples, 0.01%)</title><rect x="59.7422%" y="597" width="0.0108%" height="15" fill="rgb(206,83,17)" fg:x="231718" fg:w="42"/><text x="59.9922%" y="607.50"></text></g><g><title>getname_flags (164 samples, 0.04%)</title><rect x="59.7115%" y="645" width="0.0423%" height="15" fill="rgb(244,154,49)" fg:x="231599" fg:w="164"/><text x="59.9615%" y="655.50"></text></g><g><title>user_path_at_empty (338 samples, 0.09%)</title><rect x="59.6724%" y="661" width="0.0871%" height="15" fill="rgb(244,149,49)" fg:x="231447" fg:w="338"/><text x="59.9224%" y="671.50"></text></g><g><title>__do_sys_newfstatat (606 samples, 0.16%)</title><rect x="59.6275%" y="693" width="0.1562%" height="15" fill="rgb(227,134,18)" fg:x="231273" fg:w="606"/><text x="59.8775%" y="703.50"></text></g><g><title>vfs_statx (519 samples, 0.13%)</title><rect x="59.6499%" y="677" width="0.1338%" height="15" fill="rgb(237,116,36)" fg:x="231360" fg:w="519"/><text x="59.8999%" y="687.50"></text></g><g><title>vfs_getattr_nosec (94 samples, 0.02%)</title><rect x="59.7595%" y="661" width="0.0242%" height="15" fill="rgb(205,129,40)" fg:x="231785" fg:w="94"/><text x="60.0095%" y="671.50"></text></g><g><title>btrfs_getattr (68 samples, 0.02%)</title><rect x="59.7662%" y="645" width="0.0175%" height="15" fill="rgb(236,178,4)" fg:x="231811" fg:w="68"/><text x="60.0162%" y="655.50"></text></g><g><title>__x64_sys_newfstatat (612 samples, 0.16%)</title><rect x="59.6275%" y="709" width="0.1578%" height="15" fill="rgb(251,76,53)" fg:x="231273" fg:w="612"/><text x="59.8775%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (655 samples, 0.17%)</title><rect x="59.6200%" y="741" width="0.1689%" height="15" fill="rgb(242,92,40)" fg:x="231244" fg:w="655"/><text x="59.8700%" y="751.50"></text></g><g><title>do_syscall_64 (645 samples, 0.17%)</title><rect x="59.6226%" y="725" width="0.1663%" height="15" fill="rgb(209,45,30)" fg:x="231254" fg:w="645"/><text x="59.8726%" y="735.50"></text></g><g><title>__GI___fstatat64 (681 samples, 0.18%)</title><rect x="59.6182%" y="757" width="0.1756%" height="15" fill="rgb(218,157,36)" fg:x="231237" fg:w="681"/><text x="59.8682%" y="767.50"></text></g><g><title>malloc_consolidate (81 samples, 0.02%)</title><rect x="59.8327%" y="709" width="0.0209%" height="15" fill="rgb(222,186,16)" fg:x="232069" fg:w="81"/><text x="60.0827%" y="719.50"></text></g><g><title>_int_malloc (162 samples, 0.04%)</title><rect x="59.8126%" y="725" width="0.0418%" height="15" fill="rgb(254,72,35)" fg:x="231991" fg:w="162"/><text x="60.0626%" y="735.50"></text></g><g><title>__opendir (5,945 samples, 1.53%)</title><rect x="58.3219%" y="789" width="1.5328%" height="15" fill="rgb(224,25,35)" fg:x="226209" fg:w="5945"/><text x="58.5719%" y="799.50"></text></g><g><title>opendir_tail (921 samples, 0.24%)</title><rect x="59.6172%" y="773" width="0.2375%" height="15" fill="rgb(206,135,52)" fg:x="231233" fg:w="921"/><text x="59.8672%" y="783.50"></text></g><g><title>__alloc_dir (231 samples, 0.06%)</title><rect x="59.7951%" y="757" width="0.0596%" height="15" fill="rgb(229,174,47)" fg:x="231923" fg:w="231"/><text x="60.0451%" y="767.50"></text></g><g><title>__GI___libc_malloc (209 samples, 0.05%)</title><rect x="59.8008%" y="741" width="0.0539%" height="15" fill="rgb(242,184,21)" fg:x="231945" fg:w="209"/><text x="60.0508%" y="751.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (123 samples, 0.03%)</title><rect x="59.8933%" y="773" width="0.0317%" height="15" fill="rgb(213,22,45)" fg:x="232304" fg:w="123"/><text x="60.1433%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (95 samples, 0.02%)</title><rect x="59.9250%" y="773" width="0.0245%" height="15" fill="rgb(237,81,54)" fg:x="232427" fg:w="95"/><text x="60.1750%" y="783.50"></text></g><g><title>[libc.so.6] (64 samples, 0.02%)</title><rect x="59.9495%" y="773" width="0.0165%" height="15" fill="rgb(248,177,18)" fg:x="232522" fg:w="64"/><text x="60.1995%" y="783.50"></text></g><g><title>check_bounds (179 samples, 0.05%)</title><rect x="59.9663%" y="773" width="0.0462%" height="15" fill="rgb(254,31,16)" fg:x="232587" fg:w="179"/><text x="60.2163%" y="783.50"></text></g><g><title>jni_GetByteArrayRegion (598 samples, 0.15%)</title><rect x="59.8637%" y="789" width="0.1542%" height="15" fill="rgb(235,20,31)" fg:x="232189" fg:w="598"/><text x="60.1137%" y="799.50"></text></g><g><title>jni_GetObjectClass (94 samples, 0.02%)</title><rect x="60.0178%" y="789" width="0.0242%" height="15" fill="rgb(240,56,43)" fg:x="232787" fg:w="94"/><text x="60.2678%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (182 samples, 0.05%)</title><rect x="60.0588%" y="773" width="0.0469%" height="15" fill="rgb(237,197,51)" fg:x="232946" fg:w="182"/><text x="60.3088%" y="783.50"></text></g><g><title>AccessBarrierSupport::resolve_unknown_oop_ref_strength (162 samples, 0.04%)</title><rect x="60.0640%" y="757" width="0.0418%" height="15" fill="rgb(241,162,44)" fg:x="232966" fg:w="162"/><text x="60.3140%" y="767.50"></text></g><g><title>java_lang_ref_Reference::is_referent_field (148 samples, 0.04%)</title><rect x="60.0676%" y="741" width="0.0382%" height="15" fill="rgb(224,23,20)" fg:x="232980" fg:w="148"/><text x="60.3176%" y="751.50"></text></g><g><title>HandleMark::pop_and_restore (94 samples, 0.02%)</title><rect x="60.1058%" y="773" width="0.0242%" height="15" fill="rgb(250,109,34)" fg:x="233128" fg:w="94"/><text x="60.3558%" y="783.50"></text></g><g><title>JNIHandles::make_local (175 samples, 0.05%)</title><rect x="60.1300%" y="773" width="0.0451%" height="15" fill="rgb(214,175,50)" fg:x="233222" fg:w="175"/><text x="60.3800%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (77 samples, 0.02%)</title><rect x="60.1761%" y="773" width="0.0199%" height="15" fill="rgb(213,182,5)" fg:x="233401" fg:w="77"/><text x="60.4261%" y="783.50"></text></g><g><title>jni_GetObjectField (689 samples, 0.18%)</title><rect x="60.0421%" y="789" width="0.1776%" height="15" fill="rgb(209,199,19)" fg:x="232881" fg:w="689"/><text x="60.2921%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (92 samples, 0.02%)</title><rect x="60.1960%" y="773" width="0.0237%" height="15" fill="rgb(236,224,42)" fg:x="233478" fg:w="92"/><text x="60.4460%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (82 samples, 0.02%)</title><rect x="60.2594%" y="773" width="0.0211%" height="15" fill="rgb(246,226,29)" fg:x="233724" fg:w="82"/><text x="60.5094%" y="783.50"></text></g><g><title>jni_GetStringLength (377 samples, 0.10%)</title><rect x="60.2197%" y="789" width="0.0972%" height="15" fill="rgb(227,223,11)" fg:x="233570" fg:w="377"/><text x="60.4697%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (141 samples, 0.04%)</title><rect x="60.2806%" y="773" width="0.0364%" height="15" fill="rgb(219,7,51)" fg:x="233806" fg:w="141"/><text x="60.5306%" y="783.50"></text></g><g><title>jni_NewByteArray (72 samples, 0.02%)</title><rect x="60.3169%" y="789" width="0.0186%" height="15" fill="rgb(245,167,10)" fg:x="233947" fg:w="72"/><text x="60.5669%" y="799.50"></text></g><g><title>ObjArrayAllocator::initialize (42 samples, 0.01%)</title><rect x="60.3713%" y="725" width="0.0108%" height="15" fill="rgb(237,224,16)" fg:x="234158" fg:w="42"/><text x="60.6213%" y="735.50"></text></g><g><title>ObjArrayKlass::allocate (144 samples, 0.04%)</title><rect x="60.3522%" y="773" width="0.0371%" height="15" fill="rgb(226,132,13)" fg:x="234084" fg:w="144"/><text x="60.6022%" y="783.50"></text></g><g><title>CollectedHeap::array_allocate (104 samples, 0.03%)</title><rect x="60.3626%" y="757" width="0.0268%" height="15" fill="rgb(214,140,3)" fg:x="234124" fg:w="104"/><text x="60.6126%" y="767.50"></text></g><g><title>MemAllocator::allocate (101 samples, 0.03%)</title><rect x="60.3633%" y="741" width="0.0260%" height="15" fill="rgb(221,177,4)" fg:x="234127" fg:w="101"/><text x="60.6133%" y="751.50"></text></g><g><title>jni_NewObjectArray (257 samples, 0.07%)</title><rect x="60.3355%" y="789" width="0.0663%" height="15" fill="rgb(238,139,3)" fg:x="234019" fg:w="257"/><text x="60.5855%" y="799.50"></text></g><g><title>InstanceKlass::allocate_instance (72 samples, 0.02%)</title><rect x="60.4267%" y="773" width="0.0186%" height="15" fill="rgb(216,17,39)" fg:x="234373" fg:w="72"/><text x="60.6767%" y="783.50"></text></g><g><title>CollectedHeap::obj_allocate (61 samples, 0.02%)</title><rect x="60.4296%" y="757" width="0.0157%" height="15" fill="rgb(238,120,9)" fg:x="234384" fg:w="61"/><text x="60.6796%" y="767.50"></text></g><g><title>MemAllocator::allocate (59 samples, 0.02%)</title><rect x="60.4301%" y="741" width="0.0152%" height="15" fill="rgb(244,92,53)" fg:x="234386" fg:w="59"/><text x="60.6801%" y="751.50"></text></g><g><title>alloc_object (71 samples, 0.02%)</title><rect x="60.4538%" y="773" width="0.0183%" height="15" fill="rgb(224,148,33)" fg:x="234478" fg:w="71"/><text x="60.7038%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (56 samples, 0.01%)</title><rect x="60.4848%" y="757" width="0.0144%" height="15" fill="rgb(243,6,36)" fg:x="234598" fg:w="56"/><text x="60.7348%" y="767.50"></text></g><g><title>JavaCallWrapper::JavaCallWrapper (61 samples, 0.02%)</title><rect x="60.5340%" y="741" width="0.0157%" height="15" fill="rgb(230,102,11)" fg:x="234789" fg:w="61"/><text x="60.7840%" y="751.50"></text></g><g><title>JavaCalls::call_helper (231 samples, 0.06%)</title><rect x="60.4995%" y="757" width="0.0596%" height="15" fill="rgb(234,148,36)" fg:x="234655" fg:w="231"/><text x="60.7495%" y="767.50"></text></g><g><title>jni_invoke_nonstatic (374 samples, 0.10%)</title><rect x="60.4724%" y="773" width="0.0964%" height="15" fill="rgb(251,153,25)" fg:x="234550" fg:w="374"/><text x="60.7224%" y="783.50"></text></g><g><title>jni_NewObjectV (649 samples, 0.17%)</title><rect x="60.4017%" y="789" width="0.1673%" height="15" fill="rgb(215,129,8)" fg:x="234276" fg:w="649"/><text x="60.6517%" y="799.50"></text></g><g><title>JNIHandles::make_local (148 samples, 0.04%)</title><rect x="60.6062%" y="773" width="0.0382%" height="15" fill="rgb(224,128,35)" fg:x="235069" fg:w="148"/><text x="60.8562%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (128 samples, 0.03%)</title><rect x="60.6454%" y="773" width="0.0330%" height="15" fill="rgb(237,56,52)" fg:x="235221" fg:w="128"/><text x="60.8954%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (162 samples, 0.04%)</title><rect x="60.6784%" y="773" width="0.0418%" height="15" fill="rgb(234,213,19)" fg:x="235349" fg:w="162"/><text x="60.9284%" y="783.50"></text></g><g><title>UNICODE::is_latin1 (1,004 samples, 0.26%)</title><rect x="61.1105%" y="741" width="0.2589%" height="15" fill="rgb(252,82,23)" fg:x="237025" fg:w="1004"/><text x="61.3605%" y="751.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;573558ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 573558ul&gt;::oop_access_barrier (190 samples, 0.05%)</title><rect x="61.4387%" y="725" width="0.0490%" height="15" fill="rgb(254,201,21)" fg:x="238298" fg:w="190"/><text x="61.6887%" y="735.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (67 samples, 0.02%)</title><rect x="61.5710%" y="677" width="0.0173%" height="15" fill="rgb(250,186,11)" fg:x="238811" fg:w="67"/><text x="61.8210%" y="687.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (94 samples, 0.02%)</title><rect x="61.5882%" y="677" width="0.0242%" height="15" fill="rgb(211,174,5)" fg:x="238878" fg:w="94"/><text x="61.8382%" y="687.50"></text></g><g><title>ThreadHeapSampler::enabled (43 samples, 0.01%)</title><rect x="61.6014%" y="661" width="0.0111%" height="15" fill="rgb(214,121,10)" fg:x="238929" fg:w="43"/><text x="61.8514%" y="671.50"></text></g><g><title>[libc.so.6] (46 samples, 0.01%)</title><rect x="61.6403%" y="661" width="0.0119%" height="15" fill="rgb(241,66,2)" fg:x="239080" fg:w="46"/><text x="61.8903%" y="671.50"></text></g><g><title>ObjAllocator::initialize (185 samples, 0.05%)</title><rect x="61.6125%" y="677" width="0.0477%" height="15" fill="rgb(220,167,19)" fg:x="238972" fg:w="185"/><text x="61.8625%" y="687.50"></text></g><g><title>__tls_get_addr (72 samples, 0.02%)</title><rect x="61.6602%" y="677" width="0.0186%" height="15" fill="rgb(231,54,50)" fg:x="239157" fg:w="72"/><text x="61.9102%" y="687.50"></text></g><g><title>MemAllocator::allocate (566 samples, 0.15%)</title><rect x="61.5362%" y="693" width="0.1459%" height="15" fill="rgb(239,217,53)" fg:x="238676" fg:w="566"/><text x="61.7862%" y="703.50"></text></g><g><title>CollectedHeap::obj_allocate (590 samples, 0.15%)</title><rect x="61.5305%" y="709" width="0.1521%" height="15" fill="rgb(248,8,0)" fg:x="238654" fg:w="590"/><text x="61.7805%" y="719.50"></text></g><g><title>InstanceKlass::allocate_instance (734 samples, 0.19%)</title><rect x="61.4936%" y="725" width="0.1892%" height="15" fill="rgb(229,118,37)" fg:x="238511" fg:w="734"/><text x="61.7436%" y="735.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation (39 samples, 0.01%)</title><rect x="61.7530%" y="677" width="0.0101%" height="15" fill="rgb(253,223,43)" fg:x="239517" fg:w="39"/><text x="62.0030%" y="687.50"></text></g><g><title>MemAllocator::Allocation::notify_allocation_jvmti_sampler (53 samples, 0.01%)</title><rect x="61.7630%" y="677" width="0.0137%" height="15" fill="rgb(211,77,36)" fg:x="239556" fg:w="53"/><text x="62.0130%" y="687.50"></text></g><g><title>do_anonymous_page (67 samples, 0.02%)</title><rect x="61.8337%" y="549" width="0.0173%" height="15" fill="rgb(219,3,53)" fg:x="239830" fg:w="67"/><text x="62.0837%" y="559.50"></text></g><g><title>handle_pte_fault (74 samples, 0.02%)</title><rect x="61.8327%" y="565" width="0.0191%" height="15" fill="rgb(244,45,42)" fg:x="239826" fg:w="74"/><text x="62.0827%" y="575.50"></text></g><g><title>__handle_mm_fault (84 samples, 0.02%)</title><rect x="61.8303%" y="581" width="0.0217%" height="15" fill="rgb(225,95,27)" fg:x="239817" fg:w="84"/><text x="62.0803%" y="591.50"></text></g><g><title>handle_mm_fault (93 samples, 0.02%)</title><rect x="61.8283%" y="597" width="0.0240%" height="15" fill="rgb(207,74,8)" fg:x="239809" fg:w="93"/><text x="62.0783%" y="607.50"></text></g><g><title>do_user_addr_fault (99 samples, 0.03%)</title><rect x="61.8270%" y="613" width="0.0255%" height="15" fill="rgb(243,63,36)" fg:x="239804" fg:w="99"/><text x="62.0770%" y="623.50"></text></g><g><title>asm_exc_page_fault (101 samples, 0.03%)</title><rect x="61.8267%" y="645" width="0.0260%" height="15" fill="rgb(211,180,12)" fg:x="239803" fg:w="101"/><text x="62.0767%" y="655.50"></text></g><g><title>exc_page_fault (101 samples, 0.03%)</title><rect x="61.8267%" y="629" width="0.0260%" height="15" fill="rgb(254,166,49)" fg:x="239803" fg:w="101"/><text x="62.0767%" y="639.50"></text></g><g><title>[libc.so.6] (196 samples, 0.05%)</title><rect x="61.8051%" y="661" width="0.0505%" height="15" fill="rgb(205,19,0)" fg:x="239719" fg:w="196"/><text x="62.0551%" y="671.50"></text></g><g><title>ObjArrayAllocator::initialize (336 samples, 0.09%)</title><rect x="61.7783%" y="677" width="0.0866%" height="15" fill="rgb(224,172,32)" fg:x="239615" fg:w="336"/><text x="62.0283%" y="687.50"></text></g><g><title>MemAllocator::allocate (582 samples, 0.15%)</title><rect x="61.7210%" y="693" width="0.1501%" height="15" fill="rgb(254,136,30)" fg:x="239393" fg:w="582"/><text x="61.9710%" y="703.50"></text></g><g><title>CollectedHeap::array_allocate (615 samples, 0.16%)</title><rect x="61.7138%" y="709" width="0.1586%" height="15" fill="rgb(246,19,35)" fg:x="239365" fg:w="615"/><text x="61.9638%" y="719.50"></text></g><g><title>TypeArrayKlass::allocate_common (737 samples, 0.19%)</title><rect x="61.6829%" y="725" width="0.1900%" height="15" fill="rgb(219,24,36)" fg:x="239245" fg:w="737"/><text x="61.9329%" y="735.50"></text></g><g><title>java_lang_String::basic_create (1,945 samples, 0.50%)</title><rect x="61.3722%" y="741" width="0.5015%" height="15" fill="rgb(251,55,1)" fg:x="238040" fg:w="1945"/><text x="61.6222%" y="751.50"></text></g><g><title>jni_NewString (5,061 samples, 1.30%)</title><rect x="60.5691%" y="789" width="1.3048%" height="15" fill="rgb(218,117,39)" fg:x="234925" fg:w="5061"/><text x="60.8191%" y="799.50"></text></g><g><title>java_lang_String::create_oop_from_unicode (4,471 samples, 1.15%)</title><rect x="60.7212%" y="773" width="1.1527%" height="15" fill="rgb(248,169,11)" fg:x="235515" fg:w="4471"/><text x="60.9712%" y="783.50"></text></g><g><title>java_lang_String::create_from_unicode (4,430 samples, 1.14%)</title><rect x="60.7318%" y="757" width="1.1422%" height="15" fill="rgb(244,40,44)" fg:x="235556" fg:w="4430"/><text x="60.9818%" y="767.50"></text></g><g><title>jni_SetByteArrayRegion (65 samples, 0.02%)</title><rect x="61.8739%" y="789" width="0.0168%" height="15" fill="rgb(234,62,37)" fg:x="239986" fg:w="65"/><text x="62.1239%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;2670710ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)1, 2670710ul&gt;::oop_access_barrier (39 samples, 0.01%)</title><rect x="61.9242%" y="773" width="0.0101%" height="15" fill="rgb(207,117,42)" fg:x="240181" fg:w="39"/><text x="62.1742%" y="783.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (61 samples, 0.02%)</title><rect x="61.9399%" y="773" width="0.0157%" height="15" fill="rgb(213,43,2)" fg:x="240242" fg:w="61"/><text x="62.1899%" y="783.50"></text></g><g><title>ThreadStateTransition::transition_from_native (64 samples, 0.02%)</title><rect x="61.9556%" y="773" width="0.0165%" height="15" fill="rgb(244,202,51)" fg:x="240303" fg:w="64"/><text x="62.2056%" y="783.50"></text></g><g><title>jni_SetObjectArrayElement (318 samples, 0.08%)</title><rect x="61.8907%" y="789" width="0.0820%" height="15" fill="rgb(253,174,46)" fg:x="240051" fg:w="318"/><text x="62.1407%" y="799.50"></text></g><g><title>__GI___libc_malloc (373 samples, 0.10%)</title><rect x="62.0018%" y="773" width="0.0962%" height="15" fill="rgb(251,23,1)" fg:x="240482" fg:w="373"/><text x="62.2518%" y="783.50"></text></g><g><title>tcache_get (152 samples, 0.04%)</title><rect x="62.0588%" y="757" width="0.0392%" height="15" fill="rgb(253,26,1)" fg:x="240703" fg:w="152"/><text x="62.3088%" y="767.50"></text></g><g><title>operator new (425 samples, 0.11%)</title><rect x="61.9886%" y="789" width="0.1096%" height="15" fill="rgb(216,89,31)" fg:x="240431" fg:w="425"/><text x="62.2386%" y="799.50"></text></g><g><title>__btrfs_unlink_inode (64 samples, 0.02%)</title><rect x="62.1098%" y="645" width="0.0165%" height="15" fill="rgb(209,109,5)" fg:x="240901" fg:w="64"/><text x="62.3598%" y="655.50"></text></g><g><title>btrfs_rename2 (109 samples, 0.03%)</title><rect x="62.1096%" y="677" width="0.0281%" height="15" fill="rgb(229,63,13)" fg:x="240900" fg:w="109"/><text x="62.3596%" y="687.50"></text></g><g><title>btrfs_rename (109 samples, 0.03%)</title><rect x="62.1096%" y="661" width="0.0281%" height="15" fill="rgb(238,137,54)" fg:x="240900" fg:w="109"/><text x="62.3596%" y="671.50"></text></g><g><title>do_renameat2 (128 samples, 0.03%)</title><rect x="62.1052%" y="709" width="0.0330%" height="15" fill="rgb(228,1,9)" fg:x="240883" fg:w="128"/><text x="62.3552%" y="719.50"></text></g><g><title>vfs_rename (113 samples, 0.03%)</title><rect x="62.1090%" y="693" width="0.0291%" height="15" fill="rgb(249,120,48)" fg:x="240898" fg:w="113"/><text x="62.3590%" y="703.50"></text></g><g><title>__x64_sys_rename (133 samples, 0.03%)</title><rect x="62.1052%" y="725" width="0.0343%" height="15" fill="rgb(209,72,36)" fg:x="240883" fg:w="133"/><text x="62.3552%" y="735.50"></text></g><g><title>rename (163 samples, 0.04%)</title><rect x="62.1047%" y="789" width="0.0420%" height="15" fill="rgb(247,98,49)" fg:x="240881" fg:w="163"/><text x="62.3547%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (163 samples, 0.04%)</title><rect x="62.1047%" y="773" width="0.0420%" height="15" fill="rgb(233,75,36)" fg:x="240881" fg:w="163"/><text x="62.3547%" y="783.50"></text></g><g><title>do_syscall_64 (162 samples, 0.04%)</title><rect x="62.1049%" y="757" width="0.0418%" height="15" fill="rgb(225,14,24)" fg:x="240882" fg:w="162"/><text x="62.3549%" y="767.50"></text></g><g><title>unload_network_ops_symbols (162 samples, 0.04%)</title><rect x="62.1049%" y="741" width="0.0418%" height="15" fill="rgb(237,193,20)" fg:x="240882" fg:w="162"/><text x="62.3549%" y="751.50"></text></g><g><title>_int_malloc (104 samples, 0.03%)</title><rect x="62.1830%" y="741" width="0.0268%" height="15" fill="rgb(239,122,19)" fg:x="241185" fg:w="104"/><text x="62.4330%" y="751.50"></text></g><g><title>__GI___libc_malloc (267 samples, 0.07%)</title><rect x="62.1583%" y="757" width="0.0688%" height="15" fill="rgb(231,220,10)" fg:x="241089" fg:w="267"/><text x="62.4083%" y="767.50"></text></g><g><title>tcache_get (58 samples, 0.01%)</title><rect x="62.2122%" y="741" width="0.0150%" height="15" fill="rgb(220,66,15)" fg:x="241298" fg:w="58"/><text x="62.4622%" y="751.50"></text></g><g><title>[libunix_jni.so] (64,319 samples, 16.58%)</title><rect x="45.6445%" y="805" width="16.5829%" height="15" fill="rgb(215,171,52)" fg:x="177038" fg:w="64319"/><text x="45.8945%" y="815.50">[libunix_jni.so]</text></g><g><title>std::string::_Rep::_S_create (310 samples, 0.08%)</title><rect x="62.1475%" y="789" width="0.0799%" height="15" fill="rgb(241,169,50)" fg:x="241047" fg:w="310"/><text x="62.3975%" y="799.50"></text></g><g><title>operator new (282 samples, 0.07%)</title><rect x="62.1547%" y="773" width="0.0727%" height="15" fill="rgb(236,189,0)" fg:x="241075" fg:w="282"/><text x="62.4047%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (62 samples, 0.02%)</title><rect x="96.2515%" y="757" width="0.0160%" height="15" fill="rgb(217,147,20)" fg:x="373324" fg:w="62"/><text x="96.5015%" y="767.50"></text></g><g><title>InterpreterRuntime::_new (93 samples, 0.02%)</title><rect x="96.2443%" y="789" width="0.0240%" height="15" fill="rgb(206,188,39)" fg:x="373296" fg:w="93"/><text x="96.4943%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (66 samples, 0.02%)</title><rect x="96.2513%" y="773" width="0.0170%" height="15" fill="rgb(227,118,25)" fg:x="373323" fg:w="66"/><text x="96.5013%" y="783.50"></text></g><g><title>CollectedHeap::array_allocate (70 samples, 0.02%)</title><rect x="96.2858%" y="757" width="0.0180%" height="15" fill="rgb(248,171,40)" fg:x="373457" fg:w="70"/><text x="96.5358%" y="767.50"></text></g><g><title>MemAllocator::allocate (66 samples, 0.02%)</title><rect x="96.2868%" y="741" width="0.0170%" height="15" fill="rgb(251,90,54)" fg:x="373461" fg:w="66"/><text x="96.5368%" y="751.50"></text></g><g><title>InstanceKlass::allocate_objArray (122 samples, 0.03%)</title><rect x="96.2778%" y="773" width="0.0315%" height="15" fill="rgb(234,11,46)" fg:x="373426" fg:w="122"/><text x="96.5278%" y="783.50"></text></g><g><title>InterpreterRuntime::anewarray (167 samples, 0.04%)</title><rect x="96.2683%" y="789" width="0.0431%" height="15" fill="rgb(229,134,13)" fg:x="373389" fg:w="167"/><text x="96.5183%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (56 samples, 0.01%)</title><rect x="96.3536%" y="725" width="0.0144%" height="15" fill="rgb(223,129,3)" fg:x="373720" fg:w="56"/><text x="96.6036%" y="735.50"></text></g><g><title>TieredThresholdPolicy::compile (53 samples, 0.01%)</title><rect x="96.3680%" y="725" width="0.0137%" height="15" fill="rgb(221,124,13)" fg:x="373776" fg:w="53"/><text x="96.6180%" y="735.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (51 samples, 0.01%)</title><rect x="96.3686%" y="709" width="0.0131%" height="15" fill="rgb(234,3,18)" fg:x="373778" fg:w="51"/><text x="96.6186%" y="719.50"></text></g><g><title>CompileBroker::compile_method (50 samples, 0.01%)</title><rect x="96.3688%" y="693" width="0.0129%" height="15" fill="rgb(249,199,20)" fg:x="373779" fg:w="50"/><text x="96.6188%" y="703.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (237 samples, 0.06%)</title><rect x="96.3211%" y="789" width="0.0611%" height="15" fill="rgb(224,134,6)" fg:x="373594" fg:w="237"/><text x="96.5711%" y="799.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (237 samples, 0.06%)</title><rect x="96.3211%" y="773" width="0.0611%" height="15" fill="rgb(254,83,26)" fg:x="373594" fg:w="237"/><text x="96.5711%" y="783.50"></text></g><g><title>TieredThresholdPolicy::event (195 samples, 0.05%)</title><rect x="96.3320%" y="757" width="0.0503%" height="15" fill="rgb(217,88,9)" fg:x="373636" fg:w="195"/><text x="96.5820%" y="767.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (163 samples, 0.04%)</title><rect x="96.3402%" y="741" width="0.0420%" height="15" fill="rgb(225,73,2)" fg:x="373668" fg:w="163"/><text x="96.5902%" y="751.50"></text></g><g><title>JavaThread::pd_last_frame (51 samples, 0.01%)</title><rect x="96.3982%" y="773" width="0.0131%" height="15" fill="rgb(226,44,39)" fg:x="373893" fg:w="51"/><text x="96.6482%" y="783.50"></text></g><g><title>CodeCache::find_blob (48 samples, 0.01%)</title><rect x="96.3990%" y="757" width="0.0124%" height="15" fill="rgb(228,53,17)" fg:x="373896" fg:w="48"/><text x="96.6490%" y="767.50"></text></g><g><title>InterpreterRuntime::ldc (132 samples, 0.03%)</title><rect x="96.3822%" y="789" width="0.0340%" height="15" fill="rgb(212,27,27)" fg:x="373831" fg:w="132"/><text x="96.6322%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (45 samples, 0.01%)</title><rect x="96.4384%" y="773" width="0.0116%" height="15" fill="rgb(241,50,6)" fg:x="374049" fg:w="45"/><text x="96.6884%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (50 samples, 0.01%)</title><rect x="96.4774%" y="741" width="0.0129%" height="15" fill="rgb(225,28,51)" fg:x="374200" fg:w="50"/><text x="96.7274%" y="751.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (42 samples, 0.01%)</title><rect x="96.4939%" y="725" width="0.0108%" height="15" fill="rgb(215,33,16)" fg:x="374264" fg:w="42"/><text x="96.7439%" y="735.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (62 samples, 0.02%)</title><rect x="96.4903%" y="741" width="0.0160%" height="15" fill="rgb(243,40,39)" fg:x="374250" fg:w="62"/><text x="96.7403%" y="751.50"></text></g><g><title>InstanceKlass::link_class_impl (39 samples, 0.01%)</title><rect x="96.5068%" y="709" width="0.0101%" height="15" fill="rgb(225,11,42)" fg:x="374314" fg:w="39"/><text x="96.7568%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (41 samples, 0.01%)</title><rect x="96.5068%" y="725" width="0.0106%" height="15" fill="rgb(241,220,38)" fg:x="374314" fg:w="41"/><text x="96.7568%" y="735.50"></text></g><g><title>LinkResolver::resolve_static_call (65 samples, 0.02%)</title><rect x="96.5062%" y="741" width="0.0168%" height="15" fill="rgb(244,52,35)" fg:x="374312" fg:w="65"/><text x="96.7562%" y="751.50"></text></g><g><title>LinkResolver::resolve_invoke (242 samples, 0.06%)</title><rect x="96.4622%" y="757" width="0.0624%" height="15" fill="rgb(246,42,46)" fg:x="374141" fg:w="242"/><text x="96.7122%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (314 samples, 0.08%)</title><rect x="96.4500%" y="773" width="0.0810%" height="15" fill="rgb(205,184,13)" fg:x="374094" fg:w="314"/><text x="96.7000%" y="783.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (39 samples, 0.01%)</title><rect x="96.5310%" y="725" width="0.0101%" height="15" fill="rgb(209,48,36)" fg:x="374408" fg:w="39"/><text x="96.7810%" y="735.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (59 samples, 0.02%)</title><rect x="96.5310%" y="773" width="0.0152%" height="15" fill="rgb(244,34,51)" fg:x="374408" fg:w="59"/><text x="96.7810%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (59 samples, 0.02%)</title><rect x="96.5310%" y="757" width="0.0152%" height="15" fill="rgb(221,107,33)" fg:x="374408" fg:w="59"/><text x="96.7810%" y="767.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (59 samples, 0.02%)</title><rect x="96.5310%" y="741" width="0.0152%" height="15" fill="rgb(224,203,12)" fg:x="374408" fg:w="59"/><text x="96.7810%" y="751.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (430 samples, 0.11%)</title><rect x="96.4364%" y="789" width="0.1109%" height="15" fill="rgb(230,215,18)" fg:x="374041" fg:w="430"/><text x="96.6864%" y="799.50"></text></g><g><title>JVM_Clone (129 samples, 0.03%)</title><rect x="96.5594%" y="789" width="0.0333%" height="15" fill="rgb(206,185,35)" fg:x="374518" fg:w="129"/><text x="96.8094%" y="799.50"></text></g><g><title>JVM_GetClassDeclaredMethods (42 samples, 0.01%)</title><rect x="96.6089%" y="789" width="0.0108%" height="15" fill="rgb(228,140,34)" fg:x="374710" fg:w="42"/><text x="96.8589%" y="799.50"></text></g><g><title>get_class_declared_methods_helper (42 samples, 0.01%)</title><rect x="96.6089%" y="773" width="0.0108%" height="15" fill="rgb(208,93,13)" fg:x="374710" fg:w="42"/><text x="96.8589%" y="783.50"></text></g><g><title>JVM_IsInterrupted (59 samples, 0.02%)</title><rect x="96.6455%" y="789" width="0.0152%" height="15" fill="rgb(221,193,39)" fg:x="374852" fg:w="59"/><text x="96.8955%" y="799.50"></text></g><g><title>SymbolTable::lookup_only (317 samples, 0.08%)</title><rect x="96.6924%" y="645" width="0.0817%" height="15" fill="rgb(241,132,34)" fg:x="375034" fg:w="317"/><text x="96.9424%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (354 samples, 0.09%)</title><rect x="96.6831%" y="661" width="0.0913%" height="15" fill="rgb(221,141,10)" fg:x="374998" fg:w="354"/><text x="96.9331%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (366 samples, 0.09%)</title><rect x="96.6805%" y="677" width="0.0944%" height="15" fill="rgb(226,90,31)" fg:x="374988" fg:w="366"/><text x="96.9305%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (79 samples, 0.02%)</title><rect x="96.7770%" y="661" width="0.0204%" height="15" fill="rgb(243,75,5)" fg:x="375362" fg:w="79"/><text x="97.0270%" y="671.50"></text></g><g><title>ClassFileParser::parse_methods (80 samples, 0.02%)</title><rect x="96.7770%" y="677" width="0.0206%" height="15" fill="rgb(227,156,21)" fg:x="375362" fg:w="80"/><text x="97.0270%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (475 samples, 0.12%)</title><rect x="96.6787%" y="693" width="0.1225%" height="15" fill="rgb(250,195,8)" fg:x="374981" fg:w="475"/><text x="96.9287%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (476 samples, 0.12%)</title><rect x="96.6787%" y="709" width="0.1227%" height="15" fill="rgb(220,134,5)" fg:x="374981" fg:w="476"/><text x="96.9287%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (60 samples, 0.02%)</title><rect x="96.8014%" y="693" width="0.0155%" height="15" fill="rgb(246,106,34)" fg:x="375457" fg:w="60"/><text x="97.0514%" y="703.50"></text></g><g><title>ClassFileParser::create_instance_klass (66 samples, 0.02%)</title><rect x="96.8014%" y="709" width="0.0170%" height="15" fill="rgb(205,1,4)" fg:x="375457" fg:w="66"/><text x="97.0514%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (573 samples, 0.15%)</title><rect x="96.6785%" y="725" width="0.1477%" height="15" fill="rgb(224,151,29)" fg:x="374980" fg:w="573"/><text x="96.9285%" y="735.50"></text></g><g><title>SystemDictionary::resolve_from_stream (599 samples, 0.15%)</title><rect x="96.6782%" y="741" width="0.1544%" height="15" fill="rgb(251,196,0)" fg:x="374979" fg:w="599"/><text x="96.9282%" y="751.50"></text></g><g><title>JVM_DefineClassWithSource (607 samples, 0.16%)</title><rect x="96.6764%" y="773" width="0.1565%" height="15" fill="rgb(212,127,0)" fg:x="374972" fg:w="607"/><text x="96.9264%" y="783.50"></text></g><g><title>jvm_define_class_common (607 samples, 0.16%)</title><rect x="96.6764%" y="757" width="0.1565%" height="15" fill="rgb(236,71,53)" fg:x="374972" fg:w="607"/><text x="96.9264%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (627 samples, 0.16%)</title><rect x="96.6761%" y="789" width="0.1617%" height="15" fill="rgb(227,99,0)" fg:x="374971" fg:w="627"/><text x="96.9261%" y="799.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (47 samples, 0.01%)</title><rect x="96.8528%" y="789" width="0.0121%" height="15" fill="rgb(239,89,21)" fg:x="375656" fg:w="47"/><text x="97.1028%" y="799.50"></text></g><g><title>os_getParentPidAndTimings (47 samples, 0.01%)</title><rect x="96.8528%" y="773" width="0.0121%" height="15" fill="rgb(243,122,19)" fg:x="375656" fg:w="47"/><text x="97.1028%" y="783.50"></text></g><g><title>copy_process (44 samples, 0.01%)</title><rect x="96.8747%" y="677" width="0.0113%" height="15" fill="rgb(229,192,45)" fg:x="375741" fg:w="44"/><text x="97.1247%" y="687.50"></text></g><g><title>__libc_vfork (60 samples, 0.02%)</title><rect x="96.8739%" y="757" width="0.0155%" height="15" fill="rgb(235,165,35)" fg:x="375738" fg:w="60"/><text x="97.1239%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.02%)</title><rect x="96.8742%" y="741" width="0.0152%" height="15" fill="rgb(253,202,0)" fg:x="375739" fg:w="59"/><text x="97.1242%" y="751.50"></text></g><g><title>do_syscall_64 (59 samples, 0.02%)</title><rect x="96.8742%" y="725" width="0.0152%" height="15" fill="rgb(235,51,20)" fg:x="375739" fg:w="59"/><text x="97.1242%" y="735.50"></text></g><g><title>__x64_sys_vfork (59 samples, 0.02%)</title><rect x="96.8742%" y="709" width="0.0152%" height="15" fill="rgb(218,95,46)" fg:x="375739" fg:w="59"/><text x="97.1242%" y="719.50"></text></g><g><title>kernel_clone (59 samples, 0.02%)</title><rect x="96.8742%" y="693" width="0.0152%" height="15" fill="rgb(212,81,10)" fg:x="375739" fg:w="59"/><text x="97.1242%" y="703.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (270 samples, 0.07%)</title><rect x="96.9229%" y="389" width="0.0696%" height="15" fill="rgb(240,59,0)" fg:x="375928" fg:w="270"/><text x="97.1729%" y="399.50"></text></g><g><title>_ZdlPv (268 samples, 0.07%)</title><rect x="96.9234%" y="373" width="0.0691%" height="15" fill="rgb(212,191,42)" fg:x="375930" fg:w="268"/><text x="97.1734%" y="383.50"></text></g><g><title>_ZdlPv (267 samples, 0.07%)</title><rect x="96.9237%" y="357" width="0.0688%" height="15" fill="rgb(233,140,3)" fg:x="375931" fg:w="267"/><text x="97.1737%" y="367.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (266 samples, 0.07%)</title><rect x="96.9239%" y="341" width="0.0686%" height="15" fill="rgb(215,69,23)" fg:x="375932" fg:w="266"/><text x="97.1739%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (239 samples, 0.06%)</title><rect x="96.9309%" y="325" width="0.0616%" height="15" fill="rgb(240,202,20)" fg:x="375959" fg:w="239"/><text x="97.1809%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (46 samples, 0.01%)</title><rect x="96.9806%" y="309" width="0.0119%" height="15" fill="rgb(209,146,50)" fg:x="376152" fg:w="46"/><text x="97.2306%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (41 samples, 0.01%)</title><rect x="96.9951%" y="341" width="0.0106%" height="15" fill="rgb(253,102,54)" fg:x="376208" fg:w="41"/><text x="97.2451%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (44 samples, 0.01%)</title><rect x="96.9946%" y="357" width="0.0113%" height="15" fill="rgb(250,173,47)" fg:x="376206" fg:w="44"/><text x="97.2446%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (46 samples, 0.01%)</title><rect x="96.9943%" y="389" width="0.0119%" height="15" fill="rgb(232,142,7)" fg:x="376205" fg:w="46"/><text x="97.2443%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (46 samples, 0.01%)</title><rect x="96.9943%" y="373" width="0.0119%" height="15" fill="rgb(230,157,47)" fg:x="376205" fg:w="46"/><text x="97.2443%" y="383.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (333 samples, 0.09%)</title><rect x="96.9206%" y="405" width="0.0859%" height="15" fill="rgb(214,177,35)" fg:x="375919" fg:w="333"/><text x="97.1706%" y="415.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (345 samples, 0.09%)</title><rect x="96.9177%" y="421" width="0.0889%" height="15" fill="rgb(234,119,46)" fg:x="375908" fg:w="345"/><text x="97.1677%" y="431.50"></text></g><g><title>_ZdlPv (54 samples, 0.01%)</title><rect x="97.0129%" y="341" width="0.0139%" height="15" fill="rgb(241,180,50)" fg:x="376277" fg:w="54"/><text x="97.2629%" y="351.50"></text></g><g><title>_ZdlPv (67 samples, 0.02%)</title><rect x="97.0113%" y="357" width="0.0173%" height="15" fill="rgb(221,54,25)" fg:x="376271" fg:w="67"/><text x="97.2613%" y="367.50"></text></g><g><title>_ZdlPv (82 samples, 0.02%)</title><rect x="97.0103%" y="373" width="0.0211%" height="15" fill="rgb(209,157,44)" fg:x="376267" fg:w="82"/><text x="97.2603%" y="383.50"></text></g><g><title>_ZdlPv (97 samples, 0.03%)</title><rect x="97.0090%" y="389" width="0.0250%" height="15" fill="rgb(246,115,41)" fg:x="376262" fg:w="97"/><text x="97.2590%" y="399.50"></text></g><g><title>_ZdlPv (107 samples, 0.03%)</title><rect x="97.0072%" y="405" width="0.0276%" height="15" fill="rgb(229,86,1)" fg:x="376255" fg:w="107"/><text x="97.2572%" y="415.50"></text></g><g><title>_ZdlPv (132 samples, 0.03%)</title><rect x="97.0067%" y="421" width="0.0340%" height="15" fill="rgb(240,108,53)" fg:x="376253" fg:w="132"/><text x="97.2567%" y="431.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (75 samples, 0.02%)</title><rect x="97.0448%" y="373" width="0.0193%" height="15" fill="rgb(227,134,2)" fg:x="376401" fg:w="75"/><text x="97.2948%" y="383.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (68 samples, 0.02%)</title><rect x="97.0466%" y="357" width="0.0175%" height="15" fill="rgb(213,129,25)" fg:x="376408" fg:w="68"/><text x="97.2966%" y="367.50"></text></g><g><title>_ZdlPv (80 samples, 0.02%)</title><rect x="97.0441%" y="389" width="0.0206%" height="15" fill="rgb(226,35,21)" fg:x="376398" fg:w="80"/><text x="97.2941%" y="399.50"></text></g><g><title>_ZdlPv (86 samples, 0.02%)</title><rect x="97.0433%" y="405" width="0.0222%" height="15" fill="rgb(208,129,26)" fg:x="376395" fg:w="86"/><text x="97.2933%" y="415.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (39 samples, 0.01%)</title><rect x="97.1338%" y="229" width="0.0101%" height="15" fill="rgb(224,83,6)" fg:x="376746" fg:w="39"/><text x="97.3838%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (58 samples, 0.01%)</title><rect x="97.1438%" y="229" width="0.0150%" height="15" fill="rgb(227,52,39)" fg:x="376785" fg:w="58"/><text x="97.3938%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (49 samples, 0.01%)</title><rect x="97.1462%" y="213" width="0.0126%" height="15" fill="rgb(241,30,17)" fg:x="376794" fg:w="49"/><text x="97.3962%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (129 samples, 0.03%)</title><rect x="97.1260%" y="277" width="0.0333%" height="15" fill="rgb(246,186,42)" fg:x="376716" fg:w="129"/><text x="97.3760%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (121 samples, 0.03%)</title><rect x="97.1281%" y="261" width="0.0312%" height="15" fill="rgb(221,169,15)" fg:x="376724" fg:w="121"/><text x="97.3781%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (105 samples, 0.03%)</title><rect x="97.1322%" y="245" width="0.0271%" height="15" fill="rgb(235,108,21)" fg:x="376740" fg:w="105"/><text x="97.3822%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (164 samples, 0.04%)</title><rect x="97.1173%" y="309" width="0.0423%" height="15" fill="rgb(219,148,30)" fg:x="376682" fg:w="164"/><text x="97.3673%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (140 samples, 0.04%)</title><rect x="97.1235%" y="293" width="0.0361%" height="15" fill="rgb(220,109,5)" fg:x="376706" fg:w="140"/><text x="97.3735%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (183 samples, 0.05%)</title><rect x="97.1126%" y="325" width="0.0472%" height="15" fill="rgb(213,203,48)" fg:x="376664" fg:w="183"/><text x="97.3626%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (207 samples, 0.05%)</title><rect x="97.1077%" y="341" width="0.0534%" height="15" fill="rgb(244,71,33)" fg:x="376645" fg:w="207"/><text x="97.3577%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (256 samples, 0.07%)</title><rect x="97.0956%" y="373" width="0.0660%" height="15" fill="rgb(209,23,2)" fg:x="376598" fg:w="256"/><text x="97.3456%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (230 samples, 0.06%)</title><rect x="97.1023%" y="357" width="0.0593%" height="15" fill="rgb(219,97,7)" fg:x="376624" fg:w="230"/><text x="97.3523%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (326 samples, 0.08%)</title><rect x="97.0799%" y="389" width="0.0841%" height="15" fill="rgb(216,161,23)" fg:x="376537" fg:w="326"/><text x="97.3299%" y="399.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (391 samples, 0.10%)</title><rect x="97.0660%" y="405" width="0.1008%" height="15" fill="rgb(207,45,42)" fg:x="376483" fg:w="391"/><text x="97.3160%" y="415.50"></text></g><g><title>_ZdlPv (999 samples, 0.26%)</title><rect x="96.9095%" y="437" width="0.2576%" height="15" fill="rgb(241,61,4)" fg:x="375876" fg:w="999"/><text x="97.1595%" y="447.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (486 samples, 0.13%)</title><rect x="97.0417%" y="421" width="0.1253%" height="15" fill="rgb(236,170,1)" fg:x="376389" fg:w="486"/><text x="97.2917%" y="431.50"></text></g><g><title>_ZdlPv (1,012 samples, 0.26%)</title><rect x="96.9072%" y="469" width="0.2609%" height="15" fill="rgb(239,72,5)" fg:x="375867" fg:w="1012"/><text x="97.1572%" y="479.50"></text></g><g><title>_ZdlPv (1,012 samples, 0.26%)</title><rect x="96.9072%" y="453" width="0.2609%" height="15" fill="rgb(214,13,50)" fg:x="375867" fg:w="1012"/><text x="97.1572%" y="463.50"></text></g><g><title>_ZdlPv (66 samples, 0.02%)</title><rect x="97.1786%" y="341" width="0.0170%" height="15" fill="rgb(224,88,9)" fg:x="376920" fg:w="66"/><text x="97.4286%" y="351.50"></text></g><g><title>_ZdlPv (66 samples, 0.02%)</title><rect x="97.1786%" y="325" width="0.0170%" height="15" fill="rgb(238,192,34)" fg:x="376920" fg:w="66"/><text x="97.4286%" y="335.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (66 samples, 0.02%)</title><rect x="97.1786%" y="309" width="0.0170%" height="15" fill="rgb(217,203,50)" fg:x="376920" fg:w="66"/><text x="97.4286%" y="319.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (58 samples, 0.01%)</title><rect x="97.1807%" y="293" width="0.0150%" height="15" fill="rgb(241,123,32)" fg:x="376928" fg:w="58"/><text x="97.4307%" y="303.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (70 samples, 0.02%)</title><rect x="97.1781%" y="357" width="0.0180%" height="15" fill="rgb(248,151,39)" fg:x="376918" fg:w="70"/><text x="97.4281%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (40 samples, 0.01%)</title><rect x="97.1985%" y="325" width="0.0103%" height="15" fill="rgb(208,89,6)" fg:x="376997" fg:w="40"/><text x="97.4485%" y="335.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (124 samples, 0.03%)</title><rect x="97.1771%" y="373" width="0.0320%" height="15" fill="rgb(254,43,26)" fg:x="376914" fg:w="124"/><text x="97.4271%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (43 samples, 0.01%)</title><rect x="97.1980%" y="357" width="0.0111%" height="15" fill="rgb(216,158,13)" fg:x="376995" fg:w="43"/><text x="97.4480%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (42 samples, 0.01%)</title><rect x="97.1982%" y="341" width="0.0108%" height="15" fill="rgb(212,47,37)" fg:x="376996" fg:w="42"/><text x="97.4482%" y="351.50"></text></g><g><title>LoadImageEventSource_GetImageHashMem (137 samples, 0.04%)</title><rect x="97.1745%" y="389" width="0.0353%" height="15" fill="rgb(254,16,10)" fg:x="376904" fg:w="137"/><text x="97.4245%" y="399.50"></text></g><g><title>_ZdlPv (45 samples, 0.01%)</title><rect x="97.2106%" y="357" width="0.0116%" height="15" fill="rgb(223,228,16)" fg:x="377044" fg:w="45"/><text x="97.4606%" y="367.50"></text></g><g><title>_ZdlPv (54 samples, 0.01%)</title><rect x="97.2098%" y="373" width="0.0139%" height="15" fill="rgb(249,108,50)" fg:x="377041" fg:w="54"/><text x="97.4598%" y="383.50"></text></g><g><title>_ZdlPv (64 samples, 0.02%)</title><rect x="97.2098%" y="389" width="0.0165%" height="15" fill="rgb(208,220,5)" fg:x="377041" fg:w="64"/><text x="97.4598%" y="399.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (128 samples, 0.03%)</title><rect x="97.2294%" y="341" width="0.0330%" height="15" fill="rgb(217,89,48)" fg:x="377117" fg:w="128"/><text x="97.4794%" y="351.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (120 samples, 0.03%)</title><rect x="97.2315%" y="325" width="0.0309%" height="15" fill="rgb(212,113,41)" fg:x="377125" fg:w="120"/><text x="97.4815%" y="335.50"></text></g><g><title>_ZdlPv (131 samples, 0.03%)</title><rect x="97.2292%" y="357" width="0.0338%" height="15" fill="rgb(231,127,5)" fg:x="377116" fg:w="131"/><text x="97.4792%" y="367.50"></text></g><g><title>_ZdlPv (132 samples, 0.03%)</title><rect x="97.2292%" y="373" width="0.0340%" height="15" fill="rgb(217,141,17)" fg:x="377116" fg:w="132"/><text x="97.4792%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (57 samples, 0.01%)</title><rect x="97.3024%" y="229" width="0.0147%" height="15" fill="rgb(245,125,54)" fg:x="377400" fg:w="57"/><text x="97.5524%" y="239.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (39 samples, 0.01%)</title><rect x="97.3070%" y="213" width="0.0101%" height="15" fill="rgb(248,125,3)" fg:x="377418" fg:w="39"/><text x="97.5570%" y="223.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (75 samples, 0.02%)</title><rect x="97.2990%" y="245" width="0.0193%" height="15" fill="rgb(236,119,51)" fg:x="377387" fg:w="75"/><text x="97.5490%" y="255.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (94 samples, 0.02%)</title><rect x="97.2944%" y="261" width="0.0242%" height="15" fill="rgb(239,99,8)" fg:x="377369" fg:w="94"/><text x="97.5444%" y="271.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (108 samples, 0.03%)</title><rect x="97.2911%" y="277" width="0.0278%" height="15" fill="rgb(224,228,4)" fg:x="377356" fg:w="108"/><text x="97.5411%" y="287.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (128 samples, 0.03%)</title><rect x="97.2862%" y="293" width="0.0330%" height="15" fill="rgb(220,131,45)" fg:x="377337" fg:w="128"/><text x="97.5362%" y="303.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (153 samples, 0.04%)</title><rect x="97.2813%" y="325" width="0.0394%" height="15" fill="rgb(215,62,5)" fg:x="377318" fg:w="153"/><text x="97.5313%" y="335.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (144 samples, 0.04%)</title><rect x="97.2836%" y="309" width="0.0371%" height="15" fill="rgb(253,12,24)" fg:x="377327" fg:w="144"/><text x="97.5336%" y="319.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (200 samples, 0.05%)</title><rect x="97.2694%" y="357" width="0.0516%" height="15" fill="rgb(248,120,50)" fg:x="377272" fg:w="200"/><text x="97.5194%" y="367.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (173 samples, 0.04%)</title><rect x="97.2764%" y="341" width="0.0446%" height="15" fill="rgb(245,194,10)" fg:x="377299" fg:w="173"/><text x="97.5264%" y="351.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (225 samples, 0.06%)</title><rect x="97.2632%" y="373" width="0.0580%" height="15" fill="rgb(241,149,38)" fg:x="377248" fg:w="225"/><text x="97.5132%" y="383.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (360 samples, 0.09%)</title><rect x="97.2287%" y="389" width="0.0928%" height="15" fill="rgb(219,215,7)" fg:x="377114" fg:w="360"/><text x="97.4787%" y="399.50"></text></g><g><title>_ZdlPv (587 samples, 0.15%)</title><rect x="97.1704%" y="405" width="0.1513%" height="15" fill="rgb(208,120,31)" fg:x="376888" fg:w="587"/><text x="97.4204%" y="415.50"></text></g><g><title>_ZdlPv (594 samples, 0.15%)</title><rect x="97.1694%" y="421" width="0.1531%" height="15" fill="rgb(244,30,8)" fg:x="376884" fg:w="594"/><text x="97.4194%" y="431.50"></text></g><g><title>_ZdlPv (597 samples, 0.15%)</title><rect x="97.1691%" y="453" width="0.1539%" height="15" fill="rgb(238,35,44)" fg:x="376883" fg:w="597"/><text x="97.4191%" y="463.50"></text></g><g><title>_ZdlPv (596 samples, 0.15%)</title><rect x="97.1694%" y="437" width="0.1537%" height="15" fill="rgb(243,218,37)" fg:x="376884" fg:w="596"/><text x="97.4194%" y="447.50"></text></g><g><title>cshook_security_sb_free_security (620 samples, 0.16%)</title><rect x="97.1688%" y="469" width="0.1599%" height="15" fill="rgb(218,169,10)" fg:x="376882" fg:w="620"/><text x="97.4188%" y="479.50"></text></g><g><title>cshook_security_file_permission (1,653 samples, 0.43%)</title><rect x="96.9056%" y="517" width="0.4262%" height="15" fill="rgb(221,144,10)" fg:x="375861" fg:w="1653"/><text x="97.1556%" y="527.50"></text></g><g><title>cshook_security_sb_free_security (1,650 samples, 0.43%)</title><rect x="96.9064%" y="501" width="0.4254%" height="15" fill="rgb(226,41,38)" fg:x="375864" fg:w="1650"/><text x="97.1564%" y="511.50"></text></g><g><title>cshook_security_sb_free_security (1,648 samples, 0.42%)</title><rect x="96.9069%" y="485" width="0.4249%" height="15" fill="rgb(228,3,1)" fg:x="375866" fg:w="1648"/><text x="97.1569%" y="495.50"></text></g><g><title>exec_binprm (1,718 samples, 0.44%)</title><rect x="96.8907%" y="613" width="0.4429%" height="15" fill="rgb(209,129,12)" fg:x="375803" fg:w="1718"/><text x="97.1407%" y="623.50"></text></g><g><title>search_binary_handler (1,718 samples, 0.44%)</title><rect x="96.8907%" y="597" width="0.4429%" height="15" fill="rgb(213,136,33)" fg:x="375803" fg:w="1718"/><text x="97.1407%" y="607.50"></text></g><g><title>security_bprm_check (1,672 samples, 0.43%)</title><rect x="96.9025%" y="581" width="0.4311%" height="15" fill="rgb(209,181,29)" fg:x="375849" fg:w="1672"/><text x="97.1525%" y="591.50"></text></g><g><title>pinnedhook_security_bprm_check_security (1,670 samples, 0.43%)</title><rect x="96.9030%" y="565" width="0.4306%" height="15" fill="rgb(234,173,18)" fg:x="375851" fg:w="1670"/><text x="97.1530%" y="575.50"></text></g><g><title>cshook_security_bprm_check_security (1,670 samples, 0.43%)</title><rect x="96.9030%" y="549" width="0.4306%" height="15" fill="rgb(227,73,47)" fg:x="375851" fg:w="1670"/><text x="97.1530%" y="559.50"></text></g><g><title>cshook_security_file_permission (1,669 samples, 0.43%)</title><rect x="96.9033%" y="533" width="0.4303%" height="15" fill="rgb(234,9,34)" fg:x="375852" fg:w="1669"/><text x="97.1533%" y="543.50"></text></g><g><title>bprm_execve (1,726 samples, 0.45%)</title><rect x="96.8904%" y="645" width="0.4450%" height="15" fill="rgb(235,172,15)" fg:x="375802" fg:w="1726"/><text x="97.1404%" y="655.50"></text></g><g><title>bprm_execve.part.0 (1,726 samples, 0.45%)</title><rect x="96.8904%" y="629" width="0.4450%" height="15" fill="rgb(245,61,2)" fg:x="375802" fg:w="1726"/><text x="97.1404%" y="639.50"></text></g><g><title>__x64_sys_execve (1,743 samples, 0.45%)</title><rect x="96.8896%" y="677" width="0.4494%" height="15" fill="rgb(238,39,47)" fg:x="375799" fg:w="1743"/><text x="97.1396%" y="687.50"></text></g><g><title>do_execveat_common.isra.0 (1,743 samples, 0.45%)</title><rect x="96.8896%" y="661" width="0.4494%" height="15" fill="rgb(234,37,24)" fg:x="375799" fg:w="1743"/><text x="97.1396%" y="671.50"></text></g><g><title>JDK_execvpe (1,745 samples, 0.45%)</title><rect x="96.8894%" y="741" width="0.4499%" height="15" fill="rgb(248,223,24)" fg:x="375798" fg:w="1745"/><text x="97.1394%" y="751.50"></text></g><g><title>__GI_execve (1,745 samples, 0.45%)</title><rect x="96.8894%" y="725" width="0.4499%" height="15" fill="rgb(223,12,15)" fg:x="375798" fg:w="1745"/><text x="97.1394%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,744 samples, 0.45%)</title><rect x="96.8896%" y="709" width="0.4496%" height="15" fill="rgb(249,6,3)" fg:x="375799" fg:w="1744"/><text x="97.1396%" y="719.50"></text></g><g><title>do_syscall_64 (1,744 samples, 0.45%)</title><rect x="96.8896%" y="693" width="0.4496%" height="15" fill="rgb(237,105,33)" fg:x="375799" fg:w="1744"/><text x="97.1396%" y="703.50"></text></g><g><title>closeDescriptors (63 samples, 0.02%)</title><rect x="97.3421%" y="741" width="0.0162%" height="15" fill="rgb(252,208,35)" fg:x="377554" fg:w="63"/><text x="97.5921%" y="751.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (1,918 samples, 0.49%)</title><rect x="96.8649%" y="789" width="0.4945%" height="15" fill="rgb(215,181,35)" fg:x="375703" fg:w="1918"/><text x="97.1149%" y="799.50"></text></g><g><title>vforkChild (1,883 samples, 0.49%)</title><rect x="96.8739%" y="773" width="0.4855%" height="15" fill="rgb(246,212,3)" fg:x="375738" fg:w="1883"/><text x="97.1239%" y="783.50"></text></g><g><title>childProcess (1,823 samples, 0.47%)</title><rect x="96.8894%" y="757" width="0.4700%" height="15" fill="rgb(247,156,24)" fg:x="375798" fg:w="1823"/><text x="97.1394%" y="767.50"></text></g><g><title>OptoRuntime::new_array_C (72 samples, 0.02%)</title><rect x="97.3707%" y="789" width="0.0186%" height="15" fill="rgb(248,9,31)" fg:x="377665" fg:w="72"/><text x="97.6207%" y="799.50"></text></g><g><title>OptoRuntime::new_instance_C (52 samples, 0.01%)</title><rect x="97.3991%" y="789" width="0.0134%" height="15" fill="rgb(234,26,45)" fg:x="377775" fg:w="52"/><text x="97.6491%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (47 samples, 0.01%)</title><rect x="97.4334%" y="741" width="0.0121%" height="15" fill="rgb(249,11,32)" fg:x="377908" fg:w="47"/><text x="97.6834%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (111 samples, 0.03%)</title><rect x="97.4264%" y="773" width="0.0286%" height="15" fill="rgb(249,162,33)" fg:x="377881" fg:w="111"/><text x="97.6764%" y="783.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (89 samples, 0.02%)</title><rect x="97.4321%" y="757" width="0.0229%" height="15" fill="rgb(232,4,32)" fg:x="377903" fg:w="89"/><text x="97.6821%" y="767.50"></text></g><g><title>Runtime1::counter_overflow (201 samples, 0.05%)</title><rect x="97.4130%" y="789" width="0.0518%" height="15" fill="rgb(212,5,45)" fg:x="377829" fg:w="201"/><text x="97.6630%" y="799.50"></text></g><g><title>ObjectMonitor::enter (58 samples, 0.01%)</title><rect x="97.4759%" y="773" width="0.0150%" height="15" fill="rgb(227,95,13)" fg:x="378073" fg:w="58"/><text x="97.7259%" y="783.50"></text></g><g><title>Runtime1::monitorenter (113 samples, 0.03%)</title><rect x="97.4669%" y="789" width="0.0291%" height="15" fill="rgb(223,205,10)" fg:x="378038" fg:w="113"/><text x="97.7169%" y="799.50"></text></g><g><title>Runtime1::monitorexit (40 samples, 0.01%)</title><rect x="97.4960%" y="789" width="0.0103%" height="15" fill="rgb(222,178,8)" fg:x="378151" fg:w="40"/><text x="97.7460%" y="799.50"></text></g><g><title>ClassFileParser::ClassFileParser (44 samples, 0.01%)</title><rect x="97.5478%" y="741" width="0.0113%" height="15" fill="rgb(216,13,22)" fg:x="378352" fg:w="44"/><text x="97.7978%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (44 samples, 0.01%)</title><rect x="97.5478%" y="725" width="0.0113%" height="15" fill="rgb(240,167,12)" fg:x="378352" fg:w="44"/><text x="97.7978%" y="735.50"></text></g><g><title>KlassFactory::create_from_stream (63 samples, 0.02%)</title><rect x="97.5476%" y="757" width="0.0162%" height="15" fill="rgb(235,68,35)" fg:x="378351" fg:w="63"/><text x="97.7976%" y="767.50"></text></g><g><title>SystemDictionary::parse_stream (93 samples, 0.02%)</title><rect x="97.5406%" y="773" width="0.0240%" height="15" fill="rgb(253,40,27)" fg:x="378324" fg:w="93"/><text x="97.7906%" y="783.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (99 samples, 0.03%)</title><rect x="97.5393%" y="789" width="0.0255%" height="15" fill="rgb(214,19,28)" fg:x="378319" fg:w="99"/><text x="97.7893%" y="799.50"></text></g><g><title>__schedule (48 samples, 0.01%)</title><rect x="97.5780%" y="565" width="0.0124%" height="15" fill="rgb(210,167,45)" fg:x="378469" fg:w="48"/><text x="97.8280%" y="575.50"></text></g><g><title>futex_wait_queue_me (51 samples, 0.01%)</title><rect x="97.5775%" y="597" width="0.0131%" height="15" fill="rgb(232,97,40)" fg:x="378467" fg:w="51"/><text x="97.8275%" y="607.50"></text></g><g><title>schedule (49 samples, 0.01%)</title><rect x="97.5780%" y="581" width="0.0126%" height="15" fill="rgb(250,35,23)" fg:x="378469" fg:w="49"/><text x="97.8280%" y="591.50"></text></g><g><title>__x64_sys_futex (59 samples, 0.02%)</title><rect x="97.5767%" y="645" width="0.0152%" height="15" fill="rgb(248,47,53)" fg:x="378464" fg:w="59"/><text x="97.8267%" y="655.50"></text></g><g><title>do_futex (58 samples, 0.01%)</title><rect x="97.5770%" y="629" width="0.0150%" height="15" fill="rgb(226,58,50)" fg:x="378465" fg:w="58"/><text x="97.8270%" y="639.50"></text></g><g><title>futex_wait (58 samples, 0.01%)</title><rect x="97.5770%" y="613" width="0.0150%" height="15" fill="rgb(217,105,26)" fg:x="378465" fg:w="58"/><text x="97.8270%" y="623.50"></text></g><g><title>__GI___futex_abstimed_wait_cancelable64 (70 samples, 0.02%)</title><rect x="97.5754%" y="725" width="0.0180%" height="15" fill="rgb(208,64,1)" fg:x="378459" fg:w="70"/><text x="97.8254%" y="735.50"></text></g><g><title>__futex_abstimed_wait_common (70 samples, 0.02%)</title><rect x="97.5754%" y="709" width="0.0180%" height="15" fill="rgb(214,80,1)" fg:x="378459" fg:w="70"/><text x="97.8254%" y="719.50"></text></g><g><title>__futex_abstimed_wait_common64 (70 samples, 0.02%)</title><rect x="97.5754%" y="693" width="0.0180%" height="15" fill="rgb(206,175,26)" fg:x="378459" fg:w="70"/><text x="97.8254%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.02%)</title><rect x="97.5765%" y="677" width="0.0170%" height="15" fill="rgb(235,156,37)" fg:x="378463" fg:w="66"/><text x="97.8265%" y="687.50"></text></g><g><title>do_syscall_64 (65 samples, 0.02%)</title><rect x="97.5767%" y="661" width="0.0168%" height="15" fill="rgb(213,100,9)" fg:x="378464" fg:w="65"/><text x="97.8267%" y="671.50"></text></g><g><title>___pthread_cond_wait (76 samples, 0.02%)</title><rect x="97.5749%" y="757" width="0.0196%" height="15" fill="rgb(241,15,13)" fg:x="378457" fg:w="76"/><text x="97.8249%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (76 samples, 0.02%)</title><rect x="97.5749%" y="741" width="0.0196%" height="15" fill="rgb(205,97,43)" fg:x="378457" fg:w="76"/><text x="97.8249%" y="751.50"></text></g><g><title>Parker::park (90 samples, 0.02%)</title><rect x="97.5726%" y="773" width="0.0232%" height="15" fill="rgb(216,106,32)" fg:x="378448" fg:w="90"/><text x="97.8226%" y="783.50"></text></g><g><title>Unsafe_Park (97 samples, 0.03%)</title><rect x="97.5710%" y="789" width="0.0250%" height="15" fill="rgb(226,200,8)" fg:x="378442" fg:w="97"/><text x="97.8210%" y="799.50"></text></g><g><title>enqueue_task_fair (59 samples, 0.02%)</title><rect x="97.6316%" y="597" width="0.0152%" height="15" fill="rgb(244,54,29)" fg:x="378677" fg:w="59"/><text x="97.8816%" y="607.50"></text></g><g><title>enqueue_task (96 samples, 0.02%)</title><rect x="97.6316%" y="613" width="0.0248%" height="15" fill="rgb(252,169,12)" fg:x="378677" fg:w="96"/><text x="97.8816%" y="623.50"></text></g><g><title>ttwu_do_activate (120 samples, 0.03%)</title><rect x="97.6316%" y="629" width="0.0309%" height="15" fill="rgb(231,199,11)" fg:x="378677" fg:w="120"/><text x="97.8816%" y="639.50"></text></g><g><title>futex_wake (214 samples, 0.06%)</title><rect x="97.6108%" y="677" width="0.0552%" height="15" fill="rgb(233,191,18)" fg:x="378596" fg:w="214"/><text x="97.8608%" y="687.50"></text></g><g><title>wake_up_q (188 samples, 0.05%)</title><rect x="97.6175%" y="661" width="0.0485%" height="15" fill="rgb(215,83,47)" fg:x="378622" fg:w="188"/><text x="97.8675%" y="671.50"></text></g><g><title>try_to_wake_up (180 samples, 0.05%)</title><rect x="97.6195%" y="645" width="0.0464%" height="15" fill="rgb(251,67,19)" fg:x="378630" fg:w="180"/><text x="97.8695%" y="655.50"></text></g><g><title>__x64_sys_futex (224 samples, 0.06%)</title><rect x="97.6095%" y="709" width="0.0578%" height="15" fill="rgb(240,7,20)" fg:x="378591" fg:w="224"/><text x="97.8595%" y="719.50"></text></g><g><title>do_futex (222 samples, 0.06%)</title><rect x="97.6100%" y="693" width="0.0572%" height="15" fill="rgb(210,150,26)" fg:x="378593" fg:w="222"/><text x="97.8600%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (249 samples, 0.06%)</title><rect x="97.6082%" y="741" width="0.0642%" height="15" fill="rgb(228,75,42)" fg:x="378586" fg:w="249"/><text x="97.8582%" y="751.50"></text></g><g><title>do_syscall_64 (245 samples, 0.06%)</title><rect x="97.6092%" y="725" width="0.0632%" height="15" fill="rgb(237,134,48)" fg:x="378590" fg:w="245"/><text x="97.8592%" y="735.50"></text></g><g><title>___pthread_cond_signal (265 samples, 0.07%)</title><rect x="97.6053%" y="773" width="0.0683%" height="15" fill="rgb(205,80,50)" fg:x="378575" fg:w="265"/><text x="97.8553%" y="783.50"></text></g><g><title>futex_wake (261 samples, 0.07%)</title><rect x="97.6064%" y="757" width="0.0673%" height="15" fill="rgb(217,74,48)" fg:x="378579" fg:w="261"/><text x="97.8564%" y="767.50"></text></g><g><title>Unsafe_Unpark (302 samples, 0.08%)</title><rect x="97.5966%" y="789" width="0.0779%" height="15" fill="rgb(205,82,50)" fg:x="378541" fg:w="302"/><text x="97.8466%" y="799.50"></text></g><g><title>bio_endio (53 samples, 0.01%)</title><rect x="97.6902%" y="453" width="0.0137%" height="15" fill="rgb(228,1,33)" fg:x="378904" fg:w="53"/><text x="97.9402%" y="463.50"></text></g><g><title>btrfs_end_bio (53 samples, 0.01%)</title><rect x="97.6902%" y="437" width="0.0137%" height="15" fill="rgb(214,50,23)" fg:x="378904" fg:w="53"/><text x="97.9402%" y="447.50"></text></g><g><title>bio_endio (53 samples, 0.01%)</title><rect x="97.6902%" y="421" width="0.0137%" height="15" fill="rgb(210,62,9)" fg:x="378904" fg:w="53"/><text x="97.9402%" y="431.50"></text></g><g><title>end_bio_extent_writepage (39 samples, 0.01%)</title><rect x="97.6938%" y="405" width="0.0101%" height="15" fill="rgb(210,104,37)" fg:x="378918" fg:w="39"/><text x="97.9438%" y="415.50"></text></g><g><title>bio_endio (54 samples, 0.01%)</title><rect x="97.6902%" y="501" width="0.0139%" height="15" fill="rgb(232,104,43)" fg:x="378904" fg:w="54"/><text x="97.9402%" y="511.50"></text></g><g><title>clone_endio (54 samples, 0.01%)</title><rect x="97.6902%" y="485" width="0.0139%" height="15" fill="rgb(244,52,6)" fg:x="378904" fg:w="54"/><text x="97.9402%" y="495.50"></text></g><g><title>dm_io_dec_pending (54 samples, 0.01%)</title><rect x="97.6902%" y="469" width="0.0139%" height="15" fill="rgb(211,174,52)" fg:x="378904" fg:w="54"/><text x="97.9402%" y="479.50"></text></g><g><title>crypt_dec_pending (55 samples, 0.01%)</title><rect x="97.6902%" y="565" width="0.0142%" height="15" fill="rgb(229,48,4)" fg:x="378904" fg:w="55"/><text x="97.9402%" y="575.50"></text></g><g><title>bio_endio (55 samples, 0.01%)</title><rect x="97.6902%" y="549" width="0.0142%" height="15" fill="rgb(205,155,16)" fg:x="378904" fg:w="55"/><text x="97.9402%" y="559.50"></text></g><g><title>clone_endio (55 samples, 0.01%)</title><rect x="97.6902%" y="533" width="0.0142%" height="15" fill="rgb(211,141,53)" fg:x="378904" fg:w="55"/><text x="97.9402%" y="543.50"></text></g><g><title>dm_io_dec_pending (55 samples, 0.01%)</title><rect x="97.6902%" y="517" width="0.0142%" height="15" fill="rgb(240,148,11)" fg:x="378904" fg:w="55"/><text x="97.9402%" y="527.50"></text></g><g><title>blk_update_request (85 samples, 0.02%)</title><rect x="97.6896%" y="613" width="0.0219%" height="15" fill="rgb(214,45,23)" fg:x="378902" fg:w="85"/><text x="97.9396%" y="623.50"></text></g><g><title>bio_endio (85 samples, 0.02%)</title><rect x="97.6896%" y="597" width="0.0219%" height="15" fill="rgb(248,74,26)" fg:x="378902" fg:w="85"/><text x="97.9396%" y="607.50"></text></g><g><title>crypt_endio (85 samples, 0.02%)</title><rect x="97.6896%" y="581" width="0.0219%" height="15" fill="rgb(218,121,16)" fg:x="378902" fg:w="85"/><text x="97.9396%" y="591.50"></text></g><g><title>nvme_complete_rq (87 samples, 0.02%)</title><rect x="97.6894%" y="645" width="0.0224%" height="15" fill="rgb(218,10,47)" fg:x="378901" fg:w="87"/><text x="97.9394%" y="655.50"></text></g><g><title>blk_mq_end_request (87 samples, 0.02%)</title><rect x="97.6894%" y="629" width="0.0224%" height="15" fill="rgb(227,99,14)" fg:x="378901" fg:w="87"/><text x="97.9394%" y="639.50"></text></g><g><title>__handle_irq_event_percpu (95 samples, 0.02%)</title><rect x="97.6876%" y="709" width="0.0245%" height="15" fill="rgb(229,83,46)" fg:x="378894" fg:w="95"/><text x="97.9376%" y="719.50"></text></g><g><title>nvme_irq (89 samples, 0.02%)</title><rect x="97.6891%" y="693" width="0.0229%" height="15" fill="rgb(228,25,1)" fg:x="378900" fg:w="89"/><text x="97.9391%" y="703.50"></text></g><g><title>nvme_process_cq (89 samples, 0.02%)</title><rect x="97.6891%" y="677" width="0.0229%" height="15" fill="rgb(252,190,15)" fg:x="378900" fg:w="89"/><text x="97.9391%" y="687.50"></text></g><g><title>nvme_pci_complete_rq (89 samples, 0.02%)</title><rect x="97.6891%" y="661" width="0.0229%" height="15" fill="rgb(213,103,51)" fg:x="378900" fg:w="89"/><text x="97.9391%" y="671.50"></text></g><g><title>handle_irq_event (96 samples, 0.02%)</title><rect x="97.6876%" y="725" width="0.0248%" height="15" fill="rgb(220,38,44)" fg:x="378894" fg:w="96"/><text x="97.9376%" y="735.50"></text></g><g><title>handle_edge_irq (97 samples, 0.03%)</title><rect x="97.6876%" y="741" width="0.0250%" height="15" fill="rgb(210,45,26)" fg:x="378894" fg:w="97"/><text x="97.9376%" y="751.50"></text></g><g><title>__common_interrupt (102 samples, 0.03%)</title><rect x="97.6876%" y="757" width="0.0263%" height="15" fill="rgb(205,95,48)" fg:x="378894" fg:w="102"/><text x="97.9376%" y="767.50"></text></g><g><title>asm_common_interrupt (128 samples, 0.03%)</title><rect x="97.6876%" y="789" width="0.0330%" height="15" fill="rgb(225,179,37)" fg:x="378894" fg:w="128"/><text x="97.9376%" y="799.50"></text></g><g><title>common_interrupt (128 samples, 0.03%)</title><rect x="97.6876%" y="773" width="0.0330%" height="15" fill="rgb(230,209,3)" fg:x="378894" fg:w="128"/><text x="97.9376%" y="783.50"></text></g><g><title>find_vma (42 samples, 0.01%)</title><rect x="97.7492%" y="741" width="0.0108%" height="15" fill="rgb(248,12,46)" fg:x="379133" fg:w="42"/><text x="97.9992%" y="751.50"></text></g><g><title>__count_memcg_events (63 samples, 0.02%)</title><rect x="97.7737%" y="725" width="0.0162%" height="15" fill="rgb(234,18,0)" fg:x="379228" fg:w="63"/><text x="98.0237%" y="735.50"></text></g><g><title>__cgroup_throttle_swaprate (79 samples, 0.02%)</title><rect x="97.8503%" y="677" width="0.0204%" height="15" fill="rgb(238,197,14)" fg:x="379525" fg:w="79"/><text x="98.1003%" y="687.50"></text></g><g><title>charge_memcg (84 samples, 0.02%)</title><rect x="97.8727%" y="661" width="0.0217%" height="15" fill="rgb(251,162,48)" fg:x="379612" fg:w="84"/><text x="98.1227%" y="671.50"></text></g><g><title>__mem_cgroup_charge (129 samples, 0.03%)</title><rect x="97.8714%" y="677" width="0.0333%" height="15" fill="rgb(237,73,42)" fg:x="379607" fg:w="129"/><text x="98.1214%" y="687.50"></text></g><g><title>clear_page_erms (179 samples, 0.05%)</title><rect x="97.9408%" y="629" width="0.0462%" height="15" fill="rgb(211,108,8)" fg:x="379876" fg:w="179"/><text x="98.1908%" y="639.50"></text></g><g><title>get_page_from_freelist (311 samples, 0.08%)</title><rect x="97.9341%" y="645" width="0.0802%" height="15" fill="rgb(213,45,22)" fg:x="379850" fg:w="311"/><text x="98.1841%" y="655.50"></text></g><g><title>rmqueue (104 samples, 0.03%)</title><rect x="97.9874%" y="629" width="0.0268%" height="15" fill="rgb(252,154,5)" fg:x="380057" fg:w="104"/><text x="98.2374%" y="639.50"></text></g><g><title>__alloc_pages (382 samples, 0.10%)</title><rect x="97.9168%" y="661" width="0.0985%" height="15" fill="rgb(221,79,52)" fg:x="379783" fg:w="382"/><text x="98.1668%" y="671.50"></text></g><g><title>alloc_pages_vma (437 samples, 0.11%)</title><rect x="97.9096%" y="677" width="0.1127%" height="15" fill="rgb(229,220,36)" fg:x="379755" fg:w="437"/><text x="98.1596%" y="687.50"></text></g><g><title>__pagevec_lru_add_fn (88 samples, 0.02%)</title><rect x="98.0362%" y="629" width="0.0227%" height="15" fill="rgb(211,17,16)" fg:x="380246" fg:w="88"/><text x="98.2862%" y="639.50"></text></g><g><title>__pagevec_lru_add (124 samples, 0.03%)</title><rect x="98.0318%" y="645" width="0.0320%" height="15" fill="rgb(222,55,31)" fg:x="380229" fg:w="124"/><text x="98.2818%" y="655.50"></text></g><g><title>lru_cache_add_inactive_or_unevictable (147 samples, 0.04%)</title><rect x="98.0269%" y="677" width="0.0379%" height="15" fill="rgb(221,221,31)" fg:x="380210" fg:w="147"/><text x="98.2769%" y="687.50"></text></g><g><title>lru_cache_add (144 samples, 0.04%)</title><rect x="98.0277%" y="661" width="0.0371%" height="15" fill="rgb(227,168,26)" fg:x="380213" fg:w="144"/><text x="98.2777%" y="671.50"></text></g><g><title>__mod_lruvec_page_state (67 samples, 0.02%)</title><rect x="98.0666%" y="661" width="0.0173%" height="15" fill="rgb(224,139,9)" fg:x="380364" fg:w="67"/><text x="98.3166%" y="671.50"></text></g><g><title>page_add_new_anon_rmap (76 samples, 0.02%)</title><rect x="98.0658%" y="677" width="0.0196%" height="15" fill="rgb(254,172,0)" fg:x="380361" fg:w="76"/><text x="98.3158%" y="687.50"></text></g><g><title>do_anonymous_page (973 samples, 0.25%)</title><rect x="97.8374%" y="693" width="0.2509%" height="15" fill="rgb(235,203,1)" fg:x="379475" fg:w="973"/><text x="98.0874%" y="703.50"></text></g><g><title>handle_pte_fault (1,080 samples, 0.28%)</title><rect x="97.8139%" y="709" width="0.2784%" height="15" fill="rgb(216,205,24)" fg:x="379384" fg:w="1080"/><text x="98.0639%" y="719.50"></text></g><g><title>__handle_mm_fault (1,188 samples, 0.31%)</title><rect x="97.7899%" y="725" width="0.3063%" height="15" fill="rgb(233,24,6)" fg:x="379291" fg:w="1188"/><text x="98.0399%" y="735.50"></text></g><g><title>handle_mm_fault (1,349 samples, 0.35%)</title><rect x="97.7600%" y="741" width="0.3478%" height="15" fill="rgb(244,110,9)" fg:x="379175" fg:w="1349"/><text x="98.0100%" y="751.50"></text></g><g><title>do_user_addr_fault (1,505 samples, 0.39%)</title><rect x="97.7294%" y="757" width="0.3880%" height="15" fill="rgb(239,222,42)" fg:x="379056" fg:w="1505"/><text x="97.9794%" y="767.50"></text></g><g><title>irqentry_exit (47 samples, 0.01%)</title><rect x="98.1189%" y="757" width="0.0121%" height="15" fill="rgb(218,145,13)" fg:x="380567" fg:w="47"/><text x="98.3689%" y="767.50"></text></g><g><title>exc_page_fault (1,602 samples, 0.41%)</title><rect x="97.7232%" y="773" width="0.4130%" height="15" fill="rgb(207,69,11)" fg:x="379032" fg:w="1602"/><text x="97.9732%" y="783.50"></text></g><g><title>asm_exc_page_fault (1,615 samples, 0.42%)</title><rect x="97.7206%" y="789" width="0.4164%" height="15" fill="rgb(220,223,22)" fg:x="379022" fg:w="1615"/><text x="97.9706%" y="799.50"></text></g><g><title>tick_sched_handle (107 samples, 0.03%)</title><rect x="98.1612%" y="693" width="0.0276%" height="15" fill="rgb(245,102,5)" fg:x="380731" fg:w="107"/><text x="98.4112%" y="703.50"></text></g><g><title>update_process_times (101 samples, 0.03%)</title><rect x="98.1628%" y="677" width="0.0260%" height="15" fill="rgb(211,148,2)" fg:x="380737" fg:w="101"/><text x="98.4128%" y="687.50"></text></g><g><title>scheduler_tick (72 samples, 0.02%)</title><rect x="98.1702%" y="661" width="0.0186%" height="15" fill="rgb(241,13,44)" fg:x="380766" fg:w="72"/><text x="98.4202%" y="671.50"></text></g><g><title>tick_sched_timer (118 samples, 0.03%)</title><rect x="98.1597%" y="709" width="0.0304%" height="15" fill="rgb(219,137,21)" fg:x="380725" fg:w="118"/><text x="98.4097%" y="719.50"></text></g><g><title>__hrtimer_run_queues (189 samples, 0.05%)</title><rect x="98.1421%" y="725" width="0.0487%" height="15" fill="rgb(242,206,5)" fg:x="380657" fg:w="189"/><text x="98.3921%" y="735.50"></text></g><g><title>hrtimer_interrupt (217 samples, 0.06%)</title><rect x="98.1403%" y="741" width="0.0559%" height="15" fill="rgb(217,114,22)" fg:x="380650" fg:w="217"/><text x="98.3903%" y="751.50"></text></g><g><title>__sysvec_apic_timer_interrupt (227 samples, 0.06%)</title><rect x="98.1380%" y="757" width="0.0585%" height="15" fill="rgb(253,206,42)" fg:x="380641" fg:w="227"/><text x="98.3880%" y="767.50"></text></g><g><title>rcu_core_si (56 samples, 0.01%)</title><rect x="98.1986%" y="725" width="0.0144%" height="15" fill="rgb(236,102,18)" fg:x="380876" fg:w="56"/><text x="98.4486%" y="735.50"></text></g><g><title>rcu_core (56 samples, 0.01%)</title><rect x="98.1986%" y="709" width="0.0144%" height="15" fill="rgb(208,59,49)" fg:x="380876" fg:w="56"/><text x="98.4486%" y="719.50"></text></g><g><title>irq_exit_rcu (94 samples, 0.02%)</title><rect x="98.1970%" y="757" width="0.0242%" height="15" fill="rgb(215,194,28)" fg:x="380870" fg:w="94"/><text x="98.4470%" y="767.50"></text></g><g><title>__softirqentry_text_start (90 samples, 0.02%)</title><rect x="98.1981%" y="741" width="0.0232%" height="15" fill="rgb(243,207,11)" fg:x="380874" fg:w="90"/><text x="98.4481%" y="751.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (358 samples, 0.09%)</title><rect x="98.1370%" y="789" width="0.0923%" height="15" fill="rgb(254,179,35)" fg:x="380637" fg:w="358"/><text x="98.3870%" y="799.50"></text></g><g><title>sysvec_apic_timer_interrupt (355 samples, 0.09%)</title><rect x="98.1377%" y="773" width="0.0915%" height="15" fill="rgb(235,97,3)" fg:x="380640" fg:w="355"/><text x="98.3877%" y="783.50"></text></g><g><title>pick_next_task_fair (61 samples, 0.02%)</title><rect x="98.2576%" y="645" width="0.0157%" height="15" fill="rgb(215,155,33)" fg:x="381105" fg:w="61"/><text x="98.5076%" y="655.50"></text></g><g><title>pick_next_task (70 samples, 0.02%)</title><rect x="98.2558%" y="661" width="0.0180%" height="15" fill="rgb(223,128,12)" fg:x="381098" fg:w="70"/><text x="98.5058%" y="671.50"></text></g><g><title>__schedule (162 samples, 0.04%)</title><rect x="98.2455%" y="677" width="0.0418%" height="15" fill="rgb(208,157,18)" fg:x="381058" fg:w="162"/><text x="98.4955%" y="687.50"></text></g><g><title>exit_to_user_mode_loop (190 samples, 0.05%)</title><rect x="98.2386%" y="709" width="0.0490%" height="15" fill="rgb(249,70,54)" fg:x="381031" fg:w="190"/><text x="98.4886%" y="719.50"></text></g><g><title>schedule (163 samples, 0.04%)</title><rect x="98.2455%" y="693" width="0.0420%" height="15" fill="rgb(244,118,24)" fg:x="381058" fg:w="163"/><text x="98.4955%" y="703.50"></text></g><g><title>exit_to_user_mode_prepare (205 samples, 0.05%)</title><rect x="98.2373%" y="725" width="0.0529%" height="15" fill="rgb(211,54,0)" fg:x="381026" fg:w="205"/><text x="98.4873%" y="735.50"></text></g><g><title>irqentry_exit (208 samples, 0.05%)</title><rect x="98.2367%" y="757" width="0.0536%" height="15" fill="rgb(245,137,45)" fg:x="381024" fg:w="208"/><text x="98.4867%" y="767.50"></text></g><g><title>irqentry_exit_to_user_mode (208 samples, 0.05%)</title><rect x="98.2367%" y="741" width="0.0536%" height="15" fill="rgb(232,154,31)" fg:x="381024" fg:w="208"/><text x="98.4867%" y="751.50"></text></g><g><title>asm_sysvec_reschedule_ipi (231 samples, 0.06%)</title><rect x="98.2311%" y="789" width="0.0596%" height="15" fill="rgb(253,6,39)" fg:x="381002" fg:w="231"/><text x="98.4811%" y="799.50"></text></g><g><title>sysvec_reschedule_ipi (224 samples, 0.06%)</title><rect x="98.2329%" y="773" width="0.0578%" height="15" fill="rgb(234,183,24)" fg:x="381009" fg:w="224"/><text x="98.4829%" y="783.50"></text></g><g><title>__fput (80 samples, 0.02%)</title><rect x="98.3064%" y="645" width="0.0206%" height="15" fill="rgb(252,84,40)" fg:x="381294" fg:w="80"/><text x="98.5564%" y="655.50"></text></g><g><title>security_file_free (45 samples, 0.01%)</title><rect x="98.3154%" y="629" width="0.0116%" height="15" fill="rgb(224,65,2)" fg:x="381329" fg:w="45"/><text x="98.5654%" y="639.50"></text></g><g><title>____fput (88 samples, 0.02%)</title><rect x="98.3064%" y="661" width="0.0227%" height="15" fill="rgb(229,38,24)" fg:x="381294" fg:w="88"/><text x="98.5564%" y="671.50"></text></g><g><title>exit_to_user_mode_loop (103 samples, 0.03%)</title><rect x="98.3030%" y="693" width="0.0266%" height="15" fill="rgb(218,131,50)" fg:x="381281" fg:w="103"/><text x="98.5530%" y="703.50"></text></g><g><title>task_work_run (92 samples, 0.02%)</title><rect x="98.3058%" y="677" width="0.0237%" height="15" fill="rgb(233,106,18)" fg:x="381292" fg:w="92"/><text x="98.5558%" y="687.50"></text></g><g><title>syscall_exit_to_user_mode (108 samples, 0.03%)</title><rect x="98.3020%" y="725" width="0.0278%" height="15" fill="rgb(220,216,11)" fg:x="381277" fg:w="108"/><text x="98.5520%" y="735.50"></text></g><g><title>exit_to_user_mode_prepare (108 samples, 0.03%)</title><rect x="98.3020%" y="709" width="0.0278%" height="15" fill="rgb(251,100,45)" fg:x="381277" fg:w="108"/><text x="98.5520%" y="719.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (82 samples, 0.02%)</title><rect x="98.3365%" y="693" width="0.0211%" height="15" fill="rgb(235,143,32)" fg:x="381411" fg:w="82"/><text x="98.5865%" y="703.50"></text></g><g><title>fshook_syscalltable_pre_lchown (39 samples, 0.01%)</title><rect x="98.3476%" y="677" width="0.0101%" height="15" fill="rgb(248,124,34)" fg:x="381454" fg:w="39"/><text x="98.5976%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (230 samples, 0.06%)</title><rect x="98.2994%" y="757" width="0.0593%" height="15" fill="rgb(225,221,4)" fg:x="381267" fg:w="230"/><text x="98.5494%" y="767.50"></text></g><g><title>do_syscall_64 (228 samples, 0.06%)</title><rect x="98.2999%" y="741" width="0.0588%" height="15" fill="rgb(242,27,43)" fg:x="381269" fg:w="228"/><text x="98.5499%" y="751.50"></text></g><g><title>unload_network_ops_symbols (112 samples, 0.03%)</title><rect x="98.3298%" y="725" width="0.0289%" height="15" fill="rgb(227,54,8)" fg:x="381385" fg:w="112"/><text x="98.5798%" y="735.50"></text></g><g><title>cshook_systemcalltable_pre_close (86 samples, 0.02%)</title><rect x="98.3365%" y="709" width="0.0222%" height="15" fill="rgb(253,139,49)" fg:x="381411" fg:w="86"/><text x="98.5865%" y="719.50"></text></g><g><title>__GI___close (236 samples, 0.06%)</title><rect x="98.2984%" y="773" width="0.0608%" height="15" fill="rgb(231,26,43)" fg:x="381263" fg:w="236"/><text x="98.5484%" y="783.50"></text></g><g><title>fileDescriptorClose (256 samples, 0.07%)</title><rect x="98.2973%" y="789" width="0.0660%" height="15" fill="rgb(207,121,39)" fg:x="381259" fg:w="256"/><text x="98.5473%" y="799.50"></text></g><g><title>__alloc_file (53 samples, 0.01%)</title><rect x="98.4018%" y="629" width="0.0137%" height="15" fill="rgb(223,101,35)" fg:x="381664" fg:w="53"/><text x="98.6518%" y="639.50"></text></g><g><title>alloc_empty_file (55 samples, 0.01%)</title><rect x="98.4015%" y="645" width="0.0142%" height="15" fill="rgb(232,87,23)" fg:x="381663" fg:w="55"/><text x="98.6515%" y="655.50"></text></g><g><title>do_dentry_open (48 samples, 0.01%)</title><rect x="98.4237%" y="613" width="0.0124%" height="15" fill="rgb(225,180,29)" fg:x="381749" fg:w="48"/><text x="98.6737%" y="623.50"></text></g><g><title>do_open (85 samples, 0.02%)</title><rect x="98.4157%" y="645" width="0.0219%" height="15" fill="rgb(225,25,17)" fg:x="381718" fg:w="85"/><text x="98.6657%" y="655.50"></text></g><g><title>vfs_open (60 samples, 0.02%)</title><rect x="98.4221%" y="629" width="0.0155%" height="15" fill="rgb(223,8,52)" fg:x="381743" fg:w="60"/><text x="98.6721%" y="639.50"></text></g><g><title>link_path_walk.part.0.constprop.0 (91 samples, 0.02%)</title><rect x="98.4376%" y="645" width="0.0235%" height="15" fill="rgb(246,42,21)" fg:x="381803" fg:w="91"/><text x="98.6876%" y="655.50"></text></g><g><title>walk_component (44 samples, 0.01%)</title><rect x="98.4497%" y="629" width="0.0113%" height="15" fill="rgb(205,64,43)" fg:x="381850" fg:w="44"/><text x="98.6997%" y="639.50"></text></g><g><title>path_openat (280 samples, 0.07%)</title><rect x="98.4010%" y="661" width="0.0722%" height="15" fill="rgb(221,160,13)" fg:x="381661" fg:w="280"/><text x="98.6510%" y="671.50"></text></g><g><title>do_filp_open (289 samples, 0.07%)</title><rect x="98.3992%" y="677" width="0.0745%" height="15" fill="rgb(239,58,35)" fg:x="381654" fg:w="289"/><text x="98.6492%" y="687.50"></text></g><g><title>do_sys_openat2 (344 samples, 0.09%)</title><rect x="98.3976%" y="693" width="0.0887%" height="15" fill="rgb(251,26,40)" fg:x="381648" fg:w="344"/><text x="98.6476%" y="703.50"></text></g><g><title>__x64_sys_openat (354 samples, 0.09%)</title><rect x="98.3969%" y="709" width="0.0913%" height="15" fill="rgb(247,0,4)" fg:x="381645" fg:w="354"/><text x="98.6469%" y="719.50"></text></g><g><title>[[falcon_kal]] (50 samples, 0.01%)</title><rect x="98.5031%" y="613" width="0.0129%" height="15" fill="rgb(218,130,10)" fg:x="382057" fg:w="50"/><text x="98.7531%" y="623.50"></text></g><g><title>down_read (49 samples, 0.01%)</title><rect x="98.5033%" y="597" width="0.0126%" height="15" fill="rgb(239,32,7)" fg:x="382058" fg:w="49"/><text x="98.7533%" y="607.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_recvmsg (62 samples, 0.02%)</title><rect x="98.5008%" y="645" width="0.0160%" height="15" fill="rgb(210,192,24)" fg:x="382048" fg:w="62"/><text x="98.7508%" y="655.50"></text></g><g><title>cshook_security_inode_free_security (55 samples, 0.01%)</title><rect x="98.5026%" y="629" width="0.0142%" height="15" fill="rgb(226,212,17)" fg:x="382055" fg:w="55"/><text x="98.7526%" y="639.50"></text></g><g><title>cshook_security_file_free_security (96 samples, 0.02%)</title><rect x="98.4935%" y="693" width="0.0248%" height="15" fill="rgb(219,201,28)" fg:x="382020" fg:w="96"/><text x="98.7435%" y="703.50"></text></g><g><title>cshook_security_file_free_security (86 samples, 0.02%)</title><rect x="98.4961%" y="677" width="0.0222%" height="15" fill="rgb(235,207,41)" fg:x="382030" fg:w="86"/><text x="98.7461%" y="687.50"></text></g><g><title>cshook_security_file_free_security (68 samples, 0.02%)</title><rect x="98.5008%" y="661" width="0.0175%" height="15" fill="rgb(241,95,54)" fg:x="382048" fg:w="68"/><text x="98.7508%" y="671.50"></text></g><g><title>enqueue_task (45 samples, 0.01%)</title><rect x="98.5443%" y="533" width="0.0116%" height="15" fill="rgb(248,12,23)" fg:x="382217" fg:w="45"/><text x="98.7943%" y="543.50"></text></g><g><title>ttwu_do_activate (58 samples, 0.01%)</title><rect x="98.5438%" y="549" width="0.0150%" height="15" fill="rgb(228,173,4)" fg:x="382215" fg:w="58"/><text x="98.7938%" y="559.50"></text></g><g><title>[[falcon_kal]] (129 samples, 0.03%)</title><rect x="98.5273%" y="629" width="0.0333%" height="15" fill="rgb(254,99,5)" fg:x="382151" fg:w="129"/><text x="98.7773%" y="639.50"></text></g><g><title>complete (128 samples, 0.03%)</title><rect x="98.5276%" y="613" width="0.0330%" height="15" fill="rgb(212,184,17)" fg:x="382152" fg:w="128"/><text x="98.7776%" y="623.50"></text></g><g><title>swake_up_locked (118 samples, 0.03%)</title><rect x="98.5302%" y="597" width="0.0304%" height="15" fill="rgb(252,174,1)" fg:x="382162" fg:w="118"/><text x="98.7802%" y="607.50"></text></g><g><title>wake_up_process (112 samples, 0.03%)</title><rect x="98.5317%" y="581" width="0.0289%" height="15" fill="rgb(241,118,51)" fg:x="382168" fg:w="112"/><text x="98.7817%" y="591.50"></text></g><g><title>try_to_wake_up (108 samples, 0.03%)</title><rect x="98.5327%" y="565" width="0.0278%" height="15" fill="rgb(227,94,47)" fg:x="382172" fg:w="108"/><text x="98.7827%" y="575.50"></text></g><g><title>_ZdlPv (141 samples, 0.04%)</title><rect x="98.5253%" y="661" width="0.0364%" height="15" fill="rgb(229,104,2)" fg:x="382143" fg:w="141"/><text x="98.7753%" y="671.50"></text></g><g><title>cshook_network_ops_inet6_sockraw_release (136 samples, 0.04%)</title><rect x="98.5265%" y="645" width="0.0351%" height="15" fill="rgb(219,28,31)" fg:x="382148" fg:w="136"/><text x="98.7765%" y="655.50"></text></g><g><title>_ZdlPv (169 samples, 0.04%)</title><rect x="98.5222%" y="677" width="0.0436%" height="15" fill="rgb(233,109,36)" fg:x="382131" fg:w="169"/><text x="98.7722%" y="687.50"></text></g><g><title>d_path (42 samples, 0.01%)</title><rect x="98.5699%" y="645" width="0.0108%" height="15" fill="rgb(246,88,11)" fg:x="382316" fg:w="42"/><text x="98.8199%" y="655.50"></text></g><g><title>prepend_path (39 samples, 0.01%)</title><rect x="98.5706%" y="629" width="0.0101%" height="15" fill="rgb(209,212,17)" fg:x="382319" fg:w="39"/><text x="98.8206%" y="639.50"></text></g><g><title>[[falcon_kal]] (58 samples, 0.01%)</title><rect x="98.5668%" y="661" width="0.0150%" height="15" fill="rgb(243,59,29)" fg:x="382304" fg:w="58"/><text x="98.8168%" y="671.50"></text></g><g><title>cshook_systemcalltable_pre_compat_sys_ioctl (98 samples, 0.03%)</title><rect x="98.5657%" y="677" width="0.0253%" height="15" fill="rgb(244,205,48)" fg:x="382300" fg:w="98"/><text x="98.8157%" y="687.50"></text></g><g><title>cshook_systemcalltable_post_openat (425 samples, 0.11%)</title><rect x="98.4889%" y="709" width="0.1096%" height="15" fill="rgb(227,30,6)" fg:x="382002" fg:w="425"/><text x="98.7389%" y="719.50"></text></g><g><title>fshook_syscalltable_pre_lchown (309 samples, 0.08%)</title><rect x="98.5188%" y="693" width="0.0797%" height="15" fill="rgb(220,205,48)" fg:x="382118" fg:w="309"/><text x="98.7688%" y="703.50"></text></g><g><title>do_syscall_64 (831 samples, 0.21%)</title><rect x="98.3894%" y="741" width="0.2143%" height="15" fill="rgb(250,94,14)" fg:x="381616" fg:w="831"/><text x="98.6394%" y="751.50"></text></g><g><title>unload_network_ops_symbols (806 samples, 0.21%)</title><rect x="98.3958%" y="725" width="0.2078%" height="15" fill="rgb(216,119,42)" fg:x="381641" fg:w="806"/><text x="98.6458%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (836 samples, 0.22%)</title><rect x="98.3889%" y="757" width="0.2155%" height="15" fill="rgb(232,155,0)" fg:x="381614" fg:w="836"/><text x="98.6389%" y="767.50"></text></g><g><title>__libc_open64 (846 samples, 0.22%)</title><rect x="98.3865%" y="773" width="0.2181%" height="15" fill="rgb(212,24,32)" fg:x="381605" fg:w="846"/><text x="98.6365%" y="783.50"></text></g><g><title>fileOpen (961 samples, 0.25%)</title><rect x="98.3633%" y="789" width="0.2478%" height="15" fill="rgb(216,69,20)" fg:x="381515" fg:w="961"/><text x="98.6133%" y="799.50"></text></g><g><title>jni_IsAssignableFrom (71 samples, 0.02%)</title><rect x="98.6168%" y="789" width="0.0183%" height="15" fill="rgb(229,73,31)" fg:x="382498" fg:w="71"/><text x="98.8668%" y="799.50"></text></g><g><title>[[vdso]] (130 samples, 0.03%)</title><rect x="98.6879%" y="741" width="0.0335%" height="15" fill="rgb(224,219,20)" fg:x="382774" fg:w="130"/><text x="98.9379%" y="751.50"></text></g><g><title>[[vdso]] (227 samples, 0.06%)</title><rect x="98.6632%" y="757" width="0.0585%" height="15" fill="rgb(215,146,41)" fg:x="382678" fg:w="227"/><text x="98.9132%" y="767.50"></text></g><g><title>os::javaTimeNanos (361 samples, 0.09%)</title><rect x="98.6364%" y="789" width="0.0931%" height="15" fill="rgb(244,71,31)" fg:x="382574" fg:w="361"/><text x="98.8864%" y="799.50"></text></g><g><title>__GI___clock_gettime (335 samples, 0.09%)</title><rect x="98.6431%" y="773" width="0.0864%" height="15" fill="rgb(224,24,11)" fg:x="382600" fg:w="335"/><text x="98.8931%" y="783.50"></text></g><g><title>[perf-742530.map] (141,743 samples, 36.54%)</title><rect x="62.2274%" y="805" width="36.5446%" height="15" fill="rgb(229,76,15)" fg:x="241357" fg:w="141743"/><text x="62.4774%" y="815.50">[perf-742530.map]</text></g><g><title>sync_regs (159 samples, 0.04%)</title><rect x="98.7310%" y="789" width="0.0410%" height="15" fill="rgb(209,93,2)" fg:x="382941" fg:w="159"/><text x="98.9810%" y="799.50"></text></g><g><title>Deoptimization::create_vframeArray (40 samples, 0.01%)</title><rect x="98.7777%" y="773" width="0.0103%" height="15" fill="rgb(216,200,50)" fg:x="383122" fg:w="40"/><text x="99.0277%" y="783.50"></text></g><g><title>Deoptimization::fetch_unroll_info_helper (53 samples, 0.01%)</title><rect x="98.7753%" y="789" width="0.0137%" height="15" fill="rgb(211,67,34)" fg:x="383113" fg:w="53"/><text x="99.0253%" y="799.50"></text></g><g><title>SharedRuntime::find_callee_method (42 samples, 0.01%)</title><rect x="98.8042%" y="789" width="0.0108%" height="15" fill="rgb(225,87,47)" fg:x="383225" fg:w="42"/><text x="99.0542%" y="799.50"></text></g><g><title>LinkResolver::resolve_method_statically (60 samples, 0.02%)</title><rect x="98.8524%" y="741" width="0.0155%" height="15" fill="rgb(217,185,16)" fg:x="383412" fg:w="60"/><text x="99.1024%" y="751.50"></text></g><g><title>Bytecode_invoke::static_target (66 samples, 0.02%)</title><rect x="98.8519%" y="757" width="0.0170%" height="15" fill="rgb(205,0,0)" fg:x="383410" fg:w="66"/><text x="99.1019%" y="767.50"></text></g><g><title>LinkResolver::resolve_invoke (42 samples, 0.01%)</title><rect x="98.8689%" y="757" width="0.0108%" height="15" fill="rgb(207,116,45)" fg:x="383476" fg:w="42"/><text x="99.1189%" y="767.50"></text></g><g><title>frame::sender (60 samples, 0.02%)</title><rect x="98.8893%" y="757" width="0.0155%" height="15" fill="rgb(221,156,26)" fg:x="383555" fg:w="60"/><text x="99.1393%" y="767.50"></text></g><g><title>OopMapSet::update_register_map (55 samples, 0.01%)</title><rect x="98.8906%" y="741" width="0.0142%" height="15" fill="rgb(213,140,4)" fg:x="383560" fg:w="55"/><text x="99.1406%" y="751.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (214 samples, 0.06%)</title><rect x="98.8504%" y="773" width="0.0552%" height="15" fill="rgb(231,224,15)" fg:x="383404" fg:w="214"/><text x="99.1004%" y="783.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (309 samples, 0.08%)</title><rect x="98.8308%" y="789" width="0.0797%" height="15" fill="rgb(244,76,20)" fg:x="383328" fg:w="309"/><text x="99.0808%" y="799.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (42 samples, 0.01%)</title><rect x="98.9112%" y="789" width="0.0108%" height="15" fill="rgb(238,117,7)" fg:x="383640" fg:w="42"/><text x="99.1612%" y="799.50"></text></g><g><title>__entry_text_start (46 samples, 0.01%)</title><rect x="98.9875%" y="725" width="0.0119%" height="15" fill="rgb(235,1,10)" fg:x="383936" fg:w="46"/><text x="99.2375%" y="735.50"></text></g><g><title>syscall_exit_to_user_mode (41 samples, 0.01%)</title><rect x="99.0192%" y="693" width="0.0106%" height="15" fill="rgb(216,165,6)" fg:x="384059" fg:w="41"/><text x="99.2692%" y="703.50"></text></g><g><title>__fget_light (42 samples, 0.01%)</title><rect x="99.0422%" y="629" width="0.0108%" height="15" fill="rgb(246,91,35)" fg:x="384148" fg:w="42"/><text x="99.2922%" y="639.50"></text></g><g><title>__fget_files (42 samples, 0.01%)</title><rect x="99.0422%" y="613" width="0.0108%" height="15" fill="rgb(228,96,24)" fg:x="384148" fg:w="42"/><text x="99.2922%" y="623.50"></text></g><g><title>__fdget_pos (66 samples, 0.02%)</title><rect x="99.0399%" y="645" width="0.0170%" height="15" fill="rgb(254,217,53)" fg:x="384139" fg:w="66"/><text x="99.2899%" y="655.50"></text></g><g><title>copy_page_to_iter (80 samples, 0.02%)</title><rect x="99.1322%" y="581" width="0.0206%" height="15" fill="rgb(209,60,0)" fg:x="384497" fg:w="80"/><text x="99.3822%" y="591.50"></text></g><g><title>copy_user_enhanced_fast_string (898 samples, 0.23%)</title><rect x="99.1528%" y="581" width="0.2315%" height="15" fill="rgb(250,93,26)" fg:x="384577" fg:w="898"/><text x="99.4028%" y="591.50"></text></g><g><title>xas_load (75 samples, 0.02%)</title><rect x="99.4276%" y="549" width="0.0193%" height="15" fill="rgb(211,9,40)" fg:x="385643" fg:w="75"/><text x="99.6776%" y="559.50"></text></g><g><title>filemap_get_read_batch (228 samples, 0.06%)</title><rect x="99.3890%" y="565" width="0.0588%" height="15" fill="rgb(242,57,20)" fg:x="385493" fg:w="228"/><text x="99.6390%" y="575.50"></text></g><g><title>filemap_get_pages (249 samples, 0.06%)</title><rect x="99.3843%" y="581" width="0.0642%" height="15" fill="rgb(248,85,48)" fg:x="385475" fg:w="249"/><text x="99.6343%" y="591.50"></text></g><g><title>__mod_lruvec_state (46 samples, 0.01%)</title><rect x="99.4880%" y="517" width="0.0119%" height="15" fill="rgb(212,117,2)" fg:x="385877" fg:w="46"/><text x="99.7380%" y="527.50"></text></g><g><title>__activate_page.part.0 (117 samples, 0.03%)</title><rect x="99.4751%" y="533" width="0.0302%" height="15" fill="rgb(243,19,3)" fg:x="385827" fg:w="117"/><text x="99.7251%" y="543.50"></text></g><g><title>__activate_page (119 samples, 0.03%)</title><rect x="99.4751%" y="549" width="0.0307%" height="15" fill="rgb(232,217,24)" fg:x="385827" fg:w="119"/><text x="99.7251%" y="559.50"></text></g><g><title>pagevec_lru_move_fn (187 samples, 0.05%)</title><rect x="99.4653%" y="565" width="0.0482%" height="15" fill="rgb(224,175,40)" fg:x="385789" fg:w="187"/><text x="99.7153%" y="575.50"></text></g><g><title>workingset_activation (112 samples, 0.03%)</title><rect x="99.5135%" y="565" width="0.0289%" height="15" fill="rgb(212,162,32)" fg:x="385976" fg:w="112"/><text x="99.7635%" y="575.50"></text></g><g><title>workingset_age_nonresident (83 samples, 0.02%)</title><rect x="99.5210%" y="549" width="0.0214%" height="15" fill="rgb(215,9,4)" fg:x="386005" fg:w="83"/><text x="99.7710%" y="559.50"></text></g><g><title>mark_page_accessed (358 samples, 0.09%)</title><rect x="99.4503%" y="581" width="0.0923%" height="15" fill="rgb(242,42,7)" fg:x="385731" fg:w="358"/><text x="99.7003%" y="591.50"></text></g><g><title>atime_needs_update (51 samples, 0.01%)</title><rect x="99.5449%" y="565" width="0.0131%" height="15" fill="rgb(242,184,45)" fg:x="386098" fg:w="51"/><text x="99.7949%" y="575.50"></text></g><g><title>touch_atime (74 samples, 0.02%)</title><rect x="99.5426%" y="581" width="0.0191%" height="15" fill="rgb(228,111,51)" fg:x="386089" fg:w="74"/><text x="99.7926%" y="591.50"></text></g><g><title>filemap_read (1,786 samples, 0.46%)</title><rect x="99.1015%" y="597" width="0.4605%" height="15" fill="rgb(236,147,17)" fg:x="384378" fg:w="1786"/><text x="99.3515%" y="607.50"></text></g><g><title>btrfs_file_read_iter (1,813 samples, 0.47%)</title><rect x="99.0963%" y="613" width="0.4674%" height="15" fill="rgb(210,75,22)" fg:x="384358" fg:w="1813"/><text x="99.3463%" y="623.50"></text></g><g><title>new_sync_read (1,850 samples, 0.48%)</title><rect x="99.0878%" y="629" width="0.4770%" height="15" fill="rgb(217,159,45)" fg:x="384325" fg:w="1850"/><text x="99.3378%" y="639.50"></text></g><g><title>apparmor_file_permission (49 samples, 0.01%)</title><rect x="99.5746%" y="597" width="0.0126%" height="15" fill="rgb(245,165,53)" fg:x="386213" fg:w="49"/><text x="99.8246%" y="607.50"></text></g><g><title>fsnotify_perm.part.0 (44 samples, 0.01%)</title><rect x="99.5877%" y="597" width="0.0113%" height="15" fill="rgb(251,190,50)" fg:x="386264" fg:w="44"/><text x="99.8377%" y="607.50"></text></g><g><title>pinnedhook_security_file_permission (62 samples, 0.02%)</title><rect x="99.5991%" y="597" width="0.0160%" height="15" fill="rgb(208,203,29)" fg:x="386308" fg:w="62"/><text x="99.8491%" y="607.50"></text></g><g><title>cshook_security_file_permission (48 samples, 0.01%)</title><rect x="99.6027%" y="581" width="0.0124%" height="15" fill="rgb(207,209,35)" fg:x="386322" fg:w="48"/><text x="99.8527%" y="591.50"></text></g><g><title>ksys_read (2,238 samples, 0.58%)</title><rect x="99.0383%" y="661" width="0.5770%" height="15" fill="rgb(230,144,49)" fg:x="384133" fg:w="2238"/><text x="99.2883%" y="671.50"></text></g><g><title>vfs_read (2,099 samples, 0.54%)</title><rect x="99.0742%" y="645" width="0.5412%" height="15" fill="rgb(229,31,6)" fg:x="384272" fg:w="2099"/><text x="99.3242%" y="655.50"></text></g><g><title>rw_verify_area (196 samples, 0.05%)</title><rect x="99.5648%" y="629" width="0.0505%" height="15" fill="rgb(251,129,24)" fg:x="386175" fg:w="196"/><text x="99.8148%" y="639.50"></text></g><g><title>security_file_permission (183 samples, 0.05%)</title><rect x="99.5681%" y="613" width="0.0472%" height="15" fill="rgb(235,105,15)" fg:x="386188" fg:w="183"/><text x="99.8181%" y="623.50"></text></g><g><title>__x64_sys_read (2,248 samples, 0.58%)</title><rect x="99.0363%" y="677" width="0.5796%" height="15" fill="rgb(216,52,43)" fg:x="384125" fg:w="2248"/><text x="99.2863%" y="687.50"></text></g><g><title>do_syscall_64 (2,430 samples, 0.63%)</title><rect x="99.0012%" y="709" width="0.6265%" height="15" fill="rgb(238,144,41)" fg:x="383989" fg:w="2430"/><text x="99.2512%" y="719.50"></text></g><g><title>unload_network_ops_symbols (2,319 samples, 0.60%)</title><rect x="99.0298%" y="693" width="0.5979%" height="15" fill="rgb(243,63,9)" fg:x="384100" fg:w="2319"/><text x="99.2798%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (2,450 samples, 0.63%)</title><rect x="98.9996%" y="725" width="0.6317%" height="15" fill="rgb(246,208,1)" fg:x="383983" fg:w="2450"/><text x="99.2496%" y="735.50"></text></g><g><title>__GI___libc_read (2,570 samples, 0.66%)</title><rect x="98.9733%" y="757" width="0.6626%" height="15" fill="rgb(233,182,18)" fg:x="383881" fg:w="2570"/><text x="99.2233%" y="767.50"></text></g><g><title>__GI___libc_read (2,566 samples, 0.66%)</title><rect x="98.9744%" y="741" width="0.6616%" height="15" fill="rgb(242,224,8)" fg:x="383885" fg:w="2566"/><text x="99.2244%" y="751.50"></text></g><g><title>handleRead (2,589 samples, 0.67%)</title><rect x="98.9721%" y="773" width="0.6675%" height="15" fill="rgb(243,54,37)" fg:x="383876" fg:w="2589"/><text x="99.2221%" y="783.50"></text></g><g><title>jni_GetArrayLength (68 samples, 0.02%)</title><rect x="99.6396%" y="773" width="0.0175%" height="15" fill="rgb(233,192,12)" fg:x="386465" fg:w="68"/><text x="99.8896%" y="783.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (40 samples, 0.01%)</title><rect x="99.6692%" y="757" width="0.0103%" height="15" fill="rgb(251,192,53)" fg:x="386580" fg:w="40"/><text x="99.9192%" y="767.50"></text></g><g><title>JNIHandles::make_local (63 samples, 0.02%)</title><rect x="99.6857%" y="757" width="0.0162%" height="15" fill="rgb(246,141,26)" fg:x="386644" fg:w="63"/><text x="99.9357%" y="767.50"></text></g><g><title>jni_GetObjectField (246 samples, 0.06%)</title><rect x="99.6571%" y="773" width="0.0634%" height="15" fill="rgb(239,195,19)" fg:x="386533" fg:w="246"/><text x="99.9071%" y="783.50"></text></g><g><title>[libc.so.6] (269 samples, 0.07%)</title><rect x="99.7430%" y="757" width="0.0694%" height="15" fill="rgb(241,16,39)" fg:x="386866" fg:w="269"/><text x="99.9930%" y="767.50"></text></g><g><title>check_bounds (42 samples, 0.01%)</title><rect x="99.8123%" y="757" width="0.0108%" height="15" fill="rgb(223,13,53)" fg:x="387135" fg:w="42"/><text x="100.0623%" y="767.50"></text></g><g><title>readBytes (3,373 samples, 0.87%)</title><rect x="98.9545%" y="789" width="0.8696%" height="15" fill="rgb(214,227,0)" fg:x="383808" fg:w="3373"/><text x="99.2045%" y="799.50"></text></g><g><title>jni_SetByteArrayRegion (402 samples, 0.10%)</title><rect x="99.7205%" y="773" width="0.1036%" height="15" fill="rgb(228,103,26)" fg:x="386779" fg:w="402"/><text x="99.9705%" y="783.50"></text></g><g><title>[unknown] (4,105 samples, 1.06%)</title><rect x="98.7720%" y="805" width="1.0584%" height="15" fill="rgb(254,177,53)" fg:x="383100" fg:w="4105"/><text x="99.0220%" y="815.50"></text></g><g><title>asm_exc_page_fault (326 samples, 0.08%)</title><rect x="99.8404%" y="805" width="0.0841%" height="15" fill="rgb(208,201,34)" fg:x="387244" fg:w="326"/><text x="100.0904%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.01%)</title><rect x="99.9335%" y="805" width="0.0111%" height="15" fill="rgb(212,39,5)" fg:x="387605" fg:w="43"/><text x="100.1835%" y="815.50"></text></g><g><title>entry_SYSCALL_64_safe_stack (94 samples, 0.02%)</title><rect x="99.9446%" y="805" width="0.0242%" height="15" fill="rgb(246,117,3)" fg:x="387648" fg:w="94"/><text x="100.1946%" y="815.50"></text></g><g><title>skyframe-evalua (212,600 samples, 54.81%)</title><rect x="45.1752%" y="821" width="54.8132%" height="15" fill="rgb(244,118,39)" fg:x="175218" fg:w="212600"/><text x="45.4252%" y="831.50">skyframe-evalua</text></g><g><title>skyframe-invali (43 samples, 0.01%)</title><rect x="99.9884%" y="821" width="0.0111%" height="15" fill="rgb(241,64,10)" fg:x="387818" fg:w="43"/><text x="100.2384%" y="831.50"></text></g><g><title>all (387,863 samples, 100%)</title><rect x="0.0000%" y="837" width="100.0000%" height="15" fill="rgb(229,39,44)" fg:x="0" fg:w="387863"/><text x="0.2500%" y="847.50"></text></g></svg></svg>