test-zig-cc/results/llvm-nosandbox.svg

491 lines
893 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="918" onload="init(evt)" viewBox="0 0 1200 918" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:fg="http://github.com/jonhoo/inferno"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:monospace; font-size:12px }
#title { text-anchor:middle; font-size:17px; }
#matched { text-anchor:end; }
#search { text-anchor:end; opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[
var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = false;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;
var truncate_text_right = false;
]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames, known_font_width;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
known_font_width = get_monospace_width(frames);
total_samples = parseInt(frames.attributes.total_samples.value);
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[*|x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
update_text_for_elements(frames.children);
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad;
matchedtxt.attributes.x.value = svgWidth - xpad;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes["fg:x"]) {
var params = get_params()
params.x = el.attributes["fg:x"].value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["fg:orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("fg:orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["fg:orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["fg:orig_" + attr].value;
e.removeAttribute("fg:orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function get_monospace_width(frames) {
// Given the id="frames" element, return the width of text characters if
// this is a monospace font, otherwise return 0.
text = find_child(frames.children[0], "text");
originalContent = text.textContent;
text.textContent = "!";
bangWidth = text.getComputedTextLength();
text.textContent = "W";
wWidth = text.getComputedTextLength();
text.textContent = originalContent;
if (bangWidth === wWidth) {
return bangWidth;
} else {
return 0;
}
}
function update_text_for_elements(elements) {
// In order to render quickly in the browser, you want to do one pass of
// reading attributes, and one pass of mutating attributes. See
// https://web.dev/avoid-large-complex-layouts-and-layout-thrashing/ for details.
// Fall back to inefficient calculation, if we're variable-width font.
// TODO This should be optimized somehow too.
if (known_font_width === 0) {
for (var i = 0; i < elements.length; i++) {
update_text(elements[i]);
}
return;
}
var textElemNewAttributes = [];
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
var newX = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * known_font_width) {
textElemNewAttributes.push([newX, ""]);
continue;
}
// Fit in full text width
if (txt.length * known_font_width < w) {
textElemNewAttributes.push([newX, txt]);
continue;
}
var substringLength = Math.floor(w / known_font_width) - 2;
if (truncate_text_right) {
// Truncate the right side of the text.
textElemNewAttributes.push([newX, txt.substring(0, substringLength) + ".."]);
continue;
} else {
// Truncate the left side of the text.
textElemNewAttributes.push([newX, ".." + txt.substring(txt.length - substringLength, txt.length)]);
continue;
}
}
console.assert(textElemNewAttributes.length === elements.length, "Resize failed, please file a bug at https://github.com/jonhoo/inferno/");
// Now that we know new textContent, set it all in one go so we don't refresh a bazillion times.
for (var i = 0; i < elements.length; i++) {
var e = elements[i];
var values = textElemNewAttributes[i];
var t = find_child(e, "text");
t.attributes.x.value = values[0];
t.textContent = values[1];
}
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (t.getComputedTextLength() < w)
return;
if (truncate_text_right) {
// Truncate the right side of the text.
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
} else {
// Truncate the left side of the text.
for (var x = 2; x < txt.length; x++) {
if (t.getSubStringLength(x - 2, txt.length) <= w) {
t.textContent = ".." + txt.substring(x, txt.length);
return;
}
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * parseInt(e.attributes["fg:x"].value) / total_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / total_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, zoomed_width_samples) {
if (e.tagName == "text") {
var parent_x = parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value);
e.attributes.x.value = format_percent(parent_x + (100 * 3 / frames.attributes.width.value));
} else if (e.tagName == "rect") {
e.attributes.x.value = format_percent(100 * (parseInt(e.attributes["fg:x"].value) - x) / zoomed_width_samples);
e.attributes.width.value = format_percent(100 * parseInt(e.attributes["fg:w"].value) / zoomed_width_samples);
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, zoomed_width_samples);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseInt(attr["fg:w"].value);
var xmin = parseInt(attr["fg:x"].value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
unzoombtn.classList.remove("hide");
var el = frames.children;
var to_update_text = [];
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseInt(a["fg:x"].value);
var ew = parseInt(a["fg:w"].value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
to_update_text.push(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, width);
to_update_text.push(e);
}
}
}
update_text_for_elements(to_update_text);
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
}
update_text_for_elements(el);
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
// Skip over frames which are either not visible, or below the zoomed-to frame
if (e.classList.contains("hide") || e.classList.contains("parent")) {
continue;
}
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseInt(rect.attributes["fg:w"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseInt(rect.attributes["fg:x"].value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
for (var k in keys) {
var x = parseInt(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="918" fill="url(#background)"/><text id="title" fill="rgb(0,0,0)" x="50.0000%" y="24.00">Flame Graph</text><text id="details" fill="rgb(0,0,0)" x="10" y="901.00"> </text><text id="unzoom" class="hide" fill="rgb(0,0,0)" x="10" y="24.00">Reset Zoom</text><text id="search" fill="rgb(0,0,0)" x="1190" y="24.00">Search</text><text id="matched" fill="rgb(0,0,0)" x="1190" y="901.00"> </text><svg id="frames" x="10" width="1180" total_samples="267578"><g><title>_dl_update_slotinfo (129 samples, 0.05%)</title><rect x="0.3543%" y="821" width="0.0482%" height="15" fill="rgb(227,0,7)" fg:x="948" fg:w="129"/><text x="0.6043%" y="831.50"></text></g><g><title>update_get_addr (38 samples, 0.01%)</title><rect x="0.4709%" y="821" width="0.0142%" height="15" fill="rgb(217,0,24)" fg:x="1260" fg:w="38"/><text x="0.7209%" y="831.50"></text></g><g><title>[anon] (1,236 samples, 0.46%)</title><rect x="0.0239%" y="837" width="0.4619%" height="15" fill="rgb(221,193,54)" fg:x="64" fg:w="1236"/><text x="0.2739%" y="847.50"></text></g><g><title>[perf-21254.map] (164 samples, 0.06%)</title><rect x="0.4858%" y="837" width="0.0613%" height="15" fill="rgb(248,212,6)" fg:x="1300" fg:w="164"/><text x="0.7358%" y="847.50"></text></g><g><title>_dl_update_slotinfo (40 samples, 0.01%)</title><rect x="0.5714%" y="821" width="0.0149%" height="15" fill="rgb(208,68,35)" fg:x="1529" fg:w="40"/><text x="0.8214%" y="831.50"></text></g><g><title>[unknown] (125 samples, 0.05%)</title><rect x="0.5471%" y="837" width="0.0467%" height="15" fill="rgb(232,128,0)" fg:x="1464" fg:w="125"/><text x="0.7971%" y="847.50"></text></g><g><title>jio_vsnprintf (51 samples, 0.02%)</title><rect x="0.6163%" y="693" width="0.0191%" height="15" fill="rgb(207,160,47)" fg:x="1649" fg:w="51"/><text x="0.8663%" y="703.50"></text></g><g><title>os::vsnprintf (51 samples, 0.02%)</title><rect x="0.6163%" y="677" width="0.0191%" height="15" fill="rgb(228,23,34)" fg:x="1649" fg:w="51"/><text x="0.8663%" y="687.50"></text></g><g><title>__vsnprintf_internal (50 samples, 0.02%)</title><rect x="0.6166%" y="661" width="0.0187%" height="15" fill="rgb(218,30,26)" fg:x="1650" fg:w="50"/><text x="0.8666%" y="671.50"></text></g><g><title>__vfprintf_internal (47 samples, 0.02%)</title><rect x="0.6178%" y="645" width="0.0176%" height="15" fill="rgb(220,122,19)" fg:x="1653" fg:w="47"/><text x="0.8678%" y="655.50"></text></g><g><title>StringEventLog::log (56 samples, 0.02%)</title><rect x="0.6148%" y="709" width="0.0209%" height="15" fill="rgb(250,228,42)" fg:x="1645" fg:w="56"/><text x="0.8648%" y="719.50"></text></g><g><title>CompileBroker::post_compile (57 samples, 0.02%)</title><rect x="0.6148%" y="725" width="0.0213%" height="15" fill="rgb(240,193,28)" fg:x="1645" fg:w="57"/><text x="0.8648%" y="735.50"></text></g><g><title>Symbol::print_symbol_on (30 samples, 0.01%)</title><rect x="0.6510%" y="693" width="0.0112%" height="15" fill="rgb(216,20,37)" fg:x="1742" fg:w="30"/><text x="0.9010%" y="703.50"></text></g><g><title>Method::print_short_name (62 samples, 0.02%)</title><rect x="0.6454%" y="709" width="0.0232%" height="15" fill="rgb(206,188,39)" fg:x="1727" fg:w="62"/><text x="0.8954%" y="719.50"></text></g><g><title>os::vsnprintf (40 samples, 0.01%)</title><rect x="0.6742%" y="677" width="0.0149%" height="15" fill="rgb(217,207,13)" fg:x="1804" fg:w="40"/><text x="0.9242%" y="687.50"></text></g><g><title>__vsnprintf_internal (37 samples, 0.01%)</title><rect x="0.6753%" y="661" width="0.0138%" height="15" fill="rgb(231,73,38)" fg:x="1807" fg:w="37"/><text x="0.9253%" y="671.50"></text></g><g><title>__vfprintf_internal (33 samples, 0.01%)</title><rect x="0.6768%" y="645" width="0.0123%" height="15" fill="rgb(225,20,46)" fg:x="1811" fg:w="33"/><text x="0.9268%" y="655.50"></text></g><g><title>CompileTask::print (133 samples, 0.05%)</title><rect x="0.6443%" y="725" width="0.0497%" height="15" fill="rgb(210,31,41)" fg:x="1724" fg:w="133"/><text x="0.8943%" y="735.50"></text></g><g><title>outputStream::print (68 samples, 0.03%)</title><rect x="0.6686%" y="709" width="0.0254%" height="15" fill="rgb(221,200,47)" fg:x="1789" fg:w="68"/><text x="0.9186%" y="719.50"></text></g><g><title>outputStream::do_vsnprintf_and_write_with_automatic_buffer (63 samples, 0.02%)</title><rect x="0.6705%" y="693" width="0.0235%" height="15" fill="rgb(226,26,5)" fg:x="1794" fg:w="63"/><text x="0.9205%" y="703.50"></text></g><g><title>BlockBegin::iterate_preorder (28 samples, 0.01%)</title><rect x="0.7437%" y="533" width="0.0105%" height="15" fill="rgb(249,33,26)" fg:x="1990" fg:w="28"/><text x="0.9937%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (37 samples, 0.01%)</title><rect x="0.7430%" y="549" width="0.0138%" height="15" fill="rgb(235,183,28)" fg:x="1988" fg:w="37"/><text x="0.9930%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (57 samples, 0.02%)</title><rect x="0.7430%" y="565" width="0.0213%" height="15" fill="rgb(221,5,38)" fg:x="1988" fg:w="57"/><text x="0.9930%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (93 samples, 0.03%)</title><rect x="0.7426%" y="581" width="0.0348%" height="15" fill="rgb(247,18,42)" fg:x="1987" fg:w="93"/><text x="0.9926%" y="591.50"></text></g><g><title>SubstitutionResolver::block_do (35 samples, 0.01%)</title><rect x="0.7643%" y="565" width="0.0131%" height="15" fill="rgb(241,131,45)" fg:x="2045" fg:w="35"/><text x="1.0143%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (146 samples, 0.05%)</title><rect x="0.7407%" y="597" width="0.0546%" height="15" fill="rgb(249,31,29)" fg:x="1982" fg:w="146"/><text x="0.9907%" y="607.50"></text></g><g><title>SubstitutionResolver::block_do (47 samples, 0.02%)</title><rect x="0.7777%" y="581" width="0.0176%" height="15" fill="rgb(225,111,53)" fg:x="2081" fg:w="47"/><text x="1.0277%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (209 samples, 0.08%)</title><rect x="0.7392%" y="613" width="0.0781%" height="15" fill="rgb(238,160,17)" fg:x="1978" fg:w="209"/><text x="0.9892%" y="623.50"></text></g><g><title>SubstitutionResolver::block_do (59 samples, 0.02%)</title><rect x="0.7953%" y="597" width="0.0220%" height="15" fill="rgb(214,148,48)" fg:x="2128" fg:w="59"/><text x="1.0453%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (212 samples, 0.08%)</title><rect x="0.7385%" y="629" width="0.0792%" height="15" fill="rgb(232,36,49)" fg:x="1976" fg:w="212"/><text x="0.9885%" y="639.50"></text></g><g><title>ValueMap::ValueMap (39 samples, 0.01%)</title><rect x="0.8214%" y="629" width="0.0146%" height="15" fill="rgb(209,103,24)" fg:x="2198" fg:w="39"/><text x="1.0714%" y="639.50"></text></g><g><title>ValueMap::find_insert (38 samples, 0.01%)</title><rect x="0.8360%" y="629" width="0.0142%" height="15" fill="rgb(229,88,8)" fg:x="2237" fg:w="38"/><text x="1.0860%" y="639.50"></text></g><g><title>GlobalValueNumbering::GlobalValueNumbering (407 samples, 0.15%)</title><rect x="0.7101%" y="645" width="0.1521%" height="15" fill="rgb(213,181,19)" fg:x="1900" fg:w="407"/><text x="0.9601%" y="655.50"></text></g><g><title>BlockBegin::iterate_preorder (34 samples, 0.01%)</title><rect x="0.8726%" y="533" width="0.0127%" height="15" fill="rgb(254,191,54)" fg:x="2335" fg:w="34"/><text x="1.1226%" y="543.50"></text></g><g><title>BlockBegin::iterate_preorder (45 samples, 0.02%)</title><rect x="0.8719%" y="549" width="0.0168%" height="15" fill="rgb(241,83,37)" fg:x="2333" fg:w="45"/><text x="1.1219%" y="559.50"></text></g><g><title>BlockBegin::iterate_preorder (56 samples, 0.02%)</title><rect x="0.8715%" y="565" width="0.0209%" height="15" fill="rgb(233,36,39)" fg:x="2332" fg:w="56"/><text x="1.1215%" y="575.50"></text></g><g><title>BlockBegin::iterate_preorder (86 samples, 0.03%)</title><rect x="0.8674%" y="581" width="0.0321%" height="15" fill="rgb(226,3,54)" fg:x="2321" fg:w="86"/><text x="1.1174%" y="591.50"></text></g><g><title>BlockBegin::iterate_preorder (113 samples, 0.04%)</title><rect x="0.8640%" y="597" width="0.0422%" height="15" fill="rgb(245,192,40)" fg:x="2312" fg:w="113"/><text x="1.1140%" y="607.50"></text></g><g><title>BlockBegin::iterate_preorder (115 samples, 0.04%)</title><rect x="0.8637%" y="613" width="0.0430%" height="15" fill="rgb(238,167,29)" fg:x="2311" fg:w="115"/><text x="1.1137%" y="623.50"></text></g><g><title>MethodLiveness::init_basic_blocks (60 samples, 0.02%)</title><rect x="0.9496%" y="549" width="0.0224%" height="15" fill="rgb(232,182,51)" fg:x="2541" fg:w="60"/><text x="1.1996%" y="559.50"></text></g><g><title>MethodLiveness::compute_liveness (110 samples, 0.04%)</title><rect x="0.9321%" y="565" width="0.0411%" height="15" fill="rgb(231,60,39)" fg:x="2494" fg:w="110"/><text x="1.1821%" y="575.50"></text></g><g><title>BlockListBuilder::set_leaders (154 samples, 0.06%)</title><rect x="0.9164%" y="597" width="0.0576%" height="15" fill="rgb(208,69,12)" fg:x="2452" fg:w="154"/><text x="1.1664%" y="607.50"></text></g><g><title>ciMethod::bci_block_start (115 samples, 0.04%)</title><rect x="0.9309%" y="581" width="0.0430%" height="15" fill="rgb(235,93,37)" fg:x="2491" fg:w="115"/><text x="1.1809%" y="591.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (173 samples, 0.06%)</title><rect x="0.9100%" y="613" width="0.0647%" height="15" fill="rgb(213,116,39)" fg:x="2435" fg:w="173"/><text x="1.1600%" y="623.50"></text></g><g><title>BlockBegin::try_merge (47 samples, 0.02%)</title><rect x="1.0102%" y="581" width="0.0176%" height="15" fill="rgb(222,207,29)" fg:x="2703" fg:w="47"/><text x="1.2602%" y="591.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (44 samples, 0.02%)</title><rect x="1.0685%" y="501" width="0.0164%" height="15" fill="rgb(206,96,30)" fg:x="2859" fg:w="44"/><text x="1.3185%" y="511.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (56 samples, 0.02%)</title><rect x="1.0651%" y="517" width="0.0209%" height="15" fill="rgb(218,138,4)" fg:x="2850" fg:w="56"/><text x="1.3151%" y="527.50"></text></g><g><title>ciField::ciField (93 samples, 0.03%)</title><rect x="1.0573%" y="533" width="0.0348%" height="15" fill="rgb(250,191,14)" fg:x="2829" fg:w="93"/><text x="1.3073%" y="543.50"></text></g><g><title>ciEnv::get_field_by_index (107 samples, 0.04%)</title><rect x="1.0528%" y="549" width="0.0400%" height="15" fill="rgb(239,60,40)" fg:x="2817" fg:w="107"/><text x="1.3028%" y="559.50"></text></g><g><title>ciBytecodeStream::get_field (131 samples, 0.05%)</title><rect x="1.0524%" y="565" width="0.0490%" height="15" fill="rgb(206,27,48)" fg:x="2816" fg:w="131"/><text x="1.3024%" y="575.50"></text></g><g><title>GraphBuilder::access_field (198 samples, 0.07%)</title><rect x="1.0330%" y="581" width="0.0740%" height="15" fill="rgb(225,35,8)" fg:x="2764" fg:w="198"/><text x="1.2830%" y="591.50"></text></g><g><title>BlockBegin::try_merge (49 samples, 0.02%)</title><rect x="1.2176%" y="501" width="0.0183%" height="15" fill="rgb(250,213,24)" fg:x="3258" fg:w="49"/><text x="1.4676%" y="511.50"></text></g><g><title>ciMethod::liveness_at_bci (27 samples, 0.01%)</title><rect x="1.2258%" y="485" width="0.0101%" height="15" fill="rgb(247,123,22)" fg:x="3280" fg:w="27"/><text x="1.4758%" y="495.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (41 samples, 0.02%)</title><rect x="1.2654%" y="421" width="0.0153%" height="15" fill="rgb(231,138,38)" fg:x="3386" fg:w="41"/><text x="1.5154%" y="431.50"></text></g><g><title>ciEnv::get_klass_by_index_impl (52 samples, 0.02%)</title><rect x="1.2636%" y="437" width="0.0194%" height="15" fill="rgb(231,145,46)" fg:x="3381" fg:w="52"/><text x="1.5136%" y="447.50"></text></g><g><title>ciField::ciField (83 samples, 0.03%)</title><rect x="1.2572%" y="453" width="0.0310%" height="15" fill="rgb(251,118,11)" fg:x="3364" fg:w="83"/><text x="1.5072%" y="463.50"></text></g><g><title>ciEnv::get_field_by_index (90 samples, 0.03%)</title><rect x="1.2550%" y="469" width="0.0336%" height="15" fill="rgb(217,147,25)" fg:x="3358" fg:w="90"/><text x="1.5050%" y="479.50"></text></g><g><title>ciBytecodeStream::get_field (108 samples, 0.04%)</title><rect x="1.2542%" y="485" width="0.0404%" height="15" fill="rgb(247,81,37)" fg:x="3356" fg:w="108"/><text x="1.5042%" y="495.50"></text></g><g><title>GraphBuilder::access_field (161 samples, 0.06%)</title><rect x="1.2389%" y="501" width="0.0602%" height="15" fill="rgb(209,12,38)" fg:x="3315" fg:w="161"/><text x="1.4889%" y="511.50"></text></g><g><title>BlockBegin::try_merge (34 samples, 0.01%)</title><rect x="1.3499%" y="421" width="0.0127%" height="15" fill="rgb(227,1,9)" fg:x="3612" fg:w="34"/><text x="1.5999%" y="431.50"></text></g><g><title>ciField::ciField (41 samples, 0.02%)</title><rect x="1.3723%" y="373" width="0.0153%" height="15" fill="rgb(248,47,43)" fg:x="3672" fg:w="41"/><text x="1.6223%" y="383.50"></text></g><g><title>ciEnv::get_field_by_index (46 samples, 0.02%)</title><rect x="1.3712%" y="389" width="0.0172%" height="15" fill="rgb(221,10,30)" fg:x="3669" fg:w="46"/><text x="1.6212%" y="399.50"></text></g><g><title>ciBytecodeStream::get_field (60 samples, 0.02%)</title><rect x="1.3697%" y="405" width="0.0224%" height="15" fill="rgb(210,229,1)" fg:x="3665" fg:w="60"/><text x="1.6197%" y="415.50"></text></g><g><title>GraphBuilder::access_field (83 samples, 0.03%)</title><rect x="1.3633%" y="421" width="0.0310%" height="15" fill="rgb(222,148,37)" fg:x="3648" fg:w="83"/><text x="1.6133%" y="431.50"></text></g><g><title>ciBytecodeStream::get_field (27 samples, 0.01%)</title><rect x="1.4366%" y="325" width="0.0101%" height="15" fill="rgb(234,67,33)" fg:x="3844" fg:w="27"/><text x="1.6866%" y="335.50"></text></g><g><title>GraphBuilder::access_field (44 samples, 0.02%)</title><rect x="1.4321%" y="341" width="0.0164%" height="15" fill="rgb(247,98,35)" fg:x="3832" fg:w="44"/><text x="1.6821%" y="351.50"></text></g><g><title>GraphBuilder::try_inline_full (33 samples, 0.01%)</title><rect x="1.4687%" y="229" width="0.0123%" height="15" fill="rgb(247,138,52)" fg:x="3930" fg:w="33"/><text x="1.7187%" y="239.50"></text></g><g><title>GraphBuilder::try_inline (37 samples, 0.01%)</title><rect x="1.4687%" y="245" width="0.0138%" height="15" fill="rgb(213,79,30)" fg:x="3930" fg:w="37"/><text x="1.7187%" y="255.50"></text></g><g><title>GraphBuilder::invoke (58 samples, 0.02%)</title><rect x="1.4680%" y="261" width="0.0217%" height="15" fill="rgb(246,177,23)" fg:x="3928" fg:w="58"/><text x="1.7180%" y="271.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (88 samples, 0.03%)</title><rect x="1.4609%" y="293" width="0.0329%" height="15" fill="rgb(230,62,27)" fg:x="3909" fg:w="88"/><text x="1.7109%" y="303.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (87 samples, 0.03%)</title><rect x="1.4613%" y="277" width="0.0325%" height="15" fill="rgb(216,154,8)" fg:x="3910" fg:w="87"/><text x="1.7113%" y="287.50"></text></g><g><title>GraphBuilder::try_inline_full (134 samples, 0.05%)</title><rect x="1.4571%" y="309" width="0.0501%" height="15" fill="rgb(244,35,45)" fg:x="3899" fg:w="134"/><text x="1.7071%" y="319.50"></text></g><g><title>GraphBuilder::try_inline (145 samples, 0.05%)</title><rect x="1.4568%" y="325" width="0.0542%" height="15" fill="rgb(251,115,12)" fg:x="3898" fg:w="145"/><text x="1.7068%" y="335.50"></text></g><g><title>ciBytecodeStream::get_method (41 samples, 0.02%)</title><rect x="1.5136%" y="325" width="0.0153%" height="15" fill="rgb(240,54,50)" fg:x="4050" fg:w="41"/><text x="1.7636%" y="335.50"></text></g><g><title>ciEnv::get_method_by_index_impl (38 samples, 0.01%)</title><rect x="1.5147%" y="309" width="0.0142%" height="15" fill="rgb(233,84,52)" fg:x="4053" fg:w="38"/><text x="1.7647%" y="319.50"></text></g><g><title>GraphBuilder::invoke (213 samples, 0.08%)</title><rect x="1.4523%" y="341" width="0.0796%" height="15" fill="rgb(207,117,47)" fg:x="3886" fg:w="213"/><text x="1.7023%" y="351.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (321 samples, 0.12%)</title><rect x="1.4231%" y="373" width="0.1200%" height="15" fill="rgb(249,43,39)" fg:x="3808" fg:w="321"/><text x="1.6731%" y="383.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (318 samples, 0.12%)</title><rect x="1.4243%" y="357" width="0.1188%" height="15" fill="rgb(209,38,44)" fg:x="3811" fg:w="318"/><text x="1.6743%" y="367.50"></text></g><g><title>GraphBuilder::push_scope (30 samples, 0.01%)</title><rect x="1.5438%" y="373" width="0.0112%" height="15" fill="rgb(236,212,23)" fg:x="4131" fg:w="30"/><text x="1.7938%" y="383.50"></text></g><g><title>ciMethod::ensure_method_data (29 samples, 0.01%)</title><rect x="1.5566%" y="373" width="0.0108%" height="15" fill="rgb(242,79,21)" fg:x="4165" fg:w="29"/><text x="1.8066%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (411 samples, 0.15%)</title><rect x="1.4149%" y="389" width="0.1536%" height="15" fill="rgb(211,96,35)" fg:x="3786" fg:w="411"/><text x="1.6649%" y="399.50"></text></g><g><title>GraphBuilder::try_inline_full (29 samples, 0.01%)</title><rect x="1.5711%" y="277" width="0.0108%" height="15" fill="rgb(253,215,40)" fg:x="4204" fg:w="29"/><text x="1.8211%" y="287.50"></text></g><g><title>GraphBuilder::try_inline (30 samples, 0.01%)</title><rect x="1.5711%" y="293" width="0.0112%" height="15" fill="rgb(211,81,21)" fg:x="4204" fg:w="30"/><text x="1.8211%" y="303.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (36 samples, 0.01%)</title><rect x="1.5700%" y="341" width="0.0135%" height="15" fill="rgb(208,190,38)" fg:x="4201" fg:w="36"/><text x="1.8200%" y="351.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (36 samples, 0.01%)</title><rect x="1.5700%" y="325" width="0.0135%" height="15" fill="rgb(235,213,38)" fg:x="4201" fg:w="36"/><text x="1.8200%" y="335.50"></text></g><g><title>GraphBuilder::invoke (33 samples, 0.01%)</title><rect x="1.5711%" y="309" width="0.0123%" height="15" fill="rgb(237,122,38)" fg:x="4204" fg:w="33"/><text x="1.8211%" y="319.50"></text></g><g><title>GraphBuilder::try_inline (37 samples, 0.01%)</title><rect x="1.5700%" y="373" width="0.0138%" height="15" fill="rgb(244,218,35)" fg:x="4201" fg:w="37"/><text x="1.8200%" y="383.50"></text></g><g><title>GraphBuilder::try_inline_full (37 samples, 0.01%)</title><rect x="1.5700%" y="357" width="0.0138%" height="15" fill="rgb(240,68,47)" fg:x="4201" fg:w="37"/><text x="1.8200%" y="367.50"></text></g><g><title>GraphBuilder::try_inline (458 samples, 0.17%)</title><rect x="1.4134%" y="405" width="0.1712%" height="15" fill="rgb(210,16,53)" fg:x="3782" fg:w="458"/><text x="1.6634%" y="415.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (40 samples, 0.01%)</title><rect x="1.5696%" y="389" width="0.0149%" height="15" fill="rgb(235,124,12)" fg:x="4200" fg:w="40"/><text x="1.8196%" y="399.50"></text></g><g><title>ciEnv::lookup_method (32 samples, 0.01%)</title><rect x="1.5969%" y="373" width="0.0120%" height="15" fill="rgb(224,169,11)" fg:x="4273" fg:w="32"/><text x="1.8469%" y="383.50"></text></g><g><title>ciMethod::ciMethod (33 samples, 0.01%)</title><rect x="1.6107%" y="341" width="0.0123%" height="15" fill="rgb(250,166,2)" fg:x="4310" fg:w="33"/><text x="1.8607%" y="351.50"></text></g><g><title>ciBytecodeStream::get_method (89 samples, 0.03%)</title><rect x="1.5906%" y="405" width="0.0333%" height="15" fill="rgb(242,216,29)" fg:x="4256" fg:w="89"/><text x="1.8406%" y="415.50"></text></g><g><title>ciEnv::get_method_by_index_impl (83 samples, 0.03%)</title><rect x="1.5928%" y="389" width="0.0310%" height="15" fill="rgb(230,116,27)" fg:x="4262" fg:w="83"/><text x="1.8428%" y="399.50"></text></g><g><title>ciObjectFactory::get_metadata (40 samples, 0.01%)</title><rect x="1.6089%" y="373" width="0.0149%" height="15" fill="rgb(228,99,48)" fg:x="4305" fg:w="40"/><text x="1.8589%" y="383.50"></text></g><g><title>ciObjectFactory::create_new_metadata (36 samples, 0.01%)</title><rect x="1.6104%" y="357" width="0.0135%" height="15" fill="rgb(253,11,6)" fg:x="4309" fg:w="36"/><text x="1.8604%" y="367.50"></text></g><g><title>GraphBuilder::invoke (610 samples, 0.23%)</title><rect x="1.4063%" y="421" width="0.2280%" height="15" fill="rgb(247,143,39)" fg:x="3763" fg:w="610"/><text x="1.6563%" y="431.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (831 samples, 0.31%)</title><rect x="1.3409%" y="453" width="0.3106%" height="15" fill="rgb(236,97,10)" fg:x="3588" fg:w="831"/><text x="1.5909%" y="463.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (823 samples, 0.31%)</title><rect x="1.3439%" y="437" width="0.3076%" height="15" fill="rgb(233,208,19)" fg:x="3596" fg:w="823"/><text x="1.5939%" y="447.50"></text></g><g><title>BlockListBuilder::set_leaders (35 samples, 0.01%)</title><rect x="1.6597%" y="421" width="0.0131%" height="15" fill="rgb(216,164,2)" fg:x="4441" fg:w="35"/><text x="1.9097%" y="431.50"></text></g><g><title>ciMethod::bci_block_start (29 samples, 0.01%)</title><rect x="1.6619%" y="405" width="0.0108%" height="15" fill="rgb(220,129,5)" fg:x="4447" fg:w="29"/><text x="1.9119%" y="415.50"></text></g><g><title>MethodLiveness::compute_liveness (27 samples, 0.01%)</title><rect x="1.6627%" y="389" width="0.0101%" height="15" fill="rgb(242,17,10)" fg:x="4449" fg:w="27"/><text x="1.9127%" y="399.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (50 samples, 0.02%)</title><rect x="1.6548%" y="437" width="0.0187%" height="15" fill="rgb(242,107,0)" fg:x="4428" fg:w="50"/><text x="1.9048%" y="447.50"></text></g><g><title>GraphBuilder::push_scope (86 samples, 0.03%)</title><rect x="1.6530%" y="453" width="0.0321%" height="15" fill="rgb(251,28,31)" fg:x="4423" fg:w="86"/><text x="1.9030%" y="463.50"></text></g><g><title>ciMethodData::load_data (37 samples, 0.01%)</title><rect x="1.6941%" y="421" width="0.0138%" height="15" fill="rgb(233,223,10)" fg:x="4533" fg:w="37"/><text x="1.9441%" y="431.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.03%)</title><rect x="1.6870%" y="453" width="0.0254%" height="15" fill="rgb(215,21,27)" fg:x="4514" fg:w="68"/><text x="1.9370%" y="463.50"></text></g><g><title>ciMethod::ensure_method_data (68 samples, 0.03%)</title><rect x="1.6870%" y="437" width="0.0254%" height="15" fill="rgb(232,23,21)" fg:x="4514" fg:w="68"/><text x="1.9370%" y="447.50"></text></g><g><title>GraphBuilder::try_inline_full (1,031 samples, 0.39%)</title><rect x="1.3282%" y="469" width="0.3853%" height="15" fill="rgb(244,5,23)" fg:x="3554" fg:w="1031"/><text x="1.5782%" y="479.50"></text></g><g><title>GraphBuilder::invoke (29 samples, 0.01%)</title><rect x="1.7158%" y="389" width="0.0108%" height="15" fill="rgb(226,81,46)" fg:x="4591" fg:w="29"/><text x="1.9658%" y="399.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (33 samples, 0.01%)</title><rect x="1.7150%" y="421" width="0.0123%" height="15" fill="rgb(247,70,30)" fg:x="4589" fg:w="33"/><text x="1.9650%" y="431.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (33 samples, 0.01%)</title><rect x="1.7150%" y="405" width="0.0123%" height="15" fill="rgb(212,68,19)" fg:x="4589" fg:w="33"/><text x="1.9650%" y="415.50"></text></g><g><title>GraphBuilder::try_inline (35 samples, 0.01%)</title><rect x="1.7150%" y="453" width="0.0131%" height="15" fill="rgb(240,187,13)" fg:x="4589" fg:w="35"/><text x="1.9650%" y="463.50"></text></g><g><title>GraphBuilder::try_inline_full (35 samples, 0.01%)</title><rect x="1.7150%" y="437" width="0.0131%" height="15" fill="rgb(223,113,26)" fg:x="4589" fg:w="35"/><text x="1.9650%" y="447.50"></text></g><g><title>GraphBuilder::try_method_handle_inline (37 samples, 0.01%)</title><rect x="1.7150%" y="469" width="0.0138%" height="15" fill="rgb(206,192,2)" fg:x="4589" fg:w="37"/><text x="1.9650%" y="479.50"></text></g><g><title>GraphBuilder::try_inline (1,084 samples, 0.41%)</title><rect x="1.3245%" y="485" width="0.4051%" height="15" fill="rgb(241,108,4)" fg:x="3544" fg:w="1084"/><text x="1.5745%" y="495.50"></text></g><g><title>ciEnv::lookup_method (44 samples, 0.02%)</title><rect x="1.7520%" y="453" width="0.0164%" height="15" fill="rgb(247,173,49)" fg:x="4688" fg:w="44"/><text x="2.0020%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (28 samples, 0.01%)</title><rect x="1.7942%" y="389" width="0.0105%" height="15" fill="rgb(224,114,35)" fg:x="4801" fg:w="28"/><text x="2.0442%" y="399.50"></text></g><g><title>ciSignature::ciSignature (61 samples, 0.02%)</title><rect x="1.7830%" y="405" width="0.0228%" height="15" fill="rgb(245,159,27)" fg:x="4771" fg:w="61"/><text x="2.0330%" y="415.50"></text></g><g><title>ciMethod::ciMethod (79 samples, 0.03%)</title><rect x="1.7767%" y="421" width="0.0295%" height="15" fill="rgb(245,172,44)" fg:x="4754" fg:w="79"/><text x="2.0267%" y="431.50"></text></g><g><title>ciObjectFactory::get_metadata (104 samples, 0.04%)</title><rect x="1.7685%" y="453" width="0.0389%" height="15" fill="rgb(236,23,11)" fg:x="4732" fg:w="104"/><text x="2.0185%" y="463.50"></text></g><g><title>ciObjectFactory::create_new_metadata (89 samples, 0.03%)</title><rect x="1.7741%" y="437" width="0.0333%" height="15" fill="rgb(205,117,38)" fg:x="4747" fg:w="89"/><text x="2.0241%" y="447.50"></text></g><g><title>ciEnv::get_method_by_index_impl (179 samples, 0.07%)</title><rect x="1.7442%" y="469" width="0.0669%" height="15" fill="rgb(237,72,25)" fg:x="4667" fg:w="179"/><text x="1.9942%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (189 samples, 0.07%)</title><rect x="1.7408%" y="485" width="0.0706%" height="15" fill="rgb(244,70,9)" fg:x="4658" fg:w="189"/><text x="1.9908%" y="495.50"></text></g><g><title>GraphBuilder::invoke (1,372 samples, 0.51%)</title><rect x="1.3099%" y="501" width="0.5127%" height="15" fill="rgb(217,125,39)" fg:x="3505" fg:w="1372"/><text x="1.5599%" y="511.50"></text></g><g><title>GraphBuilder::method_return (47 samples, 0.02%)</title><rect x="1.8241%" y="501" width="0.0176%" height="15" fill="rgb(235,36,10)" fg:x="4881" fg:w="47"/><text x="2.0741%" y="511.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (1,737 samples, 0.65%)</title><rect x="1.2000%" y="533" width="0.6492%" height="15" fill="rgb(251,123,47)" fg:x="3211" fg:w="1737"/><text x="1.4500%" y="543.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (1,717 samples, 0.64%)</title><rect x="1.2075%" y="517" width="0.6417%" height="15" fill="rgb(221,13,13)" fg:x="3231" fg:w="1717"/><text x="1.4575%" y="527.50"></text></g><g><title>MethodLiveness::init_basic_blocks (43 samples, 0.02%)</title><rect x="1.8802%" y="453" width="0.0161%" height="15" fill="rgb(238,131,9)" fg:x="5031" fg:w="43"/><text x="2.1302%" y="463.50"></text></g><g><title>MethodLiveness::compute_liveness (65 samples, 0.02%)</title><rect x="1.8738%" y="469" width="0.0243%" height="15" fill="rgb(211,50,8)" fg:x="5014" fg:w="65"/><text x="2.1238%" y="479.50"></text></g><g><title>BlockListBuilder::BlockListBuilder (110 samples, 0.04%)</title><rect x="1.8574%" y="517" width="0.0411%" height="15" fill="rgb(245,182,24)" fg:x="4970" fg:w="110"/><text x="2.1074%" y="527.50"></text></g><g><title>BlockListBuilder::set_leaders (96 samples, 0.04%)</title><rect x="1.8626%" y="501" width="0.0359%" height="15" fill="rgb(242,14,37)" fg:x="4984" fg:w="96"/><text x="2.1126%" y="511.50"></text></g><g><title>ciMethod::bci_block_start (70 samples, 0.03%)</title><rect x="1.8724%" y="485" width="0.0262%" height="15" fill="rgb(246,228,12)" fg:x="5010" fg:w="70"/><text x="2.1224%" y="495.50"></text></g><g><title>GraphBuilder::push_scope (174 samples, 0.07%)</title><rect x="1.8555%" y="533" width="0.0650%" height="15" fill="rgb(213,55,15)" fg:x="4965" fg:w="174"/><text x="2.1055%" y="543.50"></text></g><g><title>MethodData::initialize (36 samples, 0.01%)</title><rect x="1.9355%" y="469" width="0.0135%" height="15" fill="rgb(209,9,3)" fg:x="5179" fg:w="36"/><text x="2.1855%" y="479.50"></text></g><g><title>Method::build_interpreter_method_data (57 samples, 0.02%)</title><rect x="1.9280%" y="501" width="0.0213%" height="15" fill="rgb(230,59,30)" fg:x="5159" fg:w="57"/><text x="2.1780%" y="511.50"></text></g><g><title>MethodData::allocate (57 samples, 0.02%)</title><rect x="1.9280%" y="485" width="0.0213%" height="15" fill="rgb(209,121,21)" fg:x="5159" fg:w="57"/><text x="2.1780%" y="495.50"></text></g><g><title>ciMethodData::load_data (57 samples, 0.02%)</title><rect x="1.9512%" y="501" width="0.0213%" height="15" fill="rgb(220,109,13)" fg:x="5221" fg:w="57"/><text x="2.2012%" y="511.50"></text></g><g><title>ciMethod::ensure_method_data (149 samples, 0.06%)</title><rect x="1.9258%" y="533" width="0.0557%" height="15" fill="rgb(232,18,1)" fg:x="5153" fg:w="149"/><text x="2.1758%" y="543.50"></text></g><g><title>ciMethod::ensure_method_data (143 samples, 0.05%)</title><rect x="1.9280%" y="517" width="0.0534%" height="15" fill="rgb(215,41,42)" fg:x="5159" fg:w="143"/><text x="2.1780%" y="527.50"></text></g><g><title>GraphBuilder::try_inline_full (2,155 samples, 0.81%)</title><rect x="1.1802%" y="549" width="0.8054%" height="15" fill="rgb(224,123,36)" fg:x="3158" fg:w="2155"/><text x="1.4302%" y="559.50"></text></g><g><title>GraphBuilder::try_inline (2,178 samples, 0.81%)</title><rect x="1.1750%" y="565" width="0.8140%" height="15" fill="rgb(240,125,3)" fg:x="3144" fg:w="2178"/><text x="1.4250%" y="575.50"></text></g><g><title>LinkResolver::resolve_method (52 samples, 0.02%)</title><rect x="2.0364%" y="501" width="0.0194%" height="15" fill="rgb(205,98,50)" fg:x="5449" fg:w="52"/><text x="2.2864%" y="511.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method_or_null (56 samples, 0.02%)</title><rect x="2.0357%" y="517" width="0.0209%" height="15" fill="rgb(205,185,37)" fg:x="5447" fg:w="56"/><text x="2.2857%" y="527.50"></text></g><g><title>ciEnv::lookup_method (108 samples, 0.04%)</title><rect x="2.0286%" y="533" width="0.0404%" height="15" fill="rgb(238,207,15)" fg:x="5428" fg:w="108"/><text x="2.2786%" y="543.50"></text></g><g><title>SignatureStream::as_symbol (36 samples, 0.01%)</title><rect x="2.0925%" y="469" width="0.0135%" height="15" fill="rgb(213,199,42)" fg:x="5599" fg:w="36"/><text x="2.3425%" y="479.50"></text></g><g><title>SymbolTable::lookup (36 samples, 0.01%)</title><rect x="2.0925%" y="453" width="0.0135%" height="15" fill="rgb(235,201,11)" fg:x="5599" fg:w="36"/><text x="2.3425%" y="463.50"></text></g><g><title>Dictionary::find (27 samples, 0.01%)</title><rect x="2.1134%" y="437" width="0.0101%" height="15" fill="rgb(207,46,11)" fg:x="5655" fg:w="27"/><text x="2.3634%" y="447.50"></text></g><g><title>SystemDictionary::find_constrained_instance_or_array_klass (31 samples, 0.01%)</title><rect x="2.1130%" y="453" width="0.0116%" height="15" fill="rgb(241,35,35)" fg:x="5654" fg:w="31"/><text x="2.3630%" y="463.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (53 samples, 0.02%)</title><rect x="2.1100%" y="469" width="0.0198%" height="15" fill="rgb(243,32,47)" fg:x="5646" fg:w="53"/><text x="2.3600%" y="479.50"></text></g><g><title>ciSignature::ciSignature (137 samples, 0.05%)</title><rect x="2.0854%" y="485" width="0.0512%" height="15" fill="rgb(247,202,23)" fg:x="5580" fg:w="137"/><text x="2.3354%" y="495.50"></text></g><g><title>ciMethod::ciMethod (164 samples, 0.06%)</title><rect x="2.0757%" y="501" width="0.0613%" height="15" fill="rgb(219,102,11)" fg:x="5554" fg:w="164"/><text x="2.3257%" y="511.50"></text></g><g><title>ciObjectFactory::get_metadata (186 samples, 0.07%)</title><rect x="2.0689%" y="533" width="0.0695%" height="15" fill="rgb(243,110,44)" fg:x="5536" fg:w="186"/><text x="2.3189%" y="543.50"></text></g><g><title>ciObjectFactory::create_new_metadata (172 samples, 0.06%)</title><rect x="2.0742%" y="517" width="0.0643%" height="15" fill="rgb(222,74,54)" fg:x="5550" fg:w="172"/><text x="2.3242%" y="527.50"></text></g><g><title>ciEnv::get_method_by_index_impl (342 samples, 0.13%)</title><rect x="2.0136%" y="549" width="0.1278%" height="15" fill="rgb(216,99,12)" fg:x="5388" fg:w="342"/><text x="2.2636%" y="559.50"></text></g><g><title>ciBytecodeStream::get_method (366 samples, 0.14%)</title><rect x="2.0050%" y="565" width="0.1368%" height="15" fill="rgb(226,22,26)" fg:x="5365" fg:w="366"/><text x="2.2550%" y="575.50"></text></g><g><title>Dependencies::find_unique_concrete_method (31 samples, 0.01%)</title><rect x="2.1504%" y="549" width="0.0116%" height="15" fill="rgb(217,163,10)" fg:x="5754" fg:w="31"/><text x="2.4004%" y="559.50"></text></g><g><title>ClassHierarchyWalker::find_witness_anywhere (30 samples, 0.01%)</title><rect x="2.1508%" y="533" width="0.0112%" height="15" fill="rgb(213,25,53)" fg:x="5755" fg:w="30"/><text x="2.4008%" y="543.50"></text></g><g><title>ClassHierarchyWalker::is_witness (28 samples, 0.01%)</title><rect x="2.1515%" y="517" width="0.0105%" height="15" fill="rgb(252,105,26)" fg:x="5757" fg:w="28"/><text x="2.4015%" y="527.50"></text></g><g><title>ciMethod::find_monomorphic_target (44 samples, 0.02%)</title><rect x="2.1504%" y="565" width="0.0164%" height="15" fill="rgb(220,39,43)" fg:x="5754" fg:w="44"/><text x="2.4004%" y="575.50"></text></g><g><title>GraphBuilder::invoke (2,760 samples, 1.03%)</title><rect x="1.1399%" y="581" width="1.0315%" height="15" fill="rgb(229,68,48)" fg:x="3050" fg:w="2760"/><text x="1.3899%" y="591.50"></text></g><g><title>GraphBuilder::iterate_bytecodes_for_block (3,222 samples, 1.20%)</title><rect x="0.9900%" y="597" width="1.2041%" height="15" fill="rgb(252,8,32)" fg:x="2649" fg:w="3222"/><text x="1.2400%" y="607.50"></text></g><g><title>GraphBuilder::iterate_all_blocks (3,256 samples, 1.22%)</title><rect x="0.9810%" y="613" width="1.2168%" height="15" fill="rgb(223,20,43)" fg:x="2625" fg:w="3256"/><text x="1.2310%" y="623.50"></text></g><g><title>GraphBuilder::GraphBuilder (3,617 samples, 1.35%)</title><rect x="0.8633%" y="629" width="1.3518%" height="15" fill="rgb(229,81,49)" fg:x="2310" fg:w="3617"/><text x="1.1133%" y="639.50"></text></g><g><title>IR::IR (3,634 samples, 1.36%)</title><rect x="0.8626%" y="645" width="1.3581%" height="15" fill="rgb(236,28,36)" fg:x="2308" fg:w="3634"/><text x="1.1126%" y="655.50"></text></g><g><title>ComputeLinearScanOrder::compute_order (39 samples, 0.01%)</title><rect x="2.2266%" y="613" width="0.0146%" height="15" fill="rgb(249,185,26)" fg:x="5958" fg:w="39"/><text x="2.4766%" y="623.50"></text></g><g><title>ComputeLinearScanOrder::ComputeLinearScanOrder (82 samples, 0.03%)</title><rect x="2.2207%" y="629" width="0.0306%" height="15" fill="rgb(249,174,33)" fg:x="5942" fg:w="82"/><text x="2.4707%" y="639.50"></text></g><g><title>IR::compute_code (88 samples, 0.03%)</title><rect x="2.2207%" y="645" width="0.0329%" height="15" fill="rgb(233,201,37)" fg:x="5942" fg:w="88"/><text x="2.4707%" y="655.50"></text></g><g><title>UseCountComputer::block_do (92 samples, 0.03%)</title><rect x="2.2565%" y="613" width="0.0344%" height="15" fill="rgb(221,78,26)" fg:x="6038" fg:w="92"/><text x="2.5065%" y="623.50"></text></g><g><title>ValueStack::values_do (38 samples, 0.01%)</title><rect x="2.2767%" y="597" width="0.0142%" height="15" fill="rgb(250,127,30)" fg:x="6092" fg:w="38"/><text x="2.5267%" y="607.50"></text></g><g><title>BlockList::iterate_backward (94 samples, 0.04%)</title><rect x="2.2562%" y="629" width="0.0351%" height="15" fill="rgb(230,49,44)" fg:x="6037" fg:w="94"/><text x="2.5062%" y="639.50"></text></g><g><title>IR::compute_use_counts (128 samples, 0.05%)</title><rect x="2.2535%" y="645" width="0.0478%" height="15" fill="rgb(229,67,23)" fg:x="6030" fg:w="128"/><text x="2.5035%" y="655.50"></text></g><g><title>NullCheckEliminator::iterate_one (172 samples, 0.06%)</title><rect x="2.3126%" y="613" width="0.0643%" height="15" fill="rgb(249,83,47)" fg:x="6188" fg:w="172"/><text x="2.5626%" y="623.50"></text></g><g><title>IR::eliminate_null_checks (210 samples, 0.08%)</title><rect x="2.3014%" y="645" width="0.0785%" height="15" fill="rgb(215,43,3)" fg:x="6158" fg:w="210"/><text x="2.5514%" y="655.50"></text></g><g><title>Optimizer::eliminate_null_checks (209 samples, 0.08%)</title><rect x="2.3018%" y="629" width="0.0781%" height="15" fill="rgb(238,154,13)" fg:x="6159" fg:w="209"/><text x="2.5518%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (32 samples, 0.01%)</title><rect x="2.3866%" y="581" width="0.0120%" height="15" fill="rgb(219,56,2)" fg:x="6386" fg:w="32"/><text x="2.6366%" y="591.50"></text></g><g><title>Optimizer::eliminate_conditional_expressions (45 samples, 0.02%)</title><rect x="2.3847%" y="629" width="0.0168%" height="15" fill="rgb(233,0,4)" fg:x="6381" fg:w="45"/><text x="2.6347%" y="639.50"></text></g><g><title>BlockBegin::iterate_preorder (43 samples, 0.02%)</title><rect x="2.3855%" y="613" width="0.0161%" height="15" fill="rgb(235,30,7)" fg:x="6383" fg:w="43"/><text x="2.6355%" y="623.50"></text></g><g><title>BlockBegin::iterate_preorder (43 samples, 0.02%)</title><rect x="2.3855%" y="597" width="0.0161%" height="15" fill="rgb(250,79,13)" fg:x="6383" fg:w="43"/><text x="2.6355%" y="607.50"></text></g><g><title>IR::optimize_blocks (60 samples, 0.02%)</title><rect x="2.3799%" y="645" width="0.0224%" height="15" fill="rgb(211,146,34)" fg:x="6368" fg:w="60"/><text x="2.6299%" y="655.50"></text></g><g><title>IR::split_critical_edges (53 samples, 0.02%)</title><rect x="2.4023%" y="645" width="0.0198%" height="15" fill="rgb(228,22,38)" fg:x="6428" fg:w="53"/><text x="2.6523%" y="655.50"></text></g><g><title>RangeCheckElimination::eliminate (37 samples, 0.01%)</title><rect x="2.4221%" y="645" width="0.0138%" height="15" fill="rgb(235,168,5)" fg:x="6481" fg:w="37"/><text x="2.6721%" y="655.50"></text></g><g><title>Compilation::build_hir (4,635 samples, 1.73%)</title><rect x="0.7060%" y="661" width="1.7322%" height="15" fill="rgb(221,155,16)" fg:x="1889" fg:w="4635"/><text x="0.9560%" y="671.50"></text></g><g><title>LIR_Assembler::add_call_info (34 samples, 0.01%)</title><rect x="2.4811%" y="613" width="0.0127%" height="15" fill="rgb(215,215,53)" fg:x="6639" fg:w="34"/><text x="2.7311%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (34 samples, 0.01%)</title><rect x="2.4811%" y="597" width="0.0127%" height="15" fill="rgb(223,4,10)" fg:x="6639" fg:w="34"/><text x="2.7311%" y="607.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (43 samples, 0.02%)</title><rect x="2.5006%" y="565" width="0.0161%" height="15" fill="rgb(234,103,6)" fg:x="6691" fg:w="43"/><text x="2.7506%" y="575.50"></text></g><g><title>DebugInformationRecorder::describe_scope (37 samples, 0.01%)</title><rect x="2.5166%" y="565" width="0.0138%" height="15" fill="rgb(227,97,0)" fg:x="6734" fg:w="37"/><text x="2.7666%" y="575.50"></text></g><g><title>LIR_Assembler::add_call_info (105 samples, 0.04%)</title><rect x="2.4961%" y="597" width="0.0392%" height="15" fill="rgb(234,150,53)" fg:x="6679" fg:w="105"/><text x="2.7461%" y="607.50"></text></g><g><title>CodeEmitInfo::record_debug_info (104 samples, 0.04%)</title><rect x="2.4965%" y="581" width="0.0389%" height="15" fill="rgb(228,201,54)" fg:x="6680" fg:w="104"/><text x="2.7465%" y="591.50"></text></g><g><title>LIR_Assembler::call (113 samples, 0.04%)</title><rect x="2.4939%" y="613" width="0.0422%" height="15" fill="rgb(222,22,37)" fg:x="6673" fg:w="113"/><text x="2.7439%" y="623.50"></text></g><g><title>LIR_Assembler::emit_call (187 samples, 0.07%)</title><rect x="2.4774%" y="629" width="0.0699%" height="15" fill="rgb(237,53,32)" fg:x="6629" fg:w="187"/><text x="2.7274%" y="639.50"></text></g><g><title>LIR_Assembler::emit_op0 (33 samples, 0.01%)</title><rect x="2.5473%" y="629" width="0.0123%" height="15" fill="rgb(233,25,53)" fg:x="6816" fg:w="33"/><text x="2.7973%" y="639.50"></text></g><g><title>LIR_Assembler::mem2reg (51 samples, 0.02%)</title><rect x="2.5746%" y="613" width="0.0191%" height="15" fill="rgb(210,40,34)" fg:x="6889" fg:w="51"/><text x="2.8246%" y="623.50"></text></g><g><title>LIR_Assembler::emit_op1 (168 samples, 0.06%)</title><rect x="2.5596%" y="629" width="0.0628%" height="15" fill="rgb(241,220,44)" fg:x="6849" fg:w="168"/><text x="2.8096%" y="639.50"></text></g><g><title>LIR_Assembler::emit_profile_call (75 samples, 0.03%)</title><rect x="2.6310%" y="629" width="0.0280%" height="15" fill="rgb(235,28,35)" fg:x="7040" fg:w="75"/><text x="2.8810%" y="639.50"></text></g><g><title>ciMethodData::bci_to_data (27 samples, 0.01%)</title><rect x="2.6489%" y="613" width="0.0101%" height="15" fill="rgb(210,56,17)" fg:x="7088" fg:w="27"/><text x="2.8989%" y="623.50"></text></g><g><title>LIR_OpTypeCheck::emit_code (45 samples, 0.02%)</title><rect x="2.6874%" y="629" width="0.0168%" height="15" fill="rgb(224,130,29)" fg:x="7191" fg:w="45"/><text x="2.9374%" y="639.50"></text></g><g><title>LIR_Assembler::emit_opTypeCheck (45 samples, 0.02%)</title><rect x="2.6874%" y="613" width="0.0168%" height="15" fill="rgb(235,212,8)" fg:x="7191" fg:w="45"/><text x="2.9374%" y="623.50"></text></g><g><title>LIR_Assembler::emit_code (697 samples, 0.26%)</title><rect x="2.4445%" y="645" width="0.2605%" height="15" fill="rgb(223,33,50)" fg:x="6541" fg:w="697"/><text x="2.6945%" y="655.50"></text></g><g><title>Assembler::pusha (30 samples, 0.01%)</title><rect x="2.7173%" y="613" width="0.0112%" height="15" fill="rgb(219,149,13)" fg:x="7271" fg:w="30"/><text x="2.9673%" y="623.50"></text></g><g><title>LIR_Assembler::emit_exception_handler (48 samples, 0.02%)</title><rect x="2.7110%" y="645" width="0.0179%" height="15" fill="rgb(250,156,29)" fg:x="7254" fg:w="48"/><text x="2.9610%" y="655.50"></text></g><g><title>MacroAssembler::stop (44 samples, 0.02%)</title><rect x="2.7125%" y="629" width="0.0164%" height="15" fill="rgb(216,193,19)" fg:x="7258" fg:w="44"/><text x="2.9625%" y="639.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (27 samples, 0.01%)</title><rect x="2.7472%" y="565" width="0.0101%" height="15" fill="rgb(216,135,14)" fg:x="7351" fg:w="27"/><text x="2.9972%" y="575.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (48 samples, 0.02%)</title><rect x="2.7420%" y="581" width="0.0179%" height="15" fill="rgb(241,47,5)" fg:x="7337" fg:w="48"/><text x="2.9920%" y="591.50"></text></g><g><title>DebugInformationRecorder::describe_scope (46 samples, 0.02%)</title><rect x="2.7599%" y="581" width="0.0172%" height="15" fill="rgb(233,42,35)" fg:x="7385" fg:w="46"/><text x="3.0099%" y="591.50"></text></g><g><title>CodeEmitInfo::record_debug_info (123 samples, 0.05%)</title><rect x="2.7371%" y="597" width="0.0460%" height="15" fill="rgb(231,13,6)" fg:x="7324" fg:w="123"/><text x="2.9871%" y="607.50"></text></g><g><title>LIR_Assembler::add_call_info (125 samples, 0.05%)</title><rect x="2.7371%" y="613" width="0.0467%" height="15" fill="rgb(207,181,40)" fg:x="7324" fg:w="125"/><text x="2.9871%" y="623.50"></text></g><g><title>CounterOverflowStub::emit_code (161 samples, 0.06%)</title><rect x="2.7345%" y="629" width="0.0602%" height="15" fill="rgb(254,173,49)" fg:x="7317" fg:w="161"/><text x="2.9845%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (57 samples, 0.02%)</title><rect x="2.8037%" y="613" width="0.0213%" height="15" fill="rgb(221,1,38)" fg:x="7502" fg:w="57"/><text x="3.0537%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (57 samples, 0.02%)</title><rect x="2.8037%" y="597" width="0.0213%" height="15" fill="rgb(206,124,46)" fg:x="7502" fg:w="57"/><text x="3.0537%" y="607.50"></text></g><g><title>ImplicitNullCheckStub::emit_code (67 samples, 0.03%)</title><rect x="2.8018%" y="629" width="0.0250%" height="15" fill="rgb(249,21,11)" fg:x="7497" fg:w="67"/><text x="3.0518%" y="639.50"></text></g><g><title>LIR_Assembler::add_call_info (28 samples, 0.01%)</title><rect x="2.8291%" y="613" width="0.0105%" height="15" fill="rgb(222,201,40)" fg:x="7570" fg:w="28"/><text x="3.0791%" y="623.50"></text></g><g><title>CodeEmitInfo::record_debug_info (28 samples, 0.01%)</title><rect x="2.8291%" y="597" width="0.0105%" height="15" fill="rgb(235,61,29)" fg:x="7570" fg:w="28"/><text x="3.0791%" y="607.50"></text></g><g><title>NewInstanceStub::emit_code (35 samples, 0.01%)</title><rect x="2.8280%" y="629" width="0.0131%" height="15" fill="rgb(219,207,3)" fg:x="7567" fg:w="35"/><text x="3.0780%" y="639.50"></text></g><g><title>PatchingStub::emit_code (41 samples, 0.02%)</title><rect x="2.8440%" y="629" width="0.0153%" height="15" fill="rgb(222,56,46)" fg:x="7610" fg:w="41"/><text x="3.0940%" y="639.50"></text></g><g><title>LIR_Assembler::emit_slow_case_stubs (373 samples, 0.14%)</title><rect x="2.7289%" y="645" width="0.1394%" height="15" fill="rgb(239,76,54)" fg:x="7302" fg:w="373"/><text x="2.9789%" y="655.50"></text></g><g><title>Compilation::emit_code_body (1,161 samples, 0.43%)</title><rect x="2.4382%" y="661" width="0.4339%" height="15" fill="rgb(231,124,27)" fg:x="6524" fg:w="1161"/><text x="2.6882%" y="671.50"></text></g><g><title>GrowableArray&lt;Instruction*&gt;::grow (27 samples, 0.01%)</title><rect x="2.9042%" y="597" width="0.0101%" height="15" fill="rgb(249,195,6)" fg:x="7771" fg:w="27"/><text x="3.1542%" y="607.50"></text></g><g><title>LIRGenerator::do_Base (79 samples, 0.03%)</title><rect x="2.8971%" y="613" width="0.0295%" height="15" fill="rgb(237,174,47)" fg:x="7752" fg:w="79"/><text x="3.1471%" y="623.50"></text></g><g><title>LIRGenerator::move_to_phi (56 samples, 0.02%)</title><rect x="2.9427%" y="581" width="0.0209%" height="15" fill="rgb(206,201,31)" fg:x="7874" fg:w="56"/><text x="3.1927%" y="591.50"></text></g><g><title>PhiResolver::create_node (47 samples, 0.02%)</title><rect x="2.9461%" y="565" width="0.0176%" height="15" fill="rgb(231,57,52)" fg:x="7883" fg:w="47"/><text x="3.1961%" y="575.50"></text></g><g><title>GrowableArray&lt;ResolveNode*&gt;::grow (35 samples, 0.01%)</title><rect x="3.0111%" y="565" width="0.0131%" height="15" fill="rgb(248,177,22)" fg:x="8057" fg:w="35"/><text x="3.2611%" y="575.50"></text></g><g><title>LIRGenerator::move_to_phi (231 samples, 0.09%)</title><rect x="2.9382%" y="597" width="0.0863%" height="15" fill="rgb(215,211,37)" fg:x="7862" fg:w="231"/><text x="3.1882%" y="607.50"></text></g><g><title>PhiResolverState::reset (155 samples, 0.06%)</title><rect x="2.9666%" y="581" width="0.0579%" height="15" fill="rgb(241,128,51)" fg:x="7938" fg:w="155"/><text x="3.2166%" y="591.50"></text></g><g><title>LIRGenerator::do_Goto (264 samples, 0.10%)</title><rect x="2.9304%" y="613" width="0.0987%" height="15" fill="rgb(227,165,31)" fg:x="7841" fg:w="264"/><text x="3.1804%" y="623.50"></text></g><g><title>LIRGenerator::profile_branch (37 samples, 0.01%)</title><rect x="3.0372%" y="597" width="0.0138%" height="15" fill="rgb(228,167,24)" fg:x="8127" fg:w="37"/><text x="3.2872%" y="607.50"></text></g><g><title>LIRGenerator::do_If (78 samples, 0.03%)</title><rect x="3.0290%" y="613" width="0.0292%" height="15" fill="rgb(228,143,12)" fg:x="8105" fg:w="78"/><text x="3.2790%" y="623.50"></text></g><g><title>LIRGenerator::state_for (50 samples, 0.02%)</title><rect x="3.0873%" y="597" width="0.0187%" height="15" fill="rgb(249,149,8)" fg:x="8261" fg:w="50"/><text x="3.3373%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (33 samples, 0.01%)</title><rect x="3.0937%" y="581" width="0.0123%" height="15" fill="rgb(243,35,44)" fg:x="8278" fg:w="33"/><text x="3.3437%" y="591.50"></text></g><g><title>MethodLiveness::get_liveness_at (31 samples, 0.01%)</title><rect x="3.0944%" y="565" width="0.0116%" height="15" fill="rgb(246,89,9)" fg:x="8280" fg:w="31"/><text x="3.3444%" y="575.50"></text></g><g><title>LIRGenerator::do_Invoke (126 samples, 0.05%)</title><rect x="3.0608%" y="613" width="0.0471%" height="15" fill="rgb(233,213,13)" fg:x="8190" fg:w="126"/><text x="3.3108%" y="623.50"></text></g><g><title>LIRGenerator::do_LoadField (39 samples, 0.01%)</title><rect x="3.1079%" y="613" width="0.0146%" height="15" fill="rgb(233,141,41)" fg:x="8316" fg:w="39"/><text x="3.3579%" y="623.50"></text></g><g><title>LIRGenerator::do_NewInstance (28 samples, 0.01%)</title><rect x="3.1269%" y="613" width="0.0105%" height="15" fill="rgb(239,167,4)" fg:x="8367" fg:w="28"/><text x="3.3769%" y="623.50"></text></g><g><title>LIRGenerator::do_ProfileCall (31 samples, 0.01%)</title><rect x="3.1449%" y="613" width="0.0116%" height="15" fill="rgb(209,217,16)" fg:x="8415" fg:w="31"/><text x="3.3949%" y="623.50"></text></g><g><title>LIRGenerator::increment_event_counter_impl (27 samples, 0.01%)</title><rect x="3.1580%" y="597" width="0.0101%" height="15" fill="rgb(219,88,35)" fg:x="8450" fg:w="27"/><text x="3.4080%" y="607.50"></text></g><g><title>MethodLiveness::get_liveness_at (36 samples, 0.01%)</title><rect x="3.1759%" y="565" width="0.0135%" height="15" fill="rgb(220,193,23)" fg:x="8498" fg:w="36"/><text x="3.4259%" y="575.50"></text></g><g><title>MethodLiveness::BasicBlock::get_liveness_at (27 samples, 0.01%)</title><rect x="3.1793%" y="549" width="0.0101%" height="15" fill="rgb(230,90,52)" fg:x="8507" fg:w="27"/><text x="3.4293%" y="559.50"></text></g><g><title>LIRGenerator::state_for (60 samples, 0.02%)</title><rect x="3.1680%" y="597" width="0.0224%" height="15" fill="rgb(252,106,19)" fg:x="8477" fg:w="60"/><text x="3.4180%" y="607.50"></text></g><g><title>ciMethod::liveness_at_bci (43 samples, 0.02%)</title><rect x="3.1744%" y="581" width="0.0161%" height="15" fill="rgb(206,74,20)" fg:x="8494" fg:w="43"/><text x="3.4244%" y="591.50"></text></g><g><title>LIRGenerator::do_ProfileInvoke (106 samples, 0.04%)</title><rect x="3.1565%" y="613" width="0.0396%" height="15" fill="rgb(230,138,44)" fg:x="8446" fg:w="106"/><text x="3.4065%" y="623.50"></text></g><g><title>LIRGenerator::access_store_at (41 samples, 0.02%)</title><rect x="3.2036%" y="597" width="0.0153%" height="15" fill="rgb(235,182,43)" fg:x="8572" fg:w="41"/><text x="3.4536%" y="607.50"></text></g><g><title>LIRGenerator::do_StoreField (52 samples, 0.02%)</title><rect x="3.2017%" y="613" width="0.0194%" height="15" fill="rgb(242,16,51)" fg:x="8567" fg:w="52"/><text x="3.4517%" y="623.50"></text></g><g><title>LIRGenerator::block_do (946 samples, 0.35%)</title><rect x="2.8773%" y="629" width="0.3535%" height="15" fill="rgb(248,9,4)" fg:x="7699" fg:w="946"/><text x="3.1273%" y="639.50"></text></g><g><title>BlockList::iterate_forward (952 samples, 0.36%)</title><rect x="2.8758%" y="645" width="0.3558%" height="15" fill="rgb(210,31,22)" fg:x="7695" fg:w="952"/><text x="3.1258%" y="655.50"></text></g><g><title>ControlFlowOptimizer::optimize (31 samples, 0.01%)</title><rect x="3.2316%" y="645" width="0.0116%" height="15" fill="rgb(239,54,39)" fg:x="8647" fg:w="31"/><text x="3.4816%" y="655.50"></text></g><g><title>IntervalWalker::walk_to (141 samples, 0.05%)</title><rect x="3.2772%" y="597" width="0.0527%" height="15" fill="rgb(230,99,41)" fg:x="8769" fg:w="141"/><text x="3.5272%" y="607.50"></text></g><g><title>LinearScanWalker::find_free_reg (99 samples, 0.04%)</title><rect x="3.3777%" y="565" width="0.0370%" height="15" fill="rgb(253,106,12)" fg:x="9038" fg:w="99"/><text x="3.6277%" y="575.50"></text></g><g><title>LinearScanWalker::free_collect_inactive_fixed (154 samples, 0.06%)</title><rect x="3.4226%" y="565" width="0.0576%" height="15" fill="rgb(213,46,41)" fg:x="9158" fg:w="154"/><text x="3.6726%" y="575.50"></text></g><g><title>Interval::new_split_child (30 samples, 0.01%)</title><rect x="3.4958%" y="533" width="0.0112%" height="15" fill="rgb(215,133,35)" fg:x="9354" fg:w="30"/><text x="3.7458%" y="543.50"></text></g><g><title>Interval::split (66 samples, 0.02%)</title><rect x="3.4872%" y="549" width="0.0247%" height="15" fill="rgb(213,28,5)" fg:x="9331" fg:w="66"/><text x="3.7372%" y="559.50"></text></g><g><title>LinearScanWalker::split_before_usage (91 samples, 0.03%)</title><rect x="3.4801%" y="565" width="0.0340%" height="15" fill="rgb(215,77,49)" fg:x="9312" fg:w="91"/><text x="3.7301%" y="575.50"></text></g><g><title>LinearScanWalker::alloc_free_reg (464 samples, 0.17%)</title><rect x="3.3422%" y="581" width="0.1734%" height="15" fill="rgb(248,100,22)" fg:x="8943" fg:w="464"/><text x="3.5922%" y="591.50"></text></g><g><title>IntervalWalker::append_to_unhandled (48 samples, 0.02%)</title><rect x="3.5294%" y="549" width="0.0179%" height="15" fill="rgb(208,67,9)" fg:x="9444" fg:w="48"/><text x="3.7794%" y="559.50"></text></g><g><title>LinearScanWalker::split_and_spill_interval (77 samples, 0.03%)</title><rect x="3.5291%" y="565" width="0.0288%" height="15" fill="rgb(219,133,21)" fg:x="9443" fg:w="77"/><text x="3.7791%" y="575.50"></text></g><g><title>LinearScanWalker::split_before_usage (28 samples, 0.01%)</title><rect x="3.5474%" y="549" width="0.0105%" height="15" fill="rgb(246,46,29)" fg:x="9492" fg:w="28"/><text x="3.7974%" y="559.50"></text></g><g><title>Interval::split_child_before_op_id (31 samples, 0.01%)</title><rect x="3.5601%" y="549" width="0.0116%" height="15" fill="rgb(246,185,52)" fg:x="9526" fg:w="31"/><text x="3.8101%" y="559.50"></text></g><g><title>LinearScanWalker::alloc_locked_reg (153 samples, 0.06%)</title><rect x="3.5156%" y="581" width="0.0572%" height="15" fill="rgb(252,136,11)" fg:x="9407" fg:w="153"/><text x="3.7656%" y="591.50"></text></g><g><title>LinearScanWalker::split_for_spilling (40 samples, 0.01%)</title><rect x="3.5578%" y="565" width="0.0149%" height="15" fill="rgb(219,138,53)" fg:x="9520" fg:w="40"/><text x="3.8078%" y="575.50"></text></g><g><title>LinearScanWalker::insert_move (46 samples, 0.02%)</title><rect x="3.5877%" y="581" width="0.0172%" height="15" fill="rgb(211,51,23)" fg:x="9600" fg:w="46"/><text x="3.8377%" y="591.50"></text></g><g><title>LinearScanWalker::activate_current (743 samples, 0.28%)</title><rect x="3.3299%" y="597" width="0.2777%" height="15" fill="rgb(247,221,28)" fg:x="8910" fg:w="743"/><text x="3.5799%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (939 samples, 0.35%)</title><rect x="3.2570%" y="613" width="0.3509%" height="15" fill="rgb(251,222,45)" fg:x="8715" fg:w="939"/><text x="3.5070%" y="623.50"></text></g><g><title>LinearScanWalker::LinearScanWalker (79 samples, 0.03%)</title><rect x="3.6083%" y="613" width="0.0295%" height="15" fill="rgb(217,162,53)" fg:x="9655" fg:w="79"/><text x="3.8583%" y="623.50"></text></g><g><title>resource_allocate_bytes (49 samples, 0.02%)</title><rect x="3.6195%" y="597" width="0.0183%" height="15" fill="rgb(229,93,14)" fg:x="9685" fg:w="49"/><text x="3.8695%" y="607.50"></text></g><g><title>LinearScan::allocate_registers (1,034 samples, 0.39%)</title><rect x="3.2529%" y="629" width="0.3864%" height="15" fill="rgb(209,67,49)" fg:x="8704" fg:w="1034"/><text x="3.5029%" y="639.50"></text></g><g><title>LIR_OpVisitState::visit (85 samples, 0.03%)</title><rect x="3.7070%" y="597" width="0.0318%" height="15" fill="rgb(213,87,29)" fg:x="9919" fg:w="85"/><text x="3.9570%" y="607.50"></text></g><g><title>LinearScan::color_lir_opr (65 samples, 0.02%)</title><rect x="3.7391%" y="597" width="0.0243%" height="15" fill="rgb(205,151,52)" fg:x="10005" fg:w="65"/><text x="3.9891%" y="607.50"></text></g><g><title>LinearScan::append_scope_value (34 samples, 0.01%)</title><rect x="3.7716%" y="581" width="0.0127%" height="15" fill="rgb(253,215,39)" fg:x="10092" fg:w="34"/><text x="4.0216%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (38 samples, 0.01%)</title><rect x="3.8030%" y="565" width="0.0142%" height="15" fill="rgb(221,220,41)" fg:x="10176" fg:w="38"/><text x="4.0530%" y="575.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (80 samples, 0.03%)</title><rect x="3.7903%" y="581" width="0.0299%" height="15" fill="rgb(218,133,21)" fg:x="10142" fg:w="80"/><text x="4.0403%" y="591.50"></text></g><g><title>LinearScan::compute_debug_info_for_scope (172 samples, 0.06%)</title><rect x="3.7634%" y="597" width="0.0643%" height="15" fill="rgb(221,193,43)" fg:x="10070" fg:w="172"/><text x="4.0134%" y="607.50"></text></g><g><title>IntervalWalker::walk_to (88 samples, 0.03%)</title><rect x="3.8441%" y="565" width="0.0329%" height="15" fill="rgb(240,128,52)" fg:x="10286" fg:w="88"/><text x="4.0941%" y="575.50"></text></g><g><title>LinearScan::compute_oop_map (166 samples, 0.06%)</title><rect x="3.8336%" y="581" width="0.0620%" height="15" fill="rgb(253,114,12)" fg:x="10258" fg:w="166"/><text x="4.0836%" y="591.50"></text></g><g><title>LinearScan::compute_oop_map (183 samples, 0.07%)</title><rect x="3.8277%" y="597" width="0.0684%" height="15" fill="rgb(215,223,47)" fg:x="10242" fg:w="183"/><text x="4.0777%" y="607.50"></text></g><g><title>LinearScan::assign_reg_num (679 samples, 0.25%)</title><rect x="3.6427%" y="613" width="0.2538%" height="15" fill="rgb(248,225,23)" fg:x="9747" fg:w="679"/><text x="3.8927%" y="623.50"></text></g><g><title>LinearScan::assign_reg_num (715 samples, 0.27%)</title><rect x="3.6393%" y="629" width="0.2672%" height="15" fill="rgb(250,108,0)" fg:x="9738" fg:w="715"/><text x="3.8893%" y="639.50"></text></g><g><title>BitMap::get_next_one_offset (32 samples, 0.01%)</title><rect x="3.9925%" y="613" width="0.0120%" height="15" fill="rgb(228,208,7)" fg:x="10683" fg:w="32"/><text x="4.2425%" y="623.50"></text></g><g><title>LIR_OpVisitState::visit (78 samples, 0.03%)</title><rect x="4.0201%" y="613" width="0.0292%" height="15" fill="rgb(244,45,10)" fg:x="10757" fg:w="78"/><text x="4.2701%" y="623.50"></text></g><g><title>LinearScan::add_def (44 samples, 0.02%)</title><rect x="4.0497%" y="613" width="0.0164%" height="15" fill="rgb(207,125,25)" fg:x="10836" fg:w="44"/><text x="4.2997%" y="623.50"></text></g><g><title>Interval::add_range (37 samples, 0.01%)</title><rect x="4.0766%" y="597" width="0.0138%" height="15" fill="rgb(210,195,18)" fg:x="10908" fg:w="37"/><text x="4.3266%" y="607.50"></text></g><g><title>Interval::Interval (34 samples, 0.01%)</title><rect x="4.0941%" y="581" width="0.0127%" height="15" fill="rgb(249,80,12)" fg:x="10955" fg:w="34"/><text x="4.3441%" y="591.50"></text></g><g><title>LinearScan::add_temp (98 samples, 0.04%)</title><rect x="4.0725%" y="613" width="0.0366%" height="15" fill="rgb(221,65,9)" fg:x="10897" fg:w="98"/><text x="4.3225%" y="623.50"></text></g><g><title>LinearScan::create_interval (50 samples, 0.02%)</title><rect x="4.0904%" y="597" width="0.0187%" height="15" fill="rgb(235,49,36)" fg:x="10945" fg:w="50"/><text x="4.3404%" y="607.50"></text></g><g><title>Interval::add_range (52 samples, 0.02%)</title><rect x="4.1285%" y="597" width="0.0194%" height="15" fill="rgb(225,32,20)" fg:x="11047" fg:w="52"/><text x="4.3785%" y="607.50"></text></g><g><title>Interval::Interval (55 samples, 0.02%)</title><rect x="4.1558%" y="581" width="0.0206%" height="15" fill="rgb(215,141,46)" fg:x="11120" fg:w="55"/><text x="4.4058%" y="591.50"></text></g><g><title>resource_allocate_bytes (29 samples, 0.01%)</title><rect x="4.1655%" y="565" width="0.0108%" height="15" fill="rgb(250,160,47)" fg:x="11146" fg:w="29"/><text x="4.4155%" y="575.50"></text></g><g><title>LinearScan::add_use (189 samples, 0.07%)</title><rect x="4.1091%" y="613" width="0.0706%" height="15" fill="rgb(216,222,40)" fg:x="10995" fg:w="189"/><text x="4.3591%" y="623.50"></text></g><g><title>LinearScan::create_interval (81 samples, 0.03%)</title><rect x="4.1494%" y="597" width="0.0303%" height="15" fill="rgb(234,217,39)" fg:x="11103" fg:w="81"/><text x="4.3994%" y="607.50"></text></g><g><title>LinearScan::use_kind_of_input_operand (31 samples, 0.01%)</title><rect x="4.1846%" y="613" width="0.0116%" height="15" fill="rgb(207,178,40)" fg:x="11197" fg:w="31"/><text x="4.4346%" y="623.50"></text></g><g><title>LinearScan::use_kind_of_output_operand (32 samples, 0.01%)</title><rect x="4.1962%" y="613" width="0.0120%" height="15" fill="rgb(221,136,13)" fg:x="11228" fg:w="32"/><text x="4.4462%" y="623.50"></text></g><g><title>LinearScan::build_intervals (815 samples, 0.30%)</title><rect x="3.9065%" y="629" width="0.3046%" height="15" fill="rgb(249,199,10)" fg:x="10453" fg:w="815"/><text x="4.1565%" y="639.50"></text></g><g><title>LinearScan::compute_global_live_sets (72 samples, 0.03%)</title><rect x="4.2111%" y="629" width="0.0269%" height="15" fill="rgb(249,222,13)" fg:x="11268" fg:w="72"/><text x="4.4611%" y="639.50"></text></g><g><title>LIR_OpVisitState::append (28 samples, 0.01%)</title><rect x="4.3187%" y="597" width="0.0105%" height="15" fill="rgb(244,185,38)" fg:x="11556" fg:w="28"/><text x="4.5687%" y="607.50"></text></g><g><title>LIR_OpVisitState::visit (101 samples, 0.04%)</title><rect x="4.2918%" y="613" width="0.0377%" height="15" fill="rgb(236,202,9)" fg:x="11484" fg:w="101"/><text x="4.5418%" y="623.50"></text></g><g><title>LinearScan::compute_local_live_sets (301 samples, 0.11%)</title><rect x="4.2380%" y="629" width="0.1125%" height="15" fill="rgb(250,229,37)" fg:x="11340" fg:w="301"/><text x="4.4880%" y="639.50"></text></g><g><title>ResourceBitMap::ResourceBitMap (43 samples, 0.02%)</title><rect x="4.3344%" y="613" width="0.0161%" height="15" fill="rgb(206,174,23)" fg:x="11598" fg:w="43"/><text x="4.5844%" y="623.50"></text></g><g><title>LinearScan::eliminate_spill_moves (66 samples, 0.02%)</title><rect x="4.3505%" y="629" width="0.0247%" height="15" fill="rgb(211,33,43)" fg:x="11641" fg:w="66"/><text x="4.6005%" y="639.50"></text></g><g><title>LinearScan::number_instructions (47 samples, 0.02%)</title><rect x="4.3755%" y="629" width="0.0176%" height="15" fill="rgb(245,58,50)" fg:x="11708" fg:w="47"/><text x="4.6255%" y="639.50"></text></g><g><title>Interval::split_child_at_op_id (45 samples, 0.02%)</title><rect x="4.4238%" y="597" width="0.0168%" height="15" fill="rgb(244,68,36)" fg:x="11837" fg:w="45"/><text x="4.6738%" y="607.50"></text></g><g><title>LinearScan::resolve_collect_mappings (98 samples, 0.04%)</title><rect x="4.4047%" y="613" width="0.0366%" height="15" fill="rgb(232,229,15)" fg:x="11786" fg:w="98"/><text x="4.6547%" y="623.50"></text></g><g><title>LinearScan::resolve_data_flow (151 samples, 0.06%)</title><rect x="4.3935%" y="629" width="0.0564%" height="15" fill="rgb(254,30,23)" fg:x="11756" fg:w="151"/><text x="4.6435%" y="639.50"></text></g><g><title>LinearScan::resolve_exception_handlers (40 samples, 0.01%)</title><rect x="4.4499%" y="629" width="0.0149%" height="15" fill="rgb(235,160,14)" fg:x="11907" fg:w="40"/><text x="4.6999%" y="639.50"></text></g><g><title>__GI___qsort_r (31 samples, 0.01%)</title><rect x="4.4731%" y="613" width="0.0116%" height="15" fill="rgb(212,155,44)" fg:x="11969" fg:w="31"/><text x="4.7231%" y="623.50"></text></g><g><title>LinearScan::sort_intervals_after_allocation (53 samples, 0.02%)</title><rect x="4.4652%" y="629" width="0.0198%" height="15" fill="rgb(226,2,50)" fg:x="11948" fg:w="53"/><text x="4.7152%" y="639.50"></text></g><g><title>LinearScan::do_linear_scan (3,362 samples, 1.26%)</title><rect x="3.2458%" y="645" width="1.2565%" height="15" fill="rgb(234,177,6)" fg:x="8685" fg:w="3362"/><text x="3.4958%" y="655.50"></text></g><g><title>LinearScan::sort_intervals_before_allocation (46 samples, 0.02%)</title><rect x="4.4850%" y="629" width="0.0172%" height="15" fill="rgb(217,24,9)" fg:x="12001" fg:w="46"/><text x="4.7350%" y="639.50"></text></g><g><title>Compilation::emit_lir (4,365 samples, 1.63%)</title><rect x="2.8721%" y="661" width="1.6313%" height="15" fill="rgb(220,13,46)" fg:x="7685" fg:w="4365"/><text x="3.1221%" y="671.50"></text></g><g><title>Method::build_interpreter_method_data (41 samples, 0.02%)</title><rect x="4.5138%" y="629" width="0.0153%" height="15" fill="rgb(239,221,27)" fg:x="12078" fg:w="41"/><text x="4.7638%" y="639.50"></text></g><g><title>MethodData::allocate (41 samples, 0.02%)</title><rect x="4.5138%" y="613" width="0.0153%" height="15" fill="rgb(222,198,25)" fg:x="12078" fg:w="41"/><text x="4.7638%" y="623.50"></text></g><g><title>ciMethodData::load_data (49 samples, 0.02%)</title><rect x="4.5295%" y="629" width="0.0183%" height="15" fill="rgb(211,99,13)" fg:x="12120" fg:w="49"/><text x="4.7795%" y="639.50"></text></g><g><title>ciMethod::ensure_method_data (102 samples, 0.04%)</title><rect x="4.5135%" y="645" width="0.0381%" height="15" fill="rgb(232,111,31)" fg:x="12077" fg:w="102"/><text x="4.7635%" y="655.50"></text></g><g><title>Compilation::compile_java_method (10,300 samples, 3.85%)</title><rect x="0.7026%" y="677" width="3.8493%" height="15" fill="rgb(245,82,37)" fg:x="1880" fg:w="10300"/><text x="0.9526%" y="687.50">Comp..</text></g><g><title>ciMethod::ensure_method_data (107 samples, 0.04%)</title><rect x="4.5120%" y="661" width="0.0400%" height="15" fill="rgb(227,149,46)" fg:x="12073" fg:w="107"/><text x="4.7620%" y="671.50"></text></g><g><title>DebugInformationRecorder::DebugInformationRecorder (30 samples, 0.01%)</title><rect x="4.5523%" y="661" width="0.0112%" height="15" fill="rgb(218,36,50)" fg:x="12181" fg:w="30"/><text x="4.8023%" y="671.50"></text></g><g><title>Compilation::initialize (58 samples, 0.02%)</title><rect x="4.5523%" y="677" width="0.0217%" height="15" fill="rgb(226,80,48)" fg:x="12181" fg:w="58"/><text x="4.8023%" y="687.50"></text></g><g><title>CodeBuffer::finalize_oop_references (73 samples, 0.03%)</title><rect x="4.6013%" y="645" width="0.0273%" height="15" fill="rgb(238,224,15)" fg:x="12312" fg:w="73"/><text x="4.8513%" y="655.50"></text></g><g><title>CodeHeap::allocate (28 samples, 0.01%)</title><rect x="4.6289%" y="629" width="0.0105%" height="15" fill="rgb(241,136,10)" fg:x="12386" fg:w="28"/><text x="4.8789%" y="639.50"></text></g><g><title>CodeCache::allocate (52 samples, 0.02%)</title><rect x="4.6286%" y="645" width="0.0194%" height="15" fill="rgb(208,32,45)" fg:x="12385" fg:w="52"/><text x="4.8786%" y="655.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="4.6577%" y="597" width="0.0127%" height="15" fill="rgb(207,135,9)" fg:x="12463" fg:w="34"/><text x="4.9077%" y="607.50"></text></g><g><title>__x64_sys_futex (34 samples, 0.01%)</title><rect x="4.6577%" y="581" width="0.0127%" height="15" fill="rgb(206,86,44)" fg:x="12463" fg:w="34"/><text x="4.9077%" y="591.50"></text></g><g><title>do_futex (34 samples, 0.01%)</title><rect x="4.6577%" y="565" width="0.0127%" height="15" fill="rgb(245,177,15)" fg:x="12463" fg:w="34"/><text x="4.9077%" y="575.50"></text></g><g><title>futex_wake (34 samples, 0.01%)</title><rect x="4.6577%" y="549" width="0.0127%" height="15" fill="rgb(206,64,50)" fg:x="12463" fg:w="34"/><text x="4.9077%" y="559.50"></text></g><g><title>wake_up_q (30 samples, 0.01%)</title><rect x="4.6592%" y="533" width="0.0112%" height="15" fill="rgb(234,36,40)" fg:x="12467" fg:w="30"/><text x="4.9092%" y="543.50"></text></g><g><title>try_to_wake_up (29 samples, 0.01%)</title><rect x="4.6596%" y="517" width="0.0108%" height="15" fill="rgb(213,64,8)" fg:x="12468" fg:w="29"/><text x="4.9096%" y="527.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="4.6577%" y="613" width="0.0149%" height="15" fill="rgb(210,75,36)" fg:x="12463" fg:w="40"/><text x="4.9077%" y="623.50"></text></g><g><title>__pthread_cond_signal (42 samples, 0.02%)</title><rect x="4.6573%" y="645" width="0.0157%" height="15" fill="rgb(229,88,21)" fg:x="12462" fg:w="42"/><text x="4.9073%" y="655.50"></text></g><g><title>futex_wake (41 samples, 0.02%)</title><rect x="4.6577%" y="629" width="0.0153%" height="15" fill="rgb(252,204,47)" fg:x="12463" fg:w="41"/><text x="4.9077%" y="639.50"></text></g><g><title>CallRelocation::fix_relocation_after_move (28 samples, 0.01%)</title><rect x="4.6854%" y="597" width="0.0105%" height="15" fill="rgb(208,77,27)" fg:x="12537" fg:w="28"/><text x="4.9354%" y="607.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (28 samples, 0.01%)</title><rect x="4.7059%" y="597" width="0.0105%" height="15" fill="rgb(221,76,26)" fg:x="12592" fg:w="28"/><text x="4.9559%" y="607.50"></text></g><g><title>CodeBuffer::relocate_code_to (102 samples, 0.04%)</title><rect x="4.6786%" y="613" width="0.0381%" height="15" fill="rgb(225,139,18)" fg:x="12519" fg:w="102"/><text x="4.9286%" y="623.50"></text></g><g><title>CodeBuffer::copy_code_to (121 samples, 0.05%)</title><rect x="4.6753%" y="629" width="0.0452%" height="15" fill="rgb(230,137,11)" fg:x="12510" fg:w="121"/><text x="4.9253%" y="639.50"></text></g><g><title>CodeBlob::CodeBlob (28 samples, 0.01%)</title><rect x="4.7280%" y="613" width="0.0105%" height="15" fill="rgb(212,28,1)" fg:x="12651" fg:w="28"/><text x="4.9780%" y="623.50"></text></g><g><title>ImmutableOopMapSet::build_from (28 samples, 0.01%)</title><rect x="4.7280%" y="597" width="0.0105%" height="15" fill="rgb(248,164,17)" fg:x="12651" fg:w="28"/><text x="4.9780%" y="607.50"></text></g><g><title>CompiledMethod::CompiledMethod (33 samples, 0.01%)</title><rect x="4.7276%" y="629" width="0.0123%" height="15" fill="rgb(222,171,42)" fg:x="12650" fg:w="33"/><text x="4.9776%" y="639.50"></text></g><g><title>G1CodeRootSet::add (35 samples, 0.01%)</title><rect x="4.7474%" y="597" width="0.0131%" height="15" fill="rgb(243,84,45)" fg:x="12703" fg:w="35"/><text x="4.9974%" y="607.50"></text></g><g><title>G1CollectedHeap::register_nmethod (57 samples, 0.02%)</title><rect x="4.7410%" y="629" width="0.0213%" height="15" fill="rgb(252,49,23)" fg:x="12686" fg:w="57"/><text x="4.9910%" y="639.50"></text></g><g><title>nmethod::oops_do (57 samples, 0.02%)</title><rect x="4.7410%" y="613" width="0.0213%" height="15" fill="rgb(215,19,7)" fg:x="12686" fg:w="57"/><text x="4.9910%" y="623.50"></text></g><g><title>nmethod::nmethod (275 samples, 0.10%)</title><rect x="4.6734%" y="645" width="0.1028%" height="15" fill="rgb(238,81,41)" fg:x="12505" fg:w="275"/><text x="4.9234%" y="655.50"></text></g><g><title>ciEnv::register_method (539 samples, 0.20%)</title><rect x="4.5751%" y="677" width="0.2014%" height="15" fill="rgb(210,199,37)" fg:x="12242" fg:w="539"/><text x="4.8251%" y="687.50"></text></g><g><title>nmethod::new_nmethod (480 samples, 0.18%)</title><rect x="4.5972%" y="661" width="0.1794%" height="15" fill="rgb(244,192,49)" fg:x="12301" fg:w="480"/><text x="4.8472%" y="671.50"></text></g><g><title>Compilation::compile_method (10,906 samples, 4.08%)</title><rect x="0.7015%" y="693" width="4.0758%" height="15" fill="rgb(226,211,11)" fg:x="1877" fg:w="10906"/><text x="0.9515%" y="703.50">Comp..</text></g><g><title>Compiler::compile_method (10,938 samples, 4.09%)</title><rect x="0.6944%" y="725" width="4.0878%" height="15" fill="rgb(236,162,54)" fg:x="1858" fg:w="10938"/><text x="0.9444%" y="735.50">Comp..</text></g><g><title>Compilation::Compilation (10,922 samples, 4.08%)</title><rect x="0.7004%" y="709" width="4.0818%" height="15" fill="rgb(220,229,9)" fg:x="1874" fg:w="10922"/><text x="0.9504%" y="719.50">Comp..</text></g><g><title>ciObjectFactory::ciObjectFactory (28 samples, 0.01%)</title><rect x="4.8012%" y="709" width="0.0105%" height="15" fill="rgb(250,87,22)" fg:x="12847" fg:w="28"/><text x="5.0512%" y="719.50"></text></g><g><title>ciObjectFactory::get (52 samples, 0.02%)</title><rect x="4.8117%" y="709" width="0.0194%" height="15" fill="rgb(239,43,17)" fg:x="12875" fg:w="52"/><text x="5.0617%" y="719.50"></text></g><g><title>ciObjectFactory::get_metadata (32 samples, 0.01%)</title><rect x="4.8192%" y="693" width="0.0120%" height="15" fill="rgb(231,177,25)" fg:x="12895" fg:w="32"/><text x="5.0692%" y="703.50"></text></g><g><title>ciObjectFactory::create_new_metadata (30 samples, 0.01%)</title><rect x="4.8199%" y="677" width="0.0112%" height="15" fill="rgb(219,179,1)" fg:x="12897" fg:w="30"/><text x="5.0699%" y="687.50"></text></g><g><title>ciInstanceKlass::ciInstanceKlass (29 samples, 0.01%)</title><rect x="4.8203%" y="661" width="0.0108%" height="15" fill="rgb(238,219,53)" fg:x="12898" fg:w="29"/><text x="5.0703%" y="671.50"></text></g><g><title>ciEnv::ciEnv (91 samples, 0.03%)</title><rect x="4.7982%" y="725" width="0.0340%" height="15" fill="rgb(232,167,36)" fg:x="12839" fg:w="91"/><text x="5.0482%" y="735.50"></text></g><g><title>SignatureStream::as_symbol (36 samples, 0.01%)</title><rect x="4.8457%" y="645" width="0.0135%" height="15" fill="rgb(244,19,51)" fg:x="12966" fg:w="36"/><text x="5.0957%" y="655.50"></text></g><g><title>SymbolTable::lookup (35 samples, 0.01%)</title><rect x="4.8461%" y="629" width="0.0131%" height="15" fill="rgb(224,6,22)" fg:x="12967" fg:w="35"/><text x="5.0961%" y="639.50"></text></g><g><title>ciEnv::get_klass_by_name_impl (41 samples, 0.02%)</title><rect x="4.8625%" y="645" width="0.0153%" height="15" fill="rgb(224,145,5)" fg:x="13011" fg:w="41"/><text x="5.1125%" y="655.50"></text></g><g><title>ciMethod::ciMethod (125 samples, 0.05%)</title><rect x="4.8356%" y="677" width="0.0467%" height="15" fill="rgb(234,130,49)" fg:x="12939" fg:w="125"/><text x="5.0856%" y="687.50"></text></g><g><title>ciSignature::ciSignature (113 samples, 0.04%)</title><rect x="4.8401%" y="661" width="0.0422%" height="15" fill="rgb(254,6,2)" fg:x="12951" fg:w="113"/><text x="5.0901%" y="671.50"></text></g><g><title>ciEnv::get_method_from_handle (144 samples, 0.05%)</title><rect x="4.8322%" y="725" width="0.0538%" height="15" fill="rgb(208,96,46)" fg:x="12930" fg:w="144"/><text x="5.0822%" y="735.50"></text></g><g><title>ciObjectFactory::get_metadata (142 samples, 0.05%)</title><rect x="4.8330%" y="709" width="0.0531%" height="15" fill="rgb(239,3,39)" fg:x="12932" fg:w="142"/><text x="5.0830%" y="719.50"></text></g><g><title>ciObjectFactory::create_new_metadata (139 samples, 0.05%)</title><rect x="4.8341%" y="693" width="0.0519%" height="15" fill="rgb(233,210,1)" fg:x="12935" fg:w="139"/><text x="5.0841%" y="703.50"></text></g><g><title>ciEnv::~ciEnv (41 samples, 0.02%)</title><rect x="4.8861%" y="725" width="0.0153%" height="15" fill="rgb(244,137,37)" fg:x="13074" fg:w="41"/><text x="5.1361%" y="735.50"></text></g><g><title>ciObjectFactory::remove_symbols (34 samples, 0.01%)</title><rect x="4.8887%" y="709" width="0.0127%" height="15" fill="rgb(240,136,2)" fg:x="13081" fg:w="34"/><text x="5.1387%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (11,517 samples, 4.30%)</title><rect x="0.5983%" y="741" width="4.3042%" height="15" fill="rgb(239,18,37)" fg:x="1601" fg:w="11517"/><text x="0.8483%" y="751.50">Compi..</text></g><g><title>CompileBroker::possibly_add_compiler_threads (34 samples, 0.01%)</title><rect x="4.9025%" y="741" width="0.0127%" height="15" fill="rgb(218,185,22)" fg:x="13118" fg:w="34"/><text x="5.1525%" y="751.50"></text></g><g><title>os::available_memory (29 samples, 0.01%)</title><rect x="4.9044%" y="725" width="0.0108%" height="15" fill="rgb(225,218,4)" fg:x="13123" fg:w="29"/><text x="5.1544%" y="735.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="4.9380%" y="501" width="0.0198%" height="15" fill="rgb(230,182,32)" fg:x="13213" fg:w="53"/><text x="5.1880%" y="511.50"></text></g><g><title>__perf_event_task_sched_in (51 samples, 0.02%)</title><rect x="4.9387%" y="485" width="0.0191%" height="15" fill="rgb(242,56,43)" fg:x="13215" fg:w="51"/><text x="5.1887%" y="495.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (51 samples, 0.02%)</title><rect x="4.9387%" y="469" width="0.0191%" height="15" fill="rgb(233,99,24)" fg:x="13215" fg:w="51"/><text x="5.1887%" y="479.50"></text></g><g><title>native_write_msr (51 samples, 0.02%)</title><rect x="4.9387%" y="453" width="0.0191%" height="15" fill="rgb(234,209,42)" fg:x="13215" fg:w="51"/><text x="5.1887%" y="463.50"></text></g><g><title>futex_wait_queue_me (74 samples, 0.03%)</title><rect x="4.9328%" y="549" width="0.0277%" height="15" fill="rgb(227,7,12)" fg:x="13199" fg:w="74"/><text x="5.1828%" y="559.50"></text></g><g><title>schedule (69 samples, 0.03%)</title><rect x="4.9346%" y="533" width="0.0258%" height="15" fill="rgb(245,203,43)" fg:x="13204" fg:w="69"/><text x="5.1846%" y="543.50"></text></g><g><title>__schedule (68 samples, 0.03%)</title><rect x="4.9350%" y="517" width="0.0254%" height="15" fill="rgb(238,205,33)" fg:x="13205" fg:w="68"/><text x="5.1850%" y="527.50"></text></g><g><title>do_syscall_64 (82 samples, 0.03%)</title><rect x="4.9324%" y="613" width="0.0306%" height="15" fill="rgb(231,56,7)" fg:x="13198" fg:w="82"/><text x="5.1824%" y="623.50"></text></g><g><title>__x64_sys_futex (82 samples, 0.03%)</title><rect x="4.9324%" y="597" width="0.0306%" height="15" fill="rgb(244,186,29)" fg:x="13198" fg:w="82"/><text x="5.1824%" y="607.50"></text></g><g><title>do_futex (82 samples, 0.03%)</title><rect x="4.9324%" y="581" width="0.0306%" height="15" fill="rgb(234,111,31)" fg:x="13198" fg:w="82"/><text x="5.1824%" y="591.50"></text></g><g><title>futex_wait (82 samples, 0.03%)</title><rect x="4.9324%" y="565" width="0.0306%" height="15" fill="rgb(241,149,10)" fg:x="13198" fg:w="82"/><text x="5.1824%" y="575.50"></text></g><g><title>__pthread_cond_timedwait (94 samples, 0.04%)</title><rect x="4.9294%" y="677" width="0.0351%" height="15" fill="rgb(249,206,44)" fg:x="13190" fg:w="94"/><text x="5.1794%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (94 samples, 0.04%)</title><rect x="4.9294%" y="661" width="0.0351%" height="15" fill="rgb(251,153,30)" fg:x="13190" fg:w="94"/><text x="5.1794%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (93 samples, 0.03%)</title><rect x="4.9298%" y="645" width="0.0348%" height="15" fill="rgb(239,152,38)" fg:x="13191" fg:w="93"/><text x="5.1798%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.03%)</title><rect x="4.9324%" y="629" width="0.0321%" height="15" fill="rgb(249,139,47)" fg:x="13198" fg:w="86"/><text x="5.1824%" y="639.50"></text></g><g><title>Monitor::IWait (102 samples, 0.04%)</title><rect x="4.9287%" y="709" width="0.0381%" height="15" fill="rgb(244,64,35)" fg:x="13188" fg:w="102"/><text x="5.1787%" y="719.50"></text></g><g><title>os::PlatformEvent::park (100 samples, 0.04%)</title><rect x="4.9294%" y="693" width="0.0374%" height="15" fill="rgb(216,46,15)" fg:x="13190" fg:w="100"/><text x="5.1794%" y="703.50"></text></g><g><title>Monitor::wait (108 samples, 0.04%)</title><rect x="4.9268%" y="725" width="0.0404%" height="15" fill="rgb(250,74,19)" fg:x="13183" fg:w="108"/><text x="5.1768%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (64 samples, 0.02%)</title><rect x="4.9671%" y="725" width="0.0239%" height="15" fill="rgb(249,42,33)" fg:x="13291" fg:w="64"/><text x="5.2171%" y="735.50"></text></g><g><title>CompileQueue::get (209 samples, 0.08%)</title><rect x="4.9152%" y="741" width="0.0781%" height="15" fill="rgb(242,149,17)" fg:x="13152" fg:w="209"/><text x="5.1652%" y="751.50"></text></g><g><title>__GI___clone (11,778 samples, 4.40%)</title><rect x="0.5950%" y="837" width="4.4017%" height="15" fill="rgb(244,29,21)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="847.50">__GI_..</text></g><g><title>start_thread (11,778 samples, 4.40%)</title><rect x="0.5950%" y="821" width="4.4017%" height="15" fill="rgb(220,130,37)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="831.50">start..</text></g><g><title>thread_native_entry (11,778 samples, 4.40%)</title><rect x="0.5950%" y="805" width="4.4017%" height="15" fill="rgb(211,67,2)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="815.50">threa..</text></g><g><title>Thread::call_run (11,778 samples, 4.40%)</title><rect x="0.5950%" y="789" width="4.4017%" height="15" fill="rgb(235,68,52)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="799.50">Threa..</text></g><g><title>JavaThread::thread_main_inner (11,778 samples, 4.40%)</title><rect x="0.5950%" y="773" width="4.4017%" height="15" fill="rgb(246,142,3)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="783.50">JavaT..</text></g><g><title>CompileBroker::compiler_thread_loop (11,778 samples, 4.40%)</title><rect x="0.5950%" y="757" width="4.4017%" height="15" fill="rgb(241,25,7)" fg:x="1592" fg:w="11778"/><text x="0.8450%" y="767.50">Compi..</text></g><g><title>C1_CompilerThre (13,396 samples, 5.01%)</title><rect x="0.0056%" y="853" width="5.0064%" height="15" fill="rgb(242,119,39)" fg:x="15" fg:w="13396"/><text x="0.2556%" y="863.50">C1_Com..</text></g><g><title>PhaseChaitin::compute_initial_block_pressure (49 samples, 0.02%)</title><rect x="5.0531%" y="837" width="0.0183%" height="15" fill="rgb(241,98,45)" fg:x="13521" fg:w="49"/><text x="5.3031%" y="847.50"></text></g><g><title>RegMask::is_UP (45 samples, 0.02%)</title><rect x="5.0546%" y="821" width="0.0168%" height="15" fill="rgb(254,28,30)" fg:x="13525" fg:w="45"/><text x="5.3046%" y="831.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (37 samples, 0.01%)</title><rect x="5.0714%" y="837" width="0.0138%" height="15" fill="rgb(241,142,54)" fg:x="13570" fg:w="37"/><text x="5.3214%" y="847.50"></text></g><g><title>ProjNode::pinned (92 samples, 0.03%)</title><rect x="5.1275%" y="821" width="0.0344%" height="15" fill="rgb(222,85,15)" fg:x="13720" fg:w="92"/><text x="5.3775%" y="831.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (96 samples, 0.04%)</title><rect x="5.1264%" y="837" width="0.0359%" height="15" fill="rgb(210,85,47)" fg:x="13717" fg:w="96"/><text x="5.3764%" y="847.50"></text></g><g><title>CallStaticJavaNode::Opcode (32 samples, 0.01%)</title><rect x="5.2706%" y="821" width="0.0120%" height="15" fill="rgb(224,206,25)" fg:x="14103" fg:w="32"/><text x="5.5206%" y="831.50"></text></g><g><title>IfFalseNode::Opcode (43 samples, 0.02%)</title><rect x="5.4474%" y="821" width="0.0161%" height="15" fill="rgb(243,201,19)" fg:x="14576" fg:w="43"/><text x="5.6974%" y="831.50"></text></g><g><title>IfNode::Opcode (27 samples, 0.01%)</title><rect x="5.4657%" y="821" width="0.0101%" height="15" fill="rgb(236,59,4)" fg:x="14625" fg:w="27"/><text x="5.7157%" y="831.50"></text></g><g><title>IfTrueNode::Opcode (30 samples, 0.01%)</title><rect x="5.4806%" y="821" width="0.0112%" height="15" fill="rgb(254,179,45)" fg:x="14665" fg:w="30"/><text x="5.7306%" y="831.50"></text></g><g><title>IndexSetIterator::advance_and_next (56 samples, 0.02%)</title><rect x="5.5076%" y="821" width="0.0209%" height="15" fill="rgb(226,14,10)" fg:x="14737" fg:w="56"/><text x="5.7576%" y="831.50"></text></g><g><title>MultiNode::is_CFG (62 samples, 0.02%)</title><rect x="5.7180%" y="821" width="0.0232%" height="15" fill="rgb(244,27,41)" fg:x="15300" fg:w="62"/><text x="5.9680%" y="831.50"></text></g><g><title>Node::is_CFG (71 samples, 0.03%)</title><rect x="5.7759%" y="821" width="0.0265%" height="15" fill="rgb(235,35,32)" fg:x="15455" fg:w="71"/><text x="6.0259%" y="831.50"></text></g><g><title>Node::pinned (47 samples, 0.02%)</title><rect x="5.8185%" y="821" width="0.0176%" height="15" fill="rgb(218,68,31)" fg:x="15569" fg:w="47"/><text x="6.0685%" y="831.50"></text></g><g><title>PhiNode::Opcode (47 samples, 0.02%)</title><rect x="5.9743%" y="821" width="0.0176%" height="15" fill="rgb(207,120,37)" fg:x="15986" fg:w="47"/><text x="6.2243%" y="831.50"></text></g><g><title>ProjNode::Opcode (31 samples, 0.01%)</title><rect x="6.0095%" y="821" width="0.0116%" height="15" fill="rgb(227,98,0)" fg:x="16080" fg:w="31"/><text x="6.2595%" y="831.50"></text></g><g><title>ProjNode::pinned (33 samples, 0.01%)</title><rect x="6.0308%" y="821" width="0.0123%" height="15" fill="rgb(207,7,3)" fg:x="16137" fg:w="33"/><text x="6.2808%" y="831.50"></text></g><g><title>RegionNode::Opcode (28 samples, 0.01%)</title><rect x="6.0767%" y="821" width="0.0105%" height="15" fill="rgb(206,98,19)" fg:x="16260" fg:w="28"/><text x="6.3267%" y="831.50"></text></g><g><title>RegionNode::is_CFG (71 samples, 0.03%)</title><rect x="6.0965%" y="821" width="0.0265%" height="15" fill="rgb(217,5,26)" fg:x="16313" fg:w="71"/><text x="6.3465%" y="831.50"></text></g><g><title>TypeNode::bottom_type (41 samples, 0.02%)</title><rect x="6.2565%" y="821" width="0.0153%" height="15" fill="rgb(235,190,38)" fg:x="16741" fg:w="41"/><text x="6.5065%" y="831.50"></text></g><g><title>_dl_update_slotinfo (298 samples, 0.11%)</title><rect x="6.3297%" y="821" width="0.1114%" height="15" fill="rgb(247,86,24)" fg:x="16937" fg:w="298"/><text x="6.5797%" y="831.50"></text></g><g><title>find_lowest_bit (60 samples, 0.02%)</title><rect x="6.5360%" y="821" width="0.0224%" height="15" fill="rgb(205,101,16)" fg:x="17489" fg:w="60"/><text x="6.7860%" y="831.50"></text></g><g><title>jmpDirNode::is_block_proj (29 samples, 0.01%)</title><rect x="6.5869%" y="821" width="0.0108%" height="15" fill="rgb(246,168,33)" fg:x="17625" fg:w="29"/><text x="6.8369%" y="831.50"></text></g><g><title>update_get_addr (80 samples, 0.03%)</title><rect x="6.6945%" y="821" width="0.0299%" height="15" fill="rgb(231,114,1)" fg:x="17913" fg:w="80"/><text x="6.9445%" y="831.50"></text></g><g><title>[anon] (4,148 samples, 1.55%)</title><rect x="5.1772%" y="837" width="1.5502%" height="15" fill="rgb(207,184,53)" fg:x="13853" fg:w="4148"/><text x="5.4272%" y="847.50"></text></g><g><title>[perf-21254.map] (36 samples, 0.01%)</title><rect x="6.7296%" y="837" width="0.0135%" height="15" fill="rgb(224,95,51)" fg:x="18007" fg:w="36"/><text x="6.9796%" y="847.50"></text></g><g><title>CallGenerator::for_inline (29 samples, 0.01%)</title><rect x="6.7446%" y="789" width="0.0108%" height="15" fill="rgb(212,188,45)" fg:x="18047" fg:w="29"/><text x="6.9946%" y="799.50"></text></g><g><title>InlineTree::check_can_parse (29 samples, 0.01%)</title><rect x="6.7446%" y="773" width="0.0108%" height="15" fill="rgb(223,154,38)" fg:x="18047" fg:w="29"/><text x="6.9946%" y="783.50"></text></g><g><title>ciMethod::get_flow_analysis (29 samples, 0.01%)</title><rect x="6.7446%" y="757" width="0.0108%" height="15" fill="rgb(251,22,52)" fg:x="18047" fg:w="29"/><text x="6.9946%" y="767.50"></text></g><g><title>ciTypeFlow::do_flow (29 samples, 0.01%)</title><rect x="6.7446%" y="741" width="0.0108%" height="15" fill="rgb(229,209,22)" fg:x="18047" fg:w="29"/><text x="6.9946%" y="751.50"></text></g><g><title>ciTypeFlow::flow_types (29 samples, 0.01%)</title><rect x="6.7446%" y="725" width="0.0108%" height="15" fill="rgb(234,138,34)" fg:x="18047" fg:w="29"/><text x="6.9946%" y="735.50"></text></g><g><title>Compile::inline_string_calls (27 samples, 0.01%)</title><rect x="6.7573%" y="789" width="0.0101%" height="15" fill="rgb(212,95,11)" fg:x="18081" fg:w="27"/><text x="7.0073%" y="799.50"></text></g><g><title>Compile::call_generator (49 samples, 0.02%)</title><rect x="6.7700%" y="677" width="0.0183%" height="15" fill="rgb(240,179,47)" fg:x="18115" fg:w="49"/><text x="7.0200%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (49 samples, 0.02%)</title><rect x="6.7700%" y="661" width="0.0183%" height="15" fill="rgb(240,163,11)" fg:x="18115" fg:w="49"/><text x="7.0200%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (47 samples, 0.02%)</title><rect x="6.7707%" y="645" width="0.0176%" height="15" fill="rgb(236,37,12)" fg:x="18117" fg:w="47"/><text x="7.0207%" y="655.50"></text></g><g><title>ciTypeFlow::do_flow (44 samples, 0.02%)</title><rect x="6.7719%" y="629" width="0.0164%" height="15" fill="rgb(232,164,16)" fg:x="18120" fg:w="44"/><text x="7.0219%" y="639.50"></text></g><g><title>ciTypeFlow::flow_types (44 samples, 0.02%)</title><rect x="6.7719%" y="613" width="0.0164%" height="15" fill="rgb(244,205,15)" fg:x="18120" fg:w="44"/><text x="7.0219%" y="623.50"></text></g><g><title>ciTypeFlow::df_flow_types (43 samples, 0.02%)</title><rect x="6.7722%" y="597" width="0.0161%" height="15" fill="rgb(223,117,47)" fg:x="18121" fg:w="43"/><text x="7.0222%" y="607.50"></text></g><g><title>ciTypeFlow::flow_block (39 samples, 0.01%)</title><rect x="6.7737%" y="581" width="0.0146%" height="15" fill="rgb(244,107,35)" fg:x="18125" fg:w="39"/><text x="7.0237%" y="591.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (31 samples, 0.01%)</title><rect x="6.7767%" y="565" width="0.0116%" height="15" fill="rgb(205,140,8)" fg:x="18133" fg:w="31"/><text x="7.0267%" y="575.50"></text></g><g><title>ciEnv::get_field_by_index (32 samples, 0.01%)</title><rect x="6.8036%" y="533" width="0.0120%" height="15" fill="rgb(228,84,46)" fg:x="18205" fg:w="32"/><text x="7.0536%" y="543.50"></text></g><g><title>ciField::ciField (30 samples, 0.01%)</title><rect x="6.8044%" y="517" width="0.0112%" height="15" fill="rgb(254,188,9)" fg:x="18207" fg:w="30"/><text x="7.0544%" y="527.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (39 samples, 0.01%)</title><rect x="6.8021%" y="565" width="0.0146%" height="15" fill="rgb(206,112,54)" fg:x="18201" fg:w="39"/><text x="7.0521%" y="575.50"></text></g><g><title>ciBytecodeStream::get_field (36 samples, 0.01%)</title><rect x="6.8032%" y="549" width="0.0135%" height="15" fill="rgb(216,84,49)" fg:x="18204" fg:w="36"/><text x="7.0532%" y="559.50"></text></g><g><title>ciMethod::ciMethod (46 samples, 0.02%)</title><rect x="6.8283%" y="485" width="0.0172%" height="15" fill="rgb(214,194,35)" fg:x="18271" fg:w="46"/><text x="7.0783%" y="495.50"></text></g><g><title>ciSignature::ciSignature (32 samples, 0.01%)</title><rect x="6.8335%" y="469" width="0.0120%" height="15" fill="rgb(249,28,3)" fg:x="18285" fg:w="32"/><text x="7.0835%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (79 samples, 0.03%)</title><rect x="6.8167%" y="549" width="0.0295%" height="15" fill="rgb(222,56,52)" fg:x="18240" fg:w="79"/><text x="7.0667%" y="559.50"></text></g><g><title>ciEnv::get_method_by_index_impl (75 samples, 0.03%)</title><rect x="6.8182%" y="533" width="0.0280%" height="15" fill="rgb(245,217,50)" fg:x="18244" fg:w="75"/><text x="7.0682%" y="543.50"></text></g><g><title>ciObjectFactory::get_metadata (54 samples, 0.02%)</title><rect x="6.8260%" y="517" width="0.0202%" height="15" fill="rgb(213,201,24)" fg:x="18265" fg:w="54"/><text x="7.0760%" y="527.50"></text></g><g><title>ciObjectFactory::create_new_metadata (49 samples, 0.02%)</title><rect x="6.8279%" y="501" width="0.0183%" height="15" fill="rgb(248,116,28)" fg:x="18270" fg:w="49"/><text x="7.0779%" y="511.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (80 samples, 0.03%)</title><rect x="6.8167%" y="565" width="0.0299%" height="15" fill="rgb(219,72,43)" fg:x="18240" fg:w="80"/><text x="7.0667%" y="575.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (148 samples, 0.06%)</title><rect x="6.7988%" y="581" width="0.0553%" height="15" fill="rgb(209,138,14)" fg:x="18192" fg:w="148"/><text x="7.0488%" y="591.50"></text></g><g><title>ciTypeFlow::df_flow_types (173 samples, 0.06%)</title><rect x="6.7913%" y="613" width="0.0647%" height="15" fill="rgb(222,18,33)" fg:x="18172" fg:w="173"/><text x="7.0413%" y="623.50"></text></g><g><title>ciTypeFlow::flow_block (173 samples, 0.06%)</title><rect x="6.7913%" y="597" width="0.0647%" height="15" fill="rgb(213,199,7)" fg:x="18172" fg:w="173"/><text x="7.0413%" y="607.50"></text></g><g><title>InlineTree::ok_to_inline (183 samples, 0.07%)</title><rect x="6.7883%" y="677" width="0.0684%" height="15" fill="rgb(250,110,10)" fg:x="18164" fg:w="183"/><text x="7.0383%" y="687.50"></text></g><g><title>ciMethod::get_flow_analysis (177 samples, 0.07%)</title><rect x="6.7905%" y="661" width="0.0661%" height="15" fill="rgb(248,123,6)" fg:x="18170" fg:w="177"/><text x="7.0405%" y="671.50"></text></g><g><title>ciTypeFlow::do_flow (177 samples, 0.07%)</title><rect x="6.7905%" y="645" width="0.0661%" height="15" fill="rgb(206,91,31)" fg:x="18170" fg:w="177"/><text x="7.0405%" y="655.50"></text></g><g><title>ciTypeFlow::flow_types (177 samples, 0.07%)</title><rect x="6.7905%" y="629" width="0.0661%" height="15" fill="rgb(211,154,13)" fg:x="18170" fg:w="177"/><text x="7.0405%" y="639.50"></text></g><g><title>Compile::call_generator (238 samples, 0.09%)</title><rect x="6.7700%" y="693" width="0.0889%" height="15" fill="rgb(225,148,7)" fg:x="18115" fg:w="238"/><text x="7.0200%" y="703.50"></text></g><g><title>ciMethod::ciMethod (28 samples, 0.01%)</title><rect x="6.9359%" y="389" width="0.0105%" height="15" fill="rgb(220,160,43)" fg:x="18559" fg:w="28"/><text x="7.1859%" y="399.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (51 samples, 0.02%)</title><rect x="6.9277%" y="469" width="0.0191%" height="15" fill="rgb(213,52,39)" fg:x="18537" fg:w="51"/><text x="7.1777%" y="479.50"></text></g><g><title>ciBytecodeStream::get_method (51 samples, 0.02%)</title><rect x="6.9277%" y="453" width="0.0191%" height="15" fill="rgb(243,137,7)" fg:x="18537" fg:w="51"/><text x="7.1777%" y="463.50"></text></g><g><title>ciEnv::get_method_by_index_impl (48 samples, 0.02%)</title><rect x="6.9288%" y="437" width="0.0179%" height="15" fill="rgb(230,79,13)" fg:x="18540" fg:w="48"/><text x="7.1788%" y="447.50"></text></g><g><title>ciObjectFactory::get_metadata (33 samples, 0.01%)</title><rect x="6.9344%" y="421" width="0.0123%" height="15" fill="rgb(247,105,23)" fg:x="18555" fg:w="33"/><text x="7.1844%" y="431.50"></text></g><g><title>ciObjectFactory::create_new_metadata (30 samples, 0.01%)</title><rect x="6.9355%" y="405" width="0.0112%" height="15" fill="rgb(223,179,41)" fg:x="18558" fg:w="30"/><text x="7.1855%" y="415.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (88 samples, 0.03%)</title><rect x="6.9180%" y="485" width="0.0329%" height="15" fill="rgb(218,9,34)" fg:x="18511" fg:w="88"/><text x="7.1680%" y="495.50"></text></g><g><title>ciTypeFlow::df_flow_types (117 samples, 0.04%)</title><rect x="6.9083%" y="517" width="0.0437%" height="15" fill="rgb(222,106,8)" fg:x="18485" fg:w="117"/><text x="7.1583%" y="527.50"></text></g><g><title>ciTypeFlow::flow_block (106 samples, 0.04%)</title><rect x="6.9124%" y="501" width="0.0396%" height="15" fill="rgb(211,220,0)" fg:x="18496" fg:w="106"/><text x="7.1624%" y="511.50"></text></g><g><title>ciMethod::get_flow_analysis (136 samples, 0.05%)</title><rect x="6.9030%" y="565" width="0.0508%" height="15" fill="rgb(229,52,16)" fg:x="18471" fg:w="136"/><text x="7.1530%" y="575.50"></text></g><g><title>ciTypeFlow::do_flow (126 samples, 0.05%)</title><rect x="6.9068%" y="549" width="0.0471%" height="15" fill="rgb(212,155,18)" fg:x="18481" fg:w="126"/><text x="7.1568%" y="559.50"></text></g><g><title>ciTypeFlow::flow_types (125 samples, 0.05%)</title><rect x="6.9071%" y="533" width="0.0467%" height="15" fill="rgb(242,21,14)" fg:x="18482" fg:w="125"/><text x="7.1571%" y="543.50"></text></g><g><title>InlineTree::ok_to_inline (164 samples, 0.06%)</title><rect x="6.8929%" y="581" width="0.0613%" height="15" fill="rgb(222,19,48)" fg:x="18444" fg:w="164"/><text x="7.1429%" y="591.50"></text></g><g><title>Compile::call_generator (205 samples, 0.08%)</title><rect x="6.8810%" y="597" width="0.0766%" height="15" fill="rgb(232,45,27)" fg:x="18412" fg:w="205"/><text x="7.1310%" y="607.50"></text></g><g><title>LibraryIntrinsic::generate (27 samples, 0.01%)</title><rect x="6.9785%" y="597" width="0.0101%" height="15" fill="rgb(249,103,42)" fg:x="18673" fg:w="27"/><text x="7.2285%" y="607.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (34 samples, 0.01%)</title><rect x="7.0492%" y="389" width="0.0127%" height="15" fill="rgb(246,81,33)" fg:x="18862" fg:w="34"/><text x="7.2992%" y="399.50"></text></g><g><title>ciTypeFlow::flow_block (48 samples, 0.02%)</title><rect x="7.0447%" y="405" width="0.0179%" height="15" fill="rgb(252,33,42)" fg:x="18850" fg:w="48"/><text x="7.2947%" y="415.50"></text></g><g><title>ciTypeFlow::df_flow_types (55 samples, 0.02%)</title><rect x="7.0424%" y="421" width="0.0206%" height="15" fill="rgb(209,212,41)" fg:x="18844" fg:w="55"/><text x="7.2924%" y="431.50"></text></g><g><title>ciMethod::get_flow_analysis (65 samples, 0.02%)</title><rect x="7.0398%" y="469" width="0.0243%" height="15" fill="rgb(207,154,6)" fg:x="18837" fg:w="65"/><text x="7.2898%" y="479.50"></text></g><g><title>ciTypeFlow::do_flow (60 samples, 0.02%)</title><rect x="7.0417%" y="453" width="0.0224%" height="15" fill="rgb(223,64,47)" fg:x="18842" fg:w="60"/><text x="7.2917%" y="463.50"></text></g><g><title>ciTypeFlow::flow_types (60 samples, 0.02%)</title><rect x="7.0417%" y="437" width="0.0224%" height="15" fill="rgb(211,161,38)" fg:x="18842" fg:w="60"/><text x="7.2917%" y="447.50"></text></g><g><title>InlineTree::ok_to_inline (82 samples, 0.03%)</title><rect x="7.0338%" y="485" width="0.0306%" height="15" fill="rgb(219,138,40)" fg:x="18821" fg:w="82"/><text x="7.2838%" y="495.50"></text></g><g><title>Compile::call_generator (98 samples, 0.04%)</title><rect x="7.0301%" y="501" width="0.0366%" height="15" fill="rgb(241,228,46)" fg:x="18811" fg:w="98"/><text x="7.2801%" y="511.50"></text></g><g><title>InlineTree::ok_to_inline (31 samples, 0.01%)</title><rect x="7.1205%" y="389" width="0.0116%" height="15" fill="rgb(223,209,38)" fg:x="19053" fg:w="31"/><text x="7.3705%" y="399.50"></text></g><g><title>Compile::call_generator (43 samples, 0.02%)</title><rect x="7.1176%" y="405" width="0.0161%" height="15" fill="rgb(236,164,45)" fg:x="19045" fg:w="43"/><text x="7.3676%" y="415.50"></text></g><g><title>Parse::do_one_block (71 samples, 0.03%)</title><rect x="7.1598%" y="357" width="0.0265%" height="15" fill="rgb(231,15,5)" fg:x="19158" fg:w="71"/><text x="7.4098%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (66 samples, 0.02%)</title><rect x="7.1617%" y="341" width="0.0247%" height="15" fill="rgb(252,35,15)" fg:x="19163" fg:w="66"/><text x="7.4117%" y="351.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.03%)</title><rect x="7.1598%" y="373" width="0.0277%" height="15" fill="rgb(248,181,18)" fg:x="19158" fg:w="74"/><text x="7.4098%" y="383.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.05%)</title><rect x="7.1501%" y="405" width="0.0452%" height="15" fill="rgb(233,39,42)" fg:x="19132" fg:w="121"/><text x="7.4001%" y="415.50"></text></g><g><title>Parse::Parse (121 samples, 0.05%)</title><rect x="7.1501%" y="389" width="0.0452%" height="15" fill="rgb(238,110,33)" fg:x="19132" fg:w="121"/><text x="7.4001%" y="399.50"></text></g><g><title>Parse::do_call (249 samples, 0.09%)</title><rect x="7.1164%" y="421" width="0.0931%" height="15" fill="rgb(233,195,10)" fg:x="19042" fg:w="249"/><text x="7.3664%" y="431.50"></text></g><g><title>Parse::do_get_xxx (43 samples, 0.02%)</title><rect x="7.2117%" y="405" width="0.0161%" height="15" fill="rgb(254,105,3)" fg:x="19297" fg:w="43"/><text x="7.4617%" y="415.50"></text></g><g><title>Parse::do_put_xxx (29 samples, 0.01%)</title><rect x="7.2278%" y="405" width="0.0108%" height="15" fill="rgb(221,225,9)" fg:x="19340" fg:w="29"/><text x="7.4778%" y="415.50"></text></g><g><title>GraphKit::access_store_at (29 samples, 0.01%)</title><rect x="7.2278%" y="389" width="0.0108%" height="15" fill="rgb(224,227,45)" fg:x="19340" fg:w="29"/><text x="7.4778%" y="399.50"></text></g><g><title>BarrierSetC2::store_at (29 samples, 0.01%)</title><rect x="7.2278%" y="373" width="0.0108%" height="15" fill="rgb(229,198,43)" fg:x="19340" fg:w="29"/><text x="7.4778%" y="383.50"></text></g><g><title>Parse::do_field_access (85 samples, 0.03%)</title><rect x="7.2106%" y="421" width="0.0318%" height="15" fill="rgb(206,209,35)" fg:x="19294" fg:w="85"/><text x="7.4606%" y="431.50"></text></g><g><title>Parse::do_if (33 samples, 0.01%)</title><rect x="7.2424%" y="421" width="0.0123%" height="15" fill="rgb(245,195,53)" fg:x="19379" fg:w="33"/><text x="7.4924%" y="431.50"></text></g><g><title>Parse::do_one_block (449 samples, 0.17%)</title><rect x="7.1045%" y="453" width="0.1678%" height="15" fill="rgb(240,92,26)" fg:x="19010" fg:w="449"/><text x="7.3545%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (443 samples, 0.17%)</title><rect x="7.1067%" y="437" width="0.1656%" height="15" fill="rgb(207,40,23)" fg:x="19016" fg:w="443"/><text x="7.3567%" y="447.50"></text></g><g><title>Parse::do_all_blocks (458 samples, 0.17%)</title><rect x="7.1026%" y="469" width="0.1712%" height="15" fill="rgb(223,111,35)" fg:x="19005" fg:w="458"/><text x="7.3526%" y="479.50"></text></g><g><title>ParseGenerator::generate (525 samples, 0.20%)</title><rect x="7.0884%" y="501" width="0.1962%" height="15" fill="rgb(229,147,28)" fg:x="18967" fg:w="525"/><text x="7.3384%" y="511.50"></text></g><g><title>Parse::Parse (522 samples, 0.20%)</title><rect x="7.0895%" y="485" width="0.1951%" height="15" fill="rgb(211,29,28)" fg:x="18970" fg:w="522"/><text x="7.3395%" y="495.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="7.2910%" y="405" width="0.0105%" height="15" fill="rgb(228,72,33)" fg:x="19509" fg:w="28"/><text x="7.5410%" y="415.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="7.2898%" y="453" width="0.0164%" height="15" fill="rgb(205,214,31)" fg:x="19506" fg:w="44"/><text x="7.5398%" y="463.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="7.2898%" y="437" width="0.0164%" height="15" fill="rgb(224,111,15)" fg:x="19506" fg:w="44"/><text x="7.5398%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (42 samples, 0.02%)</title><rect x="7.2906%" y="421" width="0.0157%" height="15" fill="rgb(253,21,26)" fg:x="19508" fg:w="42"/><text x="7.5406%" y="431.50"></text></g><g><title>ParseGenerator::generate (50 samples, 0.02%)</title><rect x="7.2895%" y="485" width="0.0187%" height="15" fill="rgb(245,139,43)" fg:x="19505" fg:w="50"/><text x="7.5395%" y="495.50"></text></g><g><title>Parse::Parse (50 samples, 0.02%)</title><rect x="7.2895%" y="469" width="0.0187%" height="15" fill="rgb(252,170,7)" fg:x="19505" fg:w="50"/><text x="7.5395%" y="479.50"></text></g><g><title>PredictedCallGenerator::generate (83 samples, 0.03%)</title><rect x="7.2846%" y="501" width="0.0310%" height="15" fill="rgb(231,118,14)" fg:x="19492" fg:w="83"/><text x="7.5346%" y="511.50"></text></g><g><title>Parse::do_call (804 samples, 0.30%)</title><rect x="7.0294%" y="517" width="0.3005%" height="15" fill="rgb(238,83,0)" fg:x="18809" fg:w="804"/><text x="7.2794%" y="527.50"></text></g><g><title>GraphKit::access_load_at (30 samples, 0.01%)</title><rect x="7.3399%" y="485" width="0.0112%" height="15" fill="rgb(221,39,39)" fg:x="19640" fg:w="30"/><text x="7.5899%" y="495.50"></text></g><g><title>BarrierSetC2::load_at (30 samples, 0.01%)</title><rect x="7.3399%" y="469" width="0.0112%" height="15" fill="rgb(222,119,46)" fg:x="19640" fg:w="30"/><text x="7.5899%" y="479.50"></text></g><g><title>Parse::do_get_xxx (52 samples, 0.02%)</title><rect x="7.3362%" y="501" width="0.0194%" height="15" fill="rgb(222,165,49)" fg:x="19630" fg:w="52"/><text x="7.5862%" y="511.50"></text></g><g><title>GraphKit::access_store_at (49 samples, 0.02%)</title><rect x="7.3556%" y="485" width="0.0183%" height="15" fill="rgb(219,113,52)" fg:x="19682" fg:w="49"/><text x="7.6056%" y="495.50"></text></g><g><title>BarrierSetC2::store_at (49 samples, 0.02%)</title><rect x="7.3556%" y="469" width="0.0183%" height="15" fill="rgb(214,7,15)" fg:x="19682" fg:w="49"/><text x="7.6056%" y="479.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (49 samples, 0.02%)</title><rect x="7.3556%" y="453" width="0.0183%" height="15" fill="rgb(235,32,4)" fg:x="19682" fg:w="49"/><text x="7.6056%" y="463.50"></text></g><g><title>Parse::do_put_xxx (50 samples, 0.02%)</title><rect x="7.3556%" y="501" width="0.0187%" height="15" fill="rgb(238,90,54)" fg:x="19682" fg:w="50"/><text x="7.6056%" y="511.50"></text></g><g><title>Parse::do_field_access (118 samples, 0.04%)</title><rect x="7.3347%" y="517" width="0.0441%" height="15" fill="rgb(213,208,19)" fg:x="19626" fg:w="118"/><text x="7.5847%" y="527.50"></text></g><g><title>Parse::do_if (34 samples, 0.01%)</title><rect x="7.3788%" y="517" width="0.0127%" height="15" fill="rgb(233,156,4)" fg:x="19744" fg:w="34"/><text x="7.6288%" y="527.50"></text></g><g><title>Parse::do_one_block (1,094 samples, 0.41%)</title><rect x="7.0088%" y="549" width="0.4089%" height="15" fill="rgb(207,194,5)" fg:x="18754" fg:w="1094"/><text x="7.2588%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (1,077 samples, 0.40%)</title><rect x="7.0152%" y="533" width="0.4025%" height="15" fill="rgb(206,111,30)" fg:x="18771" fg:w="1077"/><text x="7.2652%" y="543.50"></text></g><g><title>Parse::do_all_blocks (1,104 samples, 0.41%)</title><rect x="7.0073%" y="565" width="0.4126%" height="15" fill="rgb(243,70,54)" fg:x="18750" fg:w="1104"/><text x="7.2573%" y="575.50"></text></g><g><title>ParseGenerator::generate (1,194 samples, 0.45%)</title><rect x="6.9886%" y="597" width="0.4462%" height="15" fill="rgb(242,28,8)" fg:x="18700" fg:w="1194"/><text x="7.2386%" y="607.50"></text></g><g><title>Parse::Parse (1,192 samples, 0.45%)</title><rect x="6.9894%" y="581" width="0.4455%" height="15" fill="rgb(219,106,18)" fg:x="18702" fg:w="1192"/><text x="7.2394%" y="591.50"></text></g><g><title>Parse::do_one_block (45 samples, 0.02%)</title><rect x="7.4554%" y="437" width="0.0168%" height="15" fill="rgb(244,222,10)" fg:x="19949" fg:w="45"/><text x="7.7054%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="7.4558%" y="421" width="0.0164%" height="15" fill="rgb(236,179,52)" fg:x="19950" fg:w="44"/><text x="7.7058%" y="431.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="7.4554%" y="453" width="0.0172%" height="15" fill="rgb(213,23,39)" fg:x="19949" fg:w="46"/><text x="7.7054%" y="463.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.02%)</title><rect x="7.4532%" y="485" width="0.0206%" height="15" fill="rgb(238,48,10)" fg:x="19943" fg:w="55"/><text x="7.7032%" y="495.50"></text></g><g><title>Parse::Parse (55 samples, 0.02%)</title><rect x="7.4532%" y="469" width="0.0206%" height="15" fill="rgb(251,196,23)" fg:x="19943" fg:w="55"/><text x="7.7032%" y="479.50"></text></g><g><title>Parse::do_call (100 samples, 0.04%)</title><rect x="7.4449%" y="501" width="0.0374%" height="15" fill="rgb(250,152,24)" fg:x="19921" fg:w="100"/><text x="7.6949%" y="511.50"></text></g><g><title>Parse::do_one_block (124 samples, 0.05%)</title><rect x="7.4434%" y="533" width="0.0463%" height="15" fill="rgb(209,150,17)" fg:x="19917" fg:w="124"/><text x="7.6934%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (122 samples, 0.05%)</title><rect x="7.4442%" y="517" width="0.0456%" height="15" fill="rgb(234,202,34)" fg:x="19919" fg:w="122"/><text x="7.6942%" y="527.50"></text></g><g><title>Parse::do_all_blocks (126 samples, 0.05%)</title><rect x="7.4431%" y="549" width="0.0471%" height="15" fill="rgb(253,148,53)" fg:x="19916" fg:w="126"/><text x="7.6931%" y="559.50"></text></g><g><title>ParseGenerator::generate (136 samples, 0.05%)</title><rect x="7.4419%" y="581" width="0.0508%" height="15" fill="rgb(218,129,16)" fg:x="19913" fg:w="136"/><text x="7.6919%" y="591.50"></text></g><g><title>Parse::Parse (136 samples, 0.05%)</title><rect x="7.4419%" y="565" width="0.0508%" height="15" fill="rgb(216,85,19)" fg:x="19913" fg:w="136"/><text x="7.6919%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (173 samples, 0.06%)</title><rect x="7.4348%" y="597" width="0.0647%" height="15" fill="rgb(235,228,7)" fg:x="19894" fg:w="173"/><text x="7.6848%" y="607.50"></text></g><g><title>Parse::do_call (1,688 samples, 0.63%)</title><rect x="6.8810%" y="613" width="0.6308%" height="15" fill="rgb(245,175,0)" fg:x="18412" fg:w="1688"/><text x="7.1310%" y="623.50"></text></g><g><title>G1BarrierSetC2::load_at_resolved (27 samples, 0.01%)</title><rect x="7.5298%" y="549" width="0.0101%" height="15" fill="rgb(208,168,36)" fg:x="20148" fg:w="27"/><text x="7.7798%" y="559.50"></text></g><g><title>BarrierSetC2::load_at_resolved (27 samples, 0.01%)</title><rect x="7.5298%" y="533" width="0.0101%" height="15" fill="rgb(246,171,24)" fg:x="20148" fg:w="27"/><text x="7.7798%" y="543.50"></text></g><g><title>GraphKit::make_load (27 samples, 0.01%)</title><rect x="7.5298%" y="517" width="0.0101%" height="15" fill="rgb(215,142,24)" fg:x="20148" fg:w="27"/><text x="7.7798%" y="527.50"></text></g><g><title>GraphKit::access_load_at (29 samples, 0.01%)</title><rect x="7.5298%" y="581" width="0.0108%" height="15" fill="rgb(250,187,7)" fg:x="20148" fg:w="29"/><text x="7.7798%" y="591.50"></text></g><g><title>BarrierSetC2::load_at (29 samples, 0.01%)</title><rect x="7.5298%" y="565" width="0.0108%" height="15" fill="rgb(228,66,33)" fg:x="20148" fg:w="29"/><text x="7.7798%" y="575.50"></text></g><g><title>Parse::do_get_xxx (71 samples, 0.03%)</title><rect x="7.5204%" y="597" width="0.0265%" height="15" fill="rgb(234,215,21)" fg:x="20123" fg:w="71"/><text x="7.7704%" y="607.50"></text></g><g><title>G1BarrierSetC2::post_barrier (38 samples, 0.01%)</title><rect x="7.5533%" y="533" width="0.0142%" height="15" fill="rgb(222,191,20)" fg:x="20211" fg:w="38"/><text x="7.8033%" y="543.50"></text></g><g><title>G1BarrierSetC2::pre_barrier (33 samples, 0.01%)</title><rect x="7.5675%" y="533" width="0.0123%" height="15" fill="rgb(245,79,54)" fg:x="20249" fg:w="33"/><text x="7.8175%" y="543.50"></text></g><g><title>BarrierSetC2::store_at (87 samples, 0.03%)</title><rect x="7.5477%" y="565" width="0.0325%" height="15" fill="rgb(240,10,37)" fg:x="20196" fg:w="87"/><text x="7.7977%" y="575.50"></text></g><g><title>ModRefBarrierSetC2::store_at_resolved (80 samples, 0.03%)</title><rect x="7.5503%" y="549" width="0.0299%" height="15" fill="rgb(214,192,32)" fg:x="20203" fg:w="80"/><text x="7.8003%" y="559.50"></text></g><g><title>Parse::do_put_xxx (90 samples, 0.03%)</title><rect x="7.5470%" y="597" width="0.0336%" height="15" fill="rgb(209,36,54)" fg:x="20194" fg:w="90"/><text x="7.7970%" y="607.50"></text></g><g><title>GraphKit::access_store_at (88 samples, 0.03%)</title><rect x="7.5477%" y="581" width="0.0329%" height="15" fill="rgb(220,10,11)" fg:x="20196" fg:w="88"/><text x="7.7977%" y="591.50"></text></g><g><title>Parse::do_field_access (172 samples, 0.06%)</title><rect x="7.5182%" y="613" width="0.0643%" height="15" fill="rgb(221,106,17)" fg:x="20117" fg:w="172"/><text x="7.7682%" y="623.50"></text></g><g><title>Parse::do_all_blocks (1,977 samples, 0.74%)</title><rect x="6.8690%" y="661" width="0.7388%" height="15" fill="rgb(251,142,44)" fg:x="18380" fg:w="1977"/><text x="7.1190%" y="671.50"></text></g><g><title>Parse::do_one_block (1,976 samples, 0.74%)</title><rect x="6.8694%" y="645" width="0.7385%" height="15" fill="rgb(238,13,15)" fg:x="18381" fg:w="1976"/><text x="7.1194%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (1,970 samples, 0.74%)</title><rect x="6.8716%" y="629" width="0.7362%" height="15" fill="rgb(208,107,27)" fg:x="18387" fg:w="1970"/><text x="7.1216%" y="639.50"></text></g><g><title>ParseGenerator::generate (1,992 samples, 0.74%)</title><rect x="6.8642%" y="693" width="0.7445%" height="15" fill="rgb(205,136,37)" fg:x="18367" fg:w="1992"/><text x="7.1142%" y="703.50"></text></g><g><title>Parse::Parse (1,992 samples, 0.74%)</title><rect x="6.8642%" y="677" width="0.7445%" height="15" fill="rgb(250,205,27)" fg:x="18367" fg:w="1992"/><text x="7.1142%" y="687.50"></text></g><g><title>InlineTree::ok_to_inline (41 samples, 0.02%)</title><rect x="7.6168%" y="565" width="0.0153%" height="15" fill="rgb(210,80,43)" fg:x="20381" fg:w="41"/><text x="7.8668%" y="575.50"></text></g><g><title>ciMethod::get_flow_analysis (30 samples, 0.01%)</title><rect x="7.6210%" y="549" width="0.0112%" height="15" fill="rgb(247,160,36)" fg:x="20392" fg:w="30"/><text x="7.8710%" y="559.50"></text></g><g><title>ciTypeFlow::do_flow (30 samples, 0.01%)</title><rect x="7.6210%" y="533" width="0.0112%" height="15" fill="rgb(234,13,49)" fg:x="20392" fg:w="30"/><text x="7.8710%" y="543.50"></text></g><g><title>ciTypeFlow::flow_types (30 samples, 0.01%)</title><rect x="7.6210%" y="517" width="0.0112%" height="15" fill="rgb(234,122,0)" fg:x="20392" fg:w="30"/><text x="7.8710%" y="527.50"></text></g><g><title>Compile::call_generator (45 samples, 0.02%)</title><rect x="7.6157%" y="581" width="0.0168%" height="15" fill="rgb(207,146,38)" fg:x="20378" fg:w="45"/><text x="7.8657%" y="591.50"></text></g><g><title>Parse::do_one_block (46 samples, 0.02%)</title><rect x="7.6621%" y="437" width="0.0172%" height="15" fill="rgb(207,177,25)" fg:x="20502" fg:w="46"/><text x="7.9121%" y="447.50"></text></g><g><title>Parse::do_one_bytecode (43 samples, 0.02%)</title><rect x="7.6632%" y="421" width="0.0161%" height="15" fill="rgb(211,178,42)" fg:x="20505" fg:w="43"/><text x="7.9132%" y="431.50"></text></g><g><title>Parse::do_all_blocks (51 samples, 0.02%)</title><rect x="7.6609%" y="453" width="0.0191%" height="15" fill="rgb(230,69,54)" fg:x="20499" fg:w="51"/><text x="7.9109%" y="463.50"></text></g><g><title>ParseGenerator::generate (60 samples, 0.02%)</title><rect x="7.6594%" y="485" width="0.0224%" height="15" fill="rgb(214,135,41)" fg:x="20495" fg:w="60"/><text x="7.9094%" y="495.50"></text></g><g><title>Parse::Parse (60 samples, 0.02%)</title><rect x="7.6594%" y="469" width="0.0224%" height="15" fill="rgb(237,67,25)" fg:x="20495" fg:w="60"/><text x="7.9094%" y="479.50"></text></g><g><title>Parse::do_call (106 samples, 0.04%)</title><rect x="7.6490%" y="501" width="0.0396%" height="15" fill="rgb(222,189,50)" fg:x="20467" fg:w="106"/><text x="7.8990%" y="511.50"></text></g><g><title>Parse::do_one_block (153 samples, 0.06%)</title><rect x="7.6434%" y="533" width="0.0572%" height="15" fill="rgb(245,148,34)" fg:x="20452" fg:w="153"/><text x="7.8934%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (151 samples, 0.06%)</title><rect x="7.6441%" y="517" width="0.0564%" height="15" fill="rgb(222,29,6)" fg:x="20454" fg:w="151"/><text x="7.8941%" y="527.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.06%)</title><rect x="7.6430%" y="549" width="0.0583%" height="15" fill="rgb(221,189,43)" fg:x="20451" fg:w="156"/><text x="7.8930%" y="559.50"></text></g><g><title>ParseGenerator::generate (177 samples, 0.07%)</title><rect x="7.6385%" y="581" width="0.0661%" height="15" fill="rgb(207,36,27)" fg:x="20439" fg:w="177"/><text x="7.8885%" y="591.50"></text></g><g><title>Parse::Parse (177 samples, 0.07%)</title><rect x="7.6385%" y="565" width="0.0661%" height="15" fill="rgb(217,90,24)" fg:x="20439" fg:w="177"/><text x="7.8885%" y="575.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.01%)</title><rect x="7.7047%" y="581" width="0.0101%" height="15" fill="rgb(224,66,35)" fg:x="20616" fg:w="27"/><text x="7.9547%" y="591.50"></text></g><g><title>Parse::do_call (272 samples, 0.10%)</title><rect x="7.6157%" y="597" width="0.1017%" height="15" fill="rgb(221,13,50)" fg:x="20378" fg:w="272"/><text x="7.8657%" y="607.50"></text></g><g><title>Parse::do_field_access (29 samples, 0.01%)</title><rect x="7.7200%" y="597" width="0.0108%" height="15" fill="rgb(236,68,49)" fg:x="20657" fg:w="29"/><text x="7.9700%" y="607.50"></text></g><g><title>Parse::do_one_block (343 samples, 0.13%)</title><rect x="7.6120%" y="629" width="0.1282%" height="15" fill="rgb(229,146,28)" fg:x="20368" fg:w="343"/><text x="7.8620%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (339 samples, 0.13%)</title><rect x="7.6135%" y="613" width="0.1267%" height="15" fill="rgb(225,31,38)" fg:x="20372" fg:w="339"/><text x="7.8635%" y="623.50"></text></g><g><title>Parse::do_all_blocks (345 samples, 0.13%)</title><rect x="7.6120%" y="645" width="0.1289%" height="15" fill="rgb(250,208,3)" fg:x="20368" fg:w="345"/><text x="7.8620%" y="655.50"></text></g><g><title>ParseGenerator::generate (352 samples, 0.13%)</title><rect x="7.6105%" y="677" width="0.1316%" height="15" fill="rgb(246,54,23)" fg:x="20364" fg:w="352"/><text x="7.8605%" y="687.50"></text></g><g><title>Parse::Parse (352 samples, 0.13%)</title><rect x="7.6105%" y="661" width="0.1316%" height="15" fill="rgb(243,76,11)" fg:x="20364" fg:w="352"/><text x="7.8605%" y="671.50"></text></g><g><title>Parse::do_call (49 samples, 0.02%)</title><rect x="7.7458%" y="581" width="0.0183%" height="15" fill="rgb(245,21,50)" fg:x="20726" fg:w="49"/><text x="7.9958%" y="591.50"></text></g><g><title>Parse::do_one_block (73 samples, 0.03%)</title><rect x="7.7428%" y="613" width="0.0273%" height="15" fill="rgb(228,9,43)" fg:x="20718" fg:w="73"/><text x="7.9928%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (70 samples, 0.03%)</title><rect x="7.7439%" y="597" width="0.0262%" height="15" fill="rgb(208,100,47)" fg:x="20721" fg:w="70"/><text x="7.9939%" y="607.50"></text></g><g><title>Parse::do_all_blocks (74 samples, 0.03%)</title><rect x="7.7428%" y="629" width="0.0277%" height="15" fill="rgb(232,26,8)" fg:x="20718" fg:w="74"/><text x="7.9928%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (79 samples, 0.03%)</title><rect x="7.7420%" y="677" width="0.0295%" height="15" fill="rgb(216,166,38)" fg:x="20716" fg:w="79"/><text x="7.9920%" y="687.50"></text></g><g><title>ParseGenerator::generate (79 samples, 0.03%)</title><rect x="7.7420%" y="661" width="0.0295%" height="15" fill="rgb(251,202,51)" fg:x="20716" fg:w="79"/><text x="7.9920%" y="671.50"></text></g><g><title>Parse::Parse (79 samples, 0.03%)</title><rect x="7.7420%" y="645" width="0.0295%" height="15" fill="rgb(254,216,34)" fg:x="20716" fg:w="79"/><text x="7.9920%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (440 samples, 0.16%)</title><rect x="7.6086%" y="693" width="0.1644%" height="15" fill="rgb(251,32,27)" fg:x="20359" fg:w="440"/><text x="7.8586%" y="703.50"></text></g><g><title>Parse::do_call (2,694 samples, 1.01%)</title><rect x="6.7700%" y="709" width="1.0068%" height="15" fill="rgb(208,127,28)" fg:x="18115" fg:w="2694"/><text x="7.0200%" y="719.50"></text></g><g><title>Parse::do_all_blocks (2,713 samples, 1.01%)</title><rect x="6.7674%" y="757" width="1.0139%" height="15" fill="rgb(224,137,22)" fg:x="18108" fg:w="2713"/><text x="7.0174%" y="767.50"></text></g><g><title>Parse::do_one_block (2,713 samples, 1.01%)</title><rect x="6.7674%" y="741" width="1.0139%" height="15" fill="rgb(254,70,32)" fg:x="18108" fg:w="2713"/><text x="7.0174%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (2,713 samples, 1.01%)</title><rect x="6.7674%" y="725" width="1.0139%" height="15" fill="rgb(229,75,37)" fg:x="18108" fg:w="2713"/><text x="7.0174%" y="735.50"></text></g><g><title>C2Compiler::compile_method (2,778 samples, 1.04%)</title><rect x="6.7446%" y="821" width="1.0382%" height="15" fill="rgb(252,64,23)" fg:x="18047" fg:w="2778"/><text x="6.9946%" y="831.50"></text></g><g><title>Compile::Compile (2,778 samples, 1.04%)</title><rect x="6.7446%" y="805" width="1.0382%" height="15" fill="rgb(232,162,48)" fg:x="18047" fg:w="2778"/><text x="6.9946%" y="815.50"></text></g><g><title>ParseGenerator::generate (2,717 samples, 1.02%)</title><rect x="6.7674%" y="789" width="1.0154%" height="15" fill="rgb(246,160,12)" fg:x="18108" fg:w="2717"/><text x="7.0174%" y="799.50"></text></g><g><title>Parse::Parse (2,717 samples, 1.02%)</title><rect x="6.7674%" y="773" width="1.0154%" height="15" fill="rgb(247,166,0)" fg:x="18108" fg:w="2717"/><text x="7.0174%" y="783.50"></text></g><g><title>MachSpillCopyNode::implementation (56 samples, 0.02%)</title><rect x="7.7888%" y="741" width="0.0209%" height="15" fill="rgb(249,219,21)" fg:x="20841" fg:w="56"/><text x="8.0388%" y="751.50"></text></g><g><title>Compile::Output (71 samples, 0.03%)</title><rect x="7.7854%" y="805" width="0.0265%" height="15" fill="rgb(205,209,3)" fg:x="20832" fg:w="71"/><text x="8.0354%" y="815.50"></text></g><g><title>Compile::init_buffer (71 samples, 0.03%)</title><rect x="7.7854%" y="789" width="0.0265%" height="15" fill="rgb(243,44,1)" fg:x="20832" fg:w="71"/><text x="8.0354%" y="799.50"></text></g><g><title>Compile::shorten_branches (62 samples, 0.02%)</title><rect x="7.7888%" y="773" width="0.0232%" height="15" fill="rgb(206,159,16)" fg:x="20841" fg:w="62"/><text x="8.0388%" y="783.50"></text></g><g><title>Compile::scratch_emit_size (62 samples, 0.02%)</title><rect x="7.7888%" y="757" width="0.0232%" height="15" fill="rgb(244,77,30)" fg:x="20841" fg:w="62"/><text x="8.0388%" y="767.50"></text></g><g><title>MachNode::adr_type (54 samples, 0.02%)</title><rect x="7.8310%" y="741" width="0.0202%" height="15" fill="rgb(218,69,12)" fg:x="20954" fg:w="54"/><text x="8.0810%" y="751.50"></text></g><g><title>TypeInstPtr::add_offset (42 samples, 0.02%)</title><rect x="7.8355%" y="725" width="0.0157%" height="15" fill="rgb(212,87,7)" fg:x="20966" fg:w="42"/><text x="8.0855%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (73 samples, 0.03%)</title><rect x="7.8243%" y="773" width="0.0273%" height="15" fill="rgb(245,114,25)" fg:x="20936" fg:w="73"/><text x="8.0743%" y="783.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (73 samples, 0.03%)</title><rect x="7.8243%" y="757" width="0.0273%" height="15" fill="rgb(210,61,42)" fg:x="20936" fg:w="73"/><text x="8.0743%" y="767.50"></text></g><g><title>PhaseCFG::sched_call (260 samples, 0.10%)</title><rect x="7.8515%" y="757" width="0.0972%" height="15" fill="rgb(211,52,33)" fg:x="21009" fg:w="260"/><text x="8.1015%" y="767.50"></text></g><g><title>PhaseCFG::schedule_local (261 samples, 0.10%)</title><rect x="7.8515%" y="773" width="0.0975%" height="15" fill="rgb(234,58,33)" fg:x="21009" fg:w="261"/><text x="8.1015%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (337 samples, 0.13%)</title><rect x="7.8235%" y="805" width="0.1259%" height="15" fill="rgb(220,115,36)" fg:x="20934" fg:w="337"/><text x="8.0735%" y="815.50"></text></g><g><title>PhaseCFG::global_code_motion (337 samples, 0.13%)</title><rect x="7.8235%" y="789" width="0.1259%" height="15" fill="rgb(243,153,54)" fg:x="20934" fg:w="337"/><text x="8.0735%" y="799.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (57 samples, 0.02%)</title><rect x="7.9524%" y="757" width="0.0213%" height="15" fill="rgb(251,47,18)" fg:x="21279" fg:w="57"/><text x="8.2024%" y="767.50"></text></g><g><title>PhaseChaitin::Split (67 samples, 0.03%)</title><rect x="7.9495%" y="789" width="0.0250%" height="15" fill="rgb(242,102,42)" fg:x="21271" fg:w="67"/><text x="8.1995%" y="799.50"></text></g><g><title>PhaseChaitin::split_USE (59 samples, 0.02%)</title><rect x="7.9524%" y="773" width="0.0220%" height="15" fill="rgb(234,31,38)" fg:x="21279" fg:w="59"/><text x="8.2024%" y="783.50"></text></g><g><title>Compile::Code_Gen (511 samples, 0.19%)</title><rect x="7.7854%" y="821" width="0.1910%" height="15" fill="rgb(221,117,51)" fg:x="20832" fg:w="511"/><text x="8.0354%" y="831.50"></text></g><g><title>PhaseChaitin::Register_Allocate (72 samples, 0.03%)</title><rect x="7.9495%" y="805" width="0.0269%" height="15" fill="rgb(212,20,18)" fg:x="21271" fg:w="72"/><text x="8.1995%" y="815.50"></text></g><g><title>OopFlow::build_oop_map (176 samples, 0.07%)</title><rect x="8.2656%" y="741" width="0.0658%" height="15" fill="rgb(245,133,36)" fg:x="22117" fg:w="176"/><text x="8.5156%" y="751.50"></text></g><g><title>OopFlow::compute_reach (288 samples, 0.11%)</title><rect x="8.2241%" y="757" width="0.1076%" height="15" fill="rgb(212,6,19)" fg:x="22006" fg:w="288"/><text x="8.4741%" y="767.50"></text></g><g><title>__memcpy_sse2_unaligned_erms (98 samples, 0.04%)</title><rect x="8.3359%" y="757" width="0.0366%" height="15" fill="rgb(218,1,36)" fg:x="22305" fg:w="98"/><text x="8.5859%" y="767.50"></text></g><g><title>Compile::BuildOopMaps (1,042 samples, 0.39%)</title><rect x="7.9835%" y="773" width="0.3894%" height="15" fill="rgb(246,84,54)" fg:x="21362" fg:w="1042"/><text x="8.2335%" y="783.50"></text></g><g><title>do_syscall_64 (27 samples, 0.01%)</title><rect x="8.3905%" y="677" width="0.0101%" height="15" fill="rgb(242,110,6)" fg:x="22451" fg:w="27"/><text x="8.6405%" y="687.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.01%)</title><rect x="8.3905%" y="661" width="0.0101%" height="15" fill="rgb(214,47,5)" fg:x="22451" fg:w="27"/><text x="8.6405%" y="671.50"></text></g><g><title>Compile::init_scratch_buffer_blob (55 samples, 0.02%)</title><rect x="8.3837%" y="757" width="0.0206%" height="15" fill="rgb(218,159,25)" fg:x="22433" fg:w="55"/><text x="8.6337%" y="767.50"></text></g><g><title>BufferBlob::create (55 samples, 0.02%)</title><rect x="8.3837%" y="741" width="0.0206%" height="15" fill="rgb(215,211,28)" fg:x="22433" fg:w="55"/><text x="8.6337%" y="751.50"></text></g><g><title>__pthread_cond_signal (39 samples, 0.01%)</title><rect x="8.3897%" y="725" width="0.0146%" height="15" fill="rgb(238,59,32)" fg:x="22449" fg:w="39"/><text x="8.6397%" y="735.50"></text></g><g><title>futex_wake (38 samples, 0.01%)</title><rect x="8.3901%" y="709" width="0.0142%" height="15" fill="rgb(226,82,3)" fg:x="22450" fg:w="38"/><text x="8.6401%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.01%)</title><rect x="8.3905%" y="693" width="0.0138%" height="15" fill="rgb(240,164,32)" fg:x="22451" fg:w="37"/><text x="8.6405%" y="703.50"></text></g><g><title>Compile::scratch_emit_size (215 samples, 0.08%)</title><rect x="8.4704%" y="741" width="0.0804%" height="15" fill="rgb(232,46,7)" fg:x="22665" fg:w="215"/><text x="8.7204%" y="751.50"></text></g><g><title>Compile::shorten_branches (424 samples, 0.16%)</title><rect x="8.4043%" y="757" width="0.1585%" height="15" fill="rgb(229,129,53)" fg:x="22488" fg:w="424"/><text x="8.6543%" y="767.50"></text></g><g><title>Compile::init_buffer (512 samples, 0.19%)</title><rect x="8.3729%" y="773" width="0.1913%" height="15" fill="rgb(234,188,29)" fg:x="22404" fg:w="512"/><text x="8.6229%" y="783.50"></text></g><g><title>Compile::Output (1,572 samples, 0.59%)</title><rect x="7.9779%" y="789" width="0.5875%" height="15" fill="rgb(246,141,4)" fg:x="21347" fg:w="1572"/><text x="8.2279%" y="799.50"></text></g><g><title>Compile::FillExceptionTables (30 samples, 0.01%)</title><rect x="8.6308%" y="773" width="0.0112%" height="15" fill="rgb(229,23,39)" fg:x="23094" fg:w="30"/><text x="8.8808%" y="783.50"></text></g><g><title>Compile::FillLocArray (67 samples, 0.03%)</title><rect x="8.6577%" y="757" width="0.0250%" height="15" fill="rgb(206,12,3)" fg:x="23166" fg:w="67"/><text x="8.9077%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (53 samples, 0.02%)</title><rect x="8.6887%" y="741" width="0.0198%" height="15" fill="rgb(252,226,20)" fg:x="23249" fg:w="53"/><text x="8.9387%" y="751.50"></text></g><g><title>DebugInformationRecorder::create_scope_values (73 samples, 0.03%)</title><rect x="8.6846%" y="757" width="0.0273%" height="15" fill="rgb(216,123,35)" fg:x="23238" fg:w="73"/><text x="8.9346%" y="767.50"></text></g><g><title>DebugInformationRecorder::find_sharable_decode_offset (42 samples, 0.02%)</title><rect x="8.7212%" y="741" width="0.0157%" height="15" fill="rgb(212,68,40)" fg:x="23336" fg:w="42"/><text x="8.9712%" y="751.50"></text></g><g><title>DebugInformationRecorder::describe_scope (73 samples, 0.03%)</title><rect x="8.7119%" y="757" width="0.0273%" height="15" fill="rgb(254,125,32)" fg:x="23311" fg:w="73"/><text x="8.9619%" y="767.50"></text></g><g><title>Compile::Process_OopMap_Node (319 samples, 0.12%)</title><rect x="8.6420%" y="773" width="0.1192%" height="15" fill="rgb(253,97,22)" fg:x="23124" fg:w="319"/><text x="8.8920%" y="783.50"></text></g><g><title>resource_allocate_bytes (40 samples, 0.01%)</title><rect x="8.7462%" y="757" width="0.0149%" height="15" fill="rgb(241,101,14)" fg:x="23403" fg:w="40"/><text x="8.9962%" y="767.50"></text></g><g><title>Compile::valid_bundle_info (78 samples, 0.03%)</title><rect x="8.7634%" y="773" width="0.0292%" height="15" fill="rgb(238,103,29)" fg:x="23449" fg:w="78"/><text x="9.0134%" y="783.50"></text></g><g><title>MachSpillCopyNode::implementation (34 samples, 0.01%)</title><rect x="8.8001%" y="773" width="0.0127%" height="15" fill="rgb(233,195,47)" fg:x="23547" fg:w="34"/><text x="9.0501%" y="783.50"></text></g><g><title>Compile::fill_buffer (756 samples, 0.28%)</title><rect x="8.5654%" y="789" width="0.2825%" height="15" fill="rgb(246,218,30)" fg:x="22919" fg:w="756"/><text x="8.8154%" y="799.50"></text></g><g><title>Matcher::init_first_stack_mask (55 samples, 0.02%)</title><rect x="8.8755%" y="757" width="0.0206%" height="15" fill="rgb(219,145,47)" fg:x="23749" fg:w="55"/><text x="9.1255%" y="767.50"></text></g><g><title>Matcher::Fixup_Save_On_Entry (67 samples, 0.03%)</title><rect x="8.8718%" y="773" width="0.0250%" height="15" fill="rgb(243,12,26)" fg:x="23739" fg:w="67"/><text x="9.1218%" y="783.50"></text></g><g><title>Matcher::is_bmi_pattern (53 samples, 0.02%)</title><rect x="9.0404%" y="757" width="0.0198%" height="15" fill="rgb(214,87,16)" fg:x="24190" fg:w="53"/><text x="9.2904%" y="767.50"></text></g><g><title>Matcher::find_shared (453 samples, 0.17%)</title><rect x="8.8968%" y="773" width="0.1693%" height="15" fill="rgb(208,99,42)" fg:x="23806" fg:w="453"/><text x="9.1468%" y="783.50"></text></g><g><title>Arena::contains (694 samples, 0.26%)</title><rect x="9.2422%" y="757" width="0.2594%" height="15" fill="rgb(253,99,2)" fg:x="24730" fg:w="694"/><text x="9.4922%" y="767.50"></text></g><g><title>Matcher::collect_null_checks (40 samples, 0.01%)</title><rect x="9.5086%" y="757" width="0.0149%" height="15" fill="rgb(220,168,23)" fg:x="25443" fg:w="40"/><text x="9.7586%" y="767.50"></text></g><g><title>Matcher::ReduceInst (43 samples, 0.02%)</title><rect x="9.5595%" y="725" width="0.0161%" height="15" fill="rgb(242,38,24)" fg:x="25579" fg:w="43"/><text x="9.8095%" y="735.50"></text></g><g><title>Matcher::match_tree (161 samples, 0.06%)</title><rect x="9.5329%" y="741" width="0.0602%" height="15" fill="rgb(225,182,9)" fg:x="25508" fg:w="161"/><text x="9.7829%" y="751.50"></text></g><g><title>Node::add_req (47 samples, 0.02%)</title><rect x="9.5755%" y="725" width="0.0176%" height="15" fill="rgb(243,178,37)" fg:x="25622" fg:w="47"/><text x="9.8255%" y="735.50"></text></g><g><title>Matcher::match_sfpt (207 samples, 0.08%)</title><rect x="9.5236%" y="757" width="0.0774%" height="15" fill="rgb(232,139,19)" fg:x="25483" fg:w="207"/><text x="9.7736%" y="767.50"></text></g><g><title>Matcher::Label_Root (35 samples, 0.01%)</title><rect x="9.7919%" y="677" width="0.0131%" height="15" fill="rgb(225,201,24)" fg:x="26201" fg:w="35"/><text x="10.0419%" y="687.50"></text></g><g><title>State::DFA (27 samples, 0.01%)</title><rect x="9.8054%" y="677" width="0.0101%" height="15" fill="rgb(221,47,46)" fg:x="26237" fg:w="27"/><text x="10.0554%" y="687.50"></text></g><g><title>Matcher::Label_Root (79 samples, 0.03%)</title><rect x="9.7867%" y="693" width="0.0295%" height="15" fill="rgb(249,23,13)" fg:x="26187" fg:w="79"/><text x="10.0367%" y="703.50"></text></g><g><title>State::_sub_Op_ConL (28 samples, 0.01%)</title><rect x="9.8285%" y="677" width="0.0105%" height="15" fill="rgb(219,9,5)" fg:x="26299" fg:w="28"/><text x="10.0785%" y="687.50"></text></g><g><title>State::DFA (74 samples, 0.03%)</title><rect x="9.8166%" y="693" width="0.0277%" height="15" fill="rgb(254,171,16)" fg:x="26267" fg:w="74"/><text x="10.0666%" y="703.50"></text></g><g><title>Matcher::Label_Root (194 samples, 0.07%)</title><rect x="9.7755%" y="709" width="0.0725%" height="15" fill="rgb(230,171,20)" fg:x="26157" fg:w="194"/><text x="10.0255%" y="719.50"></text></g><g><title>State::_sub_Op_AddP (39 samples, 0.01%)</title><rect x="9.8569%" y="693" width="0.0146%" height="15" fill="rgb(210,71,41)" fg:x="26375" fg:w="39"/><text x="10.1069%" y="703.50"></text></g><g><title>State::DFA (76 samples, 0.03%)</title><rect x="9.8491%" y="709" width="0.0284%" height="15" fill="rgb(206,173,20)" fg:x="26354" fg:w="76"/><text x="10.0991%" y="719.50"></text></g><g><title>Matcher::Label_Root (380 samples, 0.14%)</title><rect x="9.7407%" y="725" width="0.1420%" height="15" fill="rgb(233,88,34)" fg:x="26064" fg:w="380"/><text x="9.9907%" y="735.50"></text></g><g><title>State::DFA (61 samples, 0.02%)</title><rect x="9.8846%" y="725" width="0.0228%" height="15" fill="rgb(223,209,46)" fg:x="26449" fg:w="61"/><text x="10.1346%" y="735.50"></text></g><g><title>TypeInstPtr::add_offset (27 samples, 0.01%)</title><rect x="9.9096%" y="725" width="0.0101%" height="15" fill="rgb(250,43,18)" fg:x="26516" fg:w="27"/><text x="10.1596%" y="735.50"></text></g><g><title>Matcher::Label_Root (582 samples, 0.22%)</title><rect x="9.7037%" y="741" width="0.2175%" height="15" fill="rgb(208,13,10)" fg:x="25965" fg:w="582"/><text x="9.9537%" y="751.50"></text></g><g><title>Matcher::ReduceInst (40 samples, 0.01%)</title><rect x="9.9582%" y="677" width="0.0149%" height="15" fill="rgb(212,200,36)" fg:x="26646" fg:w="40"/><text x="10.2082%" y="687.50"></text></g><g><title>Matcher::ReduceInst_Interior (79 samples, 0.03%)</title><rect x="9.9515%" y="693" width="0.0295%" height="15" fill="rgb(225,90,30)" fg:x="26628" fg:w="79"/><text x="10.2015%" y="703.50"></text></g><g><title>Matcher::ReduceInst (148 samples, 0.06%)</title><rect x="9.9421%" y="709" width="0.0553%" height="15" fill="rgb(236,182,39)" fg:x="26603" fg:w="148"/><text x="10.1921%" y="719.50"></text></g><g><title>Matcher::ReduceInst_Interior (248 samples, 0.09%)</title><rect x="9.9332%" y="725" width="0.0927%" height="15" fill="rgb(212,144,35)" fg:x="26579" fg:w="248"/><text x="10.1832%" y="735.50"></text></g><g><title>State::MachOperGenerator (31 samples, 0.01%)</title><rect x="10.0143%" y="709" width="0.0116%" height="15" fill="rgb(228,63,44)" fg:x="26796" fg:w="31"/><text x="10.2643%" y="719.50"></text></g><g><title>State::MachNodeGenerator (97 samples, 0.04%)</title><rect x="10.0371%" y="725" width="0.0363%" height="15" fill="rgb(228,109,6)" fg:x="26857" fg:w="97"/><text x="10.2871%" y="735.50"></text></g><g><title>State::MachOperGenerator (34 samples, 0.01%)</title><rect x="10.0733%" y="725" width="0.0127%" height="15" fill="rgb(238,117,24)" fg:x="26954" fg:w="34"/><text x="10.3233%" y="735.50"></text></g><g><title>Matcher::ReduceInst (449 samples, 0.17%)</title><rect x="9.9212%" y="741" width="0.1678%" height="15" fill="rgb(242,26,26)" fg:x="26547" fg:w="449"/><text x="10.1712%" y="751.50"></text></g><g><title>Matcher::match_tree (1,322 samples, 0.49%)</title><rect x="9.6009%" y="757" width="0.4941%" height="15" fill="rgb(221,92,48)" fg:x="25690" fg:w="1322"/><text x="9.8509%" y="767.50"></text></g><g><title>Node::clone (114 samples, 0.04%)</title><rect x="10.0972%" y="757" width="0.0426%" height="15" fill="rgb(209,209,32)" fg:x="27018" fg:w="114"/><text x="10.3472%" y="767.50"></text></g><g><title>__tls_get_addr (29 samples, 0.01%)</title><rect x="10.1548%" y="741" width="0.0108%" height="15" fill="rgb(221,70,22)" fg:x="27172" fg:w="29"/><text x="10.4048%" y="751.50"></text></g><g><title>Node::out_grow (68 samples, 0.03%)</title><rect x="10.1406%" y="757" width="0.0254%" height="15" fill="rgb(248,145,5)" fg:x="27134" fg:w="68"/><text x="10.3906%" y="767.50"></text></g><g><title>Matcher::xform (2,942 samples, 1.10%)</title><rect x="9.0691%" y="773" width="1.0995%" height="15" fill="rgb(226,116,26)" fg:x="24267" fg:w="2942"/><text x="9.3191%" y="783.50"></text></g><g><title>Matcher::match (3,527 samples, 1.32%)</title><rect x="8.8531%" y="789" width="1.3181%" height="15" fill="rgb(244,5,17)" fg:x="23689" fg:w="3527"/><text x="9.1031%" y="799.50"></text></g><g><title>PhaseBlockLayout::find_edges (87 samples, 0.03%)</title><rect x="10.1739%" y="773" width="0.0325%" height="15" fill="rgb(252,159,33)" fg:x="27223" fg:w="87"/><text x="10.4239%" y="783.50"></text></g><g><title>__GI___qsort_r (47 samples, 0.02%)</title><rect x="10.2138%" y="757" width="0.0176%" height="15" fill="rgb(206,71,0)" fg:x="27330" fg:w="47"/><text x="10.4638%" y="767.50"></text></g><g><title>msort_with_tmp (44 samples, 0.02%)</title><rect x="10.2150%" y="741" width="0.0164%" height="15" fill="rgb(233,118,54)" fg:x="27333" fg:w="44"/><text x="10.4650%" y="751.50"></text></g><g><title>msort_with_tmp (43 samples, 0.02%)</title><rect x="10.2153%" y="725" width="0.0161%" height="15" fill="rgb(234,83,48)" fg:x="27334" fg:w="43"/><text x="10.4653%" y="735.50"></text></g><g><title>msort_with_tmp (38 samples, 0.01%)</title><rect x="10.2172%" y="709" width="0.0142%" height="15" fill="rgb(228,3,54)" fg:x="27339" fg:w="38"/><text x="10.4672%" y="719.50"></text></g><g><title>msort_with_tmp (37 samples, 0.01%)</title><rect x="10.2176%" y="693" width="0.0138%" height="15" fill="rgb(226,155,13)" fg:x="27340" fg:w="37"/><text x="10.4676%" y="703.50"></text></g><g><title>msort_with_tmp (32 samples, 0.01%)</title><rect x="10.2195%" y="677" width="0.0120%" height="15" fill="rgb(241,28,37)" fg:x="27345" fg:w="32"/><text x="10.4695%" y="687.50"></text></g><g><title>msort_with_tmp (32 samples, 0.01%)</title><rect x="10.2195%" y="661" width="0.0120%" height="15" fill="rgb(233,93,10)" fg:x="27345" fg:w="32"/><text x="10.4695%" y="671.50"></text></g><g><title>msort_with_tmp (27 samples, 0.01%)</title><rect x="10.2213%" y="645" width="0.0101%" height="15" fill="rgb(225,113,19)" fg:x="27350" fg:w="27"/><text x="10.4713%" y="655.50"></text></g><g><title>msort_with_tmp (27 samples, 0.01%)</title><rect x="10.2213%" y="629" width="0.0101%" height="15" fill="rgb(241,2,18)" fg:x="27350" fg:w="27"/><text x="10.4713%" y="639.50"></text></g><g><title>PhaseBlockLayout::grow_traces (68 samples, 0.03%)</title><rect x="10.2064%" y="773" width="0.0254%" height="15" fill="rgb(228,207,21)" fg:x="27310" fg:w="68"/><text x="10.4564%" y="783.50"></text></g><g><title>PhaseBlockLayout::PhaseBlockLayout (197 samples, 0.07%)</title><rect x="10.1720%" y="789" width="0.0736%" height="15" fill="rgb(213,211,35)" fg:x="27218" fg:w="197"/><text x="10.4220%" y="799.50"></text></g><g><title>Node::clone (29 samples, 0.01%)</title><rect x="10.2908%" y="757" width="0.0108%" height="15" fill="rgb(209,83,10)" fg:x="27536" fg:w="29"/><text x="10.5408%" y="767.50"></text></g><g><title>PhaseCFG::PhaseCFG (181 samples, 0.07%)</title><rect x="10.2456%" y="789" width="0.0676%" height="15" fill="rgb(209,164,1)" fg:x="27415" fg:w="181"/><text x="10.4956%" y="799.50"></text></g><g><title>PhaseCFG::build_cfg (176 samples, 0.07%)</title><rect x="10.2475%" y="773" width="0.0658%" height="15" fill="rgb(213,184,43)" fg:x="27420" fg:w="176"/><text x="10.4975%" y="783.50"></text></g><g><title>Block_Stack::most_frequent_successor (27 samples, 0.01%)</title><rect x="10.3420%" y="741" width="0.0101%" height="15" fill="rgb(231,61,34)" fg:x="27673" fg:w="27"/><text x="10.5920%" y="751.50"></text></g><g><title>PhaseCFG::do_DFS (43 samples, 0.02%)</title><rect x="10.3364%" y="757" width="0.0161%" height="15" fill="rgb(235,75,3)" fg:x="27658" fg:w="43"/><text x="10.5864%" y="767.50"></text></g><g><title>PhaseCFG::build_dominator_tree (112 samples, 0.04%)</title><rect x="10.3133%" y="773" width="0.0419%" height="15" fill="rgb(220,106,47)" fg:x="27596" fg:w="112"/><text x="10.5633%" y="783.50"></text></g><g><title>CFGLoop::compute_freq (35 samples, 0.01%)</title><rect x="10.3600%" y="757" width="0.0131%" height="15" fill="rgb(210,196,33)" fg:x="27721" fg:w="35"/><text x="10.6100%" y="767.50"></text></g><g><title>PhaseCFG::estimate_block_frequency (82 samples, 0.03%)</title><rect x="10.3551%" y="773" width="0.0306%" height="15" fill="rgb(229,154,42)" fg:x="27708" fg:w="82"/><text x="10.6051%" y="783.50"></text></g><g><title>PhaseCFG::create_loop_tree (30 samples, 0.01%)</title><rect x="10.3745%" y="757" width="0.0112%" height="15" fill="rgb(228,114,26)" fg:x="27760" fg:w="30"/><text x="10.6245%" y="767.50"></text></g><g><title>PhaseCFG::call_catch_cleanup (34 samples, 0.01%)</title><rect x="10.5554%" y="757" width="0.0127%" height="15" fill="rgb(208,144,1)" fg:x="28244" fg:w="34"/><text x="10.8054%" y="767.50"></text></g><g><title>PhaseCFG::implicit_null_check (75 samples, 0.03%)</title><rect x="10.5681%" y="757" width="0.0280%" height="15" fill="rgb(239,112,37)" fg:x="28278" fg:w="75"/><text x="10.8181%" y="767.50"></text></g><g><title>PhaseCFG::replace_block_proj_ctrl (49 samples, 0.02%)</title><rect x="10.5977%" y="757" width="0.0183%" height="15" fill="rgb(210,96,50)" fg:x="28357" fg:w="49"/><text x="10.8477%" y="767.50"></text></g><g><title>Node_Backward_Iterator::next (322 samples, 0.12%)</title><rect x="10.6717%" y="741" width="0.1203%" height="15" fill="rgb(222,178,2)" fg:x="28555" fg:w="322"/><text x="10.9217%" y="751.50"></text></g><g><title>PhaseCFG::hoist_to_cheaper_block (175 samples, 0.07%)</title><rect x="10.7920%" y="741" width="0.0654%" height="15" fill="rgb(226,74,18)" fg:x="28877" fg:w="175"/><text x="11.0420%" y="751.50"></text></g><g><title>MachNode::adr_type (45 samples, 0.02%)</title><rect x="10.9086%" y="725" width="0.0168%" height="15" fill="rgb(225,67,54)" fg:x="29189" fg:w="45"/><text x="11.1586%" y="735.50"></text></g><g><title>PhaseCFG::insert_anti_dependences (221 samples, 0.08%)</title><rect x="10.8574%" y="741" width="0.0826%" height="15" fill="rgb(251,92,32)" fg:x="29052" fg:w="221"/><text x="11.1074%" y="751.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (89 samples, 0.03%)</title><rect x="10.9400%" y="741" width="0.0333%" height="15" fill="rgb(228,149,22)" fg:x="29273" fg:w="89"/><text x="11.1900%" y="751.50"></text></g><g><title>Node_Array::insert (42 samples, 0.02%)</title><rect x="10.9576%" y="725" width="0.0157%" height="15" fill="rgb(243,54,13)" fg:x="29320" fg:w="42"/><text x="11.2076%" y="735.50"></text></g><g><title>PhaseCFG::schedule_late (959 samples, 0.36%)</title><rect x="10.6160%" y="757" width="0.3584%" height="15" fill="rgb(243,180,28)" fg:x="28406" fg:w="959"/><text x="10.8660%" y="767.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (84 samples, 0.03%)</title><rect x="11.1100%" y="741" width="0.0314%" height="15" fill="rgb(208,167,24)" fg:x="29728" fg:w="84"/><text x="11.3600%" y="751.50"></text></g><g><title>PhaseCFG::needed_for_next_call (35 samples, 0.01%)</title><rect x="11.1414%" y="741" width="0.0131%" height="15" fill="rgb(245,73,45)" fg:x="29812" fg:w="35"/><text x="11.3914%" y="751.50"></text></g><g><title>PhaseCFG::adjust_register_pressure (30 samples, 0.01%)</title><rect x="11.1889%" y="725" width="0.0112%" height="15" fill="rgb(237,203,48)" fg:x="29939" fg:w="30"/><text x="11.4389%" y="735.50"></text></g><g><title>PhaseCFG::select (127 samples, 0.05%)</title><rect x="11.1560%" y="741" width="0.0475%" height="15" fill="rgb(211,197,16)" fg:x="29851" fg:w="127"/><text x="11.4060%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (28 samples, 0.01%)</title><rect x="11.2087%" y="725" width="0.0105%" height="15" fill="rgb(243,99,51)" fg:x="29992" fg:w="28"/><text x="11.4587%" y="735.50"></text></g><g><title>PhaseChaitin::compute_entry_block_pressure (72 samples, 0.03%)</title><rect x="11.2035%" y="741" width="0.0269%" height="15" fill="rgb(215,123,29)" fg:x="29978" fg:w="72"/><text x="11.4535%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (30 samples, 0.01%)</title><rect x="11.2192%" y="725" width="0.0112%" height="15" fill="rgb(239,186,37)" fg:x="30020" fg:w="30"/><text x="11.4692%" y="735.50"></text></g><g><title>PhaseChaitin::compute_exit_block_pressure (75 samples, 0.03%)</title><rect x="11.2304%" y="741" width="0.0280%" height="15" fill="rgb(252,136,39)" fg:x="30050" fg:w="75"/><text x="11.4804%" y="751.50"></text></g><g><title>PhaseCFG::schedule_local (770 samples, 0.29%)</title><rect x="10.9744%" y="757" width="0.2878%" height="15" fill="rgb(223,213,32)" fg:x="29365" fg:w="770"/><text x="11.2244%" y="767.50"></text></g><g><title>PhaseCFG::schedule_node_into_block (30 samples, 0.01%)</title><rect x="11.2621%" y="757" width="0.0112%" height="15" fill="rgb(233,115,5)" fg:x="30135" fg:w="30"/><text x="11.5121%" y="767.50"></text></g><g><title>RegMask::Size (145 samples, 0.05%)</title><rect x="11.4094%" y="741" width="0.0542%" height="15" fill="rgb(207,226,44)" fg:x="30529" fg:w="145"/><text x="11.6594%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (570 samples, 0.21%)</title><rect x="11.2801%" y="757" width="0.2130%" height="15" fill="rgb(208,126,0)" fg:x="30183" fg:w="570"/><text x="11.5301%" y="767.50"></text></g><g><title>PhaseChaitin::mark_ssa (110 samples, 0.04%)</title><rect x="11.4931%" y="757" width="0.0411%" height="15" fill="rgb(244,66,21)" fg:x="30753" fg:w="110"/><text x="11.7431%" y="767.50"></text></g><g><title>IndexSet::initialize (139 samples, 0.05%)</title><rect x="11.5563%" y="741" width="0.0519%" height="15" fill="rgb(222,97,12)" fg:x="30922" fg:w="139"/><text x="11.8063%" y="751.50"></text></g><g><title>PhaseIFG::init (236 samples, 0.09%)</title><rect x="11.5342%" y="757" width="0.0882%" height="15" fill="rgb(219,213,19)" fg:x="30863" fg:w="236"/><text x="11.7842%" y="767.50"></text></g><g><title>[libc-2.31.so] (38 samples, 0.01%)</title><rect x="11.6082%" y="741" width="0.0142%" height="15" fill="rgb(252,169,30)" fg:x="31061" fg:w="38"/><text x="11.8582%" y="751.50"></text></g><g><title>IndexSet::initialize (71 samples, 0.03%)</title><rect x="11.7450%" y="741" width="0.0265%" height="15" fill="rgb(206,32,51)" fg:x="31427" fg:w="71"/><text x="11.9950%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (49 samples, 0.02%)</title><rect x="11.8104%" y="725" width="0.0183%" height="15" fill="rgb(250,172,42)" fg:x="31602" fg:w="49"/><text x="12.0604%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (84 samples, 0.03%)</title><rect x="11.8291%" y="725" width="0.0314%" height="15" fill="rgb(209,34,43)" fg:x="31652" fg:w="84"/><text x="12.0791%" y="735.50"></text></g><g><title>PhaseLive::add_livein (238 samples, 0.09%)</title><rect x="11.7719%" y="741" width="0.0889%" height="15" fill="rgb(223,11,35)" fg:x="31499" fg:w="238"/><text x="12.0219%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (90 samples, 0.03%)</title><rect x="11.9632%" y="725" width="0.0336%" height="15" fill="rgb(251,219,26)" fg:x="32011" fg:w="90"/><text x="12.2132%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (153 samples, 0.06%)</title><rect x="12.0062%" y="725" width="0.0572%" height="15" fill="rgb(231,119,3)" fg:x="32126" fg:w="153"/><text x="12.2562%" y="735.50"></text></g><g><title>PhaseLive::add_liveout (552 samples, 0.21%)</title><rect x="11.8608%" y="741" width="0.2063%" height="15" fill="rgb(216,97,11)" fg:x="31737" fg:w="552"/><text x="12.1108%" y="751.50"></text></g><g><title>PhaseLive::compute (1,194 samples, 0.45%)</title><rect x="11.6232%" y="757" width="0.4462%" height="15" fill="rgb(223,59,9)" fg:x="31101" fg:w="1194"/><text x="11.8732%" y="767.50"></text></g><g><title>PhaseCFG::global_code_motion (4,532 samples, 1.69%)</title><rect x="10.3858%" y="773" width="1.6937%" height="15" fill="rgb(233,93,31)" fg:x="27790" fg:w="4532"/><text x="10.6358%" y="783.50"></text></g><g><title>PhaseCFG::do_global_code_motion (4,729 samples, 1.77%)</title><rect x="10.3133%" y="789" width="1.7673%" height="15" fill="rgb(239,81,33)" fg:x="27596" fg:w="4729"/><text x="10.5633%" y="799.50"></text></g><g><title>Block::is_Empty (31 samples, 0.01%)</title><rect x="12.1112%" y="773" width="0.0116%" height="15" fill="rgb(213,120,34)" fg:x="32407" fg:w="31"/><text x="12.3612%" y="783.50"></text></g><g><title>PhaseCFG::remove_empty_blocks (92 samples, 0.03%)</title><rect x="12.0896%" y="789" width="0.0344%" height="15" fill="rgb(243,49,53)" fg:x="32349" fg:w="92"/><text x="12.3396%" y="799.50"></text></g><g><title>PhaseChaitin::PhaseChaitin (28 samples, 0.01%)</title><rect x="12.1239%" y="789" width="0.0105%" height="15" fill="rgb(247,216,33)" fg:x="32441" fg:w="28"/><text x="12.3739%" y="799.50"></text></g><g><title>PhaseAggressiveCoalesce::insert_copies (1,374 samples, 0.51%)</title><rect x="12.2006%" y="773" width="0.5135%" height="15" fill="rgb(226,26,14)" fg:x="32646" fg:w="1374"/><text x="12.4506%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (383 samples, 0.14%)</title><rect x="13.0179%" y="757" width="0.1431%" height="15" fill="rgb(215,49,53)" fg:x="34833" fg:w="383"/><text x="13.2679%" y="767.50"></text></g><g><title>RegMask::find_first_set (58 samples, 0.02%)</title><rect x="13.2137%" y="741" width="0.0217%" height="15" fill="rgb(245,162,40)" fg:x="35357" fg:w="58"/><text x="13.4637%" y="751.50"></text></g><g><title>PhaseChaitin::bias_color (216 samples, 0.08%)</title><rect x="13.1610%" y="757" width="0.0807%" height="15" fill="rgb(229,68,17)" fg:x="35216" fg:w="216"/><text x="13.4110%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (66 samples, 0.02%)</title><rect x="13.4081%" y="741" width="0.0247%" height="15" fill="rgb(213,182,10)" fg:x="35877" fg:w="66"/><text x="13.6581%" y="751.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (116 samples, 0.04%)</title><rect x="13.4327%" y="741" width="0.0434%" height="15" fill="rgb(245,125,30)" fg:x="35943" fg:w="116"/><text x="13.6827%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (504 samples, 0.19%)</title><rect x="13.4761%" y="741" width="0.1884%" height="15" fill="rgb(232,202,2)" fg:x="36059" fg:w="504"/><text x="13.7261%" y="751.50"></text></g><g><title>PhaseIFG::re_insert (1,141 samples, 0.43%)</title><rect x="13.2462%" y="757" width="0.4264%" height="15" fill="rgb(237,140,51)" fg:x="35444" fg:w="1141"/><text x="13.4962%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (208 samples, 0.08%)</title><rect x="13.6726%" y="757" width="0.0777%" height="15" fill="rgb(236,157,25)" fg:x="36585" fg:w="208"/><text x="13.9226%" y="767.50"></text></g><g><title>PhaseChaitin::Select (2,780 samples, 1.04%)</title><rect x="12.7140%" y="773" width="1.0389%" height="15" fill="rgb(219,209,0)" fg:x="34020" fg:w="2780"/><text x="12.9640%" y="783.50"></text></g><g><title>IndexSetIterator::advance_and_next (411 samples, 0.15%)</title><rect x="13.9010%" y="757" width="0.1536%" height="15" fill="rgb(240,116,54)" fg:x="37196" fg:w="411"/><text x="14.1510%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (86 samples, 0.03%)</title><rect x="14.2751%" y="741" width="0.0321%" height="15" fill="rgb(216,10,36)" fg:x="38197" fg:w="86"/><text x="14.5251%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (551 samples, 0.21%)</title><rect x="14.3072%" y="741" width="0.2059%" height="15" fill="rgb(222,72,44)" fg:x="38283" fg:w="551"/><text x="14.5572%" y="751.50"></text></g><g><title>PhaseIFG::remove_node (1,230 samples, 0.46%)</title><rect x="14.0546%" y="757" width="0.4597%" height="15" fill="rgb(232,159,9)" fg:x="37607" fg:w="1230"/><text x="14.3046%" y="767.50"></text></g><g><title>PhaseChaitin::Simplify (2,039 samples, 0.76%)</title><rect x="13.7530%" y="773" width="0.7620%" height="15" fill="rgb(210,39,32)" fg:x="36800" fg:w="2039"/><text x="14.0030%" y="783.50"></text></g><g><title>CProjNode::is_block_proj (31 samples, 0.01%)</title><rect x="15.7618%" y="757" width="0.0116%" height="15" fill="rgb(216,194,45)" fg:x="42175" fg:w="31"/><text x="16.0118%" y="767.50"></text></g><g><title>MachNode::ideal_reg (37 samples, 0.01%)</title><rect x="15.8544%" y="741" width="0.0138%" height="15" fill="rgb(218,18,35)" fg:x="42423" fg:w="37"/><text x="16.1044%" y="751.50"></text></g><g><title>MachNode::rematerialize (214 samples, 0.08%)</title><rect x="15.7932%" y="757" width="0.0800%" height="15" fill="rgb(207,83,51)" fg:x="42259" fg:w="214"/><text x="16.0432%" y="767.50"></text></g><g><title>Node::out_grow (30 samples, 0.01%)</title><rect x="15.8847%" y="757" width="0.0112%" height="15" fill="rgb(225,63,43)" fg:x="42504" fg:w="30"/><text x="16.1347%" y="767.50"></text></g><g><title>Node::rematerialize (202 samples, 0.08%)</title><rect x="15.8959%" y="757" width="0.0755%" height="15" fill="rgb(207,57,36)" fg:x="42534" fg:w="202"/><text x="16.1459%" y="767.50"></text></g><g><title>Node::replace_by (31 samples, 0.01%)</title><rect x="15.9714%" y="757" width="0.0116%" height="15" fill="rgb(216,99,33)" fg:x="42736" fg:w="31"/><text x="16.2214%" y="767.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (30 samples, 0.01%)</title><rect x="16.0058%" y="741" width="0.0112%" height="15" fill="rgb(225,42,16)" fg:x="42828" fg:w="30"/><text x="16.2558%" y="751.50"></text></g><g><title>PhaseChaitin::split_DEF (44 samples, 0.02%)</title><rect x="16.0047%" y="757" width="0.0164%" height="15" fill="rgb(220,201,45)" fg:x="42825" fg:w="44"/><text x="16.2547%" y="767.50"></text></g><g><title>PhaseChaitin::split_Rematerialize (44 samples, 0.02%)</title><rect x="16.0211%" y="757" width="0.0164%" height="15" fill="rgb(225,33,4)" fg:x="42869" fg:w="44"/><text x="16.2711%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (48 samples, 0.02%)</title><rect x="16.0798%" y="725" width="0.0179%" height="15" fill="rgb(224,33,50)" fg:x="43026" fg:w="48"/><text x="16.3298%" y="735.50"></text></g><g><title>PhaseChaitin::get_spillcopy_wide (101 samples, 0.04%)</title><rect x="16.0630%" y="741" width="0.0377%" height="15" fill="rgb(246,198,51)" fg:x="42981" fg:w="101"/><text x="16.3130%" y="751.50"></text></g><g><title>PhaseChaitin::split_USE (190 samples, 0.07%)</title><rect x="16.0376%" y="757" width="0.0710%" height="15" fill="rgb(205,22,4)" fg:x="42913" fg:w="190"/><text x="16.2876%" y="767.50"></text></g><g><title>RegMask::Size (40 samples, 0.01%)</title><rect x="16.1131%" y="757" width="0.0149%" height="15" fill="rgb(206,3,8)" fg:x="43115" fg:w="40"/><text x="16.3631%" y="767.50"></text></g><g><title>PhaseChaitin::Split (4,372 samples, 1.63%)</title><rect x="14.5150%" y="773" width="1.6339%" height="15" fill="rgb(251,23,15)" fg:x="38839" fg:w="4372"/><text x="14.7650%" y="783.50"></text></g><g><title>__tls_get_addr (42 samples, 0.02%)</title><rect x="16.6822%" y="741" width="0.0157%" height="15" fill="rgb(252,88,28)" fg:x="44638" fg:w="42"/><text x="16.9322%" y="751.50"></text></g><g><title>IndexSet::IndexSet (367 samples, 0.14%)</title><rect x="16.5619%" y="757" width="0.1372%" height="15" fill="rgb(212,127,14)" fg:x="44316" fg:w="367"/><text x="16.8119%" y="767.50"></text></g><g><title>MachNode::rematerialize (84 samples, 0.03%)</title><rect x="16.7058%" y="757" width="0.0314%" height="15" fill="rgb(247,145,37)" fg:x="44701" fg:w="84"/><text x="16.9558%" y="767.50"></text></g><g><title>IndexSet::alloc_block_containing (51 samples, 0.02%)</title><rect x="16.9607%" y="741" width="0.0191%" height="15" fill="rgb(209,117,53)" fg:x="45383" fg:w="51"/><text x="17.2107%" y="751.50"></text></g><g><title>JVMState::debug_start (52 samples, 0.02%)</title><rect x="16.9797%" y="741" width="0.0194%" height="15" fill="rgb(212,90,42)" fg:x="45434" fg:w="52"/><text x="17.2297%" y="751.50"></text></g><g><title>MachNode::rematerialize (109 samples, 0.04%)</title><rect x="17.0007%" y="741" width="0.0407%" height="15" fill="rgb(218,164,37)" fg:x="45490" fg:w="109"/><text x="17.2507%" y="751.50"></text></g><g><title>PhaseChaitin::raise_pressure (203 samples, 0.08%)</title><rect x="17.0496%" y="741" width="0.0759%" height="15" fill="rgb(246,65,34)" fg:x="45621" fg:w="203"/><text x="17.2996%" y="751.50"></text></g><g><title>RegMask::is_UP (100 samples, 0.04%)</title><rect x="17.0881%" y="725" width="0.0374%" height="15" fill="rgb(231,100,33)" fg:x="45724" fg:w="100"/><text x="17.3381%" y="735.50"></text></g><g><title>PhaseChaitin::add_input_to_liveout (1,023 samples, 0.38%)</title><rect x="16.7458%" y="757" width="0.3823%" height="15" fill="rgb(228,126,14)" fg:x="44808" fg:w="1023"/><text x="16.9958%" y="767.50"></text></g><g><title>PhaseChaitin::adjust_high_pressure_index (49 samples, 0.02%)</title><rect x="17.1281%" y="757" width="0.0183%" height="15" fill="rgb(215,173,21)" fg:x="45831" fg:w="49"/><text x="17.3781%" y="767.50"></text></g><g><title>PhaseChaitin::check_for_high_pressure_transition_at_fatproj (90 samples, 0.03%)</title><rect x="17.1464%" y="757" width="0.0336%" height="15" fill="rgb(210,6,40)" fg:x="45880" fg:w="90"/><text x="17.3964%" y="767.50"></text></g><g><title>RegMask::Size (74 samples, 0.03%)</title><rect x="17.1524%" y="741" width="0.0277%" height="15" fill="rgb(212,48,18)" fg:x="45896" fg:w="74"/><text x="17.4024%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (202 samples, 0.08%)</title><rect x="17.3019%" y="741" width="0.0755%" height="15" fill="rgb(230,214,11)" fg:x="46296" fg:w="202"/><text x="17.5519%" y="751.50"></text></g><g><title>PhaseChaitin::compute_initial_block_pressure (626 samples, 0.23%)</title><rect x="17.1800%" y="757" width="0.2340%" height="15" fill="rgb(254,105,39)" fg:x="45970" fg:w="626"/><text x="17.4300%" y="767.50"></text></g><g><title>RegMask::is_UP (98 samples, 0.04%)</title><rect x="17.3774%" y="741" width="0.0366%" height="15" fill="rgb(245,158,5)" fg:x="46498" fg:w="98"/><text x="17.6274%" y="751.50"></text></g><g><title>__tls_get_addr (56 samples, 0.02%)</title><rect x="18.3629%" y="725" width="0.0209%" height="15" fill="rgb(249,208,11)" fg:x="49135" fg:w="56"/><text x="18.6129%" y="735.50"></text></g><g><title>update_get_addr (38 samples, 0.01%)</title><rect x="18.3696%" y="709" width="0.0142%" height="15" fill="rgb(210,39,28)" fg:x="49153" fg:w="38"/><text x="18.6196%" y="719.50"></text></g><g><title>_dl_update_slotinfo (27 samples, 0.01%)</title><rect x="18.3737%" y="693" width="0.0101%" height="15" fill="rgb(211,56,53)" fg:x="49164" fg:w="27"/><text x="18.6237%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (176 samples, 0.07%)</title><rect x="18.3199%" y="741" width="0.0658%" height="15" fill="rgb(226,201,30)" fg:x="49020" fg:w="176"/><text x="18.5699%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (1,113 samples, 0.42%)</title><rect x="18.3928%" y="741" width="0.4160%" height="15" fill="rgb(239,101,34)" fg:x="49215" fg:w="1113"/><text x="18.6428%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (3,739 samples, 1.40%)</title><rect x="17.4140%" y="757" width="1.3973%" height="15" fill="rgb(226,209,5)" fg:x="46596" fg:w="3739"/><text x="17.6640%" y="767.50"></text></g><g><title>PhaseChaitin::lower_pressure (120 samples, 0.04%)</title><rect x="18.8113%" y="757" width="0.0448%" height="15" fill="rgb(250,105,47)" fg:x="50335" fg:w="120"/><text x="19.0613%" y="767.50"></text></g><g><title>RegMask::is_UP (42 samples, 0.02%)</title><rect x="18.8405%" y="741" width="0.0157%" height="15" fill="rgb(230,72,3)" fg:x="50413" fg:w="42"/><text x="19.0905%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (265 samples, 0.10%)</title><rect x="19.0883%" y="741" width="0.0990%" height="15" fill="rgb(232,218,39)" fg:x="51076" fg:w="265"/><text x="19.3383%" y="751.50"></text></g><g><title>RegMask::Size (408 samples, 0.15%)</title><rect x="19.1873%" y="741" width="0.1525%" height="15" fill="rgb(248,166,6)" fg:x="51341" fg:w="408"/><text x="19.4373%" y="751.50"></text></g><g><title>RegMask::smear_to_sets (872 samples, 0.33%)</title><rect x="19.3398%" y="741" width="0.3259%" height="15" fill="rgb(247,89,20)" fg:x="51749" fg:w="872"/><text x="19.5898%" y="751.50"></text></g><g><title>PhaseChaitin::remove_bound_register_from_interfering_live_ranges (2,186 samples, 0.82%)</title><rect x="18.8562%" y="757" width="0.8170%" height="15" fill="rgb(248,130,54)" fg:x="50455" fg:w="2186"/><text x="19.1062%" y="767.50"></text></g><g><title>PhaseChaitin::remove_node_if_not_used (42 samples, 0.02%)</title><rect x="19.6731%" y="757" width="0.0157%" height="15" fill="rgb(234,196,4)" fg:x="52641" fg:w="42"/><text x="19.9231%" y="767.50"></text></g><g><title>RegMask::smear_to_sets (52 samples, 0.02%)</title><rect x="19.6956%" y="757" width="0.0194%" height="15" fill="rgb(250,143,31)" fg:x="52701" fg:w="52"/><text x="19.9456%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_physical (9,551 samples, 3.57%)</title><rect x="16.1489%" y="773" width="3.5694%" height="15" fill="rgb(211,110,34)" fg:x="43211" fg:w="9551"/><text x="16.3989%" y="783.50">Phas..</text></g><g><title>IndexSet::alloc_block_containing (27 samples, 0.01%)</title><rect x="19.9086%" y="741" width="0.0101%" height="15" fill="rgb(215,124,48)" fg:x="53271" fg:w="27"/><text x="20.1586%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (95 samples, 0.04%)</title><rect x="19.9198%" y="741" width="0.0355%" height="15" fill="rgb(216,46,13)" fg:x="53301" fg:w="95"/><text x="20.1698%" y="751.50"></text></g><g><title>PhaseChaitin::interfere_with_live (449 samples, 0.17%)</title><rect x="19.7879%" y="757" width="0.1678%" height="15" fill="rgb(205,184,25)" fg:x="52948" fg:w="449"/><text x="20.0379%" y="767.50"></text></g><g><title>PhaseChaitin::build_ifg_virtual (640 samples, 0.24%)</title><rect x="19.7184%" y="773" width="0.2392%" height="15" fill="rgb(228,1,10)" fg:x="52762" fg:w="640"/><text x="19.9684%" y="783.50"></text></g><g><title>PhaseChaitin::cache_lrg_info (136 samples, 0.05%)</title><rect x="19.9575%" y="773" width="0.0508%" height="15" fill="rgb(213,116,27)" fg:x="53402" fg:w="136"/><text x="20.2075%" y="783.50"></text></g><g><title>find_hihghest_bit (44 samples, 0.02%)</title><rect x="19.9919%" y="757" width="0.0164%" height="15" fill="rgb(241,95,50)" fg:x="53494" fg:w="44"/><text x="20.2419%" y="767.50"></text></g><g><title>PhaseChaitin::compact (57 samples, 0.02%)</title><rect x="20.0084%" y="773" width="0.0213%" height="15" fill="rgb(238,48,32)" fg:x="53538" fg:w="57"/><text x="20.2584%" y="783.50"></text></g><g><title>PhaseChaitin::de_ssa (113 samples, 0.04%)</title><rect x="20.0297%" y="773" width="0.0422%" height="15" fill="rgb(235,113,49)" fg:x="53595" fg:w="113"/><text x="20.2797%" y="783.50"></text></g><g><title>PhaseChaitin::fixup_spills (76 samples, 0.03%)</title><rect x="20.0738%" y="773" width="0.0284%" height="15" fill="rgb(205,127,43)" fg:x="53713" fg:w="76"/><text x="20.3238%" y="783.50"></text></g><g><title>__tls_get_addr (38 samples, 0.01%)</title><rect x="20.9793%" y="741" width="0.0142%" height="15" fill="rgb(250,162,2)" fg:x="56136" fg:w="38"/><text x="21.2293%" y="751.50"></text></g><g><title>MachCallJavaNode::in_RegMask (127 samples, 0.05%)</title><rect x="20.9472%" y="757" width="0.0475%" height="15" fill="rgb(220,13,41)" fg:x="56050" fg:w="127"/><text x="21.1972%" y="767.50"></text></g><g><title>MachNode::ideal_reg (100 samples, 0.04%)</title><rect x="20.9965%" y="757" width="0.0374%" height="15" fill="rgb(249,221,25)" fg:x="56182" fg:w="100"/><text x="21.2465%" y="767.50"></text></g><g><title>MachNode::in_RegMask (85 samples, 0.03%)</title><rect x="21.0339%" y="757" width="0.0318%" height="15" fill="rgb(215,208,19)" fg:x="56282" fg:w="85"/><text x="21.2839%" y="767.50"></text></g><g><title>MachProjNode::bottom_type (38 samples, 0.01%)</title><rect x="21.0679%" y="757" width="0.0142%" height="15" fill="rgb(236,175,2)" fg:x="56373" fg:w="38"/><text x="21.3179%" y="767.50"></text></g><g><title>PhiNode::in_RegMask (32 samples, 0.01%)</title><rect x="21.0970%" y="757" width="0.0120%" height="15" fill="rgb(241,52,2)" fg:x="56451" fg:w="32"/><text x="21.3470%" y="767.50"></text></g><g><title>RegMask::Size (1,548 samples, 0.58%)</title><rect x="21.1172%" y="757" width="0.5785%" height="15" fill="rgb(248,140,14)" fg:x="56505" fg:w="1548"/><text x="21.3672%" y="767.50"></text></g><g><title>RegMask::clear_to_sets (258 samples, 0.10%)</title><rect x="21.6957%" y="757" width="0.0964%" height="15" fill="rgb(253,22,42)" fg:x="58053" fg:w="258"/><text x="21.9457%" y="767.50"></text></g><g><title>RegMask::is_aligned_pairs (115 samples, 0.04%)</title><rect x="21.7922%" y="757" width="0.0430%" height="15" fill="rgb(234,61,47)" fg:x="58311" fg:w="115"/><text x="22.0422%" y="767.50"></text></g><g><title>RegMask::is_bound1 (183 samples, 0.07%)</title><rect x="21.8351%" y="757" width="0.0684%" height="15" fill="rgb(208,226,15)" fg:x="58426" fg:w="183"/><text x="22.0851%" y="767.50"></text></g><g><title>RegMask::is_bound_pair (107 samples, 0.04%)</title><rect x="21.9035%" y="757" width="0.0400%" height="15" fill="rgb(217,221,4)" fg:x="58609" fg:w="107"/><text x="22.1535%" y="767.50"></text></g><g><title>RegMask::is_vector (41 samples, 0.02%)</title><rect x="21.9435%" y="757" width="0.0153%" height="15" fill="rgb(212,174,34)" fg:x="58716" fg:w="41"/><text x="22.1935%" y="767.50"></text></g><g><title>Type::hashcons (43 samples, 0.02%)</title><rect x="21.9592%" y="757" width="0.0161%" height="15" fill="rgb(253,83,4)" fg:x="58758" fg:w="43"/><text x="22.2092%" y="767.50"></text></g><g><title>Dict::Insert (43 samples, 0.02%)</title><rect x="21.9592%" y="741" width="0.0161%" height="15" fill="rgb(250,195,49)" fg:x="58758" fg:w="43"/><text x="22.2092%" y="751.50"></text></g><g><title>PhaseChaitin::gather_lrg_masks (5,123 samples, 1.91%)</title><rect x="20.1022%" y="773" width="1.9146%" height="15" fill="rgb(241,192,25)" fg:x="53789" fg:w="5123"/><text x="20.3522%" y="783.50">P..</text></g><g><title>PhaseChaitin::merge_multidefs (662 samples, 0.25%)</title><rect x="22.0168%" y="773" width="0.2474%" height="15" fill="rgb(208,124,10)" fg:x="58912" fg:w="662"/><text x="22.2668%" y="783.50"></text></g><g><title>Node::replace_by (52 samples, 0.02%)</title><rect x="23.1361%" y="757" width="0.0194%" height="15" fill="rgb(222,33,0)" fg:x="61907" fg:w="52"/><text x="23.3861%" y="767.50"></text></g><g><title>RegMask::Size (40 samples, 0.01%)</title><rect x="24.2079%" y="725" width="0.0149%" height="15" fill="rgb(234,209,28)" fg:x="64775" fg:w="40"/><text x="24.4579%" y="735.50"></text></g><g><title>PhaseChaitin::use_prior_register (109 samples, 0.04%)</title><rect x="24.1866%" y="741" width="0.0407%" height="15" fill="rgb(224,11,23)" fg:x="64718" fg:w="109"/><text x="24.4366%" y="751.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (38 samples, 0.01%)</title><rect x="24.2273%" y="741" width="0.0142%" height="15" fill="rgb(232,99,1)" fg:x="64827" fg:w="38"/><text x="24.4773%" y="751.50"></text></g><g><title>PhaseChaitin::elide_copy (2,897 samples, 1.08%)</title><rect x="23.1645%" y="757" width="1.0827%" height="15" fill="rgb(237,95,45)" fg:x="61983" fg:w="2897"/><text x="23.4145%" y="767.50"></text></g><g><title>PhaseChaitin::yank_if_dead_recurse (48 samples, 0.02%)</title><rect x="24.2520%" y="757" width="0.0179%" height="15" fill="rgb(208,109,11)" fg:x="64893" fg:w="48"/><text x="24.5020%" y="767.50"></text></g><g><title>[libc-2.31.so] (69 samples, 0.03%)</title><rect x="24.2725%" y="757" width="0.0258%" height="15" fill="rgb(216,190,48)" fg:x="64948" fg:w="69"/><text x="24.5225%" y="767.50"></text></g><g><title>find_lowest_bit (441 samples, 0.16%)</title><rect x="24.3024%" y="757" width="0.1648%" height="15" fill="rgb(251,171,36)" fg:x="65028" fg:w="441"/><text x="24.5524%" y="767.50"></text></g><g><title>PhaseChaitin::post_allocate_copy_removal (5,896 samples, 2.20%)</title><rect x="22.2645%" y="773" width="2.2035%" height="15" fill="rgb(230,62,22)" fg:x="59575" fg:w="5896"/><text x="22.5145%" y="783.50">P..</text></g><g><title>IndexSet::IndexSet (39 samples, 0.01%)</title><rect x="24.5349%" y="757" width="0.0146%" height="15" fill="rgb(225,114,35)" fg:x="65650" fg:w="39"/><text x="24.7849%" y="767.50"></text></g><g><title>PhaseChaitin::stretch_base_pointer_live_ranges (260 samples, 0.10%)</title><rect x="24.4684%" y="773" width="0.0972%" height="15" fill="rgb(215,118,42)" fg:x="65472" fg:w="260"/><text x="24.7184%" y="783.50"></text></g><g><title>PhaseIFG::Union (48 samples, 0.02%)</title><rect x="24.6272%" y="725" width="0.0179%" height="15" fill="rgb(243,119,21)" fg:x="65897" fg:w="48"/><text x="24.8772%" y="735.50"></text></g><g><title>PhaseCoalesce::combine_these_two (72 samples, 0.03%)</title><rect x="24.6190%" y="741" width="0.0269%" height="15" fill="rgb(252,177,53)" fg:x="65875" fg:w="72"/><text x="24.8690%" y="751.50"></text></g><g><title>PhaseAggressiveCoalesce::coalesce (209 samples, 0.08%)</title><rect x="24.5685%" y="757" width="0.0781%" height="15" fill="rgb(237,209,29)" fg:x="65740" fg:w="209"/><text x="24.8185%" y="767.50"></text></g><g><title>PhaseCFG::is_uncommon (173 samples, 0.06%)</title><rect x="24.6743%" y="741" width="0.0647%" height="15" fill="rgb(212,65,23)" fg:x="66023" fg:w="173"/><text x="24.9243%" y="751.50"></text></g><g><title>Block::has_uncommon_code (36 samples, 0.01%)</title><rect x="24.7255%" y="725" width="0.0135%" height="15" fill="rgb(230,222,46)" fg:x="66160" fg:w="36"/><text x="24.9755%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (67 samples, 0.03%)</title><rect x="24.9109%" y="709" width="0.0250%" height="15" fill="rgb(215,135,32)" fg:x="66656" fg:w="67"/><text x="25.1609%" y="719.50"></text></g><g><title>IndexSet::lrg_union (471 samples, 0.18%)</title><rect x="24.7666%" y="725" width="0.1760%" height="15" fill="rgb(246,101,22)" fg:x="66270" fg:w="471"/><text x="25.0166%" y="735.50"></text></g><g><title>IndexSetIterator::advance_and_next (43 samples, 0.02%)</title><rect x="25.1108%" y="709" width="0.0161%" height="15" fill="rgb(206,107,13)" fg:x="67191" fg:w="43"/><text x="25.3608%" y="719.50"></text></g><g><title>PhaseConservativeCoalesce::update_ifg (474 samples, 0.18%)</title><rect x="24.9520%" y="725" width="0.1771%" height="15" fill="rgb(250,100,44)" fg:x="66766" fg:w="474"/><text x="25.2020%" y="735.50"></text></g><g><title>PhaseIFG::effective_degree (119 samples, 0.04%)</title><rect x="25.1291%" y="725" width="0.0445%" height="15" fill="rgb(231,147,38)" fg:x="67240" fg:w="119"/><text x="25.3791%" y="735.50"></text></g><g><title>PhaseConservativeCoalesce::copy_copy (1,192 samples, 0.45%)</title><rect x="24.7390%" y="741" width="0.4455%" height="15" fill="rgb(229,8,40)" fg:x="66196" fg:w="1192"/><text x="24.9890%" y="751.50"></text></g><g><title>PhaseCoalesce::coalesce_driver (1,658 samples, 0.62%)</title><rect x="24.5655%" y="773" width="0.6196%" height="15" fill="rgb(221,135,30)" fg:x="65732" fg:w="1658"/><text x="24.8155%" y="783.50"></text></g><g><title>PhaseConservativeCoalesce::coalesce (1,441 samples, 0.54%)</title><rect x="24.6466%" y="757" width="0.5385%" height="15" fill="rgb(249,193,18)" fg:x="65949" fg:w="1441"/><text x="24.8966%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (73 samples, 0.03%)</title><rect x="25.3728%" y="757" width="0.0273%" height="15" fill="rgb(209,133,39)" fg:x="67892" fg:w="73"/><text x="25.6228%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (634 samples, 0.24%)</title><rect x="25.4001%" y="757" width="0.2369%" height="15" fill="rgb(232,100,14)" fg:x="67965" fg:w="634"/><text x="25.6501%" y="767.50"></text></g><g><title>PhaseIFG::Compute_Effective_Degree (1,212 samples, 0.45%)</title><rect x="25.1852%" y="773" width="0.4530%" height="15" fill="rgb(224,185,1)" fg:x="67390" fg:w="1212"/><text x="25.4352%" y="783.50"></text></g><g><title>IndexSet::alloc_block_containing (79 samples, 0.03%)</title><rect x="25.8100%" y="757" width="0.0295%" height="15" fill="rgb(223,139,8)" fg:x="69062" fg:w="79"/><text x="26.0600%" y="767.50"></text></g><g><title>IndexSetIterator::IndexSetIterator (102 samples, 0.04%)</title><rect x="25.8396%" y="757" width="0.0381%" height="15" fill="rgb(232,213,38)" fg:x="69141" fg:w="102"/><text x="26.0896%" y="767.50"></text></g><g><title>IndexSetIterator::advance_and_next (528 samples, 0.20%)</title><rect x="25.8777%" y="757" width="0.1973%" height="15" fill="rgb(207,94,22)" fg:x="69243" fg:w="528"/><text x="26.1277%" y="767.50"></text></g><g><title>PhaseIFG::SquareUp (1,173 samples, 0.44%)</title><rect x="25.6381%" y="773" width="0.4384%" height="15" fill="rgb(219,183,54)" fg:x="68602" fg:w="1173"/><text x="25.8881%" y="783.50"></text></g><g><title>IndexSet::initialize (264 samples, 0.10%)</title><rect x="26.1333%" y="757" width="0.0987%" height="15" fill="rgb(216,185,54)" fg:x="69927" fg:w="264"/><text x="26.3833%" y="767.50"></text></g><g><title>[libc-2.31.so] (68 samples, 0.03%)</title><rect x="26.2320%" y="757" width="0.0254%" height="15" fill="rgb(254,217,39)" fg:x="70191" fg:w="68"/><text x="26.4820%" y="767.50"></text></g><g><title>PhaseIFG::init (487 samples, 0.18%)</title><rect x="26.0765%" y="773" width="0.1820%" height="15" fill="rgb(240,178,23)" fg:x="69775" fg:w="487"/><text x="26.3265%" y="783.50"></text></g><g><title>__tls_get_addr (30 samples, 0.01%)</title><rect x="26.8535%" y="741" width="0.0112%" height="15" fill="rgb(218,11,47)" fg:x="71854" fg:w="30"/><text x="27.1035%" y="751.50"></text></g><g><title>IndexSet::alloc_block_containing (97 samples, 0.04%)</title><rect x="26.8288%" y="757" width="0.0363%" height="15" fill="rgb(218,51,51)" fg:x="71788" fg:w="97"/><text x="27.0788%" y="767.50"></text></g><g><title>__tls_get_addr (31 samples, 0.01%)</title><rect x="26.8778%" y="741" width="0.0116%" height="15" fill="rgb(238,126,27)" fg:x="71919" fg:w="31"/><text x="27.1278%" y="751.50"></text></g><g><title>IndexSet::free_block (66 samples, 0.02%)</title><rect x="26.8651%" y="757" width="0.0247%" height="15" fill="rgb(249,202,22)" fg:x="71885" fg:w="66"/><text x="27.1151%" y="767.50"></text></g><g><title>IndexSet::initialize (145 samples, 0.05%)</title><rect x="26.8897%" y="757" width="0.0542%" height="15" fill="rgb(254,195,49)" fg:x="71951" fg:w="145"/><text x="27.1397%" y="767.50"></text></g><g><title>__tls_get_addr (102 samples, 0.04%)</title><rect x="27.3558%" y="725" width="0.0381%" height="15" fill="rgb(208,123,14)" fg:x="73198" fg:w="102"/><text x="27.6058%" y="735.50"></text></g><g><title>update_get_addr (75 samples, 0.03%)</title><rect x="27.3659%" y="709" width="0.0280%" height="15" fill="rgb(224,200,8)" fg:x="73225" fg:w="75"/><text x="27.6159%" y="719.50"></text></g><g><title>_dl_update_slotinfo (57 samples, 0.02%)</title><rect x="27.3726%" y="693" width="0.0213%" height="15" fill="rgb(217,61,36)" fg:x="73243" fg:w="57"/><text x="27.6226%" y="703.50"></text></g><g><title>IndexSet::alloc_block_containing (300 samples, 0.11%)</title><rect x="27.2833%" y="741" width="0.1121%" height="15" fill="rgb(206,35,45)" fg:x="73004" fg:w="300"/><text x="27.5333%" y="751.50"></text></g><g><title>IndexSet::initialize (57 samples, 0.02%)</title><rect x="27.3954%" y="741" width="0.0213%" height="15" fill="rgb(217,65,33)" fg:x="73304" fg:w="57"/><text x="27.6454%" y="751.50"></text></g><g><title>IndexSetIterator::advance_and_next (400 samples, 0.15%)</title><rect x="27.4193%" y="741" width="0.1495%" height="15" fill="rgb(222,158,48)" fg:x="73368" fg:w="400"/><text x="27.6693%" y="751.50"></text></g><g><title>PhaseLive::add_liveout (1,700 samples, 0.64%)</title><rect x="26.9454%" y="757" width="0.6353%" height="15" fill="rgb(254,2,54)" fg:x="72100" fg:w="1700"/><text x="27.1954%" y="767.50"></text></g><g><title>PhaseLive::compute (3,544 samples, 1.32%)</title><rect x="26.2593%" y="773" width="1.3245%" height="15" fill="rgb(250,143,38)" fg:x="70264" fg:w="3544"/><text x="26.5093%" y="783.50"></text></g><g><title>RegMask::Size (75 samples, 0.03%)</title><rect x="27.5890%" y="773" width="0.0280%" height="15" fill="rgb(248,25,0)" fg:x="73822" fg:w="75"/><text x="27.8390%" y="783.50"></text></g><g><title>find_lowest_bit (67 samples, 0.03%)</title><rect x="27.6301%" y="773" width="0.0250%" height="15" fill="rgb(206,152,27)" fg:x="73932" fg:w="67"/><text x="27.8801%" y="783.50"></text></g><g><title>PhaseChaitin::Register_Allocate (41,544 samples, 15.53%)</title><rect x="12.1344%" y="789" width="15.5259%" height="15" fill="rgb(240,77,30)" fg:x="32469" fg:w="41544"/><text x="12.3844%" y="799.50">PhaseChaitin::Register_A..</text></g><g><title>Compile::Code_Gen (52,744 samples, 19.71%)</title><rect x="7.9764%" y="805" width="19.7116%" height="15" fill="rgb(231,5,3)" fg:x="21343" fg:w="52744"/><text x="8.2264%" y="815.50">Compile::Code_Gen</text></g><g><title>PhasePeephole::do_transform (71 samples, 0.03%)</title><rect x="27.6615%" y="789" width="0.0265%" height="15" fill="rgb(207,226,32)" fg:x="74016" fg:w="71"/><text x="27.9115%" y="799.50"></text></g><g><title>Compile::call_generator (35 samples, 0.01%)</title><rect x="27.6944%" y="517" width="0.0131%" height="15" fill="rgb(222,207,47)" fg:x="74104" fg:w="35"/><text x="27.9444%" y="527.50"></text></g><g><title>InlineTree::ok_to_inline (28 samples, 0.01%)</title><rect x="27.6970%" y="501" width="0.0105%" height="15" fill="rgb(229,115,45)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="511.50"></text></g><g><title>ciMethod::get_flow_analysis (28 samples, 0.01%)</title><rect x="27.6970%" y="485" width="0.0105%" height="15" fill="rgb(224,191,6)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="495.50"></text></g><g><title>ciTypeFlow::do_flow (28 samples, 0.01%)</title><rect x="27.6970%" y="469" width="0.0105%" height="15" fill="rgb(230,227,24)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="479.50"></text></g><g><title>ciTypeFlow::flow_types (28 samples, 0.01%)</title><rect x="27.6970%" y="453" width="0.0105%" height="15" fill="rgb(228,80,19)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="463.50"></text></g><g><title>ciTypeFlow::df_flow_types (28 samples, 0.01%)</title><rect x="27.6970%" y="437" width="0.0105%" height="15" fill="rgb(247,229,0)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="447.50"></text></g><g><title>ciTypeFlow::flow_block (28 samples, 0.01%)</title><rect x="27.6970%" y="421" width="0.0105%" height="15" fill="rgb(237,194,15)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="431.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (28 samples, 0.01%)</title><rect x="27.6970%" y="405" width="0.0105%" height="15" fill="rgb(219,203,20)" fg:x="74111" fg:w="28"/><text x="27.9470%" y="415.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (41 samples, 0.02%)</title><rect x="27.7127%" y="309" width="0.0153%" height="15" fill="rgb(234,128,8)" fg:x="74153" fg:w="41"/><text x="27.9627%" y="319.50"></text></g><g><title>InlineTree::ok_to_inline (48 samples, 0.02%)</title><rect x="27.7104%" y="405" width="0.0179%" height="15" fill="rgb(248,202,8)" fg:x="74147" fg:w="48"/><text x="27.9604%" y="415.50"></text></g><g><title>ciMethod::get_flow_analysis (45 samples, 0.02%)</title><rect x="27.7115%" y="389" width="0.0168%" height="15" fill="rgb(206,104,37)" fg:x="74150" fg:w="45"/><text x="27.9615%" y="399.50"></text></g><g><title>ciTypeFlow::do_flow (45 samples, 0.02%)</title><rect x="27.7115%" y="373" width="0.0168%" height="15" fill="rgb(223,8,27)" fg:x="74150" fg:w="45"/><text x="27.9615%" y="383.50"></text></g><g><title>ciTypeFlow::flow_types (45 samples, 0.02%)</title><rect x="27.7115%" y="357" width="0.0168%" height="15" fill="rgb(216,217,28)" fg:x="74150" fg:w="45"/><text x="27.9615%" y="367.50"></text></g><g><title>ciTypeFlow::df_flow_types (45 samples, 0.02%)</title><rect x="27.7115%" y="341" width="0.0168%" height="15" fill="rgb(249,199,1)" fg:x="74150" fg:w="45"/><text x="27.9615%" y="351.50"></text></g><g><title>ciTypeFlow::flow_block (45 samples, 0.02%)</title><rect x="27.7115%" y="325" width="0.0168%" height="15" fill="rgb(240,85,17)" fg:x="74150" fg:w="45"/><text x="27.9615%" y="335.50"></text></g><g><title>Compile::call_generator (55 samples, 0.02%)</title><rect x="27.7082%" y="421" width="0.0206%" height="15" fill="rgb(206,108,45)" fg:x="74141" fg:w="55"/><text x="27.9582%" y="431.50"></text></g><g><title>InlineTree::ok_to_inline (33 samples, 0.01%)</title><rect x="27.7396%" y="309" width="0.0123%" height="15" fill="rgb(245,210,41)" fg:x="74225" fg:w="33"/><text x="27.9896%" y="319.50"></text></g><g><title>Compile::call_generator (40 samples, 0.01%)</title><rect x="27.7373%" y="325" width="0.0149%" height="15" fill="rgb(206,13,37)" fg:x="74219" fg:w="40"/><text x="27.9873%" y="335.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="27.8222%" y="85" width="0.0135%" height="15" fill="rgb(250,61,18)" fg:x="74446" fg:w="36"/><text x="28.0722%" y="95.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.01%)</title><rect x="27.8229%" y="69" width="0.0127%" height="15" fill="rgb(235,172,48)" fg:x="74448" fg:w="34"/><text x="28.0729%" y="79.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="27.8218%" y="101" width="0.0142%" height="15" fill="rgb(249,201,17)" fg:x="74445" fg:w="38"/><text x="28.0718%" y="111.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.02%)</title><rect x="27.8181%" y="133" width="0.0206%" height="15" fill="rgb(219,208,6)" fg:x="74435" fg:w="55"/><text x="28.0681%" y="143.50"></text></g><g><title>Parse::Parse (55 samples, 0.02%)</title><rect x="27.8181%" y="117" width="0.0206%" height="15" fill="rgb(248,31,23)" fg:x="74435" fg:w="55"/><text x="28.0681%" y="127.50"></text></g><g><title>Parse::do_call (83 samples, 0.03%)</title><rect x="27.8087%" y="149" width="0.0310%" height="15" fill="rgb(245,15,42)" fg:x="74410" fg:w="83"/><text x="28.0587%" y="159.50"></text></g><g><title>Parse::do_one_block (142 samples, 0.05%)</title><rect x="27.8054%" y="181" width="0.0531%" height="15" fill="rgb(222,217,39)" fg:x="74401" fg:w="142"/><text x="28.0554%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (138 samples, 0.05%)</title><rect x="27.8068%" y="165" width="0.0516%" height="15" fill="rgb(210,219,27)" fg:x="74405" fg:w="138"/><text x="28.0568%" y="175.50"></text></g><g><title>Parse::do_all_blocks (146 samples, 0.05%)</title><rect x="27.8050%" y="197" width="0.0546%" height="15" fill="rgb(252,166,36)" fg:x="74400" fg:w="146"/><text x="28.0550%" y="207.50"></text></g><g><title>ParseGenerator::generate (175 samples, 0.07%)</title><rect x="27.7982%" y="229" width="0.0654%" height="15" fill="rgb(245,132,34)" fg:x="74382" fg:w="175"/><text x="28.0482%" y="239.50"></text></g><g><title>Parse::Parse (175 samples, 0.07%)</title><rect x="27.7982%" y="213" width="0.0654%" height="15" fill="rgb(236,54,3)" fg:x="74382" fg:w="175"/><text x="28.0482%" y="223.50"></text></g><g><title>Parse::do_call (240 samples, 0.09%)</title><rect x="27.7818%" y="245" width="0.0897%" height="15" fill="rgb(241,173,43)" fg:x="74338" fg:w="240"/><text x="28.0318%" y="255.50"></text></g><g><title>Parse::do_field_access (39 samples, 0.01%)</title><rect x="27.8719%" y="245" width="0.0146%" height="15" fill="rgb(215,190,9)" fg:x="74579" fg:w="39"/><text x="28.1219%" y="255.50"></text></g><g><title>Parse::do_one_block (331 samples, 0.12%)</title><rect x="27.7766%" y="277" width="0.1237%" height="15" fill="rgb(242,101,16)" fg:x="74324" fg:w="331"/><text x="28.0266%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (328 samples, 0.12%)</title><rect x="27.7777%" y="261" width="0.1226%" height="15" fill="rgb(223,190,21)" fg:x="74327" fg:w="328"/><text x="28.0277%" y="271.50"></text></g><g><title>Parse::do_all_blocks (341 samples, 0.13%)</title><rect x="27.7755%" y="293" width="0.1274%" height="15" fill="rgb(215,228,25)" fg:x="74321" fg:w="341"/><text x="28.0255%" y="303.50"></text></g><g><title>ParseGenerator::generate (387 samples, 0.14%)</title><rect x="27.7657%" y="325" width="0.1446%" height="15" fill="rgb(225,36,22)" fg:x="74295" fg:w="387"/><text x="28.0157%" y="335.50"></text></g><g><title>Parse::Parse (386 samples, 0.14%)</title><rect x="27.7661%" y="309" width="0.1443%" height="15" fill="rgb(251,106,46)" fg:x="74296" fg:w="386"/><text x="28.0161%" y="319.50"></text></g><g><title>PredictedCallGenerator::generate (33 samples, 0.01%)</title><rect x="27.9104%" y="325" width="0.0123%" height="15" fill="rgb(208,90,1)" fg:x="74682" fg:w="33"/><text x="28.1604%" y="335.50"></text></g><g><title>Parse::do_call (504 samples, 0.19%)</title><rect x="27.7373%" y="341" width="0.1884%" height="15" fill="rgb(243,10,4)" fg:x="74219" fg:w="504"/><text x="27.9873%" y="351.50"></text></g><g><title>Parse::do_put_xxx (29 samples, 0.01%)</title><rect x="27.9309%" y="325" width="0.0108%" height="15" fill="rgb(212,137,27)" fg:x="74737" fg:w="29"/><text x="28.1809%" y="335.50"></text></g><g><title>Parse::do_field_access (43 samples, 0.02%)</title><rect x="27.9268%" y="341" width="0.0161%" height="15" fill="rgb(231,220,49)" fg:x="74726" fg:w="43"/><text x="28.1768%" y="351.50"></text></g><g><title>Parse::do_one_block (590 samples, 0.22%)</title><rect x="27.7325%" y="373" width="0.2205%" height="15" fill="rgb(237,96,20)" fg:x="74206" fg:w="590"/><text x="27.9825%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (589 samples, 0.22%)</title><rect x="27.7328%" y="357" width="0.2201%" height="15" fill="rgb(239,229,30)" fg:x="74207" fg:w="589"/><text x="27.9828%" y="367.50"></text></g><g><title>Parse::do_all_blocks (591 samples, 0.22%)</title><rect x="27.7325%" y="389" width="0.2209%" height="15" fill="rgb(219,65,33)" fg:x="74206" fg:w="591"/><text x="27.9825%" y="399.50"></text></g><g><title>ParseGenerator::generate (597 samples, 0.22%)</title><rect x="27.7306%" y="421" width="0.2231%" height="15" fill="rgb(243,134,7)" fg:x="74201" fg:w="597"/><text x="27.9806%" y="431.50"></text></g><g><title>Parse::Parse (597 samples, 0.22%)</title><rect x="27.7306%" y="405" width="0.2231%" height="15" fill="rgb(216,177,54)" fg:x="74201" fg:w="597"/><text x="27.9806%" y="415.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="27.9608%" y="229" width="0.0101%" height="15" fill="rgb(211,160,20)" fg:x="74817" fg:w="27"/><text x="28.2108%" y="239.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="27.9597%" y="261" width="0.0131%" height="15" fill="rgb(239,85,39)" fg:x="74814" fg:w="35"/><text x="28.2097%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.01%)</title><rect x="27.9597%" y="245" width="0.0131%" height="15" fill="rgb(232,125,22)" fg:x="74814" fg:w="35"/><text x="28.2097%" y="255.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.01%)</title><rect x="27.9597%" y="277" width="0.0135%" height="15" fill="rgb(244,57,34)" fg:x="74814" fg:w="36"/><text x="28.2097%" y="287.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="27.9590%" y="309" width="0.0146%" height="15" fill="rgb(214,203,32)" fg:x="74812" fg:w="39"/><text x="28.2090%" y="319.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="27.9590%" y="293" width="0.0146%" height="15" fill="rgb(207,58,43)" fg:x="74812" fg:w="39"/><text x="28.2090%" y="303.50"></text></g><g><title>Parse::do_call (71 samples, 0.03%)</title><rect x="27.9548%" y="325" width="0.0265%" height="15" fill="rgb(215,193,15)" fg:x="74801" fg:w="71"/><text x="28.2048%" y="335.50"></text></g><g><title>ParseGenerator::generate (84 samples, 0.03%)</title><rect x="27.9537%" y="405" width="0.0314%" height="15" fill="rgb(232,15,44)" fg:x="74798" fg:w="84"/><text x="28.2037%" y="415.50"></text></g><g><title>Parse::Parse (84 samples, 0.03%)</title><rect x="27.9537%" y="389" width="0.0314%" height="15" fill="rgb(212,3,48)" fg:x="74798" fg:w="84"/><text x="28.2037%" y="399.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.03%)</title><rect x="27.9545%" y="373" width="0.0306%" height="15" fill="rgb(218,128,7)" fg:x="74800" fg:w="82"/><text x="28.2045%" y="383.50"></text></g><g><title>Parse::do_one_block (82 samples, 0.03%)</title><rect x="27.9545%" y="357" width="0.0306%" height="15" fill="rgb(226,216,39)" fg:x="74800" fg:w="82"/><text x="28.2045%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (82 samples, 0.03%)</title><rect x="27.9545%" y="341" width="0.0306%" height="15" fill="rgb(243,47,51)" fg:x="74800" fg:w="82"/><text x="28.2045%" y="351.50"></text></g><g><title>PredictedCallGenerator::generate (102 samples, 0.04%)</title><rect x="27.9537%" y="421" width="0.0381%" height="15" fill="rgb(241,183,40)" fg:x="74798" fg:w="102"/><text x="28.2037%" y="431.50"></text></g><g><title>Parse::do_call (762 samples, 0.28%)</title><rect x="27.7082%" y="437" width="0.2848%" height="15" fill="rgb(231,217,32)" fg:x="74141" fg:w="762"/><text x="27.9582%" y="447.50"></text></g><g><title>ParseGenerator::generate (776 samples, 0.29%)</title><rect x="27.7074%" y="517" width="0.2900%" height="15" fill="rgb(229,61,38)" fg:x="74139" fg:w="776"/><text x="27.9574%" y="527.50"></text></g><g><title>Parse::Parse (776 samples, 0.29%)</title><rect x="27.7074%" y="501" width="0.2900%" height="15" fill="rgb(225,210,5)" fg:x="74139" fg:w="776"/><text x="27.9574%" y="511.50"></text></g><g><title>Parse::do_all_blocks (774 samples, 0.29%)</title><rect x="27.7082%" y="485" width="0.2893%" height="15" fill="rgb(231,79,45)" fg:x="74141" fg:w="774"/><text x="27.9582%" y="495.50"></text></g><g><title>Parse::do_one_block (774 samples, 0.29%)</title><rect x="27.7082%" y="469" width="0.2893%" height="15" fill="rgb(224,100,7)" fg:x="74141" fg:w="774"/><text x="27.9582%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (774 samples, 0.29%)</title><rect x="27.7082%" y="453" width="0.2893%" height="15" fill="rgb(241,198,18)" fg:x="74141" fg:w="774"/><text x="27.9582%" y="463.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="28.0116%" y="229" width="0.0105%" height="15" fill="rgb(252,97,53)" fg:x="74953" fg:w="28"/><text x="28.2616%" y="239.50"></text></g><g><title>Parse::do_one_block (43 samples, 0.02%)</title><rect x="28.0105%" y="261" width="0.0161%" height="15" fill="rgb(220,88,7)" fg:x="74950" fg:w="43"/><text x="28.2605%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="28.0113%" y="245" width="0.0153%" height="15" fill="rgb(213,176,14)" fg:x="74952" fg:w="41"/><text x="28.2613%" y="255.50"></text></g><g><title>Parse::do_all_blocks (46 samples, 0.02%)</title><rect x="28.0105%" y="277" width="0.0172%" height="15" fill="rgb(246,73,7)" fg:x="74950" fg:w="46"/><text x="28.2605%" y="287.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.02%)</title><rect x="28.0098%" y="309" width="0.0183%" height="15" fill="rgb(245,64,36)" fg:x="74948" fg:w="49"/><text x="28.2598%" y="319.50"></text></g><g><title>Parse::Parse (49 samples, 0.02%)</title><rect x="28.0098%" y="293" width="0.0183%" height="15" fill="rgb(245,80,10)" fg:x="74948" fg:w="49"/><text x="28.2598%" y="303.50"></text></g><g><title>Parse::do_call (77 samples, 0.03%)</title><rect x="28.0053%" y="325" width="0.0288%" height="15" fill="rgb(232,107,50)" fg:x="74936" fg:w="77"/><text x="28.2553%" y="335.50"></text></g><g><title>Parse::do_one_block (98 samples, 0.04%)</title><rect x="28.0034%" y="357" width="0.0366%" height="15" fill="rgb(253,3,0)" fg:x="74931" fg:w="98"/><text x="28.2534%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (97 samples, 0.04%)</title><rect x="28.0038%" y="341" width="0.0363%" height="15" fill="rgb(212,99,53)" fg:x="74932" fg:w="97"/><text x="28.2538%" y="351.50"></text></g><g><title>Parse::do_all_blocks (99 samples, 0.04%)</title><rect x="28.0034%" y="373" width="0.0370%" height="15" fill="rgb(249,111,54)" fg:x="74931" fg:w="99"/><text x="28.2534%" y="383.50"></text></g><g><title>ParseGenerator::generate (102 samples, 0.04%)</title><rect x="28.0027%" y="405" width="0.0381%" height="15" fill="rgb(249,55,30)" fg:x="74929" fg:w="102"/><text x="28.2527%" y="415.50"></text></g><g><title>Parse::Parse (102 samples, 0.04%)</title><rect x="28.0027%" y="389" width="0.0381%" height="15" fill="rgb(237,47,42)" fg:x="74929" fg:w="102"/><text x="28.2527%" y="399.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="28.0408%" y="309" width="0.0101%" height="15" fill="rgb(211,20,18)" fg:x="75031" fg:w="27"/><text x="28.2908%" y="319.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="28.0408%" y="357" width="0.0120%" height="15" fill="rgb(231,203,46)" fg:x="75031" fg:w="32"/><text x="28.2908%" y="367.50"></text></g><g><title>Parse::do_one_block (32 samples, 0.01%)</title><rect x="28.0408%" y="341" width="0.0120%" height="15" fill="rgb(237,142,3)" fg:x="75031" fg:w="32"/><text x="28.2908%" y="351.50"></text></g><g><title>Parse::do_one_bytecode (32 samples, 0.01%)</title><rect x="28.0408%" y="325" width="0.0120%" height="15" fill="rgb(241,107,1)" fg:x="75031" fg:w="32"/><text x="28.2908%" y="335.50"></text></g><g><title>ParseGenerator::generate (34 samples, 0.01%)</title><rect x="28.0408%" y="389" width="0.0127%" height="15" fill="rgb(229,83,13)" fg:x="75031" fg:w="34"/><text x="28.2908%" y="399.50"></text></g><g><title>Parse::Parse (34 samples, 0.01%)</title><rect x="28.0408%" y="373" width="0.0127%" height="15" fill="rgb(241,91,40)" fg:x="75031" fg:w="34"/><text x="28.2908%" y="383.50"></text></g><g><title>Parse::do_call (155 samples, 0.06%)</title><rect x="27.9974%" y="421" width="0.0579%" height="15" fill="rgb(225,3,45)" fg:x="74915" fg:w="155"/><text x="28.2474%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (39 samples, 0.01%)</title><rect x="28.0408%" y="405" width="0.0146%" height="15" fill="rgb(244,223,14)" fg:x="75031" fg:w="39"/><text x="28.2908%" y="415.50"></text></g><g><title>ParseGenerator::generate (156 samples, 0.06%)</title><rect x="27.9974%" y="501" width="0.0583%" height="15" fill="rgb(224,124,37)" fg:x="74915" fg:w="156"/><text x="28.2474%" y="511.50"></text></g><g><title>Parse::Parse (156 samples, 0.06%)</title><rect x="27.9974%" y="485" width="0.0583%" height="15" fill="rgb(251,171,30)" fg:x="74915" fg:w="156"/><text x="28.2474%" y="495.50"></text></g><g><title>Parse::do_all_blocks (156 samples, 0.06%)</title><rect x="27.9974%" y="469" width="0.0583%" height="15" fill="rgb(236,46,54)" fg:x="74915" fg:w="156"/><text x="28.2474%" y="479.50"></text></g><g><title>Parse::do_one_block (156 samples, 0.06%)</title><rect x="27.9974%" y="453" width="0.0583%" height="15" fill="rgb(245,213,5)" fg:x="74915" fg:w="156"/><text x="28.2474%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (156 samples, 0.06%)</title><rect x="27.9974%" y="437" width="0.0583%" height="15" fill="rgb(230,144,27)" fg:x="74915" fg:w="156"/><text x="28.2474%" y="447.50"></text></g><g><title>Parse::do_call (984 samples, 0.37%)</title><rect x="27.6944%" y="533" width="0.3677%" height="15" fill="rgb(220,86,6)" fg:x="74104" fg:w="984"/><text x="27.9444%" y="543.50"></text></g><g><title>PredictedCallGenerator::generate (173 samples, 0.06%)</title><rect x="27.9974%" y="517" width="0.0647%" height="15" fill="rgb(240,20,13)" fg:x="74915" fg:w="173"/><text x="28.2474%" y="527.50"></text></g><g><title>Parse::do_all_blocks (992 samples, 0.37%)</title><rect x="27.6944%" y="581" width="0.3707%" height="15" fill="rgb(217,89,34)" fg:x="74104" fg:w="992"/><text x="27.9444%" y="591.50"></text></g><g><title>Parse::do_one_block (992 samples, 0.37%)</title><rect x="27.6944%" y="565" width="0.3707%" height="15" fill="rgb(229,13,5)" fg:x="74104" fg:w="992"/><text x="27.9444%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (992 samples, 0.37%)</title><rect x="27.6944%" y="549" width="0.3707%" height="15" fill="rgb(244,67,35)" fg:x="74104" fg:w="992"/><text x="27.9444%" y="559.50"></text></g><g><title>ParseGenerator::generate (993 samples, 0.37%)</title><rect x="27.6944%" y="613" width="0.3711%" height="15" fill="rgb(221,40,2)" fg:x="74104" fg:w="993"/><text x="27.9444%" y="623.50"></text></g><g><title>Parse::Parse (993 samples, 0.37%)</title><rect x="27.6944%" y="597" width="0.3711%" height="15" fill="rgb(237,157,21)" fg:x="74104" fg:w="993"/><text x="27.9444%" y="607.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="28.0841%" y="261" width="0.0112%" height="15" fill="rgb(222,94,11)" fg:x="75147" fg:w="30"/><text x="28.3341%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.01%)</title><rect x="28.0845%" y="245" width="0.0108%" height="15" fill="rgb(249,113,6)" fg:x="75148" fg:w="29"/><text x="28.3345%" y="255.50"></text></g><g><title>Parse::do_all_blocks (32 samples, 0.01%)</title><rect x="28.0838%" y="277" width="0.0120%" height="15" fill="rgb(238,137,36)" fg:x="75146" fg:w="32"/><text x="28.3338%" y="287.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="28.0819%" y="309" width="0.0142%" height="15" fill="rgb(210,102,26)" fg:x="75141" fg:w="38"/><text x="28.3319%" y="319.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="28.0819%" y="293" width="0.0142%" height="15" fill="rgb(218,30,30)" fg:x="75141" fg:w="38"/><text x="28.3319%" y="303.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="28.0778%" y="325" width="0.0239%" height="15" fill="rgb(214,67,26)" fg:x="75130" fg:w="64"/><text x="28.3278%" y="335.50"></text></g><g><title>Parse::do_one_block (81 samples, 0.03%)</title><rect x="28.0770%" y="357" width="0.0303%" height="15" fill="rgb(251,9,53)" fg:x="75128" fg:w="81"/><text x="28.3270%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (81 samples, 0.03%)</title><rect x="28.0770%" y="341" width="0.0303%" height="15" fill="rgb(228,204,25)" fg:x="75128" fg:w="81"/><text x="28.3270%" y="351.50"></text></g><g><title>ParseGenerator::generate (82 samples, 0.03%)</title><rect x="28.0770%" y="405" width="0.0306%" height="15" fill="rgb(207,153,8)" fg:x="75128" fg:w="82"/><text x="28.3270%" y="415.50"></text></g><g><title>Parse::Parse (82 samples, 0.03%)</title><rect x="28.0770%" y="389" width="0.0306%" height="15" fill="rgb(242,9,16)" fg:x="75128" fg:w="82"/><text x="28.3270%" y="399.50"></text></g><g><title>Parse::do_all_blocks (82 samples, 0.03%)</title><rect x="28.0770%" y="373" width="0.0306%" height="15" fill="rgb(217,211,10)" fg:x="75128" fg:w="82"/><text x="28.3270%" y="383.50"></text></g><g><title>Parse::do_call (126 samples, 0.05%)</title><rect x="28.0703%" y="421" width="0.0471%" height="15" fill="rgb(219,228,52)" fg:x="75110" fg:w="126"/><text x="28.3203%" y="431.50"></text></g><g><title>ParseGenerator::generate (127 samples, 0.05%)</title><rect x="28.0703%" y="501" width="0.0475%" height="15" fill="rgb(231,92,29)" fg:x="75110" fg:w="127"/><text x="28.3203%" y="511.50"></text></g><g><title>Parse::Parse (127 samples, 0.05%)</title><rect x="28.0703%" y="485" width="0.0475%" height="15" fill="rgb(232,8,23)" fg:x="75110" fg:w="127"/><text x="28.3203%" y="495.50"></text></g><g><title>Parse::do_all_blocks (127 samples, 0.05%)</title><rect x="28.0703%" y="469" width="0.0475%" height="15" fill="rgb(216,211,34)" fg:x="75110" fg:w="127"/><text x="28.3203%" y="479.50"></text></g><g><title>Parse::do_one_block (127 samples, 0.05%)</title><rect x="28.0703%" y="453" width="0.0475%" height="15" fill="rgb(236,151,0)" fg:x="75110" fg:w="127"/><text x="28.3203%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (127 samples, 0.05%)</title><rect x="28.0703%" y="437" width="0.0475%" height="15" fill="rgb(209,168,3)" fg:x="75110" fg:w="127"/><text x="28.3203%" y="447.50"></text></g><g><title>ParseGenerator::generate (154 samples, 0.06%)</title><rect x="28.0655%" y="597" width="0.0576%" height="15" fill="rgb(208,129,28)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="607.50"></text></g><g><title>Parse::Parse (154 samples, 0.06%)</title><rect x="28.0655%" y="581" width="0.0576%" height="15" fill="rgb(229,78,22)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="591.50"></text></g><g><title>Parse::do_all_blocks (154 samples, 0.06%)</title><rect x="28.0655%" y="565" width="0.0576%" height="15" fill="rgb(228,187,13)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="575.50"></text></g><g><title>Parse::do_one_block (154 samples, 0.06%)</title><rect x="28.0655%" y="549" width="0.0576%" height="15" fill="rgb(240,119,24)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (154 samples, 0.06%)</title><rect x="28.0655%" y="533" width="0.0576%" height="15" fill="rgb(209,194,42)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="543.50"></text></g><g><title>Parse::do_call (154 samples, 0.06%)</title><rect x="28.0655%" y="517" width="0.0576%" height="15" fill="rgb(247,200,46)" fg:x="75097" fg:w="154"/><text x="28.3155%" y="527.50"></text></g><g><title>ParseGenerator::generate (1,166 samples, 0.44%)</title><rect x="27.6925%" y="709" width="0.4358%" height="15" fill="rgb(218,76,16)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="719.50"></text></g><g><title>Parse::Parse (1,166 samples, 0.44%)</title><rect x="27.6925%" y="693" width="0.4358%" height="15" fill="rgb(225,21,48)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="703.50"></text></g><g><title>Parse::do_all_blocks (1,166 samples, 0.44%)</title><rect x="27.6925%" y="677" width="0.4358%" height="15" fill="rgb(239,223,50)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="687.50"></text></g><g><title>Parse::do_one_block (1,166 samples, 0.44%)</title><rect x="27.6925%" y="661" width="0.4358%" height="15" fill="rgb(244,45,21)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (1,166 samples, 0.44%)</title><rect x="27.6925%" y="645" width="0.4358%" height="15" fill="rgb(232,33,43)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="655.50"></text></g><g><title>Parse::do_call (1,166 samples, 0.44%)</title><rect x="27.6925%" y="629" width="0.4358%" height="15" fill="rgb(209,8,3)" fg:x="74099" fg:w="1166"/><text x="27.9425%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (168 samples, 0.06%)</title><rect x="28.0655%" y="613" width="0.0628%" height="15" fill="rgb(214,25,53)" fg:x="75097" fg:w="168"/><text x="28.3155%" y="623.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="28.1540%" y="229" width="0.0146%" height="15" fill="rgb(254,186,54)" fg:x="75334" fg:w="39"/><text x="28.4040%" y="239.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.02%)</title><rect x="28.1533%" y="277" width="0.0209%" height="15" fill="rgb(208,174,49)" fg:x="75332" fg:w="56"/><text x="28.4033%" y="287.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.02%)</title><rect x="28.1533%" y="261" width="0.0209%" height="15" fill="rgb(233,191,51)" fg:x="75332" fg:w="56"/><text x="28.4033%" y="271.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="28.1537%" y="245" width="0.0206%" height="15" fill="rgb(222,134,10)" fg:x="75333" fg:w="55"/><text x="28.4037%" y="255.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.02%)</title><rect x="28.1510%" y="309" width="0.0243%" height="15" fill="rgb(230,226,20)" fg:x="75326" fg:w="65"/><text x="28.4010%" y="319.50"></text></g><g><title>Parse::Parse (65 samples, 0.02%)</title><rect x="28.1510%" y="293" width="0.0243%" height="15" fill="rgb(251,111,25)" fg:x="75326" fg:w="65"/><text x="28.4010%" y="303.50"></text></g><g><title>Parse::do_call (89 samples, 0.03%)</title><rect x="28.1436%" y="325" width="0.0333%" height="15" fill="rgb(224,40,46)" fg:x="75306" fg:w="89"/><text x="28.3936%" y="335.50"></text></g><g><title>Parse::do_one_block (103 samples, 0.04%)</title><rect x="28.1428%" y="357" width="0.0385%" height="15" fill="rgb(236,108,47)" fg:x="75304" fg:w="103"/><text x="28.3928%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (103 samples, 0.04%)</title><rect x="28.1428%" y="341" width="0.0385%" height="15" fill="rgb(234,93,0)" fg:x="75304" fg:w="103"/><text x="28.3928%" y="351.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.04%)</title><rect x="28.1424%" y="405" width="0.0392%" height="15" fill="rgb(224,213,32)" fg:x="75303" fg:w="105"/><text x="28.3924%" y="415.50"></text></g><g><title>Parse::Parse (105 samples, 0.04%)</title><rect x="28.1424%" y="389" width="0.0392%" height="15" fill="rgb(251,11,48)" fg:x="75303" fg:w="105"/><text x="28.3924%" y="399.50"></text></g><g><title>Parse::do_all_blocks (104 samples, 0.04%)</title><rect x="28.1428%" y="373" width="0.0389%" height="15" fill="rgb(236,173,5)" fg:x="75304" fg:w="104"/><text x="28.3928%" y="383.50"></text></g><g><title>Parse::do_call (146 samples, 0.05%)</title><rect x="28.1372%" y="421" width="0.0546%" height="15" fill="rgb(230,95,12)" fg:x="75289" fg:w="146"/><text x="28.3872%" y="431.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.01%)</title><rect x="28.1817%" y="405" width="0.0101%" height="15" fill="rgb(232,209,1)" fg:x="75408" fg:w="27"/><text x="28.4317%" y="415.50"></text></g><g><title>ParseGenerator::generate (158 samples, 0.06%)</title><rect x="28.1361%" y="501" width="0.0590%" height="15" fill="rgb(232,6,1)" fg:x="75286" fg:w="158"/><text x="28.3861%" y="511.50"></text></g><g><title>Parse::Parse (158 samples, 0.06%)</title><rect x="28.1361%" y="485" width="0.0590%" height="15" fill="rgb(210,224,50)" fg:x="75286" fg:w="158"/><text x="28.3861%" y="495.50"></text></g><g><title>Parse::do_all_blocks (157 samples, 0.06%)</title><rect x="28.1365%" y="469" width="0.0587%" height="15" fill="rgb(228,127,35)" fg:x="75287" fg:w="157"/><text x="28.3865%" y="479.50"></text></g><g><title>Parse::do_one_block (157 samples, 0.06%)</title><rect x="28.1365%" y="453" width="0.0587%" height="15" fill="rgb(245,102,45)" fg:x="75287" fg:w="157"/><text x="28.3865%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (157 samples, 0.06%)</title><rect x="28.1365%" y="437" width="0.0587%" height="15" fill="rgb(214,1,49)" fg:x="75287" fg:w="157"/><text x="28.3865%" y="447.50"></text></g><g><title>Parse::do_call (188 samples, 0.07%)</title><rect x="28.1286%" y="517" width="0.0703%" height="15" fill="rgb(226,163,40)" fg:x="75266" fg:w="188"/><text x="28.3786%" y="527.50"></text></g><g><title>ParseGenerator::generate (190 samples, 0.07%)</title><rect x="28.1282%" y="597" width="0.0710%" height="15" fill="rgb(239,212,28)" fg:x="75265" fg:w="190"/><text x="28.3782%" y="607.50"></text></g><g><title>Parse::Parse (190 samples, 0.07%)</title><rect x="28.1282%" y="581" width="0.0710%" height="15" fill="rgb(220,20,13)" fg:x="75265" fg:w="190"/><text x="28.3782%" y="591.50"></text></g><g><title>Parse::do_all_blocks (189 samples, 0.07%)</title><rect x="28.1286%" y="565" width="0.0706%" height="15" fill="rgb(210,164,35)" fg:x="75266" fg:w="189"/><text x="28.3786%" y="575.50"></text></g><g><title>Parse::do_one_block (189 samples, 0.07%)</title><rect x="28.1286%" y="549" width="0.0706%" height="15" fill="rgb(248,109,41)" fg:x="75266" fg:w="189"/><text x="28.3786%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (189 samples, 0.07%)</title><rect x="28.1286%" y="533" width="0.0706%" height="15" fill="rgb(238,23,50)" fg:x="75266" fg:w="189"/><text x="28.3786%" y="543.50"></text></g><g><title>ParseGenerator::generate (214 samples, 0.08%)</title><rect x="28.1282%" y="693" width="0.0800%" height="15" fill="rgb(211,48,49)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="703.50"></text></g><g><title>Parse::Parse (214 samples, 0.08%)</title><rect x="28.1282%" y="677" width="0.0800%" height="15" fill="rgb(223,36,21)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="687.50"></text></g><g><title>Parse::do_all_blocks (214 samples, 0.08%)</title><rect x="28.1282%" y="661" width="0.0800%" height="15" fill="rgb(207,123,46)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="671.50"></text></g><g><title>Parse::do_one_block (214 samples, 0.08%)</title><rect x="28.1282%" y="645" width="0.0800%" height="15" fill="rgb(240,218,32)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (214 samples, 0.08%)</title><rect x="28.1282%" y="629" width="0.0800%" height="15" fill="rgb(252,5,43)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="639.50"></text></g><g><title>Parse::do_call (214 samples, 0.08%)</title><rect x="28.1282%" y="613" width="0.0800%" height="15" fill="rgb(252,84,19)" fg:x="75265" fg:w="214"/><text x="28.3782%" y="623.50"></text></g><g><title>Compile::Compile (54,191 samples, 20.25%)</title><rect x="7.9764%" y="821" width="20.2524%" height="15" fill="rgb(243,152,39)" fg:x="21343" fg:w="54191"/><text x="8.2264%" y="831.50">Compile::Compile</text></g><g><title>ParseGenerator::generate (1,436 samples, 0.54%)</title><rect x="27.6921%" y="805" width="0.5367%" height="15" fill="rgb(234,160,15)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="815.50"></text></g><g><title>Parse::Parse (1,436 samples, 0.54%)</title><rect x="27.6921%" y="789" width="0.5367%" height="15" fill="rgb(237,34,20)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="799.50"></text></g><g><title>Parse::do_all_blocks (1,436 samples, 0.54%)</title><rect x="27.6921%" y="773" width="0.5367%" height="15" fill="rgb(229,97,13)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="783.50"></text></g><g><title>Parse::do_one_block (1,436 samples, 0.54%)</title><rect x="27.6921%" y="757" width="0.5367%" height="15" fill="rgb(234,71,50)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (1,436 samples, 0.54%)</title><rect x="27.6921%" y="741" width="0.5367%" height="15" fill="rgb(253,155,4)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="751.50"></text></g><g><title>Parse::do_call (1,436 samples, 0.54%)</title><rect x="27.6921%" y="725" width="0.5367%" height="15" fill="rgb(222,185,37)" fg:x="74098" fg:w="1436"/><text x="27.9421%" y="735.50"></text></g><g><title>PredictedCallGenerator::generate (269 samples, 0.10%)</title><rect x="28.1282%" y="709" width="0.1005%" height="15" fill="rgb(251,177,13)" fg:x="75265" fg:w="269"/><text x="28.3782%" y="719.50"></text></g><g><title>PredictedCallGenerator::generate (55 samples, 0.02%)</title><rect x="28.2082%" y="693" width="0.0206%" height="15" fill="rgb(250,179,40)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="703.50"></text></g><g><title>ParseGenerator::generate (55 samples, 0.02%)</title><rect x="28.2082%" y="677" width="0.0206%" height="15" fill="rgb(242,44,2)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="687.50"></text></g><g><title>Parse::Parse (55 samples, 0.02%)</title><rect x="28.2082%" y="661" width="0.0206%" height="15" fill="rgb(216,177,13)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="671.50"></text></g><g><title>Parse::do_all_blocks (55 samples, 0.02%)</title><rect x="28.2082%" y="645" width="0.0206%" height="15" fill="rgb(216,106,43)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="655.50"></text></g><g><title>Parse::do_one_block (55 samples, 0.02%)</title><rect x="28.2082%" y="629" width="0.0206%" height="15" fill="rgb(216,183,2)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (55 samples, 0.02%)</title><rect x="28.2082%" y="613" width="0.0206%" height="15" fill="rgb(249,75,3)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="623.50"></text></g><g><title>Parse::do_call (55 samples, 0.02%)</title><rect x="28.2082%" y="597" width="0.0206%" height="15" fill="rgb(219,67,39)" fg:x="75479" fg:w="55"/><text x="28.4582%" y="607.50"></text></g><g><title>PredictedCallGenerator::generate (27 samples, 0.01%)</title><rect x="28.2187%" y="581" width="0.0101%" height="15" fill="rgb(253,228,2)" fg:x="75507" fg:w="27"/><text x="28.4687%" y="591.50"></text></g><g><title>Compile::final_graph_reshaping_impl (126 samples, 0.05%)</title><rect x="28.3177%" y="773" width="0.0471%" height="15" fill="rgb(235,138,27)" fg:x="75772" fg:w="126"/><text x="28.5677%" y="783.50"></text></g><g><title>Compile::final_graph_reshaping_walk (370 samples, 0.14%)</title><rect x="28.2366%" y="789" width="0.1383%" height="15" fill="rgb(236,97,51)" fg:x="75555" fg:w="370"/><text x="28.4866%" y="799.50"></text></g><g><title>Compile::final_graph_reshaping (387 samples, 0.14%)</title><rect x="28.2306%" y="805" width="0.1446%" height="15" fill="rgb(240,80,30)" fg:x="75539" fg:w="387"/><text x="28.4806%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (55 samples, 0.02%)</title><rect x="28.3828%" y="757" width="0.0206%" height="15" fill="rgb(230,178,19)" fg:x="75946" fg:w="55"/><text x="28.6328%" y="767.50"></text></g><g><title>Compile::remove_useless_nodes (32 samples, 0.01%)</title><rect x="28.4033%" y="757" width="0.0120%" height="15" fill="rgb(210,190,27)" fg:x="76001" fg:w="32"/><text x="28.6533%" y="767.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (101 samples, 0.04%)</title><rect x="28.3809%" y="773" width="0.0377%" height="15" fill="rgb(222,107,31)" fg:x="75941" fg:w="101"/><text x="28.6309%" y="783.50"></text></g><g><title>Compile::inline_incrementally_one (118 samples, 0.04%)</title><rect x="28.3753%" y="789" width="0.0441%" height="15" fill="rgb(216,127,34)" fg:x="75926" fg:w="118"/><text x="28.6253%" y="799.50"></text></g><g><title>Compile::inline_incrementally (126 samples, 0.05%)</title><rect x="28.3753%" y="805" width="0.0471%" height="15" fill="rgb(234,116,52)" fg:x="75926" fg:w="126"/><text x="28.6253%" y="815.50"></text></g><g><title>PhaseIterGVN::transform_old (44 samples, 0.02%)</title><rect x="28.4904%" y="773" width="0.0164%" height="15" fill="rgb(222,124,15)" fg:x="76234" fg:w="44"/><text x="28.7404%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (46 samples, 0.02%)</title><rect x="28.4900%" y="789" width="0.0172%" height="15" fill="rgb(231,179,28)" fg:x="76233" fg:w="46"/><text x="28.7400%" y="799.50"></text></g><g><title>PhaseIterGVN::remove_speculative_types (65 samples, 0.02%)</title><rect x="28.5072%" y="789" width="0.0243%" height="15" fill="rgb(226,93,45)" fg:x="76279" fg:w="65"/><text x="28.7572%" y="799.50"></text></g><g><title>Compile::remove_speculative_types (284 samples, 0.11%)</title><rect x="28.4287%" y="805" width="0.1061%" height="15" fill="rgb(215,8,51)" fg:x="76069" fg:w="284"/><text x="28.6787%" y="815.50"></text></g><g><title>BCEscapeAnalyzer::iterate_one_block (29 samples, 0.01%)</title><rect x="28.5805%" y="693" width="0.0108%" height="15" fill="rgb(223,106,5)" fg:x="76475" fg:w="29"/><text x="28.8305%" y="703.50"></text></g><g><title>BCEscapeAnalyzer::compute_escape_info (30 samples, 0.01%)</title><rect x="28.5805%" y="725" width="0.0112%" height="15" fill="rgb(250,191,5)" fg:x="76475" fg:w="30"/><text x="28.8305%" y="735.50"></text></g><g><title>BCEscapeAnalyzer::iterate_blocks (30 samples, 0.01%)</title><rect x="28.5805%" y="709" width="0.0112%" height="15" fill="rgb(242,132,44)" fg:x="76475" fg:w="30"/><text x="28.8305%" y="719.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (37 samples, 0.01%)</title><rect x="28.5805%" y="741" width="0.0138%" height="15" fill="rgb(251,152,29)" fg:x="76475" fg:w="37"/><text x="28.8305%" y="751.50"></text></g><g><title>ConnectionGraph::add_call_node (38 samples, 0.01%)</title><rect x="28.5805%" y="773" width="0.0142%" height="15" fill="rgb(218,179,5)" fg:x="76475" fg:w="38"/><text x="28.8305%" y="783.50"></text></g><g><title>ciMethod::get_bcea (38 samples, 0.01%)</title><rect x="28.5805%" y="757" width="0.0142%" height="15" fill="rgb(227,67,19)" fg:x="76475" fg:w="38"/><text x="28.8305%" y="767.50"></text></g><g><title>BCEscapeAnalyzer::BCEscapeAnalyzer (34 samples, 0.01%)</title><rect x="28.6010%" y="725" width="0.0127%" height="15" fill="rgb(233,119,31)" fg:x="76530" fg:w="34"/><text x="28.8510%" y="735.50"></text></g><g><title>ciMethod::get_bcea (35 samples, 0.01%)</title><rect x="28.6010%" y="741" width="0.0131%" height="15" fill="rgb(241,120,22)" fg:x="76530" fg:w="35"/><text x="28.8510%" y="751.50"></text></g><g><title>ConnectionGraph::process_call_arguments (41 samples, 0.02%)</title><rect x="28.5991%" y="757" width="0.0153%" height="15" fill="rgb(224,102,30)" fg:x="76525" fg:w="41"/><text x="28.8491%" y="767.50"></text></g><g><title>ConnectionGraph::add_final_edges (55 samples, 0.02%)</title><rect x="28.5947%" y="773" width="0.0206%" height="15" fill="rgb(210,164,37)" fg:x="76513" fg:w="55"/><text x="28.8447%" y="783.50"></text></g><g><title>ConnectionGraph::is_oop_field (34 samples, 0.01%)</title><rect x="28.6455%" y="741" width="0.0127%" height="15" fill="rgb(226,191,16)" fg:x="76649" fg:w="34"/><text x="28.8955%" y="751.50"></text></g><g><title>ConnectionGraph::add_field (45 samples, 0.02%)</title><rect x="28.6436%" y="757" width="0.0168%" height="15" fill="rgb(214,40,45)" fg:x="76644" fg:w="45"/><text x="28.8936%" y="767.50"></text></g><g><title>ConnectionGraph::add_node_to_connection_graph (123 samples, 0.05%)</title><rect x="28.6182%" y="773" width="0.0460%" height="15" fill="rgb(244,29,26)" fg:x="76576" fg:w="123"/><text x="28.8682%" y="783.50"></text></g><g><title>ConnectionGraph::add_field_uses_to_worklist (44 samples, 0.02%)</title><rect x="28.6784%" y="757" width="0.0164%" height="15" fill="rgb(216,16,5)" fg:x="76737" fg:w="44"/><text x="28.9284%" y="767.50"></text></g><g><title>ConnectionGraph::find_non_escaped_objects (42 samples, 0.02%)</title><rect x="28.7034%" y="757" width="0.0157%" height="15" fill="rgb(249,76,35)" fg:x="76804" fg:w="42"/><text x="28.9534%" y="767.50"></text></g><g><title>ConnectionGraph::complete_connection_graph (146 samples, 0.05%)</title><rect x="28.6660%" y="773" width="0.0546%" height="15" fill="rgb(207,11,44)" fg:x="76704" fg:w="146"/><text x="28.9160%" y="783.50"></text></g><g><title>ConnectionGraph::split_memory_phi (38 samples, 0.01%)</title><rect x="28.7430%" y="709" width="0.0142%" height="15" fill="rgb(228,190,49)" fg:x="76910" fg:w="38"/><text x="28.9930%" y="719.50"></text></g><g><title>ConnectionGraph::find_inst_mem (36 samples, 0.01%)</title><rect x="28.7438%" y="693" width="0.0135%" height="15" fill="rgb(214,173,12)" fg:x="76912" fg:w="36"/><text x="28.9938%" y="703.50"></text></g><g><title>ConnectionGraph::split_memory_phi (56 samples, 0.02%)</title><rect x="28.7370%" y="741" width="0.0209%" height="15" fill="rgb(218,26,35)" fg:x="76894" fg:w="56"/><text x="28.9870%" y="751.50"></text></g><g><title>ConnectionGraph::find_inst_mem (45 samples, 0.02%)</title><rect x="28.7412%" y="725" width="0.0168%" height="15" fill="rgb(220,200,19)" fg:x="76905" fg:w="45"/><text x="28.9912%" y="735.50"></text></g><g><title>ConnectionGraph::find_inst_mem (77 samples, 0.03%)</title><rect x="28.7303%" y="757" width="0.0288%" height="15" fill="rgb(239,95,49)" fg:x="76876" fg:w="77"/><text x="28.9803%" y="767.50"></text></g><g><title>ConnectionGraph::split_unique_types (120 samples, 0.04%)</title><rect x="28.7266%" y="773" width="0.0448%" height="15" fill="rgb(235,85,53)" fg:x="76866" fg:w="120"/><text x="28.9766%" y="783.50"></text></g><g><title>ConnectionGraph::compute_escape (634 samples, 0.24%)</title><rect x="28.5382%" y="789" width="0.2369%" height="15" fill="rgb(233,133,31)" fg:x="76362" fg:w="634"/><text x="28.7882%" y="799.50"></text></g><g><title>ConnectionGraph::do_analysis (645 samples, 0.24%)</title><rect x="28.5349%" y="805" width="0.2411%" height="15" fill="rgb(218,25,20)" fg:x="76353" fg:w="645"/><text x="28.7849%" y="815.50"></text></g><g><title>LoadNode::Value (32 samples, 0.01%)</title><rect x="28.9968%" y="789" width="0.0120%" height="15" fill="rgb(252,210,38)" fg:x="77589" fg:w="32"/><text x="29.2468%" y="799.50"></text></g><g><title>PhiNode::Value (55 samples, 0.02%)</title><rect x="29.0192%" y="789" width="0.0206%" height="15" fill="rgb(242,134,21)" fg:x="77649" fg:w="55"/><text x="29.2692%" y="799.50"></text></g><g><title>Type::hashcons (32 samples, 0.01%)</title><rect x="29.0756%" y="773" width="0.0120%" height="15" fill="rgb(213,28,48)" fg:x="77800" fg:w="32"/><text x="29.3256%" y="783.50"></text></g><g><title>TypeInstPtr::add_offset (59 samples, 0.02%)</title><rect x="29.0756%" y="789" width="0.0220%" height="15" fill="rgb(250,196,2)" fg:x="77800" fg:w="59"/><text x="29.3256%" y="799.50"></text></g><g><title>PhaseCCP::analyze (890 samples, 0.33%)</title><rect x="28.7774%" y="805" width="0.3326%" height="15" fill="rgb(227,5,17)" fg:x="77002" fg:w="890"/><text x="29.0274%" y="815.50"></text></g><g><title>PhaseCCP::transform_once (118 samples, 0.04%)</title><rect x="29.1631%" y="773" width="0.0441%" height="15" fill="rgb(221,226,24)" fg:x="78034" fg:w="118"/><text x="29.4131%" y="783.50"></text></g><g><title>PhaseCCP::do_transform (263 samples, 0.10%)</title><rect x="29.1100%" y="805" width="0.0983%" height="15" fill="rgb(211,5,48)" fg:x="77892" fg:w="263"/><text x="29.3600%" y="815.50"></text></g><g><title>PhaseCCP::transform (263 samples, 0.10%)</title><rect x="29.1100%" y="789" width="0.0983%" height="15" fill="rgb(219,150,6)" fg:x="77892" fg:w="263"/><text x="29.3600%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (47 samples, 0.02%)</title><rect x="29.2416%" y="789" width="0.0176%" height="15" fill="rgb(251,46,16)" fg:x="78244" fg:w="47"/><text x="29.4916%" y="799.50"></text></g><g><title>IdealLoopTree::counted_loop (46 samples, 0.02%)</title><rect x="29.2419%" y="773" width="0.0172%" height="15" fill="rgb(220,204,40)" fg:x="78245" fg:w="46"/><text x="29.4919%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (28 samples, 0.01%)</title><rect x="29.2662%" y="629" width="0.0105%" height="15" fill="rgb(211,85,2)" fg:x="78310" fg:w="28"/><text x="29.5162%" y="639.50"></text></g><g><title>IdealLoopTree::iteration_split (33 samples, 0.01%)</title><rect x="29.2662%" y="645" width="0.0123%" height="15" fill="rgb(229,17,7)" fg:x="78310" fg:w="33"/><text x="29.5162%" y="655.50"></text></g><g><title>IdealLoopTree::iteration_split (36 samples, 0.01%)</title><rect x="29.2659%" y="661" width="0.0135%" height="15" fill="rgb(239,72,28)" fg:x="78309" fg:w="36"/><text x="29.5159%" y="671.50"></text></g><g><title>IdealLoopTree::iteration_split (43 samples, 0.02%)</title><rect x="29.2655%" y="677" width="0.0161%" height="15" fill="rgb(230,47,54)" fg:x="78308" fg:w="43"/><text x="29.5155%" y="687.50"></text></g><g><title>IdealLoopTree::iteration_split (54 samples, 0.02%)</title><rect x="29.2636%" y="693" width="0.0202%" height="15" fill="rgb(214,50,8)" fg:x="78303" fg:w="54"/><text x="29.5136%" y="703.50"></text></g><g><title>IdealLoopTree::iteration_split (69 samples, 0.03%)</title><rect x="29.2632%" y="709" width="0.0258%" height="15" fill="rgb(216,198,43)" fg:x="78302" fg:w="69"/><text x="29.5132%" y="719.50"></text></g><g><title>IdealLoopTree::iteration_split (82 samples, 0.03%)</title><rect x="29.2632%" y="725" width="0.0306%" height="15" fill="rgb(234,20,35)" fg:x="78302" fg:w="82"/><text x="29.5132%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split (109 samples, 0.04%)</title><rect x="29.2629%" y="741" width="0.0407%" height="15" fill="rgb(254,45,19)" fg:x="78301" fg:w="109"/><text x="29.5129%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_unroll (27 samples, 0.01%)</title><rect x="29.3058%" y="725" width="0.0101%" height="15" fill="rgb(219,14,44)" fg:x="78416" fg:w="27"/><text x="29.5558%" y="735.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (48 samples, 0.02%)</title><rect x="29.3036%" y="741" width="0.0179%" height="15" fill="rgb(217,220,26)" fg:x="78410" fg:w="48"/><text x="29.5536%" y="751.50"></text></g><g><title>IdealLoopTree::iteration_split (160 samples, 0.06%)</title><rect x="29.2621%" y="757" width="0.0598%" height="15" fill="rgb(213,158,28)" fg:x="78299" fg:w="160"/><text x="29.5121%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split_impl (50 samples, 0.02%)</title><rect x="29.3219%" y="757" width="0.0187%" height="15" fill="rgb(252,51,52)" fg:x="78459" fg:w="50"/><text x="29.5719%" y="767.50"></text></g><g><title>IdealLoopTree::iteration_split (217 samples, 0.08%)</title><rect x="29.2614%" y="773" width="0.0811%" height="15" fill="rgb(246,89,16)" fg:x="78297" fg:w="217"/><text x="29.5114%" y="783.50"></text></g><g><title>IdealLoopTree::iteration_split (255 samples, 0.10%)</title><rect x="29.2591%" y="789" width="0.0953%" height="15" fill="rgb(216,158,49)" fg:x="78291" fg:w="255"/><text x="29.5091%" y="799.50"></text></g><g><title>IdealLoopTree::loop_predication (49 samples, 0.02%)</title><rect x="29.3544%" y="757" width="0.0183%" height="15" fill="rgb(236,107,19)" fg:x="78546" fg:w="49"/><text x="29.6044%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (102 samples, 0.04%)</title><rect x="29.3544%" y="773" width="0.0381%" height="15" fill="rgb(228,185,30)" fg:x="78546" fg:w="102"/><text x="29.6044%" y="783.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (53 samples, 0.02%)</title><rect x="29.3727%" y="757" width="0.0198%" height="15" fill="rgb(246,134,8)" fg:x="78595" fg:w="53"/><text x="29.6227%" y="767.50"></text></g><g><title>PathFrequency::to (27 samples, 0.01%)</title><rect x="29.3985%" y="757" width="0.0101%" height="15" fill="rgb(214,143,50)" fg:x="78664" fg:w="27"/><text x="29.6485%" y="767.50"></text></g><g><title>PathFrequency::to (36 samples, 0.01%)</title><rect x="29.4127%" y="741" width="0.0135%" height="15" fill="rgb(228,75,8)" fg:x="78702" fg:w="36"/><text x="29.6627%" y="751.50"></text></g><g><title>PhaseIdealLoop::loop_predication_follow_branches (80 samples, 0.03%)</title><rect x="29.4086%" y="757" width="0.0299%" height="15" fill="rgb(207,175,4)" fg:x="78691" fg:w="80"/><text x="29.6586%" y="767.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl_helper (41 samples, 0.02%)</title><rect x="29.4385%" y="757" width="0.0153%" height="15" fill="rgb(205,108,24)" fg:x="78771" fg:w="41"/><text x="29.6885%" y="767.50"></text></g><g><title>IdealLoopTree::loop_predication (285 samples, 0.11%)</title><rect x="29.3544%" y="789" width="0.1065%" height="15" fill="rgb(244,120,49)" fg:x="78546" fg:w="285"/><text x="29.6044%" y="799.50"></text></g><g><title>PhaseIdealLoop::loop_predication_impl (183 samples, 0.07%)</title><rect x="29.3926%" y="773" width="0.0684%" height="15" fill="rgb(223,47,38)" fg:x="78648" fg:w="183"/><text x="29.6426%" y="783.50"></text></g><g><title>NTarjan::DFS (415 samples, 0.16%)</title><rect x="29.8365%" y="773" width="0.1551%" height="15" fill="rgb(229,179,11)" fg:x="79836" fg:w="415"/><text x="30.0865%" y="783.50"></text></g><g><title>PhaseIdealLoop::Dominators (1,418 samples, 0.53%)</title><rect x="29.4845%" y="789" width="0.5299%" height="15" fill="rgb(231,122,1)" fg:x="78894" fg:w="1418"/><text x="29.7345%" y="799.50"></text></g><g><title>PhaseIdealLoop::dom_depth (83 samples, 0.03%)</title><rect x="30.6490%" y="741" width="0.0310%" height="15" fill="rgb(245,119,9)" fg:x="82010" fg:w="83"/><text x="30.8990%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (218 samples, 0.08%)</title><rect x="30.6800%" y="741" width="0.0815%" height="15" fill="rgb(241,163,25)" fg:x="82093" fg:w="218"/><text x="30.9300%" y="751.50"></text></g><g><title>PhaseIdealLoop::set_early_ctrl (541 samples, 0.20%)</title><rect x="30.5597%" y="773" width="0.2022%" height="15" fill="rgb(217,214,3)" fg:x="81771" fg:w="541"/><text x="30.8097%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_early_ctrl (479 samples, 0.18%)</title><rect x="30.5829%" y="757" width="0.1790%" height="15" fill="rgb(240,86,28)" fg:x="81833" fg:w="479"/><text x="30.8329%" y="767.50"></text></g><g><title>PhiNode::pinned (51 samples, 0.02%)</title><rect x="30.7619%" y="773" width="0.0191%" height="15" fill="rgb(215,47,9)" fg:x="82312" fg:w="51"/><text x="31.0119%" y="783.50"></text></g><g><title>ProjNode::pinned (34 samples, 0.01%)</title><rect x="30.7832%" y="773" width="0.0127%" height="15" fill="rgb(252,25,45)" fg:x="82369" fg:w="34"/><text x="31.0332%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_early (2,127 samples, 0.79%)</title><rect x="30.0144%" y="789" width="0.7949%" height="15" fill="rgb(251,164,9)" fg:x="80312" fg:w="2127"/><text x="30.2644%" y="799.50"></text></g><g><title>Node_List::push (40 samples, 0.01%)</title><rect x="31.3968%" y="773" width="0.0149%" height="15" fill="rgb(233,194,0)" fg:x="84011" fg:w="40"/><text x="31.6468%" y="783.50"></text></g><g><title>Node::unique_ctrl_out (85 samples, 0.03%)</title><rect x="31.6883%" y="757" width="0.0318%" height="15" fill="rgb(249,111,24)" fg:x="84791" fg:w="85"/><text x="31.9383%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (95 samples, 0.04%)</title><rect x="31.7201%" y="757" width="0.0355%" height="15" fill="rgb(250,223,3)" fg:x="84876" fg:w="95"/><text x="31.9701%" y="767.50"></text></g><g><title>PhaseIdealLoop::dom_depth (85 samples, 0.03%)</title><rect x="32.0572%" y="709" width="0.0318%" height="15" fill="rgb(236,178,37)" fg:x="85778" fg:w="85"/><text x="32.3072%" y="719.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (338 samples, 0.13%)</title><rect x="32.0172%" y="725" width="0.1263%" height="15" fill="rgb(241,158,50)" fg:x="85671" fg:w="338"/><text x="32.2672%" y="735.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (146 samples, 0.05%)</title><rect x="32.0890%" y="709" width="0.0546%" height="15" fill="rgb(213,121,41)" fg:x="85863" fg:w="146"/><text x="32.3390%" y="719.50"></text></g><g><title>PhaseIdealLoop::compute_lca_of_uses (485 samples, 0.18%)</title><rect x="31.9772%" y="741" width="0.1813%" height="15" fill="rgb(240,92,3)" fg:x="85564" fg:w="485"/><text x="32.2272%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (40 samples, 0.01%)</title><rect x="32.1435%" y="725" width="0.0149%" height="15" fill="rgb(205,123,3)" fg:x="86009" fg:w="40"/><text x="32.3935%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_depth (61 samples, 0.02%)</title><rect x="32.2041%" y="725" width="0.0228%" height="15" fill="rgb(205,97,47)" fg:x="86171" fg:w="61"/><text x="32.4541%" y="735.50"></text></g><g><title>PhaseIdealLoop::dom_lca_for_get_late_ctrl_internal (212 samples, 0.08%)</title><rect x="32.1596%" y="741" width="0.0792%" height="15" fill="rgb(247,152,14)" fg:x="86052" fg:w="212"/><text x="32.4096%" y="751.50"></text></g><g><title>PhaseIdealLoop::idom_no_update (32 samples, 0.01%)</title><rect x="32.2269%" y="725" width="0.0120%" height="15" fill="rgb(248,195,53)" fg:x="86232" fg:w="32"/><text x="32.4769%" y="735.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (28 samples, 0.01%)</title><rect x="32.2388%" y="741" width="0.0105%" height="15" fill="rgb(226,201,16)" fg:x="86264" fg:w="28"/><text x="32.4888%" y="751.50"></text></g><g><title>PhaseIdealLoop::dom_depth (699 samples, 0.26%)</title><rect x="33.2079%" y="725" width="0.2612%" height="15" fill="rgb(205,98,0)" fg:x="88857" fg:w="699"/><text x="33.4579%" y="735.50"></text></g><g><title>PhaseIdealLoop::is_dominator (3,277 samples, 1.22%)</title><rect x="32.2500%" y="741" width="1.2247%" height="15" fill="rgb(214,191,48)" fg:x="86294" fg:w="3277"/><text x="32.5000%" y="751.50"></text></g><g><title>PhaseIdealLoop::get_late_ctrl (4,628 samples, 1.73%)</title><rect x="31.7556%" y="757" width="1.7296%" height="15" fill="rgb(237,112,39)" fg:x="84971" fg:w="4628"/><text x="32.0056%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_loop (63 samples, 0.02%)</title><rect x="33.4852%" y="757" width="0.0235%" height="15" fill="rgb(247,203,27)" fg:x="89599" fg:w="63"/><text x="33.7352%" y="767.50"></text></g><g><title>ProjNode::is_uncommon_trap_if_pattern (28 samples, 0.01%)</title><rect x="33.5121%" y="757" width="0.0105%" height="15" fill="rgb(235,124,28)" fg:x="89671" fg:w="28"/><text x="33.7621%" y="767.50"></text></g><g><title>PhaseIdealLoop::build_loop_late_post (5,658 samples, 2.11%)</title><rect x="31.4118%" y="773" width="2.1145%" height="15" fill="rgb(208,207,46)" fg:x="84051" fg:w="5658"/><text x="31.6618%" y="783.50">P..</text></g><g><title>PhaseIdealLoop::build_loop_late (7,291 samples, 2.72%)</title><rect x="30.8093%" y="789" width="2.7248%" height="15" fill="rgb(234,176,4)" fg:x="82439" fg:w="7291"/><text x="31.0593%" y="799.50">Ph..</text></g><g><title>PhaseIdealLoop::build_loop_tree_impl (282 samples, 0.11%)</title><rect x="33.8346%" y="773" width="0.1054%" height="15" fill="rgb(230,133,28)" fg:x="90534" fg:w="282"/><text x="34.0846%" y="783.50"></text></g><g><title>PhaseIdealLoop::build_loop_tree (1,100 samples, 0.41%)</title><rect x="33.5364%" y="789" width="0.4111%" height="15" fill="rgb(211,137,40)" fg:x="89736" fg:w="1100"/><text x="33.7864%" y="799.50"></text></g><g><title>PhaseIdealLoop::collect_potentially_useful_predicates (27 samples, 0.01%)</title><rect x="33.9505%" y="773" width="0.0101%" height="15" fill="rgb(254,35,13)" fg:x="90844" fg:w="27"/><text x="34.2005%" y="783.50"></text></g><g><title>PhaseIdealLoop::eliminate_useless_predicates (31 samples, 0.01%)</title><rect x="33.9494%" y="789" width="0.0116%" height="15" fill="rgb(225,49,51)" fg:x="90841" fg:w="31"/><text x="34.1994%" y="799.50"></text></g><g><title>PhaseIdealLoop::handle_use (40 samples, 0.01%)</title><rect x="34.1889%" y="757" width="0.0149%" height="15" fill="rgb(251,10,15)" fg:x="91482" fg:w="40"/><text x="34.4389%" y="767.50"></text></g><g><title>PhaseIdealLoop::spinup (27 samples, 0.01%)</title><rect x="34.1938%" y="741" width="0.0101%" height="15" fill="rgb(228,207,15)" fg:x="91495" fg:w="27"/><text x="34.4438%" y="751.50"></text></g><g><title>PhaseIdealLoop::do_split_if (116 samples, 0.04%)</title><rect x="34.1855%" y="773" width="0.0434%" height="15" fill="rgb(241,99,19)" fg:x="91473" fg:w="116"/><text x="34.4355%" y="783.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (33 samples, 0.01%)</title><rect x="34.2969%" y="757" width="0.0123%" height="15" fill="rgb(207,104,49)" fg:x="91771" fg:w="33"/><text x="34.5469%" y="767.50"></text></g><g><title>PhaseIdealLoop::identical_backtoback_ifs (28 samples, 0.01%)</title><rect x="34.3190%" y="757" width="0.0105%" height="15" fill="rgb(234,99,18)" fg:x="91830" fg:w="28"/><text x="34.5690%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_post (330 samples, 0.12%)</title><rect x="34.2304%" y="773" width="0.1233%" height="15" fill="rgb(213,191,49)" fg:x="91593" fg:w="330"/><text x="34.4804%" y="783.50"></text></g><g><title>ConstraintCastNode::dominating_cast (58 samples, 0.02%)</title><rect x="34.4038%" y="757" width="0.0217%" height="15" fill="rgb(210,226,19)" fg:x="92057" fg:w="58"/><text x="34.6538%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (51 samples, 0.02%)</title><rect x="34.4378%" y="757" width="0.0191%" height="15" fill="rgb(229,97,18)" fg:x="92148" fg:w="51"/><text x="34.6878%" y="767.50"></text></g><g><title>PhaseIdealLoop::has_local_phi_input (120 samples, 0.04%)</title><rect x="34.4569%" y="757" width="0.0448%" height="15" fill="rgb(211,167,15)" fg:x="92199" fg:w="120"/><text x="34.7069%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (45 samples, 0.02%)</title><rect x="34.4849%" y="741" width="0.0168%" height="15" fill="rgb(210,169,34)" fg:x="92274" fg:w="45"/><text x="34.7349%" y="751.50"></text></g><g><title>PhaseIdealLoop::remix_address_expressions (223 samples, 0.08%)</title><rect x="34.5032%" y="757" width="0.0833%" height="15" fill="rgb(241,121,31)" fg:x="92323" fg:w="223"/><text x="34.7532%" y="767.50"></text></g><g><title>PhaseIdealLoop::get_ctrl (77 samples, 0.03%)</title><rect x="34.5578%" y="741" width="0.0288%" height="15" fill="rgb(232,40,11)" fg:x="92469" fg:w="77"/><text x="34.8078%" y="751.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (80 samples, 0.03%)</title><rect x="34.6351%" y="741" width="0.0299%" height="15" fill="rgb(205,86,26)" fg:x="92676" fg:w="80"/><text x="34.8851%" y="751.50"></text></g><g><title>Unique_Node_List::remove (37 samples, 0.01%)</title><rect x="34.6512%" y="725" width="0.0138%" height="15" fill="rgb(231,126,28)" fg:x="92719" fg:w="37"/><text x="34.9012%" y="735.50"></text></g><g><title>PhaseIdealLoop::split_thru_phi (240 samples, 0.09%)</title><rect x="34.5866%" y="757" width="0.0897%" height="15" fill="rgb(219,221,18)" fg:x="92546" fg:w="240"/><text x="34.8366%" y="767.50"></text></g><g><title>PhaseIdealLoop::try_move_store_before_loop (27 samples, 0.01%)</title><rect x="34.6762%" y="757" width="0.0101%" height="15" fill="rgb(211,40,0)" fg:x="92786" fg:w="27"/><text x="34.9262%" y="767.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks_pre (923 samples, 0.34%)</title><rect x="34.3537%" y="773" width="0.3449%" height="15" fill="rgb(239,85,43)" fg:x="91923" fg:w="923"/><text x="34.6037%" y="783.50"></text></g><g><title>PhaseIdealLoop::split_if_with_blocks (1,962 samples, 0.73%)</title><rect x="33.9680%" y="789" width="0.7332%" height="15" fill="rgb(231,55,21)" fg:x="90891" fg:w="1962"/><text x="34.2180%" y="799.50"></text></g><g><title>AddNode::Value (31 samples, 0.01%)</title><rect x="34.7850%" y="757" width="0.0116%" height="15" fill="rgb(225,184,43)" fg:x="93077" fg:w="31"/><text x="35.0350%" y="767.50"></text></g><g><title>AddNode::add_of_identity (28 samples, 0.01%)</title><rect x="34.7861%" y="741" width="0.0105%" height="15" fill="rgb(251,158,41)" fg:x="93080" fg:w="28"/><text x="35.0361%" y="751.50"></text></g><g><title>CallNode::Ideal (47 samples, 0.02%)</title><rect x="34.8041%" y="757" width="0.0176%" height="15" fill="rgb(234,159,37)" fg:x="93128" fg:w="47"/><text x="35.0541%" y="767.50"></text></g><g><title>Node::remove_dead_region (47 samples, 0.02%)</title><rect x="34.8041%" y="741" width="0.0176%" height="15" fill="rgb(216,204,22)" fg:x="93128" fg:w="47"/><text x="35.0541%" y="751.50"></text></g><g><title>ConstraintCastNode::Identity (30 samples, 0.01%)</title><rect x="34.8519%" y="757" width="0.0112%" height="15" fill="rgb(214,17,3)" fg:x="93256" fg:w="30"/><text x="35.1019%" y="767.50"></text></g><g><title>MemNode::Ideal_common (44 samples, 0.02%)</title><rect x="34.9053%" y="741" width="0.0164%" height="15" fill="rgb(212,111,17)" fg:x="93399" fg:w="44"/><text x="35.1553%" y="751.50"></text></g><g><title>MemNode::find_previous_store (38 samples, 0.01%)</title><rect x="34.9248%" y="741" width="0.0142%" height="15" fill="rgb(221,157,24)" fg:x="93451" fg:w="38"/><text x="35.1748%" y="751.50"></text></g><g><title>LoadNode::Ideal (115 samples, 0.04%)</title><rect x="34.8971%" y="757" width="0.0430%" height="15" fill="rgb(252,16,13)" fg:x="93377" fg:w="115"/><text x="35.1471%" y="767.50"></text></g><g><title>NodeHash::grow (44 samples, 0.02%)</title><rect x="34.9973%" y="741" width="0.0164%" height="15" fill="rgb(221,62,2)" fg:x="93645" fg:w="44"/><text x="35.2473%" y="751.50"></text></g><g><title>NodeHash::hash_find_insert (152 samples, 0.06%)</title><rect x="34.9599%" y="757" width="0.0568%" height="15" fill="rgb(247,87,22)" fg:x="93545" fg:w="152"/><text x="35.2099%" y="767.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (62 samples, 0.02%)</title><rect x="35.0178%" y="757" width="0.0232%" height="15" fill="rgb(215,73,9)" fg:x="93700" fg:w="62"/><text x="35.2678%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (48 samples, 0.02%)</title><rect x="35.0589%" y="741" width="0.0179%" height="15" fill="rgb(207,175,33)" fg:x="93810" fg:w="48"/><text x="35.3089%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (113 samples, 0.04%)</title><rect x="35.0414%" y="757" width="0.0422%" height="15" fill="rgb(243,129,54)" fg:x="93763" fg:w="113"/><text x="35.2914%" y="767.50"></text></g><g><title>PhiNode::Ideal (56 samples, 0.02%)</title><rect x="35.0843%" y="757" width="0.0209%" height="15" fill="rgb(227,119,45)" fg:x="93878" fg:w="56"/><text x="35.3343%" y="767.50"></text></g><g><title>PhiNode::Value (34 samples, 0.01%)</title><rect x="35.1094%" y="757" width="0.0127%" height="15" fill="rgb(205,109,36)" fg:x="93945" fg:w="34"/><text x="35.3594%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (27 samples, 0.01%)</title><rect x="35.1684%" y="741" width="0.0101%" height="15" fill="rgb(205,6,39)" fg:x="94103" fg:w="27"/><text x="35.4184%" y="751.50"></text></g><g><title>RegionNode::is_unreachable_region (149 samples, 0.06%)</title><rect x="35.1789%" y="741" width="0.0557%" height="15" fill="rgb(221,32,16)" fg:x="94131" fg:w="149"/><text x="35.4289%" y="751.50"></text></g><g><title>RegionNode::Ideal (268 samples, 0.10%)</title><rect x="35.1363%" y="757" width="0.1002%" height="15" fill="rgb(228,144,50)" fg:x="94017" fg:w="268"/><text x="35.3863%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (28 samples, 0.01%)</title><rect x="35.2462%" y="501" width="0.0105%" height="15" fill="rgb(229,201,53)" fg:x="94311" fg:w="28"/><text x="35.4962%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (31 samples, 0.01%)</title><rect x="35.2462%" y="517" width="0.0116%" height="15" fill="rgb(249,153,27)" fg:x="94311" fg:w="31"/><text x="35.4962%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (36 samples, 0.01%)</title><rect x="35.2462%" y="533" width="0.0135%" height="15" fill="rgb(227,106,25)" fg:x="94311" fg:w="36"/><text x="35.4962%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (43 samples, 0.02%)</title><rect x="35.2462%" y="549" width="0.0161%" height="15" fill="rgb(230,65,29)" fg:x="94311" fg:w="43"/><text x="35.4962%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (46 samples, 0.02%)</title><rect x="35.2462%" y="565" width="0.0172%" height="15" fill="rgb(221,57,46)" fg:x="94311" fg:w="46"/><text x="35.4962%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.02%)</title><rect x="35.2462%" y="581" width="0.0202%" height="15" fill="rgb(229,161,17)" fg:x="94311" fg:w="54"/><text x="35.4962%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (57 samples, 0.02%)</title><rect x="35.2462%" y="597" width="0.0213%" height="15" fill="rgb(222,213,11)" fg:x="94311" fg:w="57"/><text x="35.4962%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (62 samples, 0.02%)</title><rect x="35.2462%" y="613" width="0.0232%" height="15" fill="rgb(235,35,13)" fg:x="94311" fg:w="62"/><text x="35.4962%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (66 samples, 0.02%)</title><rect x="35.2462%" y="629" width="0.0247%" height="15" fill="rgb(233,158,34)" fg:x="94311" fg:w="66"/><text x="35.4962%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (70 samples, 0.03%)</title><rect x="35.2462%" y="645" width="0.0262%" height="15" fill="rgb(215,151,48)" fg:x="94311" fg:w="70"/><text x="35.4962%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (73 samples, 0.03%)</title><rect x="35.2462%" y="661" width="0.0273%" height="15" fill="rgb(229,84,14)" fg:x="94311" fg:w="73"/><text x="35.4962%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (75 samples, 0.03%)</title><rect x="35.2462%" y="677" width="0.0280%" height="15" fill="rgb(229,68,14)" fg:x="94311" fg:w="75"/><text x="35.4962%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (80 samples, 0.03%)</title><rect x="35.2462%" y="693" width="0.0299%" height="15" fill="rgb(243,106,26)" fg:x="94311" fg:w="80"/><text x="35.4962%" y="703.50"></text></g><g><title>InitializeNode::can_capture_store (95 samples, 0.04%)</title><rect x="35.2458%" y="741" width="0.0355%" height="15" fill="rgb(206,45,38)" fg:x="94310" fg:w="95"/><text x="35.4958%" y="751.50"></text></g><g><title>InitializeNode::detect_init_independence (95 samples, 0.04%)</title><rect x="35.2458%" y="725" width="0.0355%" height="15" fill="rgb(226,6,15)" fg:x="94310" fg:w="95"/><text x="35.4958%" y="735.50"></text></g><g><title>InitializeNode::detect_init_independence (94 samples, 0.04%)</title><rect x="35.2462%" y="709" width="0.0351%" height="15" fill="rgb(232,22,54)" fg:x="94311" fg:w="94"/><text x="35.4962%" y="719.50"></text></g><g><title>StoreNode::Ideal (110 samples, 0.04%)</title><rect x="35.2454%" y="757" width="0.0411%" height="15" fill="rgb(229,222,32)" fg:x="94309" fg:w="110"/><text x="35.4954%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (1,598 samples, 0.60%)</title><rect x="34.7170%" y="773" width="0.5972%" height="15" fill="rgb(228,62,29)" fg:x="92895" fg:w="1598"/><text x="34.9670%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (1,650 samples, 0.62%)</title><rect x="34.7017%" y="789" width="0.6166%" height="15" fill="rgb(251,103,34)" fg:x="92854" fg:w="1650"/><text x="34.9517%" y="799.50"></text></g><g><title>SuperWord::are_adjacent_refs (30 samples, 0.01%)</title><rect x="35.3452%" y="741" width="0.0112%" height="15" fill="rgb(233,12,30)" fg:x="94576" fg:w="30"/><text x="35.5952%" y="751.50"></text></g><g><title>SuperWord::find_adjacent_refs (50 samples, 0.02%)</title><rect x="35.3441%" y="757" width="0.0187%" height="15" fill="rgb(238,52,0)" fg:x="94573" fg:w="50"/><text x="35.5941%" y="767.50"></text></g><g><title>SuperWord::SLP_extract (97 samples, 0.04%)</title><rect x="35.3359%" y="773" width="0.0363%" height="15" fill="rgb(223,98,5)" fg:x="94551" fg:w="97"/><text x="35.5859%" y="783.50"></text></g><g><title>SuperWord::transform_loop (100 samples, 0.04%)</title><rect x="35.3355%" y="789" width="0.0374%" height="15" fill="rgb(228,75,37)" fg:x="94550" fg:w="100"/><text x="35.5855%" y="799.50"></text></g><g><title>[libc-2.31.so] (43 samples, 0.02%)</title><rect x="35.3729%" y="789" width="0.0161%" height="15" fill="rgb(205,115,49)" fg:x="94650" fg:w="43"/><text x="35.6229%" y="799.50"></text></g><g><title>PhaseIdealLoop::build_and_optimize (16,518 samples, 6.17%)</title><rect x="29.2162%" y="805" width="6.1732%" height="15" fill="rgb(250,154,43)" fg:x="78176" fg:w="16518"/><text x="29.4662%" y="815.50">PhaseIde..</text></g><g><title>PhaseIterGVN::add_users_to_worklist (70 samples, 0.03%)</title><rect x="35.4155%" y="789" width="0.0262%" height="15" fill="rgb(226,43,29)" fg:x="94764" fg:w="70"/><text x="35.6655%" y="799.50"></text></g><g><title>PhaseIterGVN::PhaseIterGVN (142 samples, 0.05%)</title><rect x="35.3897%" y="805" width="0.0531%" height="15" fill="rgb(249,228,39)" fg:x="94695" fg:w="142"/><text x="35.6397%" y="815.50"></text></g><g><title>CallNode::Ideal (30 samples, 0.01%)</title><rect x="35.5650%" y="773" width="0.0112%" height="15" fill="rgb(216,79,43)" fg:x="95164" fg:w="30"/><text x="35.8150%" y="783.50"></text></g><g><title>Node::remove_dead_region (27 samples, 0.01%)</title><rect x="35.5661%" y="757" width="0.0101%" height="15" fill="rgb(228,95,12)" fg:x="95167" fg:w="27"/><text x="35.8161%" y="767.50"></text></g><g><title>IfNode::fold_compares (30 samples, 0.01%)</title><rect x="35.6322%" y="757" width="0.0112%" height="15" fill="rgb(249,221,15)" fg:x="95344" fg:w="30"/><text x="35.8822%" y="767.50"></text></g><g><title>IfNode::search_identical (44 samples, 0.02%)</title><rect x="35.6434%" y="757" width="0.0164%" height="15" fill="rgb(233,34,13)" fg:x="95374" fg:w="44"/><text x="35.8934%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (105 samples, 0.04%)</title><rect x="35.6737%" y="741" width="0.0392%" height="15" fill="rgb(214,103,39)" fg:x="95455" fg:w="105"/><text x="35.9237%" y="751.50"></text></g><g><title>Unique_Node_List::remove (92 samples, 0.03%)</title><rect x="35.6786%" y="725" width="0.0344%" height="15" fill="rgb(251,126,39)" fg:x="95468" fg:w="92"/><text x="35.9286%" y="735.50"></text></g><g><title>PhaseIterGVN::subsume_node (110 samples, 0.04%)</title><rect x="35.6726%" y="757" width="0.0411%" height="15" fill="rgb(214,216,36)" fg:x="95452" fg:w="110"/><text x="35.9226%" y="767.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (43 samples, 0.02%)</title><rect x="35.7313%" y="741" width="0.0161%" height="15" fill="rgb(220,221,8)" fg:x="95609" fg:w="43"/><text x="35.9813%" y="751.50"></text></g><g><title>Unique_Node_List::remove (34 samples, 0.01%)</title><rect x="35.7346%" y="725" width="0.0127%" height="15" fill="rgb(240,216,3)" fg:x="95618" fg:w="34"/><text x="35.9846%" y="735.50"></text></g><g><title>IfNode::Ideal (370 samples, 0.14%)</title><rect x="35.6173%" y="773" width="0.1383%" height="15" fill="rgb(232,218,17)" fg:x="95304" fg:w="370"/><text x="35.8673%" y="783.50"></text></g><g><title>split_if (94 samples, 0.04%)</title><rect x="35.7204%" y="757" width="0.0351%" height="15" fill="rgb(229,163,45)" fg:x="95580" fg:w="94"/><text x="35.9704%" y="767.50"></text></g><g><title>MemNode::adr_type (29 samples, 0.01%)</title><rect x="35.7832%" y="741" width="0.0108%" height="15" fill="rgb(231,110,42)" fg:x="95748" fg:w="29"/><text x="36.0332%" y="751.50"></text></g><g><title>MemNode::Ideal_common (74 samples, 0.03%)</title><rect x="35.7739%" y="757" width="0.0277%" height="15" fill="rgb(208,170,48)" fg:x="95723" fg:w="74"/><text x="36.0239%" y="767.50"></text></g><g><title>Node::dominates (56 samples, 0.02%)</title><rect x="35.8090%" y="725" width="0.0209%" height="15" fill="rgb(239,116,25)" fg:x="95817" fg:w="56"/><text x="36.0590%" y="735.50"></text></g><g><title>MemNode::all_controls_dominate (59 samples, 0.02%)</title><rect x="35.8086%" y="741" width="0.0220%" height="15" fill="rgb(219,200,50)" fg:x="95816" fg:w="59"/><text x="36.0586%" y="751.50"></text></g><g><title>MemNode::check_if_adr_maybe_raw (28 samples, 0.01%)</title><rect x="35.8307%" y="741" width="0.0105%" height="15" fill="rgb(245,200,0)" fg:x="95875" fg:w="28"/><text x="36.0807%" y="751.50"></text></g><g><title>MemNode::find_previous_store (108 samples, 0.04%)</title><rect x="35.8030%" y="757" width="0.0404%" height="15" fill="rgb(245,119,33)" fg:x="95801" fg:w="108"/><text x="36.0530%" y="767.50"></text></g><g><title>LoadNode::Ideal (210 samples, 0.08%)</title><rect x="35.7656%" y="773" width="0.0785%" height="15" fill="rgb(231,125,12)" fg:x="95701" fg:w="210"/><text x="36.0156%" y="783.50"></text></g><g><title>LoadNode::Value (33 samples, 0.01%)</title><rect x="35.8538%" y="773" width="0.0123%" height="15" fill="rgb(216,96,41)" fg:x="95937" fg:w="33"/><text x="36.1038%" y="783.50"></text></g><g><title>MergeMemNode::Ideal (60 samples, 0.02%)</title><rect x="35.8751%" y="773" width="0.0224%" height="15" fill="rgb(248,43,45)" fg:x="95994" fg:w="60"/><text x="36.1251%" y="783.50"></text></g><g><title>NodeHash::grow (64 samples, 0.02%)</title><rect x="35.9630%" y="757" width="0.0239%" height="15" fill="rgb(217,222,7)" fg:x="96229" fg:w="64"/><text x="36.2130%" y="767.50"></text></g><g><title>NodeHash::hash_find_insert (215 samples, 0.08%)</title><rect x="35.9103%" y="773" width="0.0804%" height="15" fill="rgb(233,28,6)" fg:x="96088" fg:w="215"/><text x="36.1603%" y="783.50"></text></g><g><title>PhaseIterGVN::add_users_to_worklist (72 samples, 0.03%)</title><rect x="35.9910%" y="773" width="0.0269%" height="15" fill="rgb(231,218,15)" fg:x="96304" fg:w="72"/><text x="36.2410%" y="783.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (84 samples, 0.03%)</title><rect x="36.0568%" y="757" width="0.0314%" height="15" fill="rgb(226,171,48)" fg:x="96480" fg:w="84"/><text x="36.3068%" y="767.50"></text></g><g><title>Unique_Node_List::remove (35 samples, 0.01%)</title><rect x="36.0751%" y="741" width="0.0131%" height="15" fill="rgb(235,201,9)" fg:x="96529" fg:w="35"/><text x="36.3251%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (206 samples, 0.08%)</title><rect x="36.0187%" y="773" width="0.0770%" height="15" fill="rgb(217,80,15)" fg:x="96378" fg:w="206"/><text x="36.2687%" y="783.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (60 samples, 0.02%)</title><rect x="36.1345%" y="757" width="0.0224%" height="15" fill="rgb(219,152,8)" fg:x="96688" fg:w="60"/><text x="36.3845%" y="767.50"></text></g><g><title>PhiNode::unique_input (29 samples, 0.01%)</title><rect x="36.1588%" y="757" width="0.0108%" height="15" fill="rgb(243,107,38)" fg:x="96753" fg:w="29"/><text x="36.4088%" y="767.50"></text></g><g><title>PhiNode::Ideal (199 samples, 0.07%)</title><rect x="36.0960%" y="773" width="0.0744%" height="15" fill="rgb(231,17,5)" fg:x="96585" fg:w="199"/><text x="36.3460%" y="783.50"></text></g><g><title>PhiNode::Value (49 samples, 0.02%)</title><rect x="36.1771%" y="773" width="0.0183%" height="15" fill="rgb(209,25,54)" fg:x="96802" fg:w="49"/><text x="36.4271%" y="783.50"></text></g><g><title>Unique_Node_List::remove (137 samples, 0.05%)</title><rect x="36.2728%" y="725" width="0.0512%" height="15" fill="rgb(219,0,2)" fg:x="97058" fg:w="137"/><text x="36.5228%" y="735.50"></text></g><g><title>PhaseIterGVN::remove_globally_dead_node (164 samples, 0.06%)</title><rect x="36.2634%" y="741" width="0.0613%" height="15" fill="rgb(246,9,5)" fg:x="97033" fg:w="164"/><text x="36.5134%" y="751.50"></text></g><g><title>PhaseIterGVN::subsume_node (187 samples, 0.07%)</title><rect x="36.2578%" y="757" width="0.0699%" height="15" fill="rgb(226,159,4)" fg:x="97018" fg:w="187"/><text x="36.5078%" y="767.50"></text></g><g><title>PhiNode::is_unsafe_data_reference (32 samples, 0.01%)</title><rect x="36.3277%" y="757" width="0.0120%" height="15" fill="rgb(219,175,34)" fg:x="97205" fg:w="32"/><text x="36.5777%" y="767.50"></text></g><g><title>RegionNode::is_unreachable_region (119 samples, 0.04%)</title><rect x="36.3401%" y="757" width="0.0445%" height="15" fill="rgb(236,10,46)" fg:x="97238" fg:w="119"/><text x="36.5901%" y="767.50"></text></g><g><title>RegionNode::Ideal (458 samples, 0.17%)</title><rect x="36.2149%" y="773" width="0.1712%" height="15" fill="rgb(240,211,16)" fg:x="96903" fg:w="458"/><text x="36.4649%" y="783.50"></text></g><g><title>InitializeNode::detect_init_independence (27 samples, 0.01%)</title><rect x="36.3950%" y="437" width="0.0101%" height="15" fill="rgb(205,3,43)" fg:x="97385" fg:w="27"/><text x="36.6450%" y="447.50"></text></g><g><title>InitializeNode::detect_init_independence (44 samples, 0.02%)</title><rect x="36.3950%" y="453" width="0.0164%" height="15" fill="rgb(245,7,22)" fg:x="97385" fg:w="44"/><text x="36.6450%" y="463.50"></text></g><g><title>InitializeNode::detect_init_independence (54 samples, 0.02%)</title><rect x="36.3950%" y="469" width="0.0202%" height="15" fill="rgb(239,132,32)" fg:x="97385" fg:w="54"/><text x="36.6450%" y="479.50"></text></g><g><title>InitializeNode::detect_init_independence (66 samples, 0.02%)</title><rect x="36.3950%" y="485" width="0.0247%" height="15" fill="rgb(228,202,34)" fg:x="97385" fg:w="66"/><text x="36.6450%" y="495.50"></text></g><g><title>InitializeNode::detect_init_independence (78 samples, 0.03%)</title><rect x="36.3950%" y="501" width="0.0292%" height="15" fill="rgb(254,200,22)" fg:x="97385" fg:w="78"/><text x="36.6450%" y="511.50"></text></g><g><title>InitializeNode::detect_init_independence (90 samples, 0.03%)</title><rect x="36.3950%" y="517" width="0.0336%" height="15" fill="rgb(219,10,39)" fg:x="97385" fg:w="90"/><text x="36.6450%" y="527.50"></text></g><g><title>InitializeNode::detect_init_independence (111 samples, 0.04%)</title><rect x="36.3946%" y="533" width="0.0415%" height="15" fill="rgb(226,210,39)" fg:x="97384" fg:w="111"/><text x="36.6446%" y="543.50"></text></g><g><title>InitializeNode::detect_init_independence (122 samples, 0.05%)</title><rect x="36.3946%" y="549" width="0.0456%" height="15" fill="rgb(208,219,16)" fg:x="97384" fg:w="122"/><text x="36.6446%" y="559.50"></text></g><g><title>InitializeNode::detect_init_independence (138 samples, 0.05%)</title><rect x="36.3946%" y="565" width="0.0516%" height="15" fill="rgb(216,158,51)" fg:x="97384" fg:w="138"/><text x="36.6446%" y="575.50"></text></g><g><title>InitializeNode::detect_init_independence (161 samples, 0.06%)</title><rect x="36.3946%" y="581" width="0.0602%" height="15" fill="rgb(233,14,44)" fg:x="97384" fg:w="161"/><text x="36.6446%" y="591.50"></text></g><g><title>InitializeNode::detect_init_independence (174 samples, 0.07%)</title><rect x="36.3946%" y="597" width="0.0650%" height="15" fill="rgb(237,97,39)" fg:x="97384" fg:w="174"/><text x="36.6446%" y="607.50"></text></g><g><title>InitializeNode::detect_init_independence (185 samples, 0.07%)</title><rect x="36.3946%" y="613" width="0.0691%" height="15" fill="rgb(218,198,43)" fg:x="97384" fg:w="185"/><text x="36.6446%" y="623.50"></text></g><g><title>InitializeNode::detect_init_independence (201 samples, 0.08%)</title><rect x="36.3946%" y="629" width="0.0751%" height="15" fill="rgb(231,104,20)" fg:x="97384" fg:w="201"/><text x="36.6446%" y="639.50"></text></g><g><title>InitializeNode::detect_init_independence (208 samples, 0.08%)</title><rect x="36.3946%" y="645" width="0.0777%" height="15" fill="rgb(254,36,13)" fg:x="97384" fg:w="208"/><text x="36.6446%" y="655.50"></text></g><g><title>InitializeNode::detect_init_independence (226 samples, 0.08%)</title><rect x="36.3946%" y="661" width="0.0845%" height="15" fill="rgb(248,14,50)" fg:x="97384" fg:w="226"/><text x="36.6446%" y="671.50"></text></g><g><title>InitializeNode::detect_init_independence (234 samples, 0.09%)</title><rect x="36.3946%" y="677" width="0.0875%" height="15" fill="rgb(217,107,29)" fg:x="97384" fg:w="234"/><text x="36.6446%" y="687.50"></text></g><g><title>InitializeNode::detect_init_independence (250 samples, 0.09%)</title><rect x="36.3946%" y="693" width="0.0934%" height="15" fill="rgb(251,169,33)" fg:x="97384" fg:w="250"/><text x="36.6446%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (267 samples, 0.10%)</title><rect x="36.3946%" y="709" width="0.0998%" height="15" fill="rgb(217,108,32)" fg:x="97384" fg:w="267"/><text x="36.6446%" y="719.50"></text></g><g><title>Node::dominates (30 samples, 0.01%)</title><rect x="36.4948%" y="693" width="0.0112%" height="15" fill="rgb(219,66,42)" fg:x="97652" fg:w="30"/><text x="36.7448%" y="703.50"></text></g><g><title>InitializeNode::detect_init_independence (300 samples, 0.11%)</title><rect x="36.3946%" y="725" width="0.1121%" height="15" fill="rgb(206,180,7)" fg:x="97384" fg:w="300"/><text x="36.6446%" y="735.50"></text></g><g><title>MemNode::all_controls_dominate (33 samples, 0.01%)</title><rect x="36.4944%" y="709" width="0.0123%" height="15" fill="rgb(208,226,31)" fg:x="97651" fg:w="33"/><text x="36.7444%" y="719.50"></text></g><g><title>InitializeNode::can_capture_store (305 samples, 0.11%)</title><rect x="36.3946%" y="757" width="0.1140%" height="15" fill="rgb(218,26,49)" fg:x="97384" fg:w="305"/><text x="36.6446%" y="767.50"></text></g><g><title>InitializeNode::detect_init_independence (305 samples, 0.11%)</title><rect x="36.3946%" y="741" width="0.1140%" height="15" fill="rgb(233,197,48)" fg:x="97384" fg:w="305"/><text x="36.6446%" y="751.50"></text></g><g><title>StoreNode::Ideal (349 samples, 0.13%)</title><rect x="36.3928%" y="773" width="0.1304%" height="15" fill="rgb(252,181,51)" fg:x="97379" fg:w="349"/><text x="36.6428%" y="783.50"></text></g><g><title>MemNode::Ideal_common (39 samples, 0.01%)</title><rect x="36.5086%" y="757" width="0.0146%" height="15" fill="rgb(253,90,19)" fg:x="97689" fg:w="39"/><text x="36.7586%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (2,856 samples, 1.07%)</title><rect x="35.4801%" y="789" width="1.0674%" height="15" fill="rgb(215,171,30)" fg:x="94937" fg:w="2856"/><text x="35.7301%" y="799.50"></text></g><g><title>PhaseIterGVN::optimize (2,978 samples, 1.11%)</title><rect x="35.4427%" y="805" width="1.1129%" height="15" fill="rgb(214,222,9)" fg:x="94837" fg:w="2978"/><text x="35.6927%" y="815.50"></text></g><g><title>PhaseMacroExpand::eliminate_macro_nodes (31 samples, 0.01%)</title><rect x="36.5568%" y="805" width="0.0116%" height="15" fill="rgb(223,3,22)" fg:x="97818" fg:w="31"/><text x="36.8068%" y="815.50"></text></g><g><title>PhaseMacroExpand::eliminate_allocate_node (31 samples, 0.01%)</title><rect x="36.5568%" y="789" width="0.0116%" height="15" fill="rgb(225,196,46)" fg:x="97818" fg:w="31"/><text x="36.8068%" y="799.50"></text></g><g><title>IfNode::Ideal (37 samples, 0.01%)</title><rect x="36.6028%" y="757" width="0.0138%" height="15" fill="rgb(209,110,37)" fg:x="97941" fg:w="37"/><text x="36.8528%" y="767.50"></text></g><g><title>LoadNode::Ideal (28 samples, 0.01%)</title><rect x="36.6166%" y="757" width="0.0105%" height="15" fill="rgb(249,89,12)" fg:x="97978" fg:w="28"/><text x="36.8666%" y="767.50"></text></g><g><title>PhaseIterGVN::transform_old (293 samples, 0.11%)</title><rect x="36.5763%" y="773" width="0.1095%" height="15" fill="rgb(226,27,33)" fg:x="97870" fg:w="293"/><text x="36.8263%" y="783.50"></text></g><g><title>PhaseIterGVN::optimize (312 samples, 0.12%)</title><rect x="36.5706%" y="789" width="0.1166%" height="15" fill="rgb(213,82,22)" fg:x="97855" fg:w="312"/><text x="36.8206%" y="799.50"></text></g><g><title>PhaseIterGVN::subsume_node (33 samples, 0.01%)</title><rect x="36.7063%" y="773" width="0.0123%" height="15" fill="rgb(248,140,0)" fg:x="98218" fg:w="33"/><text x="36.9563%" y="783.50"></text></g><g><title>PhaseMacroExpand::expand_allocate_common (109 samples, 0.04%)</title><rect x="36.6906%" y="789" width="0.0407%" height="15" fill="rgb(228,106,3)" fg:x="98176" fg:w="109"/><text x="36.9406%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_arraycopy_node (30 samples, 0.01%)</title><rect x="36.7313%" y="789" width="0.0112%" height="15" fill="rgb(209,23,37)" fg:x="98285" fg:w="30"/><text x="36.9813%" y="799.50"></text></g><g><title>PhaseMacroExpand::expand_macro_nodes (476 samples, 0.18%)</title><rect x="36.5684%" y="805" width="0.1779%" height="15" fill="rgb(241,93,50)" fg:x="97849" fg:w="476"/><text x="36.8184%" y="815.50"></text></g><g><title>Compile::identify_useful_nodes (96 samples, 0.04%)</title><rect x="36.7605%" y="773" width="0.0359%" height="15" fill="rgb(253,46,43)" fg:x="98363" fg:w="96"/><text x="37.0105%" y="783.50"></text></g><g><title>Compile::remove_useless_nodes (72 samples, 0.03%)</title><rect x="36.7964%" y="773" width="0.0269%" height="15" fill="rgb(226,206,43)" fg:x="98459" fg:w="72"/><text x="37.0464%" y="783.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (204 samples, 0.08%)</title><rect x="36.7530%" y="789" width="0.0762%" height="15" fill="rgb(217,54,7)" fg:x="98343" fg:w="204"/><text x="37.0030%" y="799.50"></text></g><g><title>PhaseRenumberLive::PhaseRenumberLive (224 samples, 0.08%)</title><rect x="36.7463%" y="805" width="0.0837%" height="15" fill="rgb(223,5,52)" fg:x="98325" fg:w="224"/><text x="36.9963%" y="815.50"></text></g><g><title>Compile::Optimize (23,022 samples, 8.60%)</title><rect x="28.2288%" y="821" width="8.6038%" height="15" fill="rgb(206,52,46)" fg:x="75534" fg:w="23022"/><text x="28.4788%" y="831.50">Compile::Opt..</text></g><g><title>Parse::do_call (59 samples, 0.02%)</title><rect x="36.8610%" y="677" width="0.0220%" height="15" fill="rgb(253,136,11)" fg:x="98632" fg:w="59"/><text x="37.1110%" y="687.50"></text></g><g><title>Parse::do_field_access (36 samples, 0.01%)</title><rect x="36.8842%" y="677" width="0.0135%" height="15" fill="rgb(208,106,33)" fg:x="98694" fg:w="36"/><text x="37.1342%" y="687.50"></text></g><g><title>Parse::do_one_block (207 samples, 0.08%)</title><rect x="36.8427%" y="709" width="0.0774%" height="15" fill="rgb(206,54,4)" fg:x="98583" fg:w="207"/><text x="37.0927%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (183 samples, 0.07%)</title><rect x="36.8517%" y="693" width="0.0684%" height="15" fill="rgb(213,3,15)" fg:x="98607" fg:w="183"/><text x="37.1017%" y="703.50"></text></g><g><title>Parse::do_all_blocks (216 samples, 0.08%)</title><rect x="36.8420%" y="725" width="0.0807%" height="15" fill="rgb(252,211,39)" fg:x="98581" fg:w="216"/><text x="37.0920%" y="735.50"></text></g><g><title>ParseGenerator::generate (226 samples, 0.08%)</title><rect x="36.8420%" y="757" width="0.0845%" height="15" fill="rgb(223,6,36)" fg:x="98581" fg:w="226"/><text x="37.0920%" y="767.50"></text></g><g><title>Parse::Parse (226 samples, 0.08%)</title><rect x="36.8420%" y="741" width="0.0845%" height="15" fill="rgb(252,169,45)" fg:x="98581" fg:w="226"/><text x="37.0920%" y="751.50"></text></g><g><title>CompileBroker::compiler_thread_loop (266 samples, 0.10%)</title><rect x="36.8356%" y="821" width="0.0994%" height="15" fill="rgb(212,48,26)" fg:x="98564" fg:w="266"/><text x="37.0856%" y="831.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (266 samples, 0.10%)</title><rect x="36.8356%" y="805" width="0.0994%" height="15" fill="rgb(251,102,48)" fg:x="98564" fg:w="266"/><text x="37.0856%" y="815.50"></text></g><g><title>C2Compiler::compile_method (266 samples, 0.10%)</title><rect x="36.8356%" y="789" width="0.0994%" height="15" fill="rgb(243,208,16)" fg:x="98564" fg:w="266"/><text x="37.0856%" y="799.50"></text></g><g><title>Compile::Compile (266 samples, 0.10%)</title><rect x="36.8356%" y="773" width="0.0994%" height="15" fill="rgb(219,96,24)" fg:x="98564" fg:w="266"/><text x="37.0856%" y="783.50"></text></g><g><title>ciTypeFlow::StateVector::do_getstatic (29 samples, 0.01%)</title><rect x="36.9354%" y="645" width="0.0108%" height="15" fill="rgb(219,33,29)" fg:x="98831" fg:w="29"/><text x="37.1854%" y="655.50"></text></g><g><title>ciBytecodeStream::get_field (29 samples, 0.01%)</title><rect x="36.9354%" y="629" width="0.0108%" height="15" fill="rgb(223,176,5)" fg:x="98831" fg:w="29"/><text x="37.1854%" y="639.50"></text></g><g><title>ciMethod::ciMethod (30 samples, 0.01%)</title><rect x="36.9515%" y="565" width="0.0112%" height="15" fill="rgb(228,140,14)" fg:x="98874" fg:w="30"/><text x="37.2015%" y="575.50"></text></g><g><title>ciObjectFactory::get_metadata (39 samples, 0.01%)</title><rect x="36.9485%" y="597" width="0.0146%" height="15" fill="rgb(217,179,31)" fg:x="98866" fg:w="39"/><text x="37.1985%" y="607.50"></text></g><g><title>ciObjectFactory::create_new_metadata (33 samples, 0.01%)</title><rect x="36.9507%" y="581" width="0.0123%" height="15" fill="rgb(230,9,30)" fg:x="98872" fg:w="33"/><text x="37.2007%" y="591.50"></text></g><g><title>ciEnv::get_method_by_index_impl (45 samples, 0.02%)</title><rect x="36.9466%" y="613" width="0.0168%" height="15" fill="rgb(230,136,20)" fg:x="98861" fg:w="45"/><text x="37.1966%" y="623.50"></text></g><g><title>ciTypeFlow::StateVector::do_invoke (47 samples, 0.02%)</title><rect x="36.9462%" y="645" width="0.0176%" height="15" fill="rgb(215,210,22)" fg:x="98860" fg:w="47"/><text x="37.1962%" y="655.50"></text></g><g><title>ciBytecodeStream::get_method (47 samples, 0.02%)</title><rect x="36.9462%" y="629" width="0.0176%" height="15" fill="rgb(218,43,5)" fg:x="98860" fg:w="47"/><text x="37.1962%" y="639.50"></text></g><g><title>CallGenerator::for_inline (80 samples, 0.03%)</title><rect x="36.9350%" y="773" width="0.0299%" height="15" fill="rgb(216,11,5)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="783.50"></text></g><g><title>InlineTree::check_can_parse (80 samples, 0.03%)</title><rect x="36.9350%" y="757" width="0.0299%" height="15" fill="rgb(209,82,29)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="767.50"></text></g><g><title>ciMethod::get_flow_analysis (80 samples, 0.03%)</title><rect x="36.9350%" y="741" width="0.0299%" height="15" fill="rgb(244,115,12)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="751.50"></text></g><g><title>ciTypeFlow::do_flow (80 samples, 0.03%)</title><rect x="36.9350%" y="725" width="0.0299%" height="15" fill="rgb(222,82,18)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="735.50"></text></g><g><title>ciTypeFlow::flow_types (80 samples, 0.03%)</title><rect x="36.9350%" y="709" width="0.0299%" height="15" fill="rgb(249,227,8)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="719.50"></text></g><g><title>ciTypeFlow::df_flow_types (80 samples, 0.03%)</title><rect x="36.9350%" y="693" width="0.0299%" height="15" fill="rgb(253,141,45)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="703.50"></text></g><g><title>ciTypeFlow::flow_block (80 samples, 0.03%)</title><rect x="36.9350%" y="677" width="0.0299%" height="15" fill="rgb(234,184,4)" fg:x="98830" fg:w="80"/><text x="37.1850%" y="687.50"></text></g><g><title>ciTypeFlow::StateVector::apply_one_bytecode (79 samples, 0.03%)</title><rect x="36.9354%" y="661" width="0.0295%" height="15" fill="rgb(218,194,23)" fg:x="98831" fg:w="79"/><text x="37.1854%" y="671.50"></text></g><g><title>InlineTree::should_not_inline (27 samples, 0.01%)</title><rect x="37.0008%" y="629" width="0.0101%" height="15" fill="rgb(235,66,41)" fg:x="99006" fg:w="27"/><text x="37.2508%" y="639.50"></text></g><g><title>InlineTree::try_to_inline (35 samples, 0.01%)</title><rect x="37.0001%" y="645" width="0.0131%" height="15" fill="rgb(245,217,1)" fg:x="99004" fg:w="35"/><text x="37.2501%" y="655.50"></text></g><g><title>InlineTree::ok_to_inline (72 samples, 0.03%)</title><rect x="36.9989%" y="661" width="0.0269%" height="15" fill="rgb(229,91,1)" fg:x="99001" fg:w="72"/><text x="37.2489%" y="671.50"></text></g><g><title>ciMethod::get_flow_analysis (34 samples, 0.01%)</title><rect x="37.0131%" y="645" width="0.0127%" height="15" fill="rgb(207,101,30)" fg:x="99039" fg:w="34"/><text x="37.2631%" y="655.50"></text></g><g><title>Compile::call_generator (100 samples, 0.04%)</title><rect x="36.9926%" y="677" width="0.0374%" height="15" fill="rgb(223,82,49)" fg:x="98984" fg:w="100"/><text x="37.2426%" y="687.50"></text></g><g><title>DirectCallGenerator::generate (28 samples, 0.01%)</title><rect x="37.0300%" y="677" width="0.0105%" height="15" fill="rgb(218,167,17)" fg:x="99084" fg:w="28"/><text x="37.2800%" y="687.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="37.1047%" y="597" width="0.0108%" height="15" fill="rgb(208,103,14)" fg:x="99284" fg:w="29"/><text x="37.3547%" y="607.50"></text></g><g><title>Parse::do_field_access (33 samples, 0.01%)</title><rect x="37.1181%" y="597" width="0.0123%" height="15" fill="rgb(238,20,8)" fg:x="99320" fg:w="33"/><text x="37.3681%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (150 samples, 0.06%)</title><rect x="37.0946%" y="613" width="0.0561%" height="15" fill="rgb(218,80,54)" fg:x="99257" fg:w="150"/><text x="37.3446%" y="623.50"></text></g><g><title>Parse::do_one_block (173 samples, 0.06%)</title><rect x="37.0864%" y="629" width="0.0647%" height="15" fill="rgb(240,144,17)" fg:x="99235" fg:w="173"/><text x="37.3364%" y="639.50"></text></g><g><title>Parse::do_all_blocks (195 samples, 0.07%)</title><rect x="37.0841%" y="645" width="0.0729%" height="15" fill="rgb(245,27,50)" fg:x="99229" fg:w="195"/><text x="37.3341%" y="655.50"></text></g><g><title>Parse::do_exits (27 samples, 0.01%)</title><rect x="37.1570%" y="645" width="0.0101%" height="15" fill="rgb(251,51,7)" fg:x="99424" fg:w="27"/><text x="37.4070%" y="655.50"></text></g><g><title>ParseGenerator::generate (300 samples, 0.11%)</title><rect x="37.0658%" y="677" width="0.1121%" height="15" fill="rgb(245,217,29)" fg:x="99180" fg:w="300"/><text x="37.3158%" y="687.50"></text></g><g><title>Parse::Parse (299 samples, 0.11%)</title><rect x="37.0662%" y="661" width="0.1117%" height="15" fill="rgb(221,176,29)" fg:x="99181" fg:w="299"/><text x="37.3162%" y="671.50"></text></g><g><title>GraphKit::null_check_common (31 samples, 0.01%)</title><rect x="37.1809%" y="661" width="0.0116%" height="15" fill="rgb(212,180,24)" fg:x="99488" fg:w="31"/><text x="37.4309%" y="671.50"></text></g><g><title>PredictedCallGenerator::generate (117 samples, 0.04%)</title><rect x="37.1779%" y="677" width="0.0437%" height="15" fill="rgb(254,24,2)" fg:x="99480" fg:w="117"/><text x="37.4279%" y="687.50"></text></g><g><title>Parse::do_call (640 samples, 0.24%)</title><rect x="36.9926%" y="693" width="0.2392%" height="15" fill="rgb(230,100,2)" fg:x="98984" fg:w="640"/><text x="37.2426%" y="703.50"></text></g><g><title>Parse::do_get_xxx (37 samples, 0.01%)</title><rect x="37.2448%" y="677" width="0.0138%" height="15" fill="rgb(219,142,25)" fg:x="99659" fg:w="37"/><text x="37.4948%" y="687.50"></text></g><g><title>Parse::do_put_xxx (28 samples, 0.01%)</title><rect x="37.2587%" y="677" width="0.0105%" height="15" fill="rgb(240,73,43)" fg:x="99696" fg:w="28"/><text x="37.5087%" y="687.50"></text></g><g><title>Parse::do_field_access (78 samples, 0.03%)</title><rect x="37.2411%" y="693" width="0.0292%" height="15" fill="rgb(214,114,15)" fg:x="99649" fg:w="78"/><text x="37.4911%" y="703.50"></text></g><g><title>Parse::do_if (27 samples, 0.01%)</title><rect x="37.2703%" y="693" width="0.0101%" height="15" fill="rgb(207,130,4)" fg:x="99727" fg:w="27"/><text x="37.5203%" y="703.50"></text></g><g><title>Parse::do_all_blocks (869 samples, 0.32%)</title><rect x="36.9713%" y="741" width="0.3248%" height="15" fill="rgb(221,25,40)" fg:x="98927" fg:w="869"/><text x="37.2213%" y="751.50"></text></g><g><title>Parse::do_one_block (869 samples, 0.32%)</title><rect x="36.9713%" y="725" width="0.3248%" height="15" fill="rgb(241,184,7)" fg:x="98927" fg:w="869"/><text x="37.2213%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (854 samples, 0.32%)</title><rect x="36.9769%" y="709" width="0.3192%" height="15" fill="rgb(235,159,4)" fg:x="98942" fg:w="854"/><text x="37.2269%" y="719.50"></text></g><g><title>ParseGenerator::generate (890 samples, 0.33%)</title><rect x="36.9713%" y="773" width="0.3326%" height="15" fill="rgb(214,87,48)" fg:x="98927" fg:w="890"/><text x="37.2213%" y="783.50"></text></g><g><title>Parse::Parse (890 samples, 0.33%)</title><rect x="36.9713%" y="757" width="0.3326%" height="15" fill="rgb(246,198,24)" fg:x="98927" fg:w="890"/><text x="37.2213%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,019 samples, 0.38%)</title><rect x="36.9350%" y="821" width="0.3808%" height="15" fill="rgb(209,66,40)" fg:x="98830" fg:w="1019"/><text x="37.1850%" y="831.50"></text></g><g><title>C2Compiler::compile_method (1,019 samples, 0.38%)</title><rect x="36.9350%" y="805" width="0.3808%" height="15" fill="rgb(233,147,39)" fg:x="98830" fg:w="1019"/><text x="37.1850%" y="815.50"></text></g><g><title>Compile::Compile (1,019 samples, 0.38%)</title><rect x="36.9350%" y="789" width="0.3808%" height="15" fill="rgb(231,145,52)" fg:x="98830" fg:w="1019"/><text x="37.1850%" y="799.50"></text></g><g><title>ciEnv::register_method (32 samples, 0.01%)</title><rect x="37.3039%" y="773" width="0.0120%" height="15" fill="rgb(206,20,26)" fg:x="99817" fg:w="32"/><text x="37.5539%" y="783.50"></text></g><g><title>nmethod::new_nmethod (31 samples, 0.01%)</title><rect x="37.3043%" y="757" width="0.0116%" height="15" fill="rgb(238,220,4)" fg:x="99818" fg:w="31"/><text x="37.5543%" y="767.50"></text></g><g><title>nmethod::nmethod (31 samples, 0.01%)</title><rect x="37.3043%" y="741" width="0.0116%" height="15" fill="rgb(252,195,42)" fg:x="99818" fg:w="31"/><text x="37.5543%" y="751.50"></text></g><g><title>Parse::do_one_block (79 samples, 0.03%)</title><rect x="37.3502%" y="693" width="0.0295%" height="15" fill="rgb(209,10,6)" fg:x="99941" fg:w="79"/><text x="37.6002%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="37.3517%" y="677" width="0.0280%" height="15" fill="rgb(229,3,52)" fg:x="99945" fg:w="75"/><text x="37.6017%" y="687.50"></text></g><g><title>Parse::do_all_blocks (84 samples, 0.03%)</title><rect x="37.3499%" y="709" width="0.0314%" height="15" fill="rgb(253,49,37)" fg:x="99940" fg:w="84"/><text x="37.5999%" y="719.50"></text></g><g><title>ParseGenerator::generate (97 samples, 0.04%)</title><rect x="37.3495%" y="741" width="0.0363%" height="15" fill="rgb(240,103,49)" fg:x="99939" fg:w="97"/><text x="37.5995%" y="751.50"></text></g><g><title>Parse::Parse (97 samples, 0.04%)</title><rect x="37.3495%" y="725" width="0.0363%" height="15" fill="rgb(250,182,30)" fg:x="99939" fg:w="97"/><text x="37.5995%" y="735.50"></text></g><g><title>JavaThread::thread_main_inner (125 samples, 0.05%)</title><rect x="37.3416%" y="821" width="0.0467%" height="15" fill="rgb(248,8,30)" fg:x="99918" fg:w="125"/><text x="37.5916%" y="831.50"></text></g><g><title>CompileBroker::compiler_thread_loop (125 samples, 0.05%)</title><rect x="37.3416%" y="805" width="0.0467%" height="15" fill="rgb(237,120,30)" fg:x="99918" fg:w="125"/><text x="37.5916%" y="815.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (125 samples, 0.05%)</title><rect x="37.3416%" y="789" width="0.0467%" height="15" fill="rgb(221,146,34)" fg:x="99918" fg:w="125"/><text x="37.5916%" y="799.50"></text></g><g><title>C2Compiler::compile_method (125 samples, 0.05%)</title><rect x="37.3416%" y="773" width="0.0467%" height="15" fill="rgb(242,55,13)" fg:x="99918" fg:w="125"/><text x="37.5916%" y="783.50"></text></g><g><title>Compile::Compile (125 samples, 0.05%)</title><rect x="37.3416%" y="757" width="0.0467%" height="15" fill="rgb(242,112,31)" fg:x="99918" fg:w="125"/><text x="37.5916%" y="767.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="37.3936%" y="549" width="0.0112%" height="15" fill="rgb(249,192,27)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="559.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="37.3936%" y="533" width="0.0112%" height="15" fill="rgb(208,204,44)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="543.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="37.3936%" y="517" width="0.0112%" height="15" fill="rgb(208,93,54)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="527.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="37.3936%" y="501" width="0.0112%" height="15" fill="rgb(242,1,31)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="511.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="37.3936%" y="485" width="0.0112%" height="15" fill="rgb(241,83,25)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="495.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="37.3936%" y="469" width="0.0112%" height="15" fill="rgb(205,169,50)" fg:x="100057" fg:w="30"/><text x="37.6436%" y="479.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.02%)</title><rect x="37.3936%" y="645" width="0.0164%" height="15" fill="rgb(239,186,37)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="655.50"></text></g><g><title>Parse::Parse (44 samples, 0.02%)</title><rect x="37.3936%" y="629" width="0.0164%" height="15" fill="rgb(205,221,10)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="639.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="37.3936%" y="613" width="0.0164%" height="15" fill="rgb(218,196,15)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="623.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="37.3936%" y="597" width="0.0164%" height="15" fill="rgb(218,196,35)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="607.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="37.3936%" y="581" width="0.0164%" height="15" fill="rgb(233,63,24)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="591.50"></text></g><g><title>Parse::do_call (44 samples, 0.02%)</title><rect x="37.3936%" y="565" width="0.0164%" height="15" fill="rgb(225,8,4)" fg:x="100057" fg:w="44"/><text x="37.6436%" y="575.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.02%)</title><rect x="37.3936%" y="741" width="0.0194%" height="15" fill="rgb(234,105,35)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="751.50"></text></g><g><title>Parse::Parse (52 samples, 0.02%)</title><rect x="37.3936%" y="725" width="0.0194%" height="15" fill="rgb(236,21,32)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="735.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.02%)</title><rect x="37.3936%" y="709" width="0.0194%" height="15" fill="rgb(228,109,6)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="719.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.02%)</title><rect x="37.3936%" y="693" width="0.0194%" height="15" fill="rgb(229,215,31)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="703.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.02%)</title><rect x="37.3936%" y="677" width="0.0194%" height="15" fill="rgb(221,52,54)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="687.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="37.3936%" y="661" width="0.0194%" height="15" fill="rgb(252,129,43)" fg:x="100057" fg:w="52"/><text x="37.6436%" y="671.50"></text></g><g><title>Parse::Parse (64 samples, 0.02%)</title><rect x="37.3936%" y="821" width="0.0239%" height="15" fill="rgb(248,183,27)" fg:x="100057" fg:w="64"/><text x="37.6436%" y="831.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="37.3936%" y="805" width="0.0239%" height="15" fill="rgb(250,0,22)" fg:x="100057" fg:w="64"/><text x="37.6436%" y="815.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.02%)</title><rect x="37.3936%" y="789" width="0.0239%" height="15" fill="rgb(213,166,10)" fg:x="100057" fg:w="64"/><text x="37.6436%" y="799.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.02%)</title><rect x="37.3936%" y="773" width="0.0239%" height="15" fill="rgb(207,163,36)" fg:x="100057" fg:w="64"/><text x="37.6436%" y="783.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="37.3936%" y="757" width="0.0239%" height="15" fill="rgb(208,122,22)" fg:x="100057" fg:w="64"/><text x="37.6436%" y="767.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.01%)</title><rect x="37.4175%" y="565" width="0.0105%" height="15" fill="rgb(207,104,49)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="575.50"></text></g><g><title>Parse::Parse (28 samples, 0.01%)</title><rect x="37.4175%" y="549" width="0.0105%" height="15" fill="rgb(248,211,50)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="559.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.01%)</title><rect x="37.4175%" y="533" width="0.0105%" height="15" fill="rgb(217,13,45)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="543.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="37.4175%" y="517" width="0.0105%" height="15" fill="rgb(211,216,49)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="527.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.01%)</title><rect x="37.4175%" y="501" width="0.0105%" height="15" fill="rgb(221,58,53)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="511.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="37.4175%" y="485" width="0.0105%" height="15" fill="rgb(220,112,41)" fg:x="100121" fg:w="28"/><text x="37.6675%" y="495.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="37.4175%" y="661" width="0.0142%" height="15" fill="rgb(236,38,28)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="671.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="37.4175%" y="645" width="0.0142%" height="15" fill="rgb(227,195,22)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="655.50"></text></g><g><title>Parse::do_all_blocks (38 samples, 0.01%)</title><rect x="37.4175%" y="629" width="0.0142%" height="15" fill="rgb(214,55,33)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="639.50"></text></g><g><title>Parse::do_one_block (38 samples, 0.01%)</title><rect x="37.4175%" y="613" width="0.0142%" height="15" fill="rgb(248,80,13)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="623.50"></text></g><g><title>Parse::do_one_bytecode (38 samples, 0.01%)</title><rect x="37.4175%" y="597" width="0.0142%" height="15" fill="rgb(238,52,6)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="607.50"></text></g><g><title>Parse::do_call (38 samples, 0.01%)</title><rect x="37.4175%" y="581" width="0.0142%" height="15" fill="rgb(224,198,47)" fg:x="100121" fg:w="38"/><text x="37.6675%" y="591.50"></text></g><g><title>ParseGenerator::generate (53 samples, 0.02%)</title><rect x="37.4175%" y="757" width="0.0198%" height="15" fill="rgb(233,171,20)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="767.50"></text></g><g><title>Parse::Parse (53 samples, 0.02%)</title><rect x="37.4175%" y="741" width="0.0198%" height="15" fill="rgb(241,30,25)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="751.50"></text></g><g><title>Parse::do_all_blocks (53 samples, 0.02%)</title><rect x="37.4175%" y="725" width="0.0198%" height="15" fill="rgb(207,171,38)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="735.50"></text></g><g><title>Parse::do_one_block (53 samples, 0.02%)</title><rect x="37.4175%" y="709" width="0.0198%" height="15" fill="rgb(234,70,1)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (53 samples, 0.02%)</title><rect x="37.4175%" y="693" width="0.0198%" height="15" fill="rgb(232,178,18)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="703.50"></text></g><g><title>Parse::do_call (53 samples, 0.02%)</title><rect x="37.4175%" y="677" width="0.0198%" height="15" fill="rgb(241,78,40)" fg:x="100121" fg:w="53"/><text x="37.6675%" y="687.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="37.4175%" y="821" width="0.0239%" height="15" fill="rgb(222,35,25)" fg:x="100121" fg:w="64"/><text x="37.6675%" y="831.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.02%)</title><rect x="37.4175%" y="805" width="0.0239%" height="15" fill="rgb(207,92,16)" fg:x="100121" fg:w="64"/><text x="37.6675%" y="815.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.02%)</title><rect x="37.4175%" y="789" width="0.0239%" height="15" fill="rgb(216,59,51)" fg:x="100121" fg:w="64"/><text x="37.6675%" y="799.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="37.4175%" y="773" width="0.0239%" height="15" fill="rgb(213,80,28)" fg:x="100121" fg:w="64"/><text x="37.6675%" y="783.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="37.4429%" y="149" width="0.0108%" height="15" fill="rgb(220,93,7)" fg:x="100189" fg:w="29"/><text x="37.6929%" y="159.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="37.4437%" y="133" width="0.0101%" height="15" fill="rgb(225,24,44)" fg:x="100191" fg:w="27"/><text x="37.6937%" y="143.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="37.4437%" y="117" width="0.0101%" height="15" fill="rgb(243,74,40)" fg:x="100191" fg:w="27"/><text x="37.6937%" y="127.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="37.4437%" y="101" width="0.0101%" height="15" fill="rgb(228,39,7)" fg:x="100191" fg:w="27"/><text x="37.6937%" y="111.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="37.4437%" y="85" width="0.0101%" height="15" fill="rgb(227,79,8)" fg:x="100191" fg:w="27"/><text x="37.6937%" y="95.50"></text></g><g><title>ParseGenerator::generate (36 samples, 0.01%)</title><rect x="37.4414%" y="325" width="0.0135%" height="15" fill="rgb(236,58,11)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="335.50"></text></g><g><title>Parse::Parse (36 samples, 0.01%)</title><rect x="37.4414%" y="309" width="0.0135%" height="15" fill="rgb(249,63,35)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="319.50"></text></g><g><title>Parse::do_all_blocks (36 samples, 0.01%)</title><rect x="37.4414%" y="293" width="0.0135%" height="15" fill="rgb(252,114,16)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="303.50"></text></g><g><title>Parse::do_one_block (36 samples, 0.01%)</title><rect x="37.4414%" y="277" width="0.0135%" height="15" fill="rgb(254,151,24)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="287.50"></text></g><g><title>Parse::do_one_bytecode (36 samples, 0.01%)</title><rect x="37.4414%" y="261" width="0.0135%" height="15" fill="rgb(253,54,39)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="271.50"></text></g><g><title>Parse::do_call (36 samples, 0.01%)</title><rect x="37.4414%" y="245" width="0.0135%" height="15" fill="rgb(243,25,45)" fg:x="100185" fg:w="36"/><text x="37.6914%" y="255.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="37.4418%" y="229" width="0.0131%" height="15" fill="rgb(234,134,9)" fg:x="100186" fg:w="35"/><text x="37.6918%" y="239.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="37.4418%" y="213" width="0.0131%" height="15" fill="rgb(227,166,31)" fg:x="100186" fg:w="35"/><text x="37.6918%" y="223.50"></text></g><g><title>Parse::do_all_blocks (34 samples, 0.01%)</title><rect x="37.4422%" y="197" width="0.0127%" height="15" fill="rgb(245,143,41)" fg:x="100187" fg:w="34"/><text x="37.6922%" y="207.50"></text></g><g><title>Parse::do_one_block (34 samples, 0.01%)</title><rect x="37.4422%" y="181" width="0.0127%" height="15" fill="rgb(238,181,32)" fg:x="100187" fg:w="34"/><text x="37.6922%" y="191.50"></text></g><g><title>Parse::do_one_bytecode (34 samples, 0.01%)</title><rect x="37.4422%" y="165" width="0.0127%" height="15" fill="rgb(224,113,18)" fg:x="100187" fg:w="34"/><text x="37.6922%" y="175.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="37.4414%" y="421" width="0.0146%" height="15" fill="rgb(240,229,28)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="431.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="37.4414%" y="405" width="0.0146%" height="15" fill="rgb(250,185,3)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="415.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="37.4414%" y="389" width="0.0146%" height="15" fill="rgb(212,59,25)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="399.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.01%)</title><rect x="37.4414%" y="373" width="0.0146%" height="15" fill="rgb(221,87,20)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="383.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.01%)</title><rect x="37.4414%" y="357" width="0.0146%" height="15" fill="rgb(213,74,28)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="367.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="37.4414%" y="341" width="0.0146%" height="15" fill="rgb(224,132,34)" fg:x="100185" fg:w="39"/><text x="37.6914%" y="351.50"></text></g><g><title>ParseGenerator::generate (52 samples, 0.02%)</title><rect x="37.4414%" y="517" width="0.0194%" height="15" fill="rgb(222,101,24)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="527.50"></text></g><g><title>Parse::Parse (52 samples, 0.02%)</title><rect x="37.4414%" y="501" width="0.0194%" height="15" fill="rgb(254,142,4)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="511.50"></text></g><g><title>Parse::do_all_blocks (52 samples, 0.02%)</title><rect x="37.4414%" y="485" width="0.0194%" height="15" fill="rgb(230,229,49)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="495.50"></text></g><g><title>Parse::do_one_block (52 samples, 0.02%)</title><rect x="37.4414%" y="469" width="0.0194%" height="15" fill="rgb(238,70,47)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (52 samples, 0.02%)</title><rect x="37.4414%" y="453" width="0.0194%" height="15" fill="rgb(231,160,17)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="463.50"></text></g><g><title>Parse::do_call (52 samples, 0.02%)</title><rect x="37.4414%" y="437" width="0.0194%" height="15" fill="rgb(218,68,53)" fg:x="100185" fg:w="52"/><text x="37.6914%" y="447.50"></text></g><g><title>ParseGenerator::generate (75 samples, 0.03%)</title><rect x="37.4414%" y="613" width="0.0280%" height="15" fill="rgb(236,111,10)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="623.50"></text></g><g><title>Parse::Parse (75 samples, 0.03%)</title><rect x="37.4414%" y="597" width="0.0280%" height="15" fill="rgb(224,34,41)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="607.50"></text></g><g><title>Parse::do_all_blocks (75 samples, 0.03%)</title><rect x="37.4414%" y="581" width="0.0280%" height="15" fill="rgb(241,118,19)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="591.50"></text></g><g><title>Parse::do_one_block (75 samples, 0.03%)</title><rect x="37.4414%" y="565" width="0.0280%" height="15" fill="rgb(238,129,25)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (75 samples, 0.03%)</title><rect x="37.4414%" y="549" width="0.0280%" height="15" fill="rgb(238,22,31)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="559.50"></text></g><g><title>Parse::do_call (75 samples, 0.03%)</title><rect x="37.4414%" y="533" width="0.0280%" height="15" fill="rgb(222,174,48)" fg:x="100185" fg:w="75"/><text x="37.6914%" y="543.50"></text></g><g><title>ParseGenerator::generate (27 samples, 0.01%)</title><rect x="37.4694%" y="597" width="0.0101%" height="15" fill="rgb(206,152,40)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="607.50"></text></g><g><title>Parse::Parse (27 samples, 0.01%)</title><rect x="37.4694%" y="581" width="0.0101%" height="15" fill="rgb(218,99,54)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="591.50"></text></g><g><title>Parse::do_all_blocks (27 samples, 0.01%)</title><rect x="37.4694%" y="565" width="0.0101%" height="15" fill="rgb(220,174,26)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="575.50"></text></g><g><title>Parse::do_one_block (27 samples, 0.01%)</title><rect x="37.4694%" y="549" width="0.0101%" height="15" fill="rgb(245,116,9)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (27 samples, 0.01%)</title><rect x="37.4694%" y="533" width="0.0101%" height="15" fill="rgb(209,72,35)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="543.50"></text></g><g><title>Parse::do_call (27 samples, 0.01%)</title><rect x="37.4694%" y="517" width="0.0101%" height="15" fill="rgb(226,126,21)" fg:x="100260" fg:w="27"/><text x="37.7194%" y="527.50"></text></g><g><title>ParseGenerator::generate (105 samples, 0.04%)</title><rect x="37.4414%" y="709" width="0.0392%" height="15" fill="rgb(227,192,1)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="719.50"></text></g><g><title>Parse::Parse (105 samples, 0.04%)</title><rect x="37.4414%" y="693" width="0.0392%" height="15" fill="rgb(237,180,29)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="703.50"></text></g><g><title>Parse::do_all_blocks (105 samples, 0.04%)</title><rect x="37.4414%" y="677" width="0.0392%" height="15" fill="rgb(230,197,35)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="687.50"></text></g><g><title>Parse::do_one_block (105 samples, 0.04%)</title><rect x="37.4414%" y="661" width="0.0392%" height="15" fill="rgb(246,193,31)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (105 samples, 0.04%)</title><rect x="37.4414%" y="645" width="0.0392%" height="15" fill="rgb(241,36,4)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="655.50"></text></g><g><title>Parse::do_call (105 samples, 0.04%)</title><rect x="37.4414%" y="629" width="0.0392%" height="15" fill="rgb(241,130,17)" fg:x="100185" fg:w="105"/><text x="37.6914%" y="639.50"></text></g><g><title>PredictedCallGenerator::generate (30 samples, 0.01%)</title><rect x="37.4694%" y="613" width="0.0112%" height="15" fill="rgb(206,137,32)" fg:x="100260" fg:w="30"/><text x="37.7194%" y="623.50"></text></g><g><title>ParseGenerator::generate (121 samples, 0.05%)</title><rect x="37.4414%" y="805" width="0.0452%" height="15" fill="rgb(237,228,51)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="815.50"></text></g><g><title>Parse::Parse (121 samples, 0.05%)</title><rect x="37.4414%" y="789" width="0.0452%" height="15" fill="rgb(243,6,42)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="799.50"></text></g><g><title>Parse::do_all_blocks (121 samples, 0.05%)</title><rect x="37.4414%" y="773" width="0.0452%" height="15" fill="rgb(251,74,28)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="783.50"></text></g><g><title>Parse::do_one_block (121 samples, 0.05%)</title><rect x="37.4414%" y="757" width="0.0452%" height="15" fill="rgb(218,20,49)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="767.50"></text></g><g><title>Parse::do_one_bytecode (121 samples, 0.05%)</title><rect x="37.4414%" y="741" width="0.0452%" height="15" fill="rgb(238,28,14)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="751.50"></text></g><g><title>Parse::do_call (121 samples, 0.05%)</title><rect x="37.4414%" y="725" width="0.0452%" height="15" fill="rgb(229,40,46)" fg:x="100185" fg:w="121"/><text x="37.6914%" y="735.50"></text></g><g><title>Parse::do_call (139 samples, 0.05%)</title><rect x="37.4414%" y="821" width="0.0519%" height="15" fill="rgb(244,195,20)" fg:x="100185" fg:w="139"/><text x="37.6914%" y="831.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="37.4934%" y="581" width="0.0112%" height="15" fill="rgb(253,56,35)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="591.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="37.4934%" y="565" width="0.0112%" height="15" fill="rgb(210,149,44)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="575.50"></text></g><g><title>Parse::do_all_blocks (30 samples, 0.01%)</title><rect x="37.4934%" y="549" width="0.0112%" height="15" fill="rgb(240,135,12)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="559.50"></text></g><g><title>Parse::do_one_block (30 samples, 0.01%)</title><rect x="37.4934%" y="533" width="0.0112%" height="15" fill="rgb(251,24,50)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="543.50"></text></g><g><title>Parse::do_one_bytecode (30 samples, 0.01%)</title><rect x="37.4934%" y="517" width="0.0112%" height="15" fill="rgb(243,200,47)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="527.50"></text></g><g><title>Parse::do_call (30 samples, 0.01%)</title><rect x="37.4934%" y="501" width="0.0112%" height="15" fill="rgb(224,166,26)" fg:x="100324" fg:w="30"/><text x="37.7434%" y="511.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="37.4934%" y="677" width="0.0153%" height="15" fill="rgb(233,0,47)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="687.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="37.4934%" y="661" width="0.0153%" height="15" fill="rgb(253,80,5)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="671.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="37.4934%" y="645" width="0.0153%" height="15" fill="rgb(214,133,25)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="655.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="37.4934%" y="629" width="0.0153%" height="15" fill="rgb(209,27,14)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="639.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="37.4934%" y="613" width="0.0153%" height="15" fill="rgb(219,102,51)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="623.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="37.4934%" y="597" width="0.0153%" height="15" fill="rgb(237,18,16)" fg:x="100324" fg:w="41"/><text x="37.7434%" y="607.50"></text></g><g><title>ParseGenerator::generate (50 samples, 0.02%)</title><rect x="37.4934%" y="773" width="0.0187%" height="15" fill="rgb(241,85,17)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="783.50"></text></g><g><title>Parse::Parse (50 samples, 0.02%)</title><rect x="37.4934%" y="757" width="0.0187%" height="15" fill="rgb(236,90,42)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="767.50"></text></g><g><title>Parse::do_all_blocks (50 samples, 0.02%)</title><rect x="37.4934%" y="741" width="0.0187%" height="15" fill="rgb(249,57,21)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="751.50"></text></g><g><title>Parse::do_one_block (50 samples, 0.02%)</title><rect x="37.4934%" y="725" width="0.0187%" height="15" fill="rgb(243,12,36)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="735.50"></text></g><g><title>Parse::do_one_bytecode (50 samples, 0.02%)</title><rect x="37.4934%" y="709" width="0.0187%" height="15" fill="rgb(253,128,47)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="719.50"></text></g><g><title>Parse::do_call (50 samples, 0.02%)</title><rect x="37.4934%" y="693" width="0.0187%" height="15" fill="rgb(207,33,20)" fg:x="100324" fg:w="50"/><text x="37.7434%" y="703.50"></text></g><g><title>Parse::do_one_block (60 samples, 0.02%)</title><rect x="37.4934%" y="821" width="0.0224%" height="15" fill="rgb(233,215,35)" fg:x="100324" fg:w="60"/><text x="37.7434%" y="831.50"></text></g><g><title>Parse::do_one_bytecode (60 samples, 0.02%)</title><rect x="37.4934%" y="805" width="0.0224%" height="15" fill="rgb(249,188,52)" fg:x="100324" fg:w="60"/><text x="37.7434%" y="815.50"></text></g><g><title>Parse::do_call (60 samples, 0.02%)</title><rect x="37.4934%" y="789" width="0.0224%" height="15" fill="rgb(225,12,32)" fg:x="100324" fg:w="60"/><text x="37.7434%" y="799.50"></text></g><g><title>ParseGenerator::generate (29 samples, 0.01%)</title><rect x="37.5158%" y="405" width="0.0108%" height="15" fill="rgb(247,98,14)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="415.50"></text></g><g><title>Parse::Parse (29 samples, 0.01%)</title><rect x="37.5158%" y="389" width="0.0108%" height="15" fill="rgb(247,219,48)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="399.50"></text></g><g><title>Parse::do_all_blocks (29 samples, 0.01%)</title><rect x="37.5158%" y="373" width="0.0108%" height="15" fill="rgb(253,60,48)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="383.50"></text></g><g><title>Parse::do_one_block (29 samples, 0.01%)</title><rect x="37.5158%" y="357" width="0.0108%" height="15" fill="rgb(245,15,52)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="367.50"></text></g><g><title>Parse::do_one_bytecode (29 samples, 0.01%)</title><rect x="37.5158%" y="341" width="0.0108%" height="15" fill="rgb(220,133,28)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="351.50"></text></g><g><title>Parse::do_call (29 samples, 0.01%)</title><rect x="37.5158%" y="325" width="0.0108%" height="15" fill="rgb(217,180,4)" fg:x="100384" fg:w="29"/><text x="37.7658%" y="335.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="37.5158%" y="501" width="0.0131%" height="15" fill="rgb(251,24,1)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="511.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="37.5158%" y="485" width="0.0131%" height="15" fill="rgb(212,185,49)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="495.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.01%)</title><rect x="37.5158%" y="469" width="0.0131%" height="15" fill="rgb(215,175,22)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="479.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="37.5158%" y="453" width="0.0131%" height="15" fill="rgb(250,205,14)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="463.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.01%)</title><rect x="37.5158%" y="437" width="0.0131%" height="15" fill="rgb(225,211,22)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="447.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="37.5158%" y="421" width="0.0131%" height="15" fill="rgb(251,179,42)" fg:x="100384" fg:w="35"/><text x="37.7658%" y="431.50"></text></g><g><title>ParseGenerator::generate (39 samples, 0.01%)</title><rect x="37.5158%" y="597" width="0.0146%" height="15" fill="rgb(208,216,51)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="607.50"></text></g><g><title>Parse::Parse (39 samples, 0.01%)</title><rect x="37.5158%" y="581" width="0.0146%" height="15" fill="rgb(235,36,11)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="591.50"></text></g><g><title>Parse::do_all_blocks (39 samples, 0.01%)</title><rect x="37.5158%" y="565" width="0.0146%" height="15" fill="rgb(213,189,28)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="575.50"></text></g><g><title>Parse::do_one_block (39 samples, 0.01%)</title><rect x="37.5158%" y="549" width="0.0146%" height="15" fill="rgb(227,203,42)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="559.50"></text></g><g><title>Parse::do_one_bytecode (39 samples, 0.01%)</title><rect x="37.5158%" y="533" width="0.0146%" height="15" fill="rgb(244,72,36)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="543.50"></text></g><g><title>Parse::do_call (39 samples, 0.01%)</title><rect x="37.5158%" y="517" width="0.0146%" height="15" fill="rgb(213,53,17)" fg:x="100384" fg:w="39"/><text x="37.7658%" y="527.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.02%)</title><rect x="37.5158%" y="693" width="0.0209%" height="15" fill="rgb(207,167,3)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="703.50"></text></g><g><title>Parse::Parse (56 samples, 0.02%)</title><rect x="37.5158%" y="677" width="0.0209%" height="15" fill="rgb(216,98,30)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="687.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.02%)</title><rect x="37.5158%" y="661" width="0.0209%" height="15" fill="rgb(236,123,15)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="671.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.02%)</title><rect x="37.5158%" y="645" width="0.0209%" height="15" fill="rgb(248,81,50)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="655.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.02%)</title><rect x="37.5158%" y="629" width="0.0209%" height="15" fill="rgb(214,120,4)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="639.50"></text></g><g><title>Parse::do_call (56 samples, 0.02%)</title><rect x="37.5158%" y="613" width="0.0209%" height="15" fill="rgb(208,179,34)" fg:x="100384" fg:w="56"/><text x="37.7658%" y="623.50"></text></g><g><title>ParseGenerator::generate (64 samples, 0.02%)</title><rect x="37.5158%" y="789" width="0.0239%" height="15" fill="rgb(227,140,7)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="799.50"></text></g><g><title>Parse::Parse (64 samples, 0.02%)</title><rect x="37.5158%" y="773" width="0.0239%" height="15" fill="rgb(214,22,6)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="783.50"></text></g><g><title>Parse::do_all_blocks (64 samples, 0.02%)</title><rect x="37.5158%" y="757" width="0.0239%" height="15" fill="rgb(207,137,27)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="767.50"></text></g><g><title>Parse::do_one_block (64 samples, 0.02%)</title><rect x="37.5158%" y="741" width="0.0239%" height="15" fill="rgb(210,8,46)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="751.50"></text></g><g><title>Parse::do_one_bytecode (64 samples, 0.02%)</title><rect x="37.5158%" y="725" width="0.0239%" height="15" fill="rgb(240,16,54)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="735.50"></text></g><g><title>Parse::do_call (64 samples, 0.02%)</title><rect x="37.5158%" y="709" width="0.0239%" height="15" fill="rgb(211,209,29)" fg:x="100384" fg:w="64"/><text x="37.7658%" y="719.50"></text></g><g><title>Parse::do_one_bytecode (83 samples, 0.03%)</title><rect x="37.5158%" y="821" width="0.0310%" height="15" fill="rgb(226,228,24)" fg:x="100384" fg:w="83"/><text x="37.7658%" y="831.50"></text></g><g><title>Parse::do_call (83 samples, 0.03%)</title><rect x="37.5158%" y="805" width="0.0310%" height="15" fill="rgb(222,84,9)" fg:x="100384" fg:w="83"/><text x="37.7658%" y="815.50"></text></g><g><title>ParseGenerator::generate (30 samples, 0.01%)</title><rect x="37.5606%" y="53" width="0.0112%" height="15" fill="rgb(234,203,30)" fg:x="100504" fg:w="30"/><text x="37.8106%" y="63.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="37.5606%" y="37" width="0.0112%" height="15" fill="rgb(238,109,14)" fg:x="100504" fg:w="30"/><text x="37.8106%" y="47.50"></text></g><g><title>Parse::do_call (46 samples, 0.02%)</title><rect x="37.5554%" y="69" width="0.0172%" height="15" fill="rgb(233,206,34)" fg:x="100490" fg:w="46"/><text x="37.8054%" y="79.50"></text></g><g><title>ParseGenerator::generate (65 samples, 0.02%)</title><rect x="37.5532%" y="149" width="0.0243%" height="15" fill="rgb(220,167,47)" fg:x="100484" fg:w="65"/><text x="37.8032%" y="159.50"></text></g><g><title>Parse::Parse (65 samples, 0.02%)</title><rect x="37.5532%" y="133" width="0.0243%" height="15" fill="rgb(238,105,10)" fg:x="100484" fg:w="65"/><text x="37.8032%" y="143.50"></text></g><g><title>Parse::do_all_blocks (65 samples, 0.02%)</title><rect x="37.5532%" y="117" width="0.0243%" height="15" fill="rgb(213,227,17)" fg:x="100484" fg:w="65"/><text x="37.8032%" y="127.50"></text></g><g><title>Parse::do_one_block (65 samples, 0.02%)</title><rect x="37.5532%" y="101" width="0.0243%" height="15" fill="rgb(217,132,38)" fg:x="100484" fg:w="65"/><text x="37.8032%" y="111.50"></text></g><g><title>Parse::do_one_bytecode (65 samples, 0.02%)</title><rect x="37.5532%" y="85" width="0.0243%" height="15" fill="rgb(242,146,4)" fg:x="100484" fg:w="65"/><text x="37.8032%" y="95.50"></text></g><g><title>Parse::do_call (75 samples, 0.03%)</title><rect x="37.5502%" y="165" width="0.0280%" height="15" fill="rgb(212,61,9)" fg:x="100476" fg:w="75"/><text x="37.8002%" y="175.50"></text></g><g><title>ParseGenerator::generate (80 samples, 0.03%)</title><rect x="37.5502%" y="245" width="0.0299%" height="15" fill="rgb(247,126,22)" fg:x="100476" fg:w="80"/><text x="37.8002%" y="255.50"></text></g><g><title>Parse::Parse (80 samples, 0.03%)</title><rect x="37.5502%" y="229" width="0.0299%" height="15" fill="rgb(220,196,2)" fg:x="100476" fg:w="80"/><text x="37.8002%" y="239.50"></text></g><g><title>Parse::do_all_blocks (80 samples, 0.03%)</title><rect x="37.5502%" y="213" width="0.0299%" height="15" fill="rgb(208,46,4)" fg:x="100476" fg:w="80"/><text x="37.8002%" y="223.50"></text></g><g><title>Parse::do_one_block (80 samples, 0.03%)</title><rect x="37.5502%" y="197" width="0.0299%" height="15" fill="rgb(252,104,46)" fg:x="100476" fg:w="80"/><text x="37.8002%" y="207.50"></text></g><g><title>Parse::do_one_bytecode (80 samples, 0.03%)</title><rect x="37.5502%" y="181" width="0.0299%" height="15" fill="rgb(237,152,48)" fg:x="100476" fg:w="80"/><text x="37.8002%" y="191.50"></text></g><g><title>ParseGenerator::generate (96 samples, 0.04%)</title><rect x="37.5468%" y="341" width="0.0359%" height="15" fill="rgb(221,59,37)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="351.50"></text></g><g><title>Parse::Parse (96 samples, 0.04%)</title><rect x="37.5468%" y="325" width="0.0359%" height="15" fill="rgb(209,202,51)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="335.50"></text></g><g><title>Parse::do_all_blocks (96 samples, 0.04%)</title><rect x="37.5468%" y="309" width="0.0359%" height="15" fill="rgb(228,81,30)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="319.50"></text></g><g><title>Parse::do_one_block (96 samples, 0.04%)</title><rect x="37.5468%" y="293" width="0.0359%" height="15" fill="rgb(227,42,39)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="303.50"></text></g><g><title>Parse::do_one_bytecode (96 samples, 0.04%)</title><rect x="37.5468%" y="277" width="0.0359%" height="15" fill="rgb(221,26,2)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="287.50"></text></g><g><title>Parse::do_call (96 samples, 0.04%)</title><rect x="37.5468%" y="261" width="0.0359%" height="15" fill="rgb(254,61,31)" fg:x="100467" fg:w="96"/><text x="37.7968%" y="271.50"></text></g><g><title>ParseGenerator::generate (117 samples, 0.04%)</title><rect x="37.5468%" y="437" width="0.0437%" height="15" fill="rgb(222,173,38)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="447.50"></text></g><g><title>Parse::Parse (117 samples, 0.04%)</title><rect x="37.5468%" y="421" width="0.0437%" height="15" fill="rgb(218,50,12)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="431.50"></text></g><g><title>Parse::do_all_blocks (117 samples, 0.04%)</title><rect x="37.5468%" y="405" width="0.0437%" height="15" fill="rgb(223,88,40)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="415.50"></text></g><g><title>Parse::do_one_block (117 samples, 0.04%)</title><rect x="37.5468%" y="389" width="0.0437%" height="15" fill="rgb(237,54,19)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="399.50"></text></g><g><title>Parse::do_one_bytecode (117 samples, 0.04%)</title><rect x="37.5468%" y="373" width="0.0437%" height="15" fill="rgb(251,129,25)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="383.50"></text></g><g><title>Parse::do_call (117 samples, 0.04%)</title><rect x="37.5468%" y="357" width="0.0437%" height="15" fill="rgb(238,97,19)" fg:x="100467" fg:w="117"/><text x="37.7968%" y="367.50"></text></g><g><title>ParseGenerator::generate (145 samples, 0.05%)</title><rect x="37.5468%" y="533" width="0.0542%" height="15" fill="rgb(240,169,18)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="543.50"></text></g><g><title>Parse::Parse (145 samples, 0.05%)</title><rect x="37.5468%" y="517" width="0.0542%" height="15" fill="rgb(230,187,49)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="527.50"></text></g><g><title>Parse::do_all_blocks (145 samples, 0.05%)</title><rect x="37.5468%" y="501" width="0.0542%" height="15" fill="rgb(209,44,26)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="511.50"></text></g><g><title>Parse::do_one_block (145 samples, 0.05%)</title><rect x="37.5468%" y="485" width="0.0542%" height="15" fill="rgb(244,0,6)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="495.50"></text></g><g><title>Parse::do_one_bytecode (145 samples, 0.05%)</title><rect x="37.5468%" y="469" width="0.0542%" height="15" fill="rgb(248,18,21)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="479.50"></text></g><g><title>Parse::do_call (145 samples, 0.05%)</title><rect x="37.5468%" y="453" width="0.0542%" height="15" fill="rgb(245,180,19)" fg:x="100467" fg:w="145"/><text x="37.7968%" y="463.50"></text></g><g><title>PredictedCallGenerator::generate (28 samples, 0.01%)</title><rect x="37.5905%" y="437" width="0.0105%" height="15" fill="rgb(252,118,36)" fg:x="100584" fg:w="28"/><text x="37.8405%" y="447.50"></text></g><g><title>ParseGenerator::generate (35 samples, 0.01%)</title><rect x="37.6010%" y="517" width="0.0131%" height="15" fill="rgb(210,224,19)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="527.50"></text></g><g><title>Parse::Parse (35 samples, 0.01%)</title><rect x="37.6010%" y="501" width="0.0131%" height="15" fill="rgb(218,30,24)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="511.50"></text></g><g><title>Parse::do_all_blocks (35 samples, 0.01%)</title><rect x="37.6010%" y="485" width="0.0131%" height="15" fill="rgb(219,75,50)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="495.50"></text></g><g><title>Parse::do_one_block (35 samples, 0.01%)</title><rect x="37.6010%" y="469" width="0.0131%" height="15" fill="rgb(234,72,50)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (35 samples, 0.01%)</title><rect x="37.6010%" y="453" width="0.0131%" height="15" fill="rgb(219,100,48)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="463.50"></text></g><g><title>Parse::do_call (35 samples, 0.01%)</title><rect x="37.6010%" y="437" width="0.0131%" height="15" fill="rgb(253,5,41)" fg:x="100612" fg:w="35"/><text x="37.8510%" y="447.50"></text></g><g><title>ParseGenerator::generate (192 samples, 0.07%)</title><rect x="37.5468%" y="629" width="0.0718%" height="15" fill="rgb(247,181,11)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="639.50"></text></g><g><title>Parse::Parse (192 samples, 0.07%)</title><rect x="37.5468%" y="613" width="0.0718%" height="15" fill="rgb(222,223,25)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="623.50"></text></g><g><title>Parse::do_all_blocks (192 samples, 0.07%)</title><rect x="37.5468%" y="597" width="0.0718%" height="15" fill="rgb(214,198,28)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="607.50"></text></g><g><title>Parse::do_one_block (192 samples, 0.07%)</title><rect x="37.5468%" y="581" width="0.0718%" height="15" fill="rgb(230,46,43)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="591.50"></text></g><g><title>Parse::do_one_bytecode (192 samples, 0.07%)</title><rect x="37.5468%" y="565" width="0.0718%" height="15" fill="rgb(233,65,53)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="575.50"></text></g><g><title>Parse::do_call (192 samples, 0.07%)</title><rect x="37.5468%" y="549" width="0.0718%" height="15" fill="rgb(221,121,27)" fg:x="100467" fg:w="192"/><text x="37.7968%" y="559.50"></text></g><g><title>PredictedCallGenerator::generate (47 samples, 0.02%)</title><rect x="37.6010%" y="533" width="0.0176%" height="15" fill="rgb(247,70,47)" fg:x="100612" fg:w="47"/><text x="37.8510%" y="543.50"></text></g><g><title>ParseGenerator::generate (41 samples, 0.02%)</title><rect x="37.6186%" y="517" width="0.0153%" height="15" fill="rgb(228,85,35)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="527.50"></text></g><g><title>Parse::Parse (41 samples, 0.02%)</title><rect x="37.6186%" y="501" width="0.0153%" height="15" fill="rgb(209,50,18)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="511.50"></text></g><g><title>Parse::do_all_blocks (41 samples, 0.02%)</title><rect x="37.6186%" y="485" width="0.0153%" height="15" fill="rgb(250,19,35)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="495.50"></text></g><g><title>Parse::do_one_block (41 samples, 0.02%)</title><rect x="37.6186%" y="469" width="0.0153%" height="15" fill="rgb(253,107,29)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (41 samples, 0.02%)</title><rect x="37.6186%" y="453" width="0.0153%" height="15" fill="rgb(252,179,29)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="463.50"></text></g><g><title>Parse::do_call (41 samples, 0.02%)</title><rect x="37.6186%" y="437" width="0.0153%" height="15" fill="rgb(238,194,6)" fg:x="100659" fg:w="41"/><text x="37.8686%" y="447.50"></text></g><g><title>ParseGenerator::generate (49 samples, 0.02%)</title><rect x="37.6186%" y="613" width="0.0183%" height="15" fill="rgb(238,164,29)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="623.50"></text></g><g><title>Parse::Parse (49 samples, 0.02%)</title><rect x="37.6186%" y="597" width="0.0183%" height="15" fill="rgb(224,25,9)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="607.50"></text></g><g><title>Parse::do_all_blocks (49 samples, 0.02%)</title><rect x="37.6186%" y="581" width="0.0183%" height="15" fill="rgb(244,153,23)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="591.50"></text></g><g><title>Parse::do_one_block (49 samples, 0.02%)</title><rect x="37.6186%" y="565" width="0.0183%" height="15" fill="rgb(212,203,14)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (49 samples, 0.02%)</title><rect x="37.6186%" y="549" width="0.0183%" height="15" fill="rgb(220,164,20)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="559.50"></text></g><g><title>Parse::do_call (49 samples, 0.02%)</title><rect x="37.6186%" y="533" width="0.0183%" height="15" fill="rgb(222,203,48)" fg:x="100659" fg:w="49"/><text x="37.8686%" y="543.50"></text></g><g><title>ParseGenerator::generate (245 samples, 0.09%)</title><rect x="37.5468%" y="725" width="0.0916%" height="15" fill="rgb(215,159,22)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="735.50"></text></g><g><title>Parse::Parse (245 samples, 0.09%)</title><rect x="37.5468%" y="709" width="0.0916%" height="15" fill="rgb(216,183,47)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="719.50"></text></g><g><title>Parse::do_all_blocks (245 samples, 0.09%)</title><rect x="37.5468%" y="693" width="0.0916%" height="15" fill="rgb(229,195,25)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="703.50"></text></g><g><title>Parse::do_one_block (245 samples, 0.09%)</title><rect x="37.5468%" y="677" width="0.0916%" height="15" fill="rgb(224,132,51)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="687.50"></text></g><g><title>Parse::do_one_bytecode (245 samples, 0.09%)</title><rect x="37.5468%" y="661" width="0.0916%" height="15" fill="rgb(240,63,7)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="671.50"></text></g><g><title>Parse::do_call (245 samples, 0.09%)</title><rect x="37.5468%" y="645" width="0.0916%" height="15" fill="rgb(249,182,41)" fg:x="100467" fg:w="245"/><text x="37.7968%" y="655.50"></text></g><g><title>PredictedCallGenerator::generate (53 samples, 0.02%)</title><rect x="37.6186%" y="629" width="0.0198%" height="15" fill="rgb(243,47,26)" fg:x="100659" fg:w="53"/><text x="37.8686%" y="639.50"></text></g><g><title>ParseGenerator::generate (28 samples, 0.01%)</title><rect x="37.6384%" y="517" width="0.0105%" height="15" fill="rgb(233,48,2)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="527.50"></text></g><g><title>Parse::Parse (28 samples, 0.01%)</title><rect x="37.6384%" y="501" width="0.0105%" height="15" fill="rgb(244,165,34)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="511.50"></text></g><g><title>Parse::do_all_blocks (28 samples, 0.01%)</title><rect x="37.6384%" y="485" width="0.0105%" height="15" fill="rgb(207,89,7)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="495.50"></text></g><g><title>Parse::do_one_block (28 samples, 0.01%)</title><rect x="37.6384%" y="469" width="0.0105%" height="15" fill="rgb(244,117,36)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="479.50"></text></g><g><title>Parse::do_one_bytecode (28 samples, 0.01%)</title><rect x="37.6384%" y="453" width="0.0105%" height="15" fill="rgb(226,144,34)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="463.50"></text></g><g><title>Parse::do_call (28 samples, 0.01%)</title><rect x="37.6384%" y="437" width="0.0105%" height="15" fill="rgb(213,23,19)" fg:x="100712" fg:w="28"/><text x="37.8884%" y="447.50"></text></g><g><title>ParseGenerator::generate (44 samples, 0.02%)</title><rect x="37.6384%" y="613" width="0.0164%" height="15" fill="rgb(217,75,12)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="623.50"></text></g><g><title>Parse::Parse (44 samples, 0.02%)</title><rect x="37.6384%" y="597" width="0.0164%" height="15" fill="rgb(224,159,17)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="607.50"></text></g><g><title>Parse::do_all_blocks (44 samples, 0.02%)</title><rect x="37.6384%" y="581" width="0.0164%" height="15" fill="rgb(217,118,1)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="591.50"></text></g><g><title>Parse::do_one_block (44 samples, 0.02%)</title><rect x="37.6384%" y="565" width="0.0164%" height="15" fill="rgb(232,180,48)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="575.50"></text></g><g><title>Parse::do_one_bytecode (44 samples, 0.02%)</title><rect x="37.6384%" y="549" width="0.0164%" height="15" fill="rgb(230,27,33)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="559.50"></text></g><g><title>Parse::do_call (44 samples, 0.02%)</title><rect x="37.6384%" y="533" width="0.0164%" height="15" fill="rgb(205,31,21)" fg:x="100712" fg:w="44"/><text x="37.8884%" y="543.50"></text></g><g><title>ParseGenerator::generate (56 samples, 0.02%)</title><rect x="37.6384%" y="709" width="0.0209%" height="15" fill="rgb(253,59,4)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="719.50"></text></g><g><title>Parse::Parse (56 samples, 0.02%)</title><rect x="37.6384%" y="693" width="0.0209%" height="15" fill="rgb(224,201,9)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="703.50"></text></g><g><title>Parse::do_all_blocks (56 samples, 0.02%)</title><rect x="37.6384%" y="677" width="0.0209%" height="15" fill="rgb(229,206,30)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="687.50"></text></g><g><title>Parse::do_one_block (56 samples, 0.02%)</title><rect x="37.6384%" y="661" width="0.0209%" height="15" fill="rgb(212,67,47)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="671.50"></text></g><g><title>Parse::do_one_bytecode (56 samples, 0.02%)</title><rect x="37.6384%" y="645" width="0.0209%" height="15" fill="rgb(211,96,50)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="655.50"></text></g><g><title>Parse::do_call (56 samples, 0.02%)</title><rect x="37.6384%" y="629" width="0.0209%" height="15" fill="rgb(252,114,18)" fg:x="100712" fg:w="56"/><text x="37.8884%" y="639.50"></text></g><g><title>ParseGenerator::generate (317 samples, 0.12%)</title><rect x="37.5468%" y="821" width="0.1185%" height="15" fill="rgb(223,58,37)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="831.50"></text></g><g><title>Parse::Parse (317 samples, 0.12%)</title><rect x="37.5468%" y="805" width="0.1185%" height="15" fill="rgb(237,70,4)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="815.50"></text></g><g><title>Parse::do_all_blocks (317 samples, 0.12%)</title><rect x="37.5468%" y="789" width="0.1185%" height="15" fill="rgb(244,85,46)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="799.50"></text></g><g><title>Parse::do_one_block (317 samples, 0.12%)</title><rect x="37.5468%" y="773" width="0.1185%" height="15" fill="rgb(223,39,52)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="783.50"></text></g><g><title>Parse::do_one_bytecode (317 samples, 0.12%)</title><rect x="37.5468%" y="757" width="0.1185%" height="15" fill="rgb(218,200,14)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="767.50"></text></g><g><title>Parse::do_call (317 samples, 0.12%)</title><rect x="37.5468%" y="741" width="0.1185%" height="15" fill="rgb(208,171,16)" fg:x="100467" fg:w="317"/><text x="37.7968%" y="751.50"></text></g><g><title>PredictedCallGenerator::generate (72 samples, 0.03%)</title><rect x="37.6384%" y="725" width="0.0269%" height="15" fill="rgb(234,200,18)" fg:x="100712" fg:w="72"/><text x="37.8884%" y="735.50"></text></g><g><title>ParseGenerator::generate (38 samples, 0.01%)</title><rect x="37.6911%" y="725" width="0.0142%" height="15" fill="rgb(228,45,11)" fg:x="100853" fg:w="38"/><text x="37.9411%" y="735.50"></text></g><g><title>Parse::Parse (38 samples, 0.01%)</title><rect x="37.6911%" y="709" width="0.0142%" height="15" fill="rgb(237,182,11)" fg:x="100853" fg:w="38"/><text x="37.9411%" y="719.50"></text></g><g><title>Thread::call_run (67 samples, 0.03%)</title><rect x="37.6877%" y="821" width="0.0250%" height="15" fill="rgb(241,175,49)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="831.50"></text></g><g><title>JavaThread::thread_main_inner (67 samples, 0.03%)</title><rect x="37.6877%" y="805" width="0.0250%" height="15" fill="rgb(247,38,35)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="815.50"></text></g><g><title>CompileBroker::compiler_thread_loop (67 samples, 0.03%)</title><rect x="37.6877%" y="789" width="0.0250%" height="15" fill="rgb(228,39,49)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="799.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (67 samples, 0.03%)</title><rect x="37.6877%" y="773" width="0.0250%" height="15" fill="rgb(226,101,26)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="783.50"></text></g><g><title>C2Compiler::compile_method (67 samples, 0.03%)</title><rect x="37.6877%" y="757" width="0.0250%" height="15" fill="rgb(206,141,19)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="767.50"></text></g><g><title>Compile::Compile (67 samples, 0.03%)</title><rect x="37.6877%" y="741" width="0.0250%" height="15" fill="rgb(211,200,13)" fg:x="100844" fg:w="67"/><text x="37.9377%" y="751.50"></text></g><g><title>_dl_update_slotinfo (75 samples, 0.03%)</title><rect x="37.7232%" y="821" width="0.0280%" height="15" fill="rgb(241,121,6)" fg:x="100939" fg:w="75"/><text x="37.9732%" y="831.50"></text></g><g><title>ParseGenerator::generate (31 samples, 0.01%)</title><rect x="37.7707%" y="693" width="0.0116%" height="15" fill="rgb(234,221,29)" fg:x="101066" fg:w="31"/><text x="38.0207%" y="703.50"></text></g><g><title>Parse::Parse (30 samples, 0.01%)</title><rect x="37.7710%" y="677" width="0.0112%" height="15" fill="rgb(229,136,5)" fg:x="101067" fg:w="30"/><text x="38.0210%" y="687.50"></text></g><g><title>start_thread (89 samples, 0.03%)</title><rect x="37.7583%" y="821" width="0.0333%" height="15" fill="rgb(238,36,11)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="831.50"></text></g><g><title>thread_native_entry (89 samples, 0.03%)</title><rect x="37.7583%" y="805" width="0.0333%" height="15" fill="rgb(251,55,41)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="815.50"></text></g><g><title>Thread::call_run (89 samples, 0.03%)</title><rect x="37.7583%" y="789" width="0.0333%" height="15" fill="rgb(242,34,40)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (89 samples, 0.03%)</title><rect x="37.7583%" y="773" width="0.0333%" height="15" fill="rgb(215,42,17)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (89 samples, 0.03%)</title><rect x="37.7583%" y="757" width="0.0333%" height="15" fill="rgb(207,44,46)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="767.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (89 samples, 0.03%)</title><rect x="37.7583%" y="741" width="0.0333%" height="15" fill="rgb(211,206,28)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="751.50"></text></g><g><title>C2Compiler::compile_method (89 samples, 0.03%)</title><rect x="37.7583%" y="725" width="0.0333%" height="15" fill="rgb(237,167,16)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="735.50"></text></g><g><title>Compile::Compile (89 samples, 0.03%)</title><rect x="37.7583%" y="709" width="0.0333%" height="15" fill="rgb(233,66,6)" fg:x="101033" fg:w="89"/><text x="38.0083%" y="719.50"></text></g><g><title>[unknown] (83,098 samples, 31.06%)</title><rect x="6.7435%" y="837" width="31.0556%" height="15" fill="rgb(246,123,29)" fg:x="18044" fg:w="83098"/><text x="6.9935%" y="847.50">[unknown]</text></g><g><title>Compile::inline_string_calls (54 samples, 0.02%)</title><rect x="37.8402%" y="693" width="0.0202%" height="15" fill="rgb(209,62,40)" fg:x="101252" fg:w="54"/><text x="38.0902%" y="703.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (54 samples, 0.02%)</title><rect x="37.8402%" y="677" width="0.0202%" height="15" fill="rgb(218,4,25)" fg:x="101252" fg:w="54"/><text x="38.0902%" y="687.50"></text></g><g><title>Dict::Insert (82 samples, 0.03%)</title><rect x="37.8648%" y="661" width="0.0306%" height="15" fill="rgb(253,91,49)" fg:x="101318" fg:w="82"/><text x="38.1148%" y="671.50"></text></g><g><title>CompileWrapper::CompileWrapper (104 samples, 0.04%)</title><rect x="37.8630%" y="693" width="0.0389%" height="15" fill="rgb(228,155,29)" fg:x="101313" fg:w="104"/><text x="38.1130%" y="703.50"></text></g><g><title>Type::Initialize (102 samples, 0.04%)</title><rect x="37.8637%" y="677" width="0.0381%" height="15" fill="rgb(243,57,37)" fg:x="101315" fg:w="102"/><text x="38.1137%" y="687.50"></text></g><g><title>Compile::identify_useful_nodes (210 samples, 0.08%)</title><rect x="37.9220%" y="677" width="0.0785%" height="15" fill="rgb(244,167,17)" fg:x="101471" fg:w="210"/><text x="38.1720%" y="687.50"></text></g><g><title>Compile::remove_useless_nodes (229 samples, 0.09%)</title><rect x="38.0005%" y="677" width="0.0856%" height="15" fill="rgb(207,181,38)" fg:x="101681" fg:w="229"/><text x="38.2505%" y="687.50"></text></g><g><title>Compile::update_dead_node_list (43 samples, 0.02%)</title><rect x="38.0861%" y="677" width="0.0161%" height="15" fill="rgb(211,8,23)" fg:x="101910" fg:w="43"/><text x="38.3361%" y="687.50"></text></g><g><title>PhaseRemoveUseless::PhaseRemoveUseless (552 samples, 0.21%)</title><rect x="37.9067%" y="693" width="0.2063%" height="15" fill="rgb(235,11,44)" fg:x="101430" fg:w="552"/><text x="38.1567%" y="703.50"></text></g><g><title>Unique_Node_List::remove_useless_nodes (29 samples, 0.01%)</title><rect x="38.1022%" y="677" width="0.0108%" height="15" fill="rgb(248,18,52)" fg:x="101953" fg:w="29"/><text x="38.3522%" y="687.50"></text></g><g><title>ciEnv::register_method (29 samples, 0.01%)</title><rect x="38.1223%" y="693" width="0.0108%" height="15" fill="rgb(208,4,7)" fg:x="102007" fg:w="29"/><text x="38.3723%" y="703.50"></text></g><g><title>C2Compiler::compile_method (892 samples, 0.33%)</title><rect x="37.8107%" y="725" width="0.3334%" height="15" fill="rgb(240,17,39)" fg:x="101173" fg:w="892"/><text x="38.0607%" y="735.50"></text></g><g><title>Compile::Compile (885 samples, 0.33%)</title><rect x="37.8133%" y="709" width="0.3307%" height="15" fill="rgb(207,170,3)" fg:x="101180" fg:w="885"/><text x="38.0633%" y="719.50"></text></g><g><title>ciMethod::ensure_method_data (29 samples, 0.01%)</title><rect x="38.1332%" y="693" width="0.0108%" height="15" fill="rgb(236,100,52)" fg:x="102036" fg:w="29"/><text x="38.3832%" y="703.50"></text></g><g><title>ciEnv::ciEnv (33 samples, 0.01%)</title><rect x="38.1694%" y="725" width="0.0123%" height="15" fill="rgb(246,78,51)" fg:x="102133" fg:w="33"/><text x="38.4194%" y="735.50"></text></g><g><title>ciMethod::ciMethod (32 samples, 0.01%)</title><rect x="38.1825%" y="677" width="0.0120%" height="15" fill="rgb(211,17,15)" fg:x="102168" fg:w="32"/><text x="38.4325%" y="687.50"></text></g><g><title>ciEnv::get_method_from_handle (36 samples, 0.01%)</title><rect x="38.1818%" y="725" width="0.0135%" height="15" fill="rgb(209,59,46)" fg:x="102166" fg:w="36"/><text x="38.4318%" y="735.50"></text></g><g><title>ciObjectFactory::get_metadata (34 samples, 0.01%)</title><rect x="38.1825%" y="709" width="0.0127%" height="15" fill="rgb(210,92,25)" fg:x="102168" fg:w="34"/><text x="38.4325%" y="719.50"></text></g><g><title>ciObjectFactory::create_new_metadata (34 samples, 0.01%)</title><rect x="38.1825%" y="693" width="0.0127%" height="15" fill="rgb(238,174,52)" fg:x="102168" fg:w="34"/><text x="38.4325%" y="703.50"></text></g><g><title>ciEnv::~ciEnv (39 samples, 0.01%)</title><rect x="38.1952%" y="725" width="0.0146%" height="15" fill="rgb(230,73,7)" fg:x="102202" fg:w="39"/><text x="38.4452%" y="735.50"></text></g><g><title>ciObjectFactory::remove_symbols (36 samples, 0.01%)</title><rect x="38.1963%" y="709" width="0.0135%" height="15" fill="rgb(243,124,40)" fg:x="102205" fg:w="36"/><text x="38.4463%" y="719.50"></text></g><g><title>CompileBroker::invoke_compiler_on_method (1,080 samples, 0.40%)</title><rect x="37.8069%" y="741" width="0.4036%" height="15" fill="rgb(244,170,11)" fg:x="101163" fg:w="1080"/><text x="38.0569%" y="751.50"></text></g><g><title>__pthread_cond_signal (30 samples, 0.01%)</title><rect x="38.2221%" y="693" width="0.0112%" height="15" fill="rgb(207,114,54)" fg:x="102274" fg:w="30"/><text x="38.4721%" y="703.50"></text></g><g><title>futex_wake (29 samples, 0.01%)</title><rect x="38.2225%" y="677" width="0.0108%" height="15" fill="rgb(205,42,20)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (29 samples, 0.01%)</title><rect x="38.2225%" y="661" width="0.0108%" height="15" fill="rgb(230,30,28)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="671.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="38.2225%" y="645" width="0.0108%" height="15" fill="rgb(205,73,54)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="655.50"></text></g><g><title>__x64_sys_futex (29 samples, 0.01%)</title><rect x="38.2225%" y="629" width="0.0108%" height="15" fill="rgb(254,227,23)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="639.50"></text></g><g><title>do_futex (29 samples, 0.01%)</title><rect x="38.2225%" y="613" width="0.0108%" height="15" fill="rgb(228,202,34)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="623.50"></text></g><g><title>futex_wake (29 samples, 0.01%)</title><rect x="38.2225%" y="597" width="0.0108%" height="15" fill="rgb(222,225,37)" fg:x="102275" fg:w="29"/><text x="38.4725%" y="607.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="38.2502%" y="501" width="0.0108%" height="15" fill="rgb(221,14,54)" fg:x="102349" fg:w="29"/><text x="38.5002%" y="511.50"></text></g><g><title>futex_wait_queue_me (64 samples, 0.02%)</title><rect x="38.2401%" y="549" width="0.0239%" height="15" fill="rgb(254,102,2)" fg:x="102322" fg:w="64"/><text x="38.4901%" y="559.50"></text></g><g><title>schedule (55 samples, 0.02%)</title><rect x="38.2434%" y="533" width="0.0206%" height="15" fill="rgb(232,104,17)" fg:x="102331" fg:w="55"/><text x="38.4934%" y="543.50"></text></g><g><title>__schedule (53 samples, 0.02%)</title><rect x="38.2442%" y="517" width="0.0198%" height="15" fill="rgb(250,220,14)" fg:x="102333" fg:w="53"/><text x="38.4942%" y="527.50"></text></g><g><title>do_futex (77 samples, 0.03%)</title><rect x="38.2389%" y="581" width="0.0288%" height="15" fill="rgb(241,158,9)" fg:x="102319" fg:w="77"/><text x="38.4889%" y="591.50"></text></g><g><title>futex_wait (77 samples, 0.03%)</title><rect x="38.2389%" y="565" width="0.0288%" height="15" fill="rgb(246,9,43)" fg:x="102319" fg:w="77"/><text x="38.4889%" y="575.50"></text></g><g><title>do_syscall_64 (81 samples, 0.03%)</title><rect x="38.2378%" y="613" width="0.0303%" height="15" fill="rgb(206,73,33)" fg:x="102316" fg:w="81"/><text x="38.4878%" y="623.50"></text></g><g><title>__x64_sys_futex (80 samples, 0.03%)</title><rect x="38.2382%" y="597" width="0.0299%" height="15" fill="rgb(222,79,8)" fg:x="102317" fg:w="80"/><text x="38.4882%" y="607.50"></text></g><g><title>__pthread_cond_timedwait (97 samples, 0.04%)</title><rect x="38.2341%" y="677" width="0.0363%" height="15" fill="rgb(234,8,54)" fg:x="102306" fg:w="97"/><text x="38.4841%" y="687.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="38.2341%" y="661" width="0.0363%" height="15" fill="rgb(209,134,38)" fg:x="102306" fg:w="97"/><text x="38.4841%" y="671.50"></text></g><g><title>futex_abstimed_wait_cancelable (91 samples, 0.03%)</title><rect x="38.2363%" y="645" width="0.0340%" height="15" fill="rgb(230,127,29)" fg:x="102312" fg:w="91"/><text x="38.4863%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (87 samples, 0.03%)</title><rect x="38.2378%" y="629" width="0.0325%" height="15" fill="rgb(242,44,41)" fg:x="102316" fg:w="87"/><text x="38.4878%" y="639.50"></text></g><g><title>os::PlatformEvent::park (106 samples, 0.04%)</title><rect x="38.2333%" y="693" width="0.0396%" height="15" fill="rgb(222,56,43)" fg:x="102304" fg:w="106"/><text x="38.4833%" y="703.50"></text></g><g><title>Monitor::IWait (143 samples, 0.05%)</title><rect x="38.2199%" y="709" width="0.0534%" height="15" fill="rgb(238,39,47)" fg:x="102268" fg:w="143"/><text x="38.4699%" y="719.50"></text></g><g><title>Monitor::wait (149 samples, 0.06%)</title><rect x="38.2184%" y="725" width="0.0557%" height="15" fill="rgb(226,79,43)" fg:x="102264" fg:w="149"/><text x="38.4684%" y="735.50"></text></g><g><title>TieredThresholdPolicy::select_task (32 samples, 0.01%)</title><rect x="38.2741%" y="725" width="0.0120%" height="15" fill="rgb(242,105,53)" fg:x="102413" fg:w="32"/><text x="38.5241%" y="735.50"></text></g><g><title>CompileQueue::get (212 samples, 0.08%)</title><rect x="38.2143%" y="741" width="0.0792%" height="15" fill="rgb(251,132,46)" fg:x="102253" fg:w="212"/><text x="38.4643%" y="751.50"></text></g><g><title>Thread::call_run (1,313 samples, 0.49%)</title><rect x="37.8047%" y="789" width="0.4907%" height="15" fill="rgb(231,77,14)" fg:x="101157" fg:w="1313"/><text x="38.0547%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (1,312 samples, 0.49%)</title><rect x="37.8051%" y="773" width="0.4903%" height="15" fill="rgb(240,135,9)" fg:x="101158" fg:w="1312"/><text x="38.0551%" y="783.50"></text></g><g><title>CompileBroker::compiler_thread_loop (1,312 samples, 0.49%)</title><rect x="37.8051%" y="757" width="0.4903%" height="15" fill="rgb(248,109,14)" fg:x="101158" fg:w="1312"/><text x="38.0551%" y="767.50"></text></g><g><title>__GI___clone (1,321 samples, 0.49%)</title><rect x="37.8021%" y="837" width="0.4937%" height="15" fill="rgb(227,146,52)" fg:x="101150" fg:w="1321"/><text x="38.0521%" y="847.50"></text></g><g><title>start_thread (1,315 samples, 0.49%)</title><rect x="37.8043%" y="821" width="0.4914%" height="15" fill="rgb(232,54,3)" fg:x="101156" fg:w="1315"/><text x="38.0543%" y="831.50"></text></g><g><title>thread_native_entry (1,315 samples, 0.49%)</title><rect x="37.8043%" y="805" width="0.4914%" height="15" fill="rgb(229,201,43)" fg:x="101156" fg:w="1315"/><text x="38.0543%" y="815.50"></text></g><g><title>asm_exc_page_fault (36 samples, 0.01%)</title><rect x="38.3021%" y="837" width="0.0135%" height="15" fill="rgb(252,161,33)" fg:x="102488" fg:w="36"/><text x="38.5521%" y="847.50"></text></g><g><title>C2_CompilerThre (89,209 samples, 33.34%)</title><rect x="5.0120%" y="853" width="33.3394%" height="15" fill="rgb(226,146,40)" fg:x="13411" fg:w="89209"/><text x="5.2620%" y="863.50">C2_CompilerThre</text></g><g><title>[perf-21254.map] (114 samples, 0.04%)</title><rect x="38.3522%" y="837" width="0.0426%" height="15" fill="rgb(219,47,25)" fg:x="102622" fg:w="114"/><text x="38.6022%" y="847.50"></text></g><g><title>Command-Accumul (140 samples, 0.05%)</title><rect x="38.3514%" y="853" width="0.0523%" height="15" fill="rgb(250,135,13)" fg:x="102620" fg:w="140"/><text x="38.6014%" y="863.50"></text></g><g><title>Finalizer (29 samples, 0.01%)</title><rect x="38.4124%" y="853" width="0.0108%" height="15" fill="rgb(219,229,18)" fg:x="102783" fg:w="29"/><text x="38.6624%" y="863.50"></text></g><g><title>finish_task_switch (44 samples, 0.02%)</title><rect x="38.7233%" y="613" width="0.0164%" height="15" fill="rgb(217,152,27)" fg:x="103615" fg:w="44"/><text x="38.9733%" y="623.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="38.7237%" y="597" width="0.0161%" height="15" fill="rgb(225,71,47)" fg:x="103616" fg:w="43"/><text x="38.9737%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="38.7240%" y="581" width="0.0157%" height="15" fill="rgb(220,139,14)" fg:x="103617" fg:w="42"/><text x="38.9740%" y="591.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="38.7240%" y="565" width="0.0157%" height="15" fill="rgb(247,54,32)" fg:x="103617" fg:w="42"/><text x="38.9740%" y="575.50"></text></g><g><title>futex_wait_queue_me (149 samples, 0.06%)</title><rect x="38.6997%" y="661" width="0.0557%" height="15" fill="rgb(252,131,39)" fg:x="103552" fg:w="149"/><text x="38.9497%" y="671.50"></text></g><g><title>schedule (133 samples, 0.05%)</title><rect x="38.7057%" y="645" width="0.0497%" height="15" fill="rgb(210,108,39)" fg:x="103568" fg:w="133"/><text x="38.9557%" y="655.50"></text></g><g><title>__schedule (129 samples, 0.05%)</title><rect x="38.7072%" y="629" width="0.0482%" height="15" fill="rgb(205,23,29)" fg:x="103572" fg:w="129"/><text x="38.9572%" y="639.50"></text></g><g><title>do_futex (179 samples, 0.07%)</title><rect x="38.6956%" y="693" width="0.0669%" height="15" fill="rgb(246,139,46)" fg:x="103541" fg:w="179"/><text x="38.9456%" y="703.50"></text></g><g><title>futex_wait (174 samples, 0.07%)</title><rect x="38.6975%" y="677" width="0.0650%" height="15" fill="rgb(250,81,26)" fg:x="103546" fg:w="174"/><text x="38.9475%" y="687.50"></text></g><g><title>__x64_sys_futex (189 samples, 0.07%)</title><rect x="38.6945%" y="709" width="0.0706%" height="15" fill="rgb(214,104,7)" fg:x="103538" fg:w="189"/><text x="38.9445%" y="719.50"></text></g><g><title>do_syscall_64 (191 samples, 0.07%)</title><rect x="38.6941%" y="725" width="0.0714%" height="15" fill="rgb(233,189,8)" fg:x="103537" fg:w="191"/><text x="38.9441%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (196 samples, 0.07%)</title><rect x="38.6930%" y="741" width="0.0732%" height="15" fill="rgb(228,141,17)" fg:x="103534" fg:w="196"/><text x="38.9430%" y="751.50"></text></g><g><title>__pthread_cond_timedwait (219 samples, 0.08%)</title><rect x="38.6848%" y="789" width="0.0818%" height="15" fill="rgb(247,157,1)" fg:x="103512" fg:w="219"/><text x="38.9348%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (219 samples, 0.08%)</title><rect x="38.6848%" y="773" width="0.0818%" height="15" fill="rgb(249,225,5)" fg:x="103512" fg:w="219"/><text x="38.9348%" y="783.50"></text></g><g><title>futex_abstimed_wait_cancelable (208 samples, 0.08%)</title><rect x="38.6889%" y="757" width="0.0777%" height="15" fill="rgb(242,55,13)" fg:x="103523" fg:w="208"/><text x="38.9389%" y="767.50"></text></g><g><title>futex_wait_queue_me (48 samples, 0.02%)</title><rect x="38.7685%" y="661" width="0.0179%" height="15" fill="rgb(230,49,50)" fg:x="103736" fg:w="48"/><text x="39.0185%" y="671.50"></text></g><g><title>schedule (45 samples, 0.02%)</title><rect x="38.7696%" y="645" width="0.0168%" height="15" fill="rgb(241,111,38)" fg:x="103739" fg:w="45"/><text x="39.0196%" y="655.50"></text></g><g><title>__schedule (44 samples, 0.02%)</title><rect x="38.7700%" y="629" width="0.0164%" height="15" fill="rgb(252,155,4)" fg:x="103740" fg:w="44"/><text x="39.0200%" y="639.50"></text></g><g><title>__x64_sys_futex (52 samples, 0.02%)</title><rect x="38.7678%" y="709" width="0.0194%" height="15" fill="rgb(212,69,32)" fg:x="103734" fg:w="52"/><text x="39.0178%" y="719.50"></text></g><g><title>do_futex (52 samples, 0.02%)</title><rect x="38.7678%" y="693" width="0.0194%" height="15" fill="rgb(243,107,47)" fg:x="103734" fg:w="52"/><text x="39.0178%" y="703.50"></text></g><g><title>futex_wait (52 samples, 0.02%)</title><rect x="38.7678%" y="677" width="0.0194%" height="15" fill="rgb(247,130,12)" fg:x="103734" fg:w="52"/><text x="39.0178%" y="687.50"></text></g><g><title>do_syscall_64 (53 samples, 0.02%)</title><rect x="38.7678%" y="725" width="0.0198%" height="15" fill="rgb(233,74,16)" fg:x="103734" fg:w="53"/><text x="39.0178%" y="735.50"></text></g><g><title>__pthread_cond_wait (58 samples, 0.02%)</title><rect x="38.7666%" y="789" width="0.0217%" height="15" fill="rgb(208,58,18)" fg:x="103731" fg:w="58"/><text x="39.0166%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (58 samples, 0.02%)</title><rect x="38.7666%" y="773" width="0.0217%" height="15" fill="rgb(242,225,1)" fg:x="103731" fg:w="58"/><text x="39.0166%" y="783.50"></text></g><g><title>futex_wait_cancelable (57 samples, 0.02%)</title><rect x="38.7670%" y="757" width="0.0213%" height="15" fill="rgb(249,39,40)" fg:x="103732" fg:w="57"/><text x="39.0170%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (55 samples, 0.02%)</title><rect x="38.7678%" y="741" width="0.0206%" height="15" fill="rgb(207,72,44)" fg:x="103734" fg:w="55"/><text x="39.0178%" y="751.50"></text></g><g><title>Parker::park (322 samples, 0.12%)</title><rect x="38.6784%" y="805" width="0.1203%" height="15" fill="rgb(215,193,12)" fg:x="103495" fg:w="322"/><text x="38.9284%" y="815.50"></text></g><g><title>Unsafe_Park (338 samples, 0.13%)</title><rect x="38.6740%" y="821" width="0.1263%" height="15" fill="rgb(248,41,39)" fg:x="103483" fg:w="338"/><text x="38.9240%" y="831.50"></text></g><g><title>[perf-21254.map] (1,004 samples, 0.38%)</title><rect x="38.4299%" y="837" width="0.3752%" height="15" fill="rgb(253,85,4)" fg:x="102830" fg:w="1004"/><text x="38.6799%" y="847.50"></text></g><g><title>ForkJoinPool.co (1,041 samples, 0.39%)</title><rect x="38.4232%" y="853" width="0.3890%" height="15" fill="rgb(243,70,31)" fg:x="102812" fg:w="1041"/><text x="38.6732%" y="863.50"></text></g><g><title>G1_Conc#0 (39 samples, 0.01%)</title><rect x="38.8122%" y="853" width="0.0146%" height="15" fill="rgb(253,195,26)" fg:x="103853" fg:w="39"/><text x="39.0622%" y="863.50"></text></g><g><title>__GI___clone (37 samples, 0.01%)</title><rect x="38.8130%" y="837" width="0.0138%" height="15" fill="rgb(243,42,11)" fg:x="103855" fg:w="37"/><text x="39.0630%" y="847.50"></text></g><g><title>start_thread (37 samples, 0.01%)</title><rect x="38.8130%" y="821" width="0.0138%" height="15" fill="rgb(239,66,17)" fg:x="103855" fg:w="37"/><text x="39.0630%" y="831.50"></text></g><g><title>thread_native_entry (37 samples, 0.01%)</title><rect x="38.8130%" y="805" width="0.0138%" height="15" fill="rgb(217,132,21)" fg:x="103855" fg:w="37"/><text x="39.0630%" y="815.50"></text></g><g><title>Thread::call_run (37 samples, 0.01%)</title><rect x="38.8130%" y="789" width="0.0138%" height="15" fill="rgb(252,202,21)" fg:x="103855" fg:w="37"/><text x="39.0630%" y="799.50"></text></g><g><title>GangWorker::loop (37 samples, 0.01%)</title><rect x="38.8130%" y="773" width="0.0138%" height="15" fill="rgb(233,98,36)" fg:x="103855" fg:w="37"/><text x="39.0630%" y="783.50"></text></g><g><title>__GI___clone (29 samples, 0.01%)</title><rect x="38.8272%" y="837" width="0.0108%" height="15" fill="rgb(216,153,54)" fg:x="103893" fg:w="29"/><text x="39.0772%" y="847.50"></text></g><g><title>start_thread (29 samples, 0.01%)</title><rect x="38.8272%" y="821" width="0.0108%" height="15" fill="rgb(250,99,7)" fg:x="103893" fg:w="29"/><text x="39.0772%" y="831.50"></text></g><g><title>thread_native_entry (29 samples, 0.01%)</title><rect x="38.8272%" y="805" width="0.0108%" height="15" fill="rgb(207,56,50)" fg:x="103893" fg:w="29"/><text x="39.0772%" y="815.50"></text></g><g><title>Thread::call_run (29 samples, 0.01%)</title><rect x="38.8272%" y="789" width="0.0108%" height="15" fill="rgb(244,61,34)" fg:x="103893" fg:w="29"/><text x="39.0772%" y="799.50"></text></g><g><title>GangWorker::loop (29 samples, 0.01%)</title><rect x="38.8272%" y="773" width="0.0108%" height="15" fill="rgb(241,50,38)" fg:x="103893" fg:w="29"/><text x="39.0772%" y="783.50"></text></g><g><title>G1_Conc#1 (35 samples, 0.01%)</title><rect x="38.8268%" y="853" width="0.0131%" height="15" fill="rgb(212,166,30)" fg:x="103892" fg:w="35"/><text x="39.0768%" y="863.50"></text></g><g><title>G1_Main_Marker (29 samples, 0.01%)</title><rect x="38.8399%" y="853" width="0.0108%" height="15" fill="rgb(249,127,32)" fg:x="103927" fg:w="29"/><text x="39.0899%" y="863.50"></text></g><g><title>__GI___clone (28 samples, 0.01%)</title><rect x="38.8403%" y="837" width="0.0105%" height="15" fill="rgb(209,103,0)" fg:x="103928" fg:w="28"/><text x="39.0903%" y="847.50"></text></g><g><title>DirtyCardQueueSet::refine_completed_buffer_concurrently (79 samples, 0.03%)</title><rect x="38.8530%" y="741" width="0.0295%" height="15" fill="rgb(238,209,51)" fg:x="103962" fg:w="79"/><text x="39.1030%" y="751.50"></text></g><g><title>G1RemSet::refine_card_concurrently (79 samples, 0.03%)</title><rect x="38.8530%" y="725" width="0.0295%" height="15" fill="rgb(237,56,23)" fg:x="103962" fg:w="79"/><text x="39.1030%" y="735.50"></text></g><g><title>G1ConcurrentRefineThread::run_service (80 samples, 0.03%)</title><rect x="38.8530%" y="757" width="0.0299%" height="15" fill="rgb(215,153,46)" fg:x="103962" fg:w="80"/><text x="39.1030%" y="767.50"></text></g><g><title>G1_Refine#0 (89 samples, 0.03%)</title><rect x="38.8507%" y="853" width="0.0333%" height="15" fill="rgb(224,49,31)" fg:x="103956" fg:w="89"/><text x="39.1007%" y="863.50"></text></g><g><title>__GI___clone (84 samples, 0.03%)</title><rect x="38.8526%" y="837" width="0.0314%" height="15" fill="rgb(250,18,42)" fg:x="103961" fg:w="84"/><text x="39.1026%" y="847.50"></text></g><g><title>start_thread (84 samples, 0.03%)</title><rect x="38.8526%" y="821" width="0.0314%" height="15" fill="rgb(215,176,39)" fg:x="103961" fg:w="84"/><text x="39.1026%" y="831.50"></text></g><g><title>thread_native_entry (83 samples, 0.03%)</title><rect x="38.8530%" y="805" width="0.0310%" height="15" fill="rgb(223,77,29)" fg:x="103962" fg:w="83"/><text x="39.1030%" y="815.50"></text></g><g><title>Thread::call_run (83 samples, 0.03%)</title><rect x="38.8530%" y="789" width="0.0310%" height="15" fill="rgb(234,94,52)" fg:x="103962" fg:w="83"/><text x="39.1030%" y="799.50"></text></g><g><title>ConcurrentGCThread::run (83 samples, 0.03%)</title><rect x="38.8530%" y="773" width="0.0310%" height="15" fill="rgb(220,154,50)" fg:x="103962" fg:w="83"/><text x="39.1030%" y="783.50"></text></g><g><title>ConcurrentGCThread::run (27 samples, 0.01%)</title><rect x="38.8844%" y="773" width="0.0101%" height="15" fill="rgb(212,11,10)" fg:x="104046" fg:w="27"/><text x="39.1344%" y="783.50"></text></g><g><title>G1_Refine#1 (29 samples, 0.01%)</title><rect x="38.8840%" y="853" width="0.0108%" height="15" fill="rgb(205,166,19)" fg:x="104045" fg:w="29"/><text x="39.1340%" y="863.50"></text></g><g><title>__GI___clone (28 samples, 0.01%)</title><rect x="38.8844%" y="837" width="0.0105%" height="15" fill="rgb(244,198,16)" fg:x="104046" fg:w="28"/><text x="39.1344%" y="847.50"></text></g><g><title>start_thread (28 samples, 0.01%)</title><rect x="38.8844%" y="821" width="0.0105%" height="15" fill="rgb(219,69,12)" fg:x="104046" fg:w="28"/><text x="39.1344%" y="831.50"></text></g><g><title>thread_native_entry (28 samples, 0.01%)</title><rect x="38.8844%" y="805" width="0.0105%" height="15" fill="rgb(245,30,7)" fg:x="104046" fg:w="28"/><text x="39.1344%" y="815.50"></text></g><g><title>Thread::call_run (28 samples, 0.01%)</title><rect x="38.8844%" y="789" width="0.0105%" height="15" fill="rgb(218,221,48)" fg:x="104046" fg:w="28"/><text x="39.1344%" y="799.50"></text></g><g><title>__GI___clone (29 samples, 0.01%)</title><rect x="38.8956%" y="837" width="0.0108%" height="15" fill="rgb(216,66,15)" fg:x="104076" fg:w="29"/><text x="39.1456%" y="847.50"></text></g><g><title>start_thread (29 samples, 0.01%)</title><rect x="38.8956%" y="821" width="0.0108%" height="15" fill="rgb(226,122,50)" fg:x="104076" fg:w="29"/><text x="39.1456%" y="831.50"></text></g><g><title>thread_native_entry (29 samples, 0.01%)</title><rect x="38.8956%" y="805" width="0.0108%" height="15" fill="rgb(239,156,16)" fg:x="104076" fg:w="29"/><text x="39.1456%" y="815.50"></text></g><g><title>Thread::call_run (29 samples, 0.01%)</title><rect x="38.8956%" y="789" width="0.0108%" height="15" fill="rgb(224,27,38)" fg:x="104076" fg:w="29"/><text x="39.1456%" y="799.50"></text></g><g><title>ConcurrentGCThread::run (29 samples, 0.01%)</title><rect x="38.8956%" y="773" width="0.0108%" height="15" fill="rgb(224,39,27)" fg:x="104076" fg:w="29"/><text x="39.1456%" y="783.50"></text></g><g><title>G1_Young_RemSet (32 samples, 0.01%)</title><rect x="38.8948%" y="853" width="0.0120%" height="15" fill="rgb(215,92,29)" fg:x="104074" fg:w="32"/><text x="39.1448%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (72 samples, 0.03%)</title><rect x="38.9423%" y="709" width="0.0269%" height="15" fill="rgb(207,159,16)" fg:x="104201" fg:w="72"/><text x="39.1923%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (126 samples, 0.05%)</title><rect x="38.9232%" y="725" width="0.0471%" height="15" fill="rgb(238,163,47)" fg:x="104150" fg:w="126"/><text x="39.1732%" y="735.50"></text></g><g><title>SpinPause (81 samples, 0.03%)</title><rect x="38.9722%" y="725" width="0.0303%" height="15" fill="rgb(219,91,49)" fg:x="104281" fg:w="81"/><text x="39.2222%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (225 samples, 0.08%)</title><rect x="38.9206%" y="741" width="0.0841%" height="15" fill="rgb(227,167,31)" fg:x="104143" fg:w="225"/><text x="39.1706%" y="751.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (60 samples, 0.02%)</title><rect x="39.0047%" y="661" width="0.0224%" height="15" fill="rgb(234,80,54)" fg:x="104368" fg:w="60"/><text x="39.2547%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (44 samples, 0.02%)</title><rect x="39.0107%" y="645" width="0.0164%" height="15" fill="rgb(212,114,2)" fg:x="104384" fg:w="44"/><text x="39.2607%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (35 samples, 0.01%)</title><rect x="39.0140%" y="629" width="0.0131%" height="15" fill="rgb(234,50,24)" fg:x="104393" fg:w="35"/><text x="39.2640%" y="639.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (65 samples, 0.02%)</title><rect x="39.0047%" y="741" width="0.0243%" height="15" fill="rgb(221,68,8)" fg:x="104368" fg:w="65"/><text x="39.2547%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (65 samples, 0.02%)</title><rect x="39.0047%" y="725" width="0.0243%" height="15" fill="rgb(254,180,31)" fg:x="104368" fg:w="65"/><text x="39.2547%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (65 samples, 0.02%)</title><rect x="39.0047%" y="709" width="0.0243%" height="15" fill="rgb(247,130,50)" fg:x="104368" fg:w="65"/><text x="39.2547%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (65 samples, 0.02%)</title><rect x="39.0047%" y="693" width="0.0243%" height="15" fill="rgb(211,109,4)" fg:x="104368" fg:w="65"/><text x="39.2547%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (65 samples, 0.02%)</title><rect x="39.0047%" y="677" width="0.0243%" height="15" fill="rgb(238,50,21)" fg:x="104368" fg:w="65"/><text x="39.2547%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (29 samples, 0.01%)</title><rect x="39.0309%" y="645" width="0.0108%" height="15" fill="rgb(225,57,45)" fg:x="104438" fg:w="29"/><text x="39.2809%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (28 samples, 0.01%)</title><rect x="39.0312%" y="629" width="0.0105%" height="15" fill="rgb(209,196,50)" fg:x="104439" fg:w="28"/><text x="39.2812%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (34 samples, 0.01%)</title><rect x="39.0294%" y="661" width="0.0127%" height="15" fill="rgb(242,140,13)" fg:x="104434" fg:w="34"/><text x="39.2794%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (42 samples, 0.02%)</title><rect x="39.0290%" y="693" width="0.0157%" height="15" fill="rgb(217,111,7)" fg:x="104433" fg:w="42"/><text x="39.2790%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (41 samples, 0.02%)</title><rect x="39.0294%" y="677" width="0.0153%" height="15" fill="rgb(253,193,51)" fg:x="104434" fg:w="41"/><text x="39.2794%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (53 samples, 0.02%)</title><rect x="39.0290%" y="741" width="0.0198%" height="15" fill="rgb(252,70,29)" fg:x="104433" fg:w="53"/><text x="39.2790%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (53 samples, 0.02%)</title><rect x="39.0290%" y="725" width="0.0198%" height="15" fill="rgb(232,127,12)" fg:x="104433" fg:w="53"/><text x="39.2790%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (53 samples, 0.02%)</title><rect x="39.0290%" y="709" width="0.0198%" height="15" fill="rgb(211,180,21)" fg:x="104433" fg:w="53"/><text x="39.2790%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (34 samples, 0.01%)</title><rect x="39.0495%" y="709" width="0.0127%" height="15" fill="rgb(229,72,13)" fg:x="104488" fg:w="34"/><text x="39.2995%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (34 samples, 0.01%)</title><rect x="39.0495%" y="693" width="0.0127%" height="15" fill="rgb(240,211,49)" fg:x="104488" fg:w="34"/><text x="39.2995%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (34 samples, 0.01%)</title><rect x="39.0495%" y="677" width="0.0127%" height="15" fill="rgb(219,149,40)" fg:x="104488" fg:w="34"/><text x="39.2995%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (38 samples, 0.01%)</title><rect x="39.0907%" y="629" width="0.0142%" height="15" fill="rgb(210,127,46)" fg:x="104598" fg:w="38"/><text x="39.3407%" y="639.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (31 samples, 0.01%)</title><rect x="39.0933%" y="613" width="0.0116%" height="15" fill="rgb(220,106,7)" fg:x="104605" fg:w="31"/><text x="39.3433%" y="623.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (49 samples, 0.02%)</title><rect x="39.0869%" y="645" width="0.0183%" height="15" fill="rgb(249,31,22)" fg:x="104588" fg:w="49"/><text x="39.3369%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (36 samples, 0.01%)</title><rect x="39.1082%" y="613" width="0.0135%" height="15" fill="rgb(253,1,49)" fg:x="104645" fg:w="36"/><text x="39.3582%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (46 samples, 0.02%)</title><rect x="39.1052%" y="645" width="0.0172%" height="15" fill="rgb(227,144,33)" fg:x="104637" fg:w="46"/><text x="39.3552%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (45 samples, 0.02%)</title><rect x="39.1056%" y="629" width="0.0168%" height="15" fill="rgb(249,163,44)" fg:x="104638" fg:w="45"/><text x="39.3556%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (200 samples, 0.07%)</title><rect x="39.0495%" y="725" width="0.0747%" height="15" fill="rgb(234,15,39)" fg:x="104488" fg:w="200"/><text x="39.2995%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (166 samples, 0.06%)</title><rect x="39.0623%" y="709" width="0.0620%" height="15" fill="rgb(207,66,16)" fg:x="104522" fg:w="166"/><text x="39.3123%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (166 samples, 0.06%)</title><rect x="39.0623%" y="693" width="0.0620%" height="15" fill="rgb(233,112,24)" fg:x="104522" fg:w="166"/><text x="39.3123%" y="703.50"></text></g><g><title>JavaThread::oops_do (166 samples, 0.06%)</title><rect x="39.0623%" y="677" width="0.0620%" height="15" fill="rgb(230,90,22)" fg:x="104522" fg:w="166"/><text x="39.3123%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (100 samples, 0.04%)</title><rect x="39.0869%" y="661" width="0.0374%" height="15" fill="rgb(229,61,13)" fg:x="104588" fg:w="100"/><text x="39.3369%" y="671.50"></text></g><g><title>G1ParTask::work (549 samples, 0.21%)</title><rect x="38.9206%" y="757" width="0.2052%" height="15" fill="rgb(225,57,24)" fg:x="104143" fg:w="549"/><text x="39.1706%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (206 samples, 0.08%)</title><rect x="39.0488%" y="741" width="0.0770%" height="15" fill="rgb(208,169,48)" fg:x="104486" fg:w="206"/><text x="39.2988%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (61 samples, 0.02%)</title><rect x="39.1292%" y="757" width="0.0228%" height="15" fill="rgb(244,218,51)" fg:x="104701" fg:w="61"/><text x="39.3792%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (42 samples, 0.02%)</title><rect x="39.1363%" y="741" width="0.0157%" height="15" fill="rgb(214,148,10)" fg:x="104720" fg:w="42"/><text x="39.3863%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (42 samples, 0.02%)</title><rect x="39.1363%" y="725" width="0.0157%" height="15" fill="rgb(225,174,27)" fg:x="104720" fg:w="42"/><text x="39.3863%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (42 samples, 0.02%)</title><rect x="39.1363%" y="709" width="0.0157%" height="15" fill="rgb(230,96,26)" fg:x="104720" fg:w="42"/><text x="39.3863%" y="719.50"></text></g><g><title>SpinPause (41 samples, 0.02%)</title><rect x="39.1366%" y="693" width="0.0153%" height="15" fill="rgb(232,10,30)" fg:x="104721" fg:w="41"/><text x="39.3866%" y="703.50"></text></g><g><title>JavaThread::nmethods_do (39 samples, 0.01%)</title><rect x="39.1568%" y="725" width="0.0146%" height="15" fill="rgb(222,8,50)" fg:x="104775" fg:w="39"/><text x="39.4068%" y="735.50"></text></g><g><title>frame::sender (32 samples, 0.01%)</title><rect x="39.1594%" y="709" width="0.0120%" height="15" fill="rgb(213,81,27)" fg:x="104782" fg:w="32"/><text x="39.4094%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (54 samples, 0.02%)</title><rect x="39.1527%" y="757" width="0.0202%" height="15" fill="rgb(245,50,10)" fg:x="104764" fg:w="54"/><text x="39.4027%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (51 samples, 0.02%)</title><rect x="39.1538%" y="741" width="0.0191%" height="15" fill="rgb(216,100,18)" fg:x="104767" fg:w="51"/><text x="39.4038%" y="751.50"></text></g><g><title>do_syscall_64 (27 samples, 0.01%)</title><rect x="39.1755%" y="661" width="0.0101%" height="15" fill="rgb(236,147,54)" fg:x="104825" fg:w="27"/><text x="39.4255%" y="671.50"></text></g><g><title>__x64_sys_futex (27 samples, 0.01%)</title><rect x="39.1755%" y="645" width="0.0101%" height="15" fill="rgb(205,143,26)" fg:x="104825" fg:w="27"/><text x="39.4255%" y="655.50"></text></g><g><title>__GI___clone (737 samples, 0.28%)</title><rect x="38.9116%" y="837" width="0.2754%" height="15" fill="rgb(236,26,9)" fg:x="104119" fg:w="737"/><text x="39.1616%" y="847.50"></text></g><g><title>start_thread (737 samples, 0.28%)</title><rect x="38.9116%" y="821" width="0.2754%" height="15" fill="rgb(221,165,53)" fg:x="104119" fg:w="737"/><text x="39.1616%" y="831.50"></text></g><g><title>thread_native_entry (737 samples, 0.28%)</title><rect x="38.9116%" y="805" width="0.2754%" height="15" fill="rgb(214,110,17)" fg:x="104119" fg:w="737"/><text x="39.1616%" y="815.50"></text></g><g><title>Thread::call_run (737 samples, 0.28%)</title><rect x="38.9116%" y="789" width="0.2754%" height="15" fill="rgb(237,197,12)" fg:x="104119" fg:w="737"/><text x="39.1616%" y="799.50"></text></g><g><title>GangWorker::loop (737 samples, 0.28%)</title><rect x="38.9116%" y="773" width="0.2754%" height="15" fill="rgb(205,84,17)" fg:x="104119" fg:w="737"/><text x="39.1616%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (33 samples, 0.01%)</title><rect x="39.1747%" y="757" width="0.0123%" height="15" fill="rgb(237,18,45)" fg:x="104823" fg:w="33"/><text x="39.4247%" y="767.50"></text></g><g><title>PosixSemaphore::wait (33 samples, 0.01%)</title><rect x="39.1747%" y="741" width="0.0123%" height="15" fill="rgb(221,87,14)" fg:x="104823" fg:w="33"/><text x="39.4247%" y="751.50"></text></g><g><title>__new_sem_wait_slow (33 samples, 0.01%)</title><rect x="39.1747%" y="725" width="0.0123%" height="15" fill="rgb(238,186,15)" fg:x="104823" fg:w="33"/><text x="39.4247%" y="735.50"></text></g><g><title>do_futex_wait (31 samples, 0.01%)</title><rect x="39.1755%" y="709" width="0.0116%" height="15" fill="rgb(208,115,11)" fg:x="104825" fg:w="31"/><text x="39.4255%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (31 samples, 0.01%)</title><rect x="39.1755%" y="693" width="0.0116%" height="15" fill="rgb(254,175,0)" fg:x="104825" fg:w="31"/><text x="39.4255%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="39.1755%" y="677" width="0.0116%" height="15" fill="rgb(227,24,42)" fg:x="104825" fg:w="31"/><text x="39.4255%" y="687.50"></text></g><g><title>GC_Thread#0 (751 samples, 0.28%)</title><rect x="38.9068%" y="853" width="0.2807%" height="15" fill="rgb(223,211,37)" fg:x="104106" fg:w="751"/><text x="39.1568%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (96 samples, 0.04%)</title><rect x="39.2319%" y="709" width="0.0359%" height="15" fill="rgb(235,49,27)" fg:x="104976" fg:w="96"/><text x="39.4819%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (168 samples, 0.06%)</title><rect x="39.2061%" y="725" width="0.0628%" height="15" fill="rgb(254,97,51)" fg:x="104907" fg:w="168"/><text x="39.4561%" y="735.50"></text></g><g><title>SpinPause (80 samples, 0.03%)</title><rect x="39.2723%" y="725" width="0.0299%" height="15" fill="rgb(249,51,40)" fg:x="105084" fg:w="80"/><text x="39.5223%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (274 samples, 0.10%)</title><rect x="39.2020%" y="741" width="0.1024%" height="15" fill="rgb(210,128,45)" fg:x="104896" fg:w="274"/><text x="39.4520%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (46 samples, 0.02%)</title><rect x="39.3171%" y="629" width="0.0172%" height="15" fill="rgb(224,137,50)" fg:x="105204" fg:w="46"/><text x="39.5671%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (67 samples, 0.03%)</title><rect x="39.3097%" y="645" width="0.0250%" height="15" fill="rgb(242,15,9)" fg:x="105184" fg:w="67"/><text x="39.5597%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (85 samples, 0.03%)</title><rect x="39.3044%" y="661" width="0.0318%" height="15" fill="rgb(233,187,41)" fg:x="105170" fg:w="85"/><text x="39.5544%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (97 samples, 0.04%)</title><rect x="39.3044%" y="741" width="0.0363%" height="15" fill="rgb(227,2,29)" fg:x="105170" fg:w="97"/><text x="39.5544%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (97 samples, 0.04%)</title><rect x="39.3044%" y="725" width="0.0363%" height="15" fill="rgb(222,70,3)" fg:x="105170" fg:w="97"/><text x="39.5544%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (97 samples, 0.04%)</title><rect x="39.3044%" y="709" width="0.0363%" height="15" fill="rgb(213,11,42)" fg:x="105170" fg:w="97"/><text x="39.5544%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (97 samples, 0.04%)</title><rect x="39.3044%" y="693" width="0.0363%" height="15" fill="rgb(225,150,9)" fg:x="105170" fg:w="97"/><text x="39.5544%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (97 samples, 0.04%)</title><rect x="39.3044%" y="677" width="0.0363%" height="15" fill="rgb(230,162,45)" fg:x="105170" fg:w="97"/><text x="39.5544%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (31 samples, 0.01%)</title><rect x="39.3448%" y="645" width="0.0116%" height="15" fill="rgb(222,14,52)" fg:x="105278" fg:w="31"/><text x="39.5948%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.01%)</title><rect x="39.3463%" y="629" width="0.0101%" height="15" fill="rgb(254,198,14)" fg:x="105282" fg:w="27"/><text x="39.5963%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (45 samples, 0.02%)</title><rect x="39.3407%" y="661" width="0.0168%" height="15" fill="rgb(220,217,30)" fg:x="105267" fg:w="45"/><text x="39.5907%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (54 samples, 0.02%)</title><rect x="39.3407%" y="677" width="0.0202%" height="15" fill="rgb(215,146,41)" fg:x="105267" fg:w="54"/><text x="39.5907%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (55 samples, 0.02%)</title><rect x="39.3407%" y="693" width="0.0206%" height="15" fill="rgb(217,27,36)" fg:x="105267" fg:w="55"/><text x="39.5907%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (82 samples, 0.03%)</title><rect x="39.3407%" y="741" width="0.0306%" height="15" fill="rgb(219,218,39)" fg:x="105267" fg:w="82"/><text x="39.5907%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (82 samples, 0.03%)</title><rect x="39.3407%" y="725" width="0.0306%" height="15" fill="rgb(219,4,42)" fg:x="105267" fg:w="82"/><text x="39.5907%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (82 samples, 0.03%)</title><rect x="39.3407%" y="709" width="0.0306%" height="15" fill="rgb(249,119,36)" fg:x="105267" fg:w="82"/><text x="39.5907%" y="719.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_strong_code_roots (27 samples, 0.01%)</title><rect x="39.3612%" y="693" width="0.0101%" height="15" fill="rgb(209,23,33)" fg:x="105322" fg:w="27"/><text x="39.6112%" y="703.50"></text></g><g><title>G1CodeRootSet::nmethods_do (27 samples, 0.01%)</title><rect x="39.3612%" y="677" width="0.0101%" height="15" fill="rgb(211,10,0)" fg:x="105322" fg:w="27"/><text x="39.6112%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (37 samples, 0.01%)</title><rect x="39.3717%" y="709" width="0.0138%" height="15" fill="rgb(208,99,37)" fg:x="105350" fg:w="37"/><text x="39.6217%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (37 samples, 0.01%)</title><rect x="39.3717%" y="693" width="0.0138%" height="15" fill="rgb(213,132,31)" fg:x="105350" fg:w="37"/><text x="39.6217%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (37 samples, 0.01%)</title><rect x="39.3717%" y="677" width="0.0138%" height="15" fill="rgb(243,129,40)" fg:x="105350" fg:w="37"/><text x="39.6217%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (33 samples, 0.01%)</title><rect x="39.3732%" y="661" width="0.0123%" height="15" fill="rgb(210,66,33)" fg:x="105354" fg:w="33"/><text x="39.6232%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (32 samples, 0.01%)</title><rect x="39.3736%" y="645" width="0.0120%" height="15" fill="rgb(209,189,4)" fg:x="105355" fg:w="32"/><text x="39.6236%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.01%)</title><rect x="39.3754%" y="629" width="0.0101%" height="15" fill="rgb(214,107,37)" fg:x="105360" fg:w="27"/><text x="39.6254%" y="639.50"></text></g><g><title>frame::oops_do_internal (27 samples, 0.01%)</title><rect x="39.3908%" y="661" width="0.0101%" height="15" fill="rgb(245,88,54)" fg:x="105401" fg:w="27"/><text x="39.6408%" y="671.50"></text></g><g><title>OopMapSet::oops_do (27 samples, 0.01%)</title><rect x="39.3908%" y="645" width="0.0101%" height="15" fill="rgb(205,146,20)" fg:x="105401" fg:w="27"/><text x="39.6408%" y="655.50"></text></g><g><title>G1RootProcessor::process_java_roots (81 samples, 0.03%)</title><rect x="39.3717%" y="725" width="0.0303%" height="15" fill="rgb(220,161,25)" fg:x="105350" fg:w="81"/><text x="39.6217%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (44 samples, 0.02%)</title><rect x="39.3855%" y="709" width="0.0164%" height="15" fill="rgb(215,152,15)" fg:x="105387" fg:w="44"/><text x="39.6355%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (44 samples, 0.02%)</title><rect x="39.3855%" y="693" width="0.0164%" height="15" fill="rgb(233,192,44)" fg:x="105387" fg:w="44"/><text x="39.6355%" y="703.50"></text></g><g><title>JavaThread::oops_do (44 samples, 0.02%)</title><rect x="39.3855%" y="677" width="0.0164%" height="15" fill="rgb(240,170,46)" fg:x="105387" fg:w="44"/><text x="39.6355%" y="687.50"></text></g><g><title>G1ParTask::work (586 samples, 0.22%)</title><rect x="39.2013%" y="757" width="0.2190%" height="15" fill="rgb(207,104,33)" fg:x="104894" fg:w="586"/><text x="39.4513%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (131 samples, 0.05%)</title><rect x="39.3713%" y="741" width="0.0490%" height="15" fill="rgb(219,21,39)" fg:x="105349" fg:w="131"/><text x="39.6213%" y="751.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (45 samples, 0.02%)</title><rect x="39.4035%" y="725" width="0.0168%" height="15" fill="rgb(214,133,29)" fg:x="105435" fg:w="45"/><text x="39.6535%" y="735.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (36 samples, 0.01%)</title><rect x="39.4068%" y="709" width="0.0135%" height="15" fill="rgb(226,93,6)" fg:x="105444" fg:w="36"/><text x="39.6568%" y="719.50"></text></g><g><title>RefProcPhase2Task::work (34 samples, 0.01%)</title><rect x="39.4240%" y="741" width="0.0127%" height="15" fill="rgb(252,222,34)" fg:x="105490" fg:w="34"/><text x="39.6740%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (68 samples, 0.03%)</title><rect x="39.4240%" y="757" width="0.0254%" height="15" fill="rgb(252,92,48)" fg:x="105490" fg:w="68"/><text x="39.6740%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (34 samples, 0.01%)</title><rect x="39.4367%" y="741" width="0.0127%" height="15" fill="rgb(245,223,24)" fg:x="105524" fg:w="34"/><text x="39.6867%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (34 samples, 0.01%)</title><rect x="39.4367%" y="725" width="0.0127%" height="15" fill="rgb(205,176,3)" fg:x="105524" fg:w="34"/><text x="39.6867%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (34 samples, 0.01%)</title><rect x="39.4367%" y="709" width="0.0127%" height="15" fill="rgb(235,151,15)" fg:x="105524" fg:w="34"/><text x="39.6867%" y="719.50"></text></g><g><title>SpinPause (34 samples, 0.01%)</title><rect x="39.4367%" y="693" width="0.0127%" height="15" fill="rgb(237,209,11)" fg:x="105524" fg:w="34"/><text x="39.6867%" y="703.50"></text></g><g><title>JavaThread::nmethods_do (34 samples, 0.01%)</title><rect x="39.4547%" y="725" width="0.0127%" height="15" fill="rgb(243,227,24)" fg:x="105572" fg:w="34"/><text x="39.7047%" y="735.50"></text></g><g><title>ParallelSPCleanupTask::work (58 samples, 0.02%)</title><rect x="39.4498%" y="757" width="0.0217%" height="15" fill="rgb(239,193,16)" fg:x="105559" fg:w="58"/><text x="39.6998%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (53 samples, 0.02%)</title><rect x="39.4517%" y="741" width="0.0198%" height="15" fill="rgb(231,27,9)" fg:x="105564" fg:w="53"/><text x="39.7017%" y="751.50"></text></g><g><title>__GI___clone (777 samples, 0.29%)</title><rect x="39.1927%" y="837" width="0.2904%" height="15" fill="rgb(219,169,10)" fg:x="104871" fg:w="777"/><text x="39.4427%" y="847.50"></text></g><g><title>start_thread (777 samples, 0.29%)</title><rect x="39.1927%" y="821" width="0.2904%" height="15" fill="rgb(244,229,43)" fg:x="104871" fg:w="777"/><text x="39.4427%" y="831.50"></text></g><g><title>thread_native_entry (777 samples, 0.29%)</title><rect x="39.1927%" y="805" width="0.2904%" height="15" fill="rgb(254,38,20)" fg:x="104871" fg:w="777"/><text x="39.4427%" y="815.50"></text></g><g><title>Thread::call_run (777 samples, 0.29%)</title><rect x="39.1927%" y="789" width="0.2904%" height="15" fill="rgb(250,47,30)" fg:x="104871" fg:w="777"/><text x="39.4427%" y="799.50"></text></g><g><title>GangWorker::loop (777 samples, 0.29%)</title><rect x="39.1927%" y="773" width="0.2904%" height="15" fill="rgb(224,124,36)" fg:x="104871" fg:w="777"/><text x="39.4427%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (30 samples, 0.01%)</title><rect x="39.4719%" y="757" width="0.0112%" height="15" fill="rgb(246,68,51)" fg:x="105618" fg:w="30"/><text x="39.7219%" y="767.50"></text></g><g><title>PosixSemaphore::wait (29 samples, 0.01%)</title><rect x="39.4722%" y="741" width="0.0108%" height="15" fill="rgb(253,43,49)" fg:x="105619" fg:w="29"/><text x="39.7222%" y="751.50"></text></g><g><title>__new_sem_wait_slow (27 samples, 0.01%)</title><rect x="39.4730%" y="725" width="0.0101%" height="15" fill="rgb(219,54,36)" fg:x="105621" fg:w="27"/><text x="39.7230%" y="735.50"></text></g><g><title>do_futex_wait (27 samples, 0.01%)</title><rect x="39.4730%" y="709" width="0.0101%" height="15" fill="rgb(227,133,34)" fg:x="105621" fg:w="27"/><text x="39.7230%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.01%)</title><rect x="39.4730%" y="693" width="0.0101%" height="15" fill="rgb(247,227,15)" fg:x="105621" fg:w="27"/><text x="39.7230%" y="703.50"></text></g><g><title>GC_Thread#1 (792 samples, 0.30%)</title><rect x="39.1875%" y="853" width="0.2960%" height="15" fill="rgb(229,96,14)" fg:x="104857" fg:w="792"/><text x="39.4375%" y="863.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.03%)</title><rect x="39.5163%" y="709" width="0.0277%" height="15" fill="rgb(220,79,17)" fg:x="105737" fg:w="74"/><text x="39.7663%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (135 samples, 0.05%)</title><rect x="39.4947%" y="725" width="0.0505%" height="15" fill="rgb(205,131,53)" fg:x="105679" fg:w="135"/><text x="39.7447%" y="735.50"></text></g><g><title>SpinPause (73 samples, 0.03%)</title><rect x="39.5466%" y="725" width="0.0273%" height="15" fill="rgb(209,50,29)" fg:x="105818" fg:w="73"/><text x="39.7966%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (223 samples, 0.08%)</title><rect x="39.4909%" y="741" width="0.0833%" height="15" fill="rgb(245,86,46)" fg:x="105669" fg:w="223"/><text x="39.7409%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (86 samples, 0.03%)</title><rect x="39.5791%" y="645" width="0.0321%" height="15" fill="rgb(235,66,46)" fg:x="105905" fg:w="86"/><text x="39.8291%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (61 samples, 0.02%)</title><rect x="39.5885%" y="629" width="0.0228%" height="15" fill="rgb(232,148,31)" fg:x="105930" fg:w="61"/><text x="39.8385%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (104 samples, 0.04%)</title><rect x="39.5743%" y="661" width="0.0389%" height="15" fill="rgb(217,149,8)" fg:x="105892" fg:w="104"/><text x="39.8243%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (119 samples, 0.04%)</title><rect x="39.5743%" y="741" width="0.0445%" height="15" fill="rgb(209,183,11)" fg:x="105892" fg:w="119"/><text x="39.8243%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (119 samples, 0.04%)</title><rect x="39.5743%" y="725" width="0.0445%" height="15" fill="rgb(208,55,20)" fg:x="105892" fg:w="119"/><text x="39.8243%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (119 samples, 0.04%)</title><rect x="39.5743%" y="709" width="0.0445%" height="15" fill="rgb(218,39,14)" fg:x="105892" fg:w="119"/><text x="39.8243%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (119 samples, 0.04%)</title><rect x="39.5743%" y="693" width="0.0445%" height="15" fill="rgb(216,169,33)" fg:x="105892" fg:w="119"/><text x="39.8243%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (119 samples, 0.04%)</title><rect x="39.5743%" y="677" width="0.0445%" height="15" fill="rgb(233,80,24)" fg:x="105892" fg:w="119"/><text x="39.8243%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (37 samples, 0.01%)</title><rect x="39.6187%" y="741" width="0.0138%" height="15" fill="rgb(213,179,31)" fg:x="106011" fg:w="37"/><text x="39.8687%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (37 samples, 0.01%)</title><rect x="39.6187%" y="725" width="0.0138%" height="15" fill="rgb(209,19,5)" fg:x="106011" fg:w="37"/><text x="39.8687%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (37 samples, 0.01%)</title><rect x="39.6187%" y="709" width="0.0138%" height="15" fill="rgb(219,18,35)" fg:x="106011" fg:w="37"/><text x="39.8687%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (74 samples, 0.03%)</title><rect x="39.6337%" y="709" width="0.0277%" height="15" fill="rgb(209,169,16)" fg:x="106051" fg:w="74"/><text x="39.8837%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (71 samples, 0.03%)</title><rect x="39.6348%" y="693" width="0.0265%" height="15" fill="rgb(245,90,51)" fg:x="106054" fg:w="71"/><text x="39.8848%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (71 samples, 0.03%)</title><rect x="39.6348%" y="677" width="0.0265%" height="15" fill="rgb(220,99,45)" fg:x="106054" fg:w="71"/><text x="39.8848%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (69 samples, 0.03%)</title><rect x="39.6355%" y="661" width="0.0258%" height="15" fill="rgb(249,89,25)" fg:x="106056" fg:w="69"/><text x="39.8855%" y="671.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (57 samples, 0.02%)</title><rect x="39.6400%" y="645" width="0.0213%" height="15" fill="rgb(239,193,0)" fg:x="106068" fg:w="57"/><text x="39.8900%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (43 samples, 0.02%)</title><rect x="39.6453%" y="629" width="0.0161%" height="15" fill="rgb(231,126,1)" fg:x="106082" fg:w="43"/><text x="39.8953%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (30 samples, 0.01%)</title><rect x="39.6714%" y="645" width="0.0112%" height="15" fill="rgb(243,166,3)" fg:x="106152" fg:w="30"/><text x="39.9214%" y="655.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (60 samples, 0.02%)</title><rect x="39.6882%" y="613" width="0.0224%" height="15" fill="rgb(223,22,34)" fg:x="106197" fg:w="60"/><text x="39.9382%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (42 samples, 0.02%)</title><rect x="39.6950%" y="597" width="0.0157%" height="15" fill="rgb(251,52,51)" fg:x="106215" fg:w="42"/><text x="39.9450%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (82 samples, 0.03%)</title><rect x="39.6826%" y="645" width="0.0306%" height="15" fill="rgb(221,165,28)" fg:x="106182" fg:w="82"/><text x="39.9326%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (81 samples, 0.03%)</title><rect x="39.6830%" y="629" width="0.0303%" height="15" fill="rgb(218,121,47)" fg:x="106183" fg:w="81"/><text x="39.9330%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (121 samples, 0.05%)</title><rect x="39.6714%" y="661" width="0.0452%" height="15" fill="rgb(209,120,9)" fg:x="106152" fg:w="121"/><text x="39.9214%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (223 samples, 0.08%)</title><rect x="39.6337%" y="725" width="0.0833%" height="15" fill="rgb(236,68,12)" fg:x="106051" fg:w="223"/><text x="39.8837%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (149 samples, 0.06%)</title><rect x="39.6613%" y="709" width="0.0557%" height="15" fill="rgb(225,194,26)" fg:x="106125" fg:w="149"/><text x="39.9113%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (149 samples, 0.06%)</title><rect x="39.6613%" y="693" width="0.0557%" height="15" fill="rgb(231,84,39)" fg:x="106125" fg:w="149"/><text x="39.9113%" y="703.50"></text></g><g><title>JavaThread::oops_do (149 samples, 0.06%)</title><rect x="39.6613%" y="677" width="0.0557%" height="15" fill="rgb(210,11,45)" fg:x="106125" fg:w="149"/><text x="39.9113%" y="687.50"></text></g><g><title>G1ParTask::work (614 samples, 0.23%)</title><rect x="39.4909%" y="757" width="0.2295%" height="15" fill="rgb(224,54,52)" fg:x="105669" fg:w="614"/><text x="39.7409%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (235 samples, 0.09%)</title><rect x="39.6326%" y="741" width="0.0878%" height="15" fill="rgb(238,102,14)" fg:x="106048" fg:w="235"/><text x="39.8826%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (30 samples, 0.01%)</title><rect x="39.7271%" y="741" width="0.0112%" height="15" fill="rgb(243,160,52)" fg:x="106301" fg:w="30"/><text x="39.9771%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (46 samples, 0.02%)</title><rect x="39.7271%" y="757" width="0.0172%" height="15" fill="rgb(216,114,19)" fg:x="106301" fg:w="46"/><text x="39.9771%" y="767.50"></text></g><g><title>JavaThread::nmethods_do (32 samples, 0.01%)</title><rect x="39.7477%" y="725" width="0.0120%" height="15" fill="rgb(244,166,37)" fg:x="106356" fg:w="32"/><text x="39.9977%" y="735.50"></text></g><g><title>frame::sender (27 samples, 0.01%)</title><rect x="39.7495%" y="709" width="0.0101%" height="15" fill="rgb(246,29,44)" fg:x="106361" fg:w="27"/><text x="39.9995%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (54 samples, 0.02%)</title><rect x="39.7447%" y="757" width="0.0202%" height="15" fill="rgb(215,56,53)" fg:x="106348" fg:w="54"/><text x="39.9947%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (52 samples, 0.02%)</title><rect x="39.7454%" y="741" width="0.0194%" height="15" fill="rgb(217,60,2)" fg:x="106350" fg:w="52"/><text x="39.9954%" y="751.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="39.7686%" y="549" width="0.0105%" height="15" fill="rgb(207,26,24)" fg:x="106412" fg:w="28"/><text x="40.0186%" y="559.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="39.7686%" y="533" width="0.0105%" height="15" fill="rgb(252,210,15)" fg:x="106412" fg:w="28"/><text x="40.0186%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="39.7690%" y="517" width="0.0101%" height="15" fill="rgb(253,209,26)" fg:x="106413" fg:w="27"/><text x="40.0190%" y="527.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="39.7690%" y="501" width="0.0101%" height="15" fill="rgb(238,170,14)" fg:x="106413" fg:w="27"/><text x="40.0190%" y="511.50"></text></g><g><title>futex_wait_queue_me (37 samples, 0.01%)</title><rect x="39.7675%" y="597" width="0.0138%" height="15" fill="rgb(216,178,15)" fg:x="106409" fg:w="37"/><text x="40.0175%" y="607.50"></text></g><g><title>schedule (36 samples, 0.01%)</title><rect x="39.7678%" y="581" width="0.0135%" height="15" fill="rgb(250,197,2)" fg:x="106410" fg:w="36"/><text x="40.0178%" y="591.50"></text></g><g><title>__schedule (36 samples, 0.01%)</title><rect x="39.7678%" y="565" width="0.0135%" height="15" fill="rgb(212,70,42)" fg:x="106410" fg:w="36"/><text x="40.0178%" y="575.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="39.7675%" y="661" width="0.0142%" height="15" fill="rgb(227,213,9)" fg:x="106409" fg:w="38"/><text x="40.0175%" y="671.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.01%)</title><rect x="39.7675%" y="645" width="0.0142%" height="15" fill="rgb(245,99,25)" fg:x="106409" fg:w="38"/><text x="40.0175%" y="655.50"></text></g><g><title>do_futex (38 samples, 0.01%)</title><rect x="39.7675%" y="629" width="0.0142%" height="15" fill="rgb(250,82,29)" fg:x="106409" fg:w="38"/><text x="40.0175%" y="639.50"></text></g><g><title>futex_wait (38 samples, 0.01%)</title><rect x="39.7675%" y="613" width="0.0142%" height="15" fill="rgb(241,226,54)" fg:x="106409" fg:w="38"/><text x="40.0175%" y="623.50"></text></g><g><title>GC_Thread#2 (800 samples, 0.30%)</title><rect x="39.4834%" y="853" width="0.2990%" height="15" fill="rgb(221,99,41)" fg:x="105649" fg:w="800"/><text x="39.7334%" y="863.50"></text></g><g><title>__GI___clone (788 samples, 0.29%)</title><rect x="39.4879%" y="837" width="0.2945%" height="15" fill="rgb(213,90,21)" fg:x="105661" fg:w="788"/><text x="39.7379%" y="847.50"></text></g><g><title>start_thread (788 samples, 0.29%)</title><rect x="39.4879%" y="821" width="0.2945%" height="15" fill="rgb(205,208,24)" fg:x="105661" fg:w="788"/><text x="39.7379%" y="831.50"></text></g><g><title>thread_native_entry (788 samples, 0.29%)</title><rect x="39.4879%" y="805" width="0.2945%" height="15" fill="rgb(246,31,12)" fg:x="105661" fg:w="788"/><text x="39.7379%" y="815.50"></text></g><g><title>Thread::call_run (788 samples, 0.29%)</title><rect x="39.4879%" y="789" width="0.2945%" height="15" fill="rgb(213,154,6)" fg:x="105661" fg:w="788"/><text x="39.7379%" y="799.50"></text></g><g><title>GangWorker::loop (788 samples, 0.29%)</title><rect x="39.4879%" y="773" width="0.2945%" height="15" fill="rgb(222,163,29)" fg:x="105661" fg:w="788"/><text x="39.7379%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (43 samples, 0.02%)</title><rect x="39.7663%" y="757" width="0.0161%" height="15" fill="rgb(227,201,8)" fg:x="106406" fg:w="43"/><text x="40.0163%" y="767.50"></text></g><g><title>PosixSemaphore::wait (42 samples, 0.02%)</title><rect x="39.7667%" y="741" width="0.0157%" height="15" fill="rgb(233,9,32)" fg:x="106407" fg:w="42"/><text x="40.0167%" y="751.50"></text></g><g><title>__new_sem_wait_slow (41 samples, 0.02%)</title><rect x="39.7671%" y="725" width="0.0153%" height="15" fill="rgb(217,54,24)" fg:x="106408" fg:w="41"/><text x="40.0171%" y="735.50"></text></g><g><title>do_futex_wait (41 samples, 0.02%)</title><rect x="39.7671%" y="709" width="0.0153%" height="15" fill="rgb(235,192,0)" fg:x="106408" fg:w="41"/><text x="40.0171%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (41 samples, 0.02%)</title><rect x="39.7671%" y="693" width="0.0153%" height="15" fill="rgb(235,45,9)" fg:x="106408" fg:w="41"/><text x="40.0171%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="39.7675%" y="677" width="0.0149%" height="15" fill="rgb(246,42,40)" fg:x="106409" fg:w="40"/><text x="40.0175%" y="687.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (77 samples, 0.03%)</title><rect x="39.8205%" y="709" width="0.0288%" height="15" fill="rgb(248,111,24)" fg:x="106551" fg:w="77"/><text x="40.0705%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (143 samples, 0.05%)</title><rect x="39.7970%" y="725" width="0.0534%" height="15" fill="rgb(249,65,22)" fg:x="106488" fg:w="143"/><text x="40.0470%" y="735.50"></text></g><g><title>SpinPause (94 samples, 0.04%)</title><rect x="39.8512%" y="725" width="0.0351%" height="15" fill="rgb(238,111,51)" fg:x="106633" fg:w="94"/><text x="40.1012%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (253 samples, 0.09%)</title><rect x="39.7929%" y="741" width="0.0946%" height="15" fill="rgb(250,118,22)" fg:x="106477" fg:w="253"/><text x="40.0429%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (93 samples, 0.03%)</title><rect x="39.8945%" y="645" width="0.0348%" height="15" fill="rgb(234,84,26)" fg:x="106749" fg:w="93"/><text x="40.1445%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (70 samples, 0.03%)</title><rect x="39.9031%" y="629" width="0.0262%" height="15" fill="rgb(243,172,12)" fg:x="106772" fg:w="70"/><text x="40.1531%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (115 samples, 0.04%)</title><rect x="39.8878%" y="661" width="0.0430%" height="15" fill="rgb(236,150,49)" fg:x="106731" fg:w="115"/><text x="40.1378%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (131 samples, 0.05%)</title><rect x="39.8874%" y="741" width="0.0490%" height="15" fill="rgb(225,197,26)" fg:x="106730" fg:w="131"/><text x="40.1374%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (131 samples, 0.05%)</title><rect x="39.8874%" y="725" width="0.0490%" height="15" fill="rgb(214,17,42)" fg:x="106730" fg:w="131"/><text x="40.1374%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (131 samples, 0.05%)</title><rect x="39.8874%" y="709" width="0.0490%" height="15" fill="rgb(224,165,40)" fg:x="106730" fg:w="131"/><text x="40.1374%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (131 samples, 0.05%)</title><rect x="39.8874%" y="693" width="0.0490%" height="15" fill="rgb(246,100,4)" fg:x="106730" fg:w="131"/><text x="40.1374%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (131 samples, 0.05%)</title><rect x="39.8874%" y="677" width="0.0490%" height="15" fill="rgb(222,103,0)" fg:x="106730" fg:w="131"/><text x="40.1374%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (32 samples, 0.01%)</title><rect x="39.9364%" y="677" width="0.0120%" height="15" fill="rgb(227,189,26)" fg:x="106861" fg:w="32"/><text x="40.1864%" y="687.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (34 samples, 0.01%)</title><rect x="39.9364%" y="693" width="0.0127%" height="15" fill="rgb(214,202,17)" fg:x="106861" fg:w="34"/><text x="40.1864%" y="703.50"></text></g><g><title>G1RemSet::scan_rem_set (35 samples, 0.01%)</title><rect x="39.9364%" y="741" width="0.0131%" height="15" fill="rgb(229,111,3)" fg:x="106861" fg:w="35"/><text x="40.1864%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.01%)</title><rect x="39.9364%" y="725" width="0.0131%" height="15" fill="rgb(229,172,15)" fg:x="106861" fg:w="35"/><text x="40.1864%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.01%)</title><rect x="39.9364%" y="709" width="0.0131%" height="15" fill="rgb(230,224,35)" fg:x="106861" fg:w="35"/><text x="40.1864%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (32 samples, 0.01%)</title><rect x="39.9652%" y="613" width="0.0120%" height="15" fill="rgb(251,141,6)" fg:x="106938" fg:w="32"/><text x="40.2152%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (53 samples, 0.02%)</title><rect x="39.9588%" y="645" width="0.0198%" height="15" fill="rgb(225,208,6)" fg:x="106921" fg:w="53"/><text x="40.2088%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (48 samples, 0.02%)</title><rect x="39.9607%" y="629" width="0.0179%" height="15" fill="rgb(246,181,16)" fg:x="106926" fg:w="48"/><text x="40.2107%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (86 samples, 0.03%)</title><rect x="39.9495%" y="725" width="0.0321%" height="15" fill="rgb(227,129,36)" fg:x="106896" fg:w="86"/><text x="40.1995%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (86 samples, 0.03%)</title><rect x="39.9495%" y="709" width="0.0321%" height="15" fill="rgb(248,117,24)" fg:x="106896" fg:w="86"/><text x="40.1995%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (86 samples, 0.03%)</title><rect x="39.9495%" y="693" width="0.0321%" height="15" fill="rgb(214,185,35)" fg:x="106896" fg:w="86"/><text x="40.1995%" y="703.50"></text></g><g><title>JavaThread::oops_do (86 samples, 0.03%)</title><rect x="39.9495%" y="677" width="0.0321%" height="15" fill="rgb(236,150,34)" fg:x="106896" fg:w="86"/><text x="40.1995%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (62 samples, 0.02%)</title><rect x="39.9584%" y="661" width="0.0232%" height="15" fill="rgb(243,228,27)" fg:x="106920" fg:w="62"/><text x="40.2084%" y="671.50"></text></g><g><title>G1RootProcessor::process_vm_roots (28 samples, 0.01%)</title><rect x="39.9816%" y="725" width="0.0105%" height="15" fill="rgb(245,77,44)" fg:x="106982" fg:w="28"/><text x="40.2316%" y="735.50"></text></g><g><title>SymbolPropertyTable::oops_do (28 samples, 0.01%)</title><rect x="39.9816%" y="709" width="0.0105%" height="15" fill="rgb(235,214,42)" fg:x="106982" fg:w="28"/><text x="40.2316%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (28 samples, 0.01%)</title><rect x="39.9816%" y="693" width="0.0105%" height="15" fill="rgb(221,74,3)" fg:x="106982" fg:w="28"/><text x="40.2316%" y="703.50"></text></g><g><title>G1ParTask::work (536 samples, 0.20%)</title><rect x="39.7929%" y="757" width="0.2003%" height="15" fill="rgb(206,121,29)" fg:x="106477" fg:w="536"/><text x="40.0429%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (117 samples, 0.04%)</title><rect x="39.9495%" y="741" width="0.0437%" height="15" fill="rgb(249,131,53)" fg:x="106896" fg:w="117"/><text x="40.1995%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (41 samples, 0.02%)</title><rect x="39.9943%" y="757" width="0.0153%" height="15" fill="rgb(236,170,29)" fg:x="107016" fg:w="41"/><text x="40.2443%" y="767.50"></text></g><g><title>JavaThread::nmethods_do (42 samples, 0.02%)</title><rect x="40.0156%" y="725" width="0.0157%" height="15" fill="rgb(247,96,15)" fg:x="107073" fg:w="42"/><text x="40.2656%" y="735.50"></text></g><g><title>frame::sender (30 samples, 0.01%)</title><rect x="40.0201%" y="709" width="0.0112%" height="15" fill="rgb(211,210,7)" fg:x="107085" fg:w="30"/><text x="40.2701%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (67 samples, 0.03%)</title><rect x="40.0108%" y="757" width="0.0250%" height="15" fill="rgb(240,88,50)" fg:x="107060" fg:w="67"/><text x="40.2608%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (64 samples, 0.02%)</title><rect x="40.0119%" y="741" width="0.0239%" height="15" fill="rgb(209,229,26)" fg:x="107063" fg:w="64"/><text x="40.2619%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="40.0418%" y="533" width="0.0101%" height="15" fill="rgb(210,68,23)" fg:x="107143" fg:w="27"/><text x="40.2918%" y="543.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="40.0418%" y="517" width="0.0101%" height="15" fill="rgb(229,180,13)" fg:x="107143" fg:w="27"/><text x="40.2918%" y="527.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="40.0418%" y="501" width="0.0101%" height="15" fill="rgb(236,53,44)" fg:x="107143" fg:w="27"/><text x="40.2918%" y="511.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="40.0410%" y="549" width="0.0120%" height="15" fill="rgb(244,214,29)" fg:x="107141" fg:w="32"/><text x="40.2910%" y="559.50"></text></g><g><title>do_syscall_64 (50 samples, 0.02%)</title><rect x="40.0377%" y="661" width="0.0187%" height="15" fill="rgb(220,75,29)" fg:x="107132" fg:w="50"/><text x="40.2877%" y="671.50"></text></g><g><title>__x64_sys_futex (50 samples, 0.02%)</title><rect x="40.0377%" y="645" width="0.0187%" height="15" fill="rgb(214,183,37)" fg:x="107132" fg:w="50"/><text x="40.2877%" y="655.50"></text></g><g><title>do_futex (50 samples, 0.02%)</title><rect x="40.0377%" y="629" width="0.0187%" height="15" fill="rgb(239,117,29)" fg:x="107132" fg:w="50"/><text x="40.2877%" y="639.50"></text></g><g><title>futex_wait (50 samples, 0.02%)</title><rect x="40.0377%" y="613" width="0.0187%" height="15" fill="rgb(237,171,35)" fg:x="107132" fg:w="50"/><text x="40.2877%" y="623.50"></text></g><g><title>futex_wait_queue_me (50 samples, 0.02%)</title><rect x="40.0377%" y="597" width="0.0187%" height="15" fill="rgb(229,178,53)" fg:x="107132" fg:w="50"/><text x="40.2877%" y="607.50"></text></g><g><title>schedule (48 samples, 0.02%)</title><rect x="40.0384%" y="581" width="0.0179%" height="15" fill="rgb(210,102,19)" fg:x="107134" fg:w="48"/><text x="40.2884%" y="591.50"></text></g><g><title>__schedule (48 samples, 0.02%)</title><rect x="40.0384%" y="565" width="0.0179%" height="15" fill="rgb(235,127,22)" fg:x="107134" fg:w="48"/><text x="40.2884%" y="575.50"></text></g><g><title>__GI___clone (720 samples, 0.27%)</title><rect x="39.7877%" y="837" width="0.2691%" height="15" fill="rgb(244,31,31)" fg:x="106463" fg:w="720"/><text x="40.0377%" y="847.50"></text></g><g><title>start_thread (720 samples, 0.27%)</title><rect x="39.7877%" y="821" width="0.2691%" height="15" fill="rgb(231,43,21)" fg:x="106463" fg:w="720"/><text x="40.0377%" y="831.50"></text></g><g><title>thread_native_entry (720 samples, 0.27%)</title><rect x="39.7877%" y="805" width="0.2691%" height="15" fill="rgb(217,131,35)" fg:x="106463" fg:w="720"/><text x="40.0377%" y="815.50"></text></g><g><title>Thread::call_run (720 samples, 0.27%)</title><rect x="39.7877%" y="789" width="0.2691%" height="15" fill="rgb(221,149,4)" fg:x="106463" fg:w="720"/><text x="40.0377%" y="799.50"></text></g><g><title>GangWorker::loop (720 samples, 0.27%)</title><rect x="39.7877%" y="773" width="0.2691%" height="15" fill="rgb(232,170,28)" fg:x="106463" fg:w="720"/><text x="40.0377%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (53 samples, 0.02%)</title><rect x="40.0369%" y="757" width="0.0198%" height="15" fill="rgb(238,56,10)" fg:x="107130" fg:w="53"/><text x="40.2869%" y="767.50"></text></g><g><title>PosixSemaphore::wait (53 samples, 0.02%)</title><rect x="40.0369%" y="741" width="0.0198%" height="15" fill="rgb(235,196,14)" fg:x="107130" fg:w="53"/><text x="40.2869%" y="751.50"></text></g><g><title>__new_sem_wait_slow (53 samples, 0.02%)</title><rect x="40.0369%" y="725" width="0.0198%" height="15" fill="rgb(216,45,48)" fg:x="107130" fg:w="53"/><text x="40.2869%" y="735.50"></text></g><g><title>do_futex_wait (52 samples, 0.02%)</title><rect x="40.0373%" y="709" width="0.0194%" height="15" fill="rgb(238,213,17)" fg:x="107131" fg:w="52"/><text x="40.2873%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (52 samples, 0.02%)</title><rect x="40.0373%" y="693" width="0.0194%" height="15" fill="rgb(212,13,2)" fg:x="107131" fg:w="52"/><text x="40.2873%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="40.0377%" y="677" width="0.0191%" height="15" fill="rgb(240,114,20)" fg:x="107132" fg:w="51"/><text x="40.2877%" y="687.50"></text></g><g><title>GC_Thread#3 (735 samples, 0.27%)</title><rect x="39.7824%" y="853" width="0.2747%" height="15" fill="rgb(228,41,40)" fg:x="106449" fg:w="735"/><text x="40.0324%" y="863.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (36 samples, 0.01%)</title><rect x="40.1098%" y="693" width="0.0135%" height="15" fill="rgb(244,132,35)" fg:x="107325" fg:w="36"/><text x="40.3598%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (96 samples, 0.04%)</title><rect x="40.0952%" y="709" width="0.0359%" height="15" fill="rgb(253,189,4)" fg:x="107286" fg:w="96"/><text x="40.3452%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (167 samples, 0.06%)</title><rect x="40.0721%" y="725" width="0.0624%" height="15" fill="rgb(224,37,19)" fg:x="107224" fg:w="167"/><text x="40.3221%" y="735.50"></text></g><g><title>SpinPause (98 samples, 0.04%)</title><rect x="40.1360%" y="725" width="0.0366%" height="15" fill="rgb(235,223,18)" fg:x="107395" fg:w="98"/><text x="40.3860%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (282 samples, 0.11%)</title><rect x="40.0698%" y="741" width="0.1054%" height="15" fill="rgb(235,163,25)" fg:x="107218" fg:w="282"/><text x="40.3198%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (65 samples, 0.02%)</title><rect x="40.1898%" y="629" width="0.0243%" height="15" fill="rgb(217,145,28)" fg:x="107539" fg:w="65"/><text x="40.4398%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (85 samples, 0.03%)</title><rect x="40.1827%" y="645" width="0.0318%" height="15" fill="rgb(223,223,32)" fg:x="107520" fg:w="85"/><text x="40.4327%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (113 samples, 0.04%)</title><rect x="40.1752%" y="661" width="0.0422%" height="15" fill="rgb(227,189,39)" fg:x="107500" fg:w="113"/><text x="40.4252%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (125 samples, 0.05%)</title><rect x="40.1752%" y="741" width="0.0467%" height="15" fill="rgb(248,10,22)" fg:x="107500" fg:w="125"/><text x="40.4252%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (125 samples, 0.05%)</title><rect x="40.1752%" y="725" width="0.0467%" height="15" fill="rgb(248,46,39)" fg:x="107500" fg:w="125"/><text x="40.4252%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (125 samples, 0.05%)</title><rect x="40.1752%" y="709" width="0.0467%" height="15" fill="rgb(248,113,48)" fg:x="107500" fg:w="125"/><text x="40.4252%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (125 samples, 0.05%)</title><rect x="40.1752%" y="693" width="0.0467%" height="15" fill="rgb(245,16,25)" fg:x="107500" fg:w="125"/><text x="40.4252%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (125 samples, 0.05%)</title><rect x="40.1752%" y="677" width="0.0467%" height="15" fill="rgb(249,152,16)" fg:x="107500" fg:w="125"/><text x="40.4252%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (35 samples, 0.01%)</title><rect x="40.2219%" y="741" width="0.0131%" height="15" fill="rgb(250,16,1)" fg:x="107625" fg:w="35"/><text x="40.4719%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (35 samples, 0.01%)</title><rect x="40.2219%" y="725" width="0.0131%" height="15" fill="rgb(249,138,3)" fg:x="107625" fg:w="35"/><text x="40.4719%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (35 samples, 0.01%)</title><rect x="40.2219%" y="709" width="0.0131%" height="15" fill="rgb(227,71,41)" fg:x="107625" fg:w="35"/><text x="40.4719%" y="719.50"></text></g><g><title>ClassLoaderData::oops_do (32 samples, 0.01%)</title><rect x="40.2391%" y="677" width="0.0120%" height="15" fill="rgb(209,184,23)" fg:x="107671" fg:w="32"/><text x="40.4891%" y="687.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (33 samples, 0.01%)</title><rect x="40.2391%" y="709" width="0.0123%" height="15" fill="rgb(223,215,31)" fg:x="107671" fg:w="33"/><text x="40.4891%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (33 samples, 0.01%)</title><rect x="40.2391%" y="693" width="0.0123%" height="15" fill="rgb(210,146,28)" fg:x="107671" fg:w="33"/><text x="40.4891%" y="703.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (30 samples, 0.01%)</title><rect x="40.2675%" y="613" width="0.0112%" height="15" fill="rgb(209,183,41)" fg:x="107747" fg:w="30"/><text x="40.5175%" y="623.50"></text></g><g><title>InterpreterOopMap::iterate_oop (52 samples, 0.02%)</title><rect x="40.2608%" y="645" width="0.0194%" height="15" fill="rgb(209,224,45)" fg:x="107729" fg:w="52"/><text x="40.5108%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (42 samples, 0.02%)</title><rect x="40.2645%" y="629" width="0.0157%" height="15" fill="rgb(224,209,51)" fg:x="107739" fg:w="42"/><text x="40.5145%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (114 samples, 0.04%)</title><rect x="40.2391%" y="725" width="0.0426%" height="15" fill="rgb(223,17,39)" fg:x="107671" fg:w="114"/><text x="40.4891%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (81 samples, 0.03%)</title><rect x="40.2514%" y="709" width="0.0303%" height="15" fill="rgb(234,204,37)" fg:x="107704" fg:w="81"/><text x="40.5014%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (81 samples, 0.03%)</title><rect x="40.2514%" y="693" width="0.0303%" height="15" fill="rgb(236,120,5)" fg:x="107704" fg:w="81"/><text x="40.5014%" y="703.50"></text></g><g><title>JavaThread::oops_do (81 samples, 0.03%)</title><rect x="40.2514%" y="677" width="0.0303%" height="15" fill="rgb(248,97,27)" fg:x="107704" fg:w="81"/><text x="40.5014%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (59 samples, 0.02%)</title><rect x="40.2597%" y="661" width="0.0220%" height="15" fill="rgb(240,66,17)" fg:x="107726" fg:w="59"/><text x="40.5097%" y="671.50"></text></g><g><title>G1ParTask::work (574 samples, 0.21%)</title><rect x="40.0698%" y="757" width="0.2145%" height="15" fill="rgb(210,79,3)" fg:x="107218" fg:w="574"/><text x="40.3198%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (132 samples, 0.05%)</title><rect x="40.2350%" y="741" width="0.0493%" height="15" fill="rgb(214,176,27)" fg:x="107660" fg:w="132"/><text x="40.4850%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (59 samples, 0.02%)</title><rect x="40.2877%" y="757" width="0.0220%" height="15" fill="rgb(235,185,3)" fg:x="107801" fg:w="59"/><text x="40.5377%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (36 samples, 0.01%)</title><rect x="40.2963%" y="741" width="0.0135%" height="15" fill="rgb(227,24,12)" fg:x="107824" fg:w="36"/><text x="40.5463%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (36 samples, 0.01%)</title><rect x="40.2963%" y="725" width="0.0135%" height="15" fill="rgb(252,169,48)" fg:x="107824" fg:w="36"/><text x="40.5463%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (36 samples, 0.01%)</title><rect x="40.2963%" y="709" width="0.0135%" height="15" fill="rgb(212,65,1)" fg:x="107824" fg:w="36"/><text x="40.5463%" y="719.50"></text></g><g><title>SpinPause (36 samples, 0.01%)</title><rect x="40.2963%" y="693" width="0.0135%" height="15" fill="rgb(242,39,24)" fg:x="107824" fg:w="36"/><text x="40.5463%" y="703.50"></text></g><g><title>JavaThread::nmethods_do (47 samples, 0.02%)</title><rect x="40.3139%" y="725" width="0.0176%" height="15" fill="rgb(249,32,23)" fg:x="107871" fg:w="47"/><text x="40.5639%" y="735.50"></text></g><g><title>frame::sender (36 samples, 0.01%)</title><rect x="40.3180%" y="709" width="0.0135%" height="15" fill="rgb(251,195,23)" fg:x="107882" fg:w="36"/><text x="40.5680%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (73 samples, 0.03%)</title><rect x="40.3101%" y="757" width="0.0273%" height="15" fill="rgb(236,174,8)" fg:x="107861" fg:w="73"/><text x="40.5601%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (70 samples, 0.03%)</title><rect x="40.3112%" y="741" width="0.0262%" height="15" fill="rgb(220,197,8)" fg:x="107864" fg:w="70"/><text x="40.5612%" y="751.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.01%)</title><rect x="40.3400%" y="597" width="0.0131%" height="15" fill="rgb(240,108,37)" fg:x="107941" fg:w="35"/><text x="40.5900%" y="607.50"></text></g><g><title>schedule (31 samples, 0.01%)</title><rect x="40.3415%" y="581" width="0.0116%" height="15" fill="rgb(232,176,24)" fg:x="107945" fg:w="31"/><text x="40.5915%" y="591.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="40.3415%" y="565" width="0.0116%" height="15" fill="rgb(243,35,29)" fg:x="107945" fg:w="31"/><text x="40.5915%" y="575.50"></text></g><g><title>GC_Thread#4 (794 samples, 0.30%)</title><rect x="40.0571%" y="853" width="0.2967%" height="15" fill="rgb(210,37,18)" fg:x="107184" fg:w="794"/><text x="40.3071%" y="863.50"></text></g><g><title>__GI___clone (780 samples, 0.29%)</title><rect x="40.0623%" y="837" width="0.2915%" height="15" fill="rgb(224,184,40)" fg:x="107198" fg:w="780"/><text x="40.3123%" y="847.50"></text></g><g><title>start_thread (780 samples, 0.29%)</title><rect x="40.0623%" y="821" width="0.2915%" height="15" fill="rgb(236,39,29)" fg:x="107198" fg:w="780"/><text x="40.3123%" y="831.50"></text></g><g><title>thread_native_entry (780 samples, 0.29%)</title><rect x="40.0623%" y="805" width="0.2915%" height="15" fill="rgb(232,48,39)" fg:x="107198" fg:w="780"/><text x="40.3123%" y="815.50"></text></g><g><title>Thread::call_run (780 samples, 0.29%)</title><rect x="40.0623%" y="789" width="0.2915%" height="15" fill="rgb(236,34,42)" fg:x="107198" fg:w="780"/><text x="40.3123%" y="799.50"></text></g><g><title>GangWorker::loop (780 samples, 0.29%)</title><rect x="40.0623%" y="773" width="0.2915%" height="15" fill="rgb(243,106,37)" fg:x="107198" fg:w="780"/><text x="40.3123%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (42 samples, 0.02%)</title><rect x="40.3381%" y="757" width="0.0157%" height="15" fill="rgb(218,96,6)" fg:x="107936" fg:w="42"/><text x="40.5881%" y="767.50"></text></g><g><title>PosixSemaphore::wait (42 samples, 0.02%)</title><rect x="40.3381%" y="741" width="0.0157%" height="15" fill="rgb(235,130,12)" fg:x="107936" fg:w="42"/><text x="40.5881%" y="751.50"></text></g><g><title>__new_sem_wait_slow (40 samples, 0.01%)</title><rect x="40.3389%" y="725" width="0.0149%" height="15" fill="rgb(231,95,0)" fg:x="107938" fg:w="40"/><text x="40.5889%" y="735.50"></text></g><g><title>do_futex_wait (40 samples, 0.01%)</title><rect x="40.3389%" y="709" width="0.0149%" height="15" fill="rgb(228,12,23)" fg:x="107938" fg:w="40"/><text x="40.5889%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (40 samples, 0.01%)</title><rect x="40.3389%" y="693" width="0.0149%" height="15" fill="rgb(216,12,1)" fg:x="107938" fg:w="40"/><text x="40.5889%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="40.3393%" y="677" width="0.0146%" height="15" fill="rgb(219,59,3)" fg:x="107939" fg:w="39"/><text x="40.5893%" y="687.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="40.3393%" y="661" width="0.0146%" height="15" fill="rgb(215,208,46)" fg:x="107939" fg:w="39"/><text x="40.5893%" y="671.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.01%)</title><rect x="40.3396%" y="645" width="0.0142%" height="15" fill="rgb(254,224,29)" fg:x="107940" fg:w="38"/><text x="40.5896%" y="655.50"></text></g><g><title>do_futex (38 samples, 0.01%)</title><rect x="40.3396%" y="629" width="0.0142%" height="15" fill="rgb(232,14,29)" fg:x="107940" fg:w="38"/><text x="40.5896%" y="639.50"></text></g><g><title>futex_wait (38 samples, 0.01%)</title><rect x="40.3396%" y="613" width="0.0142%" height="15" fill="rgb(208,45,52)" fg:x="107940" fg:w="38"/><text x="40.5896%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (82 samples, 0.03%)</title><rect x="40.3942%" y="709" width="0.0306%" height="15" fill="rgb(234,191,28)" fg:x="108086" fg:w="82"/><text x="40.6442%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (148 samples, 0.06%)</title><rect x="40.3725%" y="725" width="0.0553%" height="15" fill="rgb(244,67,43)" fg:x="108028" fg:w="148"/><text x="40.6225%" y="735.50"></text></g><g><title>SpinPause (92 samples, 0.03%)</title><rect x="40.4297%" y="725" width="0.0344%" height="15" fill="rgb(236,189,24)" fg:x="108181" fg:w="92"/><text x="40.6797%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (254 samples, 0.09%)</title><rect x="40.3699%" y="741" width="0.0949%" height="15" fill="rgb(239,214,33)" fg:x="108021" fg:w="254"/><text x="40.6199%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (96 samples, 0.04%)</title><rect x="40.4727%" y="645" width="0.0359%" height="15" fill="rgb(226,176,41)" fg:x="108296" fg:w="96"/><text x="40.7227%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (74 samples, 0.03%)</title><rect x="40.4809%" y="629" width="0.0277%" height="15" fill="rgb(248,47,8)" fg:x="108318" fg:w="74"/><text x="40.7309%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (120 samples, 0.04%)</title><rect x="40.4648%" y="661" width="0.0448%" height="15" fill="rgb(218,81,44)" fg:x="108275" fg:w="120"/><text x="40.7148%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (132 samples, 0.05%)</title><rect x="40.4648%" y="741" width="0.0493%" height="15" fill="rgb(213,98,6)" fg:x="108275" fg:w="132"/><text x="40.7148%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (132 samples, 0.05%)</title><rect x="40.4648%" y="725" width="0.0493%" height="15" fill="rgb(222,85,22)" fg:x="108275" fg:w="132"/><text x="40.7148%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (132 samples, 0.05%)</title><rect x="40.4648%" y="709" width="0.0493%" height="15" fill="rgb(239,46,39)" fg:x="108275" fg:w="132"/><text x="40.7148%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (132 samples, 0.05%)</title><rect x="40.4648%" y="693" width="0.0493%" height="15" fill="rgb(237,12,29)" fg:x="108275" fg:w="132"/><text x="40.7148%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (132 samples, 0.05%)</title><rect x="40.4648%" y="677" width="0.0493%" height="15" fill="rgb(214,77,8)" fg:x="108275" fg:w="132"/><text x="40.7148%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (27 samples, 0.01%)</title><rect x="40.5142%" y="741" width="0.0101%" height="15" fill="rgb(217,168,37)" fg:x="108407" fg:w="27"/><text x="40.7642%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (27 samples, 0.01%)</title><rect x="40.5142%" y="725" width="0.0101%" height="15" fill="rgb(221,217,23)" fg:x="108407" fg:w="27"/><text x="40.7642%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (27 samples, 0.01%)</title><rect x="40.5142%" y="709" width="0.0101%" height="15" fill="rgb(243,229,36)" fg:x="108407" fg:w="27"/><text x="40.7642%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (30 samples, 0.01%)</title><rect x="40.5329%" y="645" width="0.0112%" height="15" fill="rgb(251,163,40)" fg:x="108457" fg:w="30"/><text x="40.7829%" y="655.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (54 samples, 0.02%)</title><rect x="40.5243%" y="709" width="0.0202%" height="15" fill="rgb(237,222,12)" fg:x="108434" fg:w="54"/><text x="40.7743%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (54 samples, 0.02%)</title><rect x="40.5243%" y="693" width="0.0202%" height="15" fill="rgb(248,132,6)" fg:x="108434" fg:w="54"/><text x="40.7743%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (54 samples, 0.02%)</title><rect x="40.5243%" y="677" width="0.0202%" height="15" fill="rgb(227,167,50)" fg:x="108434" fg:w="54"/><text x="40.7743%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (46 samples, 0.02%)</title><rect x="40.5272%" y="661" width="0.0172%" height="15" fill="rgb(242,84,37)" fg:x="108442" fg:w="46"/><text x="40.7772%" y="671.50"></text></g><g><title>frame::oops_do_internal (30 samples, 0.01%)</title><rect x="40.5527%" y="661" width="0.0112%" height="15" fill="rgb(212,4,50)" fg:x="108510" fg:w="30"/><text x="40.8027%" y="671.50"></text></g><g><title>OopMapSet::oops_do (30 samples, 0.01%)</title><rect x="40.5527%" y="645" width="0.0112%" height="15" fill="rgb(230,228,32)" fg:x="108510" fg:w="30"/><text x="40.8027%" y="655.50"></text></g><g><title>InterpreterOopMap::iterate_oop (38 samples, 0.01%)</title><rect x="40.5639%" y="645" width="0.0142%" height="15" fill="rgb(248,217,23)" fg:x="108540" fg:w="38"/><text x="40.8139%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (38 samples, 0.01%)</title><rect x="40.5639%" y="629" width="0.0142%" height="15" fill="rgb(238,197,32)" fg:x="108540" fg:w="38"/><text x="40.8139%" y="639.50"></text></g><g><title>G1RootProcessor::process_java_roots (150 samples, 0.06%)</title><rect x="40.5243%" y="725" width="0.0561%" height="15" fill="rgb(236,106,1)" fg:x="108434" fg:w="150"/><text x="40.7743%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (96 samples, 0.04%)</title><rect x="40.5444%" y="709" width="0.0359%" height="15" fill="rgb(219,228,13)" fg:x="108488" fg:w="96"/><text x="40.7944%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (96 samples, 0.04%)</title><rect x="40.5444%" y="693" width="0.0359%" height="15" fill="rgb(238,30,35)" fg:x="108488" fg:w="96"/><text x="40.7944%" y="703.50"></text></g><g><title>JavaThread::oops_do (96 samples, 0.04%)</title><rect x="40.5444%" y="677" width="0.0359%" height="15" fill="rgb(236,70,23)" fg:x="108488" fg:w="96"/><text x="40.7944%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (44 samples, 0.02%)</title><rect x="40.5639%" y="661" width="0.0164%" height="15" fill="rgb(249,104,48)" fg:x="108540" fg:w="44"/><text x="40.8139%" y="671.50"></text></g><g><title>G1ParTask::work (590 samples, 0.22%)</title><rect x="40.3699%" y="757" width="0.2205%" height="15" fill="rgb(254,117,50)" fg:x="108021" fg:w="590"/><text x="40.6199%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (177 samples, 0.07%)</title><rect x="40.5243%" y="741" width="0.0661%" height="15" fill="rgb(223,152,4)" fg:x="108434" fg:w="177"/><text x="40.7743%" y="751.50"></text></g><g><title>StringTable::possibly_parallel_oops_do (27 samples, 0.01%)</title><rect x="40.5803%" y="725" width="0.0101%" height="15" fill="rgb(245,6,2)" fg:x="108584" fg:w="27"/><text x="40.8303%" y="735.50"></text></g><g><title>RefProcPhase2Task::work (30 samples, 0.01%)</title><rect x="40.5919%" y="741" width="0.0112%" height="15" fill="rgb(249,150,24)" fg:x="108615" fg:w="30"/><text x="40.8419%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (60 samples, 0.02%)</title><rect x="40.5919%" y="757" width="0.0224%" height="15" fill="rgb(228,185,42)" fg:x="108615" fg:w="60"/><text x="40.8419%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (30 samples, 0.01%)</title><rect x="40.6031%" y="741" width="0.0112%" height="15" fill="rgb(226,39,33)" fg:x="108645" fg:w="30"/><text x="40.8531%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (30 samples, 0.01%)</title><rect x="40.6031%" y="725" width="0.0112%" height="15" fill="rgb(221,166,19)" fg:x="108645" fg:w="30"/><text x="40.8531%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (30 samples, 0.01%)</title><rect x="40.6031%" y="709" width="0.0112%" height="15" fill="rgb(209,109,2)" fg:x="108645" fg:w="30"/><text x="40.8531%" y="719.50"></text></g><g><title>SpinPause (30 samples, 0.01%)</title><rect x="40.6031%" y="693" width="0.0112%" height="15" fill="rgb(252,216,26)" fg:x="108645" fg:w="30"/><text x="40.8531%" y="703.50"></text></g><g><title>JavaThread::nmethods_do (39 samples, 0.01%)</title><rect x="40.6196%" y="725" width="0.0146%" height="15" fill="rgb(227,173,36)" fg:x="108689" fg:w="39"/><text x="40.8696%" y="735.50"></text></g><g><title>frame::sender (31 samples, 0.01%)</title><rect x="40.6225%" y="709" width="0.0116%" height="15" fill="rgb(209,90,7)" fg:x="108697" fg:w="31"/><text x="40.8725%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (60 samples, 0.02%)</title><rect x="40.6151%" y="757" width="0.0224%" height="15" fill="rgb(250,194,11)" fg:x="108677" fg:w="60"/><text x="40.8651%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (56 samples, 0.02%)</title><rect x="40.6166%" y="741" width="0.0209%" height="15" fill="rgb(220,72,50)" fg:x="108681" fg:w="56"/><text x="40.8666%" y="751.50"></text></g><g><title>futex_wait_queue_me (32 samples, 0.01%)</title><rect x="40.6409%" y="597" width="0.0120%" height="15" fill="rgb(222,106,48)" fg:x="108746" fg:w="32"/><text x="40.8909%" y="607.50"></text></g><g><title>schedule (31 samples, 0.01%)</title><rect x="40.6412%" y="581" width="0.0116%" height="15" fill="rgb(216,220,45)" fg:x="108747" fg:w="31"/><text x="40.8912%" y="591.50"></text></g><g><title>__schedule (31 samples, 0.01%)</title><rect x="40.6412%" y="565" width="0.0116%" height="15" fill="rgb(234,112,18)" fg:x="108747" fg:w="31"/><text x="40.8912%" y="575.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="40.6397%" y="661" width="0.0142%" height="15" fill="rgb(206,179,9)" fg:x="108743" fg:w="38"/><text x="40.8897%" y="671.50"></text></g><g><title>__x64_sys_futex (38 samples, 0.01%)</title><rect x="40.6397%" y="645" width="0.0142%" height="15" fill="rgb(215,115,40)" fg:x="108743" fg:w="38"/><text x="40.8897%" y="655.50"></text></g><g><title>do_futex (37 samples, 0.01%)</title><rect x="40.6401%" y="629" width="0.0138%" height="15" fill="rgb(222,69,34)" fg:x="108744" fg:w="37"/><text x="40.8901%" y="639.50"></text></g><g><title>futex_wait (36 samples, 0.01%)</title><rect x="40.6405%" y="613" width="0.0135%" height="15" fill="rgb(209,161,10)" fg:x="108745" fg:w="36"/><text x="40.8905%" y="623.50"></text></g><g><title>GC_Thread#5 (804 samples, 0.30%)</title><rect x="40.3538%" y="853" width="0.3005%" height="15" fill="rgb(217,6,38)" fg:x="107978" fg:w="804"/><text x="40.6038%" y="863.50"></text></g><g><title>__GI___clone (787 samples, 0.29%)</title><rect x="40.3602%" y="837" width="0.2941%" height="15" fill="rgb(229,229,48)" fg:x="107995" fg:w="787"/><text x="40.6102%" y="847.50"></text></g><g><title>start_thread (787 samples, 0.29%)</title><rect x="40.3602%" y="821" width="0.2941%" height="15" fill="rgb(225,21,28)" fg:x="107995" fg:w="787"/><text x="40.6102%" y="831.50"></text></g><g><title>thread_native_entry (787 samples, 0.29%)</title><rect x="40.3602%" y="805" width="0.2941%" height="15" fill="rgb(206,33,13)" fg:x="107995" fg:w="787"/><text x="40.6102%" y="815.50"></text></g><g><title>Thread::call_run (787 samples, 0.29%)</title><rect x="40.3602%" y="789" width="0.2941%" height="15" fill="rgb(242,178,17)" fg:x="107995" fg:w="787"/><text x="40.6102%" y="799.50"></text></g><g><title>GangWorker::loop (787 samples, 0.29%)</title><rect x="40.3602%" y="773" width="0.2941%" height="15" fill="rgb(220,162,5)" fg:x="107995" fg:w="787"/><text x="40.6102%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (44 samples, 0.02%)</title><rect x="40.6379%" y="757" width="0.0164%" height="15" fill="rgb(210,33,43)" fg:x="108738" fg:w="44"/><text x="40.8879%" y="767.50"></text></g><g><title>PosixSemaphore::wait (43 samples, 0.02%)</title><rect x="40.6382%" y="741" width="0.0161%" height="15" fill="rgb(216,116,54)" fg:x="108739" fg:w="43"/><text x="40.8882%" y="751.50"></text></g><g><title>__new_sem_wait_slow (40 samples, 0.01%)</title><rect x="40.6394%" y="725" width="0.0149%" height="15" fill="rgb(249,92,24)" fg:x="108742" fg:w="40"/><text x="40.8894%" y="735.50"></text></g><g><title>do_futex_wait (40 samples, 0.01%)</title><rect x="40.6394%" y="709" width="0.0149%" height="15" fill="rgb(231,189,14)" fg:x="108742" fg:w="40"/><text x="40.8894%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (40 samples, 0.01%)</title><rect x="40.6394%" y="693" width="0.0149%" height="15" fill="rgb(230,8,41)" fg:x="108742" fg:w="40"/><text x="40.8894%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="40.6397%" y="677" width="0.0146%" height="15" fill="rgb(249,7,27)" fg:x="108743" fg:w="39"/><text x="40.8897%" y="687.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (35 samples, 0.01%)</title><rect x="40.7126%" y="693" width="0.0131%" height="15" fill="rgb(232,86,5)" fg:x="108938" fg:w="35"/><text x="40.9626%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (103 samples, 0.04%)</title><rect x="40.6958%" y="709" width="0.0385%" height="15" fill="rgb(224,175,18)" fg:x="108893" fg:w="103"/><text x="40.9458%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (164 samples, 0.06%)</title><rect x="40.6745%" y="725" width="0.0613%" height="15" fill="rgb(220,129,12)" fg:x="108836" fg:w="164"/><text x="40.9245%" y="735.50"></text></g><g><title>SpinPause (109 samples, 0.04%)</title><rect x="40.7395%" y="725" width="0.0407%" height="15" fill="rgb(210,19,36)" fg:x="109010" fg:w="109"/><text x="40.9895%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (294 samples, 0.11%)</title><rect x="40.6711%" y="741" width="0.1099%" height="15" fill="rgb(219,96,14)" fg:x="108827" fg:w="294"/><text x="40.9211%" y="751.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (42 samples, 0.02%)</title><rect x="40.7937%" y="629" width="0.0157%" height="15" fill="rgb(249,106,1)" fg:x="109155" fg:w="42"/><text x="41.0437%" y="639.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.02%)</title><rect x="40.7889%" y="645" width="0.0209%" height="15" fill="rgb(249,155,20)" fg:x="109142" fg:w="56"/><text x="41.0389%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (78 samples, 0.03%)</title><rect x="40.7814%" y="661" width="0.0292%" height="15" fill="rgb(244,168,9)" fg:x="109122" fg:w="78"/><text x="41.0314%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (99 samples, 0.04%)</title><rect x="40.7814%" y="741" width="0.0370%" height="15" fill="rgb(216,23,50)" fg:x="109122" fg:w="99"/><text x="41.0314%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (99 samples, 0.04%)</title><rect x="40.7814%" y="725" width="0.0370%" height="15" fill="rgb(224,219,20)" fg:x="109122" fg:w="99"/><text x="41.0314%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (99 samples, 0.04%)</title><rect x="40.7814%" y="709" width="0.0370%" height="15" fill="rgb(222,156,15)" fg:x="109122" fg:w="99"/><text x="41.0314%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (99 samples, 0.04%)</title><rect x="40.7814%" y="693" width="0.0370%" height="15" fill="rgb(231,97,17)" fg:x="109122" fg:w="99"/><text x="41.0314%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (99 samples, 0.04%)</title><rect x="40.7814%" y="677" width="0.0370%" height="15" fill="rgb(218,70,48)" fg:x="109122" fg:w="99"/><text x="41.0314%" y="687.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (27 samples, 0.01%)</title><rect x="40.8188%" y="661" width="0.0101%" height="15" fill="rgb(212,196,52)" fg:x="109222" fg:w="27"/><text x="41.0688%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (33 samples, 0.01%)</title><rect x="40.8188%" y="693" width="0.0123%" height="15" fill="rgb(243,203,18)" fg:x="109222" fg:w="33"/><text x="41.0688%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (33 samples, 0.01%)</title><rect x="40.8188%" y="677" width="0.0123%" height="15" fill="rgb(252,125,41)" fg:x="109222" fg:w="33"/><text x="41.0688%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (41 samples, 0.02%)</title><rect x="40.8184%" y="741" width="0.0153%" height="15" fill="rgb(223,180,33)" fg:x="109221" fg:w="41"/><text x="41.0684%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (41 samples, 0.02%)</title><rect x="40.8184%" y="725" width="0.0153%" height="15" fill="rgb(254,159,46)" fg:x="109221" fg:w="41"/><text x="41.0684%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (41 samples, 0.02%)</title><rect x="40.8184%" y="709" width="0.0153%" height="15" fill="rgb(254,38,10)" fg:x="109221" fg:w="41"/><text x="41.0684%" y="719.50"></text></g><g><title>ClassLoaderDataGraph::roots_cld_do (32 samples, 0.01%)</title><rect x="40.8337%" y="709" width="0.0120%" height="15" fill="rgb(208,217,32)" fg:x="109262" fg:w="32"/><text x="41.0837%" y="719.50"></text></g><g><title>G1CLDScanClosure::do_cld (32 samples, 0.01%)</title><rect x="40.8337%" y="693" width="0.0120%" height="15" fill="rgb(221,120,13)" fg:x="109262" fg:w="32"/><text x="41.0837%" y="703.50"></text></g><g><title>ClassLoaderData::oops_do (32 samples, 0.01%)</title><rect x="40.8337%" y="677" width="0.0120%" height="15" fill="rgb(246,54,52)" fg:x="109262" fg:w="32"/><text x="41.0837%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (60 samples, 0.02%)</title><rect x="40.8595%" y="613" width="0.0224%" height="15" fill="rgb(242,34,25)" fg:x="109331" fg:w="60"/><text x="41.1095%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.02%)</title><rect x="40.8666%" y="597" width="0.0153%" height="15" fill="rgb(247,209,9)" fg:x="109350" fg:w="41"/><text x="41.1166%" y="607.50"></text></g><g><title>frame::oops_do_internal (89 samples, 0.03%)</title><rect x="40.8509%" y="661" width="0.0333%" height="15" fill="rgb(228,71,26)" fg:x="109308" fg:w="89"/><text x="41.1009%" y="671.50"></text></g><g><title>OopMapSet::oops_do (89 samples, 0.03%)</title><rect x="40.8509%" y="645" width="0.0333%" height="15" fill="rgb(222,145,49)" fg:x="109308" fg:w="89"/><text x="41.1009%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (88 samples, 0.03%)</title><rect x="40.8513%" y="629" width="0.0329%" height="15" fill="rgb(218,121,17)" fg:x="109309" fg:w="88"/><text x="41.1013%" y="639.50"></text></g><g><title>frame::oops_interpreted_do (31 samples, 0.01%)</title><rect x="40.8845%" y="661" width="0.0116%" height="15" fill="rgb(244,50,7)" fg:x="109398" fg:w="31"/><text x="41.1345%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (168 samples, 0.06%)</title><rect x="40.8337%" y="725" width="0.0628%" height="15" fill="rgb(246,229,37)" fg:x="109262" fg:w="168"/><text x="41.0837%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (135 samples, 0.05%)</title><rect x="40.8460%" y="709" width="0.0505%" height="15" fill="rgb(225,18,5)" fg:x="109295" fg:w="135"/><text x="41.0960%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (135 samples, 0.05%)</title><rect x="40.8460%" y="693" width="0.0505%" height="15" fill="rgb(213,204,8)" fg:x="109295" fg:w="135"/><text x="41.0960%" y="703.50"></text></g><g><title>JavaThread::oops_do (128 samples, 0.05%)</title><rect x="40.8486%" y="677" width="0.0478%" height="15" fill="rgb(238,103,6)" fg:x="109302" fg:w="128"/><text x="41.0986%" y="687.50"></text></g><g><title>G1RootProcessor::evacuate_roots (175 samples, 0.07%)</title><rect x="40.8337%" y="741" width="0.0654%" height="15" fill="rgb(222,25,35)" fg:x="109262" fg:w="175"/><text x="41.0837%" y="751.50"></text></g><g><title>G1ParTask::work (611 samples, 0.23%)</title><rect x="40.6711%" y="757" width="0.2283%" height="15" fill="rgb(213,203,35)" fg:x="108827" fg:w="611"/><text x="40.9211%" y="767.50"></text></g><g><title>RefProcPhase2Task::work (27 samples, 0.01%)</title><rect x="40.9025%" y="741" width="0.0101%" height="15" fill="rgb(221,79,53)" fg:x="109446" fg:w="27"/><text x="41.1525%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (65 samples, 0.02%)</title><rect x="40.9025%" y="757" width="0.0243%" height="15" fill="rgb(243,200,35)" fg:x="109446" fg:w="65"/><text x="41.1525%" y="767.50"></text></g><g><title>RefProcPhase3Task::work (38 samples, 0.01%)</title><rect x="40.9126%" y="741" width="0.0142%" height="15" fill="rgb(248,60,25)" fg:x="109473" fg:w="38"/><text x="41.1626%" y="751.50"></text></g><g><title>ReferenceProcessor::process_final_keep_alive_work (38 samples, 0.01%)</title><rect x="40.9126%" y="725" width="0.0142%" height="15" fill="rgb(227,53,46)" fg:x="109473" fg:w="38"/><text x="41.1626%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (38 samples, 0.01%)</title><rect x="40.9126%" y="709" width="0.0142%" height="15" fill="rgb(216,120,32)" fg:x="109473" fg:w="38"/><text x="41.1626%" y="719.50"></text></g><g><title>SpinPause (38 samples, 0.01%)</title><rect x="40.9126%" y="693" width="0.0142%" height="15" fill="rgb(220,134,1)" fg:x="109473" fg:w="38"/><text x="41.1626%" y="703.50"></text></g><g><title>JavaThread::nmethods_do (44 samples, 0.02%)</title><rect x="40.9297%" y="725" width="0.0164%" height="15" fill="rgb(237,168,5)" fg:x="109519" fg:w="44"/><text x="41.1797%" y="735.50"></text></g><g><title>frame::sender (34 samples, 0.01%)</title><rect x="40.9335%" y="709" width="0.0127%" height="15" fill="rgb(231,100,33)" fg:x="109529" fg:w="34"/><text x="41.1835%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (59 samples, 0.02%)</title><rect x="40.9268%" y="757" width="0.0220%" height="15" fill="rgb(236,177,47)" fg:x="109511" fg:w="59"/><text x="41.1768%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (57 samples, 0.02%)</title><rect x="40.9275%" y="741" width="0.0213%" height="15" fill="rgb(235,7,49)" fg:x="109513" fg:w="57"/><text x="41.1775%" y="751.50"></text></g><g><title>futex_wait_queue_me (31 samples, 0.01%)</title><rect x="40.9510%" y="597" width="0.0116%" height="15" fill="rgb(232,119,22)" fg:x="109576" fg:w="31"/><text x="41.2010%" y="607.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="40.9514%" y="581" width="0.0112%" height="15" fill="rgb(254,73,53)" fg:x="109577" fg:w="30"/><text x="41.2014%" y="591.50"></text></g><g><title>__schedule (30 samples, 0.01%)</title><rect x="40.9514%" y="565" width="0.0112%" height="15" fill="rgb(251,35,20)" fg:x="109577" fg:w="30"/><text x="41.2014%" y="575.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="40.9503%" y="661" width="0.0131%" height="15" fill="rgb(241,119,20)" fg:x="109574" fg:w="35"/><text x="41.2003%" y="671.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="40.9503%" y="645" width="0.0131%" height="15" fill="rgb(207,102,14)" fg:x="109574" fg:w="35"/><text x="41.2003%" y="655.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="40.9503%" y="629" width="0.0131%" height="15" fill="rgb(248,201,50)" fg:x="109574" fg:w="35"/><text x="41.2003%" y="639.50"></text></g><g><title>futex_wait (35 samples, 0.01%)</title><rect x="40.9503%" y="613" width="0.0131%" height="15" fill="rgb(222,185,44)" fg:x="109574" fg:w="35"/><text x="41.2003%" y="623.50"></text></g><g><title>GangWorker::loop (806 samples, 0.30%)</title><rect x="40.6629%" y="773" width="0.3012%" height="15" fill="rgb(218,107,18)" fg:x="108805" fg:w="806"/><text x="40.9129%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (41 samples, 0.02%)</title><rect x="40.9488%" y="757" width="0.0153%" height="15" fill="rgb(237,177,39)" fg:x="109570" fg:w="41"/><text x="41.1988%" y="767.50"></text></g><g><title>PosixSemaphore::wait (40 samples, 0.01%)</title><rect x="40.9492%" y="741" width="0.0149%" height="15" fill="rgb(246,69,6)" fg:x="109571" fg:w="40"/><text x="41.1992%" y="751.50"></text></g><g><title>__new_sem_wait_slow (40 samples, 0.01%)</title><rect x="40.9492%" y="725" width="0.0149%" height="15" fill="rgb(234,208,37)" fg:x="109571" fg:w="40"/><text x="41.1992%" y="735.50"></text></g><g><title>do_futex_wait (39 samples, 0.01%)</title><rect x="40.9496%" y="709" width="0.0146%" height="15" fill="rgb(225,4,6)" fg:x="109572" fg:w="39"/><text x="41.1996%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (39 samples, 0.01%)</title><rect x="40.9496%" y="693" width="0.0146%" height="15" fill="rgb(233,45,0)" fg:x="109572" fg:w="39"/><text x="41.1996%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.01%)</title><rect x="40.9503%" y="677" width="0.0138%" height="15" fill="rgb(226,136,5)" fg:x="109574" fg:w="37"/><text x="41.2003%" y="687.50"></text></g><g><title>GC_Thread#6 (830 samples, 0.31%)</title><rect x="40.6543%" y="853" width="0.3102%" height="15" fill="rgb(211,91,47)" fg:x="108782" fg:w="830"/><text x="40.9043%" y="863.50"></text></g><g><title>__GI___clone (807 samples, 0.30%)</title><rect x="40.6629%" y="837" width="0.3016%" height="15" fill="rgb(242,88,51)" fg:x="108805" fg:w="807"/><text x="40.9129%" y="847.50"></text></g><g><title>start_thread (807 samples, 0.30%)</title><rect x="40.6629%" y="821" width="0.3016%" height="15" fill="rgb(230,91,28)" fg:x="108805" fg:w="807"/><text x="40.9129%" y="831.50"></text></g><g><title>thread_native_entry (807 samples, 0.30%)</title><rect x="40.6629%" y="805" width="0.3016%" height="15" fill="rgb(254,186,29)" fg:x="108805" fg:w="807"/><text x="40.9129%" y="815.50"></text></g><g><title>Thread::call_run (807 samples, 0.30%)</title><rect x="40.6629%" y="789" width="0.3016%" height="15" fill="rgb(238,6,4)" fg:x="108805" fg:w="807"/><text x="40.9129%" y="799.50"></text></g><g><title>OopOopIterateBackwardsDispatch&lt;G1ScanEvacuatedObjClosure&gt;::Table::oop_oop_iterate_backwards&lt;InstanceKlass, unsigned int&gt; (30 samples, 0.01%)</title><rect x="41.0120%" y="693" width="0.0112%" height="15" fill="rgb(221,151,16)" fg:x="109739" fg:w="30"/><text x="41.2620%" y="703.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (84 samples, 0.03%)</title><rect x="40.9985%" y="709" width="0.0314%" height="15" fill="rgb(251,143,52)" fg:x="109703" fg:w="84"/><text x="41.2485%" y="719.50"></text></g><g><title>G1ParScanThreadState::trim_queue (154 samples, 0.06%)</title><rect x="40.9738%" y="725" width="0.0576%" height="15" fill="rgb(206,90,15)" fg:x="109637" fg:w="154"/><text x="41.2238%" y="735.50"></text></g><g><title>SpinPause (72 samples, 0.03%)</title><rect x="41.0333%" y="725" width="0.0269%" height="15" fill="rgb(218,35,8)" fg:x="109796" fg:w="72"/><text x="41.2833%" y="735.50"></text></g><g><title>G1ParEvacuateFollowersClosure::do_void (239 samples, 0.09%)</title><rect x="40.9716%" y="741" width="0.0893%" height="15" fill="rgb(239,215,6)" fg:x="109631" fg:w="239"/><text x="41.2216%" y="751.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (76 samples, 0.03%)</title><rect x="41.0725%" y="645" width="0.0284%" height="15" fill="rgb(245,116,39)" fg:x="109901" fg:w="76"/><text x="41.3225%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (64 samples, 0.02%)</title><rect x="41.0770%" y="629" width="0.0239%" height="15" fill="rgb(242,65,28)" fg:x="109913" fg:w="64"/><text x="41.3270%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (111 samples, 0.04%)</title><rect x="41.0609%" y="661" width="0.0415%" height="15" fill="rgb(252,132,53)" fg:x="109870" fg:w="111"/><text x="41.3109%" y="671.50"></text></g><g><title>G1RemSet::oops_into_collection_set_do (123 samples, 0.05%)</title><rect x="41.0609%" y="741" width="0.0460%" height="15" fill="rgb(224,159,50)" fg:x="109870" fg:w="123"/><text x="41.3109%" y="751.50"></text></g><g><title>G1RemSet::update_rem_set (123 samples, 0.05%)</title><rect x="41.0609%" y="725" width="0.0460%" height="15" fill="rgb(224,93,4)" fg:x="109870" fg:w="123"/><text x="41.3109%" y="735.50"></text></g><g><title>G1CollectedHeap::iterate_dirty_card_closure (123 samples, 0.05%)</title><rect x="41.0609%" y="709" width="0.0460%" height="15" fill="rgb(208,81,34)" fg:x="109870" fg:w="123"/><text x="41.3109%" y="719.50"></text></g><g><title>DirtyCardQueueSet::apply_closure_during_gc (123 samples, 0.05%)</title><rect x="41.0609%" y="693" width="0.0460%" height="15" fill="rgb(233,92,54)" fg:x="109870" fg:w="123"/><text x="41.3109%" y="703.50"></text></g><g><title>G1RefineCardClosure::do_card_ptr (123 samples, 0.05%)</title><rect x="41.0609%" y="677" width="0.0460%" height="15" fill="rgb(237,21,14)" fg:x="109870" fg:w="123"/><text x="41.3109%" y="687.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (36 samples, 0.01%)</title><rect x="41.1103%" y="645" width="0.0135%" height="15" fill="rgb(249,128,51)" fg:x="110002" fg:w="36"/><text x="41.3603%" y="655.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (27 samples, 0.01%)</title><rect x="41.1136%" y="629" width="0.0101%" height="15" fill="rgb(223,129,24)" fg:x="110011" fg:w="27"/><text x="41.3636%" y="639.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (47 samples, 0.02%)</title><rect x="41.1069%" y="661" width="0.0176%" height="15" fill="rgb(231,168,25)" fg:x="109993" fg:w="47"/><text x="41.3569%" y="671.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_rem_set_roots (51 samples, 0.02%)</title><rect x="41.1069%" y="693" width="0.0191%" height="15" fill="rgb(224,39,20)" fg:x="109993" fg:w="51"/><text x="41.3569%" y="703.50"></text></g><g><title>G1ScanRSForRegionClosure::scan_card (51 samples, 0.02%)</title><rect x="41.1069%" y="677" width="0.0191%" height="15" fill="rgb(225,152,53)" fg:x="109993" fg:w="51"/><text x="41.3569%" y="687.50"></text></g><g><title>G1RemSet::scan_rem_set (68 samples, 0.03%)</title><rect x="41.1069%" y="741" width="0.0254%" height="15" fill="rgb(252,17,24)" fg:x="109993" fg:w="68"/><text x="41.3569%" y="751.50"></text></g><g><title>G1CollectionSet::iterate_from (68 samples, 0.03%)</title><rect x="41.1069%" y="725" width="0.0254%" height="15" fill="rgb(250,114,30)" fg:x="109993" fg:w="68"/><text x="41.3569%" y="735.50"></text></g><g><title>G1ScanRSForRegionClosure::do_heap_region (68 samples, 0.03%)</title><rect x="41.1069%" y="709" width="0.0254%" height="15" fill="rgb(229,5,4)" fg:x="109993" fg:w="68"/><text x="41.3569%" y="719.50"></text></g><g><title>G1ParScanThreadState::do_oop_evac&lt;unsigned int&gt; (56 samples, 0.02%)</title><rect x="41.1544%" y="613" width="0.0209%" height="15" fill="rgb(225,176,49)" fg:x="110120" fg:w="56"/><text x="41.4044%" y="623.50"></text></g><g><title>G1ParScanThreadState::copy_to_survivor_space (41 samples, 0.02%)</title><rect x="41.1600%" y="597" width="0.0153%" height="15" fill="rgb(224,221,49)" fg:x="110135" fg:w="41"/><text x="41.4100%" y="607.50"></text></g><g><title>InterpreterOopMap::iterate_oop (76 samples, 0.03%)</title><rect x="41.1499%" y="645" width="0.0284%" height="15" fill="rgb(253,169,27)" fg:x="110108" fg:w="76"/><text x="41.3999%" y="655.50"></text></g><g><title>G1ParScanThreadState::trim_queue_partially (76 samples, 0.03%)</title><rect x="41.1499%" y="629" width="0.0284%" height="15" fill="rgb(211,206,16)" fg:x="110108" fg:w="76"/><text x="41.3999%" y="639.50"></text></g><g><title>JavaThread::oops_do (121 samples, 0.05%)</title><rect x="41.1342%" y="677" width="0.0452%" height="15" fill="rgb(244,87,35)" fg:x="110066" fg:w="121"/><text x="41.3842%" y="687.50"></text></g><g><title>frame::oops_interpreted_do (80 samples, 0.03%)</title><rect x="41.1495%" y="661" width="0.0299%" height="15" fill="rgb(246,28,10)" fg:x="110107" fg:w="80"/><text x="41.3995%" y="671.50"></text></g><g><title>G1RootProcessor::process_java_roots (122 samples, 0.05%)</title><rect x="41.1342%" y="725" width="0.0456%" height="15" fill="rgb(229,12,44)" fg:x="110066" fg:w="122"/><text x="41.3842%" y="735.50"></text></g><g><title>Threads::possibly_parallel_oops_do (122 samples, 0.05%)</title><rect x="41.1342%" y="709" width="0.0456%" height="15" fill="rgb(210,145,37)" fg:x="110066" fg:w="122"/><text x="41.3842%" y="719.50"></text></g><g><title>Threads::possibly_parallel_threads_do (122 samples, 0.05%)</title><rect x="41.1342%" y="693" width="0.0456%" height="15" fill="rgb(227,112,52)" fg:x="110066" fg:w="122"/><text x="41.3842%" y="703.50"></text></g><g><title>G1ParTask::work (568 samples, 0.21%)</title><rect x="40.9716%" y="757" width="0.2123%" height="15" fill="rgb(238,155,34)" fg:x="109631" fg:w="568"/><text x="41.2216%" y="767.50"></text></g><g><title>G1RootProcessor::evacuate_roots (138 samples, 0.05%)</title><rect x="41.1323%" y="741" width="0.0516%" height="15" fill="rgb(239,226,36)" fg:x="110061" fg:w="138"/><text x="41.3823%" y="751.50"></text></g><g><title>RefProcPhase2Task::work (30 samples, 0.01%)</title><rect x="41.1884%" y="741" width="0.0112%" height="15" fill="rgb(230,16,23)" fg:x="110211" fg:w="30"/><text x="41.4384%" y="751.50"></text></g><g><title>G1STWRefProcTaskProxy::work (42 samples, 0.02%)</title><rect x="41.1884%" y="757" width="0.0157%" height="15" fill="rgb(236,171,36)" fg:x="110211" fg:w="42"/><text x="41.4384%" y="767.50"></text></g><g><title>JavaThread::nmethods_do (40 samples, 0.01%)</title><rect x="41.2100%" y="725" width="0.0149%" height="15" fill="rgb(221,22,14)" fg:x="110269" fg:w="40"/><text x="41.4600%" y="735.50"></text></g><g><title>frame::sender (31 samples, 0.01%)</title><rect x="41.2134%" y="709" width="0.0116%" height="15" fill="rgb(242,43,11)" fg:x="110278" fg:w="31"/><text x="41.4634%" y="719.50"></text></g><g><title>ParallelSPCleanupTask::work (73 samples, 0.03%)</title><rect x="41.2041%" y="757" width="0.0273%" height="15" fill="rgb(232,69,23)" fg:x="110253" fg:w="73"/><text x="41.4541%" y="767.50"></text></g><g><title>Threads::possibly_parallel_threads_do (71 samples, 0.03%)</title><rect x="41.2048%" y="741" width="0.0265%" height="15" fill="rgb(216,180,54)" fg:x="110255" fg:w="71"/><text x="41.4548%" y="751.50"></text></g><g><title>__GI___clone (731 samples, 0.27%)</title><rect x="40.9697%" y="837" width="0.2732%" height="15" fill="rgb(216,5,24)" fg:x="109626" fg:w="731"/><text x="41.2197%" y="847.50"></text></g><g><title>start_thread (731 samples, 0.27%)</title><rect x="40.9697%" y="821" width="0.2732%" height="15" fill="rgb(225,89,9)" fg:x="109626" fg:w="731"/><text x="41.2197%" y="831.50"></text></g><g><title>thread_native_entry (731 samples, 0.27%)</title><rect x="40.9697%" y="805" width="0.2732%" height="15" fill="rgb(243,75,33)" fg:x="109626" fg:w="731"/><text x="41.2197%" y="815.50"></text></g><g><title>Thread::call_run (731 samples, 0.27%)</title><rect x="40.9697%" y="789" width="0.2732%" height="15" fill="rgb(247,141,45)" fg:x="109626" fg:w="731"/><text x="41.2197%" y="799.50"></text></g><g><title>GangWorker::loop (731 samples, 0.27%)</title><rect x="40.9697%" y="773" width="0.2732%" height="15" fill="rgb(232,177,36)" fg:x="109626" fg:w="731"/><text x="41.2197%" y="783.50"></text></g><g><title>SemaphoreGangTaskDispatcher::worker_wait_for_task (29 samples, 0.01%)</title><rect x="41.2321%" y="757" width="0.0108%" height="15" fill="rgb(219,125,36)" fg:x="110328" fg:w="29"/><text x="41.4821%" y="767.50"></text></g><g><title>PosixSemaphore::wait (29 samples, 0.01%)</title><rect x="41.2321%" y="741" width="0.0108%" height="15" fill="rgb(227,94,9)" fg:x="110328" fg:w="29"/><text x="41.4821%" y="751.50"></text></g><g><title>__new_sem_wait_slow (28 samples, 0.01%)</title><rect x="41.2325%" y="725" width="0.0105%" height="15" fill="rgb(240,34,52)" fg:x="110329" fg:w="28"/><text x="41.4825%" y="735.50"></text></g><g><title>do_futex_wait (27 samples, 0.01%)</title><rect x="41.2328%" y="709" width="0.0101%" height="15" fill="rgb(216,45,12)" fg:x="110330" fg:w="27"/><text x="41.4828%" y="719.50"></text></g><g><title>futex_abstimed_wait_cancelable (27 samples, 0.01%)</title><rect x="41.2328%" y="693" width="0.0101%" height="15" fill="rgb(246,21,19)" fg:x="110330" fg:w="27"/><text x="41.4828%" y="703.50"></text></g><g><title>GC_Thread#7 (747 samples, 0.28%)</title><rect x="40.9645%" y="853" width="0.2792%" height="15" fill="rgb(213,98,42)" fg:x="109612" fg:w="747"/><text x="41.2145%" y="863.50"></text></g><g><title>[perf-21254.map] (123 samples, 0.05%)</title><rect x="41.2538%" y="837" width="0.0460%" height="15" fill="rgb(250,136,47)" fg:x="110386" fg:w="123"/><text x="41.5038%" y="847.50"></text></g><g><title>Service_Thread (140 samples, 0.05%)</title><rect x="41.2526%" y="853" width="0.0523%" height="15" fill="rgb(251,124,27)" fg:x="110383" fg:w="140"/><text x="41.5026%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (106 samples, 0.04%)</title><rect x="41.3670%" y="501" width="0.0396%" height="15" fill="rgb(229,180,14)" fg:x="110689" fg:w="106"/><text x="41.6170%" y="511.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (106 samples, 0.04%)</title><rect x="41.3670%" y="485" width="0.0396%" height="15" fill="rgb(245,216,25)" fg:x="110689" fg:w="106"/><text x="41.6170%" y="495.50"></text></g><g><title>native_write_msr (104 samples, 0.04%)</title><rect x="41.3678%" y="469" width="0.0389%" height="15" fill="rgb(251,43,5)" fg:x="110691" fg:w="104"/><text x="41.6178%" y="479.50"></text></g><g><title>finish_task_switch (113 samples, 0.04%)</title><rect x="41.3670%" y="517" width="0.0422%" height="15" fill="rgb(250,128,24)" fg:x="110689" fg:w="113"/><text x="41.6170%" y="527.50"></text></g><g><title>futex_wait_queue_me (216 samples, 0.08%)</title><rect x="41.3468%" y="565" width="0.0807%" height="15" fill="rgb(217,117,27)" fg:x="110635" fg:w="216"/><text x="41.5968%" y="575.50"></text></g><g><title>schedule (200 samples, 0.07%)</title><rect x="41.3528%" y="549" width="0.0747%" height="15" fill="rgb(245,147,4)" fg:x="110651" fg:w="200"/><text x="41.6028%" y="559.50"></text></g><g><title>__schedule (197 samples, 0.07%)</title><rect x="41.3539%" y="533" width="0.0736%" height="15" fill="rgb(242,201,35)" fg:x="110654" fg:w="197"/><text x="41.6039%" y="543.50"></text></g><g><title>do_futex (244 samples, 0.09%)</title><rect x="41.3442%" y="597" width="0.0912%" height="15" fill="rgb(218,181,1)" fg:x="110628" fg:w="244"/><text x="41.5942%" y="607.50"></text></g><g><title>futex_wait (243 samples, 0.09%)</title><rect x="41.3446%" y="581" width="0.0908%" height="15" fill="rgb(222,6,29)" fg:x="110629" fg:w="243"/><text x="41.5946%" y="591.50"></text></g><g><title>do_syscall_64 (258 samples, 0.10%)</title><rect x="41.3412%" y="629" width="0.0964%" height="15" fill="rgb(208,186,3)" fg:x="110620" fg:w="258"/><text x="41.5912%" y="639.50"></text></g><g><title>__x64_sys_futex (256 samples, 0.10%)</title><rect x="41.3420%" y="613" width="0.0957%" height="15" fill="rgb(216,36,26)" fg:x="110622" fg:w="256"/><text x="41.5920%" y="623.50"></text></g><g><title>__pthread_cond_timedwait (290 samples, 0.11%)</title><rect x="41.3311%" y="693" width="0.1084%" height="15" fill="rgb(248,201,23)" fg:x="110593" fg:w="290"/><text x="41.5811%" y="703.50"></text></g><g><title>__pthread_cond_wait_common (289 samples, 0.11%)</title><rect x="41.3315%" y="677" width="0.1080%" height="15" fill="rgb(251,170,31)" fg:x="110594" fg:w="289"/><text x="41.5815%" y="687.50"></text></g><g><title>futex_abstimed_wait_cancelable (280 samples, 0.10%)</title><rect x="41.3349%" y="661" width="0.1046%" height="15" fill="rgb(207,110,25)" fg:x="110603" fg:w="280"/><text x="41.5849%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (265 samples, 0.10%)</title><rect x="41.3405%" y="645" width="0.0990%" height="15" fill="rgb(250,54,15)" fg:x="110618" fg:w="265"/><text x="41.5905%" y="655.50"></text></g><g><title>Monitor::wait (350 samples, 0.13%)</title><rect x="41.3195%" y="741" width="0.1308%" height="15" fill="rgb(227,68,33)" fg:x="110562" fg:w="350"/><text x="41.5695%" y="751.50"></text></g><g><title>Monitor::IWait (346 samples, 0.13%)</title><rect x="41.3210%" y="725" width="0.1293%" height="15" fill="rgb(238,34,41)" fg:x="110566" fg:w="346"/><text x="41.5710%" y="735.50"></text></g><g><title>os::PlatformEvent::park (330 samples, 0.12%)</title><rect x="41.3270%" y="709" width="0.1233%" height="15" fill="rgb(220,11,15)" fg:x="110582" fg:w="330"/><text x="41.5770%" y="719.50"></text></g><g><title>CompiledMethod::cleanup_inline_caches_impl (104 samples, 0.04%)</title><rect x="41.4604%" y="693" width="0.0389%" height="15" fill="rgb(246,111,35)" fg:x="110939" fg:w="104"/><text x="41.7104%" y="703.50"></text></g><g><title>NMethodSweeper::process_compiled_method (146 samples, 0.05%)</title><rect x="41.4601%" y="709" width="0.0546%" height="15" fill="rgb(209,88,53)" fg:x="110938" fg:w="146"/><text x="41.7101%" y="719.50"></text></g><g><title>NMethodSweeper::possibly_sweep (173 samples, 0.06%)</title><rect x="41.4503%" y="741" width="0.0647%" height="15" fill="rgb(231,185,47)" fg:x="110912" fg:w="173"/><text x="41.7003%" y="751.50"></text></g><g><title>NMethodSweeper::sweep_code_cache (164 samples, 0.06%)</title><rect x="41.4537%" y="725" width="0.0613%" height="15" fill="rgb(233,154,1)" fg:x="110921" fg:w="164"/><text x="41.7037%" y="735.50"></text></g><g><title>__GI___clone (553 samples, 0.21%)</title><rect x="41.3113%" y="837" width="0.2067%" height="15" fill="rgb(225,15,46)" fg:x="110540" fg:w="553"/><text x="41.5613%" y="847.50"></text></g><g><title>start_thread (553 samples, 0.21%)</title><rect x="41.3113%" y="821" width="0.2067%" height="15" fill="rgb(211,135,41)" fg:x="110540" fg:w="553"/><text x="41.5613%" y="831.50"></text></g><g><title>thread_native_entry (553 samples, 0.21%)</title><rect x="41.3113%" y="805" width="0.2067%" height="15" fill="rgb(208,54,0)" fg:x="110540" fg:w="553"/><text x="41.5613%" y="815.50"></text></g><g><title>Thread::call_run (553 samples, 0.21%)</title><rect x="41.3113%" y="789" width="0.2067%" height="15" fill="rgb(244,136,14)" fg:x="110540" fg:w="553"/><text x="41.5613%" y="799.50"></text></g><g><title>JavaThread::thread_main_inner (553 samples, 0.21%)</title><rect x="41.3113%" y="773" width="0.2067%" height="15" fill="rgb(241,56,14)" fg:x="110540" fg:w="553"/><text x="41.5613%" y="783.50"></text></g><g><title>NMethodSweeper::sweeper_loop (552 samples, 0.21%)</title><rect x="41.3117%" y="757" width="0.2063%" height="15" fill="rgb(205,80,24)" fg:x="110541" fg:w="552"/><text x="41.5617%" y="767.50"></text></g><g><title>Sweeper_thread (576 samples, 0.22%)</title><rect x="41.3053%" y="853" width="0.2153%" height="15" fill="rgb(220,57,4)" fg:x="110524" fg:w="576"/><text x="41.5553%" y="863.50"></text></g><g><title>[perf-21254.map] (128 samples, 0.05%)</title><rect x="41.5221%" y="837" width="0.0478%" height="15" fill="rgb(226,193,50)" fg:x="111104" fg:w="128"/><text x="41.7721%" y="847.50"></text></g><g><title>Thread-0 (138 samples, 0.05%)</title><rect x="41.5206%" y="853" width="0.0516%" height="15" fill="rgb(231,168,22)" fg:x="111100" fg:w="138"/><text x="41.7706%" y="863.50"></text></g><g><title>Monitor::wait (28 samples, 0.01%)</title><rect x="41.5729%" y="741" width="0.0105%" height="15" fill="rgb(254,215,14)" fg:x="111240" fg:w="28"/><text x="41.8229%" y="751.50"></text></g><g><title>Monitor::IWait (28 samples, 0.01%)</title><rect x="41.5729%" y="725" width="0.0105%" height="15" fill="rgb(211,115,16)" fg:x="111240" fg:w="28"/><text x="41.8229%" y="735.50"></text></g><g><title>os::PlatformEvent::park (28 samples, 0.01%)</title><rect x="41.5729%" y="709" width="0.0105%" height="15" fill="rgb(236,210,16)" fg:x="111240" fg:w="28"/><text x="41.8229%" y="719.50"></text></g><g><title>VM_Periodic_Tas (31 samples, 0.01%)</title><rect x="41.5722%" y="853" width="0.0116%" height="15" fill="rgb(221,94,12)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="863.50"></text></g><g><title>__GI___clone (31 samples, 0.01%)</title><rect x="41.5722%" y="837" width="0.0116%" height="15" fill="rgb(235,218,49)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="847.50"></text></g><g><title>start_thread (31 samples, 0.01%)</title><rect x="41.5722%" y="821" width="0.0116%" height="15" fill="rgb(217,114,14)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="831.50"></text></g><g><title>thread_native_entry (31 samples, 0.01%)</title><rect x="41.5722%" y="805" width="0.0116%" height="15" fill="rgb(216,145,22)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="815.50"></text></g><g><title>Thread::call_run (31 samples, 0.01%)</title><rect x="41.5722%" y="789" width="0.0116%" height="15" fill="rgb(217,112,39)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="799.50"></text></g><g><title>WatcherThread::run (31 samples, 0.01%)</title><rect x="41.5722%" y="773" width="0.0116%" height="15" fill="rgb(225,85,32)" fg:x="111238" fg:w="31"/><text x="41.8222%" y="783.50"></text></g><g><title>WatcherThread::sleep (29 samples, 0.01%)</title><rect x="41.5729%" y="757" width="0.0108%" height="15" fill="rgb(245,209,47)" fg:x="111240" fg:w="29"/><text x="41.8229%" y="767.50"></text></g><g><title>[unknown] (116 samples, 0.04%)</title><rect x="41.5924%" y="837" width="0.0434%" height="15" fill="rgb(218,220,15)" fg:x="111292" fg:w="116"/><text x="41.8424%" y="847.50"></text></g><g><title>vframe::sender (103 samples, 0.04%)</title><rect x="41.5972%" y="821" width="0.0385%" height="15" fill="rgb(222,202,31)" fg:x="111305" fg:w="103"/><text x="41.8472%" y="831.50"></text></g><g><title>Monitor::wait (27 samples, 0.01%)</title><rect x="41.7897%" y="725" width="0.0101%" height="15" fill="rgb(243,203,4)" fg:x="111820" fg:w="27"/><text x="42.0397%" y="735.50"></text></g><g><title>Monitor::IWait (27 samples, 0.01%)</title><rect x="41.7897%" y="709" width="0.0101%" height="15" fill="rgb(237,92,17)" fg:x="111820" fg:w="27"/><text x="42.0397%" y="719.50"></text></g><g><title>ttwu_do_activate (37 samples, 0.01%)</title><rect x="41.8207%" y="517" width="0.0138%" height="15" fill="rgb(231,119,7)" fg:x="111903" fg:w="37"/><text x="42.0707%" y="527.50"></text></g><g><title>__x64_sys_futex (79 samples, 0.03%)</title><rect x="41.8065%" y="597" width="0.0295%" height="15" fill="rgb(237,82,41)" fg:x="111865" fg:w="79"/><text x="42.0565%" y="607.50"></text></g><g><title>do_futex (78 samples, 0.03%)</title><rect x="41.8069%" y="581" width="0.0292%" height="15" fill="rgb(226,81,48)" fg:x="111866" fg:w="78"/><text x="42.0569%" y="591.50"></text></g><g><title>futex_wake (77 samples, 0.03%)</title><rect x="41.8072%" y="565" width="0.0288%" height="15" fill="rgb(234,70,51)" fg:x="111867" fg:w="77"/><text x="42.0572%" y="575.50"></text></g><g><title>wake_up_q (67 samples, 0.03%)</title><rect x="41.8110%" y="549" width="0.0250%" height="15" fill="rgb(251,86,4)" fg:x="111877" fg:w="67"/><text x="42.0610%" y="559.50"></text></g><g><title>try_to_wake_up (66 samples, 0.02%)</title><rect x="41.8114%" y="533" width="0.0247%" height="15" fill="rgb(244,144,28)" fg:x="111878" fg:w="66"/><text x="42.0614%" y="543.50"></text></g><g><title>PosixSemaphore::signal (87 samples, 0.03%)</title><rect x="41.8039%" y="677" width="0.0325%" height="15" fill="rgb(232,161,39)" fg:x="111858" fg:w="87"/><text x="42.0539%" y="687.50"></text></g><g><title>__new_sem_post (86 samples, 0.03%)</title><rect x="41.8043%" y="661" width="0.0321%" height="15" fill="rgb(247,34,51)" fg:x="111859" fg:w="86"/><text x="42.0543%" y="671.50"></text></g><g><title>futex_wake (82 samples, 0.03%)</title><rect x="41.8058%" y="645" width="0.0306%" height="15" fill="rgb(225,132,2)" fg:x="111863" fg:w="82"/><text x="42.0558%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (80 samples, 0.03%)</title><rect x="41.8065%" y="629" width="0.0299%" height="15" fill="rgb(209,159,44)" fg:x="111865" fg:w="80"/><text x="42.0565%" y="639.50"></text></g><g><title>do_syscall_64 (80 samples, 0.03%)</title><rect x="41.8065%" y="613" width="0.0299%" height="15" fill="rgb(251,214,1)" fg:x="111865" fg:w="80"/><text x="42.0565%" y="623.50"></text></g><g><title>__new_sem_wait_slow (33 samples, 0.01%)</title><rect x="41.8364%" y="661" width="0.0123%" height="15" fill="rgb(247,84,47)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="671.50"></text></g><g><title>do_futex_wait (33 samples, 0.01%)</title><rect x="41.8364%" y="645" width="0.0123%" height="15" fill="rgb(240,111,43)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="655.50"></text></g><g><title>futex_abstimed_wait_cancelable (33 samples, 0.01%)</title><rect x="41.8364%" y="629" width="0.0123%" height="15" fill="rgb(215,214,35)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="639.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="41.8364%" y="613" width="0.0123%" height="15" fill="rgb(248,207,23)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="623.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="41.8364%" y="597" width="0.0123%" height="15" fill="rgb(214,186,4)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="607.50"></text></g><g><title>__x64_sys_futex (33 samples, 0.01%)</title><rect x="41.8364%" y="581" width="0.0123%" height="15" fill="rgb(220,133,22)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="591.50"></text></g><g><title>do_futex (33 samples, 0.01%)</title><rect x="41.8364%" y="565" width="0.0123%" height="15" fill="rgb(239,134,19)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="575.50"></text></g><g><title>futex_wait (33 samples, 0.01%)</title><rect x="41.8364%" y="549" width="0.0123%" height="15" fill="rgb(250,140,9)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="559.50"></text></g><g><title>futex_wait_queue_me (33 samples, 0.01%)</title><rect x="41.8364%" y="533" width="0.0123%" height="15" fill="rgb(225,59,14)" fg:x="111945" fg:w="33"/><text x="42.0864%" y="543.50"></text></g><g><title>schedule (32 samples, 0.01%)</title><rect x="41.8368%" y="517" width="0.0120%" height="15" fill="rgb(214,152,51)" fg:x="111946" fg:w="32"/><text x="42.0868%" y="527.50"></text></g><g><title>__schedule (32 samples, 0.01%)</title><rect x="41.8368%" y="501" width="0.0120%" height="15" fill="rgb(251,227,43)" fg:x="111946" fg:w="32"/><text x="42.0868%" y="511.50"></text></g><g><title>SafepointSynchronize::do_cleanup_tasks (126 samples, 0.05%)</title><rect x="41.8020%" y="725" width="0.0471%" height="15" fill="rgb(241,96,17)" fg:x="111853" fg:w="126"/><text x="42.0520%" y="735.50"></text></g><g><title>WorkGang::run_task (121 samples, 0.05%)</title><rect x="41.8039%" y="709" width="0.0452%" height="15" fill="rgb(234,198,43)" fg:x="111858" fg:w="121"/><text x="42.0539%" y="719.50"></text></g><g><title>SemaphoreGangTaskDispatcher::coordinator_execute_on_workers (121 samples, 0.05%)</title><rect x="41.8039%" y="693" width="0.0452%" height="15" fill="rgb(220,108,29)" fg:x="111858" fg:w="121"/><text x="42.0539%" y="703.50"></text></g><g><title>PosixSemaphore::wait (34 samples, 0.01%)</title><rect x="41.8364%" y="677" width="0.0127%" height="15" fill="rgb(226,163,33)" fg:x="111945" fg:w="34"/><text x="42.0864%" y="687.50"></text></g><g><title>do_syscall_64 (29 samples, 0.01%)</title><rect x="41.8626%" y="693" width="0.0108%" height="15" fill="rgb(205,194,45)" fg:x="112015" fg:w="29"/><text x="42.1126%" y="703.50"></text></g><g><title>__x64_sys_sched_yield (28 samples, 0.01%)</title><rect x="41.8629%" y="677" width="0.0105%" height="15" fill="rgb(206,143,44)" fg:x="112016" fg:w="28"/><text x="42.1129%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="41.8622%" y="709" width="0.0116%" height="15" fill="rgb(236,136,36)" fg:x="112014" fg:w="31"/><text x="42.1122%" y="719.50"></text></g><g><title>__GI___sched_yield (41 samples, 0.02%)</title><rect x="41.8588%" y="725" width="0.0153%" height="15" fill="rgb(249,172,42)" fg:x="112005" fg:w="41"/><text x="42.1088%" y="735.50"></text></g><g><title>SafepointSynchronize::begin (598 samples, 0.22%)</title><rect x="41.6536%" y="741" width="0.2235%" height="15" fill="rgb(216,139,23)" fg:x="111456" fg:w="598"/><text x="41.9036%" y="751.50"></text></g><g><title>CodeHeap::next_used (29 samples, 0.01%)</title><rect x="41.9115%" y="661" width="0.0108%" height="15" fill="rgb(207,166,20)" fg:x="112146" fg:w="29"/><text x="42.1615%" y="671.50"></text></g><g><title>CodeBlobIterator&lt;CompiledMethod, CompiledMethodFilter&gt;::next_alive (48 samples, 0.02%)</title><rect x="41.9085%" y="677" width="0.0179%" height="15" fill="rgb(210,209,22)" fg:x="112138" fg:w="48"/><text x="42.1585%" y="687.50"></text></g><g><title>CodeCache::make_marked_nmethods_not_entrant (51 samples, 0.02%)</title><rect x="41.9082%" y="693" width="0.0191%" height="15" fill="rgb(232,118,20)" fg:x="112137" fg:w="51"/><text x="42.1582%" y="703.50"></text></g><g><title>VM_Deoptimize::doit (58 samples, 0.02%)</title><rect x="41.9082%" y="709" width="0.0217%" height="15" fill="rgb(238,113,42)" fg:x="112137" fg:w="58"/><text x="42.1582%" y="719.50"></text></g><g><title>VM_G1CollectForAllocation::doit (39 samples, 0.01%)</title><rect x="41.9302%" y="709" width="0.0146%" height="15" fill="rgb(231,42,5)" fg:x="112196" fg:w="39"/><text x="42.1802%" y="719.50"></text></g><g><title>G1CollectedHeap::do_collection_pause_at_safepoint (39 samples, 0.01%)</title><rect x="41.9302%" y="693" width="0.0146%" height="15" fill="rgb(243,166,24)" fg:x="112196" fg:w="39"/><text x="42.1802%" y="703.50"></text></g><g><title>VM_Operation::evaluate (144 samples, 0.05%)</title><rect x="41.8969%" y="725" width="0.0538%" height="15" fill="rgb(237,226,12)" fg:x="112107" fg:w="144"/><text x="42.1469%" y="735.50"></text></g><g><title>VMThread::evaluate_operation (149 samples, 0.06%)</title><rect x="41.8958%" y="741" width="0.0557%" height="15" fill="rgb(229,133,24)" fg:x="112104" fg:w="149"/><text x="42.1458%" y="751.50"></text></g><g><title>Thread::call_run (844 samples, 0.32%)</title><rect x="41.6376%" y="789" width="0.3154%" height="15" fill="rgb(238,33,43)" fg:x="111413" fg:w="844"/><text x="41.8876%" y="799.50"></text></g><g><title>VMThread::run (843 samples, 0.32%)</title><rect x="41.6380%" y="773" width="0.3150%" height="15" fill="rgb(227,59,38)" fg:x="111414" fg:w="843"/><text x="41.8880%" y="783.50"></text></g><g><title>VMThread::loop (843 samples, 0.32%)</title><rect x="41.6380%" y="757" width="0.3150%" height="15" fill="rgb(230,97,0)" fg:x="111414" fg:w="843"/><text x="41.8880%" y="767.50"></text></g><g><title>__GI___clone (854 samples, 0.32%)</title><rect x="41.6357%" y="837" width="0.3192%" height="15" fill="rgb(250,173,50)" fg:x="111408" fg:w="854"/><text x="41.8857%" y="847.50"></text></g><g><title>start_thread (852 samples, 0.32%)</title><rect x="41.6365%" y="821" width="0.3184%" height="15" fill="rgb(240,15,50)" fg:x="111410" fg:w="852"/><text x="41.8865%" y="831.50"></text></g><g><title>thread_native_entry (852 samples, 0.32%)</title><rect x="41.6365%" y="805" width="0.3184%" height="15" fill="rgb(221,93,22)" fg:x="111410" fg:w="852"/><text x="41.8865%" y="815.50"></text></g><g><title>VM_Thread (1,001 samples, 0.37%)</title><rect x="41.5838%" y="853" width="0.3741%" height="15" fill="rgb(245,180,53)" fg:x="111269" fg:w="1001"/><text x="41.8338%" y="863.50"></text></g><g><title>__x64_sys_epoll_pwait (37 samples, 0.01%)</title><rect x="42.0517%" y="789" width="0.0138%" height="15" fill="rgb(231,88,51)" fg:x="112521" fg:w="37"/><text x="42.3017%" y="799.50"></text></g><g><title>do_epoll_wait (37 samples, 0.01%)</title><rect x="42.0517%" y="773" width="0.0138%" height="15" fill="rgb(240,58,21)" fg:x="112521" fg:w="37"/><text x="42.3017%" y="783.50"></text></g><g><title>schedule_hrtimeout_range_clock (29 samples, 0.01%)</title><rect x="42.0547%" y="757" width="0.0108%" height="15" fill="rgb(237,21,10)" fg:x="112529" fg:w="29"/><text x="42.3047%" y="767.50"></text></g><g><title>schedule (29 samples, 0.01%)</title><rect x="42.0547%" y="741" width="0.0108%" height="15" fill="rgb(218,43,11)" fg:x="112529" fg:w="29"/><text x="42.3047%" y="751.50"></text></g><g><title>__schedule (29 samples, 0.01%)</title><rect x="42.0547%" y="725" width="0.0108%" height="15" fill="rgb(218,221,29)" fg:x="112529" fg:w="29"/><text x="42.3047%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (183 samples, 0.07%)</title><rect x="42.0748%" y="677" width="0.0684%" height="15" fill="rgb(214,118,42)" fg:x="112583" fg:w="183"/><text x="42.3248%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (180 samples, 0.07%)</title><rect x="42.0760%" y="661" width="0.0673%" height="15" fill="rgb(251,200,26)" fg:x="112586" fg:w="180"/><text x="42.3260%" y="671.50"></text></g><g><title>native_write_msr (180 samples, 0.07%)</title><rect x="42.0760%" y="645" width="0.0673%" height="15" fill="rgb(237,101,39)" fg:x="112586" fg:w="180"/><text x="42.3260%" y="655.50"></text></g><g><title>finish_task_switch (198 samples, 0.07%)</title><rect x="42.0737%" y="693" width="0.0740%" height="15" fill="rgb(251,117,11)" fg:x="112580" fg:w="198"/><text x="42.3237%" y="703.50"></text></g><g><title>futex_wait_queue_me (226 samples, 0.08%)</title><rect x="42.0689%" y="741" width="0.0845%" height="15" fill="rgb(216,223,23)" fg:x="112567" fg:w="226"/><text x="42.3189%" y="751.50"></text></g><g><title>schedule (223 samples, 0.08%)</title><rect x="42.0700%" y="725" width="0.0833%" height="15" fill="rgb(251,54,12)" fg:x="112570" fg:w="223"/><text x="42.3200%" y="735.50"></text></g><g><title>__schedule (221 samples, 0.08%)</title><rect x="42.0707%" y="709" width="0.0826%" height="15" fill="rgb(254,176,54)" fg:x="112572" fg:w="221"/><text x="42.3207%" y="719.50"></text></g><g><title>futex_wait (232 samples, 0.09%)</title><rect x="42.0677%" y="757" width="0.0867%" height="15" fill="rgb(210,32,8)" fg:x="112564" fg:w="232"/><text x="42.3177%" y="767.50"></text></g><g><title>__x64_sys_futex (244 samples, 0.09%)</title><rect x="42.0666%" y="789" width="0.0912%" height="15" fill="rgb(235,52,38)" fg:x="112561" fg:w="244"/><text x="42.3166%" y="799.50"></text></g><g><title>do_futex (243 samples, 0.09%)</title><rect x="42.0670%" y="773" width="0.0908%" height="15" fill="rgb(231,4,44)" fg:x="112562" fg:w="243"/><text x="42.3170%" y="783.50"></text></g><g><title>finish_task_switch (31 samples, 0.01%)</title><rect x="42.1619%" y="709" width="0.0116%" height="15" fill="rgb(249,2,32)" fg:x="112816" fg:w="31"/><text x="42.4119%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (29 samples, 0.01%)</title><rect x="42.1627%" y="693" width="0.0108%" height="15" fill="rgb(224,65,26)" fg:x="112818" fg:w="29"/><text x="42.4127%" y="703.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.01%)</title><rect x="42.1630%" y="677" width="0.0105%" height="15" fill="rgb(250,73,40)" fg:x="112819" fg:w="28"/><text x="42.4130%" y="687.50"></text></g><g><title>native_write_msr (28 samples, 0.01%)</title><rect x="42.1630%" y="661" width="0.0105%" height="15" fill="rgb(253,177,16)" fg:x="112819" fg:w="28"/><text x="42.4130%" y="671.50"></text></g><g><title>__x64_sys_nanosleep (35 samples, 0.01%)</title><rect x="42.1608%" y="789" width="0.0131%" height="15" fill="rgb(217,32,34)" fg:x="112813" fg:w="35"/><text x="42.4108%" y="799.50"></text></g><g><title>hrtimer_nanosleep (35 samples, 0.01%)</title><rect x="42.1608%" y="773" width="0.0131%" height="15" fill="rgb(212,7,10)" fg:x="112813" fg:w="35"/><text x="42.4108%" y="783.50"></text></g><g><title>do_nanosleep (35 samples, 0.01%)</title><rect x="42.1608%" y="757" width="0.0131%" height="15" fill="rgb(245,89,8)" fg:x="112813" fg:w="35"/><text x="42.4108%" y="767.50"></text></g><g><title>schedule (33 samples, 0.01%)</title><rect x="42.1615%" y="741" width="0.0123%" height="15" fill="rgb(237,16,53)" fg:x="112815" fg:w="33"/><text x="42.4115%" y="751.50"></text></g><g><title>__schedule (33 samples, 0.01%)</title><rect x="42.1615%" y="725" width="0.0123%" height="15" fill="rgb(250,204,30)" fg:x="112815" fg:w="33"/><text x="42.4115%" y="735.50"></text></g><g><title>do_syscall_64 (347 samples, 0.13%)</title><rect x="42.0487%" y="805" width="0.1297%" height="15" fill="rgb(208,77,27)" fg:x="112513" fg:w="347"/><text x="42.2987%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (358 samples, 0.13%)</title><rect x="42.0483%" y="821" width="0.1338%" height="15" fill="rgb(250,204,28)" fg:x="112512" fg:w="358"/><text x="42.2983%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (27 samples, 0.01%)</title><rect x="42.1840%" y="773" width="0.0101%" height="15" fill="rgb(244,63,21)" fg:x="112875" fg:w="27"/><text x="42.4340%" y="783.50"></text></g><g><title>ret_from_fork (29 samples, 0.01%)</title><rect x="42.1836%" y="821" width="0.0108%" height="15" fill="rgb(236,85,44)" fg:x="112874" fg:w="29"/><text x="42.4336%" y="831.50"></text></g><g><title>schedule_tail (28 samples, 0.01%)</title><rect x="42.1840%" y="805" width="0.0105%" height="15" fill="rgb(215,98,4)" fg:x="112875" fg:w="28"/><text x="42.4340%" y="815.50"></text></g><g><title>finish_task_switch (28 samples, 0.01%)</title><rect x="42.1840%" y="789" width="0.0105%" height="15" fill="rgb(235,38,11)" fg:x="112875" fg:w="28"/><text x="42.4340%" y="799.50"></text></g><g><title>[sha256-awvLLqFbyhb_+r5v2nWANEA3U1TAhUgP42HSy_MlAds=] (624 samples, 0.23%)</title><rect x="41.9620%" y="837" width="0.2332%" height="15" fill="rgb(254,186,25)" fg:x="112281" fg:w="624"/><text x="42.2120%" y="847.50"></text></g><g><title>__libc_start_main (44 samples, 0.02%)</title><rect x="42.1955%" y="821" width="0.0164%" height="15" fill="rgb(225,55,31)" fg:x="112906" fg:w="44"/><text x="42.4455%" y="831.50"></text></g><g><title>main (35 samples, 0.01%)</title><rect x="42.1989%" y="805" width="0.0131%" height="15" fill="rgb(211,15,21)" fg:x="112915" fg:w="35"/><text x="42.4489%" y="815.50"></text></g><g><title>blaze::Main (34 samples, 0.01%)</title><rect x="42.1993%" y="789" width="0.0127%" height="15" fill="rgb(215,187,41)" fg:x="112916" fg:w="34"/><text x="42.4493%" y="799.50"></text></g><g><title>_start (60 samples, 0.02%)</title><rect x="42.1955%" y="837" width="0.0224%" height="15" fill="rgb(248,69,32)" fg:x="112906" fg:w="60"/><text x="42.4455%" y="847.50"></text></g><g><title>bazel (712 samples, 0.27%)</title><rect x="41.9601%" y="853" width="0.2661%" height="15" fill="rgb(252,102,52)" fg:x="112276" fg:w="712"/><text x="42.2101%" y="863.50"></text></g><g><title>btrfs_rename2 (58 samples, 0.02%)</title><rect x="42.2553%" y="677" width="0.0217%" height="15" fill="rgb(253,140,32)" fg:x="113066" fg:w="58"/><text x="42.5053%" y="687.50"></text></g><g><title>btrfs_log_new_name (51 samples, 0.02%)</title><rect x="42.2580%" y="661" width="0.0191%" height="15" fill="rgb(216,56,42)" fg:x="113073" fg:w="51"/><text x="42.5080%" y="671.50"></text></g><g><title>btrfs_log_inode_parent (51 samples, 0.02%)</title><rect x="42.2580%" y="645" width="0.0191%" height="15" fill="rgb(216,184,14)" fg:x="113073" fg:w="51"/><text x="42.5080%" y="655.50"></text></g><g><title>btrfs_log_inode (51 samples, 0.02%)</title><rect x="42.2580%" y="629" width="0.0191%" height="15" fill="rgb(237,187,27)" fg:x="113073" fg:w="51"/><text x="42.5080%" y="639.50"></text></g><g><title>RunfilesCreator::CreateRunfiles (74 samples, 0.03%)</title><rect x="42.2497%" y="789" width="0.0277%" height="15" fill="rgb(219,65,3)" fg:x="113051" fg:w="74"/><text x="42.4997%" y="799.50"></text></g><g><title>rename (59 samples, 0.02%)</title><rect x="42.2553%" y="773" width="0.0220%" height="15" fill="rgb(245,83,25)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.02%)</title><rect x="42.2553%" y="757" width="0.0220%" height="15" fill="rgb(214,205,45)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="767.50"></text></g><g><title>do_syscall_64 (59 samples, 0.02%)</title><rect x="42.2553%" y="741" width="0.0220%" height="15" fill="rgb(241,20,18)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="751.50"></text></g><g><title>__x64_sys_rename (59 samples, 0.02%)</title><rect x="42.2553%" y="725" width="0.0220%" height="15" fill="rgb(232,163,23)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="735.50"></text></g><g><title>do_renameat2 (59 samples, 0.02%)</title><rect x="42.2553%" y="709" width="0.0220%" height="15" fill="rgb(214,5,46)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="719.50"></text></g><g><title>vfs_rename (59 samples, 0.02%)</title><rect x="42.2553%" y="693" width="0.0220%" height="15" fill="rgb(229,78,17)" fg:x="113066" fg:w="59"/><text x="42.5053%" y="703.50"></text></g><g><title>__libc_start_main (88 samples, 0.03%)</title><rect x="42.2479%" y="821" width="0.0329%" height="15" fill="rgb(248,89,10)" fg:x="113046" fg:w="88"/><text x="42.4979%" y="831.50"></text></g><g><title>main (84 samples, 0.03%)</title><rect x="42.2494%" y="805" width="0.0314%" height="15" fill="rgb(248,54,15)" fg:x="113050" fg:w="84"/><text x="42.4994%" y="815.50"></text></g><g><title>_dl_map_object_from_fd (36 samples, 0.01%)</title><rect x="42.2852%" y="693" width="0.0135%" height="15" fill="rgb(223,116,6)" fg:x="113146" fg:w="36"/><text x="42.5352%" y="703.50"></text></g><g><title>_dl_catch_exception (49 samples, 0.02%)</title><rect x="42.2823%" y="741" width="0.0183%" height="15" fill="rgb(205,125,38)" fg:x="113138" fg:w="49"/><text x="42.5323%" y="751.50"></text></g><g><title>openaux (48 samples, 0.02%)</title><rect x="42.2826%" y="725" width="0.0179%" height="15" fill="rgb(251,78,38)" fg:x="113139" fg:w="48"/><text x="42.5326%" y="735.50"></text></g><g><title>_dl_map_object (48 samples, 0.02%)</title><rect x="42.2826%" y="709" width="0.0179%" height="15" fill="rgb(253,78,28)" fg:x="113139" fg:w="48"/><text x="42.5326%" y="719.50"></text></g><g><title>_dl_map_object_deps (50 samples, 0.02%)</title><rect x="42.2823%" y="757" width="0.0187%" height="15" fill="rgb(209,120,3)" fg:x="113138" fg:w="50"/><text x="42.5323%" y="767.50"></text></g><g><title>dl_new_hash (35 samples, 0.01%)</title><rect x="42.3237%" y="693" width="0.0131%" height="15" fill="rgb(238,229,9)" fg:x="113249" fg:w="35"/><text x="42.5737%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (98 samples, 0.04%)</title><rect x="42.3219%" y="709" width="0.0366%" height="15" fill="rgb(253,159,18)" fg:x="113244" fg:w="98"/><text x="42.5719%" y="719.50"></text></g><g><title>do_lookup_x (58 samples, 0.02%)</title><rect x="42.3368%" y="693" width="0.0217%" height="15" fill="rgb(244,42,34)" fg:x="113284" fg:w="58"/><text x="42.5868%" y="703.50"></text></g><g><title>elf_machine_rela (132 samples, 0.05%)</title><rect x="42.3107%" y="725" width="0.0493%" height="15" fill="rgb(224,8,7)" fg:x="113214" fg:w="132"/><text x="42.5607%" y="735.50"></text></g><g><title>_dl_relocate_object (158 samples, 0.06%)</title><rect x="42.3032%" y="757" width="0.0590%" height="15" fill="rgb(210,201,45)" fg:x="113194" fg:w="158"/><text x="42.5532%" y="767.50"></text></g><g><title>elf_dynamic_do_Rela (149 samples, 0.06%)</title><rect x="42.3065%" y="741" width="0.0557%" height="15" fill="rgb(252,185,21)" fg:x="113203" fg:w="149"/><text x="42.5565%" y="751.50"></text></g><g><title>[ld-2.31.so] (222 samples, 0.08%)</title><rect x="42.2808%" y="773" width="0.0830%" height="15" fill="rgb(223,131,1)" fg:x="113134" fg:w="222"/><text x="42.5308%" y="783.50"></text></g><g><title>_dl_start_final (225 samples, 0.08%)</title><rect x="42.2808%" y="805" width="0.0841%" height="15" fill="rgb(245,141,16)" fg:x="113134" fg:w="225"/><text x="42.5308%" y="815.50"></text></g><g><title>_dl_sysdep_start (225 samples, 0.08%)</title><rect x="42.2808%" y="789" width="0.0841%" height="15" fill="rgb(229,55,45)" fg:x="113134" fg:w="225"/><text x="42.5308%" y="799.50"></text></g><g><title>_dl_start (229 samples, 0.09%)</title><rect x="42.2808%" y="821" width="0.0856%" height="15" fill="rgb(208,92,15)" fg:x="113134" fg:w="229"/><text x="42.5308%" y="831.50"></text></g><g><title>_start (319 samples, 0.12%)</title><rect x="42.2479%" y="837" width="0.1192%" height="15" fill="rgb(234,185,47)" fg:x="113046" fg:w="319"/><text x="42.4979%" y="847.50"></text></g><g><title>build-runfiles (427 samples, 0.16%)</title><rect x="42.2269%" y="853" width="0.1596%" height="15" fill="rgb(253,104,50)" fg:x="112990" fg:w="427"/><text x="42.4769%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="42.3723%" y="837" width="0.0142%" height="15" fill="rgb(205,70,7)" fg:x="113379" fg:w="38"/><text x="42.6223%" y="847.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="42.3723%" y="821" width="0.0142%" height="15" fill="rgb(240,178,43)" fg:x="113379" fg:w="38"/><text x="42.6223%" y="831.50"></text></g><g><title>__x64_sys_exit_group (29 samples, 0.01%)</title><rect x="42.3757%" y="805" width="0.0108%" height="15" fill="rgb(214,112,2)" fg:x="113388" fg:w="29"/><text x="42.6257%" y="815.50"></text></g><g><title>do_group_exit (29 samples, 0.01%)</title><rect x="42.3757%" y="789" width="0.0108%" height="15" fill="rgb(206,46,17)" fg:x="113388" fg:w="29"/><text x="42.6257%" y="799.50"></text></g><g><title>do_exit (29 samples, 0.01%)</title><rect x="42.3757%" y="773" width="0.0108%" height="15" fill="rgb(225,220,16)" fg:x="113388" fg:w="29"/><text x="42.6257%" y="783.50"></text></g><g><title>_dl_map_object (28 samples, 0.01%)</title><rect x="42.4265%" y="533" width="0.0105%" height="15" fill="rgb(238,65,40)" fg:x="113524" fg:w="28"/><text x="42.6765%" y="543.50"></text></g><g><title>__GI__dl_catch_exception (43 samples, 0.02%)</title><rect x="42.4258%" y="565" width="0.0161%" height="15" fill="rgb(230,151,21)" fg:x="113522" fg:w="43"/><text x="42.6758%" y="575.50"></text></g><g><title>dl_open_worker (43 samples, 0.02%)</title><rect x="42.4258%" y="549" width="0.0161%" height="15" fill="rgb(218,58,49)" fg:x="113522" fg:w="43"/><text x="42.6758%" y="559.50"></text></g><g><title>__GI___nss_lookup (49 samples, 0.02%)</title><rect x="42.4250%" y="709" width="0.0183%" height="15" fill="rgb(219,179,14)" fg:x="113520" fg:w="49"/><text x="42.6750%" y="719.50"></text></g><g><title>__GI___nss_lookup_function (49 samples, 0.02%)</title><rect x="42.4250%" y="693" width="0.0183%" height="15" fill="rgb(223,72,1)" fg:x="113520" fg:w="49"/><text x="42.6750%" y="703.50"></text></g><g><title>nss_load_library (48 samples, 0.02%)</title><rect x="42.4254%" y="677" width="0.0179%" height="15" fill="rgb(238,126,10)" fg:x="113521" fg:w="48"/><text x="42.6754%" y="687.50"></text></g><g><title>__GI___libc_dlopen_mode (47 samples, 0.02%)</title><rect x="42.4258%" y="661" width="0.0176%" height="15" fill="rgb(224,206,38)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="671.50"></text></g><g><title>dlerror_run (47 samples, 0.02%)</title><rect x="42.4258%" y="645" width="0.0176%" height="15" fill="rgb(212,201,54)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="655.50"></text></g><g><title>__GI__dl_catch_error (47 samples, 0.02%)</title><rect x="42.4258%" y="629" width="0.0176%" height="15" fill="rgb(218,154,48)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="639.50"></text></g><g><title>__GI__dl_catch_exception (47 samples, 0.02%)</title><rect x="42.4258%" y="613" width="0.0176%" height="15" fill="rgb(232,93,24)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="623.50"></text></g><g><title>do_dlopen (47 samples, 0.02%)</title><rect x="42.4258%" y="597" width="0.0176%" height="15" fill="rgb(245,30,21)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="607.50"></text></g><g><title>_dl_open (47 samples, 0.02%)</title><rect x="42.4258%" y="581" width="0.0176%" height="15" fill="rgb(242,148,29)" fg:x="113522" fg:w="47"/><text x="42.6758%" y="591.50"></text></g><g><title>getpwuid (100 samples, 0.04%)</title><rect x="42.4250%" y="741" width="0.0374%" height="15" fill="rgb(244,153,54)" fg:x="113520" fg:w="100"/><text x="42.6750%" y="751.50"></text></g><g><title>__getpwuid_r (100 samples, 0.04%)</title><rect x="42.4250%" y="725" width="0.0374%" height="15" fill="rgb(252,87,22)" fg:x="113520" fg:w="100"/><text x="42.6750%" y="735.50"></text></g><g><title>[bash] (117 samples, 0.04%)</title><rect x="42.4205%" y="757" width="0.0437%" height="15" fill="rgb(210,51,29)" fg:x="113508" fg:w="117"/><text x="42.6705%" y="767.50"></text></g><g><title>initialize_shell_variables (145 samples, 0.05%)</title><rect x="42.4202%" y="773" width="0.0542%" height="15" fill="rgb(242,136,47)" fg:x="113507" fg:w="145"/><text x="42.6702%" y="783.50"></text></g><g><title>[bash] (192 samples, 0.07%)</title><rect x="42.4078%" y="789" width="0.0718%" height="15" fill="rgb(238,68,4)" fg:x="113474" fg:w="192"/><text x="42.6578%" y="799.50"></text></g><g><title>bprm_execve (38 samples, 0.01%)</title><rect x="42.5013%" y="581" width="0.0142%" height="15" fill="rgb(242,161,30)" fg:x="113724" fg:w="38"/><text x="42.7513%" y="591.50"></text></g><g><title>do_execveat_common (47 samples, 0.02%)</title><rect x="42.5009%" y="597" width="0.0176%" height="15" fill="rgb(218,58,44)" fg:x="113723" fg:w="47"/><text x="42.7509%" y="607.50"></text></g><g><title>shell_execve (48 samples, 0.02%)</title><rect x="42.5009%" y="677" width="0.0179%" height="15" fill="rgb(252,125,32)" fg:x="113723" fg:w="48"/><text x="42.7509%" y="687.50"></text></g><g><title>__GI_execve (48 samples, 0.02%)</title><rect x="42.5009%" y="661" width="0.0179%" height="15" fill="rgb(219,178,0)" fg:x="113723" fg:w="48"/><text x="42.7509%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (48 samples, 0.02%)</title><rect x="42.5009%" y="645" width="0.0179%" height="15" fill="rgb(213,152,7)" fg:x="113723" fg:w="48"/><text x="42.7509%" y="655.50"></text></g><g><title>do_syscall_64 (48 samples, 0.02%)</title><rect x="42.5009%" y="629" width="0.0179%" height="15" fill="rgb(249,109,34)" fg:x="113723" fg:w="48"/><text x="42.7509%" y="639.50"></text></g><g><title>__x64_sys_execve (48 samples, 0.02%)</title><rect x="42.5009%" y="613" width="0.0179%" height="15" fill="rgb(232,96,21)" fg:x="113723" fg:w="48"/><text x="42.7509%" y="623.50"></text></g><g><title>[bash] (61 samples, 0.02%)</title><rect x="42.4968%" y="709" width="0.0228%" height="15" fill="rgb(228,27,39)" fg:x="113712" fg:w="61"/><text x="42.7468%" y="719.50"></text></g><g><title>exec_builtin (56 samples, 0.02%)</title><rect x="42.4986%" y="693" width="0.0209%" height="15" fill="rgb(211,182,52)" fg:x="113717" fg:w="56"/><text x="42.7486%" y="703.50"></text></g><g><title>execute_command (73 samples, 0.03%)</title><rect x="42.4964%" y="741" width="0.0273%" height="15" fill="rgb(234,178,38)" fg:x="113711" fg:w="73"/><text x="42.7464%" y="751.50"></text></g><g><title>execute_command_internal (73 samples, 0.03%)</title><rect x="42.4964%" y="725" width="0.0273%" height="15" fill="rgb(221,111,3)" fg:x="113711" fg:w="73"/><text x="42.7464%" y="735.50"></text></g><g><title>execute_command (83 samples, 0.03%)</title><rect x="42.4938%" y="773" width="0.0310%" height="15" fill="rgb(228,175,21)" fg:x="113704" fg:w="83"/><text x="42.7438%" y="783.50"></text></g><g><title>execute_command_internal (82 samples, 0.03%)</title><rect x="42.4942%" y="757" width="0.0306%" height="15" fill="rgb(228,174,43)" fg:x="113705" fg:w="82"/><text x="42.7442%" y="767.50"></text></g><g><title>[bash] (31 samples, 0.01%)</title><rect x="42.5297%" y="709" width="0.0116%" height="15" fill="rgb(211,191,0)" fg:x="113800" fg:w="31"/><text x="42.7797%" y="719.50"></text></g><g><title>[bash] (39 samples, 0.01%)</title><rect x="42.5270%" y="725" width="0.0146%" height="15" fill="rgb(253,117,3)" fg:x="113793" fg:w="39"/><text x="42.7770%" y="735.50"></text></g><g><title>reader_loop (130 samples, 0.05%)</title><rect x="42.4934%" y="789" width="0.0486%" height="15" fill="rgb(241,127,19)" fg:x="113703" fg:w="130"/><text x="42.7434%" y="799.50"></text></g><g><title>read_command (46 samples, 0.02%)</title><rect x="42.5248%" y="773" width="0.0172%" height="15" fill="rgb(218,103,12)" fg:x="113787" fg:w="46"/><text x="42.7748%" y="783.50"></text></g><g><title>parse_command (46 samples, 0.02%)</title><rect x="42.5248%" y="757" width="0.0172%" height="15" fill="rgb(236,214,43)" fg:x="113787" fg:w="46"/><text x="42.7748%" y="767.50"></text></g><g><title>yyparse (46 samples, 0.02%)</title><rect x="42.5248%" y="741" width="0.0172%" height="15" fill="rgb(244,144,19)" fg:x="113787" fg:w="46"/><text x="42.7748%" y="751.50"></text></g><g><title>set_default_locale (41 samples, 0.02%)</title><rect x="42.5468%" y="789" width="0.0153%" height="15" fill="rgb(246,188,10)" fg:x="113846" fg:w="41"/><text x="42.7968%" y="799.50"></text></g><g><title>__libc_start_main (424 samples, 0.16%)</title><rect x="42.4071%" y="821" width="0.1585%" height="15" fill="rgb(212,193,33)" fg:x="113472" fg:w="424"/><text x="42.6571%" y="831.50"></text></g><g><title>main (422 samples, 0.16%)</title><rect x="42.4078%" y="805" width="0.1577%" height="15" fill="rgb(241,51,29)" fg:x="113474" fg:w="422"/><text x="42.6578%" y="815.50"></text></g><g><title>do_mmap (32 samples, 0.01%)</title><rect x="42.5790%" y="565" width="0.0120%" height="15" fill="rgb(211,58,19)" fg:x="113932" fg:w="32"/><text x="42.8290%" y="575.50"></text></g><g><title>mmap_region (31 samples, 0.01%)</title><rect x="42.5794%" y="549" width="0.0116%" height="15" fill="rgb(229,111,26)" fg:x="113933" fg:w="31"/><text x="42.8294%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (34 samples, 0.01%)</title><rect x="42.5790%" y="597" width="0.0127%" height="15" fill="rgb(213,115,40)" fg:x="113932" fg:w="34"/><text x="42.8290%" y="607.50"></text></g><g><title>vm_mmap_pgoff (34 samples, 0.01%)</title><rect x="42.5790%" y="581" width="0.0127%" height="15" fill="rgb(209,56,44)" fg:x="113932" fg:w="34"/><text x="42.8290%" y="591.50"></text></g><g><title>_dl_map_segments (44 samples, 0.02%)</title><rect x="42.5764%" y="677" width="0.0164%" height="15" fill="rgb(230,108,32)" fg:x="113925" fg:w="44"/><text x="42.8264%" y="687.50"></text></g><g><title>__mmap64 (39 samples, 0.01%)</title><rect x="42.5782%" y="661" width="0.0146%" height="15" fill="rgb(216,165,31)" fg:x="113930" fg:w="39"/><text x="42.8282%" y="671.50"></text></g><g><title>__mmap64 (39 samples, 0.01%)</title><rect x="42.5782%" y="645" width="0.0146%" height="15" fill="rgb(218,122,21)" fg:x="113930" fg:w="39"/><text x="42.8282%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (37 samples, 0.01%)</title><rect x="42.5790%" y="629" width="0.0138%" height="15" fill="rgb(223,224,47)" fg:x="113932" fg:w="37"/><text x="42.8290%" y="639.50"></text></g><g><title>do_syscall_64 (37 samples, 0.01%)</title><rect x="42.5790%" y="613" width="0.0138%" height="15" fill="rgb(238,102,44)" fg:x="113932" fg:w="37"/><text x="42.8290%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (61 samples, 0.02%)</title><rect x="42.5752%" y="693" width="0.0228%" height="15" fill="rgb(236,46,40)" fg:x="113922" fg:w="61"/><text x="42.8252%" y="703.50"></text></g><g><title>_dl_catch_exception (81 samples, 0.03%)</title><rect x="42.5700%" y="741" width="0.0303%" height="15" fill="rgb(247,202,50)" fg:x="113908" fg:w="81"/><text x="42.8200%" y="751.50"></text></g><g><title>openaux (81 samples, 0.03%)</title><rect x="42.5700%" y="725" width="0.0303%" height="15" fill="rgb(209,99,20)" fg:x="113908" fg:w="81"/><text x="42.8200%" y="735.50"></text></g><g><title>_dl_map_object (81 samples, 0.03%)</title><rect x="42.5700%" y="709" width="0.0303%" height="15" fill="rgb(252,27,34)" fg:x="113908" fg:w="81"/><text x="42.8200%" y="719.50"></text></g><g><title>_dl_map_object_deps (83 samples, 0.03%)</title><rect x="42.5696%" y="757" width="0.0310%" height="15" fill="rgb(215,206,23)" fg:x="113907" fg:w="83"/><text x="42.8196%" y="767.50"></text></g><g><title>_dl_lookup_symbol_x (47 samples, 0.02%)</title><rect x="42.6182%" y="709" width="0.0176%" height="15" fill="rgb(212,135,36)" fg:x="114037" fg:w="47"/><text x="42.8682%" y="719.50"></text></g><g><title>do_lookup_x (37 samples, 0.01%)</title><rect x="42.6220%" y="693" width="0.0138%" height="15" fill="rgb(240,189,1)" fg:x="114047" fg:w="37"/><text x="42.8720%" y="703.50"></text></g><g><title>elf_machine_rela (61 samples, 0.02%)</title><rect x="42.6134%" y="725" width="0.0228%" height="15" fill="rgb(242,56,20)" fg:x="114024" fg:w="61"/><text x="42.8634%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (91 samples, 0.03%)</title><rect x="42.6085%" y="741" width="0.0340%" height="15" fill="rgb(247,132,33)" fg:x="114011" fg:w="91"/><text x="42.8585%" y="751.50"></text></g><g><title>_dl_relocate_object (110 samples, 0.04%)</title><rect x="42.6033%" y="757" width="0.0411%" height="15" fill="rgb(208,149,11)" fg:x="113997" fg:w="110"/><text x="42.8533%" y="767.50"></text></g><g><title>[ld-2.31.so] (226 samples, 0.08%)</title><rect x="42.5667%" y="773" width="0.0845%" height="15" fill="rgb(211,33,11)" fg:x="113899" fg:w="226"/><text x="42.8167%" y="783.50"></text></g><g><title>_dl_start_final (236 samples, 0.09%)</title><rect x="42.5655%" y="805" width="0.0882%" height="15" fill="rgb(221,29,38)" fg:x="113896" fg:w="236"/><text x="42.8155%" y="815.50"></text></g><g><title>_dl_sysdep_start (234 samples, 0.09%)</title><rect x="42.5663%" y="789" width="0.0875%" height="15" fill="rgb(206,182,49)" fg:x="113898" fg:w="234"/><text x="42.8163%" y="799.50"></text></g><g><title>_dl_start (241 samples, 0.09%)</title><rect x="42.5655%" y="821" width="0.0901%" height="15" fill="rgb(216,140,1)" fg:x="113896" fg:w="241"/><text x="42.8155%" y="831.50"></text></g><g><title>_start (670 samples, 0.25%)</title><rect x="42.4067%" y="837" width="0.2504%" height="15" fill="rgb(232,57,40)" fg:x="113471" fg:w="670"/><text x="42.6567%" y="847.50"></text></g><g><title>asm_exc_page_fault (27 samples, 0.01%)</title><rect x="42.6571%" y="837" width="0.0101%" height="15" fill="rgb(224,186,18)" fg:x="114141" fg:w="27"/><text x="42.9071%" y="847.50"></text></g><g><title>mmput (61 samples, 0.02%)</title><rect x="42.6705%" y="725" width="0.0228%" height="15" fill="rgb(215,121,11)" fg:x="114177" fg:w="61"/><text x="42.9205%" y="735.50"></text></g><g><title>exit_mmap (61 samples, 0.02%)</title><rect x="42.6705%" y="709" width="0.0228%" height="15" fill="rgb(245,147,10)" fg:x="114177" fg:w="61"/><text x="42.9205%" y="719.50"></text></g><g><title>unmap_vmas (41 samples, 0.02%)</title><rect x="42.6780%" y="693" width="0.0153%" height="15" fill="rgb(238,153,13)" fg:x="114197" fg:w="41"/><text x="42.9280%" y="703.50"></text></g><g><title>unmap_page_range (40 samples, 0.01%)</title><rect x="42.6784%" y="677" width="0.0149%" height="15" fill="rgb(233,108,0)" fg:x="114198" fg:w="40"/><text x="42.9284%" y="687.50"></text></g><g><title>begin_new_exec (67 samples, 0.03%)</title><rect x="42.6691%" y="741" width="0.0250%" height="15" fill="rgb(212,157,17)" fg:x="114173" fg:w="67"/><text x="42.9191%" y="751.50"></text></g><g><title>cc_wrapper.sh (850 samples, 0.32%)</title><rect x="42.3865%" y="853" width="0.3177%" height="15" fill="rgb(225,213,38)" fg:x="113417" fg:w="850"/><text x="42.6365%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (98 samples, 0.04%)</title><rect x="42.6676%" y="837" width="0.0366%" height="15" fill="rgb(248,16,11)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="847.50"></text></g><g><title>do_syscall_64 (98 samples, 0.04%)</title><rect x="42.6676%" y="821" width="0.0366%" height="15" fill="rgb(241,33,4)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="831.50"></text></g><g><title>__x64_sys_execve (98 samples, 0.04%)</title><rect x="42.6676%" y="805" width="0.0366%" height="15" fill="rgb(222,26,43)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="815.50"></text></g><g><title>do_execveat_common (98 samples, 0.04%)</title><rect x="42.6676%" y="789" width="0.0366%" height="15" fill="rgb(243,29,36)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="799.50"></text></g><g><title>bprm_execve (98 samples, 0.04%)</title><rect x="42.6676%" y="773" width="0.0366%" height="15" fill="rgb(241,9,27)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="783.50"></text></g><g><title>load_elf_binary (98 samples, 0.04%)</title><rect x="42.6676%" y="757" width="0.0366%" height="15" fill="rgb(205,117,26)" fg:x="114169" fg:w="98"/><text x="42.9176%" y="767.50"></text></g><g><title>[[heap]] (330 samples, 0.12%)</title><rect x="42.7042%" y="837" width="0.1233%" height="15" fill="rgb(209,80,39)" fg:x="114267" fg:w="330"/><text x="42.9542%" y="847.50"></text></g><g><title>[[stack]] (163 samples, 0.06%)</title><rect x="42.8275%" y="837" width="0.0609%" height="15" fill="rgb(239,155,6)" fg:x="114597" fg:w="163"/><text x="43.0775%" y="847.50"></text></g><g><title>[anon] (61 samples, 0.02%)</title><rect x="42.8929%" y="837" width="0.0228%" height="15" fill="rgb(212,104,12)" fg:x="114772" fg:w="61"/><text x="43.1429%" y="847.50"></text></g><g><title>clang::Parser::ParseDeclGroup (32 samples, 0.01%)</title><rect x="42.9497%" y="597" width="0.0120%" height="15" fill="rgb(234,204,3)" fg:x="114924" fg:w="32"/><text x="43.1997%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclaration (35 samples, 0.01%)</title><rect x="42.9497%" y="629" width="0.0131%" height="15" fill="rgb(251,218,7)" fg:x="114924" fg:w="35"/><text x="43.1997%" y="639.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (35 samples, 0.01%)</title><rect x="42.9497%" y="613" width="0.0131%" height="15" fill="rgb(221,81,32)" fg:x="114924" fg:w="35"/><text x="43.1997%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (52 samples, 0.02%)</title><rect x="42.9493%" y="725" width="0.0194%" height="15" fill="rgb(214,152,26)" fg:x="114923" fg:w="52"/><text x="43.1993%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (52 samples, 0.02%)</title><rect x="42.9493%" y="709" width="0.0194%" height="15" fill="rgb(223,22,3)" fg:x="114923" fg:w="52"/><text x="43.1993%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (52 samples, 0.02%)</title><rect x="42.9493%" y="693" width="0.0194%" height="15" fill="rgb(207,174,7)" fg:x="114923" fg:w="52"/><text x="43.1993%" y="703.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (52 samples, 0.02%)</title><rect x="42.9493%" y="677" width="0.0194%" height="15" fill="rgb(224,19,52)" fg:x="114923" fg:w="52"/><text x="43.1993%" y="687.50"></text></g><g><title>clang::Parser::ParseLinkage (51 samples, 0.02%)</title><rect x="42.9497%" y="661" width="0.0191%" height="15" fill="rgb(228,24,14)" fg:x="114924" fg:w="51"/><text x="43.1997%" y="671.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (51 samples, 0.02%)</title><rect x="42.9497%" y="645" width="0.0191%" height="15" fill="rgb(230,153,43)" fg:x="114924" fg:w="51"/><text x="43.1997%" y="655.50"></text></g><g><title>ExecuteCC1Tool (57 samples, 0.02%)</title><rect x="42.9479%" y="821" width="0.0213%" height="15" fill="rgb(231,106,12)" fg:x="114919" fg:w="57"/><text x="43.1979%" y="831.50"></text></g><g><title>cc1_main (57 samples, 0.02%)</title><rect x="42.9479%" y="805" width="0.0213%" height="15" fill="rgb(215,92,2)" fg:x="114919" fg:w="57"/><text x="43.1979%" y="815.50"></text></g><g><title>clang::ExecuteCompilerInvocation (56 samples, 0.02%)</title><rect x="42.9482%" y="789" width="0.0209%" height="15" fill="rgb(249,143,25)" fg:x="114920" fg:w="56"/><text x="43.1982%" y="799.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (56 samples, 0.02%)</title><rect x="42.9482%" y="773" width="0.0209%" height="15" fill="rgb(252,7,35)" fg:x="114920" fg:w="56"/><text x="43.1982%" y="783.50"></text></g><g><title>clang::FrontendAction::Execute (56 samples, 0.02%)</title><rect x="42.9482%" y="757" width="0.0209%" height="15" fill="rgb(216,69,40)" fg:x="114920" fg:w="56"/><text x="43.1982%" y="767.50"></text></g><g><title>clang::ParseAST (56 samples, 0.02%)</title><rect x="42.9482%" y="741" width="0.0209%" height="15" fill="rgb(240,36,33)" fg:x="114920" fg:w="56"/><text x="43.1982%" y="751.50"></text></g><g><title>llvm::opt::OptTable::ParseArgs (28 samples, 0.01%)</title><rect x="43.0088%" y="773" width="0.0105%" height="15" fill="rgb(231,128,14)" fg:x="115082" fg:w="28"/><text x="43.2588%" y="783.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (53 samples, 0.02%)</title><rect x="43.0009%" y="805" width="0.0198%" height="15" fill="rgb(245,143,14)" fg:x="115061" fg:w="53"/><text x="43.2509%" y="815.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (53 samples, 0.02%)</title><rect x="43.0009%" y="789" width="0.0198%" height="15" fill="rgb(222,130,28)" fg:x="115061" fg:w="53"/><text x="43.2509%" y="799.50"></text></g><g><title>llvm::TargetPassConfig::addPass (28 samples, 0.01%)</title><rect x="43.0387%" y="677" width="0.0105%" height="15" fill="rgb(212,10,48)" fg:x="115162" fg:w="28"/><text x="43.2887%" y="687.50"></text></g><g><title>llvm::TargetPassConfig::addMachinePasses (39 samples, 0.01%)</title><rect x="43.0368%" y="693" width="0.0146%" height="15" fill="rgb(254,118,45)" fg:x="115157" fg:w="39"/><text x="43.2868%" y="703.50"></text></g><g><title>llvm::LLVMTargetMachine::addPassesToEmitFile (100 samples, 0.04%)</title><rect x="43.0271%" y="709" width="0.0374%" height="15" fill="rgb(228,6,45)" fg:x="115131" fg:w="100"/><text x="43.2771%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::createPassConfig (35 samples, 0.01%)</title><rect x="43.0514%" y="693" width="0.0131%" height="15" fill="rgb(241,18,35)" fg:x="115196" fg:w="35"/><text x="43.3014%" y="703.50"></text></g><g><title>llvm::TargetPassConfig::TargetPassConfig (35 samples, 0.01%)</title><rect x="43.0514%" y="677" width="0.0131%" height="15" fill="rgb(227,214,53)" fg:x="115196" fg:w="35"/><text x="43.3014%" y="687.50"></text></g><g><title>llvm::initializeCodeGen (35 samples, 0.01%)</title><rect x="43.0514%" y="661" width="0.0131%" height="15" fill="rgb(224,107,51)" fg:x="115196" fg:w="35"/><text x="43.3014%" y="671.50"></text></g><g><title>llvm::MCObjectFileInfo::initMCObjectFileInfo (37 samples, 0.01%)</title><rect x="43.0820%" y="629" width="0.0138%" height="15" fill="rgb(248,60,28)" fg:x="115278" fg:w="37"/><text x="43.3320%" y="639.50"></text></g><g><title>llvm::MCObjectFileInfo::initELFMCObjectFileInfo (37 samples, 0.01%)</title><rect x="43.0820%" y="613" width="0.0138%" height="15" fill="rgb(249,101,23)" fg:x="115278" fg:w="37"/><text x="43.3320%" y="623.50"></text></g><g><title>llvm::MCContext::getELFSection (37 samples, 0.01%)</title><rect x="43.0820%" y="597" width="0.0138%" height="15" fill="rgb(228,51,19)" fg:x="115278" fg:w="37"/><text x="43.3320%" y="607.50"></text></g><g><title>llvm::MCContext::getELFSection (37 samples, 0.01%)</title><rect x="43.0820%" y="581" width="0.0138%" height="15" fill="rgb(213,20,6)" fg:x="115278" fg:w="37"/><text x="43.3320%" y="591.50"></text></g><g><title>llvm::TargetLoweringObjectFileELF::Initialize (38 samples, 0.01%)</title><rect x="43.0820%" y="661" width="0.0142%" height="15" fill="rgb(212,124,10)" fg:x="115278" fg:w="38"/><text x="43.3320%" y="671.50"></text></g><g><title>llvm::TargetLoweringObjectFile::Initialize (38 samples, 0.01%)</title><rect x="43.0820%" y="645" width="0.0142%" height="15" fill="rgb(248,3,40)" fg:x="115278" fg:w="38"/><text x="43.3320%" y="655.50"></text></g><g><title>llvm::AsmPrinter::doInitialization (44 samples, 0.02%)</title><rect x="43.0805%" y="677" width="0.0164%" height="15" fill="rgb(223,178,23)" fg:x="115274" fg:w="44"/><text x="43.3305%" y="687.50"></text></g><g><title>llvm::FPPassManager::doInitialization (45 samples, 0.02%)</title><rect x="43.0805%" y="693" width="0.0168%" height="15" fill="rgb(240,132,45)" fg:x="115274" fg:w="45"/><text x="43.3305%" y="703.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (95 samples, 0.04%)</title><rect x="43.0753%" y="709" width="0.0355%" height="15" fill="rgb(245,164,36)" fg:x="115260" fg:w="95"/><text x="43.3253%" y="719.50"></text></g><g><title>llvm::FPPassManager::runOnModule (36 samples, 0.01%)</title><rect x="43.0973%" y="693" width="0.0135%" height="15" fill="rgb(231,188,53)" fg:x="115319" fg:w="36"/><text x="43.3473%" y="703.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (36 samples, 0.01%)</title><rect x="43.0973%" y="677" width="0.0135%" height="15" fill="rgb(237,198,39)" fg:x="115319" fg:w="36"/><text x="43.3473%" y="687.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (227 samples, 0.08%)</title><rect x="43.0263%" y="741" width="0.0848%" height="15" fill="rgb(223,120,35)" fg:x="115129" fg:w="227"/><text x="43.2763%" y="751.50"></text></g><g><title>clang::EmitBackendOutput (227 samples, 0.08%)</title><rect x="43.0263%" y="725" width="0.0848%" height="15" fill="rgb(253,107,49)" fg:x="115129" fg:w="227"/><text x="43.2763%" y="735.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (52 samples, 0.02%)</title><rect x="43.1186%" y="501" width="0.0194%" height="15" fill="rgb(216,44,31)" fg:x="115376" fg:w="52"/><text x="43.3686%" y="511.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (34 samples, 0.01%)</title><rect x="43.1433%" y="501" width="0.0127%" height="15" fill="rgb(253,87,21)" fg:x="115442" fg:w="34"/><text x="43.3933%" y="511.50"></text></g><g><title>clang::Lexer::LexTokenInternal (34 samples, 0.01%)</title><rect x="43.1571%" y="469" width="0.0127%" height="15" fill="rgb(226,18,2)" fg:x="115479" fg:w="34"/><text x="43.4071%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleIfdefDirective (43 samples, 0.02%)</title><rect x="43.1560%" y="501" width="0.0161%" height="15" fill="rgb(216,8,46)" fg:x="115476" fg:w="43"/><text x="43.4060%" y="511.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (42 samples, 0.02%)</title><rect x="43.1564%" y="485" width="0.0157%" height="15" fill="rgb(226,140,39)" fg:x="115477" fg:w="42"/><text x="43.4064%" y="495.50"></text></g><g><title>clang::Preprocessor::HandleDirective (163 samples, 0.06%)</title><rect x="43.1186%" y="517" width="0.0609%" height="15" fill="rgb(221,194,54)" fg:x="115376" fg:w="163"/><text x="43.3686%" y="527.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (172 samples, 0.06%)</title><rect x="43.1157%" y="597" width="0.0643%" height="15" fill="rgb(213,92,11)" fg:x="115368" fg:w="172"/><text x="43.3657%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (172 samples, 0.06%)</title><rect x="43.1157%" y="581" width="0.0643%" height="15" fill="rgb(229,162,46)" fg:x="115368" fg:w="172"/><text x="43.3657%" y="591.50"></text></g><g><title>clang::Preprocessor::CachingLex (171 samples, 0.06%)</title><rect x="43.1160%" y="565" width="0.0639%" height="15" fill="rgb(214,111,36)" fg:x="115369" fg:w="171"/><text x="43.3660%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (171 samples, 0.06%)</title><rect x="43.1160%" y="549" width="0.0639%" height="15" fill="rgb(207,6,21)" fg:x="115369" fg:w="171"/><text x="43.3660%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (171 samples, 0.06%)</title><rect x="43.1160%" y="533" width="0.0639%" height="15" fill="rgb(213,127,38)" fg:x="115369" fg:w="171"/><text x="43.3660%" y="543.50"></text></g><g><title>clang::Sema::ActOnDeclarator (30 samples, 0.01%)</title><rect x="43.1799%" y="581" width="0.0112%" height="15" fill="rgb(238,118,32)" fg:x="115540" fg:w="30"/><text x="43.4299%" y="591.50"></text></g><g><title>clang::Sema::HandleDeclarator (30 samples, 0.01%)</title><rect x="43.1799%" y="565" width="0.0112%" height="15" fill="rgb(240,139,39)" fg:x="115540" fg:w="30"/><text x="43.4299%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (31 samples, 0.01%)</title><rect x="43.1799%" y="597" width="0.0116%" height="15" fill="rgb(235,10,37)" fg:x="115540" fg:w="31"/><text x="43.4299%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclGroup (210 samples, 0.08%)</title><rect x="43.1157%" y="613" width="0.0785%" height="15" fill="rgb(249,171,38)" fg:x="115368" fg:w="210"/><text x="43.3657%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaration (222 samples, 0.08%)</title><rect x="43.1157%" y="645" width="0.0830%" height="15" fill="rgb(242,144,32)" fg:x="115368" fg:w="222"/><text x="43.3657%" y="655.50"></text></g><g><title>clang::Parser::ParseSimpleDeclaration (222 samples, 0.08%)</title><rect x="43.1157%" y="629" width="0.0830%" height="15" fill="rgb(217,117,21)" fg:x="115368" fg:w="222"/><text x="43.3657%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleDirective (27 samples, 0.01%)</title><rect x="43.1997%" y="549" width="0.0101%" height="15" fill="rgb(249,87,1)" fg:x="115593" fg:w="27"/><text x="43.4497%" y="559.50"></text></g><g><title>clang::Lexer::LexTokenInternal (32 samples, 0.01%)</title><rect x="43.1986%" y="565" width="0.0120%" height="15" fill="rgb(248,196,48)" fg:x="115590" fg:w="32"/><text x="43.4486%" y="575.50"></text></g><g><title>clang::Parser::ExpectAndConsumeSemi (36 samples, 0.01%)</title><rect x="43.1986%" y="597" width="0.0135%" height="15" fill="rgb(251,206,33)" fg:x="115590" fg:w="36"/><text x="43.4486%" y="607.50"></text></g><g><title>clang::Preprocessor::Lex (36 samples, 0.01%)</title><rect x="43.1986%" y="581" width="0.0135%" height="15" fill="rgb(232,141,28)" fg:x="115590" fg:w="36"/><text x="43.4486%" y="591.50"></text></g><g><title>clang::Sema::ActOnDeclarator (41 samples, 0.02%)</title><rect x="43.2195%" y="581" width="0.0153%" height="15" fill="rgb(209,167,14)" fg:x="115646" fg:w="41"/><text x="43.4695%" y="591.50"></text></g><g><title>clang::Sema::HandleDeclarator (41 samples, 0.02%)</title><rect x="43.2195%" y="565" width="0.0153%" height="15" fill="rgb(225,11,50)" fg:x="115646" fg:w="41"/><text x="43.4695%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (43 samples, 0.02%)</title><rect x="43.2195%" y="597" width="0.0161%" height="15" fill="rgb(209,50,20)" fg:x="115646" fg:w="43"/><text x="43.4695%" y="607.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (30 samples, 0.01%)</title><rect x="43.2386%" y="581" width="0.0112%" height="15" fill="rgb(212,17,46)" fg:x="115697" fg:w="30"/><text x="43.4886%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclGroup (142 samples, 0.05%)</title><rect x="43.1986%" y="613" width="0.0531%" height="15" fill="rgb(216,101,39)" fg:x="115590" fg:w="142"/><text x="43.4486%" y="623.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (43 samples, 0.02%)</title><rect x="43.2356%" y="597" width="0.0161%" height="15" fill="rgb(212,228,48)" fg:x="115689" fg:w="43"/><text x="43.4856%" y="607.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (408 samples, 0.15%)</title><rect x="43.1157%" y="661" width="0.1525%" height="15" fill="rgb(250,6,50)" fg:x="115368" fg:w="408"/><text x="43.3657%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (186 samples, 0.07%)</title><rect x="43.1986%" y="645" width="0.0695%" height="15" fill="rgb(250,160,48)" fg:x="115590" fg:w="186"/><text x="43.4486%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (186 samples, 0.07%)</title><rect x="43.1986%" y="629" width="0.0695%" height="15" fill="rgb(244,216,33)" fg:x="115590" fg:w="186"/><text x="43.4486%" y="639.50"></text></g><g><title>clang::Parser::ParseLinkage (34 samples, 0.01%)</title><rect x="43.2554%" y="613" width="0.0127%" height="15" fill="rgb(207,157,5)" fg:x="115742" fg:w="34"/><text x="43.5054%" y="623.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (34 samples, 0.01%)</title><rect x="43.2554%" y="597" width="0.0127%" height="15" fill="rgb(228,199,8)" fg:x="115742" fg:w="34"/><text x="43.5054%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (34 samples, 0.01%)</title><rect x="43.2554%" y="581" width="0.0127%" height="15" fill="rgb(227,80,20)" fg:x="115742" fg:w="34"/><text x="43.5054%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (34 samples, 0.01%)</title><rect x="43.2554%" y="565" width="0.0127%" height="15" fill="rgb(222,9,33)" fg:x="115742" fg:w="34"/><text x="43.5054%" y="575.50"></text></g><g><title>clang::Parser::ParseDeclGroup (34 samples, 0.01%)</title><rect x="43.2554%" y="549" width="0.0127%" height="15" fill="rgb(239,44,28)" fg:x="115742" fg:w="34"/><text x="43.5054%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (421 samples, 0.16%)</title><rect x="43.1130%" y="741" width="0.1573%" height="15" fill="rgb(249,187,43)" fg:x="115361" fg:w="421"/><text x="43.3630%" y="751.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (421 samples, 0.16%)</title><rect x="43.1130%" y="725" width="0.1573%" height="15" fill="rgb(216,141,28)" fg:x="115361" fg:w="421"/><text x="43.3630%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (421 samples, 0.16%)</title><rect x="43.1130%" y="709" width="0.1573%" height="15" fill="rgb(230,154,53)" fg:x="115361" fg:w="421"/><text x="43.3630%" y="719.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (421 samples, 0.16%)</title><rect x="43.1130%" y="693" width="0.1573%" height="15" fill="rgb(227,82,4)" fg:x="115361" fg:w="421"/><text x="43.3630%" y="703.50"></text></g><g><title>clang::Parser::ParseLinkage (415 samples, 0.16%)</title><rect x="43.1153%" y="677" width="0.1551%" height="15" fill="rgb(220,107,16)" fg:x="115367" fg:w="415"/><text x="43.3653%" y="687.50"></text></g><g><title>cc1_main (727 samples, 0.27%)</title><rect x="43.0009%" y="821" width="0.2717%" height="15" fill="rgb(207,187,2)" fg:x="115061" fg:w="727"/><text x="43.2509%" y="831.50"></text></g><g><title>clang::ExecuteCompilerInvocation (674 samples, 0.25%)</title><rect x="43.0207%" y="805" width="0.2519%" height="15" fill="rgb(210,162,52)" fg:x="115114" fg:w="674"/><text x="43.2707%" y="815.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (674 samples, 0.25%)</title><rect x="43.0207%" y="789" width="0.2519%" height="15" fill="rgb(217,216,49)" fg:x="115114" fg:w="674"/><text x="43.2707%" y="799.50"></text></g><g><title>clang::FrontendAction::Execute (670 samples, 0.25%)</title><rect x="43.0222%" y="773" width="0.2504%" height="15" fill="rgb(218,146,49)" fg:x="115118" fg:w="670"/><text x="43.2722%" y="783.50"></text></g><g><title>clang::ParseAST (670 samples, 0.25%)</title><rect x="43.0222%" y="757" width="0.2504%" height="15" fill="rgb(216,55,40)" fg:x="115118" fg:w="670"/><text x="43.2722%" y="767.50"></text></g><g><title>llvm::LegacyLegalizerInfo::computeTables (31 samples, 0.01%)</title><rect x="43.2958%" y="693" width="0.0116%" height="15" fill="rgb(208,196,21)" fg:x="115850" fg:w="31"/><text x="43.5458%" y="703.50"></text></g><g><title>llvm::X86LegalizerInfo::X86LegalizerInfo (42 samples, 0.02%)</title><rect x="43.2943%" y="709" width="0.0157%" height="15" fill="rgb(242,117,42)" fg:x="115846" fg:w="42"/><text x="43.5443%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (46 samples, 0.02%)</title><rect x="43.2935%" y="741" width="0.0172%" height="15" fill="rgb(210,11,23)" fg:x="115844" fg:w="46"/><text x="43.5435%" y="751.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (46 samples, 0.02%)</title><rect x="43.2935%" y="725" width="0.0172%" height="15" fill="rgb(217,110,2)" fg:x="115844" fg:w="46"/><text x="43.5435%" y="735.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (92 samples, 0.03%)</title><rect x="43.2767%" y="821" width="0.0344%" height="15" fill="rgb(229,77,54)" fg:x="115799" fg:w="92"/><text x="43.5267%" y="831.50"></text></g><g><title>clang::EmitBackendOutput (90 samples, 0.03%)</title><rect x="43.2775%" y="805" width="0.0336%" height="15" fill="rgb(218,53,16)" fg:x="115801" fg:w="90"/><text x="43.5275%" y="815.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (90 samples, 0.03%)</title><rect x="43.2775%" y="789" width="0.0336%" height="15" fill="rgb(215,38,13)" fg:x="115801" fg:w="90"/><text x="43.5275%" y="799.50"></text></g><g><title>llvm::FPPassManager::runOnModule (65 samples, 0.02%)</title><rect x="43.2868%" y="773" width="0.0243%" height="15" fill="rgb(235,42,18)" fg:x="115826" fg:w="65"/><text x="43.5368%" y="783.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (65 samples, 0.02%)</title><rect x="43.2868%" y="757" width="0.0243%" height="15" fill="rgb(219,66,54)" fg:x="115826" fg:w="65"/><text x="43.5368%" y="767.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitTopLevelDecl (35 samples, 0.01%)</title><rect x="43.3219%" y="821" width="0.0131%" height="15" fill="rgb(222,205,4)" fg:x="115920" fg:w="35"/><text x="43.5719%" y="831.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalDefinition (35 samples, 0.01%)</title><rect x="43.3219%" y="805" width="0.0131%" height="15" fill="rgb(227,213,46)" fg:x="115920" fg:w="35"/><text x="43.5719%" y="815.50"></text></g><g><title>clang::CodeGen::CodeGenModule::EmitGlobalFunctionDefinition (35 samples, 0.01%)</title><rect x="43.3219%" y="789" width="0.0131%" height="15" fill="rgb(250,145,42)" fg:x="115920" fg:w="35"/><text x="43.5719%" y="799.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (44 samples, 0.02%)</title><rect x="43.3406%" y="661" width="0.0164%" height="15" fill="rgb(219,15,2)" fg:x="115970" fg:w="44"/><text x="43.5906%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (59 samples, 0.02%)</title><rect x="43.3358%" y="773" width="0.0220%" height="15" fill="rgb(231,181,52)" fg:x="115957" fg:w="59"/><text x="43.5858%" y="783.50"></text></g><g><title>clang::EmitBackendOutput (59 samples, 0.02%)</title><rect x="43.3358%" y="757" width="0.0220%" height="15" fill="rgb(235,1,42)" fg:x="115957" fg:w="59"/><text x="43.5858%" y="767.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (58 samples, 0.02%)</title><rect x="43.3361%" y="741" width="0.0217%" height="15" fill="rgb(249,88,27)" fg:x="115958" fg:w="58"/><text x="43.5861%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnModule (58 samples, 0.02%)</title><rect x="43.3361%" y="725" width="0.0217%" height="15" fill="rgb(235,145,16)" fg:x="115958" fg:w="58"/><text x="43.5861%" y="735.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (58 samples, 0.02%)</title><rect x="43.3361%" y="709" width="0.0217%" height="15" fill="rgb(237,114,19)" fg:x="115958" fg:w="58"/><text x="43.5861%" y="719.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (52 samples, 0.02%)</title><rect x="43.3384%" y="693" width="0.0194%" height="15" fill="rgb(238,51,50)" fg:x="115964" fg:w="52"/><text x="43.5884%" y="703.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (52 samples, 0.02%)</title><rect x="43.3384%" y="677" width="0.0194%" height="15" fill="rgb(205,194,25)" fg:x="115964" fg:w="52"/><text x="43.5884%" y="687.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (68 samples, 0.03%)</title><rect x="43.3358%" y="821" width="0.0254%" height="15" fill="rgb(215,203,17)" fg:x="115957" fg:w="68"/><text x="43.5858%" y="831.50"></text></g><g><title>clang::FrontendAction::Execute (68 samples, 0.03%)</title><rect x="43.3358%" y="805" width="0.0254%" height="15" fill="rgb(233,112,49)" fg:x="115957" fg:w="68"/><text x="43.5858%" y="815.50"></text></g><g><title>clang::ParseAST (68 samples, 0.03%)</title><rect x="43.3358%" y="789" width="0.0254%" height="15" fill="rgb(241,130,26)" fg:x="115957" fg:w="68"/><text x="43.5858%" y="799.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgs (33 samples, 0.01%)</title><rect x="43.3612%" y="821" width="0.0123%" height="15" fill="rgb(252,223,19)" fg:x="116025" fg:w="33"/><text x="43.6112%" y="831.50"></text></g><g><title>clang::CompilerInvocation::CreateFromArgsImpl (33 samples, 0.01%)</title><rect x="43.3612%" y="805" width="0.0123%" height="15" fill="rgb(211,95,25)" fg:x="116025" fg:w="33"/><text x="43.6112%" y="815.50"></text></g><g><title>__GI___readlink (39 samples, 0.01%)</title><rect x="43.3814%" y="709" width="0.0146%" height="15" fill="rgb(251,182,27)" fg:x="116079" fg:w="39"/><text x="43.6314%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (39 samples, 0.01%)</title><rect x="43.3814%" y="693" width="0.0146%" height="15" fill="rgb(238,24,4)" fg:x="116079" fg:w="39"/><text x="43.6314%" y="703.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="43.3814%" y="677" width="0.0146%" height="15" fill="rgb(224,220,25)" fg:x="116079" fg:w="39"/><text x="43.6314%" y="687.50"></text></g><g><title>__x64_sys_readlink (39 samples, 0.01%)</title><rect x="43.3814%" y="661" width="0.0146%" height="15" fill="rgb(239,133,26)" fg:x="116079" fg:w="39"/><text x="43.6314%" y="671.50"></text></g><g><title>do_readlinkat (39 samples, 0.01%)</title><rect x="43.3814%" y="645" width="0.0146%" height="15" fill="rgb(211,94,48)" fg:x="116079" fg:w="39"/><text x="43.6314%" y="655.50"></text></g><g><title>link_path_walk.part.0 (37 samples, 0.01%)</title><rect x="43.4098%" y="581" width="0.0138%" height="15" fill="rgb(239,87,6)" fg:x="116155" fg:w="37"/><text x="43.6598%" y="591.50"></text></g><g><title>do_filp_open (62 samples, 0.02%)</title><rect x="43.4016%" y="613" width="0.0232%" height="15" fill="rgb(227,62,0)" fg:x="116133" fg:w="62"/><text x="43.6516%" y="623.50"></text></g><g><title>path_openat (61 samples, 0.02%)</title><rect x="43.4019%" y="597" width="0.0228%" height="15" fill="rgb(211,226,4)" fg:x="116134" fg:w="61"/><text x="43.6519%" y="607.50"></text></g><g><title>do_syscall_64 (76 samples, 0.03%)</title><rect x="43.3997%" y="661" width="0.0284%" height="15" fill="rgb(253,38,52)" fg:x="116128" fg:w="76"/><text x="43.6497%" y="671.50"></text></g><g><title>__x64_sys_openat (76 samples, 0.03%)</title><rect x="43.3997%" y="645" width="0.0284%" height="15" fill="rgb(229,126,40)" fg:x="116128" fg:w="76"/><text x="43.6497%" y="655.50"></text></g><g><title>do_sys_openat2 (76 samples, 0.03%)</title><rect x="43.3997%" y="629" width="0.0284%" height="15" fill="rgb(229,165,44)" fg:x="116128" fg:w="76"/><text x="43.6497%" y="639.50"></text></g><g><title>__libc_open64 (78 samples, 0.03%)</title><rect x="43.3993%" y="693" width="0.0292%" height="15" fill="rgb(247,95,47)" fg:x="116127" fg:w="78"/><text x="43.6493%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (77 samples, 0.03%)</title><rect x="43.3997%" y="677" width="0.0288%" height="15" fill="rgb(216,140,30)" fg:x="116128" fg:w="77"/><text x="43.6497%" y="687.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (128 samples, 0.05%)</title><rect x="43.3810%" y="821" width="0.0478%" height="15" fill="rgb(246,214,8)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="831.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (128 samples, 0.05%)</title><rect x="43.3810%" y="805" width="0.0478%" height="15" fill="rgb(227,224,15)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="815.50"></text></g><g><title>clang::FileManager::getFileRef (128 samples, 0.05%)</title><rect x="43.3810%" y="789" width="0.0478%" height="15" fill="rgb(233,175,4)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="799.50"></text></g><g><title>clang::FileManager::getStatValue (128 samples, 0.05%)</title><rect x="43.3810%" y="773" width="0.0478%" height="15" fill="rgb(221,66,45)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="783.50"></text></g><g><title>clang::FileSystemStatCache::get (128 samples, 0.05%)</title><rect x="43.3810%" y="757" width="0.0478%" height="15" fill="rgb(221,178,18)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="767.50"></text></g><g><title>llvm::sys::fs::openNativeFileForRead (128 samples, 0.05%)</title><rect x="43.3810%" y="741" width="0.0478%" height="15" fill="rgb(213,81,29)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="751.50"></text></g><g><title>llvm::sys::fs::openFileForRead (128 samples, 0.05%)</title><rect x="43.3810%" y="725" width="0.0478%" height="15" fill="rgb(220,89,49)" fg:x="116078" fg:w="128"/><text x="43.6310%" y="735.50"></text></g><g><title>llvm::sys::fs::openFile (80 samples, 0.03%)</title><rect x="43.3989%" y="709" width="0.0299%" height="15" fill="rgb(227,60,33)" fg:x="116126" fg:w="80"/><text x="43.6489%" y="719.50"></text></g><g><title>llvm::TargetLoweringBase::computeRegisterProperties (36 samples, 0.01%)</title><rect x="43.4449%" y="661" width="0.0135%" height="15" fill="rgb(205,113,12)" fg:x="116249" fg:w="36"/><text x="43.6949%" y="671.50"></text></g><g><title>clang::BackendConsumer::HandleTranslationUnit (44 samples, 0.02%)</title><rect x="43.4427%" y="789" width="0.0164%" height="15" fill="rgb(211,32,1)" fg:x="116243" fg:w="44"/><text x="43.6927%" y="799.50"></text></g><g><title>clang::EmitBackendOutput (44 samples, 0.02%)</title><rect x="43.4427%" y="773" width="0.0164%" height="15" fill="rgb(246,2,12)" fg:x="116243" fg:w="44"/><text x="43.6927%" y="783.50"></text></g><g><title>llvm::legacy::PassManagerImpl::run (44 samples, 0.02%)</title><rect x="43.4427%" y="757" width="0.0164%" height="15" fill="rgb(243,37,27)" fg:x="116243" fg:w="44"/><text x="43.6927%" y="767.50"></text></g><g><title>llvm::FPPassManager::runOnModule (42 samples, 0.02%)</title><rect x="43.4434%" y="741" width="0.0157%" height="15" fill="rgb(248,211,31)" fg:x="116245" fg:w="42"/><text x="43.6934%" y="751.50"></text></g><g><title>llvm::FPPassManager::runOnFunction (42 samples, 0.02%)</title><rect x="43.4434%" y="725" width="0.0157%" height="15" fill="rgb(242,146,47)" fg:x="116245" fg:w="42"/><text x="43.6934%" y="735.50"></text></g><g><title>llvm::X86TargetMachine::getSubtargetImpl (40 samples, 0.01%)</title><rect x="43.4442%" y="709" width="0.0149%" height="15" fill="rgb(206,70,20)" fg:x="116247" fg:w="40"/><text x="43.6942%" y="719.50"></text></g><g><title>llvm::X86Subtarget::X86Subtarget (39 samples, 0.01%)</title><rect x="43.4445%" y="693" width="0.0146%" height="15" fill="rgb(215,10,51)" fg:x="116248" fg:w="39"/><text x="43.6945%" y="703.50"></text></g><g><title>llvm::X86TargetLowering::X86TargetLowering (38 samples, 0.01%)</title><rect x="43.4449%" y="677" width="0.0142%" height="15" fill="rgb(243,178,53)" fg:x="116249" fg:w="38"/><text x="43.6949%" y="687.50"></text></g><g><title>clang::FrontendAction::Execute (51 samples, 0.02%)</title><rect x="43.4427%" y="821" width="0.0191%" height="15" fill="rgb(233,221,20)" fg:x="116243" fg:w="51"/><text x="43.6927%" y="831.50"></text></g><g><title>clang::ParseAST (51 samples, 0.02%)</title><rect x="43.4427%" y="805" width="0.0191%" height="15" fill="rgb(218,95,35)" fg:x="116243" fg:w="51"/><text x="43.6927%" y="815.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (27 samples, 0.01%)</title><rect x="43.4804%" y="821" width="0.0101%" height="15" fill="rgb(229,13,5)" fg:x="116344" fg:w="27"/><text x="43.7304%" y="831.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (28 samples, 0.01%)</title><rect x="43.4957%" y="821" width="0.0105%" height="15" fill="rgb(252,164,30)" fg:x="116385" fg:w="28"/><text x="43.7457%" y="831.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (28 samples, 0.01%)</title><rect x="43.4957%" y="805" width="0.0105%" height="15" fill="rgb(232,68,36)" fg:x="116385" fg:w="28"/><text x="43.7457%" y="815.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (28 samples, 0.01%)</title><rect x="43.4957%" y="789" width="0.0105%" height="15" fill="rgb(219,59,54)" fg:x="116385" fg:w="28"/><text x="43.7457%" y="799.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (28 samples, 0.01%)</title><rect x="43.4957%" y="773" width="0.0105%" height="15" fill="rgb(250,92,33)" fg:x="116385" fg:w="28"/><text x="43.7457%" y="783.50"></text></g><g><title>clang::Sema::GetTypeForDeclarator (29 samples, 0.01%)</title><rect x="43.5324%" y="725" width="0.0108%" height="15" fill="rgb(229,162,54)" fg:x="116483" fg:w="29"/><text x="43.7824%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (100 samples, 0.04%)</title><rect x="43.5092%" y="805" width="0.0374%" height="15" fill="rgb(244,114,52)" fg:x="116421" fg:w="100"/><text x="43.7592%" y="815.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (82 samples, 0.03%)</title><rect x="43.5159%" y="789" width="0.0306%" height="15" fill="rgb(212,211,43)" fg:x="116439" fg:w="82"/><text x="43.7659%" y="799.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (82 samples, 0.03%)</title><rect x="43.5159%" y="773" width="0.0306%" height="15" fill="rgb(226,147,8)" fg:x="116439" fg:w="82"/><text x="43.7659%" y="783.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (82 samples, 0.03%)</title><rect x="43.5159%" y="757" width="0.0306%" height="15" fill="rgb(226,23,13)" fg:x="116439" fg:w="82"/><text x="43.7659%" y="767.50"></text></g><g><title>clang::Sema::ActOnParamDeclarator (42 samples, 0.02%)</title><rect x="43.5309%" y="741" width="0.0157%" height="15" fill="rgb(240,63,4)" fg:x="116479" fg:w="42"/><text x="43.7809%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclGroup (111 samples, 0.04%)</title><rect x="43.5062%" y="821" width="0.0415%" height="15" fill="rgb(221,1,32)" fg:x="116413" fg:w="111"/><text x="43.7562%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclaratorInternal (49 samples, 0.02%)</title><rect x="43.5619%" y="773" width="0.0183%" height="15" fill="rgb(242,117,10)" fg:x="116562" fg:w="49"/><text x="43.8119%" y="783.50"></text></g><g><title>clang::Parser::ParseDirectDeclarator (47 samples, 0.02%)</title><rect x="43.5626%" y="757" width="0.0176%" height="15" fill="rgb(249,172,44)" fg:x="116564" fg:w="47"/><text x="43.8126%" y="767.50"></text></g><g><title>clang::Parser::ParseFunctionDeclarator (47 samples, 0.02%)</title><rect x="43.5626%" y="741" width="0.0176%" height="15" fill="rgb(244,46,45)" fg:x="116564" fg:w="47"/><text x="43.8126%" y="751.50"></text></g><g><title>clang::Parser::ParseParameterDeclarationClause (47 samples, 0.02%)</title><rect x="43.5626%" y="725" width="0.0176%" height="15" fill="rgb(206,43,17)" fg:x="116564" fg:w="47"/><text x="43.8126%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclGroup (66 samples, 0.02%)</title><rect x="43.5563%" y="789" width="0.0247%" height="15" fill="rgb(239,218,39)" fg:x="116547" fg:w="66"/><text x="43.8063%" y="799.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (41 samples, 0.02%)</title><rect x="43.5854%" y="661" width="0.0153%" height="15" fill="rgb(208,169,54)" fg:x="116625" fg:w="41"/><text x="43.8354%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (76 samples, 0.03%)</title><rect x="43.5854%" y="709" width="0.0284%" height="15" fill="rgb(247,25,42)" fg:x="116625" fg:w="76"/><text x="43.8354%" y="719.50"></text></g><g><title>clang::Sema::ActOnDeclarator (76 samples, 0.03%)</title><rect x="43.5854%" y="693" width="0.0284%" height="15" fill="rgb(226,23,31)" fg:x="116625" fg:w="76"/><text x="43.8354%" y="703.50"></text></g><g><title>clang::Sema::HandleDeclarator (76 samples, 0.03%)</title><rect x="43.5854%" y="677" width="0.0284%" height="15" fill="rgb(247,16,28)" fg:x="116625" fg:w="76"/><text x="43.8354%" y="687.50"></text></g><g><title>clang::Sema::GetTypeForDeclarator (35 samples, 0.01%)</title><rect x="43.6007%" y="661" width="0.0131%" height="15" fill="rgb(231,147,38)" fg:x="116666" fg:w="35"/><text x="43.8507%" y="671.50"></text></g><g><title>GetFullTypeForDeclarator (35 samples, 0.01%)</title><rect x="43.6007%" y="645" width="0.0131%" height="15" fill="rgb(253,81,48)" fg:x="116666" fg:w="35"/><text x="43.8507%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclGroup (81 samples, 0.03%)</title><rect x="43.5850%" y="725" width="0.0303%" height="15" fill="rgb(249,222,43)" fg:x="116624" fg:w="81"/><text x="43.8350%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (162 samples, 0.06%)</title><rect x="43.5563%" y="821" width="0.0605%" height="15" fill="rgb(221,3,27)" fg:x="116547" fg:w="162"/><text x="43.8063%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (162 samples, 0.06%)</title><rect x="43.5563%" y="805" width="0.0605%" height="15" fill="rgb(228,180,5)" fg:x="116547" fg:w="162"/><text x="43.8063%" y="815.50"></text></g><g><title>clang::Parser::ParseLinkage (94 samples, 0.04%)</title><rect x="43.5817%" y="789" width="0.0351%" height="15" fill="rgb(227,131,42)" fg:x="116615" fg:w="94"/><text x="43.8317%" y="799.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (94 samples, 0.04%)</title><rect x="43.5817%" y="773" width="0.0351%" height="15" fill="rgb(212,3,39)" fg:x="116615" fg:w="94"/><text x="43.8317%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (85 samples, 0.03%)</title><rect x="43.5850%" y="757" width="0.0318%" height="15" fill="rgb(226,45,5)" fg:x="116624" fg:w="85"/><text x="43.8350%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (85 samples, 0.03%)</title><rect x="43.5850%" y="741" width="0.0318%" height="15" fill="rgb(215,167,45)" fg:x="116624" fg:w="85"/><text x="43.8350%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationSpecifiers (37 samples, 0.01%)</title><rect x="43.6168%" y="821" width="0.0138%" height="15" fill="rgb(250,218,53)" fg:x="116709" fg:w="37"/><text x="43.8668%" y="831.50"></text></g><g><title>clang::Parser::ParseClassSpecifier (35 samples, 0.01%)</title><rect x="43.6176%" y="805" width="0.0131%" height="15" fill="rgb(207,140,0)" fg:x="116711" fg:w="35"/><text x="43.8676%" y="815.50"></text></g><g><title>clang::Parser::ParseCXXMemberSpecification (35 samples, 0.01%)</title><rect x="43.6176%" y="789" width="0.0131%" height="15" fill="rgb(238,133,51)" fg:x="116711" fg:w="35"/><text x="43.8676%" y="799.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclarationWithPragmas (35 samples, 0.01%)</title><rect x="43.6176%" y="773" width="0.0131%" height="15" fill="rgb(218,203,53)" fg:x="116711" fg:w="35"/><text x="43.8676%" y="783.50"></text></g><g><title>clang::Parser::ParseCXXClassMemberDeclaration (35 samples, 0.01%)</title><rect x="43.6176%" y="757" width="0.0131%" height="15" fill="rgb(226,184,25)" fg:x="116711" fg:w="35"/><text x="43.8676%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationAfterDeclaratorAndAttributes (28 samples, 0.01%)</title><rect x="43.6501%" y="693" width="0.0105%" height="15" fill="rgb(231,121,21)" fg:x="116798" fg:w="28"/><text x="43.9001%" y="703.50"></text></g><g><title>clang::Sema::ActOnDeclarator (28 samples, 0.01%)</title><rect x="43.6501%" y="677" width="0.0105%" height="15" fill="rgb(251,14,34)" fg:x="116798" fg:w="28"/><text x="43.9001%" y="687.50"></text></g><g><title>clang::Sema::HandleDeclarator (28 samples, 0.01%)</title><rect x="43.6501%" y="661" width="0.0105%" height="15" fill="rgb(249,193,11)" fg:x="116798" fg:w="28"/><text x="43.9001%" y="671.50"></text></g><g><title>clang::Sema::ActOnFunctionDeclarator (28 samples, 0.01%)</title><rect x="43.6501%" y="645" width="0.0105%" height="15" fill="rgb(220,172,37)" fg:x="116798" fg:w="28"/><text x="43.9001%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclGroup (36 samples, 0.01%)</title><rect x="43.6497%" y="709" width="0.0135%" height="15" fill="rgb(231,229,43)" fg:x="116797" fg:w="36"/><text x="43.8997%" y="719.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (39 samples, 0.01%)</title><rect x="43.6490%" y="757" width="0.0146%" height="15" fill="rgb(250,161,5)" fg:x="116795" fg:w="39"/><text x="43.8990%" y="767.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (37 samples, 0.01%)</title><rect x="43.6497%" y="741" width="0.0138%" height="15" fill="rgb(218,225,18)" fg:x="116797" fg:w="37"/><text x="43.8997%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (37 samples, 0.01%)</title><rect x="43.6497%" y="725" width="0.0138%" height="15" fill="rgb(245,45,42)" fg:x="116797" fg:w="37"/><text x="43.8997%" y="735.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (66 samples, 0.02%)</title><rect x="43.6392%" y="821" width="0.0247%" height="15" fill="rgb(211,115,1)" fg:x="116769" fg:w="66"/><text x="43.8892%" y="831.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (60 samples, 0.02%)</title><rect x="43.6415%" y="805" width="0.0224%" height="15" fill="rgb(248,133,52)" fg:x="116775" fg:w="60"/><text x="43.8915%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (60 samples, 0.02%)</title><rect x="43.6415%" y="789" width="0.0224%" height="15" fill="rgb(238,100,21)" fg:x="116775" fg:w="60"/><text x="43.8915%" y="799.50"></text></g><g><title>clang::Parser::ParseLinkage (40 samples, 0.01%)</title><rect x="43.6490%" y="773" width="0.0149%" height="15" fill="rgb(247,144,11)" fg:x="116795" fg:w="40"/><text x="43.8990%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (29 samples, 0.01%)</title><rect x="43.6658%" y="757" width="0.0108%" height="15" fill="rgb(206,164,16)" fg:x="116840" fg:w="29"/><text x="43.9158%" y="767.50"></text></g><g><title>clang::Parser::ParseLinkage (36 samples, 0.01%)</title><rect x="43.6647%" y="821" width="0.0135%" height="15" fill="rgb(222,34,3)" fg:x="116837" fg:w="36"/><text x="43.9147%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (36 samples, 0.01%)</title><rect x="43.6647%" y="805" width="0.0135%" height="15" fill="rgb(248,82,4)" fg:x="116837" fg:w="36"/><text x="43.9147%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (33 samples, 0.01%)</title><rect x="43.6658%" y="789" width="0.0123%" height="15" fill="rgb(228,81,46)" fg:x="116840" fg:w="33"/><text x="43.9158%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (33 samples, 0.01%)</title><rect x="43.6658%" y="773" width="0.0123%" height="15" fill="rgb(227,67,47)" fg:x="116840" fg:w="33"/><text x="43.9158%" y="783.50"></text></g><g><title>clang::Parser::ParseDeclGroup (31 samples, 0.01%)</title><rect x="43.6882%" y="693" width="0.0116%" height="15" fill="rgb(215,93,53)" fg:x="116900" fg:w="31"/><text x="43.9382%" y="703.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (32 samples, 0.01%)</title><rect x="43.6882%" y="821" width="0.0120%" height="15" fill="rgb(248,194,39)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="831.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (32 samples, 0.01%)</title><rect x="43.6882%" y="805" width="0.0120%" height="15" fill="rgb(215,5,19)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="815.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (32 samples, 0.01%)</title><rect x="43.6882%" y="789" width="0.0120%" height="15" fill="rgb(226,215,51)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="799.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (32 samples, 0.01%)</title><rect x="43.6882%" y="773" width="0.0120%" height="15" fill="rgb(225,56,26)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="783.50"></text></g><g><title>clang::Parser::ParseLinkage (32 samples, 0.01%)</title><rect x="43.6882%" y="757" width="0.0120%" height="15" fill="rgb(222,75,29)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (32 samples, 0.01%)</title><rect x="43.6882%" y="741" width="0.0120%" height="15" fill="rgb(236,139,6)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="751.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (32 samples, 0.01%)</title><rect x="43.6882%" y="725" width="0.0120%" height="15" fill="rgb(223,137,36)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="735.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (32 samples, 0.01%)</title><rect x="43.6882%" y="709" width="0.0120%" height="15" fill="rgb(226,99,2)" fg:x="116900" fg:w="32"/><text x="43.9382%" y="719.50"></text></g><g><title>clang::FileManager::getFileRef (59 samples, 0.02%)</title><rect x="43.7102%" y="725" width="0.0220%" height="15" fill="rgb(206,133,23)" fg:x="116959" fg:w="59"/><text x="43.9602%" y="735.50"></text></g><g><title>clang::HeaderSearch::getFileAndSuggestModule (61 samples, 0.02%)</title><rect x="43.7099%" y="741" width="0.0228%" height="15" fill="rgb(243,173,15)" fg:x="116958" fg:w="61"/><text x="43.9599%" y="751.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (72 samples, 0.03%)</title><rect x="43.7069%" y="821" width="0.0269%" height="15" fill="rgb(228,69,28)" fg:x="116950" fg:w="72"/><text x="43.9569%" y="831.50"></text></g><g><title>clang::Preprocessor::LookupHeaderIncludeOrImport (72 samples, 0.03%)</title><rect x="43.7069%" y="805" width="0.0269%" height="15" fill="rgb(212,51,22)" fg:x="116950" fg:w="72"/><text x="43.9569%" y="815.50"></text></g><g><title>clang::Preprocessor::LookupFile (72 samples, 0.03%)</title><rect x="43.7069%" y="789" width="0.0269%" height="15" fill="rgb(227,113,0)" fg:x="116950" fg:w="72"/><text x="43.9569%" y="799.50"></text></g><g><title>clang::HeaderSearch::LookupFile (72 samples, 0.03%)</title><rect x="43.7069%" y="773" width="0.0269%" height="15" fill="rgb(252,84,27)" fg:x="116950" fg:w="72"/><text x="43.9569%" y="783.50"></text></g><g><title>clang::DirectoryLookup::LookupFile (72 samples, 0.03%)</title><rect x="43.7069%" y="757" width="0.0269%" height="15" fill="rgb(223,145,39)" fg:x="116950" fg:w="72"/><text x="43.9569%" y="767.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (52 samples, 0.02%)</title><rect x="43.7700%" y="597" width="0.0194%" height="15" fill="rgb(239,219,30)" fg:x="117119" fg:w="52"/><text x="44.0200%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (29 samples, 0.01%)</title><rect x="43.7786%" y="581" width="0.0108%" height="15" fill="rgb(224,196,39)" fg:x="117142" fg:w="29"/><text x="44.0286%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (29 samples, 0.01%)</title><rect x="43.7786%" y="565" width="0.0108%" height="15" fill="rgb(205,35,43)" fg:x="117142" fg:w="29"/><text x="44.0286%" y="575.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (58 samples, 0.02%)</title><rect x="43.7682%" y="677" width="0.0217%" height="15" fill="rgb(228,201,21)" fg:x="117114" fg:w="58"/><text x="44.0182%" y="687.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (58 samples, 0.02%)</title><rect x="43.7682%" y="661" width="0.0217%" height="15" fill="rgb(237,118,16)" fg:x="117114" fg:w="58"/><text x="44.0182%" y="671.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (58 samples, 0.02%)</title><rect x="43.7682%" y="645" width="0.0217%" height="15" fill="rgb(241,17,19)" fg:x="117114" fg:w="58"/><text x="44.0182%" y="655.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (58 samples, 0.02%)</title><rect x="43.7682%" y="629" width="0.0217%" height="15" fill="rgb(214,10,25)" fg:x="117114" fg:w="58"/><text x="44.0182%" y="639.50"></text></g><g><title>clang::Parser::ParseLinkage (53 samples, 0.02%)</title><rect x="43.7700%" y="613" width="0.0198%" height="15" fill="rgb(238,37,29)" fg:x="117119" fg:w="53"/><text x="44.0200%" y="623.50"></text></g><g><title>clang::Preprocessor::EnterSourceFile (27 samples, 0.01%)</title><rect x="43.7921%" y="597" width="0.0101%" height="15" fill="rgb(253,83,25)" fg:x="117178" fg:w="27"/><text x="44.0421%" y="607.50"></text></g><g><title>clang::driver::CC1Command::Execute (122 samples, 0.05%)</title><rect x="43.7570%" y="821" width="0.0456%" height="15" fill="rgb(234,192,12)" fg:x="117084" fg:w="122"/><text x="44.0070%" y="831.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (122 samples, 0.05%)</title><rect x="43.7570%" y="805" width="0.0456%" height="15" fill="rgb(241,216,45)" fg:x="117084" fg:w="122"/><text x="44.0070%" y="815.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; (122 samples, 0.05%)</title><rect x="43.7570%" y="789" width="0.0456%" height="15" fill="rgb(242,22,33)" fg:x="117084" fg:w="122"/><text x="44.0070%" y="799.50"></text></g><g><title>ExecuteCC1Tool (122 samples, 0.05%)</title><rect x="43.7570%" y="773" width="0.0456%" height="15" fill="rgb(231,105,49)" fg:x="117084" fg:w="122"/><text x="44.0070%" y="783.50"></text></g><g><title>cc1_main (122 samples, 0.05%)</title><rect x="43.7570%" y="757" width="0.0456%" height="15" fill="rgb(218,204,15)" fg:x="117084" fg:w="122"/><text x="44.0070%" y="767.50"></text></g><g><title>clang::ExecuteCompilerInvocation (119 samples, 0.04%)</title><rect x="43.7581%" y="741" width="0.0445%" height="15" fill="rgb(235,138,41)" fg:x="117087" fg:w="119"/><text x="44.0081%" y="751.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (119 samples, 0.04%)</title><rect x="43.7581%" y="725" width="0.0445%" height="15" fill="rgb(246,0,9)" fg:x="117087" fg:w="119"/><text x="44.0081%" y="735.50"></text></g><g><title>clang::FrontendAction::Execute (102 samples, 0.04%)</title><rect x="43.7644%" y="709" width="0.0381%" height="15" fill="rgb(210,74,4)" fg:x="117104" fg:w="102"/><text x="44.0144%" y="719.50"></text></g><g><title>clang::ParseAST (102 samples, 0.04%)</title><rect x="43.7644%" y="693" width="0.0381%" height="15" fill="rgb(250,60,41)" fg:x="117104" fg:w="102"/><text x="44.0144%" y="703.50"></text></g><g><title>clang::Preprocessor::Lex (34 samples, 0.01%)</title><rect x="43.7898%" y="677" width="0.0127%" height="15" fill="rgb(220,115,12)" fg:x="117172" fg:w="34"/><text x="44.0398%" y="687.50"></text></g><g><title>clang::Lexer::LexTokenInternal (34 samples, 0.01%)</title><rect x="43.7898%" y="661" width="0.0127%" height="15" fill="rgb(237,100,13)" fg:x="117172" fg:w="34"/><text x="44.0398%" y="671.50"></text></g><g><title>clang::Preprocessor::HandleDirective (34 samples, 0.01%)</title><rect x="43.7898%" y="645" width="0.0127%" height="15" fill="rgb(213,55,26)" fg:x="117172" fg:w="34"/><text x="44.0398%" y="655.50"></text></g><g><title>clang::Preprocessor::HandleIncludeDirective (28 samples, 0.01%)</title><rect x="43.7921%" y="629" width="0.0105%" height="15" fill="rgb(216,17,4)" fg:x="117178" fg:w="28"/><text x="44.0421%" y="639.50"></text></g><g><title>clang::Preprocessor::HandleHeaderIncludeOrImport (28 samples, 0.01%)</title><rect x="43.7921%" y="613" width="0.0105%" height="15" fill="rgb(220,153,47)" fg:x="117178" fg:w="28"/><text x="44.0421%" y="623.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (32 samples, 0.01%)</title><rect x="43.8093%" y="821" width="0.0120%" height="15" fill="rgb(215,131,9)" fg:x="117224" fg:w="32"/><text x="44.0593%" y="831.50"></text></g><g><title>clang::driver::tools::Clang::ConstructJob (50 samples, 0.02%)</title><rect x="43.8788%" y="741" width="0.0187%" height="15" fill="rgb(233,46,42)" fg:x="117410" fg:w="50"/><text x="44.1288%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildJobs (116 samples, 0.04%)</title><rect x="43.8751%" y="789" width="0.0434%" height="15" fill="rgb(226,86,7)" fg:x="117400" fg:w="116"/><text x="44.1251%" y="799.50"></text></g><g><title>clang::driver::Driver::BuildJobsForAction (116 samples, 0.04%)</title><rect x="43.8751%" y="773" width="0.0434%" height="15" fill="rgb(239,226,21)" fg:x="117400" fg:w="116"/><text x="44.1251%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildJobsForActionNoCache (116 samples, 0.04%)</title><rect x="43.8751%" y="757" width="0.0434%" height="15" fill="rgb(244,137,22)" fg:x="117400" fg:w="116"/><text x="44.1251%" y="767.50"></text></g><g><title>clang::driver::tools::gnutools::Linker::ConstructJob (56 samples, 0.02%)</title><rect x="43.8975%" y="741" width="0.0209%" height="15" fill="rgb(211,139,35)" fg:x="117460" fg:w="56"/><text x="44.1475%" y="751.50"></text></g><g><title>link_path_walk.part.0 (32 samples, 0.01%)</title><rect x="43.9393%" y="565" width="0.0120%" height="15" fill="rgb(214,62,50)" fg:x="117572" fg:w="32"/><text x="44.1893%" y="575.50"></text></g><g><title>do_filp_open (48 samples, 0.02%)</title><rect x="43.9349%" y="597" width="0.0179%" height="15" fill="rgb(212,113,44)" fg:x="117560" fg:w="48"/><text x="44.1849%" y="607.50"></text></g><g><title>path_openat (48 samples, 0.02%)</title><rect x="43.9349%" y="581" width="0.0179%" height="15" fill="rgb(226,150,43)" fg:x="117560" fg:w="48"/><text x="44.1849%" y="591.50"></text></g><g><title>do_syscall_64 (56 samples, 0.02%)</title><rect x="43.9349%" y="645" width="0.0209%" height="15" fill="rgb(250,71,37)" fg:x="117560" fg:w="56"/><text x="44.1849%" y="655.50"></text></g><g><title>__x64_sys_openat (56 samples, 0.02%)</title><rect x="43.9349%" y="629" width="0.0209%" height="15" fill="rgb(219,76,19)" fg:x="117560" fg:w="56"/><text x="44.1849%" y="639.50"></text></g><g><title>do_sys_openat2 (56 samples, 0.02%)</title><rect x="43.9349%" y="613" width="0.0209%" height="15" fill="rgb(250,39,11)" fg:x="117560" fg:w="56"/><text x="44.1849%" y="623.50"></text></g><g><title>__opendir (66 samples, 0.02%)</title><rect x="43.9341%" y="693" width="0.0247%" height="15" fill="rgb(230,64,31)" fg:x="117558" fg:w="66"/><text x="44.1841%" y="703.50"></text></g><g><title>__GI___open64_nocancel (66 samples, 0.02%)</title><rect x="43.9341%" y="677" width="0.0247%" height="15" fill="rgb(208,222,23)" fg:x="117558" fg:w="66"/><text x="44.1841%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (64 samples, 0.02%)</title><rect x="43.9349%" y="661" width="0.0239%" height="15" fill="rgb(227,125,18)" fg:x="117560" fg:w="64"/><text x="44.1849%" y="671.50"></text></g><g><title>llvm::sys::fs::directory_iterator::directory_iterator (74 samples, 0.03%)</title><rect x="43.9341%" y="725" width="0.0277%" height="15" fill="rgb(234,210,9)" fg:x="117558" fg:w="74"/><text x="44.1841%" y="735.50"></text></g><g><title>llvm::sys::fs::detail::directory_iterator_construct (74 samples, 0.03%)</title><rect x="43.9341%" y="709" width="0.0277%" height="15" fill="rgb(217,127,24)" fg:x="117558" fg:w="74"/><text x="44.1841%" y="719.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::ScanLibDirForGCCTriple (126 samples, 0.05%)</title><rect x="43.9236%" y="741" width="0.0471%" height="15" fill="rgb(239,141,48)" fg:x="117530" fg:w="126"/><text x="44.1736%" y="751.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::GCCInstallationDetector::init (157 samples, 0.06%)</title><rect x="43.9221%" y="757" width="0.0587%" height="15" fill="rgb(227,109,8)" fg:x="117526" fg:w="157"/><text x="44.1721%" y="767.50"></text></g><g><title>clang::driver::CudaInstallationDetector::CudaInstallationDetector (30 samples, 0.01%)</title><rect x="43.9812%" y="741" width="0.0112%" height="15" fill="rgb(235,184,23)" fg:x="117684" fg:w="30"/><text x="44.2312%" y="751.50"></text></g><g><title>clang::driver::RocmInstallationDetector::detectHIPRuntime (28 samples, 0.01%)</title><rect x="43.9924%" y="725" width="0.0105%" height="15" fill="rgb(227,226,48)" fg:x="117714" fg:w="28"/><text x="44.2424%" y="735.50"></text></g><g><title>clang::driver::RocmInstallationDetector::RocmInstallationDetector (29 samples, 0.01%)</title><rect x="43.9924%" y="741" width="0.0108%" height="15" fill="rgb(206,150,11)" fg:x="117714" fg:w="29"/><text x="44.2424%" y="751.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (352 samples, 0.13%)</title><rect x="43.8747%" y="805" width="0.1316%" height="15" fill="rgb(254,2,33)" fg:x="117399" fg:w="352"/><text x="44.1247%" y="815.50"></text></g><g><title>clang::driver::Driver::getToolChain (235 samples, 0.09%)</title><rect x="43.9184%" y="789" width="0.0878%" height="15" fill="rgb(243,160,20)" fg:x="117516" fg:w="235"/><text x="44.1684%" y="799.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (235 samples, 0.09%)</title><rect x="43.9184%" y="773" width="0.0878%" height="15" fill="rgb(218,208,30)" fg:x="117516" fg:w="235"/><text x="44.1684%" y="783.50"></text></g><g><title>clang::driver::toolchains::Generic_GCC::Generic_GCC (68 samples, 0.03%)</title><rect x="43.9808%" y="757" width="0.0254%" height="15" fill="rgb(224,120,49)" fg:x="117683" fg:w="68"/><text x="44.2308%" y="767.50"></text></g><g><title>clang::Builtin::Context::builtinIsSupported (41 samples, 0.02%)</title><rect x="44.0316%" y="613" width="0.0153%" height="15" fill="rgb(246,12,2)" fg:x="117819" fg:w="41"/><text x="44.2816%" y="623.50"></text></g><g><title>llvm::StringMapImpl::LookupBucketFor (45 samples, 0.02%)</title><rect x="44.0571%" y="581" width="0.0168%" height="15" fill="rgb(236,117,3)" fg:x="117887" fg:w="45"/><text x="44.3071%" 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; (70 samples, 0.03%)</title><rect x="44.0481%" y="597" width="0.0262%" height="15" fill="rgb(216,128,52)" fg:x="117863" fg:w="70"/><text x="44.2981%" y="607.50"></text></g><g><title>clang::Builtin::Context::initializeBuiltins (138 samples, 0.05%)</title><rect x="44.0268%" y="629" width="0.0516%" height="15" fill="rgb(246,145,19)" fg:x="117806" fg:w="138"/><text x="44.2768%" y="639.50"></text></g><g><title>clang::IdentifierTable::get (84 samples, 0.03%)</title><rect x="44.0470%" y="613" width="0.0314%" height="15" fill="rgb(222,11,46)" fg:x="117860" fg:w="84"/><text x="44.2970%" y="623.50"></text></g><g><title>InitializePredefinedMacros (34 samples, 0.01%)</title><rect x="44.0967%" y="597" width="0.0127%" height="15" fill="rgb(245,82,36)" fg:x="117993" fg:w="34"/><text x="44.3467%" y="607.50"></text></g><g><title>clang::InitializePreprocessor (41 samples, 0.02%)</title><rect x="44.0963%" y="613" width="0.0153%" height="15" fill="rgb(250,73,51)" fg:x="117992" fg:w="41"/><text x="44.3463%" y="623.50"></text></g><g><title>clang::CompilerInstance::createPreprocessor (96 samples, 0.04%)</title><rect x="44.0851%" y="629" width="0.0359%" height="15" fill="rgb(221,189,23)" fg:x="117962" fg:w="96"/><text x="44.3351%" y="639.50"></text></g><g><title>llvm::sys::fs::TempFile::create (31 samples, 0.01%)</title><rect x="44.1213%" y="533" width="0.0116%" height="15" fill="rgb(210,33,7)" fg:x="118059" fg:w="31"/><text x="44.3713%" y="543.50"></text></g><g><title>GetOutputStream (33 samples, 0.01%)</title><rect x="44.1213%" y="597" width="0.0123%" height="15" fill="rgb(210,107,22)" fg:x="118059" fg:w="33"/><text x="44.3713%" y="607.50"></text></g><g><title>clang::CompilerInstance::createDefaultOutputFile (33 samples, 0.01%)</title><rect x="44.1213%" y="581" width="0.0123%" height="15" fill="rgb(222,116,37)" fg:x="118059" fg:w="33"/><text x="44.3713%" y="591.50"></text></g><g><title>clang::CompilerInstance::createOutputFile (33 samples, 0.01%)</title><rect x="44.1213%" y="565" width="0.0123%" height="15" fill="rgb(254,17,48)" fg:x="118059" fg:w="33"/><text x="44.3713%" y="575.50"></text></g><g><title>clang::CompilerInstance::createOutputFileImpl (33 samples, 0.01%)</title><rect x="44.1213%" y="549" width="0.0123%" height="15" fill="rgb(224,36,32)" fg:x="118059" fg:w="33"/><text x="44.3713%" y="559.50"></text></g><g><title>clang::FrontendAction::CreateWrappedASTConsumer (39 samples, 0.01%)</title><rect x="44.1213%" y="629" width="0.0146%" height="15" fill="rgb(232,90,46)" fg:x="118059" fg:w="39"/><text x="44.3713%" y="639.50"></text></g><g><title>clang::CodeGenAction::CreateASTConsumer (39 samples, 0.01%)</title><rect x="44.1213%" y="613" width="0.0146%" height="15" fill="rgb(241,66,40)" fg:x="118059" fg:w="39"/><text x="44.3713%" y="623.50"></text></g><g><title>clang::FrontendAction::BeginSourceFile (308 samples, 0.12%)</title><rect x="44.0212%" y="645" width="0.1151%" height="15" fill="rgb(249,184,29)" fg:x="117791" fg:w="308"/><text x="44.2712%" y="655.50"></text></g><g><title>btrfs_log_inode (48 samples, 0.02%)</title><rect x="44.1411%" y="437" width="0.0179%" height="15" fill="rgb(231,181,1)" fg:x="118112" fg:w="48"/><text x="44.3911%" y="447.50"></text></g><g><title>btrfs_rename2 (57 samples, 0.02%)</title><rect x="44.1385%" y="485" width="0.0213%" height="15" fill="rgb(224,94,2)" fg:x="118105" fg:w="57"/><text x="44.3885%" y="495.50"></text></g><g><title>btrfs_log_new_name (51 samples, 0.02%)</title><rect x="44.1408%" y="469" width="0.0191%" height="15" fill="rgb(229,170,15)" fg:x="118111" fg:w="51"/><text x="44.3908%" y="479.50"></text></g><g><title>btrfs_log_inode_parent (51 samples, 0.02%)</title><rect x="44.1408%" y="453" width="0.0191%" height="15" fill="rgb(240,127,35)" fg:x="118111" fg:w="51"/><text x="44.3908%" y="463.50"></text></g><g><title>clang::CompilerInstance::clearOutputFiles (62 samples, 0.02%)</title><rect x="44.1370%" y="629" width="0.0232%" height="15" fill="rgb(248,196,34)" fg:x="118101" fg:w="62"/><text x="44.3870%" y="639.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (62 samples, 0.02%)</title><rect x="44.1370%" y="613" width="0.0232%" height="15" fill="rgb(236,137,7)" fg:x="118101" fg:w="62"/><text x="44.3870%" y="623.50"></text></g><g><title>llvm::sys::fs::rename (60 samples, 0.02%)</title><rect x="44.1378%" y="597" width="0.0224%" height="15" fill="rgb(235,127,16)" fg:x="118103" fg:w="60"/><text x="44.3878%" y="607.50"></text></g><g><title>rename (60 samples, 0.02%)</title><rect x="44.1378%" y="581" width="0.0224%" height="15" fill="rgb(250,192,54)" fg:x="118103" fg:w="60"/><text x="44.3878%" y="591.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (59 samples, 0.02%)</title><rect x="44.1382%" y="565" width="0.0220%" height="15" fill="rgb(218,98,20)" fg:x="118104" fg:w="59"/><text x="44.3882%" y="575.50"></text></g><g><title>do_syscall_64 (59 samples, 0.02%)</title><rect x="44.1382%" y="549" width="0.0220%" height="15" fill="rgb(230,176,47)" fg:x="118104" fg:w="59"/><text x="44.3882%" y="559.50"></text></g><g><title>__x64_sys_rename (59 samples, 0.02%)</title><rect x="44.1382%" y="533" width="0.0220%" height="15" fill="rgb(244,2,33)" fg:x="118104" fg:w="59"/><text x="44.3882%" y="543.50"></text></g><g><title>do_renameat2 (59 samples, 0.02%)</title><rect x="44.1382%" y="517" width="0.0220%" height="15" fill="rgb(231,100,17)" fg:x="118104" fg:w="59"/><text x="44.3882%" y="527.50"></text></g><g><title>vfs_rename (58 samples, 0.02%)</title><rect x="44.1385%" y="501" width="0.0217%" height="15" fill="rgb(245,23,12)" fg:x="118105" fg:w="58"/><text x="44.3885%" y="511.50"></text></g><g><title>clang::DependencyFileGenerator::outputDependencyFile (31 samples, 0.01%)</title><rect x="44.1602%" y="629" width="0.0116%" height="15" fill="rgb(249,55,22)" fg:x="118163" fg:w="31"/><text x="44.4102%" y="639.50"></text></g><g><title>clang::FrontendAction::EndSourceFile (96 samples, 0.04%)</title><rect x="44.1363%" y="645" width="0.0359%" height="15" fill="rgb(207,134,9)" fg:x="118099" fg:w="96"/><text x="44.3863%" y="655.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (38 samples, 0.01%)</title><rect x="44.2009%" y="437" width="0.0142%" height="15" fill="rgb(218,134,0)" fg:x="118272" fg:w="38"/><text x="44.4509%" y="447.50"></text></g><g><title>clang::BalancedDelimiterTracker::consumeClose (87 samples, 0.03%)</title><rect x="44.1871%" y="517" width="0.0325%" height="15" fill="rgb(213,212,33)" fg:x="118235" fg:w="87"/><text x="44.4371%" y="527.50"></text></g><g><title>clang::Parser::ConsumeBrace (87 samples, 0.03%)</title><rect x="44.1871%" y="501" width="0.0325%" height="15" fill="rgb(252,106,18)" fg:x="118235" fg:w="87"/><text x="44.4371%" y="511.50"></text></g><g><title>clang::Preprocessor::Lex (87 samples, 0.03%)</title><rect x="44.1871%" y="485" width="0.0325%" height="15" fill="rgb(208,126,42)" fg:x="118235" fg:w="87"/><text x="44.4371%" y="495.50"></text></g><g><title>clang::Lexer::LexTokenInternal (86 samples, 0.03%)</title><rect x="44.1875%" y="469" width="0.0321%" height="15" fill="rgb(246,175,29)" fg:x="118236" fg:w="86"/><text x="44.4375%" y="479.50"></text></g><g><title>clang::Preprocessor::HandleDirective (81 samples, 0.03%)</title><rect x="44.1894%" y="453" width="0.0303%" height="15" fill="rgb(215,13,50)" fg:x="118241" fg:w="81"/><text x="44.4394%" y="463.50"></text></g><g><title>clang::Parser::ParseInnerNamespace (91 samples, 0.03%)</title><rect x="44.1871%" y="533" width="0.0340%" height="15" fill="rgb(216,172,15)" fg:x="118235" fg:w="91"/><text x="44.4371%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (96 samples, 0.04%)</title><rect x="44.1871%" y="581" width="0.0359%" height="15" fill="rgb(212,103,13)" fg:x="118235" fg:w="96"/><text x="44.4371%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclaration (96 samples, 0.04%)</title><rect x="44.1871%" y="565" width="0.0359%" height="15" fill="rgb(231,171,36)" fg:x="118235" fg:w="96"/><text x="44.4371%" y="575.50"></text></g><g><title>clang::Parser::ParseNamespace (96 samples, 0.04%)</title><rect x="44.1871%" y="549" width="0.0359%" height="15" fill="rgb(250,123,20)" fg:x="118235" fg:w="96"/><text x="44.4371%" y="559.50"></text></g><g><title>clang::Parser::ParseFirstTopLevelDecl (100 samples, 0.04%)</title><rect x="44.1871%" y="613" width="0.0374%" height="15" fill="rgb(212,53,50)" fg:x="118235" fg:w="100"/><text x="44.4371%" y="623.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (100 samples, 0.04%)</title><rect x="44.1871%" y="597" width="0.0374%" height="15" fill="rgb(243,54,12)" fg:x="118235" fg:w="100"/><text x="44.4371%" y="607.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (51 samples, 0.02%)</title><rect x="44.2267%" y="533" width="0.0191%" height="15" fill="rgb(234,101,34)" fg:x="118341" fg:w="51"/><text x="44.4767%" y="543.50"></text></g><g><title>clang::Parser::ParseExternalDeclaration (68 samples, 0.03%)</title><rect x="44.2245%" y="597" width="0.0254%" height="15" fill="rgb(254,67,22)" fg:x="118335" fg:w="68"/><text x="44.4745%" y="607.50"></text></g><g><title>clang::Parser::ParseDeclarationOrFunctionDefinition (68 samples, 0.03%)</title><rect x="44.2245%" y="581" width="0.0254%" height="15" fill="rgb(250,35,47)" fg:x="118335" fg:w="68"/><text x="44.4745%" y="591.50"></text></g><g><title>clang::Parser::ParseDeclOrFunctionDefInternal (68 samples, 0.03%)</title><rect x="44.2245%" y="565" width="0.0254%" height="15" fill="rgb(226,126,38)" fg:x="118335" fg:w="68"/><text x="44.4745%" y="575.50"></text></g><g><title>clang::Parser::ParseLinkage (66 samples, 0.02%)</title><rect x="44.2252%" y="549" width="0.0247%" height="15" fill="rgb(216,138,53)" fg:x="118337" fg:w="66"/><text x="44.4752%" y="559.50"></text></g><g><title>clang::Parser::ParseTopLevelDecl (72 samples, 0.03%)</title><rect x="44.2245%" y="613" width="0.0269%" height="15" fill="rgb(246,199,43)" fg:x="118335" fg:w="72"/><text x="44.4745%" y="623.50"></text></g><g><title>clang::Preprocessor::ReadMacroName (37 samples, 0.01%)</title><rect x="44.2720%" y="549" width="0.0138%" height="15" fill="rgb(232,125,11)" fg:x="118462" fg:w="37"/><text x="44.5220%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (27 samples, 0.01%)</title><rect x="44.2757%" y="533" width="0.0101%" height="15" fill="rgb(218,219,45)" fg:x="118472" fg:w="27"/><text x="44.5257%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (27 samples, 0.01%)</title><rect x="44.2757%" y="517" width="0.0101%" height="15" fill="rgb(216,102,54)" fg:x="118472" fg:w="27"/><text x="44.5257%" y="527.50"></text></g><g><title>clang::Preprocessor::Lex (34 samples, 0.01%)</title><rect x="44.2951%" y="533" width="0.0127%" height="15" fill="rgb(250,228,7)" fg:x="118524" fg:w="34"/><text x="44.5451%" y="543.50"></text></g><g><title>clang::Lexer::LexTokenInternal (30 samples, 0.01%)</title><rect x="44.2966%" y="517" width="0.0112%" height="15" fill="rgb(226,125,25)" fg:x="118528" fg:w="30"/><text x="44.5466%" y="527.50"></text></g><g><title>clang::Preprocessor::ReadOptionalMacroParameterListAndBody (63 samples, 0.02%)</title><rect x="44.2858%" y="549" width="0.0235%" height="15" fill="rgb(224,165,27)" fg:x="118499" fg:w="63"/><text x="44.5358%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleDefineDirective (138 samples, 0.05%)</title><rect x="44.2686%" y="565" width="0.0516%" height="15" fill="rgb(233,86,3)" fg:x="118453" fg:w="138"/><text x="44.5186%" y="575.50"></text></g><g><title>EvaluateDirectiveSubExpr (29 samples, 0.01%)</title><rect x="44.3288%" y="533" width="0.0108%" height="15" fill="rgb(228,116,20)" fg:x="118614" fg:w="29"/><text x="44.5788%" y="543.50"></text></g><g><title>EvaluateValue (33 samples, 0.01%)</title><rect x="44.3396%" y="533" width="0.0123%" height="15" fill="rgb(209,192,17)" fg:x="118643" fg:w="33"/><text x="44.5896%" y="543.50"></text></g><g><title>clang::Preprocessor::EvaluateDirectiveExpression (92 samples, 0.03%)</title><rect x="44.3254%" y="549" width="0.0344%" height="15" fill="rgb(224,88,34)" fg:x="118605" fg:w="92"/><text x="44.5754%" y="559.50"></text></g><g><title>clang::Preprocessor::HandleIfDirective (125 samples, 0.05%)</title><rect x="44.3246%" y="565" width="0.0467%" height="15" fill="rgb(233,38,6)" fg:x="118603" fg:w="125"/><text x="44.5746%" y="575.50"></text></g><g><title>clang::Preprocessor::SkipExcludedConditionalBlock (31 samples, 0.01%)</title><rect x="44.3598%" y="549" width="0.0116%" height="15" fill="rgb(212,59,30)" fg:x="118697" fg:w="31"/><text x="44.6098%" y="559.50"></text></g><g><title>clang::Preprocessor::Lex (30 samples, 0.01%)</title><rect x="44.3844%" y="565" width="0.0112%" height="15" fill="rgb(213,80,3)" fg:x="118763" fg:w="30"/><text x="44.6344%" y="575.50"></text></g><g><title>clang::Preprocessor::Lex (385 samples, 0.14%)</title><rect x="44.2559%" y="613" width="0.1439%" height="15" fill="rgb(251,178,7)" fg:x="118419" fg:w="385"/><text x="44.5059%" y="623.50"></text></g><g><title>clang::Lexer::LexTokenInternal (379 samples, 0.14%)</title><rect x="44.2581%" y="597" width="0.1416%" height="15" fill="rgb(213,154,26)" fg:x="118425" fg:w="379"/><text x="44.5081%" y="607.50"></text></g><g><title>clang::Preprocessor::HandleDirective (363 samples, 0.14%)</title><rect x="44.2641%" y="581" width="0.1357%" height="15" fill="rgb(238,165,49)" fg:x="118441" fg:w="363"/><text x="44.5141%" y="591.50"></text></g><g><title>clang::CompilerInstance::ExecuteAction (1,024 samples, 0.38%)</title><rect x="44.0174%" y="661" width="0.3827%" height="15" fill="rgb(248,91,46)" fg:x="117781" fg:w="1024"/><text x="44.2674%" y="671.50"></text></g><g><title>clang::FrontendAction::Execute (610 samples, 0.23%)</title><rect x="44.1722%" y="645" width="0.2280%" height="15" fill="rgb(244,21,52)" fg:x="118195" fg:w="610"/><text x="44.4222%" y="655.50"></text></g><g><title>clang::ParseAST (598 samples, 0.22%)</title><rect x="44.1767%" y="629" width="0.2235%" height="15" fill="rgb(247,122,20)" fg:x="118207" fg:w="598"/><text x="44.4267%" y="639.50"></text></g><g><title>clang::ExecuteCompilerInvocation (1,050 samples, 0.39%)</title><rect x="44.0174%" y="677" width="0.3924%" height="15" fill="rgb(218,27,9)" fg:x="117781" fg:w="1050"/><text x="44.2674%" y="687.50"></text></g><g><title>clang::driver::CC1Command::Execute (1,101 samples, 0.41%)</title><rect x="44.0062%" y="757" width="0.4115%" height="15" fill="rgb(246,7,6)" fg:x="117751" fg:w="1101"/><text x="44.2562%" y="767.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (1,101 samples, 0.41%)</title><rect x="44.0062%" y="741" width="0.4115%" height="15" fill="rgb(227,135,54)" fg:x="117751" fg:w="1101"/><text x="44.2562%" y="751.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,101 samples, 0.41%)</title><rect x="44.0062%" y="725" width="0.4115%" height="15" fill="rgb(247,14,11)" fg:x="117751" fg:w="1101"/><text x="44.2562%" y="735.50"></text></g><g><title>ExecuteCC1Tool (1,101 samples, 0.41%)</title><rect x="44.0062%" y="709" width="0.4115%" height="15" fill="rgb(206,149,34)" fg:x="117751" fg:w="1101"/><text x="44.2562%" y="719.50"></text></g><g><title>cc1_main (1,101 samples, 0.41%)</title><rect x="44.0062%" y="693" width="0.4115%" height="15" fill="rgb(227,228,4)" fg:x="117751" fg:w="1101"/><text x="44.2562%" y="703.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (1,106 samples, 0.41%)</title><rect x="44.0062%" y="805" width="0.4133%" height="15" fill="rgb(238,218,28)" fg:x="117751" fg:w="1106"/><text x="44.2562%" y="815.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (1,106 samples, 0.41%)</title><rect x="44.0062%" y="789" width="0.4133%" height="15" fill="rgb(252,86,40)" fg:x="117751" fg:w="1106"/><text x="44.2562%" y="799.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (1,106 samples, 0.41%)</title><rect x="44.0062%" y="773" width="0.4133%" height="15" fill="rgb(251,225,11)" fg:x="117751" fg:w="1106"/><text x="44.2562%" y="783.50"></text></g><g><title>main (1,476 samples, 0.55%)</title><rect x="43.8743%" y="821" width="0.5516%" height="15" fill="rgb(206,46,49)" fg:x="117398" fg:w="1476"/><text x="44.1243%" y="831.50"></text></g><g><title>[unknown] (3,990 samples, 1.49%)</title><rect x="42.9404%" y="837" width="1.4912%" height="15" fill="rgb(245,128,24)" fg:x="114899" fg:w="3990"/><text x="43.1904%" y="847.50"></text></g><g><title>bprm_execve (28 samples, 0.01%)</title><rect x="44.4398%" y="725" width="0.0105%" height="15" fill="rgb(219,177,34)" fg:x="118911" fg:w="28"/><text x="44.6898%" y="735.50"></text></g><g><title>__spawni_child (60 samples, 0.02%)</title><rect x="44.4315%" y="821" width="0.0224%" height="15" fill="rgb(218,60,48)" fg:x="118889" fg:w="60"/><text x="44.6815%" y="831.50"></text></g><g><title>__GI_execve (44 samples, 0.02%)</title><rect x="44.4375%" y="805" width="0.0164%" height="15" fill="rgb(221,11,5)" fg:x="118905" fg:w="44"/><text x="44.6875%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (44 samples, 0.02%)</title><rect x="44.4375%" y="789" width="0.0164%" height="15" fill="rgb(220,148,13)" fg:x="118905" fg:w="44"/><text x="44.6875%" y="799.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="44.4375%" y="773" width="0.0164%" height="15" fill="rgb(210,16,3)" fg:x="118905" fg:w="44"/><text x="44.6875%" y="783.50"></text></g><g><title>__x64_sys_execve (44 samples, 0.02%)</title><rect x="44.4375%" y="757" width="0.0164%" height="15" fill="rgb(236,80,2)" fg:x="118905" fg:w="44"/><text x="44.6875%" y="767.50"></text></g><g><title>do_execveat_common (44 samples, 0.02%)</title><rect x="44.4375%" y="741" width="0.0164%" height="15" fill="rgb(239,129,19)" fg:x="118905" fg:w="44"/><text x="44.6875%" y="751.50"></text></g><g><title>__GI___clone (88 samples, 0.03%)</title><rect x="44.4315%" y="837" width="0.0329%" height="15" fill="rgb(220,106,35)" fg:x="118889" fg:w="88"/><text x="44.6815%" y="847.50"></text></g><g><title>__GI__dl_addr (31 samples, 0.01%)</title><rect x="44.4726%" y="709" width="0.0116%" height="15" fill="rgb(252,139,45)" fg:x="118999" fg:w="31"/><text x="44.7226%" y="719.50"></text></g><g><title>determine_info (28 samples, 0.01%)</title><rect x="44.4738%" y="693" width="0.0105%" height="15" fill="rgb(229,8,36)" fg:x="119002" fg:w="28"/><text x="44.7238%" y="703.50"></text></g><g><title>malloc_hook_ini (32 samples, 0.01%)</title><rect x="44.4726%" y="757" width="0.0120%" height="15" fill="rgb(230,126,33)" fg:x="118999" fg:w="32"/><text x="44.7226%" y="767.50"></text></g><g><title>ptmalloc_init (32 samples, 0.01%)</title><rect x="44.4726%" y="741" width="0.0120%" height="15" fill="rgb(239,140,21)" fg:x="118999" fg:w="32"/><text x="44.7226%" y="751.50"></text></g><g><title>ptmalloc_init (32 samples, 0.01%)</title><rect x="44.4726%" y="725" width="0.0120%" height="15" fill="rgb(254,104,9)" fg:x="118999" fg:w="32"/><text x="44.7226%" y="735.50"></text></g><g><title>[libstdc++.so.6.0.28] (51 samples, 0.02%)</title><rect x="44.4670%" y="773" width="0.0191%" height="15" fill="rgb(239,52,14)" fg:x="118984" fg:w="51"/><text x="44.7170%" y="783.50"></text></g><g><title>_dl_start_user (60 samples, 0.02%)</title><rect x="44.4670%" y="837" width="0.0224%" height="15" fill="rgb(208,227,44)" fg:x="118984" fg:w="60"/><text x="44.7170%" y="847.50"></text></g><g><title>_dl_init (60 samples, 0.02%)</title><rect x="44.4670%" y="821" width="0.0224%" height="15" fill="rgb(246,18,19)" fg:x="118984" fg:w="60"/><text x="44.7170%" y="831.50"></text></g><g><title>call_init (60 samples, 0.02%)</title><rect x="44.4670%" y="805" width="0.0224%" height="15" fill="rgb(235,228,25)" fg:x="118984" fg:w="60"/><text x="44.7170%" y="815.50"></text></g><g><title>call_init (60 samples, 0.02%)</title><rect x="44.4670%" y="789" width="0.0224%" height="15" fill="rgb(240,156,20)" fg:x="118984" fg:w="60"/><text x="44.7170%" y="799.50"></text></g><g><title>__GI_exit (120 samples, 0.04%)</title><rect x="44.4969%" y="805" width="0.0448%" height="15" fill="rgb(224,8,20)" fg:x="119064" fg:w="120"/><text x="44.7469%" y="815.50"></text></g><g><title>__run_exit_handlers (120 samples, 0.04%)</title><rect x="44.4969%" y="789" width="0.0448%" height="15" fill="rgb(214,12,52)" fg:x="119064" fg:w="120"/><text x="44.7469%" y="799.50"></text></g><g><title>_GLOBAL__sub_I_AArch64TargetMachine.cpp (29 samples, 0.01%)</title><rect x="44.5575%" y="789" width="0.0108%" height="15" fill="rgb(211,220,47)" fg:x="119226" fg:w="29"/><text x="44.8075%" y="799.50"></text></g><g><title>__pthread_once_slow (28 samples, 0.01%)</title><rect x="44.9009%" y="741" width="0.0105%" height="15" fill="rgb(250,173,5)" fg:x="120145" fg:w="28"/><text x="45.1509%" y="751.50"></text></g><g><title>initializeCodeGenerationPassOnce (27 samples, 0.01%)</title><rect x="44.9013%" y="725" width="0.0101%" height="15" fill="rgb(250,125,52)" fg:x="120146" fg:w="27"/><text x="45.1513%" y="735.50"></text></g><g><title>llvm::initializeDependenceInfoPass (27 samples, 0.01%)</title><rect x="44.9013%" y="709" width="0.0101%" height="15" fill="rgb(209,133,18)" fg:x="120146" fg:w="27"/><text x="45.1513%" y="719.50"></text></g><g><title>llvm::initializeCodeGenerationPass (29 samples, 0.01%)</title><rect x="44.9009%" y="757" width="0.0108%" height="15" fill="rgb(216,173,22)" fg:x="120145" fg:w="29"/><text x="45.1509%" y="767.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (59 samples, 0.02%)</title><rect x="44.8968%" y="789" width="0.0220%" height="15" fill="rgb(205,3,22)" fg:x="120134" fg:w="59"/><text x="45.1468%" y="799.50"></text></g><g><title>polly::initializePollyPasses (48 samples, 0.02%)</title><rect x="44.9009%" y="773" width="0.0179%" height="15" fill="rgb(248,22,20)" fg:x="120145" fg:w="48"/><text x="45.1509%" y="783.50"></text></g><g><title>_GLOBAL__sub_I_SimplifyCFGPass.cpp (37 samples, 0.01%)</title><rect x="44.9495%" y="789" width="0.0138%" height="15" fill="rgb(233,6,29)" fg:x="120275" fg:w="37"/><text x="45.1995%" y="799.50"></text></g><g><title>llvm::cl::Option::addArgument (37 samples, 0.01%)</title><rect x="44.9495%" y="773" width="0.0138%" height="15" fill="rgb(240,22,54)" fg:x="120275" fg:w="37"/><text x="45.1995%" y="783.50"></text></g><g><title>llvm::StringMap&lt;llvm::cl::Option*, llvm::MallocAllocator&gt;::try_emplace&lt;llvm::cl::Option*&gt; (37 samples, 0.01%)</title><rect x="44.9495%" y="757" width="0.0138%" height="15" fill="rgb(231,133,32)" fg:x="120275" fg:w="37"/><text x="45.1995%" y="767.50"></text></g><g><title>llvm::StringMapImpl::RehashTable (35 samples, 0.01%)</title><rect x="44.9503%" y="741" width="0.0131%" height="15" fill="rgb(248,193,4)" fg:x="120277" fg:w="35"/><text x="45.2003%" y="751.50"></text></g><g><title>__libc_csu_init (1,244 samples, 0.46%)</title><rect x="44.5418%" y="805" width="0.4649%" height="15" fill="rgb(211,178,46)" fg:x="119184" fg:w="1244"/><text x="44.7918%" y="815.50"></text></g><g><title>clang::CreateAndPopulateDiagOpts (34 samples, 0.01%)</title><rect x="45.0134%" y="789" width="0.0127%" height="15" fill="rgb(224,5,42)" fg:x="120446" fg:w="34"/><text x="45.2634%" y="799.50"></text></g><g><title>clang::driver::toolchains::Linux::Linux (30 samples, 0.01%)</title><rect x="45.0485%" y="757" width="0.0112%" height="15" fill="rgb(239,176,25)" fg:x="120540" fg:w="30"/><text x="45.2985%" y="767.50"></text></g><g><title>clang::driver::Driver::getToolChain (31 samples, 0.01%)</title><rect x="45.0485%" y="773" width="0.0116%" height="15" fill="rgb(245,187,50)" fg:x="120540" fg:w="31"/><text x="45.2985%" y="783.50"></text></g><g><title>clang::driver::Driver::BuildCompilation (70 samples, 0.03%)</title><rect x="45.0358%" y="789" width="0.0262%" height="15" fill="rgb(248,24,15)" fg:x="120506" fg:w="70"/><text x="45.2858%" y="799.50"></text></g><g><title>llvm::CrashRecoveryContext::RunSafely (50 samples, 0.02%)</title><rect x="45.0635%" y="725" width="0.0187%" height="15" fill="rgb(205,166,13)" fg:x="120580" fg:w="50"/><text x="45.3135%" y="735.50"></text></g><g><title>llvm::function_ref&lt;void ()&gt;::callback_fn&lt;clang::driver::CC1Command::Execute(llvm::ArrayRef&lt;llvm::Optional&lt;llvm::StringRef&gt; &gt;, std::__cxx11::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, bool*) const::$_1&gt; (50 samples, 0.02%)</title><rect x="45.0635%" y="709" width="0.0187%" height="15" fill="rgb(208,114,23)" fg:x="120580" fg:w="50"/><text x="45.3135%" y="719.50"></text></g><g><title>ExecuteCC1Tool (50 samples, 0.02%)</title><rect x="45.0635%" y="693" width="0.0187%" height="15" fill="rgb(239,127,18)" fg:x="120580" fg:w="50"/><text x="45.3135%" y="703.50"></text></g><g><title>clang::driver::CC1Command::Execute (51 samples, 0.02%)</title><rect x="45.0635%" y="741" width="0.0191%" height="15" fill="rgb(219,154,28)" fg:x="120580" fg:w="51"/><text x="45.3135%" y="751.50"></text></g><g><title>clang::driver::Compilation::ExecuteJobs (103 samples, 0.04%)</title><rect x="45.0627%" y="773" width="0.0385%" height="15" fill="rgb(225,157,23)" fg:x="120578" fg:w="103"/><text x="45.3127%" y="783.50"></text></g><g><title>clang::driver::Compilation::ExecuteCommand (102 samples, 0.04%)</title><rect x="45.0631%" y="757" width="0.0381%" height="15" fill="rgb(219,8,6)" fg:x="120579" fg:w="102"/><text x="45.3131%" y="767.50"></text></g><g><title>clang::driver::Command::Execute (50 samples, 0.02%)</title><rect x="45.0826%" y="741" width="0.0187%" height="15" fill="rgb(212,47,6)" fg:x="120631" fg:w="50"/><text x="45.3326%" y="751.50"></text></g><g><title>llvm::sys::ExecuteAndWait (48 samples, 0.02%)</title><rect x="45.0833%" y="725" width="0.0179%" height="15" fill="rgb(224,190,4)" fg:x="120633" fg:w="48"/><text x="45.3333%" y="735.50"></text></g><g><title>llvm::sys::Wait (46 samples, 0.02%)</title><rect x="45.0841%" y="709" width="0.0172%" height="15" fill="rgb(239,183,29)" fg:x="120635" fg:w="46"/><text x="45.3341%" y="719.50"></text></g><g><title>__GI___wait4 (45 samples, 0.02%)</title><rect x="45.0844%" y="693" width="0.0168%" height="15" fill="rgb(213,57,7)" fg:x="120636" fg:w="45"/><text x="45.3344%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (43 samples, 0.02%)</title><rect x="45.0852%" y="677" width="0.0161%" height="15" fill="rgb(216,148,1)" fg:x="120638" fg:w="43"/><text x="45.3352%" y="687.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="45.0852%" y="661" width="0.0161%" height="15" fill="rgb(236,182,29)" fg:x="120638" fg:w="43"/><text x="45.3352%" y="671.50"></text></g><g><title>__do_sys_wait4 (42 samples, 0.02%)</title><rect x="45.0855%" y="645" width="0.0157%" height="15" fill="rgb(244,120,48)" fg:x="120639" fg:w="42"/><text x="45.3355%" y="655.50"></text></g><g><title>kernel_wait4 (41 samples, 0.02%)</title><rect x="45.0859%" y="629" width="0.0153%" height="15" fill="rgb(206,71,34)" fg:x="120640" fg:w="41"/><text x="45.3359%" y="639.50"></text></g><g><title>do_wait (41 samples, 0.02%)</title><rect x="45.0859%" y="613" width="0.0153%" height="15" fill="rgb(242,32,6)" fg:x="120640" fg:w="41"/><text x="45.3359%" y="623.50"></text></g><g><title>clang::driver::Driver::ExecuteCompilation (108 samples, 0.04%)</title><rect x="45.0624%" y="789" width="0.0404%" height="15" fill="rgb(241,35,3)" fg:x="120577" fg:w="108"/><text x="45.3124%" y="799.50"></text></g><g><title>exc_page_fault (29 samples, 0.01%)</title><rect x="45.1210%" y="693" width="0.0108%" height="15" fill="rgb(222,62,19)" fg:x="120734" fg:w="29"/><text x="45.3710%" y="703.50"></text></g><g><title>do_user_addr_fault (29 samples, 0.01%)</title><rect x="45.1210%" y="677" width="0.0108%" height="15" fill="rgb(223,110,41)" fg:x="120734" fg:w="29"/><text x="45.3710%" y="687.50"></text></g><g><title>handle_mm_fault (28 samples, 0.01%)</title><rect x="45.1214%" y="661" width="0.0105%" height="15" fill="rgb(208,224,4)" fg:x="120735" fg:w="28"/><text x="45.3714%" y="671.50"></text></g><g><title>asm_exc_page_fault (31 samples, 0.01%)</title><rect x="45.1207%" y="709" width="0.0116%" height="15" fill="rgb(241,137,19)" fg:x="120733" fg:w="31"/><text x="45.3707%" y="719.50"></text></g><g><title>[libc-2.31.so] (54 samples, 0.02%)</title><rect x="45.1136%" y="725" width="0.0202%" height="15" fill="rgb(244,24,17)" fg:x="120714" fg:w="54"/><text x="45.3636%" y="735.50"></text></g><g><title>llvm::opt::OptTable::OptTable (96 samples, 0.04%)</title><rect x="45.1080%" y="741" width="0.0359%" height="15" fill="rgb(245,178,49)" fg:x="120699" fg:w="96"/><text x="45.3580%" y="751.50"></text></g><g><title>[libc-2.31.so] (39 samples, 0.01%)</title><rect x="45.1483%" y="709" width="0.0146%" height="15" fill="rgb(219,160,38)" fg:x="120807" fg:w="39"/><text x="45.3983%" y="719.50"></text></g><g><title>clang::driver::getDriverOptTable (149 samples, 0.06%)</title><rect x="45.1076%" y="773" width="0.0557%" height="15" fill="rgb(228,137,14)" fg:x="120698" fg:w="149"/><text x="45.3576%" y="783.50"></text></g><g><title>clang::driver::getDriverOptTable (148 samples, 0.06%)</title><rect x="45.1080%" y="757" width="0.0553%" height="15" fill="rgb(237,134,11)" fg:x="120699" fg:w="148"/><text x="45.3580%" y="767.50"></text></g><g><title>llvm::opt::OptTable::addValues (52 samples, 0.02%)</title><rect x="45.1438%" y="741" width="0.0194%" height="15" fill="rgb(211,126,44)" fg:x="120795" fg:w="52"/><text x="45.3938%" y="751.50"></text></g><g><title>optionMatches (49 samples, 0.02%)</title><rect x="45.1450%" y="725" width="0.0183%" height="15" fill="rgb(226,171,33)" fg:x="120798" fg:w="49"/><text x="45.3950%" y="735.50"></text></g><g><title>clang::driver::getDriverMode (153 samples, 0.06%)</title><rect x="45.1065%" y="789" width="0.0572%" height="15" fill="rgb(253,99,13)" fg:x="120695" fg:w="153"/><text x="45.3565%" y="799.50"></text></g><g><title>llvm::InitLLVM::~InitLLVM (100 samples, 0.04%)</title><rect x="45.1685%" y="789" width="0.0374%" height="15" fill="rgb(244,48,7)" fg:x="120861" fg:w="100"/><text x="45.4185%" y="799.50"></text></g><g><title>llvm::llvm_shutdown (100 samples, 0.04%)</title><rect x="45.1685%" y="773" width="0.0374%" height="15" fill="rgb(244,217,54)" fg:x="120861" fg:w="100"/><text x="45.4185%" y="783.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (70 samples, 0.03%)</title><rect x="45.1797%" y="757" width="0.0262%" height="15" fill="rgb(224,15,18)" fg:x="120891" fg:w="70"/><text x="45.4297%" y="767.50"></text></g><g><title>LLVMInitializeAArch64Target (28 samples, 0.01%)</title><rect x="45.2059%" y="773" width="0.0105%" height="15" fill="rgb(244,99,12)" fg:x="120961" fg:w="28"/><text x="45.4559%" y="783.50"></text></g><g><title>LLVMInitializeAMDGPUTarget (44 samples, 0.02%)</title><rect x="45.2163%" y="773" width="0.0164%" height="15" fill="rgb(233,226,8)" fg:x="120989" fg:w="44"/><text x="45.4663%" y="783.50"></text></g><g><title>llvm::InitializeAllTargets (185 samples, 0.07%)</title><rect x="45.2059%" y="789" width="0.0691%" height="15" fill="rgb(229,211,3)" fg:x="120961" fg:w="185"/><text x="45.4559%" y="799.50"></text></g><g><title>__libc_start_main (2,117 samples, 0.79%)</title><rect x="44.4966%" y="821" width="0.7912%" height="15" fill="rgb(216,140,21)" fg:x="119063" fg:w="2117"/><text x="44.7466%" y="831.50"></text></g><g><title>main (752 samples, 0.28%)</title><rect x="45.0067%" y="805" width="0.2810%" height="15" fill="rgb(234,122,30)" fg:x="120428" fg:w="752"/><text x="45.2567%" y="815.50"></text></g><g><title>__split_vma (31 samples, 0.01%)</title><rect x="45.3116%" y="517" width="0.0116%" height="15" fill="rgb(236,25,46)" fg:x="121244" fg:w="31"/><text x="45.5616%" y="527.50"></text></g><g><title>__do_munmap (51 samples, 0.02%)</title><rect x="45.3116%" y="533" width="0.0191%" height="15" fill="rgb(217,52,54)" fg:x="121244" fg:w="51"/><text x="45.5616%" y="543.50"></text></g><g><title>do_mmap (75 samples, 0.03%)</title><rect x="45.3087%" y="565" width="0.0280%" height="15" fill="rgb(222,29,26)" fg:x="121236" fg:w="75"/><text x="45.5587%" y="575.50"></text></g><g><title>mmap_region (70 samples, 0.03%)</title><rect x="45.3105%" y="549" width="0.0262%" height="15" fill="rgb(216,177,29)" fg:x="121241" fg:w="70"/><text x="45.5605%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (77 samples, 0.03%)</title><rect x="45.3087%" y="597" width="0.0288%" height="15" fill="rgb(247,136,51)" fg:x="121236" fg:w="77"/><text x="45.5587%" y="607.50"></text></g><g><title>vm_mmap_pgoff (77 samples, 0.03%)</title><rect x="45.3087%" y="581" width="0.0288%" height="15" fill="rgb(231,47,47)" fg:x="121236" fg:w="77"/><text x="45.5587%" y="591.50"></text></g><g><title>_dl_map_segments (94 samples, 0.04%)</title><rect x="45.3034%" y="677" width="0.0351%" height="15" fill="rgb(211,192,36)" fg:x="121222" fg:w="94"/><text x="45.5534%" y="687.50"></text></g><g><title>__mmap64 (81 samples, 0.03%)</title><rect x="45.3083%" y="661" width="0.0303%" height="15" fill="rgb(229,156,32)" fg:x="121235" fg:w="81"/><text x="45.5583%" y="671.50"></text></g><g><title>__mmap64 (81 samples, 0.03%)</title><rect x="45.3083%" y="645" width="0.0303%" height="15" fill="rgb(248,213,20)" fg:x="121235" fg:w="81"/><text x="45.5583%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (81 samples, 0.03%)</title><rect x="45.3083%" y="629" width="0.0303%" height="15" fill="rgb(217,64,7)" fg:x="121235" fg:w="81"/><text x="45.5583%" y="639.50"></text></g><g><title>do_syscall_64 (81 samples, 0.03%)</title><rect x="45.3083%" y="613" width="0.0303%" height="15" fill="rgb(232,142,8)" fg:x="121235" fg:w="81"/><text x="45.5583%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (131 samples, 0.05%)</title><rect x="45.3008%" y="693" width="0.0490%" height="15" fill="rgb(224,92,44)" fg:x="121215" fg:w="131"/><text x="45.5508%" y="703.50"></text></g><g><title>open_path (27 samples, 0.01%)</title><rect x="45.3513%" y="693" width="0.0101%" height="15" fill="rgb(214,169,17)" fg:x="121350" fg:w="27"/><text x="45.6013%" y="703.50"></text></g><g><title>_dl_catch_exception (195 samples, 0.07%)</title><rect x="45.2937%" y="741" width="0.0729%" height="15" fill="rgb(210,59,37)" fg:x="121196" fg:w="195"/><text x="45.5437%" y="751.50"></text></g><g><title>openaux (193 samples, 0.07%)</title><rect x="45.2945%" y="725" width="0.0721%" height="15" fill="rgb(214,116,48)" fg:x="121198" fg:w="193"/><text x="45.5445%" y="735.50"></text></g><g><title>_dl_map_object (193 samples, 0.07%)</title><rect x="45.2945%" y="709" width="0.0721%" height="15" fill="rgb(244,191,6)" fg:x="121198" fg:w="193"/><text x="45.5445%" y="719.50"></text></g><g><title>_dl_map_object_deps (204 samples, 0.08%)</title><rect x="45.2930%" y="757" width="0.0762%" height="15" fill="rgb(241,50,52)" fg:x="121194" fg:w="204"/><text x="45.5430%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="45.3741%" y="709" width="0.0142%" height="15" fill="rgb(236,75,39)" fg:x="121411" fg:w="38"/><text x="45.6241%" y="719.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="45.3741%" y="693" width="0.0142%" height="15" fill="rgb(236,99,0)" fg:x="121411" fg:w="38"/><text x="45.6241%" y="703.50"></text></g><g><title>__x64_sys_mprotect (38 samples, 0.01%)</title><rect x="45.3741%" y="677" width="0.0142%" height="15" fill="rgb(207,202,15)" fg:x="121411" fg:w="38"/><text x="45.6241%" y="687.50"></text></g><g><title>do_mprotect_pkey (38 samples, 0.01%)</title><rect x="45.3741%" y="661" width="0.0142%" height="15" fill="rgb(233,207,14)" fg:x="121411" fg:w="38"/><text x="45.6241%" y="671.50"></text></g><g><title>mprotect_fixup (35 samples, 0.01%)</title><rect x="45.3752%" y="645" width="0.0131%" height="15" fill="rgb(226,27,51)" fg:x="121414" fg:w="35"/><text x="45.6252%" y="655.50"></text></g><g><title>_dl_protect_relro (42 samples, 0.02%)</title><rect x="45.3729%" y="741" width="0.0157%" height="15" fill="rgb(206,104,42)" fg:x="121408" fg:w="42"/><text x="45.6229%" y="751.50"></text></g><g><title>__mprotect (42 samples, 0.02%)</title><rect x="45.3729%" y="725" width="0.0157%" height="15" fill="rgb(212,225,4)" fg:x="121408" fg:w="42"/><text x="45.6229%" y="735.50"></text></g><g><title>dl_new_hash (101 samples, 0.04%)</title><rect x="45.4596%" y="693" width="0.0377%" height="15" fill="rgb(233,96,42)" fg:x="121640" fg:w="101"/><text x="45.7096%" y="703.50"></text></g><g><title>check_match (36 samples, 0.01%)</title><rect x="45.5665%" y="677" width="0.0135%" height="15" fill="rgb(229,21,32)" fg:x="121926" fg:w="36"/><text x="45.8165%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (357 samples, 0.13%)</title><rect x="45.4507%" y="709" width="0.1334%" height="15" fill="rgb(226,216,24)" fg:x="121616" fg:w="357"/><text x="45.7007%" y="719.50"></text></g><g><title>do_lookup_x (232 samples, 0.09%)</title><rect x="45.4974%" y="693" width="0.0867%" height="15" fill="rgb(221,163,17)" fg:x="121741" fg:w="232"/><text x="45.7474%" y="703.50"></text></g><g><title>filemap_fault (32 samples, 0.01%)</title><rect x="45.6002%" y="629" width="0.0120%" height="15" fill="rgb(216,216,42)" fg:x="122016" fg:w="32"/><text x="45.8502%" y="639.50"></text></g><g><title>__do_fault (36 samples, 0.01%)</title><rect x="45.5998%" y="645" width="0.0135%" height="15" fill="rgb(240,118,7)" fg:x="122015" fg:w="36"/><text x="45.8498%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (65 samples, 0.02%)</title><rect x="45.6140%" y="629" width="0.0243%" height="15" fill="rgb(221,67,37)" fg:x="122053" fg:w="65"/><text x="45.8640%" y="639.50"></text></g><g><title>get_page_from_freelist (61 samples, 0.02%)</title><rect x="45.6155%" y="613" width="0.0228%" height="15" fill="rgb(241,32,44)" fg:x="122057" fg:w="61"/><text x="45.8655%" y="623.50"></text></g><g><title>prep_new_page (40 samples, 0.01%)</title><rect x="45.6233%" y="597" width="0.0149%" height="15" fill="rgb(235,204,43)" fg:x="122078" fg:w="40"/><text x="45.8733%" y="607.50"></text></g><g><title>kernel_init_free_pages (40 samples, 0.01%)</title><rect x="45.6233%" y="581" width="0.0149%" height="15" fill="rgb(213,116,10)" fg:x="122078" fg:w="40"/><text x="45.8733%" y="591.50"></text></g><g><title>clear_page_erms (40 samples, 0.01%)</title><rect x="45.6233%" y="565" width="0.0149%" height="15" fill="rgb(239,15,48)" fg:x="122078" fg:w="40"/><text x="45.8733%" y="575.50"></text></g><g><title>alloc_pages_vma (70 samples, 0.03%)</title><rect x="45.6132%" y="645" width="0.0262%" height="15" fill="rgb(207,123,36)" fg:x="122051" fg:w="70"/><text x="45.8632%" y="655.50"></text></g><g><title>copy_page (76 samples, 0.03%)</title><rect x="45.6405%" y="645" width="0.0284%" height="15" fill="rgb(209,103,30)" fg:x="122124" fg:w="76"/><text x="45.8905%" y="655.50"></text></g><g><title>finish_fault (36 samples, 0.01%)</title><rect x="45.6738%" y="645" width="0.0135%" height="15" fill="rgb(238,100,19)" fg:x="122213" fg:w="36"/><text x="45.9238%" y="655.50"></text></g><g><title>alloc_set_pte (36 samples, 0.01%)</title><rect x="45.6738%" y="629" width="0.0135%" height="15" fill="rgb(244,30,14)" fg:x="122213" fg:w="36"/><text x="45.9238%" y="639.50"></text></g><g><title>handle_mm_fault (290 samples, 0.11%)</title><rect x="45.5901%" y="661" width="0.1084%" height="15" fill="rgb(249,174,6)" fg:x="121989" fg:w="290"/><text x="45.8401%" y="671.50"></text></g><g><title>exc_page_fault (305 samples, 0.11%)</title><rect x="45.5860%" y="693" width="0.1140%" height="15" fill="rgb(235,213,41)" fg:x="121978" fg:w="305"/><text x="45.8360%" y="703.50"></text></g><g><title>do_user_addr_fault (305 samples, 0.11%)</title><rect x="45.5860%" y="677" width="0.1140%" height="15" fill="rgb(213,118,6)" fg:x="121978" fg:w="305"/><text x="45.8360%" y="687.50"></text></g><g><title>asm_exc_page_fault (313 samples, 0.12%)</title><rect x="45.5841%" y="709" width="0.1170%" height="15" fill="rgb(235,44,51)" fg:x="121973" fg:w="313"/><text x="45.8341%" y="719.50"></text></g><g><title>elf_machine_rela (817 samples, 0.31%)</title><rect x="45.4036%" y="725" width="0.3053%" height="15" fill="rgb(217,9,53)" fg:x="121490" fg:w="817"/><text x="45.6536%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (882 samples, 0.33%)</title><rect x="45.3886%" y="741" width="0.3296%" height="15" fill="rgb(237,172,34)" fg:x="121450" fg:w="882"/><text x="45.6386%" y="751.50"></text></g><g><title>_dl_relocate_object (932 samples, 0.35%)</title><rect x="45.3729%" y="757" width="0.3483%" height="15" fill="rgb(206,206,11)" fg:x="121408" fg:w="932"/><text x="45.6229%" y="767.50"></text></g><g><title>[ld-2.31.so] (1,178 samples, 0.44%)</title><rect x="45.2877%" y="773" width="0.4402%" height="15" fill="rgb(214,149,29)" fg:x="121180" fg:w="1178"/><text x="45.5377%" y="783.50"></text></g><g><title>_dl_start_final (1,186 samples, 0.44%)</title><rect x="45.2877%" y="805" width="0.4432%" height="15" fill="rgb(208,123,3)" fg:x="121180" fg:w="1186"/><text x="45.5377%" y="815.50"></text></g><g><title>_dl_sysdep_start (1,186 samples, 0.44%)</title><rect x="45.2877%" y="789" width="0.4432%" height="15" fill="rgb(229,126,4)" fg:x="121180" fg:w="1186"/><text x="45.5377%" y="799.50"></text></g><g><title>_dl_start (1,190 samples, 0.44%)</title><rect x="45.2877%" y="821" width="0.4447%" height="15" fill="rgb(222,92,36)" fg:x="121180" fg:w="1190"/><text x="45.5377%" y="831.50"></text></g><g><title>_start (3,312 samples, 1.24%)</title><rect x="44.4966%" y="837" width="1.2378%" height="15" fill="rgb(216,39,41)" fg:x="119063" fg:w="3312"/><text x="44.7466%" y="847.50"></text></g><g><title>asm_exc_page_fault (295 samples, 0.11%)</title><rect x="45.7343%" y="837" width="0.1102%" height="15" fill="rgb(253,127,28)" fg:x="122375" fg:w="295"/><text x="45.9843%" y="847.50"></text></g><g><title>free_unref_page_list (29 samples, 0.01%)</title><rect x="45.8984%" y="693" width="0.0108%" height="15" fill="rgb(249,152,51)" fg:x="122814" fg:w="29"/><text x="46.1484%" y="703.50"></text></g><g><title>tlb_finish_mmu (96 samples, 0.04%)</title><rect x="45.8752%" y="725" width="0.0359%" height="15" fill="rgb(209,123,42)" fg:x="122752" fg:w="96"/><text x="46.1252%" y="735.50"></text></g><g><title>release_pages (73 samples, 0.03%)</title><rect x="45.8838%" y="709" width="0.0273%" height="15" fill="rgb(241,118,22)" fg:x="122775" fg:w="73"/><text x="46.1338%" y="719.50"></text></g><g><title>__tlb_remove_page_size (39 samples, 0.01%)</title><rect x="45.9862%" y="693" width="0.0146%" height="15" fill="rgb(208,25,7)" fg:x="123049" fg:w="39"/><text x="46.2362%" y="703.50"></text></g><g><title>mark_page_accessed (42 samples, 0.02%)</title><rect x="46.0030%" y="693" width="0.0157%" height="15" fill="rgb(243,144,39)" fg:x="123094" fg:w="42"/><text x="46.2530%" y="703.50"></text></g><g><title>page_remove_rmap (154 samples, 0.06%)</title><rect x="46.0187%" y="693" width="0.0576%" height="15" fill="rgb(250,50,5)" fg:x="123136" fg:w="154"/><text x="46.2687%" y="703.50"></text></g><g><title>free_pages_and_swap_cache (40 samples, 0.01%)</title><rect x="46.0767%" y="677" width="0.0149%" height="15" fill="rgb(207,67,11)" fg:x="123291" fg:w="40"/><text x="46.3267%" y="687.50"></text></g><g><title>tlb_flush_mmu (129 samples, 0.05%)</title><rect x="46.0763%" y="693" width="0.0482%" height="15" fill="rgb(245,204,40)" fg:x="123290" fg:w="129"/><text x="46.3263%" y="703.50"></text></g><g><title>release_pages (88 samples, 0.03%)</title><rect x="46.0916%" y="677" width="0.0329%" height="15" fill="rgb(238,228,24)" fg:x="123331" fg:w="88"/><text x="46.3416%" y="687.50"></text></g><g><title>unmap_page_range (610 samples, 0.23%)</title><rect x="45.9115%" y="709" width="0.2280%" height="15" fill="rgb(217,116,22)" fg:x="122849" fg:w="610"/><text x="46.1615%" y="719.50"></text></g><g><title>mmput (742 samples, 0.28%)</title><rect x="45.8629%" y="757" width="0.2773%" height="15" fill="rgb(234,98,12)" fg:x="122719" fg:w="742"/><text x="46.1129%" y="767.50"></text></g><g><title>exit_mmap (742 samples, 0.28%)</title><rect x="45.8629%" y="741" width="0.2773%" height="15" fill="rgb(242,170,50)" fg:x="122719" fg:w="742"/><text x="46.1129%" y="751.50"></text></g><g><title>unmap_vmas (613 samples, 0.23%)</title><rect x="45.9111%" y="725" width="0.2291%" height="15" fill="rgb(235,7,5)" fg:x="122848" fg:w="613"/><text x="46.1611%" y="735.50"></text></g><g><title>__x64_sys_exit_group (751 samples, 0.28%)</title><rect x="45.8621%" y="805" width="0.2807%" height="15" fill="rgb(241,114,28)" fg:x="122717" fg:w="751"/><text x="46.1121%" y="815.50"></text></g><g><title>do_group_exit (751 samples, 0.28%)</title><rect x="45.8621%" y="789" width="0.2807%" height="15" fill="rgb(246,112,42)" fg:x="122717" fg:w="751"/><text x="46.1121%" y="799.50"></text></g><g><title>do_exit (751 samples, 0.28%)</title><rect x="45.8621%" y="773" width="0.2807%" height="15" fill="rgb(248,228,14)" fg:x="122717" fg:w="751"/><text x="46.1121%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (780 samples, 0.29%)</title><rect x="45.8521%" y="837" width="0.2915%" height="15" fill="rgb(208,133,18)" fg:x="122690" fg:w="780"/><text x="46.1021%" y="847.50"></text></g><g><title>do_syscall_64 (778 samples, 0.29%)</title><rect x="45.8528%" y="821" width="0.2908%" height="15" fill="rgb(207,35,49)" fg:x="122692" fg:w="778"/><text x="46.1028%" y="831.50"></text></g><g><title>clang (9,227 samples, 3.45%)</title><rect x="42.7042%" y="853" width="3.4483%" height="15" fill="rgb(205,68,36)" fg:x="114267" fg:w="9227"/><text x="42.9542%" y="863.50">cla..</text></g><g><title>[perf-21254.map] (538 samples, 0.20%)</title><rect x="46.1559%" y="837" width="0.2011%" height="15" fill="rgb(245,62,40)" fg:x="123503" fg:w="538"/><text x="46.4059%" y="847.50"></text></g><g><title>find-action-loo (583 samples, 0.22%)</title><rect x="46.1536%" y="853" width="0.2179%" height="15" fill="rgb(228,27,24)" fg:x="123497" fg:w="583"/><text x="46.4036%" y="863.50"></text></g><g><title>__GI___clone (31 samples, 0.01%)</title><rect x="46.3599%" y="837" width="0.0116%" height="15" fill="rgb(253,19,12)" fg:x="124049" fg:w="31"/><text x="46.6099%" y="847.50"></text></g><g><title>globbing_pool-0 (43 samples, 0.02%)</title><rect x="46.3715%" y="853" width="0.0161%" height="15" fill="rgb(232,28,20)" fg:x="124080" fg:w="43"/><text x="46.6215%" y="863.50"></text></g><g><title>[libunix_jni.so] (44 samples, 0.02%)</title><rect x="46.3910%" y="837" width="0.0164%" height="15" fill="rgb(218,35,51)" fg:x="124132" fg:w="44"/><text x="46.6410%" y="847.50"></text></g><g><title>JVM_StartThread (27 samples, 0.01%)</title><rect x="46.4642%" y="821" width="0.0101%" height="15" fill="rgb(212,90,40)" fg:x="124328" fg:w="27"/><text x="46.7142%" y="831.50"></text></g><g><title>[perf-21254.map] (250 samples, 0.09%)</title><rect x="46.4074%" y="837" width="0.0934%" height="15" fill="rgb(220,172,12)" fg:x="124176" fg:w="250"/><text x="46.6574%" y="847.50"></text></g><g><title>__GI___clone (45 samples, 0.02%)</title><rect x="46.5008%" y="837" width="0.0168%" height="15" fill="rgb(226,159,20)" fg:x="124426" fg:w="45"/><text x="46.7508%" y="847.50"></text></g><g><title>globbing_pool-1 (350 samples, 0.13%)</title><rect x="46.3876%" y="853" width="0.1308%" height="15" fill="rgb(234,205,16)" fg:x="124123" fg:w="350"/><text x="46.6376%" y="863.50"></text></g><g><title>[libunix_jni.so] (38 samples, 0.01%)</title><rect x="46.5199%" y="837" width="0.0142%" height="15" fill="rgb(207,9,39)" fg:x="124477" fg:w="38"/><text x="46.7699%" y="847.50"></text></g><g><title>[perf-21254.map] (171 samples, 0.06%)</title><rect x="46.5341%" y="837" width="0.0639%" height="15" fill="rgb(249,143,15)" fg:x="124515" fg:w="171"/><text x="46.7841%" y="847.50"></text></g><g><title>__GI___clone (62 samples, 0.02%)</title><rect x="46.5995%" y="837" width="0.0232%" height="15" fill="rgb(253,133,29)" fg:x="124690" fg:w="62"/><text x="46.8495%" y="847.50"></text></g><g><title>start_thread (37 samples, 0.01%)</title><rect x="46.6088%" y="821" width="0.0138%" height="15" fill="rgb(221,187,0)" fg:x="124715" fg:w="37"/><text x="46.8588%" y="831.50"></text></g><g><title>thread_native_entry (36 samples, 0.01%)</title><rect x="46.6092%" y="805" width="0.0135%" height="15" fill="rgb(205,204,26)" fg:x="124716" fg:w="36"/><text x="46.8592%" y="815.50"></text></g><g><title>globbing_pool-2 (280 samples, 0.10%)</title><rect x="46.5184%" y="853" width="0.1046%" height="15" fill="rgb(224,68,54)" fg:x="124473" fg:w="280"/><text x="46.7684%" y="863.50"></text></g><g><title>[libunix_jni.so] (38 samples, 0.01%)</title><rect x="46.6272%" y="837" width="0.0142%" height="15" fill="rgb(209,67,4)" fg:x="124764" fg:w="38"/><text x="46.8772%" y="847.50"></text></g><g><title>[perf-21254.map] (191 samples, 0.07%)</title><rect x="46.6414%" y="837" width="0.0714%" height="15" fill="rgb(228,229,18)" fg:x="124802" fg:w="191"/><text x="46.8914%" y="847.50"></text></g><g><title>Thread::call_run (27 samples, 0.01%)</title><rect x="46.7352%" y="789" width="0.0101%" height="15" fill="rgb(231,89,13)" fg:x="125053" fg:w="27"/><text x="46.9852%" y="799.50"></text></g><g><title>__GI___clone (73 samples, 0.03%)</title><rect x="46.7191%" y="837" width="0.0273%" height="15" fill="rgb(210,182,18)" fg:x="125010" fg:w="73"/><text x="46.9691%" y="847.50"></text></g><g><title>start_thread (46 samples, 0.02%)</title><rect x="46.7292%" y="821" width="0.0172%" height="15" fill="rgb(240,105,2)" fg:x="125037" fg:w="46"/><text x="46.9792%" y="831.50"></text></g><g><title>thread_native_entry (46 samples, 0.02%)</title><rect x="46.7292%" y="805" width="0.0172%" height="15" fill="rgb(207,170,50)" fg:x="125037" fg:w="46"/><text x="46.9792%" y="815.50"></text></g><g><title>globbing_pool-3 (332 samples, 0.12%)</title><rect x="46.6230%" y="853" width="0.1241%" height="15" fill="rgb(232,133,24)" fg:x="124753" fg:w="332"/><text x="46.8730%" y="863.50"></text></g><g><title>[libunix_jni.so] (31 samples, 0.01%)</title><rect x="46.7486%" y="837" width="0.0116%" height="15" fill="rgb(235,166,27)" fg:x="125089" fg:w="31"/><text x="46.9986%" y="847.50"></text></g><g><title>[perf-21254.map] (155 samples, 0.06%)</title><rect x="46.7602%" y="837" width="0.0579%" height="15" fill="rgb(209,19,13)" fg:x="125120" fg:w="155"/><text x="47.0102%" y="847.50"></text></g><g><title>globbing_pool-4 (215 samples, 0.08%)</title><rect x="46.7471%" y="853" width="0.0804%" height="15" fill="rgb(226,79,39)" fg:x="125085" fg:w="215"/><text x="46.9971%" y="863.50"></text></g><g><title>[libunix_jni.so] (61 samples, 0.02%)</title><rect x="46.8293%" y="837" width="0.0228%" height="15" fill="rgb(222,163,10)" fg:x="125305" fg:w="61"/><text x="47.0793%" y="847.50"></text></g><g><title>[perf-21254.map] (234 samples, 0.09%)</title><rect x="46.8521%" y="837" width="0.0875%" height="15" fill="rgb(214,44,19)" fg:x="125366" fg:w="234"/><text x="47.1021%" y="847.50"></text></g><g><title>globbing_pool-5 (312 samples, 0.12%)</title><rect x="46.8275%" y="853" width="0.1166%" height="15" fill="rgb(210,217,13)" fg:x="125300" fg:w="312"/><text x="47.0775%" y="863.50"></text></g><g><title>[libunix_jni.so] (28 samples, 0.01%)</title><rect x="46.9463%" y="837" width="0.0105%" height="15" fill="rgb(237,61,54)" fg:x="125618" fg:w="28"/><text x="47.1963%" y="847.50"></text></g><g><title>[perf-21254.map] (127 samples, 0.05%)</title><rect x="46.9568%" y="837" width="0.0475%" height="15" fill="rgb(226,184,24)" fg:x="125646" fg:w="127"/><text x="47.2068%" y="847.50"></text></g><g><title>globbing_pool-6 (188 samples, 0.07%)</title><rect x="46.9441%" y="853" width="0.0703%" height="15" fill="rgb(223,226,4)" fg:x="125612" fg:w="188"/><text x="47.1941%" y="863.50"></text></g><g><title>[libunix_jni.so] (35 samples, 0.01%)</title><rect x="47.0169%" y="837" width="0.0131%" height="15" fill="rgb(210,26,41)" fg:x="125807" fg:w="35"/><text x="47.2669%" y="847.50"></text></g><g><title>[perf-21254.map] (237 samples, 0.09%)</title><rect x="47.0300%" y="837" width="0.0886%" height="15" fill="rgb(220,221,6)" fg:x="125842" fg:w="237"/><text x="47.2800%" y="847.50"></text></g><g><title>globbing_pool-7 (293 samples, 0.11%)</title><rect x="47.0143%" y="853" width="0.1095%" height="15" fill="rgb(225,89,49)" fg:x="125800" fg:w="293"/><text x="47.2643%" y="863.50"></text></g><g><title>[libunix_jni.so] (30 samples, 0.01%)</title><rect x="47.1246%" y="837" width="0.0112%" height="15" fill="rgb(218,70,45)" fg:x="126095" fg:w="30"/><text x="47.3746%" y="847.50"></text></g><g><title>[perf-21254.map] (168 samples, 0.06%)</title><rect x="47.1358%" y="837" width="0.0628%" height="15" fill="rgb(238,166,21)" fg:x="126125" fg:w="168"/><text x="47.3858%" y="847.50"></text></g><g><title>globbing_pool-8 (214 samples, 0.08%)</title><rect x="47.1238%" y="853" width="0.0800%" height="15" fill="rgb(224,141,44)" fg:x="126093" fg:w="214"/><text x="47.3738%" y="863.50"></text></g><g><title>[perf-21254.map] (160 samples, 0.06%)</title><rect x="47.2128%" y="837" width="0.0598%" height="15" fill="rgb(230,12,49)" fg:x="126331" fg:w="160"/><text x="47.4628%" y="847.50"></text></g><g><title>globbing_pool-9 (213 samples, 0.08%)</title><rect x="47.2038%" y="853" width="0.0796%" height="15" fill="rgb(212,174,12)" fg:x="126307" fg:w="213"/><text x="47.4538%" y="863.50"></text></g><g><title>[anon] (212 samples, 0.08%)</title><rect x="47.2879%" y="837" width="0.0792%" height="15" fill="rgb(246,67,9)" fg:x="126532" fg:w="212"/><text x="47.5379%" y="847.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (29 samples, 0.01%)</title><rect x="48.1291%" y="661" width="0.0108%" height="15" fill="rgb(239,35,23)" fg:x="128783" fg:w="29"/><text x="48.3791%" y="671.50"></text></g><g><title>ClassFileParser::parse_constant_pool (31 samples, 0.01%)</title><rect x="48.1288%" y="677" width="0.0116%" height="15" fill="rgb(211,167,0)" fg:x="128782" fg:w="31"/><text x="48.3788%" y="687.50"></text></g><g><title>ClassFileParser::ClassFileParser (59 samples, 0.02%)</title><rect x="48.1280%" y="709" width="0.0220%" height="15" fill="rgb(225,119,45)" fg:x="128780" fg:w="59"/><text x="48.3780%" y="719.50"></text></g><g><title>ClassFileParser::parse_stream (59 samples, 0.02%)</title><rect x="48.1280%" y="693" width="0.0220%" height="15" fill="rgb(210,162,6)" fg:x="128780" fg:w="59"/><text x="48.3780%" y="703.50"></text></g><g><title>ClassLoader::load_class (117 samples, 0.04%)</title><rect x="48.1254%" y="741" width="0.0437%" height="15" fill="rgb(208,118,35)" fg:x="128773" fg:w="117"/><text x="48.3754%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (111 samples, 0.04%)</title><rect x="48.1276%" y="725" width="0.0415%" height="15" fill="rgb(239,4,53)" fg:x="128779" fg:w="111"/><text x="48.3776%" y="735.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (34 samples, 0.01%)</title><rect x="48.1564%" y="709" width="0.0127%" height="15" fill="rgb(213,130,21)" fg:x="128856" fg:w="34"/><text x="48.4064%" y="719.50"></text></g><g><title>ConstantPool::klass_at_impl (145 samples, 0.05%)</title><rect x="48.1217%" y="805" width="0.0542%" height="15" fill="rgb(235,148,0)" fg:x="128763" fg:w="145"/><text x="48.3717%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_fail (143 samples, 0.05%)</title><rect x="48.1224%" y="789" width="0.0534%" height="15" fill="rgb(244,224,18)" fg:x="128765" fg:w="143"/><text x="48.3724%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (143 samples, 0.05%)</title><rect x="48.1224%" y="773" width="0.0534%" height="15" fill="rgb(211,214,4)" fg:x="128765" fg:w="143"/><text x="48.3724%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (136 samples, 0.05%)</title><rect x="48.1250%" y="757" width="0.0508%" height="15" fill="rgb(206,119,25)" fg:x="128772" fg:w="136"/><text x="48.3750%" y="767.50"></text></g><g><title>InstanceKlass::link_methods (30 samples, 0.01%)</title><rect x="48.1893%" y="773" width="0.0112%" height="15" fill="rgb(243,93,47)" fg:x="128944" fg:w="30"/><text x="48.4393%" y="783.50"></text></g><g><title>Method::link_method (30 samples, 0.01%)</title><rect x="48.1893%" y="757" width="0.0112%" height="15" fill="rgb(224,194,6)" fg:x="128944" fg:w="30"/><text x="48.4393%" y="767.50"></text></g><g><title>Rewriter::rewrite_bytecodes (27 samples, 0.01%)</title><rect x="48.2058%" y="741" width="0.0101%" height="15" fill="rgb(243,229,6)" fg:x="128988" fg:w="27"/><text x="48.4558%" y="751.50"></text></g><g><title>Rewriter::rewrite (40 samples, 0.01%)</title><rect x="48.2013%" y="773" width="0.0149%" height="15" fill="rgb(207,23,50)" fg:x="128976" fg:w="40"/><text x="48.4513%" y="783.50"></text></g><g><title>Rewriter::Rewriter (40 samples, 0.01%)</title><rect x="48.2013%" y="757" width="0.0149%" height="15" fill="rgb(253,192,32)" fg:x="128976" fg:w="40"/><text x="48.4513%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (118 samples, 0.04%)</title><rect x="48.1796%" y="789" width="0.0441%" height="15" fill="rgb(213,21,6)" fg:x="128918" fg:w="118"/><text x="48.4296%" y="799.50"></text></g><g><title>InterpreterRuntime::_new (276 samples, 0.10%)</title><rect x="48.1213%" y="821" width="0.1031%" height="15" fill="rgb(243,151,13)" fg:x="128762" fg:w="276"/><text x="48.3713%" y="831.50"></text></g><g><title>InstanceKlass::initialize_impl (125 samples, 0.05%)</title><rect x="48.1777%" y="805" width="0.0467%" height="15" fill="rgb(233,165,41)" fg:x="128913" fg:w="125"/><text x="48.4277%" y="815.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (43 samples, 0.02%)</title><rect x="48.2383%" y="821" width="0.0161%" height="15" fill="rgb(246,176,45)" fg:x="129075" fg:w="43"/><text x="48.4883%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (43 samples, 0.02%)</title><rect x="48.2383%" y="805" width="0.0161%" height="15" fill="rgb(217,170,52)" fg:x="129075" fg:w="43"/><text x="48.4883%" y="815.50"></text></g><g><title>TieredThresholdPolicy::event (37 samples, 0.01%)</title><rect x="48.2405%" y="789" width="0.0138%" height="15" fill="rgb(214,203,54)" fg:x="129081" fg:w="37"/><text x="48.4905%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (32 samples, 0.01%)</title><rect x="48.2424%" y="773" width="0.0120%" height="15" fill="rgb(248,215,49)" fg:x="129086" fg:w="32"/><text x="48.4924%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (27 samples, 0.01%)</title><rect x="48.2910%" y="741" width="0.0101%" height="15" fill="rgb(208,46,10)" fg:x="129216" fg:w="27"/><text x="48.5410%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (31 samples, 0.01%)</title><rect x="48.2906%" y="757" width="0.0116%" height="15" fill="rgb(254,5,31)" fg:x="129215" fg:w="31"/><text x="48.5406%" y="767.50"></text></g><g><title>LinkResolver::resolve_field_access (78 samples, 0.03%)</title><rect x="48.2749%" y="789" width="0.0292%" height="15" fill="rgb(222,104,33)" fg:x="129173" fg:w="78"/><text x="48.5249%" y="799.50"></text></g><g><title>LinkResolver::resolve_field (57 samples, 0.02%)</title><rect x="48.2827%" y="773" width="0.0213%" height="15" fill="rgb(248,49,16)" fg:x="129194" fg:w="57"/><text x="48.5327%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (90 samples, 0.03%)</title><rect x="48.2719%" y="805" width="0.0336%" height="15" fill="rgb(232,198,41)" fg:x="129165" fg:w="90"/><text x="48.5219%" y="815.50"></text></g><g><title>ClassFileParser::parse_constant_pool (33 samples, 0.01%)</title><rect x="48.3272%" y="645" width="0.0123%" height="15" fill="rgb(214,125,3)" fg:x="129313" fg:w="33"/><text x="48.5772%" y="655.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (32 samples, 0.01%)</title><rect x="48.3276%" y="629" width="0.0120%" height="15" fill="rgb(229,220,28)" fg:x="129314" fg:w="32"/><text x="48.5776%" y="639.50"></text></g><g><title>SymbolTable::lookup_only (28 samples, 0.01%)</title><rect x="48.3291%" y="613" width="0.0105%" height="15" fill="rgb(222,64,37)" fg:x="129318" fg:w="28"/><text x="48.5791%" y="623.50"></text></g><g><title>ClassFileParser::ClassFileParser (45 samples, 0.02%)</title><rect x="48.3272%" y="677" width="0.0168%" height="15" fill="rgb(249,184,13)" fg:x="129313" fg:w="45"/><text x="48.5772%" y="687.50"></text></g><g><title>ClassFileParser::parse_stream (45 samples, 0.02%)</title><rect x="48.3272%" y="661" width="0.0168%" height="15" fill="rgb(252,176,6)" fg:x="129313" fg:w="45"/><text x="48.5772%" y="671.50"></text></g><g><title>ClassLoader::load_class (55 samples, 0.02%)</title><rect x="48.3261%" y="709" width="0.0206%" height="15" fill="rgb(228,153,7)" fg:x="129310" fg:w="55"/><text x="48.5761%" y="719.50"></text></g><g><title>KlassFactory::create_from_stream (52 samples, 0.02%)</title><rect x="48.3272%" y="693" width="0.0194%" height="15" fill="rgb(242,193,5)" fg:x="129313" fg:w="52"/><text x="48.5772%" y="703.50"></text></g><g><title>SystemDictionary::load_instance_class (59 samples, 0.02%)</title><rect x="48.3261%" y="725" width="0.0220%" height="15" fill="rgb(232,140,9)" fg:x="129310" fg:w="59"/><text x="48.5761%" y="735.50"></text></g><g><title>SystemDictionary::resolve_or_fail (71 samples, 0.03%)</title><rect x="48.3220%" y="757" width="0.0265%" height="15" fill="rgb(213,222,16)" fg:x="129299" fg:w="71"/><text x="48.5720%" y="767.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (70 samples, 0.03%)</title><rect x="48.3224%" y="741" width="0.0262%" height="15" fill="rgb(222,75,50)" fg:x="129300" fg:w="70"/><text x="48.5724%" y="751.50"></text></g><g><title>ConstantPool::klass_ref_at (83 samples, 0.03%)</title><rect x="48.3179%" y="773" width="0.0310%" height="15" fill="rgb(205,180,2)" fg:x="129288" fg:w="83"/><text x="48.5679%" y="783.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (36 samples, 0.01%)</title><rect x="48.3586%" y="773" width="0.0135%" height="15" fill="rgb(216,34,7)" fg:x="129397" fg:w="36"/><text x="48.6086%" y="783.50"></text></g><g><title>Rewriter::rewrite_bytecodes (29 samples, 0.01%)</title><rect x="48.3881%" y="693" width="0.0108%" height="15" fill="rgb(253,16,32)" fg:x="129476" fg:w="29"/><text x="48.6381%" y="703.50"></text></g><g><title>Rewriter::rewrite (35 samples, 0.01%)</title><rect x="48.3863%" y="725" width="0.0131%" height="15" fill="rgb(208,97,28)" fg:x="129471" fg:w="35"/><text x="48.6363%" y="735.50"></text></g><g><title>Rewriter::Rewriter (35 samples, 0.01%)</title><rect x="48.3863%" y="709" width="0.0131%" height="15" fill="rgb(225,92,11)" fg:x="129471" fg:w="35"/><text x="48.6363%" y="719.50"></text></g><g><title>InstanceKlass::initialize_impl (79 samples, 0.03%)</title><rect x="48.3736%" y="757" width="0.0295%" height="15" fill="rgb(243,38,12)" fg:x="129437" fg:w="79"/><text x="48.6236%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (77 samples, 0.03%)</title><rect x="48.3743%" y="741" width="0.0288%" height="15" fill="rgb(208,139,16)" fg:x="129439" fg:w="77"/><text x="48.6243%" y="751.50"></text></g><g><title>LinkResolver::resolve_static_call (103 samples, 0.04%)</title><rect x="48.3721%" y="773" width="0.0385%" height="15" fill="rgb(227,24,9)" fg:x="129433" fg:w="103"/><text x="48.6221%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (258 samples, 0.10%)</title><rect x="48.3164%" y="789" width="0.0964%" height="15" fill="rgb(206,62,11)" fg:x="129284" fg:w="258"/><text x="48.5664%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (293 samples, 0.11%)</title><rect x="48.3055%" y="805" width="0.1095%" height="15" fill="rgb(228,134,27)" fg:x="129255" fg:w="293"/><text x="48.5555%" y="815.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (28 samples, 0.01%)</title><rect x="48.4154%" y="741" width="0.0105%" height="15" fill="rgb(205,55,33)" fg:x="129549" fg:w="28"/><text x="48.6654%" y="751.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (28 samples, 0.01%)</title><rect x="48.4154%" y="725" width="0.0105%" height="15" fill="rgb(243,75,43)" fg:x="129549" fg:w="28"/><text x="48.6654%" y="735.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (41 samples, 0.02%)</title><rect x="48.4154%" y="757" width="0.0153%" height="15" fill="rgb(223,27,42)" fg:x="129549" fg:w="41"/><text x="48.6654%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (52 samples, 0.02%)</title><rect x="48.4150%" y="805" width="0.0194%" height="15" fill="rgb(232,189,33)" fg:x="129548" fg:w="52"/><text x="48.6650%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (51 samples, 0.02%)</title><rect x="48.4154%" y="789" width="0.0191%" height="15" fill="rgb(210,9,39)" fg:x="129549" fg:w="51"/><text x="48.6654%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (51 samples, 0.02%)</title><rect x="48.4154%" y="773" width="0.0191%" height="15" fill="rgb(242,85,26)" fg:x="129549" fg:w="51"/><text x="48.6654%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (441 samples, 0.16%)</title><rect x="48.2704%" y="821" width="0.1648%" height="15" fill="rgb(248,44,4)" fg:x="129161" fg:w="441"/><text x="48.5204%" y="831.50"></text></g><g><title>InterpreterRuntime::resolve_ldc (28 samples, 0.01%)</title><rect x="48.4352%" y="821" width="0.0105%" height="15" fill="rgb(250,96,46)" fg:x="129602" fg:w="28"/><text x="48.6852%" y="831.50"></text></g><g><title>JVM_FindLoadedClass (32 samples, 0.01%)</title><rect x="48.4636%" y="821" width="0.0120%" height="15" fill="rgb(229,116,26)" fg:x="129678" fg:w="32"/><text x="48.7136%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (38 samples, 0.01%)</title><rect x="48.4887%" y="821" width="0.0142%" height="15" fill="rgb(246,94,34)" fg:x="129745" fg:w="38"/><text x="48.7387%" y="831.50"></text></g><g><title>get_class_declared_methods_helper (38 samples, 0.01%)</title><rect x="48.4887%" y="805" width="0.0142%" height="15" fill="rgb(251,73,21)" fg:x="129745" fg:w="38"/><text x="48.7387%" y="815.50"></text></g><g><title>SymbolTable::add (62 samples, 0.02%)</title><rect x="48.5600%" y="677" width="0.0232%" height="15" fill="rgb(254,121,25)" fg:x="129936" fg:w="62"/><text x="48.8100%" y="687.50"></text></g><g><title>SymbolTable::basic_add (62 samples, 0.02%)</title><rect x="48.5600%" y="661" width="0.0232%" height="15" fill="rgb(215,161,49)" fg:x="129936" fg:w="62"/><text x="48.8100%" y="671.50"></text></g><g><title>SymbolTable::lookup_only (394 samples, 0.15%)</title><rect x="48.5832%" y="677" width="0.1472%" height="15" fill="rgb(221,43,13)" fg:x="129998" fg:w="394"/><text x="48.8332%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (481 samples, 0.18%)</title><rect x="48.5518%" y="693" width="0.1798%" height="15" fill="rgb(249,5,37)" fg:x="129914" fg:w="481"/><text x="48.8018%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (502 samples, 0.19%)</title><rect x="48.5458%" y="709" width="0.1876%" height="15" fill="rgb(226,25,44)" fg:x="129898" fg:w="502"/><text x="48.7958%" y="719.50"></text></g><g><title>Method::allocate (38 samples, 0.01%)</title><rect x="48.7686%" y="677" width="0.0142%" height="15" fill="rgb(238,189,16)" fg:x="130494" fg:w="38"/><text x="49.0186%" y="687.50"></text></g><g><title>ClassFileParser::parse_method (137 samples, 0.05%)</title><rect x="48.7413%" y="693" width="0.0512%" height="15" fill="rgb(251,186,8)" fg:x="130421" fg:w="137"/><text x="48.9913%" y="703.50"></text></g><g><title>ClassFileParser::parse_methods (140 samples, 0.05%)</title><rect x="48.7413%" y="709" width="0.0523%" height="15" fill="rgb(254,34,31)" fg:x="130421" fg:w="140"/><text x="48.9913%" y="719.50"></text></g><g><title>ClassFileParser::ClassFileParser (689 samples, 0.26%)</title><rect x="48.5417%" y="741" width="0.2575%" height="15" fill="rgb(225,215,27)" fg:x="129887" fg:w="689"/><text x="48.7917%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (689 samples, 0.26%)</title><rect x="48.5417%" y="725" width="0.2575%" height="15" fill="rgb(221,192,48)" fg:x="129887" fg:w="689"/><text x="48.7917%" y="735.50"></text></g><g><title>InstanceKlass::find_method (30 samples, 0.01%)</title><rect x="48.8164%" y="677" width="0.0112%" height="15" fill="rgb(219,137,20)" fg:x="130622" fg:w="30"/><text x="49.0664%" y="687.50"></text></g><g><title>InstanceKlass::find_method_index (27 samples, 0.01%)</title><rect x="48.8175%" y="661" width="0.0101%" height="15" fill="rgb(219,84,11)" fg:x="130625" fg:w="27"/><text x="49.0675%" y="671.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (89 samples, 0.03%)</title><rect x="48.8078%" y="693" width="0.0333%" height="15" fill="rgb(224,10,23)" fg:x="130599" fg:w="89"/><text x="49.0578%" y="703.50"></text></g><g><title>resource_allocate_bytes (36 samples, 0.01%)</title><rect x="48.8276%" y="677" width="0.0135%" height="15" fill="rgb(248,22,39)" fg:x="130652" fg:w="36"/><text x="49.0776%" y="687.50"></text></g><g><title>DefaultMethods::generate_default_methods (134 samples, 0.05%)</title><rect x="48.8015%" y="709" width="0.0501%" height="15" fill="rgb(212,154,20)" fg:x="130582" fg:w="134"/><text x="49.0515%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (166 samples, 0.06%)</title><rect x="48.7992%" y="725" width="0.0620%" height="15" fill="rgb(236,199,50)" fg:x="130576" fg:w="166"/><text x="49.0492%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (176 samples, 0.07%)</title><rect x="48.7992%" y="741" width="0.0658%" height="15" fill="rgb(211,9,17)" fg:x="130576" fg:w="176"/><text x="49.0492%" y="751.50"></text></g><g><title>ClassFileParser::post_process_parsed_stream (41 samples, 0.02%)</title><rect x="48.8650%" y="741" width="0.0153%" height="15" fill="rgb(243,216,36)" fg:x="130752" fg:w="41"/><text x="49.1150%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (910 samples, 0.34%)</title><rect x="48.5414%" y="757" width="0.3401%" height="15" fill="rgb(250,2,10)" fg:x="129886" fg:w="910"/><text x="48.7914%" y="767.50"></text></g><g><title>SystemDictionary::resolve_from_stream (935 samples, 0.35%)</title><rect x="48.5406%" y="773" width="0.3494%" height="15" fill="rgb(226,50,48)" fg:x="129884" fg:w="935"/><text x="48.7906%" y="783.50"></text></g><g><title>JVM_DefineClassWithSource (943 samples, 0.35%)</title><rect x="48.5384%" y="805" width="0.3524%" height="15" fill="rgb(243,81,16)" fg:x="129878" fg:w="943"/><text x="48.7884%" y="815.50"></text></g><g><title>jvm_define_class_common (943 samples, 0.35%)</title><rect x="48.5384%" y="789" width="0.3524%" height="15" fill="rgb(250,14,2)" fg:x="129878" fg:w="943"/><text x="48.7884%" y="799.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (984 samples, 0.37%)</title><rect x="48.5380%" y="821" width="0.3677%" height="15" fill="rgb(233,135,29)" fg:x="129877" fg:w="984"/><text x="48.7880%" y="831.50"></text></g><g><title>ClassLoader::load_class (31 samples, 0.01%)</title><rect x="48.9084%" y="741" width="0.0116%" height="15" fill="rgb(224,64,43)" fg:x="130868" fg:w="31"/><text x="49.1584%" y="751.50"></text></g><g><title>JVM_FindClassFromBootLoader (48 samples, 0.02%)</title><rect x="48.9061%" y="805" width="0.0179%" height="15" fill="rgb(238,84,13)" fg:x="130862" fg:w="48"/><text x="49.1561%" y="815.50"></text></g><g><title>SystemDictionary::resolve_or_null (46 samples, 0.02%)</title><rect x="48.9069%" y="789" width="0.0172%" height="15" fill="rgb(253,48,26)" fg:x="130864" fg:w="46"/><text x="49.1569%" y="799.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (46 samples, 0.02%)</title><rect x="48.9069%" y="773" width="0.0172%" height="15" fill="rgb(205,223,31)" fg:x="130864" fg:w="46"/><text x="49.1569%" y="783.50"></text></g><g><title>SystemDictionary::load_instance_class (42 samples, 0.02%)</title><rect x="48.9084%" y="757" width="0.0157%" height="15" fill="rgb(221,41,32)" fg:x="130868" fg:w="42"/><text x="49.1584%" y="767.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (65 samples, 0.02%)</title><rect x="48.9057%" y="821" width="0.0243%" height="15" fill="rgb(213,158,31)" fg:x="130861" fg:w="65"/><text x="49.1557%" y="831.50"></text></g><g><title>Java_java_lang_Class_forName0 (29 samples, 0.01%)</title><rect x="48.9300%" y="821" width="0.0108%" height="15" fill="rgb(245,126,43)" fg:x="130926" fg:w="29"/><text x="49.1800%" y="831.50"></text></g><g><title>KlassFactory::create_from_stream (44 samples, 0.02%)</title><rect x="48.9805%" y="789" width="0.0164%" height="15" fill="rgb(227,7,22)" fg:x="131061" fg:w="44"/><text x="49.2305%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (65 samples, 0.02%)</title><rect x="48.9730%" y="821" width="0.0243%" height="15" fill="rgb(252,90,44)" fg:x="131041" fg:w="65"/><text x="49.2230%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (60 samples, 0.02%)</title><rect x="48.9749%" y="805" width="0.0224%" height="15" fill="rgb(253,91,0)" fg:x="131046" fg:w="60"/><text x="49.2249%" y="815.50"></text></g><g><title>[perf-21254.map] (4,386 samples, 1.64%)</title><rect x="47.3742%" y="837" width="1.6391%" height="15" fill="rgb(252,175,49)" fg:x="126763" fg:w="4386"/><text x="47.6242%" y="847.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (40 samples, 0.01%)</title><rect x="49.0306%" y="821" width="0.0149%" height="15" fill="rgb(246,150,1)" fg:x="131195" fg:w="40"/><text x="49.2806%" y="831.50"></text></g><g><title>generic_file_buffered_read (33 samples, 0.01%)</title><rect x="49.0563%" y="677" width="0.0123%" height="15" fill="rgb(241,192,25)" fg:x="131264" fg:w="33"/><text x="49.3063%" y="687.50"></text></g><g><title>new_sync_read (36 samples, 0.01%)</title><rect x="49.0556%" y="693" width="0.0135%" height="15" fill="rgb(239,187,11)" fg:x="131262" fg:w="36"/><text x="49.3056%" y="703.50"></text></g><g><title>do_syscall_64 (44 samples, 0.02%)</title><rect x="49.0534%" y="741" width="0.0164%" height="15" fill="rgb(218,202,51)" fg:x="131256" fg:w="44"/><text x="49.3034%" y="751.50"></text></g><g><title>ksys_read (44 samples, 0.02%)</title><rect x="49.0534%" y="725" width="0.0164%" height="15" fill="rgb(225,176,8)" fg:x="131256" fg:w="44"/><text x="49.3034%" y="735.50"></text></g><g><title>vfs_read (40 samples, 0.01%)</title><rect x="49.0549%" y="709" width="0.0149%" height="15" fill="rgb(219,122,41)" fg:x="131260" fg:w="40"/><text x="49.3049%" y="719.50"></text></g><g><title>handleRead (48 samples, 0.02%)</title><rect x="49.0522%" y="805" width="0.0179%" height="15" fill="rgb(248,140,20)" fg:x="131253" fg:w="48"/><text x="49.3022%" y="815.50"></text></g><g><title>__libc_read (48 samples, 0.02%)</title><rect x="49.0522%" y="789" width="0.0179%" height="15" fill="rgb(245,41,37)" fg:x="131253" fg:w="48"/><text x="49.3022%" y="799.50"></text></g><g><title>__libc_read (47 samples, 0.02%)</title><rect x="49.0526%" y="773" width="0.0176%" height="15" fill="rgb(235,82,39)" fg:x="131254" fg:w="47"/><text x="49.3026%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.02%)</title><rect x="49.0534%" y="757" width="0.0168%" height="15" fill="rgb(230,108,42)" fg:x="131256" fg:w="45"/><text x="49.3034%" y="767.50"></text></g><g><title>readBytes (65 samples, 0.02%)</title><rect x="49.0500%" y="821" width="0.0243%" height="15" fill="rgb(215,150,50)" fg:x="131247" fg:w="65"/><text x="49.3000%" y="831.50"></text></g><g><title>[unknown] (164 samples, 0.06%)</title><rect x="49.0134%" y="837" width="0.0613%" height="15" fill="rgb(233,212,5)" fg:x="131149" fg:w="164"/><text x="49.2634%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (100 samples, 0.04%)</title><rect x="49.0784%" y="773" width="0.0374%" height="15" fill="rgb(245,80,22)" fg:x="131323" fg:w="100"/><text x="49.3284%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (100 samples, 0.04%)</title><rect x="49.0784%" y="757" width="0.0374%" height="15" fill="rgb(238,129,16)" fg:x="131323" fg:w="100"/><text x="49.3284%" y="767.50"></text></g><g><title>native_write_msr (100 samples, 0.04%)</title><rect x="49.0784%" y="741" width="0.0374%" height="15" fill="rgb(240,19,0)" fg:x="131323" fg:w="100"/><text x="49.3284%" y="751.50"></text></g><g><title>schedule_tail (102 samples, 0.04%)</title><rect x="49.0780%" y="805" width="0.0381%" height="15" fill="rgb(232,42,35)" fg:x="131322" fg:w="102"/><text x="49.3280%" y="815.50"></text></g><g><title>finish_task_switch (102 samples, 0.04%)</title><rect x="49.0780%" y="789" width="0.0381%" height="15" fill="rgb(223,130,24)" fg:x="131322" fg:w="102"/><text x="49.3280%" y="799.50"></text></g><g><title>ret_from_fork (110 samples, 0.04%)</title><rect x="49.0769%" y="821" width="0.0411%" height="15" fill="rgb(237,16,22)" fg:x="131319" fg:w="110"/><text x="49.3269%" y="831.50"></text></g><g><title>ClassFileParser::ClassFileParser (35 samples, 0.01%)</title><rect x="49.1300%" y="613" width="0.0131%" height="15" fill="rgb(248,192,20)" fg:x="131461" fg:w="35"/><text x="49.3800%" y="623.50"></text></g><g><title>ClassFileParser::parse_stream (35 samples, 0.01%)</title><rect x="49.1300%" y="597" width="0.0131%" height="15" fill="rgb(233,167,2)" fg:x="131461" fg:w="35"/><text x="49.3800%" y="607.50"></text></g><g><title>SystemDictionary::initialize_preloaded_classes (55 samples, 0.02%)</title><rect x="49.1285%" y="709" width="0.0206%" height="15" fill="rgb(252,71,44)" fg:x="131457" fg:w="55"/><text x="49.3785%" y="719.50"></text></g><g><title>SystemDictionary::initialize_wk_klasses_until (55 samples, 0.02%)</title><rect x="49.1285%" y="693" width="0.0206%" height="15" fill="rgb(238,37,47)" fg:x="131457" fg:w="55"/><text x="49.3785%" y="703.50"></text></g><g><title>SystemDictionary::resolve_instance_class_or_null (55 samples, 0.02%)</title><rect x="49.1285%" y="677" width="0.0206%" height="15" fill="rgb(214,202,54)" fg:x="131457" fg:w="55"/><text x="49.3785%" y="687.50"></text></g><g><title>SystemDictionary::load_instance_class (55 samples, 0.02%)</title><rect x="49.1285%" y="661" width="0.0206%" height="15" fill="rgb(254,165,40)" fg:x="131457" fg:w="55"/><text x="49.3785%" y="671.50"></text></g><g><title>ClassLoader::load_class (55 samples, 0.02%)</title><rect x="49.1285%" y="645" width="0.0206%" height="15" fill="rgb(246,173,38)" fg:x="131457" fg:w="55"/><text x="49.3785%" y="655.50"></text></g><g><title>KlassFactory::create_from_stream (51 samples, 0.02%)</title><rect x="49.1300%" y="629" width="0.0191%" height="15" fill="rgb(215,3,27)" fg:x="131461" fg:w="51"/><text x="49.3800%" y="639.50"></text></g><g><title>universe2_init (61 samples, 0.02%)</title><rect x="49.1274%" y="741" width="0.0228%" height="15" fill="rgb(239,169,51)" fg:x="131454" fg:w="61"/><text x="49.3774%" y="751.50"></text></g><g><title>Universe::genesis (61 samples, 0.02%)</title><rect x="49.1274%" y="725" width="0.0228%" height="15" fill="rgb(212,5,25)" fg:x="131454" fg:w="61"/><text x="49.3774%" y="735.50"></text></g><g><title>universe_init (27 samples, 0.01%)</title><rect x="49.1502%" y="741" width="0.0101%" height="15" fill="rgb(243,45,17)" fg:x="131515" fg:w="27"/><text x="49.4002%" y="751.50"></text></g><g><title>init_globals (110 samples, 0.04%)</title><rect x="49.1218%" y="757" width="0.0411%" height="15" fill="rgb(242,97,9)" fg:x="131439" fg:w="110"/><text x="49.3718%" y="767.50"></text></g><g><title>JNI_CreateJavaVM (132 samples, 0.05%)</title><rect x="49.1180%" y="789" width="0.0493%" height="15" fill="rgb(228,71,31)" fg:x="131429" fg:w="132"/><text x="49.3680%" y="799.50"></text></g><g><title>Threads::create_vm (132 samples, 0.05%)</title><rect x="49.1180%" y="773" width="0.0493%" height="15" fill="rgb(252,184,16)" fg:x="131429" fg:w="132"/><text x="49.3680%" y="783.50"></text></g><g><title>JavaMain (134 samples, 0.05%)</title><rect x="49.1180%" y="805" width="0.0501%" height="15" fill="rgb(236,169,46)" fg:x="131429" fg:w="134"/><text x="49.3680%" y="815.50"></text></g><g><title>JavaThread::run (28 samples, 0.01%)</title><rect x="49.1763%" y="773" width="0.0105%" height="15" fill="rgb(207,17,47)" fg:x="131585" fg:w="28"/><text x="49.4263%" y="783.50"></text></g><g><title>Thread::call_run (35 samples, 0.01%)</title><rect x="49.1752%" y="789" width="0.0131%" height="15" fill="rgb(206,201,28)" fg:x="131582" fg:w="35"/><text x="49.4252%" y="799.50"></text></g><g><title>__GI___clone (333 samples, 0.12%)</title><rect x="49.0747%" y="837" width="0.1244%" height="15" fill="rgb(224,184,23)" fg:x="131313" fg:w="333"/><text x="49.3247%" y="847.50"></text></g><g><title>start_thread (217 samples, 0.08%)</title><rect x="49.1180%" y="821" width="0.0811%" height="15" fill="rgb(208,139,48)" fg:x="131429" fg:w="217"/><text x="49.3680%" y="831.50"></text></g><g><title>thread_native_entry (80 samples, 0.03%)</title><rect x="49.1692%" y="805" width="0.0299%" height="15" fill="rgb(208,130,10)" fg:x="131566" fg:w="80"/><text x="49.4192%" y="815.50"></text></g><g><title>tlb_flush_mmu (35 samples, 0.01%)</title><rect x="49.2144%" y="661" width="0.0131%" height="15" fill="rgb(211,213,45)" fg:x="131687" fg:w="35"/><text x="49.4644%" y="671.50"></text></g><g><title>release_pages (35 samples, 0.01%)</title><rect x="49.2144%" y="645" width="0.0131%" height="15" fill="rgb(235,100,30)" fg:x="131687" fg:w="35"/><text x="49.4644%" y="655.50"></text></g><g><title>unmap_page_range (48 samples, 0.02%)</title><rect x="49.2099%" y="677" width="0.0179%" height="15" fill="rgb(206,144,31)" fg:x="131675" fg:w="48"/><text x="49.4599%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (51 samples, 0.02%)</title><rect x="49.2092%" y="837" width="0.0191%" height="15" fill="rgb(224,200,26)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (51 samples, 0.02%)</title><rect x="49.2092%" y="821" width="0.0191%" height="15" fill="rgb(247,104,53)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (51 samples, 0.02%)</title><rect x="49.2092%" y="805" width="0.0191%" height="15" fill="rgb(220,14,17)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="815.50"></text></g><g><title>arch_do_signal (51 samples, 0.02%)</title><rect x="49.2092%" y="789" width="0.0191%" height="15" fill="rgb(230,140,40)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="799.50"></text></g><g><title>get_signal (51 samples, 0.02%)</title><rect x="49.2092%" y="773" width="0.0191%" height="15" fill="rgb(229,2,41)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="783.50"></text></g><g><title>do_group_exit (51 samples, 0.02%)</title><rect x="49.2092%" y="757" width="0.0191%" height="15" fill="rgb(232,89,16)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="767.50"></text></g><g><title>do_exit (51 samples, 0.02%)</title><rect x="49.2092%" y="741" width="0.0191%" height="15" fill="rgb(247,59,52)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="751.50"></text></g><g><title>mmput (51 samples, 0.02%)</title><rect x="49.2092%" y="725" width="0.0191%" height="15" fill="rgb(226,110,21)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="735.50"></text></g><g><title>exit_mmap (51 samples, 0.02%)</title><rect x="49.2092%" y="709" width="0.0191%" height="15" fill="rgb(224,176,43)" fg:x="131673" fg:w="51"/><text x="49.4592%" y="719.50"></text></g><g><title>unmap_vmas (49 samples, 0.02%)</title><rect x="49.2099%" y="693" width="0.0183%" height="15" fill="rgb(221,73,6)" fg:x="131675" fg:w="49"/><text x="49.4599%" y="703.50"></text></g><g><title>java (5,212 samples, 1.95%)</title><rect x="47.2834%" y="853" width="1.9478%" height="15" fill="rgb(232,78,19)" fg:x="126520" fg:w="5212"/><text x="47.5334%" y="863.50">j..</text></g><g><title>[[heap]] (85 samples, 0.03%)</title><rect x="49.2316%" y="837" width="0.0318%" height="15" fill="rgb(233,112,48)" fg:x="131733" fg:w="85"/><text x="49.4816%" y="847.50"></text></g><g><title>[[stack]] (54 samples, 0.02%)</title><rect x="49.2634%" y="837" width="0.0202%" height="15" fill="rgb(243,131,47)" fg:x="131818" fg:w="54"/><text x="49.5134%" y="847.50"></text></g><g><title>[anon] (41 samples, 0.02%)</title><rect x="49.2836%" y="837" width="0.0153%" height="15" fill="rgb(226,51,1)" fg:x="131872" fg:w="41"/><text x="49.5336%" y="847.50"></text></g><g><title>inherit_task_group.isra.0 (32 samples, 0.01%)</title><rect x="49.3464%" y="709" width="0.0120%" height="15" fill="rgb(247,58,7)" fg:x="132040" fg:w="32"/><text x="49.5964%" y="719.50"></text></g><g><title>inherit_event.constprop.0 (32 samples, 0.01%)</title><rect x="49.3464%" y="693" width="0.0120%" height="15" fill="rgb(209,7,32)" fg:x="132040" fg:w="32"/><text x="49.5964%" y="703.50"></text></g><g><title>perf_event_init_task (36 samples, 0.01%)</title><rect x="49.3460%" y="725" width="0.0135%" height="15" fill="rgb(209,39,41)" fg:x="132039" fg:w="36"/><text x="49.5960%" y="735.50"></text></g><g><title>copy_process (81 samples, 0.03%)</title><rect x="49.3314%" y="741" width="0.0303%" height="15" fill="rgb(226,182,46)" fg:x="132000" fg:w="81"/><text x="49.5814%" y="751.50"></text></g><g><title>__GI___clone (86 samples, 0.03%)</title><rect x="49.3314%" y="821" width="0.0321%" height="15" fill="rgb(230,219,10)" fg:x="132000" fg:w="86"/><text x="49.5814%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (86 samples, 0.03%)</title><rect x="49.3314%" y="805" width="0.0321%" height="15" fill="rgb(227,175,30)" fg:x="132000" fg:w="86"/><text x="49.5814%" y="815.50"></text></g><g><title>do_syscall_64 (86 samples, 0.03%)</title><rect x="49.3314%" y="789" width="0.0321%" height="15" fill="rgb(217,2,50)" fg:x="132000" fg:w="86"/><text x="49.5814%" y="799.50"></text></g><g><title>__do_sys_clone (86 samples, 0.03%)</title><rect x="49.3314%" y="773" width="0.0321%" height="15" fill="rgb(229,160,0)" fg:x="132000" fg:w="86"/><text x="49.5814%" y="783.50"></text></g><g><title>kernel_clone (86 samples, 0.03%)</title><rect x="49.3314%" y="757" width="0.0321%" height="15" fill="rgb(207,78,37)" fg:x="132000" fg:w="86"/><text x="49.5814%" y="767.50"></text></g><g><title>lldMain (37 samples, 0.01%)</title><rect x="49.4054%" y="821" width="0.0138%" height="15" fill="rgb(225,57,0)" fg:x="132198" fg:w="37"/><text x="49.6554%" y="831.50"></text></g><g><title>lld::elf::link (37 samples, 0.01%)</title><rect x="49.4054%" y="805" width="0.0138%" height="15" fill="rgb(232,154,2)" fg:x="132198" fg:w="37"/><text x="49.6554%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (37 samples, 0.01%)</title><rect x="49.4054%" y="789" width="0.0138%" height="15" fill="rgb(241,212,25)" fg:x="132198" fg:w="37"/><text x="49.6554%" y="799.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (28 samples, 0.01%)</title><rect x="49.4088%" y="773" width="0.0105%" height="15" fill="rgb(226,69,20)" fg:x="132207" fg:w="28"/><text x="49.6588%" y="783.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; (27 samples, 0.01%)</title><rect x="49.4241%" y="821" width="0.0101%" height="15" fill="rgb(247,184,54)" fg:x="132248" fg:w="27"/><text x="49.6741%" y="831.50"></text></g><g><title>[unknown] (430 samples, 0.16%)</title><rect x="49.3187%" y="837" width="0.1607%" height="15" fill="rgb(210,145,0)" fg:x="131966" fg:w="430"/><text x="49.5687%" y="847.50"></text></g><g><title>__perf_event_task_sched_in (132 samples, 0.05%)</title><rect x="49.4828%" y="773" width="0.0493%" height="15" fill="rgb(253,82,12)" fg:x="132405" fg:w="132"/><text x="49.7328%" y="783.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (127 samples, 0.05%)</title><rect x="49.4846%" y="757" width="0.0475%" height="15" fill="rgb(245,42,11)" fg:x="132410" fg:w="127"/><text x="49.7346%" y="767.50"></text></g><g><title>native_write_msr (127 samples, 0.05%)</title><rect x="49.4846%" y="741" width="0.0475%" height="15" fill="rgb(219,147,32)" fg:x="132410" fg:w="127"/><text x="49.7346%" y="751.50"></text></g><g><title>schedule_tail (146 samples, 0.05%)</title><rect x="49.4813%" y="805" width="0.0546%" height="15" fill="rgb(246,12,7)" fg:x="132401" fg:w="146"/><text x="49.7313%" y="815.50"></text></g><g><title>finish_task_switch (146 samples, 0.05%)</title><rect x="49.4813%" y="789" width="0.0546%" height="15" fill="rgb(243,50,9)" fg:x="132401" fg:w="146"/><text x="49.7313%" y="799.50"></text></g><g><title>ret_from_fork (153 samples, 0.06%)</title><rect x="49.4805%" y="821" width="0.0572%" height="15" fill="rgb(219,149,6)" fg:x="132399" fg:w="153"/><text x="49.7305%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="49.5497%" y="597" width="0.0105%" height="15" fill="rgb(241,51,42)" fg:x="132584" fg:w="28"/><text x="49.7997%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (28 samples, 0.01%)</title><rect x="49.5497%" y="581" width="0.0105%" height="15" fill="rgb(226,128,27)" fg:x="132584" fg:w="28"/><text x="49.7997%" y="591.50"></text></g><g><title>native_write_msr (28 samples, 0.01%)</title><rect x="49.5497%" y="565" width="0.0105%" height="15" fill="rgb(244,144,4)" fg:x="132584" fg:w="28"/><text x="49.7997%" y="575.50"></text></g><g><title>finish_task_switch (29 samples, 0.01%)</title><rect x="49.5497%" y="613" width="0.0108%" height="15" fill="rgb(221,4,13)" fg:x="132584" fg:w="29"/><text x="49.7997%" y="623.50"></text></g><g><title>futex_wait_queue_me (38 samples, 0.01%)</title><rect x="49.5482%" y="661" width="0.0142%" height="15" fill="rgb(208,170,28)" fg:x="132580" fg:w="38"/><text x="49.7982%" y="671.50"></text></g><g><title>schedule (38 samples, 0.01%)</title><rect x="49.5482%" y="645" width="0.0142%" height="15" fill="rgb(226,131,13)" fg:x="132580" fg:w="38"/><text x="49.7982%" y="655.50"></text></g><g><title>__schedule (38 samples, 0.01%)</title><rect x="49.5482%" y="629" width="0.0142%" height="15" fill="rgb(215,72,41)" fg:x="132580" fg:w="38"/><text x="49.7982%" y="639.50"></text></g><g><title>do_syscall_64 (43 samples, 0.02%)</title><rect x="49.5478%" y="725" width="0.0161%" height="15" fill="rgb(243,108,20)" fg:x="132579" fg:w="43"/><text x="49.7978%" y="735.50"></text></g><g><title>__x64_sys_futex (43 samples, 0.02%)</title><rect x="49.5478%" y="709" width="0.0161%" height="15" fill="rgb(230,189,17)" fg:x="132579" fg:w="43"/><text x="49.7978%" y="719.50"></text></g><g><title>do_futex (43 samples, 0.02%)</title><rect x="49.5478%" y="693" width="0.0161%" height="15" fill="rgb(220,50,17)" fg:x="132579" fg:w="43"/><text x="49.7978%" y="703.50"></text></g><g><title>futex_wait (43 samples, 0.02%)</title><rect x="49.5478%" y="677" width="0.0161%" height="15" fill="rgb(248,152,48)" fg:x="132579" fg:w="43"/><text x="49.7978%" y="687.50"></text></g><g><title>__GI___pthread_mutex_lock (54 samples, 0.02%)</title><rect x="49.5448%" y="773" width="0.0202%" height="15" fill="rgb(244,91,11)" fg:x="132571" fg:w="54"/><text x="49.7948%" y="783.50"></text></g><g><title>__lll_lock_wait (50 samples, 0.02%)</title><rect x="49.5463%" y="757" width="0.0187%" height="15" fill="rgb(220,157,5)" fg:x="132575" fg:w="50"/><text x="49.7963%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="49.5478%" y="741" width="0.0172%" height="15" fill="rgb(253,137,8)" fg:x="132579" fg:w="46"/><text x="49.7978%" y="751.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="49.5758%" y="741" width="0.0172%" height="15" fill="rgb(217,137,51)" fg:x="132654" fg:w="46"/><text x="49.8258%" y="751.50"></text></g><g><title>__x64_sys_futex (46 samples, 0.02%)</title><rect x="49.5758%" y="725" width="0.0172%" height="15" fill="rgb(218,209,53)" fg:x="132654" fg:w="46"/><text x="49.8258%" y="735.50"></text></g><g><title>do_futex (45 samples, 0.02%)</title><rect x="49.5762%" y="709" width="0.0168%" height="15" fill="rgb(249,137,25)" fg:x="132655" fg:w="45"/><text x="49.8262%" y="719.50"></text></g><g><title>futex_wake (43 samples, 0.02%)</title><rect x="49.5769%" y="693" width="0.0161%" height="15" fill="rgb(239,155,26)" fg:x="132657" fg:w="43"/><text x="49.8269%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (57 samples, 0.02%)</title><rect x="49.5758%" y="757" width="0.0213%" height="15" fill="rgb(227,85,46)" fg:x="132654" fg:w="57"/><text x="49.8258%" y="767.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (87 samples, 0.03%)</title><rect x="49.5654%" y="773" width="0.0325%" height="15" fill="rgb(251,107,43)" fg:x="132626" fg:w="87"/><text x="49.8154%" y="783.50"></text></g><g><title>__GI___libc_malloc (77 samples, 0.03%)</title><rect x="49.6068%" y="741" width="0.0288%" height="15" fill="rgb(234,170,33)" fg:x="132737" fg:w="77"/><text x="49.8568%" y="751.50"></text></g><g><title>tcache_init (67 samples, 0.03%)</title><rect x="49.6106%" y="725" width="0.0250%" height="15" fill="rgb(206,29,35)" fg:x="132747" fg:w="67"/><text x="49.8606%" y="735.50"></text></g><g><title>tcache_init (67 samples, 0.03%)</title><rect x="49.6106%" y="709" width="0.0250%" height="15" fill="rgb(227,138,25)" fg:x="132747" fg:w="67"/><text x="49.8606%" y="719.50"></text></g><g><title>arena_get2 (66 samples, 0.02%)</title><rect x="49.6110%" y="693" width="0.0247%" height="15" fill="rgb(249,131,35)" fg:x="132748" fg:w="66"/><text x="49.8610%" y="703.50"></text></g><g><title>arena_get2 (65 samples, 0.02%)</title><rect x="49.6113%" y="677" width="0.0243%" height="15" fill="rgb(239,6,40)" fg:x="132749" fg:w="65"/><text x="49.8613%" y="687.50"></text></g><g><title>_int_new_arena (65 samples, 0.02%)</title><rect x="49.6113%" y="661" width="0.0243%" height="15" fill="rgb(246,136,47)" fg:x="132749" fg:w="65"/><text x="49.8613%" y="671.50"></text></g><g><title>new_heap (54 samples, 0.02%)</title><rect x="49.6154%" y="645" width="0.0202%" height="15" fill="rgb(253,58,26)" fg:x="132760" fg:w="54"/><text x="49.8654%" y="655.50"></text></g><g><title>operator new (79 samples, 0.03%)</title><rect x="49.6068%" y="757" width="0.0295%" height="15" fill="rgb(237,141,10)" fg:x="132737" fg:w="79"/><text x="49.8568%" y="767.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 (135 samples, 0.05%)</title><rect x="49.5990%" y="773" width="0.0505%" height="15" fill="rgb(234,156,12)" fg:x="132716" fg:w="135"/><text x="49.8490%" y="783.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (34 samples, 0.01%)</title><rect x="49.6367%" y="757" width="0.0127%" height="15" fill="rgb(243,224,36)" fg:x="132817" fg:w="34"/><text x="49.8867%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (67 samples, 0.03%)</title><rect x="49.6536%" y="757" width="0.0250%" height="15" fill="rgb(205,229,51)" fg:x="132862" fg:w="67"/><text x="49.9036%" y="767.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (50 samples, 0.02%)</title><rect x="49.6599%" y="741" width="0.0187%" height="15" fill="rgb(223,189,4)" fg:x="132879" fg:w="50"/><text x="49.9099%" y="751.50"></text></g><g><title>lld::elf::computeIsPreemptible (37 samples, 0.01%)</title><rect x="49.6648%" y="725" width="0.0138%" height="15" fill="rgb(249,167,54)" fg:x="132892" fg:w="37"/><text x="49.9148%" y="735.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (90 samples, 0.03%)</title><rect x="49.6494%" y="773" width="0.0336%" height="15" fill="rgb(218,34,28)" fg:x="132851" fg:w="90"/><text x="49.8994%" y="783.50"></text></g><g><title>ttwu_do_activate (31 samples, 0.01%)</title><rect x="49.7021%" y="581" width="0.0116%" height="15" fill="rgb(232,109,42)" fg:x="132992" fg:w="31"/><text x="49.9521%" y="591.50"></text></g><g><title>do_syscall_64 (65 samples, 0.02%)</title><rect x="49.6917%" y="677" width="0.0243%" height="15" fill="rgb(248,214,46)" fg:x="132964" fg:w="65"/><text x="49.9417%" y="687.50"></text></g><g><title>__x64_sys_futex (65 samples, 0.02%)</title><rect x="49.6917%" y="661" width="0.0243%" height="15" fill="rgb(244,216,40)" fg:x="132964" fg:w="65"/><text x="49.9417%" y="671.50"></text></g><g><title>do_futex (65 samples, 0.02%)</title><rect x="49.6917%" y="645" width="0.0243%" height="15" fill="rgb(231,226,31)" fg:x="132964" fg:w="65"/><text x="49.9417%" y="655.50"></text></g><g><title>futex_wake (63 samples, 0.02%)</title><rect x="49.6924%" y="629" width="0.0235%" height="15" fill="rgb(238,38,43)" fg:x="132966" fg:w="63"/><text x="49.9424%" y="639.50"></text></g><g><title>wake_up_q (55 samples, 0.02%)</title><rect x="49.6954%" y="613" width="0.0206%" height="15" fill="rgb(208,88,43)" fg:x="132974" fg:w="55"/><text x="49.9454%" y="623.50"></text></g><g><title>try_to_wake_up (54 samples, 0.02%)</title><rect x="49.6958%" y="597" width="0.0202%" height="15" fill="rgb(205,136,37)" fg:x="132975" fg:w="54"/><text x="49.9458%" y="607.50"></text></g><g><title>__perf_event_task_sched_in (28 samples, 0.01%)</title><rect x="49.7178%" y="597" width="0.0105%" height="15" fill="rgb(237,34,14)" fg:x="133034" fg:w="28"/><text x="49.9678%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (27 samples, 0.01%)</title><rect x="49.7182%" y="581" width="0.0101%" height="15" fill="rgb(236,193,44)" fg:x="133035" fg:w="27"/><text x="49.9682%" y="591.50"></text></g><g><title>native_write_msr (27 samples, 0.01%)</title><rect x="49.7182%" y="565" width="0.0101%" height="15" fill="rgb(231,48,10)" fg:x="133035" fg:w="27"/><text x="49.9682%" y="575.50"></text></g><g><title>__condvar_dec_grefs (111 samples, 0.04%)</title><rect x="49.6883%" y="725" width="0.0415%" height="15" fill="rgb(213,141,34)" fg:x="132955" fg:w="111"/><text x="49.9383%" y="735.50"></text></g><g><title>futex_wake (104 samples, 0.04%)</title><rect x="49.6909%" y="709" width="0.0389%" height="15" fill="rgb(249,130,34)" fg:x="132962" fg:w="104"/><text x="49.9409%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (103 samples, 0.04%)</title><rect x="49.6913%" y="693" width="0.0385%" height="15" fill="rgb(219,42,41)" fg:x="132963" fg:w="103"/><text x="49.9413%" y="703.50"></text></g><g><title>syscall_exit_to_user_mode (37 samples, 0.01%)</title><rect x="49.7160%" y="677" width="0.0138%" height="15" fill="rgb(224,100,54)" fg:x="133029" fg:w="37"/><text x="49.9660%" y="687.50"></text></g><g><title>exit_to_user_mode_prepare (37 samples, 0.01%)</title><rect x="49.7160%" y="661" width="0.0138%" height="15" fill="rgb(229,200,27)" fg:x="133029" fg:w="37"/><text x="49.9660%" y="671.50"></text></g><g><title>schedule (35 samples, 0.01%)</title><rect x="49.7167%" y="645" width="0.0131%" height="15" fill="rgb(217,118,10)" fg:x="133031" fg:w="35"/><text x="49.9667%" y="655.50"></text></g><g><title>__schedule (35 samples, 0.01%)</title><rect x="49.7167%" y="629" width="0.0131%" height="15" fill="rgb(206,22,3)" fg:x="133031" fg:w="35"/><text x="49.9667%" y="639.50"></text></g><g><title>finish_task_switch (32 samples, 0.01%)</title><rect x="49.7178%" y="613" width="0.0120%" height="15" fill="rgb(232,163,46)" fg:x="133034" fg:w="32"/><text x="49.9678%" y="623.50"></text></g><g><title>__perf_event_task_sched_out (32 samples, 0.01%)</title><rect x="49.7803%" y="581" width="0.0120%" height="15" fill="rgb(206,95,13)" fg:x="133201" fg:w="32"/><text x="50.0303%" y="591.50"></text></g><g><title>dequeue_entity (39 samples, 0.01%)</title><rect x="49.8034%" y="565" width="0.0146%" height="15" fill="rgb(253,154,18)" fg:x="133263" fg:w="39"/><text x="50.0534%" y="575.50"></text></g><g><title>dequeue_task_fair (69 samples, 0.03%)</title><rect x="49.8008%" y="581" width="0.0258%" height="15" fill="rgb(219,32,23)" fg:x="133256" fg:w="69"/><text x="50.0508%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (295 samples, 0.11%)</title><rect x="49.8281%" y="565" width="0.1102%" height="15" fill="rgb(230,191,45)" fg:x="133329" fg:w="295"/><text x="50.0781%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (291 samples, 0.11%)</title><rect x="49.8296%" y="549" width="0.1088%" height="15" fill="rgb(229,64,36)" fg:x="133333" fg:w="291"/><text x="50.0796%" y="559.50"></text></g><g><title>native_write_msr (291 samples, 0.11%)</title><rect x="49.8296%" y="533" width="0.1088%" height="15" fill="rgb(205,129,25)" fg:x="133333" fg:w="291"/><text x="50.0796%" y="543.50"></text></g><g><title>finish_task_switch (316 samples, 0.12%)</title><rect x="49.8266%" y="581" width="0.1181%" height="15" fill="rgb(254,112,7)" fg:x="133325" fg:w="316"/><text x="50.0766%" y="591.50"></text></g><g><title>pick_next_task_fair (41 samples, 0.02%)</title><rect x="49.9447%" y="581" width="0.0153%" height="15" fill="rgb(226,53,48)" fg:x="133641" fg:w="41"/><text x="50.1947%" y="591.50"></text></g><g><title>psi_task_change (79 samples, 0.03%)</title><rect x="49.9604%" y="581" width="0.0295%" height="15" fill="rgb(214,153,38)" fg:x="133683" fg:w="79"/><text x="50.2104%" y="591.50"></text></g><g><title>psi_group_change (69 samples, 0.03%)</title><rect x="49.9641%" y="565" width="0.0258%" height="15" fill="rgb(243,101,7)" fg:x="133693" fg:w="69"/><text x="50.2141%" y="575.50"></text></g><g><title>psi_task_switch (55 samples, 0.02%)</title><rect x="49.9899%" y="581" width="0.0206%" height="15" fill="rgb(240,140,22)" fg:x="133762" fg:w="55"/><text x="50.2399%" y="591.50"></text></g><g><title>psi_group_change (48 samples, 0.02%)</title><rect x="49.9925%" y="565" width="0.0179%" height="15" fill="rgb(235,114,2)" fg:x="133769" fg:w="48"/><text x="50.2425%" y="575.50"></text></g><g><title>futex_wait_queue_me (670 samples, 0.25%)</title><rect x="49.7634%" y="629" width="0.2504%" height="15" fill="rgb(242,59,12)" fg:x="133156" fg:w="670"/><text x="50.0134%" y="639.50"></text></g><g><title>schedule (654 samples, 0.24%)</title><rect x="49.7694%" y="613" width="0.2444%" height="15" fill="rgb(252,134,9)" fg:x="133172" fg:w="654"/><text x="50.0194%" y="623.50"></text></g><g><title>__schedule (651 samples, 0.24%)</title><rect x="49.7705%" y="597" width="0.2433%" height="15" fill="rgb(236,4,44)" fg:x="133175" fg:w="651"/><text x="50.0205%" y="607.50"></text></g><g><title>do_syscall_64 (718 samples, 0.27%)</title><rect x="49.7545%" y="693" width="0.2683%" height="15" fill="rgb(254,172,41)" fg:x="133132" fg:w="718"/><text x="50.0045%" y="703.50"></text></g><g><title>__x64_sys_futex (717 samples, 0.27%)</title><rect x="49.7548%" y="677" width="0.2680%" height="15" fill="rgb(244,63,20)" fg:x="133133" fg:w="717"/><text x="50.0048%" y="687.50"></text></g><g><title>do_futex (714 samples, 0.27%)</title><rect x="49.7560%" y="661" width="0.2668%" height="15" fill="rgb(250,73,31)" fg:x="133136" fg:w="714"/><text x="50.0060%" y="671.50"></text></g><g><title>futex_wait (710 samples, 0.27%)</title><rect x="49.7575%" y="645" width="0.2653%" height="15" fill="rgb(241,38,36)" fg:x="133140" fg:w="710"/><text x="50.0075%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (745 samples, 0.28%)</title><rect x="49.7526%" y="709" width="0.2784%" height="15" fill="rgb(245,211,2)" fg:x="133127" fg:w="745"/><text x="50.0026%" y="719.50"></text></g><g><title>futex_wait_cancelable (792 samples, 0.30%)</title><rect x="49.7376%" y="725" width="0.2960%" height="15" fill="rgb(206,120,28)" fg:x="133087" fg:w="792"/><text x="49.9876%" y="735.50"></text></g><g><title>__pthread_cond_wait (937 samples, 0.35%)</title><rect x="49.6838%" y="757" width="0.3502%" height="15" fill="rgb(211,59,34)" fg:x="132943" fg:w="937"/><text x="49.9338%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (937 samples, 0.35%)</title><rect x="49.6838%" y="741" width="0.3502%" height="15" fill="rgb(233,168,5)" fg:x="132943" fg:w="937"/><text x="49.9338%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (1,351 samples, 0.50%)</title><rect x="49.5396%" y="789" width="0.5049%" height="15" fill="rgb(234,33,13)" fg:x="132557" fg:w="1351"/><text x="49.7896%" y="799.50"></text></g><g><title>std::condition_variable::wait (967 samples, 0.36%)</title><rect x="49.6831%" y="773" width="0.3614%" height="15" fill="rgb(231,150,26)" fg:x="132941" fg:w="967"/><text x="49.9331%" y="783.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (36 samples, 0.01%)</title><rect x="50.0553%" y="757" width="0.0135%" height="15" fill="rgb(217,191,4)" fg:x="133937" fg:w="36"/><text x="50.3053%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (30 samples, 0.01%)</title><rect x="50.0576%" y="741" width="0.0112%" height="15" fill="rgb(246,198,38)" fg:x="133943" fg:w="30"/><text x="50.3076%" y="751.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (37 samples, 0.01%)</title><rect x="50.0688%" y="757" width="0.0138%" height="15" fill="rgb(245,64,37)" fg:x="133973" fg:w="37"/><text x="50.3188%" y="767.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_invoke (44 samples, 0.02%)</title><rect x="50.0848%" y="741" width="0.0164%" height="15" fill="rgb(250,30,36)" fg:x="134016" fg:w="44"/><text x="50.3348%" y="751.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;llvm::parallelForEach&lt;lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1}&gt;(lld::elf::Symbol* const*, lld::elf::Symbol* const*, (anonymous namespace)::Writer&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;::finalizeSections()::{lambda(lld::elf::Symbol*)#1})::{lambda(unsigned long)#1}&gt; (40 samples, 0.01%)</title><rect x="50.0863%" y="725" width="0.0149%" height="15" fill="rgb(217,86,53)" fg:x="134020" fg:w="40"/><text x="50.3363%" y="735.50"></text></g><g><title>lld::elf::computeIsPreemptible (32 samples, 0.01%)</title><rect x="50.0893%" y="709" width="0.0120%" height="15" fill="rgb(228,157,16)" fg:x="134028" fg:w="32"/><text x="50.3393%" y="719.50"></text></g><g><title>std::_Function_handler&lt;void (), llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_invoke (58 samples, 0.02%)</title><rect x="50.0826%" y="757" width="0.0217%" height="15" fill="rgb(217,59,31)" fg:x="134010" fg:w="58"/><text x="50.3326%" y="767.50"></text></g><g><title>__perf_event_task_sched_in (46 samples, 0.02%)</title><rect x="50.1259%" y="549" width="0.0172%" height="15" fill="rgb(237,138,41)" fg:x="134126" fg:w="46"/><text x="50.3759%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (46 samples, 0.02%)</title><rect x="50.1259%" y="533" width="0.0172%" height="15" fill="rgb(227,91,49)" fg:x="134126" fg:w="46"/><text x="50.3759%" y="543.50"></text></g><g><title>native_write_msr (46 samples, 0.02%)</title><rect x="50.1259%" y="517" width="0.0172%" height="15" fill="rgb(247,21,44)" fg:x="134126" fg:w="46"/><text x="50.3759%" y="527.50"></text></g><g><title>finish_task_switch (53 samples, 0.02%)</title><rect x="50.1241%" y="565" width="0.0198%" height="15" fill="rgb(219,210,51)" fg:x="134121" fg:w="53"/><text x="50.3741%" y="575.50"></text></g><g><title>futex_wait_queue_me (113 samples, 0.04%)</title><rect x="50.1125%" y="613" width="0.0422%" height="15" fill="rgb(209,140,6)" fg:x="134090" fg:w="113"/><text x="50.3625%" y="623.50"></text></g><g><title>schedule (112 samples, 0.04%)</title><rect x="50.1129%" y="597" width="0.0419%" height="15" fill="rgb(221,188,24)" fg:x="134091" fg:w="112"/><text x="50.3629%" y="607.50"></text></g><g><title>__schedule (110 samples, 0.04%)</title><rect x="50.1136%" y="581" width="0.0411%" height="15" fill="rgb(232,154,20)" fg:x="134093" fg:w="110"/><text x="50.3636%" y="591.50"></text></g><g><title>do_syscall_64 (121 samples, 0.05%)</title><rect x="50.1114%" y="677" width="0.0452%" height="15" fill="rgb(244,137,50)" fg:x="134087" fg:w="121"/><text x="50.3614%" y="687.50"></text></g><g><title>__x64_sys_futex (121 samples, 0.05%)</title><rect x="50.1114%" y="661" width="0.0452%" height="15" fill="rgb(225,185,43)" fg:x="134087" fg:w="121"/><text x="50.3614%" y="671.50"></text></g><g><title>do_futex (120 samples, 0.04%)</title><rect x="50.1117%" y="645" width="0.0448%" height="15" fill="rgb(213,205,38)" fg:x="134088" fg:w="120"/><text x="50.3617%" y="655.50"></text></g><g><title>futex_wait (119 samples, 0.04%)</title><rect x="50.1121%" y="629" width="0.0445%" height="15" fill="rgb(236,73,12)" fg:x="134089" fg:w="119"/><text x="50.3621%" y="639.50"></text></g><g><title>__pthread_cond_wait (146 samples, 0.05%)</title><rect x="50.1043%" y="741" width="0.0546%" height="15" fill="rgb(235,219,13)" fg:x="134068" fg:w="146"/><text x="50.3543%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (146 samples, 0.05%)</title><rect x="50.1043%" y="725" width="0.0546%" height="15" fill="rgb(218,59,36)" fg:x="134068" fg:w="146"/><text x="50.3543%" y="735.50"></text></g><g><title>futex_wait_cancelable (138 samples, 0.05%)</title><rect x="50.1073%" y="709" width="0.0516%" height="15" fill="rgb(205,110,39)" fg:x="134076" fg:w="138"/><text x="50.3573%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (129 samples, 0.05%)</title><rect x="50.1106%" y="693" width="0.0482%" height="15" fill="rgb(218,206,42)" fg:x="134085" fg:w="129"/><text x="50.3606%" y="703.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::work (308 samples, 0.12%)</title><rect x="50.0456%" y="773" width="0.1151%" height="15" fill="rgb(248,125,24)" fg:x="133911" fg:w="308"/><text x="50.2956%" y="783.50"></text></g><g><title>std::condition_variable::wait (151 samples, 0.06%)</title><rect x="50.1043%" y="757" width="0.0564%" height="15" fill="rgb(242,28,27)" fg:x="134068" fg:w="151"/><text x="50.3543%" y="767.50"></text></g><g><title>kernel_init_free_pages (47 samples, 0.02%)</title><rect x="50.1786%" y="581" width="0.0176%" height="15" fill="rgb(216,228,15)" fg:x="134267" fg:w="47"/><text x="50.4286%" y="591.50"></text></g><g><title>clear_page_erms (46 samples, 0.02%)</title><rect x="50.1790%" y="565" width="0.0172%" height="15" fill="rgb(235,116,46)" fg:x="134268" fg:w="46"/><text x="50.4290%" y="575.50"></text></g><g><title>alloc_pages_vma (51 samples, 0.02%)</title><rect x="50.1779%" y="645" width="0.0191%" height="15" fill="rgb(224,18,32)" fg:x="134265" fg:w="51"/><text x="50.4279%" y="655.50"></text></g><g><title>__alloc_pages_nodemask (51 samples, 0.02%)</title><rect x="50.1779%" y="629" width="0.0191%" height="15" fill="rgb(252,5,12)" fg:x="134265" fg:w="51"/><text x="50.4279%" y="639.50"></text></g><g><title>get_page_from_freelist (51 samples, 0.02%)</title><rect x="50.1779%" y="613" width="0.0191%" height="15" fill="rgb(251,36,5)" fg:x="134265" fg:w="51"/><text x="50.4279%" y="623.50"></text></g><g><title>prep_new_page (49 samples, 0.02%)</title><rect x="50.1786%" y="597" width="0.0183%" height="15" fill="rgb(217,53,14)" fg:x="134267" fg:w="49"/><text x="50.4286%" y="607.50"></text></g><g><title>clear_huge_page (31 samples, 0.01%)</title><rect x="50.1970%" y="645" width="0.0116%" height="15" fill="rgb(215,86,45)" fg:x="134316" fg:w="31"/><text x="50.4470%" y="655.50"></text></g><g><title>clear_subpage (30 samples, 0.01%)</title><rect x="50.1973%" y="629" width="0.0112%" height="15" fill="rgb(242,169,11)" fg:x="134317" fg:w="30"/><text x="50.4473%" y="639.50"></text></g><g><title>clear_page_erms (30 samples, 0.01%)</title><rect x="50.1973%" y="613" width="0.0112%" height="15" fill="rgb(211,213,45)" fg:x="134317" fg:w="30"/><text x="50.4473%" y="623.50"></text></g><g><title>asm_exc_page_fault (92 samples, 0.03%)</title><rect x="50.1745%" y="725" width="0.0344%" height="15" fill="rgb(205,88,11)" fg:x="134256" fg:w="92"/><text x="50.4245%" y="735.50"></text></g><g><title>exc_page_fault (92 samples, 0.03%)</title><rect x="50.1745%" y="709" width="0.0344%" height="15" fill="rgb(252,69,26)" fg:x="134256" fg:w="92"/><text x="50.4245%" y="719.50"></text></g><g><title>do_user_addr_fault (92 samples, 0.03%)</title><rect x="50.1745%" y="693" width="0.0344%" height="15" fill="rgb(246,123,37)" fg:x="134256" fg:w="92"/><text x="50.4245%" y="703.50"></text></g><g><title>handle_mm_fault (92 samples, 0.03%)</title><rect x="50.1745%" y="677" width="0.0344%" height="15" fill="rgb(212,205,5)" fg:x="134256" fg:w="92"/><text x="50.4245%" y="687.50"></text></g><g><title>do_huge_pmd_anonymous_page (85 samples, 0.03%)</title><rect x="50.1771%" y="661" width="0.0318%" height="15" fill="rgb(253,148,0)" fg:x="134263" fg:w="85"/><text x="50.4271%" y="671.50"></text></g><g><title>allocate_stack (119 samples, 0.04%)</title><rect x="50.1704%" y="741" width="0.0445%" height="15" fill="rgb(239,22,4)" fg:x="134245" fg:w="119"/><text x="50.4204%" y="751.50"></text></g><g><title>[libstdc++.so.6.0.28] (1,815 samples, 0.68%)</title><rect x="49.5385%" y="805" width="0.6783%" height="15" fill="rgb(226,26,53)" fg:x="132554" fg:w="1815"/><text x="49.7885%" y="815.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 (458 samples, 0.17%)</title><rect x="50.0456%" y="789" width="0.1712%" height="15" fill="rgb(225,229,45)" fg:x="133911" fg:w="458"/><text x="50.2956%" y="799.50"></text></g><g><title>std::thread::_M_start_thread (125 samples, 0.05%)</title><rect x="50.1700%" y="773" width="0.0467%" height="15" fill="rgb(220,60,37)" fg:x="134244" fg:w="125"/><text x="50.4200%" y="783.50"></text></g><g><title>__pthread_create_2_1 (125 samples, 0.05%)</title><rect x="50.1700%" y="757" width="0.0467%" height="15" fill="rgb(217,180,35)" fg:x="134244" fg:w="125"/><text x="50.4200%" y="767.50"></text></g><g><title>__GI_madvise (35 samples, 0.01%)</title><rect x="50.2272%" y="789" width="0.0131%" height="15" fill="rgb(229,7,53)" fg:x="134397" fg:w="35"/><text x="50.4772%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (35 samples, 0.01%)</title><rect x="50.2272%" y="773" width="0.0131%" height="15" fill="rgb(254,137,3)" fg:x="134397" fg:w="35"/><text x="50.4772%" y="783.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="50.2272%" y="757" width="0.0131%" height="15" fill="rgb(215,140,41)" fg:x="134397" fg:w="35"/><text x="50.4772%" y="767.50"></text></g><g><title>__x64_sys_madvise (35 samples, 0.01%)</title><rect x="50.2272%" y="741" width="0.0131%" height="15" fill="rgb(250,80,15)" fg:x="134397" fg:w="35"/><text x="50.4772%" y="751.50"></text></g><g><title>do_madvise.part.0 (35 samples, 0.01%)</title><rect x="50.2272%" y="725" width="0.0131%" height="15" fill="rgb(252,191,6)" fg:x="134397" fg:w="35"/><text x="50.4772%" y="735.50"></text></g><g><title>zap_page_range (32 samples, 0.01%)</title><rect x="50.2283%" y="709" width="0.0120%" height="15" fill="rgb(246,217,18)" fg:x="134400" fg:w="32"/><text x="50.4783%" y="719.50"></text></g><g><title>advise_stack_range (36 samples, 0.01%)</title><rect x="50.2272%" y="805" width="0.0135%" height="15" fill="rgb(223,93,7)" fg:x="134397" fg:w="36"/><text x="50.4772%" y="815.50"></text></g><g><title>__GI___clone (2,040 samples, 0.76%)</title><rect x="49.4794%" y="837" width="0.7624%" height="15" fill="rgb(225,55,52)" fg:x="132396" fg:w="2040"/><text x="49.7294%" y="847.50"></text></g><g><title>start_thread (1,884 samples, 0.70%)</title><rect x="49.5377%" y="821" width="0.7041%" height="15" fill="rgb(240,31,24)" fg:x="132552" fg:w="1884"/><text x="49.7877%" y="831.50"></text></g><g><title>_GLOBAL__sub_I_RegisterPasses.cpp (45 samples, 0.02%)</title><rect x="50.4287%" y="789" width="0.0168%" height="15" fill="rgb(205,56,52)" fg:x="134936" fg:w="45"/><text x="50.6787%" y="799.50"></text></g><g><title>polly::initializePollyPasses (35 samples, 0.01%)</title><rect x="50.4324%" y="773" width="0.0131%" height="15" fill="rgb(246,146,12)" fg:x="134946" fg:w="35"/><text x="50.6824%" y="783.50"></text></g><g><title>__libc_csu_init (608 samples, 0.23%)</title><rect x="50.2553%" y="805" width="0.2272%" height="15" fill="rgb(239,84,36)" fg:x="134472" fg:w="608"/><text x="50.5053%" y="815.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (33 samples, 0.01%)</title><rect x="50.5038%" y="677" width="0.0123%" height="15" fill="rgb(207,41,40)" fg:x="135137" fg:w="33"/><text x="50.7538%" y="687.50"></text></g><g><title>lld::elf::readLinkerScript (72 samples, 0.03%)</title><rect x="50.5030%" y="693" width="0.0269%" height="15" fill="rgb(241,179,25)" fg:x="135135" fg:w="72"/><text x="50.7530%" y="703.50"></text></g><g><title>lld::elf::LinkerDriver::addFile (87 samples, 0.03%)</title><rect x="50.4993%" y="709" width="0.0325%" height="15" fill="rgb(210,0,34)" fg:x="135125" fg:w="87"/><text x="50.7493%" y="719.50"></text></g><g><title>lld::elf::LinkerDriver::createFiles (142 samples, 0.05%)</title><rect x="50.4896%" y="741" width="0.0531%" height="15" fill="rgb(225,217,29)" fg:x="135099" fg:w="142"/><text x="50.7396%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::addLibrary (116 samples, 0.04%)</title><rect x="50.4993%" y="725" width="0.0434%" height="15" fill="rgb(216,191,38)" fg:x="135125" fg:w="116"/><text x="50.7493%" y="735.50"></text></g><g><title>lld::elf::searchLibrary[abi:cxx11] (29 samples, 0.01%)</title><rect x="50.5318%" y="709" width="0.0108%" height="15" fill="rgb(232,140,52)" fg:x="135212" fg:w="29"/><text x="50.7818%" y="719.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; (59 samples, 0.02%)</title><rect x="50.5778%" y="677" width="0.0220%" height="15" fill="rgb(223,158,51)" fg:x="135335" fg:w="59"/><text x="50.8278%" y="687.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 (56 samples, 0.02%)</title><rect x="50.5789%" y="661" width="0.0209%" height="15" fill="rgb(235,29,51)" fg:x="135338" fg:w="56"/><text x="50.8289%" y="671.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (42 samples, 0.02%)</title><rect x="50.5998%" y="677" width="0.0157%" height="15" fill="rgb(215,181,18)" fg:x="135394" fg:w="42"/><text x="50.8498%" y="687.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (194 samples, 0.07%)</title><rect x="50.5550%" y="709" width="0.0725%" height="15" fill="rgb(227,125,34)" fg:x="135274" fg:w="194"/><text x="50.8050%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::insert (172 samples, 0.06%)</title><rect x="50.5632%" y="693" width="0.0643%" height="15" fill="rgb(230,197,49)" fg:x="135296" fg:w="172"/><text x="50.8132%" y="703.50"></text></g><g><title>lld::elf::ArchiveFile::parse (227 samples, 0.08%)</title><rect x="50.5509%" y="725" width="0.0848%" height="15" fill="rgb(239,141,16)" fg:x="135263" fg:w="227"/><text x="50.8009%" y="735.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (32 samples, 0.01%)</title><rect x="50.6503%" y="677" width="0.0120%" height="15" fill="rgb(225,105,43)" fg:x="135529" fg:w="32"/><text x="50.9003%" y="687.50"></text></g><g><title>lld::elf::MergeNoTailSection::finalizeContents (56 samples, 0.02%)</title><rect x="50.6458%" y="709" width="0.0209%" height="15" fill="rgb(214,131,14)" fg:x="135517" fg:w="56"/><text x="50.8958%" y="719.50"></text></g><g><title>llvm::parallelForEachN (44 samples, 0.02%)</title><rect x="50.6503%" y="693" width="0.0164%" height="15" fill="rgb(229,177,11)" fg:x="135529" fg:w="44"/><text x="50.9003%" y="703.50"></text></g><g><title>lld::elf::OutputSection::finalizeInputSections (62 samples, 0.02%)</title><rect x="50.6447%" y="725" width="0.0232%" height="15" fill="rgb(231,180,14)" fg:x="135514" fg:w="62"/><text x="50.8947%" y="735.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="50.6746%" y="709" width="0.0149%" height="15" fill="rgb(232,88,2)" fg:x="135594" fg:w="40"/><text x="50.9246%" y="719.50"></text></g><g><title>lld::elf::SymbolTable::find (55 samples, 0.02%)</title><rect x="50.6734%" y="725" width="0.0206%" height="15" fill="rgb(205,220,8)" fg:x="135591" fg:w="55"/><text x="50.9234%" y="735.50"></text></g><g><title>lld::elf::markLive&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (37 samples, 0.01%)</title><rect x="50.7026%" y="725" width="0.0138%" height="15" fill="rgb(225,23,53)" fg:x="135669" fg:w="37"/><text x="50.9526%" y="735.50"></text></g><g><title>lld::make&lt;lld::elf::SymbolUnion&gt; (65 samples, 0.02%)</title><rect x="50.7557%" y="661" width="0.0243%" height="15" fill="rgb(213,62,29)" fg:x="135811" fg:w="65"/><text x="51.0057%" y="671.50"></text></g><g><title>asm_exc_page_fault (29 samples, 0.01%)</title><rect x="50.7942%" y="629" width="0.0108%" height="15" fill="rgb(227,75,7)" fg:x="135914" fg:w="29"/><text x="51.0442%" y="639.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (30 samples, 0.01%)</title><rect x="50.8057%" y="629" width="0.0112%" height="15" fill="rgb(207,105,14)" fg:x="135945" fg:w="30"/><text x="51.0557%" 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; (104 samples, 0.04%)</title><rect x="50.7800%" y="661" width="0.0389%" height="15" fill="rgb(245,62,29)" fg:x="135876" fg:w="104"/><text x="51.0300%" y="671.50"></text></g><g><title>llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::grow (99 samples, 0.04%)</title><rect x="50.7818%" y="645" width="0.0370%" height="15" fill="rgb(236,202,4)" fg:x="135881" fg:w="99"/><text x="51.0318%" y="655.50"></text></g><g><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;, llvm::CachedHashStringRef, int, llvm::DenseMapInfo&lt;llvm::CachedHashStringRef, void&gt;, llvm::detail::DenseMapPair&lt;llvm::CachedHashStringRef, int&gt; &gt;::LookupBucketFor&lt;llvm::CachedHashStringRef&gt; (84 samples, 0.03%)</title><rect x="50.8188%" y="661" width="0.0314%" height="15" fill="rgb(250,67,1)" fg:x="135980" fg:w="84"/><text x="51.0688%" y="671.50"></text></g><g><title>lld::elf::SymbolTable::addSymbol (331 samples, 0.12%)</title><rect x="50.7347%" y="693" width="0.1237%" height="15" fill="rgb(253,115,44)" fg:x="135755" fg:w="331"/><text x="50.9847%" y="703.50"></text></g><g><title>lld::elf::SymbolTable::insert (306 samples, 0.11%)</title><rect x="50.7441%" y="677" width="0.1144%" height="15" fill="rgb(251,139,18)" fg:x="135780" fg:w="306"/><text x="50.9941%" y="687.50"></text></g><g><title>llvm::Twine::printOneChild (35 samples, 0.01%)</title><rect x="50.8663%" y="677" width="0.0131%" height="15" fill="rgb(218,22,32)" fg:x="136107" fg:w="35"/><text x="51.1163%" y="687.50"></text></g><g><title>llvm::Twine::toVector (63 samples, 0.02%)</title><rect x="50.8659%" y="693" width="0.0235%" height="15" fill="rgb(243,53,5)" fg:x="136106" fg:w="63"/><text x="51.1159%" y="703.50"></text></g><g><title>lld::elf::parseFile (479 samples, 0.18%)</title><rect x="50.7164%" y="725" width="0.1790%" height="15" fill="rgb(227,56,16)" fg:x="135706" fg:w="479"/><text x="50.9664%" y="735.50"></text></g><g><title>lld::elf::SharedFile::parse&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (471 samples, 0.18%)</title><rect x="50.7194%" y="709" width="0.1760%" height="15" fill="rgb(245,53,0)" fg:x="135714" fg:w="471"/><text x="50.9694%" y="719.50"></text></g><g><title>lld::elf::splitSections&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (47 samples, 0.02%)</title><rect x="50.8954%" y="725" width="0.0176%" height="15" fill="rgb(216,170,35)" fg:x="136185" fg:w="47"/><text x="51.1454%" y="735.50"></text></g><g><title>llvm::parallelForEachN (45 samples, 0.02%)</title><rect x="50.8962%" y="709" width="0.0168%" height="15" fill="rgb(211,200,8)" fg:x="136187" fg:w="45"/><text x="51.1462%" y="719.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::~TaskGroup (36 samples, 0.01%)</title><rect x="50.8996%" y="693" width="0.0135%" height="15" fill="rgb(228,204,44)" fg:x="136196" fg:w="36"/><text x="51.1496%" y="703.50"></text></g><g><title>std::condition_variable::wait (34 samples, 0.01%)</title><rect x="50.9003%" y="677" width="0.0127%" height="15" fill="rgb(214,121,17)" fg:x="136198" fg:w="34"/><text x="51.1503%" y="687.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (38 samples, 0.01%)</title><rect x="50.9302%" y="629" width="0.0142%" height="15" fill="rgb(233,64,38)" fg:x="136278" fg:w="38"/><text x="51.1802%" y="639.50"></text></g><g><title>lld::elf::MergeNoTailSection::writeTo (39 samples, 0.01%)</title><rect x="50.9302%" y="661" width="0.0146%" height="15" fill="rgb(253,54,19)" fg:x="136278" fg:w="39"/><text x="51.1802%" y="671.50"></text></g><g><title>llvm::parallelForEachN (39 samples, 0.01%)</title><rect x="50.9302%" y="645" width="0.0146%" height="15" fill="rgb(253,94,18)" fg:x="136278" fg:w="39"/><text x="51.1802%" y="655.50"></text></g><g><title>llvm::function_ref&lt;void (unsigned long)&gt;::callback_fn&lt;lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt;(unsigned char*)::{lambda(unsigned long)#2}&gt; (66 samples, 0.02%)</title><rect x="50.9291%" y="677" width="0.0247%" height="15" fill="rgb(227,57,52)" fg:x="136275" fg:w="66"/><text x="51.1791%" y="687.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (31 samples, 0.01%)</title><rect x="50.9537%" y="677" width="0.0116%" height="15" fill="rgb(230,228,50)" fg:x="136341" fg:w="31"/><text x="51.2037%" y="687.50"></text></g><g><title>std::condition_variable::notify_one (27 samples, 0.01%)</title><rect x="50.9552%" y="661" width="0.0101%" height="15" fill="rgb(217,205,27)" fg:x="136345" fg:w="27"/><text x="51.2052%" y="671.50"></text></g><g><title>__pthread_cond_signal (27 samples, 0.01%)</title><rect x="50.9552%" y="645" width="0.0101%" height="15" fill="rgb(252,71,50)" fg:x="136345" fg:w="27"/><text x="51.2052%" y="655.50"></text></g><g><title>lld::elf::OutputSection::writeTo&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (103 samples, 0.04%)</title><rect x="50.9280%" y="709" width="0.0385%" height="15" fill="rgb(209,86,4)" fg:x="136272" fg:w="103"/><text x="51.1780%" y="719.50"></text></g><g><title>llvm::parallelForEachN (102 samples, 0.04%)</title><rect x="50.9283%" y="693" width="0.0381%" height="15" fill="rgb(229,94,0)" fg:x="136273" fg:w="102"/><text x="51.1783%" y="703.50"></text></g><g><title>__GI___pthread_mutex_lock (34 samples, 0.01%)</title><rect x="51.0087%" y="661" width="0.0127%" height="15" fill="rgb(252,223,21)" fg:x="136488" fg:w="34"/><text x="51.2587%" y="671.50"></text></g><g><title>__pthread_mutex_unlock_usercnt (34 samples, 0.01%)</title><rect x="51.0214%" y="661" width="0.0127%" height="15" fill="rgb(230,210,4)" fg:x="136522" fg:w="34"/><text x="51.2714%" y="671.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::add (124 samples, 0.05%)</title><rect x="51.0087%" y="677" width="0.0463%" height="15" fill="rgb(240,149,38)" fg:x="136488" fg:w="124"/><text x="51.2587%" y="687.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 (56 samples, 0.02%)</title><rect x="51.0341%" y="661" width="0.0209%" height="15" fill="rgb(254,105,20)" fg:x="136556" fg:w="56"/><text x="51.2841%" y="671.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallel::detail::TaskGroup::spawn(std::function&lt;void ()&gt;)::$_0&gt;::_M_manager (53 samples, 0.02%)</title><rect x="51.0352%" y="645" width="0.0198%" height="15" fill="rgb(253,87,46)" fg:x="136559" fg:w="53"/><text x="51.2852%" y="655.50"></text></g><g><title>std::_Function_base::_Base_manager&lt;llvm::parallelForEachN(unsigned long, unsigned long, llvm::function_ref&lt;void (unsigned long)&gt;)::$_1&gt;::_M_manager (27 samples, 0.01%)</title><rect x="51.0449%" y="629" width="0.0101%" height="15" fill="rgb(253,116,33)" fg:x="136585" fg:w="27"/><text x="51.2949%" y="639.50"></text></g><g><title>operator new (27 samples, 0.01%)</title><rect x="51.0449%" y="613" width="0.0101%" height="15" fill="rgb(229,198,5)" fg:x="136585" fg:w="27"/><text x="51.2949%" y="623.50"></text></g><g><title>__GI___libc_malloc (27 samples, 0.01%)</title><rect x="51.0449%" y="597" width="0.0101%" height="15" fill="rgb(242,38,37)" fg:x="136585" fg:w="27"/><text x="51.2949%" y="607.50"></text></g><g><title>futex_wait_queue_me (40 samples, 0.01%)</title><rect x="51.0655%" y="517" width="0.0149%" height="15" fill="rgb(242,69,53)" fg:x="136640" fg:w="40"/><text x="51.3155%" y="527.50"></text></g><g><title>schedule (39 samples, 0.01%)</title><rect x="51.0659%" y="501" width="0.0146%" height="15" fill="rgb(249,80,16)" fg:x="136641" fg:w="39"/><text x="51.3159%" y="511.50"></text></g><g><title>__schedule (37 samples, 0.01%)</title><rect x="51.0666%" y="485" width="0.0138%" height="15" fill="rgb(206,128,11)" fg:x="136643" fg:w="37"/><text x="51.3166%" y="495.50"></text></g><g><title>__condvar_quiesce_and_switch_g1 (45 samples, 0.02%)</title><rect x="51.0640%" y="645" width="0.0168%" height="15" fill="rgb(212,35,20)" fg:x="136636" fg:w="45"/><text x="51.3140%" y="655.50"></text></g><g><title>futex_wait_simple (42 samples, 0.02%)</title><rect x="51.0651%" y="629" width="0.0157%" height="15" fill="rgb(236,79,13)" fg:x="136639" fg:w="42"/><text x="51.3151%" y="639.50"></text></g><g><title>futex_wait (42 samples, 0.02%)</title><rect x="51.0651%" y="613" width="0.0157%" height="15" fill="rgb(233,123,3)" fg:x="136639" fg:w="42"/><text x="51.3151%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.02%)</title><rect x="51.0655%" y="597" width="0.0153%" height="15" fill="rgb(214,93,52)" fg:x="136640" fg:w="41"/><text x="51.3155%" y="607.50"></text></g><g><title>do_syscall_64 (41 samples, 0.02%)</title><rect x="51.0655%" y="581" width="0.0153%" height="15" fill="rgb(251,37,40)" fg:x="136640" fg:w="41"/><text x="51.3155%" y="591.50"></text></g><g><title>__x64_sys_futex (41 samples, 0.02%)</title><rect x="51.0655%" y="565" width="0.0153%" height="15" fill="rgb(227,80,54)" fg:x="136640" fg:w="41"/><text x="51.3155%" y="575.50"></text></g><g><title>do_futex (41 samples, 0.02%)</title><rect x="51.0655%" y="549" width="0.0153%" height="15" fill="rgb(254,48,11)" fg:x="136640" fg:w="41"/><text x="51.3155%" y="559.50"></text></g><g><title>futex_wait (41 samples, 0.02%)</title><rect x="51.0655%" y="533" width="0.0153%" height="15" fill="rgb(235,193,26)" fg:x="136640" fg:w="41"/><text x="51.3155%" y="543.50"></text></g><g><title>_raw_spin_lock (56 samples, 0.02%)</title><rect x="51.0961%" y="517" width="0.0209%" height="15" fill="rgb(229,99,21)" fg:x="136722" fg:w="56"/><text x="51.3461%" y="527.50"></text></g><g><title>native_queued_spin_lock_slowpath (54 samples, 0.02%)</title><rect x="51.0969%" y="501" width="0.0202%" height="15" fill="rgb(211,140,41)" fg:x="136724" fg:w="54"/><text x="51.3469%" y="511.50"></text></g><g><title>select_task_rq_fair (34 samples, 0.01%)</title><rect x="51.1182%" y="517" width="0.0127%" height="15" fill="rgb(240,227,30)" fg:x="136781" fg:w="34"/><text x="51.3682%" y="527.50"></text></g><g><title>enqueue_entity (32 samples, 0.01%)</title><rect x="51.1339%" y="485" width="0.0120%" height="15" fill="rgb(215,224,45)" fg:x="136823" fg:w="32"/><text x="51.3839%" y="495.50"></text></g><g><title>enqueue_task_fair (47 samples, 0.02%)</title><rect x="51.1328%" y="501" width="0.0176%" height="15" fill="rgb(206,123,31)" fg:x="136820" fg:w="47"/><text x="51.3828%" y="511.50"></text></g><g><title>ttwu_do_activate (91 samples, 0.03%)</title><rect x="51.1313%" y="517" width="0.0340%" height="15" fill="rgb(210,138,16)" fg:x="136816" fg:w="91"/><text x="51.3813%" y="527.50"></text></g><g><title>psi_task_change (40 samples, 0.01%)</title><rect x="51.1503%" y="501" width="0.0149%" height="15" fill="rgb(228,57,28)" fg:x="136867" fg:w="40"/><text x="51.4003%" y="511.50"></text></g><g><title>psi_group_change (36 samples, 0.01%)</title><rect x="51.1518%" y="485" width="0.0135%" height="15" fill="rgb(242,170,10)" fg:x="136871" fg:w="36"/><text x="51.4018%" y="495.50"></text></g><g><title>__x64_sys_futex (231 samples, 0.09%)</title><rect x="51.0857%" y="597" width="0.0863%" height="15" fill="rgb(228,214,39)" fg:x="136694" fg:w="231"/><text x="51.3357%" y="607.50"></text></g><g><title>do_futex (231 samples, 0.09%)</title><rect x="51.0857%" y="581" width="0.0863%" height="15" fill="rgb(218,179,33)" fg:x="136694" fg:w="231"/><text x="51.3357%" y="591.50"></text></g><g><title>futex_wake (228 samples, 0.09%)</title><rect x="51.0868%" y="565" width="0.0852%" height="15" fill="rgb(235,193,39)" fg:x="136697" fg:w="228"/><text x="51.3368%" y="575.50"></text></g><g><title>wake_up_q (209 samples, 0.08%)</title><rect x="51.0939%" y="549" width="0.0781%" height="15" fill="rgb(219,221,36)" fg:x="136716" fg:w="209"/><text x="51.3439%" y="559.50"></text></g><g><title>try_to_wake_up (208 samples, 0.08%)</title><rect x="51.0943%" y="533" width="0.0777%" height="15" fill="rgb(248,218,19)" fg:x="136717" fg:w="208"/><text x="51.3443%" y="543.50"></text></g><g><title>do_syscall_64 (232 samples, 0.09%)</title><rect x="51.0857%" y="613" width="0.0867%" height="15" fill="rgb(205,50,9)" fg:x="136694" fg:w="232"/><text x="51.3357%" y="623.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (243 samples, 0.09%)</title><rect x="51.0857%" y="629" width="0.0908%" height="15" fill="rgb(238,81,28)" fg:x="136694" fg:w="243"/><text x="51.3357%" y="639.50"></text></g><g><title>llvm::parallel::detail::TaskGroup::spawn (484 samples, 0.18%)</title><rect x="50.9963%" y="693" width="0.1809%" height="15" fill="rgb(235,110,19)" fg:x="136455" fg:w="484"/><text x="51.2463%" y="703.50"></text></g><g><title>std::condition_variable::notify_one (309 samples, 0.12%)</title><rect x="51.0617%" y="677" width="0.1155%" height="15" fill="rgb(214,7,14)" fg:x="136630" fg:w="309"/><text x="51.3117%" y="687.50"></text></g><g><title>__pthread_cond_signal (309 samples, 0.12%)</title><rect x="51.0617%" y="661" width="0.1155%" height="15" fill="rgb(211,77,3)" fg:x="136630" fg:w="309"/><text x="51.3117%" y="671.50"></text></g><g><title>futex_wake (256 samples, 0.10%)</title><rect x="51.0816%" y="645" width="0.0957%" height="15" fill="rgb(229,5,9)" fg:x="136683" fg:w="256"/><text x="51.3316%" y="655.50"></text></g><g><title>llvm::parallelForEachN (507 samples, 0.19%)</title><rect x="50.9949%" y="709" width="0.1895%" height="15" fill="rgb(225,90,11)" fg:x="136451" fg:w="507"/><text x="51.2449%" y="719.50"></text></g><g><title>btrfs_log_inode (44 samples, 0.02%)</title><rect x="51.1925%" y="533" width="0.0164%" height="15" fill="rgb(242,56,8)" fg:x="136980" fg:w="44"/><text x="51.4425%" y="543.50"></text></g><g><title>llvm::sys::fs::TempFile::keep (67 samples, 0.03%)</title><rect x="51.1843%" y="709" width="0.0250%" height="15" fill="rgb(249,212,39)" fg:x="136958" fg:w="67"/><text x="51.4343%" y="719.50"></text></g><g><title>llvm::sys::fs::rename (66 samples, 0.02%)</title><rect x="51.1847%" y="693" width="0.0247%" height="15" fill="rgb(236,90,9)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="703.50"></text></g><g><title>rename (66 samples, 0.02%)</title><rect x="51.1847%" y="677" width="0.0247%" height="15" fill="rgb(206,88,35)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (66 samples, 0.02%)</title><rect x="51.1847%" y="661" width="0.0247%" height="15" fill="rgb(205,126,30)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="671.50"></text></g><g><title>do_syscall_64 (66 samples, 0.02%)</title><rect x="51.1847%" y="645" width="0.0247%" height="15" fill="rgb(230,176,12)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="655.50"></text></g><g><title>__x64_sys_rename (66 samples, 0.02%)</title><rect x="51.1847%" y="629" width="0.0247%" height="15" fill="rgb(243,19,9)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="639.50"></text></g><g><title>do_renameat2 (66 samples, 0.02%)</title><rect x="51.1847%" y="613" width="0.0247%" height="15" fill="rgb(245,171,17)" fg:x="136959" fg:w="66"/><text x="51.4347%" y="623.50"></text></g><g><title>vfs_rename (63 samples, 0.02%)</title><rect x="51.1858%" y="597" width="0.0235%" height="15" fill="rgb(227,52,21)" fg:x="136962" fg:w="63"/><text x="51.4358%" y="607.50"></text></g><g><title>btrfs_rename2 (63 samples, 0.02%)</title><rect x="51.1858%" y="581" width="0.0235%" height="15" fill="rgb(238,69,14)" fg:x="136962" fg:w="63"/><text x="51.4358%" y="591.50"></text></g><g><title>btrfs_log_new_name (45 samples, 0.02%)</title><rect x="51.1925%" y="565" width="0.0168%" height="15" fill="rgb(241,156,39)" fg:x="136980" fg:w="45"/><text x="51.4425%" y="575.50"></text></g><g><title>btrfs_log_inode_parent (45 samples, 0.02%)</title><rect x="51.1925%" y="549" width="0.0168%" height="15" fill="rgb(212,227,28)" fg:x="136980" fg:w="45"/><text x="51.4425%" y="559.50"></text></g><g><title>lld::elf::writeResult&lt;llvm::object::ELFType&lt;(llvm::support::endianness)1, true&gt; &gt; (796 samples, 0.30%)</title><rect x="50.9130%" y="725" width="0.2975%" height="15" fill="rgb(209,118,27)" fg:x="136232" fg:w="796"/><text x="51.1630%" y="735.50"></text></g><g><title>lld::tryCreateFile (37 samples, 0.01%)</title><rect x="51.2112%" y="725" width="0.0138%" height="15" fill="rgb(226,102,5)" fg:x="137030" fg:w="37"/><text x="51.4612%" y="735.50"></text></g><g><title>lld::elf::LinkerDriver::link (1,828 samples, 0.68%)</title><rect x="50.5426%" y="741" width="0.6832%" height="15" fill="rgb(223,34,3)" fg:x="135241" fg:w="1828"/><text x="50.7926%" y="751.50"></text></g><g><title>llvm::InitializeAllTargets (84 samples, 0.03%)</title><rect x="51.2277%" y="741" width="0.0314%" height="15" fill="rgb(221,81,38)" fg:x="137074" fg:w="84"/><text x="51.4777%" y="751.50"></text></g><g><title>lld::elf::LinkerDriver::linkerMain (2,121 samples, 0.79%)</title><rect x="50.4877%" y="757" width="0.7927%" height="15" fill="rgb(236,219,28)" fg:x="135094" fg:w="2121"/><text x="50.7377%" y="767.50"></text></g><g><title>readConfigs (45 samples, 0.02%)</title><rect x="51.2636%" y="741" width="0.0168%" height="15" fill="rgb(213,200,14)" fg:x="137170" fg:w="45"/><text x="51.5136%" y="751.50"></text></g><g><title>lld::elf::link (2,135 samples, 0.80%)</title><rect x="50.4832%" y="773" width="0.7979%" height="15" fill="rgb(240,33,19)" fg:x="135082" fg:w="2135"/><text x="50.7332%" y="783.50"></text></g><g><title>llvm::object_deleter&lt;llvm::cl::SubCommand&gt;::call (45 samples, 0.02%)</title><rect x="51.2912%" y="741" width="0.0168%" height="15" fill="rgb(233,113,27)" fg:x="137244" fg:w="45"/><text x="51.5412%" y="751.50"></text></g><g><title>llvm::parallel::detail::(anonymous namespace)::ThreadPoolExecutor::stop (28 samples, 0.01%)</title><rect x="51.3080%" y="741" width="0.0105%" height="15" fill="rgb(220,221,18)" fg:x="137289" fg:w="28"/><text x="51.5580%" y="751.50"></text></g><g><title>std::condition_variable::notify_all (28 samples, 0.01%)</title><rect x="51.3080%" y="725" width="0.0105%" height="15" fill="rgb(238,92,8)" fg:x="137289" fg:w="28"/><text x="51.5580%" y="735.50"></text></g><g><title>__pthread_cond_broadcast (28 samples, 0.01%)</title><rect x="51.3080%" y="709" width="0.0105%" height="15" fill="rgb(222,164,16)" fg:x="137289" fg:w="28"/><text x="51.5580%" y="719.50"></text></g><g><title>llvm::llvm_shutdown (101 samples, 0.04%)</title><rect x="51.2811%" y="757" width="0.0377%" height="15" fill="rgb(241,119,3)" fg:x="137217" fg:w="101"/><text x="51.5311%" y="767.50"></text></g><g><title>lld::exitLld (103 samples, 0.04%)</title><rect x="51.2811%" y="773" width="0.0385%" height="15" fill="rgb(241,44,8)" fg:x="137217" fg:w="103"/><text x="51.5311%" y="783.50"></text></g><g><title>lldMain (2,240 samples, 0.84%)</title><rect x="50.4828%" y="789" width="0.8371%" height="15" fill="rgb(230,36,40)" fg:x="135081" fg:w="2240"/><text x="50.7328%" y="799.50"></text></g><g><title>__libc_start_main (2,855 samples, 1.07%)</title><rect x="50.2553%" y="821" width="1.0670%" height="15" fill="rgb(243,16,36)" fg:x="134472" fg:w="2855"/><text x="50.5053%" y="831.50"></text></g><g><title>main (2,247 samples, 0.84%)</title><rect x="50.4825%" y="805" width="0.8398%" height="15" fill="rgb(231,4,26)" fg:x="135080" fg:w="2247"/><text x="50.7325%" y="815.50"></text></g><g><title>do_mmap (36 samples, 0.01%)</title><rect x="51.3334%" y="565" width="0.0135%" height="15" fill="rgb(240,9,31)" fg:x="137357" fg:w="36"/><text x="51.5834%" y="575.50"></text></g><g><title>mmap_region (34 samples, 0.01%)</title><rect x="51.3342%" y="549" width="0.0127%" height="15" fill="rgb(207,173,15)" fg:x="137359" fg:w="34"/><text x="51.5842%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (39 samples, 0.01%)</title><rect x="51.3327%" y="597" width="0.0146%" height="15" fill="rgb(224,192,53)" fg:x="137355" fg:w="39"/><text x="51.5827%" y="607.50"></text></g><g><title>vm_mmap_pgoff (38 samples, 0.01%)</title><rect x="51.3331%" y="581" width="0.0142%" height="15" fill="rgb(223,67,28)" fg:x="137356" fg:w="38"/><text x="51.5831%" y="591.50"></text></g><g><title>_dl_map_segments (50 samples, 0.02%)</title><rect x="51.3293%" y="677" width="0.0187%" height="15" fill="rgb(211,20,47)" fg:x="137346" fg:w="50"/><text x="51.5793%" y="687.50"></text></g><g><title>__mmap64 (43 samples, 0.02%)</title><rect x="51.3319%" y="661" width="0.0161%" height="15" fill="rgb(240,228,2)" fg:x="137353" fg:w="43"/><text x="51.5819%" y="671.50"></text></g><g><title>__mmap64 (43 samples, 0.02%)</title><rect x="51.3319%" y="645" width="0.0161%" height="15" fill="rgb(248,151,12)" fg:x="137353" fg:w="43"/><text x="51.5819%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (41 samples, 0.02%)</title><rect x="51.3327%" y="629" width="0.0153%" height="15" fill="rgb(244,8,39)" fg:x="137355" fg:w="41"/><text x="51.5827%" y="639.50"></text></g><g><title>do_syscall_64 (41 samples, 0.02%)</title><rect x="51.3327%" y="613" width="0.0153%" height="15" fill="rgb(222,26,8)" fg:x="137355" fg:w="41"/><text x="51.5827%" y="623.50"></text></g><g><title>_dl_map_object_from_fd (71 samples, 0.03%)</title><rect x="51.3275%" y="693" width="0.0265%" height="15" fill="rgb(213,106,44)" fg:x="137341" fg:w="71"/><text x="51.5775%" y="703.50"></text></g><g><title>_dl_catch_exception (101 samples, 0.04%)</title><rect x="51.3245%" y="741" width="0.0377%" height="15" fill="rgb(214,129,20)" fg:x="137333" fg:w="101"/><text x="51.5745%" y="751.50"></text></g><g><title>openaux (101 samples, 0.04%)</title><rect x="51.3245%" y="725" width="0.0377%" height="15" fill="rgb(212,32,13)" fg:x="137333" fg:w="101"/><text x="51.5745%" y="735.50"></text></g><g><title>_dl_map_object (101 samples, 0.04%)</title><rect x="51.3245%" y="709" width="0.0377%" height="15" fill="rgb(208,168,33)" fg:x="137333" fg:w="101"/><text x="51.5745%" y="719.50"></text></g><g><title>_dl_map_object_deps (104 samples, 0.04%)</title><rect x="51.3241%" y="757" width="0.0389%" height="15" fill="rgb(231,207,8)" fg:x="137332" fg:w="104"/><text x="51.5741%" y="767.50"></text></g><g><title>dl_new_hash (44 samples, 0.02%)</title><rect x="51.4033%" y="693" width="0.0164%" height="15" fill="rgb(235,219,23)" fg:x="137544" fg:w="44"/><text x="51.6533%" y="703.50"></text></g><g><title>_dl_lookup_symbol_x (172 samples, 0.06%)</title><rect x="51.3992%" y="709" width="0.0643%" height="15" fill="rgb(226,216,26)" fg:x="137533" fg:w="172"/><text x="51.6492%" y="719.50"></text></g><g><title>do_lookup_x (117 samples, 0.04%)</title><rect x="51.4198%" y="693" width="0.0437%" height="15" fill="rgb(239,137,16)" fg:x="137588" fg:w="117"/><text x="51.6698%" y="703.50"></text></g><g><title>asm_exc_page_fault (50 samples, 0.02%)</title><rect x="51.4635%" y="709" width="0.0187%" height="15" fill="rgb(207,12,36)" fg:x="137705" fg:w="50"/><text x="51.7135%" y="719.50"></text></g><g><title>exc_page_fault (49 samples, 0.02%)</title><rect x="51.4639%" y="693" width="0.0183%" height="15" fill="rgb(210,214,24)" fg:x="137706" fg:w="49"/><text x="51.7139%" y="703.50"></text></g><g><title>do_user_addr_fault (49 samples, 0.02%)</title><rect x="51.4639%" y="677" width="0.0183%" height="15" fill="rgb(206,56,30)" fg:x="137706" fg:w="49"/><text x="51.7139%" y="687.50"></text></g><g><title>handle_mm_fault (49 samples, 0.02%)</title><rect x="51.4639%" y="661" width="0.0183%" height="15" fill="rgb(228,143,26)" fg:x="137706" fg:w="49"/><text x="51.7139%" y="671.50"></text></g><g><title>elf_machine_rela (271 samples, 0.10%)</title><rect x="51.3824%" y="725" width="0.1013%" height="15" fill="rgb(216,218,46)" fg:x="137488" fg:w="271"/><text x="51.6324%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (307 samples, 0.11%)</title><rect x="51.3723%" y="741" width="0.1147%" height="15" fill="rgb(206,6,19)" fg:x="137461" fg:w="307"/><text x="51.6223%" y="751.50"></text></g><g><title>_dl_relocate_object (326 samples, 0.12%)</title><rect x="51.3660%" y="757" width="0.1218%" height="15" fill="rgb(239,177,51)" fg:x="137444" fg:w="326"/><text x="51.6160%" y="767.50"></text></g><g><title>[ld-2.31.so] (451 samples, 0.17%)</title><rect x="51.3226%" y="773" width="0.1685%" height="15" fill="rgb(216,55,25)" fg:x="137328" fg:w="451"/><text x="51.5726%" y="783.50"></text></g><g><title>_dl_start_final (458 samples, 0.17%)</title><rect x="51.3222%" y="805" width="0.1712%" height="15" fill="rgb(231,163,29)" fg:x="137327" fg:w="458"/><text x="51.5722%" y="815.50"></text></g><g><title>_dl_sysdep_start (458 samples, 0.17%)</title><rect x="51.3222%" y="789" width="0.1712%" height="15" fill="rgb(232,149,50)" fg:x="137327" fg:w="458"/><text x="51.5722%" y="799.50"></text></g><g><title>_dl_start (460 samples, 0.17%)</title><rect x="51.3222%" y="821" width="0.1719%" height="15" fill="rgb(223,142,48)" fg:x="137327" fg:w="460"/><text x="51.5722%" y="831.50"></text></g><g><title>_start (3,318 samples, 1.24%)</title><rect x="50.2553%" y="837" width="1.2400%" height="15" fill="rgb(245,83,23)" fg:x="134472" fg:w="3318"/><text x="50.5053%" y="847.50"></text></g><g><title>asm_exc_page_fault (154 samples, 0.06%)</title><rect x="51.4953%" y="837" width="0.0576%" height="15" fill="rgb(224,63,2)" fg:x="137790" fg:w="154"/><text x="51.7453%" y="847.50"></text></g><g><title>mmput (33 samples, 0.01%)</title><rect x="51.5659%" y="757" width="0.0123%" height="15" fill="rgb(218,65,53)" fg:x="137979" fg:w="33"/><text x="51.8159%" y="767.50"></text></g><g><title>exit_mmap (33 samples, 0.01%)</title><rect x="51.5659%" y="741" width="0.0123%" height="15" fill="rgb(221,84,29)" fg:x="137979" fg:w="33"/><text x="51.8159%" y="751.50"></text></g><g><title>unmap_vmas (29 samples, 0.01%)</title><rect x="51.5674%" y="725" width="0.0108%" height="15" fill="rgb(234,0,32)" fg:x="137983" fg:w="29"/><text x="51.8174%" y="735.50"></text></g><g><title>unmap_page_range (29 samples, 0.01%)</title><rect x="51.5674%" y="709" width="0.0108%" height="15" fill="rgb(206,20,16)" fg:x="137983" fg:w="29"/><text x="51.8174%" y="719.50"></text></g><g><title>__x64_sys_exit_group (39 samples, 0.01%)</title><rect x="51.5640%" y="805" width="0.0146%" height="15" fill="rgb(244,172,18)" fg:x="137974" fg:w="39"/><text x="51.8140%" y="815.50"></text></g><g><title>do_group_exit (39 samples, 0.01%)</title><rect x="51.5640%" y="789" width="0.0146%" height="15" fill="rgb(254,133,1)" fg:x="137974" fg:w="39"/><text x="51.8140%" y="799.50"></text></g><g><title>do_exit (39 samples, 0.01%)</title><rect x="51.5640%" y="773" width="0.0146%" height="15" fill="rgb(222,206,41)" fg:x="137974" fg:w="39"/><text x="51.8140%" y="783.50"></text></g><g><title>do_syscall_64 (69 samples, 0.03%)</title><rect x="51.5554%" y="821" width="0.0258%" height="15" fill="rgb(212,3,42)" fg:x="137951" fg:w="69"/><text x="51.8054%" y="831.50"></text></g><g><title>page_remove_rmap (30 samples, 0.01%)</title><rect x="51.6130%" y="661" width="0.0112%" height="15" fill="rgb(241,11,4)" fg:x="138105" fg:w="30"/><text x="51.8630%" y="671.50"></text></g><g><title>unmap_page_range (118 samples, 0.04%)</title><rect x="51.5924%" y="677" width="0.0441%" height="15" fill="rgb(205,19,26)" fg:x="138050" fg:w="118"/><text x="51.8424%" y="687.50"></text></g><g><title>mmput (127 samples, 0.05%)</title><rect x="51.5898%" y="725" width="0.0475%" height="15" fill="rgb(210,179,32)" fg:x="138043" fg:w="127"/><text x="51.8398%" y="735.50"></text></g><g><title>exit_mmap (127 samples, 0.05%)</title><rect x="51.5898%" y="709" width="0.0475%" height="15" fill="rgb(227,116,49)" fg:x="138043" fg:w="127"/><text x="51.8398%" y="719.50"></text></g><g><title>unmap_vmas (120 samples, 0.04%)</title><rect x="51.5924%" y="693" width="0.0448%" height="15" fill="rgb(211,146,6)" fg:x="138050" fg:w="120"/><text x="51.8424%" y="703.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (225 samples, 0.08%)</title><rect x="51.5539%" y="837" width="0.0841%" height="15" fill="rgb(219,44,39)" fg:x="137947" fg:w="225"/><text x="51.8039%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (152 samples, 0.06%)</title><rect x="51.5812%" y="821" width="0.0568%" height="15" fill="rgb(234,128,11)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (152 samples, 0.06%)</title><rect x="51.5812%" y="805" width="0.0568%" height="15" fill="rgb(220,183,53)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="815.50"></text></g><g><title>arch_do_signal (152 samples, 0.06%)</title><rect x="51.5812%" y="789" width="0.0568%" height="15" fill="rgb(213,219,32)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="799.50"></text></g><g><title>get_signal (152 samples, 0.06%)</title><rect x="51.5812%" y="773" width="0.0568%" height="15" fill="rgb(232,156,16)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="783.50"></text></g><g><title>do_group_exit (152 samples, 0.06%)</title><rect x="51.5812%" y="757" width="0.0568%" height="15" fill="rgb(246,135,34)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="767.50"></text></g><g><title>do_exit (152 samples, 0.06%)</title><rect x="51.5812%" y="741" width="0.0568%" height="15" fill="rgb(241,99,0)" fg:x="138020" fg:w="152"/><text x="51.8312%" y="751.50"></text></g><g><title>page_remove_rmap (54 samples, 0.02%)</title><rect x="51.6937%" y="661" width="0.0202%" height="15" fill="rgb(222,103,45)" fg:x="138321" fg:w="54"/><text x="51.9437%" y="671.50"></text></g><g><title>tlb_flush_mmu (61 samples, 0.02%)</title><rect x="51.7139%" y="661" width="0.0228%" height="15" fill="rgb(212,57,4)" fg:x="138375" fg:w="61"/><text x="51.9639%" y="671.50"></text></g><g><title>release_pages (43 samples, 0.02%)</title><rect x="51.7206%" y="645" width="0.0161%" height="15" fill="rgb(215,68,47)" fg:x="138393" fg:w="43"/><text x="51.9706%" y="655.50"></text></g><g><title>unmap_page_range (228 samples, 0.09%)</title><rect x="51.6563%" y="677" width="0.0852%" height="15" fill="rgb(230,84,2)" fg:x="138221" fg:w="228"/><text x="51.9063%" y="687.50"></text></g><g><title>exit_mmap (246 samples, 0.09%)</title><rect x="51.6500%" y="709" width="0.0919%" height="15" fill="rgb(220,102,14)" fg:x="138204" fg:w="246"/><text x="51.9000%" y="719.50"></text></g><g><title>unmap_vmas (229 samples, 0.09%)</title><rect x="51.6563%" y="693" width="0.0856%" height="15" fill="rgb(240,10,32)" fg:x="138221" fg:w="229"/><text x="51.9063%" y="703.50"></text></g><g><title>mmput (248 samples, 0.09%)</title><rect x="51.6496%" y="725" width="0.0927%" height="15" fill="rgb(215,47,27)" fg:x="138203" fg:w="248"/><text x="51.8996%" y="735.50"></text></g><g><title>ret_from_fork (268 samples, 0.10%)</title><rect x="51.6425%" y="837" width="0.1002%" height="15" fill="rgb(233,188,43)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="847.50"></text></g><g><title>syscall_exit_to_user_mode (268 samples, 0.10%)</title><rect x="51.6425%" y="821" width="0.1002%" height="15" fill="rgb(253,190,1)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="831.50"></text></g><g><title>exit_to_user_mode_prepare (268 samples, 0.10%)</title><rect x="51.6425%" y="805" width="0.1002%" height="15" fill="rgb(206,114,52)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="815.50"></text></g><g><title>arch_do_signal (268 samples, 0.10%)</title><rect x="51.6425%" y="789" width="0.1002%" height="15" fill="rgb(233,120,37)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="799.50"></text></g><g><title>get_signal (268 samples, 0.10%)</title><rect x="51.6425%" y="773" width="0.1002%" height="15" fill="rgb(214,52,39)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="783.50"></text></g><g><title>do_group_exit (268 samples, 0.10%)</title><rect x="51.6425%" y="757" width="0.1002%" height="15" fill="rgb(223,80,29)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="767.50"></text></g><g><title>do_exit (268 samples, 0.10%)</title><rect x="51.6425%" y="741" width="0.1002%" height="15" fill="rgb(230,101,40)" fg:x="138184" fg:w="268"/><text x="51.8925%" y="751.50"></text></g><g><title>ld.lld (6,729 samples, 2.51%)</title><rect x="49.2313%" y="853" width="2.5148%" height="15" fill="rgb(219,211,8)" fg:x="131732" fg:w="6729"/><text x="49.4813%" y="863.50">ld..</text></g><g><title>[[heap]] (41 samples, 0.02%)</title><rect x="51.7460%" y="837" width="0.0153%" height="15" fill="rgb(252,126,28)" fg:x="138461" fg:w="41"/><text x="51.9960%" y="847.50"></text></g><g><title>[bash] (53 samples, 0.02%)</title><rect x="51.7782%" y="821" width="0.0198%" height="15" fill="rgb(215,56,38)" fg:x="138547" fg:w="53"/><text x="52.0282%" y="831.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.7879%" y="805" width="0.0101%" height="15" fill="rgb(249,55,44)" fg:x="138573" fg:w="27"/><text x="52.0379%" y="815.50"></text></g><g><title>execute_command (33 samples, 0.01%)</title><rect x="51.8212%" y="741" width="0.0123%" height="15" fill="rgb(220,221,32)" fg:x="138662" fg:w="33"/><text x="52.0712%" y="751.50"></text></g><g><title>execute_command_internal (33 samples, 0.01%)</title><rect x="51.8212%" y="725" width="0.0123%" height="15" fill="rgb(212,216,41)" fg:x="138662" fg:w="33"/><text x="52.0712%" y="735.50"></text></g><g><title>[bash] (33 samples, 0.01%)</title><rect x="51.8212%" y="709" width="0.0123%" height="15" fill="rgb(228,213,43)" fg:x="138662" fg:w="33"/><text x="52.0712%" y="719.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="693" width="0.0101%" height="15" fill="rgb(211,31,26)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="703.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="677" width="0.0101%" height="15" fill="rgb(229,202,19)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="687.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="661" width="0.0101%" height="15" fill="rgb(229,105,46)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="671.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="645" width="0.0101%" height="15" fill="rgb(235,108,1)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="655.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="629" width="0.0101%" height="15" fill="rgb(245,111,35)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="639.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="613" width="0.0101%" height="15" fill="rgb(219,185,31)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="623.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="597" width="0.0101%" height="15" fill="rgb(214,4,43)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="607.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="581" width="0.0101%" height="15" fill="rgb(235,227,40)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="591.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="565" width="0.0101%" height="15" fill="rgb(230,88,30)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="575.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="549" width="0.0101%" height="15" fill="rgb(216,217,1)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="559.50"></text></g><g><title>execute_command (27 samples, 0.01%)</title><rect x="51.8234%" y="533" width="0.0101%" height="15" fill="rgb(248,139,50)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="543.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="517" width="0.0101%" height="15" fill="rgb(233,1,21)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="527.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="501" width="0.0101%" height="15" fill="rgb(215,183,12)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="511.50"></text></g><g><title>execute_command (27 samples, 0.01%)</title><rect x="51.8234%" y="485" width="0.0101%" height="15" fill="rgb(229,104,42)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="495.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="469" width="0.0101%" height="15" fill="rgb(243,34,48)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="479.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="453" width="0.0101%" height="15" fill="rgb(239,11,44)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="463.50"></text></g><g><title>execute_command (27 samples, 0.01%)</title><rect x="51.8234%" y="437" width="0.0101%" height="15" fill="rgb(231,98,35)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="447.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="421" width="0.0101%" height="15" fill="rgb(233,28,25)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="431.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="405" width="0.0101%" height="15" fill="rgb(234,123,11)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="415.50"></text></g><g><title>execute_command (27 samples, 0.01%)</title><rect x="51.8234%" y="389" width="0.0101%" height="15" fill="rgb(220,69,3)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="399.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="373" width="0.0101%" height="15" fill="rgb(214,64,36)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="383.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="357" width="0.0101%" height="15" fill="rgb(211,138,32)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="367.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="341" width="0.0101%" height="15" fill="rgb(213,118,47)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="351.50"></text></g><g><title>expand_words (27 samples, 0.01%)</title><rect x="51.8234%" y="325" width="0.0101%" height="15" fill="rgb(243,124,49)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="335.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="309" width="0.0101%" height="15" fill="rgb(221,30,28)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="319.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="293" width="0.0101%" height="15" fill="rgb(246,37,13)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="303.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="277" width="0.0101%" height="15" fill="rgb(249,66,14)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="287.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="261" width="0.0101%" height="15" fill="rgb(213,166,5)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="271.50"></text></g><g><title>command_substitute (27 samples, 0.01%)</title><rect x="51.8234%" y="245" width="0.0101%" height="15" fill="rgb(221,66,24)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="255.50"></text></g><g><title>parse_and_execute (27 samples, 0.01%)</title><rect x="51.8234%" y="229" width="0.0101%" height="15" fill="rgb(210,132,17)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="239.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="213" width="0.0101%" height="15" fill="rgb(243,202,5)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="223.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="197" width="0.0101%" height="15" fill="rgb(233,70,48)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="207.50"></text></g><g><title>[bash] (27 samples, 0.01%)</title><rect x="51.8234%" y="181" width="0.0101%" height="15" fill="rgb(238,41,26)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="191.50"></text></g><g><title>execute_command_internal (27 samples, 0.01%)</title><rect x="51.8234%" y="165" width="0.0101%" height="15" fill="rgb(241,19,31)" fg:x="138668" fg:w="27"/><text x="52.0734%" y="175.50"></text></g><g><title>[bash] (66 samples, 0.02%)</title><rect x="51.8092%" y="805" width="0.0247%" height="15" fill="rgb(214,76,10)" fg:x="138630" fg:w="66"/><text x="52.0592%" y="815.50"></text></g><g><title>execute_command_internal (40 samples, 0.01%)</title><rect x="51.8189%" y="789" width="0.0149%" height="15" fill="rgb(254,202,22)" fg:x="138656" fg:w="40"/><text x="52.0689%" y="799.50"></text></g><g><title>execute_command_internal (34 samples, 0.01%)</title><rect x="51.8212%" y="773" width="0.0127%" height="15" fill="rgb(214,72,24)" fg:x="138662" fg:w="34"/><text x="52.0712%" y="783.50"></text></g><g><title>[bash] (34 samples, 0.01%)</title><rect x="51.8212%" y="757" width="0.0127%" height="15" fill="rgb(221,92,46)" fg:x="138662" fg:w="34"/><text x="52.0712%" y="767.50"></text></g><g><title>arch_fork (35 samples, 0.01%)</title><rect x="51.8383%" y="149" width="0.0131%" height="15" fill="rgb(246,13,50)" fg:x="138708" fg:w="35"/><text x="52.0883%" y="159.50"></text></g><g><title>make_child (41 samples, 0.02%)</title><rect x="51.8376%" y="181" width="0.0153%" height="15" fill="rgb(240,165,38)" fg:x="138706" fg:w="41"/><text x="52.0876%" y="191.50"></text></g><g><title>__libc_fork (39 samples, 0.01%)</title><rect x="51.8383%" y="165" width="0.0146%" height="15" fill="rgb(241,24,51)" fg:x="138708" fg:w="39"/><text x="52.0883%" y="175.50"></text></g><g><title>execute_command (50 samples, 0.02%)</title><rect x="51.8346%" y="773" width="0.0187%" height="15" fill="rgb(227,51,44)" fg:x="138698" fg:w="50"/><text x="52.0846%" y="783.50"></text></g><g><title>execute_command_internal (50 samples, 0.02%)</title><rect x="51.8346%" y="757" width="0.0187%" height="15" fill="rgb(231,121,3)" fg:x="138698" fg:w="50"/><text x="52.0846%" y="767.50"></text></g><g><title>[bash] (50 samples, 0.02%)</title><rect x="51.8346%" y="741" width="0.0187%" height="15" fill="rgb(245,3,41)" fg:x="138698" fg:w="50"/><text x="52.0846%" y="751.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="725" width="0.0179%" height="15" fill="rgb(214,13,26)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="735.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="709" width="0.0179%" height="15" fill="rgb(252,75,11)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="719.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="693" width="0.0179%" height="15" fill="rgb(218,226,17)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="703.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="677" width="0.0179%" height="15" fill="rgb(248,89,38)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="687.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="661" width="0.0179%" height="15" fill="rgb(237,73,46)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="671.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="645" width="0.0179%" height="15" fill="rgb(242,78,33)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="655.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="629" width="0.0179%" height="15" fill="rgb(235,60,3)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="639.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="613" width="0.0179%" height="15" fill="rgb(216,172,19)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="623.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="597" width="0.0179%" height="15" fill="rgb(227,6,42)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="607.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="581" width="0.0179%" height="15" fill="rgb(223,207,42)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="591.50"></text></g><g><title>execute_command (48 samples, 0.02%)</title><rect x="51.8354%" y="565" width="0.0179%" height="15" fill="rgb(246,138,30)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="575.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="549" width="0.0179%" height="15" fill="rgb(251,199,47)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="559.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="533" width="0.0179%" height="15" fill="rgb(228,218,44)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="543.50"></text></g><g><title>execute_command (48 samples, 0.02%)</title><rect x="51.8354%" y="517" width="0.0179%" height="15" fill="rgb(220,68,6)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="527.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="501" width="0.0179%" height="15" fill="rgb(240,60,26)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="511.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="485" width="0.0179%" height="15" fill="rgb(211,200,19)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="495.50"></text></g><g><title>execute_command (48 samples, 0.02%)</title><rect x="51.8354%" y="469" width="0.0179%" height="15" fill="rgb(242,145,30)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="479.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="453" width="0.0179%" height="15" fill="rgb(225,64,13)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="463.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="437" width="0.0179%" height="15" fill="rgb(218,103,35)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="447.50"></text></g><g><title>execute_command (48 samples, 0.02%)</title><rect x="51.8354%" y="421" width="0.0179%" height="15" fill="rgb(216,93,46)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="431.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="405" width="0.0179%" height="15" fill="rgb(225,159,27)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="415.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="389" width="0.0179%" height="15" fill="rgb(225,204,11)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="399.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="373" width="0.0179%" height="15" fill="rgb(205,56,4)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="383.50"></text></g><g><title>expand_words (48 samples, 0.02%)</title><rect x="51.8354%" y="357" width="0.0179%" height="15" fill="rgb(206,6,35)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="367.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="341" width="0.0179%" height="15" fill="rgb(247,73,52)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="351.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="325" width="0.0179%" height="15" fill="rgb(246,97,4)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="335.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="309" width="0.0179%" height="15" fill="rgb(212,37,15)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="319.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="293" width="0.0179%" height="15" fill="rgb(208,130,40)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="303.50"></text></g><g><title>command_substitute (48 samples, 0.02%)</title><rect x="51.8354%" y="277" width="0.0179%" height="15" fill="rgb(236,55,29)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="287.50"></text></g><g><title>parse_and_execute (48 samples, 0.02%)</title><rect x="51.8354%" y="261" width="0.0179%" height="15" fill="rgb(209,156,45)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="271.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="245" width="0.0179%" height="15" fill="rgb(249,107,4)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="255.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="229" width="0.0179%" height="15" fill="rgb(227,7,13)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="239.50"></text></g><g><title>[bash] (48 samples, 0.02%)</title><rect x="51.8354%" y="213" width="0.0179%" height="15" fill="rgb(250,129,14)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="223.50"></text></g><g><title>execute_command_internal (48 samples, 0.02%)</title><rect x="51.8354%" y="197" width="0.0179%" height="15" fill="rgb(229,92,13)" fg:x="138700" fg:w="48"/><text x="52.0854%" y="207.50"></text></g><g><title>execute_command_internal (121 samples, 0.05%)</title><rect x="51.8088%" y="821" width="0.0452%" height="15" fill="rgb(245,98,39)" fg:x="138629" fg:w="121"/><text x="52.0588%" y="831.50"></text></g><g><title>execute_command_internal (52 samples, 0.02%)</title><rect x="51.8346%" y="805" width="0.0194%" height="15" fill="rgb(234,135,48)" fg:x="138698" fg:w="52"/><text x="52.0846%" y="815.50"></text></g><g><title>[bash] (52 samples, 0.02%)</title><rect x="51.8346%" y="789" width="0.0194%" height="15" fill="rgb(230,98,28)" fg:x="138698" fg:w="52"/><text x="52.0846%" y="799.50"></text></g><g><title>[unknown] (220 samples, 0.08%)</title><rect x="51.7782%" y="837" width="0.0822%" height="15" fill="rgb(223,121,0)" fg:x="138547" fg:w="220"/><text x="52.0282%" y="847.50"></text></g><g><title>dispose_command (28 samples, 0.01%)</title><rect x="51.8656%" y="757" width="0.0105%" height="15" fill="rgb(234,173,33)" fg:x="138781" fg:w="28"/><text x="52.1156%" y="767.50"></text></g><g><title>dispose_command (30 samples, 0.01%)</title><rect x="51.8653%" y="773" width="0.0112%" height="15" fill="rgb(245,47,8)" fg:x="138780" fg:w="30"/><text x="52.1153%" y="783.50"></text></g><g><title>execute_command (81 samples, 0.03%)</title><rect x="51.8791%" y="725" width="0.0303%" height="15" fill="rgb(205,17,20)" fg:x="138817" fg:w="81"/><text x="52.1291%" y="735.50"></text></g><g><title>execute_command_internal (81 samples, 0.03%)</title><rect x="51.8791%" y="709" width="0.0303%" height="15" fill="rgb(232,151,16)" fg:x="138817" fg:w="81"/><text x="52.1291%" y="719.50"></text></g><g><title>[bash] (109 samples, 0.04%)</title><rect x="51.8776%" y="741" width="0.0407%" height="15" fill="rgb(208,30,32)" fg:x="138813" fg:w="109"/><text x="52.1276%" y="751.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="51.9284%" y="485" width="0.0101%" height="15" fill="rgb(254,26,3)" fg:x="138949" fg:w="27"/><text x="52.1784%" y="495.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="51.9284%" y="469" width="0.0101%" height="15" fill="rgb(240,177,30)" fg:x="138949" fg:w="27"/><text x="52.1784%" y="479.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="51.9284%" y="453" width="0.0101%" height="15" fill="rgb(248,76,44)" fg:x="138949" fg:w="27"/><text x="52.1784%" y="463.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="51.9284%" y="437" width="0.0101%" height="15" fill="rgb(241,186,54)" fg:x="138949" fg:w="27"/><text x="52.1784%" y="447.50"></text></g><g><title>copy_command (29 samples, 0.01%)</title><rect x="51.9284%" y="501" width="0.0108%" height="15" fill="rgb(249,171,29)" fg:x="138949" fg:w="29"/><text x="52.1784%" y="511.50"></text></g><g><title>copy_command (30 samples, 0.01%)</title><rect x="51.9284%" y="517" width="0.0112%" height="15" fill="rgb(237,151,44)" fg:x="138949" fg:w="30"/><text x="52.1784%" y="527.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="51.9284%" y="565" width="0.0116%" height="15" fill="rgb(228,174,30)" fg:x="138949" fg:w="31"/><text x="52.1784%" y="575.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="51.9284%" y="549" width="0.0116%" height="15" fill="rgb(252,14,37)" fg:x="138949" fg:w="31"/><text x="52.1784%" y="559.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="51.9284%" y="533" width="0.0116%" height="15" fill="rgb(207,111,40)" fg:x="138949" fg:w="31"/><text x="52.1784%" y="543.50"></text></g><g><title>copy_command (43 samples, 0.02%)</title><rect x="51.9243%" y="581" width="0.0161%" height="15" fill="rgb(248,171,54)" fg:x="138938" fg:w="43"/><text x="52.1743%" y="591.50"></text></g><g><title>copy_command (46 samples, 0.02%)</title><rect x="51.9236%" y="597" width="0.0172%" height="15" fill="rgb(211,127,2)" fg:x="138936" fg:w="46"/><text x="52.1736%" y="607.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="51.9236%" y="613" width="0.0179%" height="15" fill="rgb(236,87,47)" fg:x="138936" fg:w="48"/><text x="52.1736%" y="623.50"></text></g><g><title>copy_command (56 samples, 0.02%)</title><rect x="51.9217%" y="645" width="0.0209%" height="15" fill="rgb(223,190,45)" fg:x="138931" fg:w="56"/><text x="52.1717%" y="655.50"></text></g><g><title>copy_command (52 samples, 0.02%)</title><rect x="51.9232%" y="629" width="0.0194%" height="15" fill="rgb(215,5,16)" fg:x="138935" fg:w="52"/><text x="52.1732%" y="639.50"></text></g><g><title>copy_command (59 samples, 0.02%)</title><rect x="51.9213%" y="661" width="0.0220%" height="15" fill="rgb(252,82,33)" fg:x="138930" fg:w="59"/><text x="52.1713%" y="671.50"></text></g><g><title>copy_command (70 samples, 0.03%)</title><rect x="51.9187%" y="677" width="0.0262%" height="15" fill="rgb(247,213,44)" fg:x="138923" fg:w="70"/><text x="52.1687%" y="687.50"></text></g><g><title>copy_command (74 samples, 0.03%)</title><rect x="51.9187%" y="725" width="0.0277%" height="15" fill="rgb(205,196,44)" fg:x="138923" fg:w="74"/><text x="52.1687%" y="735.50"></text></g><g><title>copy_command (74 samples, 0.03%)</title><rect x="51.9187%" y="709" width="0.0277%" height="15" fill="rgb(237,96,54)" fg:x="138923" fg:w="74"/><text x="52.1687%" y="719.50"></text></g><g><title>copy_command (74 samples, 0.03%)</title><rect x="51.9187%" y="693" width="0.0277%" height="15" fill="rgb(230,113,34)" fg:x="138923" fg:w="74"/><text x="52.1687%" y="703.50"></text></g><g><title>bind_function (75 samples, 0.03%)</title><rect x="51.9187%" y="741" width="0.0280%" height="15" fill="rgb(221,224,12)" fg:x="138923" fg:w="75"/><text x="52.1687%" y="751.50"></text></g><g><title>copy_command (28 samples, 0.01%)</title><rect x="51.9564%" y="517" width="0.0105%" height="15" fill="rgb(219,112,44)" fg:x="139024" fg:w="28"/><text x="52.2064%" y="527.50"></text></g><g><title>copy_command (27 samples, 0.01%)</title><rect x="51.9568%" y="501" width="0.0101%" height="15" fill="rgb(210,31,13)" fg:x="139025" fg:w="27"/><text x="52.2068%" y="511.50"></text></g><g><title>copy_command (30 samples, 0.01%)</title><rect x="51.9561%" y="533" width="0.0112%" height="15" fill="rgb(230,25,16)" fg:x="139023" fg:w="30"/><text x="52.2061%" y="543.50"></text></g><g><title>copy_command (31 samples, 0.01%)</title><rect x="51.9561%" y="549" width="0.0116%" height="15" fill="rgb(246,108,53)" fg:x="139023" fg:w="31"/><text x="52.2061%" y="559.50"></text></g><g><title>copy_command (33 samples, 0.01%)</title><rect x="51.9557%" y="565" width="0.0123%" height="15" fill="rgb(241,172,50)" fg:x="139022" fg:w="33"/><text x="52.2057%" y="575.50"></text></g><g><title>copy_command (48 samples, 0.02%)</title><rect x="51.9505%" y="597" width="0.0179%" height="15" fill="rgb(235,141,10)" fg:x="139008" fg:w="48"/><text x="52.2005%" y="607.50"></text></g><g><title>copy_command (47 samples, 0.02%)</title><rect x="51.9508%" y="581" width="0.0176%" height="15" fill="rgb(220,174,43)" fg:x="139009" fg:w="47"/><text x="52.2008%" y="591.50"></text></g><g><title>copy_command (50 samples, 0.02%)</title><rect x="51.9505%" y="613" width="0.0187%" height="15" fill="rgb(215,181,40)" fg:x="139008" fg:w="50"/><text x="52.2005%" y="623.50"></text></g><g><title>copy_command (51 samples, 0.02%)</title><rect x="51.9505%" y="629" width="0.0191%" height="15" fill="rgb(230,97,2)" fg:x="139008" fg:w="51"/><text x="52.2005%" y="639.50"></text></g><g><title>copy_command (57 samples, 0.02%)</title><rect x="51.9486%" y="645" width="0.0213%" height="15" fill="rgb(211,25,27)" fg:x="139003" fg:w="57"/><text x="52.1986%" y="655.50"></text></g><g><title>copy_command (62 samples, 0.02%)</title><rect x="51.9475%" y="677" width="0.0232%" height="15" fill="rgb(230,87,26)" fg:x="139000" fg:w="62"/><text x="52.1975%" y="687.50"></text></g><g><title>copy_command (62 samples, 0.02%)</title><rect x="51.9475%" y="661" width="0.0232%" height="15" fill="rgb(227,160,17)" fg:x="139000" fg:w="62"/><text x="52.1975%" y="671.50"></text></g><g><title>copy_command (65 samples, 0.02%)</title><rect x="51.9475%" y="693" width="0.0243%" height="15" fill="rgb(244,85,34)" fg:x="139000" fg:w="65"/><text x="52.1975%" y="703.50"></text></g><g><title>copy_function_def_contents (68 samples, 0.03%)</title><rect x="51.9475%" y="741" width="0.0254%" height="15" fill="rgb(207,70,0)" fg:x="139000" fg:w="68"/><text x="52.1975%" y="751.50"></text></g><g><title>copy_command (68 samples, 0.03%)</title><rect x="51.9475%" y="725" width="0.0254%" height="15" fill="rgb(223,129,7)" fg:x="139000" fg:w="68"/><text x="52.1975%" y="735.50"></text></g><g><title>copy_command (68 samples, 0.03%)</title><rect x="51.9475%" y="709" width="0.0254%" height="15" fill="rgb(246,105,7)" fg:x="139000" fg:w="68"/><text x="52.1975%" y="719.50"></text></g><g><title>__libc_fork (29 samples, 0.01%)</title><rect x="51.9934%" y="613" width="0.0108%" height="15" fill="rgb(215,154,42)" fg:x="139123" fg:w="29"/><text x="52.2434%" y="623.50"></text></g><g><title>make_child (32 samples, 0.01%)</title><rect x="51.9934%" y="629" width="0.0120%" height="15" fill="rgb(220,215,30)" fg:x="139123" fg:w="32"/><text x="52.2434%" y="639.50"></text></g><g><title>execute_command_internal (59 samples, 0.02%)</title><rect x="51.9867%" y="645" width="0.0220%" height="15" fill="rgb(228,81,51)" fg:x="139105" fg:w="59"/><text x="52.2367%" y="655.50"></text></g><g><title>parse_and_execute (68 samples, 0.03%)</title><rect x="51.9860%" y="661" width="0.0254%" height="15" fill="rgb(247,71,54)" fg:x="139103" fg:w="68"/><text x="52.2360%" y="671.50"></text></g><g><title>expand_word_leave_quoted (94 samples, 0.04%)</title><rect x="51.9777%" y="709" width="0.0351%" height="15" fill="rgb(234,176,34)" fg:x="139081" fg:w="94"/><text x="52.2277%" y="719.50"></text></g><g><title>[bash] (94 samples, 0.04%)</title><rect x="51.9777%" y="693" width="0.0351%" height="15" fill="rgb(241,103,54)" fg:x="139081" fg:w="94"/><text x="52.2277%" y="703.50"></text></g><g><title>command_substitute (94 samples, 0.04%)</title><rect x="51.9777%" y="677" width="0.0351%" height="15" fill="rgb(228,22,34)" fg:x="139081" fg:w="94"/><text x="52.2277%" y="687.50"></text></g><g><title>execute_command (112 samples, 0.04%)</title><rect x="51.9733%" y="741" width="0.0419%" height="15" fill="rgb(241,179,48)" fg:x="139069" fg:w="112"/><text x="52.2233%" y="751.50"></text></g><g><title>execute_command_internal (112 samples, 0.04%)</title><rect x="51.9733%" y="725" width="0.0419%" height="15" fill="rgb(235,167,37)" fg:x="139069" fg:w="112"/><text x="52.2233%" y="735.50"></text></g><g><title>make_child (31 samples, 0.01%)</title><rect x="52.0226%" y="645" width="0.0116%" height="15" fill="rgb(213,109,30)" fg:x="139201" fg:w="31"/><text x="52.2726%" y="655.50"></text></g><g><title>__perf_event_task_sched_in (43 samples, 0.02%)</title><rect x="52.0592%" y="469" width="0.0161%" height="15" fill="rgb(222,172,16)" fg:x="139299" fg:w="43"/><text x="52.3092%" y="479.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (42 samples, 0.02%)</title><rect x="52.0596%" y="453" width="0.0157%" height="15" fill="rgb(233,192,5)" fg:x="139300" fg:w="42"/><text x="52.3096%" y="463.50"></text></g><g><title>native_write_msr (42 samples, 0.02%)</title><rect x="52.0596%" y="437" width="0.0157%" height="15" fill="rgb(247,189,41)" fg:x="139300" fg:w="42"/><text x="52.3096%" y="447.50"></text></g><g><title>__libc_fork (69 samples, 0.03%)</title><rect x="52.0502%" y="549" width="0.0258%" height="15" fill="rgb(218,134,47)" fg:x="139275" fg:w="69"/><text x="52.3002%" y="559.50"></text></g><g><title>arch_fork (68 samples, 0.03%)</title><rect x="52.0506%" y="533" width="0.0254%" height="15" fill="rgb(216,29,3)" fg:x="139276" fg:w="68"/><text x="52.3006%" y="543.50"></text></g><g><title>ret_from_fork (51 samples, 0.02%)</title><rect x="52.0570%" y="517" width="0.0191%" height="15" fill="rgb(246,140,12)" fg:x="139293" fg:w="51"/><text x="52.3070%" y="527.50"></text></g><g><title>schedule_tail (51 samples, 0.02%)</title><rect x="52.0570%" y="501" width="0.0191%" height="15" fill="rgb(230,136,11)" fg:x="139293" fg:w="51"/><text x="52.3070%" y="511.50"></text></g><g><title>finish_task_switch (45 samples, 0.02%)</title><rect x="52.0592%" y="485" width="0.0168%" height="15" fill="rgb(247,22,47)" fg:x="139299" fg:w="45"/><text x="52.3092%" y="495.50"></text></g><g><title>make_child (80 samples, 0.03%)</title><rect x="52.0499%" y="565" width="0.0299%" height="15" fill="rgb(218,84,22)" fg:x="139274" fg:w="80"/><text x="52.2999%" y="575.50"></text></g><g><title>execute_command_internal (120 samples, 0.04%)</title><rect x="52.0353%" y="629" width="0.0448%" height="15" fill="rgb(216,87,39)" fg:x="139235" fg:w="120"/><text x="52.2853%" y="639.50"></text></g><g><title>[bash] (120 samples, 0.04%)</title><rect x="52.0353%" y="613" width="0.0448%" height="15" fill="rgb(221,178,8)" fg:x="139235" fg:w="120"/><text x="52.2853%" y="623.50"></text></g><g><title>[bash] (120 samples, 0.04%)</title><rect x="52.0353%" y="597" width="0.0448%" height="15" fill="rgb(230,42,11)" fg:x="139235" fg:w="120"/><text x="52.2853%" y="607.50"></text></g><g><title>execute_command_internal (118 samples, 0.04%)</title><rect x="52.0360%" y="581" width="0.0441%" height="15" fill="rgb(237,229,4)" fg:x="139237" fg:w="118"/><text x="52.2860%" y="591.50"></text></g><g><title>parse_and_execute (129 samples, 0.05%)</title><rect x="52.0342%" y="645" width="0.0482%" height="15" fill="rgb(222,31,33)" fg:x="139232" fg:w="129"/><text x="52.2842%" y="655.50"></text></g><g><title>command_substitute (177 samples, 0.07%)</title><rect x="52.0174%" y="661" width="0.0661%" height="15" fill="rgb(210,17,39)" fg:x="139187" fg:w="177"/><text x="52.2674%" y="671.50"></text></g><g><title>[bash] (184 samples, 0.07%)</title><rect x="52.0159%" y="677" width="0.0688%" height="15" fill="rgb(244,93,20)" fg:x="139183" fg:w="184"/><text x="52.2659%" y="687.50"></text></g><g><title>[bash] (186 samples, 0.07%)</title><rect x="52.0159%" y="693" width="0.0695%" height="15" fill="rgb(210,40,47)" fg:x="139183" fg:w="186"/><text x="52.2659%" y="703.50"></text></g><g><title>[bash] (191 samples, 0.07%)</title><rect x="52.0151%" y="709" width="0.0714%" height="15" fill="rgb(239,211,47)" fg:x="139181" fg:w="191"/><text x="52.2651%" y="719.50"></text></g><g><title>[bash] (193 samples, 0.07%)</title><rect x="52.0151%" y="725" width="0.0721%" height="15" fill="rgb(251,223,49)" fg:x="139181" fg:w="193"/><text x="52.2651%" y="735.50"></text></g><g><title>expand_words (194 samples, 0.07%)</title><rect x="52.0151%" y="741" width="0.0725%" height="15" fill="rgb(221,149,5)" fg:x="139181" fg:w="194"/><text x="52.2651%" y="751.50"></text></g><g><title>execute_command_internal (568 samples, 0.21%)</title><rect x="51.8768%" y="757" width="0.2123%" height="15" fill="rgb(219,224,51)" fg:x="138811" fg:w="568"/><text x="52.1268%" y="767.50"></text></g><g><title>execute_command (570 samples, 0.21%)</title><rect x="51.8765%" y="773" width="0.2130%" height="15" fill="rgb(223,7,8)" fg:x="138810" fg:w="570"/><text x="52.1265%" y="783.50"></text></g><g><title>[bash] (52 samples, 0.02%)</title><rect x="52.1926%" y="693" width="0.0194%" height="15" fill="rgb(241,217,22)" fg:x="139656" fg:w="52"/><text x="52.4426%" y="703.50"></text></g><g><title>buffered_getchar (46 samples, 0.02%)</title><rect x="52.2132%" y="693" width="0.0172%" height="15" fill="rgb(248,209,0)" fg:x="139711" fg:w="46"/><text x="52.4632%" y="703.50"></text></g><g><title>[bash] (223 samples, 0.08%)</title><rect x="52.1474%" y="709" width="0.0833%" height="15" fill="rgb(217,205,4)" fg:x="139535" fg:w="223"/><text x="52.3974%" y="719.50"></text></g><g><title>[bash] (412 samples, 0.15%)</title><rect x="52.1089%" y="725" width="0.1540%" height="15" fill="rgb(228,124,39)" fg:x="139432" fg:w="412"/><text x="52.3589%" y="735.50"></text></g><g><title>reader_loop (1,089 samples, 0.41%)</title><rect x="51.8645%" y="789" width="0.4070%" height="15" fill="rgb(250,116,42)" fg:x="138778" fg:w="1089"/><text x="52.1145%" y="799.50"></text></g><g><title>read_command (487 samples, 0.18%)</title><rect x="52.0895%" y="773" width="0.1820%" height="15" fill="rgb(223,202,9)" fg:x="139380" fg:w="487"/><text x="52.3395%" y="783.50"></text></g><g><title>parse_command (487 samples, 0.18%)</title><rect x="52.0895%" y="757" width="0.1820%" height="15" fill="rgb(242,222,40)" fg:x="139380" fg:w="487"/><text x="52.3395%" y="767.50"></text></g><g><title>yyparse (487 samples, 0.18%)</title><rect x="52.0895%" y="741" width="0.1820%" height="15" fill="rgb(229,99,46)" fg:x="139380" fg:w="487"/><text x="52.3395%" y="751.50"></text></g><g><title>__libc_start_main (1,100 samples, 0.41%)</title><rect x="51.8615%" y="821" width="0.4111%" height="15" fill="rgb(225,56,46)" fg:x="138770" fg:w="1100"/><text x="52.1115%" y="831.50"></text></g><g><title>main (1,100 samples, 0.41%)</title><rect x="51.8615%" y="805" width="0.4111%" height="15" fill="rgb(227,94,5)" fg:x="138770" fg:w="1100"/><text x="52.1115%" y="815.50"></text></g><g><title>_start (1,121 samples, 0.42%)</title><rect x="51.8615%" y="837" width="0.4189%" height="15" fill="rgb(205,112,38)" fg:x="138770" fg:w="1121"/><text x="52.1115%" y="847.50"></text></g><g><title>asm_exc_page_fault (40 samples, 0.01%)</title><rect x="52.2805%" y="837" width="0.0149%" height="15" fill="rgb(231,133,46)" fg:x="139891" fg:w="40"/><text x="52.5305%" y="847.50"></text></g><g><title>mmput (44 samples, 0.02%)</title><rect x="52.3014%" y="757" width="0.0164%" height="15" fill="rgb(217,16,9)" fg:x="139947" fg:w="44"/><text x="52.5514%" y="767.50"></text></g><g><title>exit_mmap (44 samples, 0.02%)</title><rect x="52.3014%" y="741" width="0.0164%" height="15" fill="rgb(249,173,9)" fg:x="139947" fg:w="44"/><text x="52.5514%" y="751.50"></text></g><g><title>unmap_vmas (27 samples, 0.01%)</title><rect x="52.3077%" y="725" width="0.0101%" height="15" fill="rgb(205,163,53)" fg:x="139964" fg:w="27"/><text x="52.5577%" y="735.50"></text></g><g><title>unmap_page_range (27 samples, 0.01%)</title><rect x="52.3077%" y="709" width="0.0101%" height="15" fill="rgb(217,54,41)" fg:x="139964" fg:w="27"/><text x="52.5577%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (61 samples, 0.02%)</title><rect x="52.2958%" y="837" width="0.0228%" height="15" fill="rgb(228,216,12)" fg:x="139932" fg:w="61"/><text x="52.5458%" y="847.50"></text></g><g><title>do_syscall_64 (61 samples, 0.02%)</title><rect x="52.2958%" y="821" width="0.0228%" height="15" fill="rgb(244,228,15)" fg:x="139932" fg:w="61"/><text x="52.5458%" y="831.50"></text></g><g><title>__x64_sys_exit_group (46 samples, 0.02%)</title><rect x="52.3014%" y="805" width="0.0172%" height="15" fill="rgb(221,176,53)" fg:x="139947" fg:w="46"/><text x="52.5514%" y="815.50"></text></g><g><title>do_group_exit (46 samples, 0.02%)</title><rect x="52.3014%" y="789" width="0.0172%" height="15" fill="rgb(205,94,34)" fg:x="139947" fg:w="46"/><text x="52.5514%" y="799.50"></text></g><g><title>do_exit (46 samples, 0.02%)</title><rect x="52.3014%" y="773" width="0.0172%" height="15" fill="rgb(213,110,48)" fg:x="139947" fg:w="46"/><text x="52.5514%" y="783.50"></text></g><g><title>libtool (1,533 samples, 0.57%)</title><rect x="51.7460%" y="853" width="0.5729%" height="15" fill="rgb(236,142,28)" fg:x="138461" fg:w="1533"/><text x="51.9960%" y="863.50"></text></g><g><title>[[stack]] (28 samples, 0.01%)</title><rect x="52.3268%" y="837" width="0.0105%" height="15" fill="rgb(225,135,29)" fg:x="140015" fg:w="28"/><text x="52.5768%" y="847.50"></text></g><g><title>__GI__dl_addr (27 samples, 0.01%)</title><rect x="52.3548%" y="709" width="0.0101%" height="15" fill="rgb(252,45,31)" fg:x="140090" fg:w="27"/><text x="52.6048%" y="719.50"></text></g><g><title>malloc_hook_ini (29 samples, 0.01%)</title><rect x="52.3548%" y="757" width="0.0108%" height="15" fill="rgb(211,187,50)" fg:x="140090" fg:w="29"/><text x="52.6048%" y="767.50"></text></g><g><title>ptmalloc_init (29 samples, 0.01%)</title><rect x="52.3548%" y="741" width="0.0108%" height="15" fill="rgb(229,109,7)" fg:x="140090" fg:w="29"/><text x="52.6048%" y="751.50"></text></g><g><title>ptmalloc_init (29 samples, 0.01%)</title><rect x="52.3548%" y="725" width="0.0108%" height="15" fill="rgb(251,131,51)" fg:x="140090" fg:w="29"/><text x="52.6048%" y="735.50"></text></g><g><title>[libstdc++.so.6.0.28] (46 samples, 0.02%)</title><rect x="52.3500%" y="773" width="0.0172%" height="15" fill="rgb(251,180,35)" fg:x="140077" fg:w="46"/><text x="52.6000%" y="783.50"></text></g><g><title>_dl_start_user (54 samples, 0.02%)</title><rect x="52.3500%" y="837" width="0.0202%" height="15" fill="rgb(211,46,32)" fg:x="140077" fg:w="54"/><text x="52.6000%" y="847.50"></text></g><g><title>_dl_init (54 samples, 0.02%)</title><rect x="52.3500%" y="821" width="0.0202%" height="15" fill="rgb(248,123,17)" fg:x="140077" fg:w="54"/><text x="52.6000%" y="831.50"></text></g><g><title>call_init (54 samples, 0.02%)</title><rect x="52.3500%" y="805" width="0.0202%" height="15" fill="rgb(227,141,18)" fg:x="140077" fg:w="54"/><text x="52.6000%" y="815.50"></text></g><g><title>call_init (54 samples, 0.02%)</title><rect x="52.3500%" y="789" width="0.0202%" height="15" fill="rgb(216,102,9)" fg:x="140077" fg:w="54"/><text x="52.6000%" y="799.50"></text></g><g><title>std::locale::locale (29 samples, 0.01%)</title><rect x="52.3795%" y="757" width="0.0108%" height="15" fill="rgb(253,47,13)" fg:x="140156" fg:w="29"/><text x="52.6295%" y="767.50"></text></g><g><title>[libstdc++.so.6.0.28] (29 samples, 0.01%)</title><rect x="52.3795%" y="741" width="0.0108%" height="15" fill="rgb(226,93,23)" fg:x="140156" fg:w="29"/><text x="52.6295%" y="751.50"></text></g><g><title>__pthread_once_slow (28 samples, 0.01%)</title><rect x="52.3799%" y="725" width="0.0105%" height="15" fill="rgb(247,104,17)" fg:x="140157" fg:w="28"/><text x="52.6299%" y="735.50"></text></g><g><title>_GLOBAL__sub_I__Z12SwitchToEuidv (40 samples, 0.01%)</title><rect x="52.3758%" y="789" width="0.0149%" height="15" fill="rgb(233,203,26)" fg:x="140146" fg:w="40"/><text x="52.6258%" y="799.50"></text></g><g><title>std::ios_base::Init::Init (40 samples, 0.01%)</title><rect x="52.3758%" y="773" width="0.0149%" height="15" fill="rgb(244,98,49)" fg:x="140146" fg:w="40"/><text x="52.6258%" y="783.50"></text></g><g><title>__libc_csu_init (46 samples, 0.02%)</title><rect x="52.3758%" y="805" width="0.0172%" height="15" fill="rgb(235,134,22)" fg:x="140146" fg:w="46"/><text x="52.6258%" y="815.50"></text></g><g><title>bprm_execve (67 samples, 0.03%)</title><rect x="52.4083%" y="661" width="0.0250%" height="15" fill="rgb(221,70,32)" fg:x="140233" fg:w="67"/><text x="52.6583%" y="671.50"></text></g><g><title>do_execveat_common (81 samples, 0.03%)</title><rect x="52.4064%" y="677" width="0.0303%" height="15" fill="rgb(238,15,50)" fg:x="140228" fg:w="81"/><text x="52.6564%" y="687.50"></text></g><g><title>__execvpe_common (93 samples, 0.03%)</title><rect x="52.4034%" y="757" width="0.0348%" height="15" fill="rgb(215,221,48)" fg:x="140220" fg:w="93"/><text x="52.6534%" y="767.50"></text></g><g><title>__GI_execve (86 samples, 0.03%)</title><rect x="52.4060%" y="741" width="0.0321%" height="15" fill="rgb(236,73,3)" fg:x="140227" fg:w="86"/><text x="52.6560%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (85 samples, 0.03%)</title><rect x="52.4064%" y="725" width="0.0318%" height="15" fill="rgb(250,107,11)" fg:x="140228" fg:w="85"/><text x="52.6564%" y="735.50"></text></g><g><title>do_syscall_64 (85 samples, 0.03%)</title><rect x="52.4064%" y="709" width="0.0318%" height="15" fill="rgb(242,39,14)" fg:x="140228" fg:w="85"/><text x="52.6564%" y="719.50"></text></g><g><title>__x64_sys_execve (85 samples, 0.03%)</title><rect x="52.4064%" y="693" width="0.0318%" height="15" fill="rgb(248,164,37)" fg:x="140228" fg:w="85"/><text x="52.6564%" y="703.50"></text></g><g><title>dup_mm (50 samples, 0.02%)</title><rect x="52.4498%" y="645" width="0.0187%" height="15" fill="rgb(217,60,12)" fg:x="140344" fg:w="50"/><text x="52.6998%" y="655.50"></text></g><g><title>do_syscall_64 (73 samples, 0.03%)</title><rect x="52.4456%" y="709" width="0.0273%" height="15" fill="rgb(240,125,29)" fg:x="140333" fg:w="73"/><text x="52.6956%" y="719.50"></text></g><g><title>__do_sys_clone (73 samples, 0.03%)</title><rect x="52.4456%" y="693" width="0.0273%" height="15" fill="rgb(208,207,28)" fg:x="140333" fg:w="73"/><text x="52.6956%" y="703.50"></text></g><g><title>kernel_clone (73 samples, 0.03%)</title><rect x="52.4456%" y="677" width="0.0273%" height="15" fill="rgb(209,159,27)" fg:x="140333" fg:w="73"/><text x="52.6956%" y="687.50"></text></g><g><title>copy_process (73 samples, 0.03%)</title><rect x="52.4456%" y="661" width="0.0273%" height="15" fill="rgb(251,176,53)" fg:x="140333" fg:w="73"/><text x="52.6956%" y="671.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.03%)</title><rect x="52.4456%" y="725" width="0.0277%" height="15" fill="rgb(211,85,7)" fg:x="140333" fg:w="74"/><text x="52.6956%" y="735.50"></text></g><g><title>__perf_event_task_sched_in (39 samples, 0.01%)</title><rect x="52.4767%" y="677" width="0.0146%" height="15" fill="rgb(216,64,54)" fg:x="140416" fg:w="39"/><text x="52.7267%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (39 samples, 0.01%)</title><rect x="52.4767%" y="661" width="0.0146%" height="15" fill="rgb(217,54,24)" fg:x="140416" fg:w="39"/><text x="52.7267%" y="671.50"></text></g><g><title>native_write_msr (39 samples, 0.01%)</title><rect x="52.4767%" y="645" width="0.0146%" height="15" fill="rgb(208,206,53)" fg:x="140416" fg:w="39"/><text x="52.7267%" y="655.50"></text></g><g><title>arch_fork (129 samples, 0.05%)</title><rect x="52.4438%" y="741" width="0.0482%" height="15" fill="rgb(251,74,39)" fg:x="140328" fg:w="129"/><text x="52.6938%" y="751.50"></text></g><g><title>ret_from_fork (50 samples, 0.02%)</title><rect x="52.4733%" y="725" width="0.0187%" height="15" fill="rgb(226,47,5)" fg:x="140407" fg:w="50"/><text x="52.7233%" y="735.50"></text></g><g><title>schedule_tail (50 samples, 0.02%)</title><rect x="52.4733%" y="709" width="0.0187%" height="15" fill="rgb(234,111,33)" fg:x="140407" fg:w="50"/><text x="52.7233%" y="719.50"></text></g><g><title>finish_task_switch (41 samples, 0.02%)</title><rect x="52.4767%" y="693" width="0.0153%" height="15" fill="rgb(251,14,10)" fg:x="140416" fg:w="41"/><text x="52.7267%" y="703.50"></text></g><g><title>__libc_fork (149 samples, 0.06%)</title><rect x="52.4382%" y="757" width="0.0557%" height="15" fill="rgb(232,43,0)" fg:x="140313" fg:w="149"/><text x="52.6882%" y="767.50"></text></g><g><title>LegacyProcessWrapper::RunCommand (300 samples, 0.11%)</title><rect x="52.3929%" y="789" width="0.1121%" height="15" fill="rgb(222,68,43)" fg:x="140192" fg:w="300"/><text x="52.6429%" y="799.50"></text></g><g><title>LegacyProcessWrapper::SpawnChild (300 samples, 0.11%)</title><rect x="52.3929%" y="773" width="0.1121%" height="15" fill="rgb(217,24,23)" fg:x="140192" fg:w="300"/><text x="52.6429%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (76 samples, 0.03%)</title><rect x="52.5107%" y="629" width="0.0284%" height="15" fill="rgb(229,209,14)" fg:x="140507" fg:w="76"/><text x="52.7607%" y="639.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (75 samples, 0.03%)</title><rect x="52.5110%" y="613" width="0.0280%" height="15" fill="rgb(250,149,48)" fg:x="140508" fg:w="75"/><text x="52.7610%" y="623.50"></text></g><g><title>native_write_msr (74 samples, 0.03%)</title><rect x="52.5114%" y="597" width="0.0277%" height="15" fill="rgb(210,120,37)" fg:x="140509" fg:w="74"/><text x="52.7614%" y="607.50"></text></g><g><title>finish_task_switch (83 samples, 0.03%)</title><rect x="52.5099%" y="645" width="0.0310%" height="15" fill="rgb(210,21,8)" fg:x="140505" fg:w="83"/><text x="52.7599%" y="655.50"></text></g><g><title>schedule (84 samples, 0.03%)</title><rect x="52.5099%" y="677" width="0.0314%" height="15" fill="rgb(243,145,7)" fg:x="140505" fg:w="84"/><text x="52.7599%" y="687.50"></text></g><g><title>__schedule (84 samples, 0.03%)</title><rect x="52.5099%" y="661" width="0.0314%" height="15" fill="rgb(238,178,32)" fg:x="140505" fg:w="84"/><text x="52.7599%" y="671.50"></text></g><g><title>release_task (31 samples, 0.01%)</title><rect x="52.5413%" y="661" width="0.0116%" height="15" fill="rgb(222,4,10)" fg:x="140589" fg:w="31"/><text x="52.7913%" y="671.50"></text></g><g><title>WaitChild (121 samples, 0.05%)</title><rect x="52.5084%" y="773" width="0.0452%" height="15" fill="rgb(239,7,37)" fg:x="140501" fg:w="121"/><text x="52.7584%" y="783.50"></text></g><g><title>__GI___wait4 (119 samples, 0.04%)</title><rect x="52.5092%" y="757" width="0.0445%" height="15" fill="rgb(215,31,37)" fg:x="140503" fg:w="119"/><text x="52.7592%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (119 samples, 0.04%)</title><rect x="52.5092%" y="741" width="0.0445%" height="15" fill="rgb(224,83,33)" fg:x="140503" fg:w="119"/><text x="52.7592%" y="751.50"></text></g><g><title>do_syscall_64 (119 samples, 0.04%)</title><rect x="52.5092%" y="725" width="0.0445%" height="15" fill="rgb(239,55,3)" fg:x="140503" fg:w="119"/><text x="52.7592%" y="735.50"></text></g><g><title>kernel_wait4 (119 samples, 0.04%)</title><rect x="52.5092%" y="709" width="0.0445%" height="15" fill="rgb(247,92,11)" fg:x="140503" fg:w="119"/><text x="52.7592%" y="719.50"></text></g><g><title>do_wait (119 samples, 0.04%)</title><rect x="52.5092%" y="693" width="0.0445%" height="15" fill="rgb(239,200,7)" fg:x="140503" fg:w="119"/><text x="52.7592%" y="703.50"></text></g><g><title>wait_consider_task (33 samples, 0.01%)</title><rect x="52.5413%" y="677" width="0.0123%" height="15" fill="rgb(227,115,8)" fg:x="140589" fg:w="33"/><text x="52.7913%" y="687.50"></text></g><g><title>LegacyProcessWrapper::WaitForChild (211 samples, 0.08%)</title><rect x="52.5051%" y="789" width="0.0789%" height="15" fill="rgb(215,189,27)" fg:x="140492" fg:w="211"/><text x="52.7551%" y="799.50"></text></g><g><title>__GI_exit (81 samples, 0.03%)</title><rect x="52.5536%" y="773" width="0.0303%" height="15" fill="rgb(251,216,39)" fg:x="140622" fg:w="81"/><text x="52.8036%" y="783.50"></text></g><g><title>__run_exit_handlers (81 samples, 0.03%)</title><rect x="52.5536%" y="757" width="0.0303%" height="15" fill="rgb(207,29,47)" fg:x="140622" fg:w="81"/><text x="52.8036%" y="767.50"></text></g><g><title>std::ios_base::Init::~Init (31 samples, 0.01%)</title><rect x="52.5723%" y="741" width="0.0116%" height="15" fill="rgb(210,71,34)" fg:x="140672" fg:w="31"/><text x="52.8223%" y="751.50"></text></g><g><title>__libc_start_main (568 samples, 0.21%)</title><rect x="52.3758%" y="821" width="0.2123%" height="15" fill="rgb(253,217,51)" fg:x="140146" fg:w="568"/><text x="52.6258%" y="831.50"></text></g><g><title>main (522 samples, 0.20%)</title><rect x="52.3929%" y="805" width="0.1951%" height="15" fill="rgb(222,117,46)" fg:x="140192" fg:w="522"/><text x="52.6429%" y="815.50"></text></g><g><title>__do_munmap (38 samples, 0.01%)</title><rect x="52.6142%" y="533" width="0.0142%" height="15" fill="rgb(226,132,6)" fg:x="140784" fg:w="38"/><text x="52.8642%" y="543.50"></text></g><g><title>do_mmap (84 samples, 0.03%)</title><rect x="52.6119%" y="565" width="0.0314%" height="15" fill="rgb(254,145,51)" fg:x="140778" fg:w="84"/><text x="52.8619%" y="575.50"></text></g><g><title>mmap_region (82 samples, 0.03%)</title><rect x="52.6127%" y="549" width="0.0306%" height="15" fill="rgb(231,199,27)" fg:x="140780" fg:w="82"/><text x="52.8627%" y="559.50"></text></g><g><title>ksys_mmap_pgoff (86 samples, 0.03%)</title><rect x="52.6116%" y="597" width="0.0321%" height="15" fill="rgb(245,158,14)" fg:x="140777" fg:w="86"/><text x="52.8616%" y="607.50"></text></g><g><title>vm_mmap_pgoff (85 samples, 0.03%)</title><rect x="52.6119%" y="581" width="0.0318%" height="15" fill="rgb(240,113,14)" fg:x="140778" fg:w="85"/><text x="52.8619%" y="591.50"></text></g><g><title>do_syscall_64 (90 samples, 0.03%)</title><rect x="52.6116%" y="613" width="0.0336%" height="15" fill="rgb(210,20,13)" fg:x="140777" fg:w="90"/><text x="52.8616%" y="623.50"></text></g><g><title>_dl_map_segments (106 samples, 0.04%)</title><rect x="52.6060%" y="677" width="0.0396%" height="15" fill="rgb(241,144,13)" fg:x="140762" fg:w="106"/><text x="52.8560%" y="687.50"></text></g><g><title>__mmap64 (92 samples, 0.03%)</title><rect x="52.6112%" y="661" width="0.0344%" height="15" fill="rgb(235,43,34)" fg:x="140776" fg:w="92"/><text x="52.8612%" y="671.50"></text></g><g><title>__mmap64 (92 samples, 0.03%)</title><rect x="52.6112%" y="645" width="0.0344%" height="15" fill="rgb(208,36,20)" fg:x="140776" fg:w="92"/><text x="52.8612%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.03%)</title><rect x="52.6116%" y="629" width="0.0340%" height="15" fill="rgb(239,204,10)" fg:x="140777" fg:w="91"/><text x="52.8616%" y="639.50"></text></g><g><title>_dl_map_object_from_fd (141 samples, 0.05%)</title><rect x="52.6034%" y="693" width="0.0527%" height="15" fill="rgb(217,84,43)" fg:x="140755" fg:w="141"/><text x="52.8534%" y="703.50"></text></g><g><title>open_verify (31 samples, 0.01%)</title><rect x="52.6568%" y="693" width="0.0116%" height="15" fill="rgb(241,170,50)" fg:x="140898" fg:w="31"/><text x="52.9068%" y="703.50"></text></g><g><title>_dl_catch_exception (193 samples, 0.07%)</title><rect x="52.5974%" y="741" width="0.0721%" height="15" fill="rgb(226,205,29)" fg:x="140739" fg:w="193"/><text x="52.8474%" y="751.50"></text></g><g><title>openaux (193 samples, 0.07%)</title><rect x="52.5974%" y="725" width="0.0721%" height="15" fill="rgb(233,113,1)" fg:x="140739" fg:w="193"/><text x="52.8474%" y="735.50"></text></g><g><title>_dl_map_object (193 samples, 0.07%)</title><rect x="52.5974%" y="709" width="0.0721%" height="15" fill="rgb(253,98,13)" fg:x="140739" fg:w="193"/><text x="52.8474%" y="719.50"></text></g><g><title>_dl_map_object_deps (201 samples, 0.08%)</title><rect x="52.5963%" y="757" width="0.0751%" height="15" fill="rgb(211,115,12)" fg:x="140736" fg:w="201"/><text x="52.8463%" y="767.50"></text></g><g><title>_dl_protect_relro (27 samples, 0.01%)</title><rect x="52.6747%" y="741" width="0.0101%" height="15" fill="rgb(208,12,16)" fg:x="140946" fg:w="27"/><text x="52.9247%" y="751.50"></text></g><g><title>__mprotect (27 samples, 0.01%)</title><rect x="52.6747%" y="725" width="0.0101%" height="15" fill="rgb(237,193,54)" fg:x="140946" fg:w="27"/><text x="52.9247%" y="735.50"></text></g><g><title>dl_new_hash (104 samples, 0.04%)</title><rect x="52.7357%" y="693" width="0.0389%" height="15" fill="rgb(243,22,42)" fg:x="141109" fg:w="104"/><text x="52.9857%" y="703.50"></text></g><g><title>check_match (37 samples, 0.01%)</title><rect x="52.8354%" y="677" width="0.0138%" height="15" fill="rgb(233,151,36)" fg:x="141376" fg:w="37"/><text x="53.0854%" y="687.50"></text></g><g><title>_dl_lookup_symbol_x (340 samples, 0.13%)</title><rect x="52.7289%" y="709" width="0.1271%" height="15" fill="rgb(237,57,45)" fg:x="141091" fg:w="340"/><text x="52.9789%" y="719.50"></text></g><g><title>do_lookup_x (218 samples, 0.08%)</title><rect x="52.7745%" y="693" width="0.0815%" height="15" fill="rgb(221,88,17)" fg:x="141213" fg:w="218"/><text x="53.0245%" y="703.50"></text></g><g><title>elf_machine_rela (424 samples, 0.16%)</title><rect x="52.7005%" y="725" width="0.1585%" height="15" fill="rgb(230,79,15)" fg:x="141015" fg:w="424"/><text x="52.9505%" y="735.50"></text></g><g><title>elf_dynamic_do_Rela (486 samples, 0.18%)</title><rect x="52.6848%" y="741" width="0.1816%" height="15" fill="rgb(213,57,13)" fg:x="140973" fg:w="486"/><text x="52.9348%" y="751.50"></text></g><g><title>_dl_relocate_object (522 samples, 0.20%)</title><rect x="52.6740%" y="757" width="0.1951%" height="15" fill="rgb(222,116,39)" fg:x="140944" fg:w="522"/><text x="52.9240%" y="767.50"></text></g><g><title>[ld-2.31.so] (762 samples, 0.28%)</title><rect x="52.5888%" y="773" width="0.2848%" height="15" fill="rgb(245,107,2)" fg:x="140716" fg:w="762"/><text x="52.8388%" y="783.50"></text></g><g><title>_dl_start_final (775 samples, 0.29%)</title><rect x="52.5880%" y="805" width="0.2896%" height="15" fill="rgb(238,1,10)" fg:x="140714" fg:w="775"/><text x="52.8380%" y="815.50"></text></g><g><title>_dl_sysdep_start (775 samples, 0.29%)</title><rect x="52.5880%" y="789" width="0.2896%" height="15" fill="rgb(249,4,48)" fg:x="140714" fg:w="775"/><text x="52.8380%" y="799.50"></text></g><g><title>_dl_start (781 samples, 0.29%)</title><rect x="52.5880%" y="821" width="0.2919%" height="15" fill="rgb(223,151,18)" fg:x="140714" fg:w="781"/><text x="52.8380%" y="831.50"></text></g><g><title>_start (1,358 samples, 0.51%)</title><rect x="52.3754%" y="837" width="0.5075%" height="15" fill="rgb(227,65,43)" fg:x="140145" fg:w="1358"/><text x="52.6254%" y="847.50"></text></g><g><title>asm_exc_page_fault (51 samples, 0.02%)</title><rect x="52.8829%" y="837" width="0.0191%" height="15" fill="rgb(218,40,45)" fg:x="141503" fg:w="51"/><text x="53.1329%" y="847.50"></text></g><g><title>mmput (46 samples, 0.02%)</title><rect x="52.9068%" y="725" width="0.0172%" height="15" fill="rgb(252,121,31)" fg:x="141567" fg:w="46"/><text x="53.1568%" y="735.50"></text></g><g><title>exit_mmap (46 samples, 0.02%)</title><rect x="52.9068%" y="709" width="0.0172%" height="15" fill="rgb(219,158,43)" fg:x="141567" fg:w="46"/><text x="53.1568%" y="719.50"></text></g><g><title>begin_new_exec (56 samples, 0.02%)</title><rect x="52.9042%" y="741" width="0.0209%" height="15" fill="rgb(231,162,42)" fg:x="141560" fg:w="56"/><text x="53.1542%" y="751.50"></text></g><g><title>__x64_sys_execve (98 samples, 0.04%)</title><rect x="52.9020%" y="805" width="0.0366%" height="15" fill="rgb(217,179,25)" fg:x="141554" fg:w="98"/><text x="53.1520%" y="815.50"></text></g><g><title>do_execveat_common (98 samples, 0.04%)</title><rect x="52.9020%" y="789" width="0.0366%" height="15" fill="rgb(206,212,31)" fg:x="141554" fg:w="98"/><text x="53.1520%" y="799.50"></text></g><g><title>bprm_execve (98 samples, 0.04%)</title><rect x="52.9020%" y="773" width="0.0366%" height="15" fill="rgb(235,144,12)" fg:x="141554" fg:w="98"/><text x="53.1520%" y="783.50"></text></g><g><title>load_elf_binary (98 samples, 0.04%)</title><rect x="52.9020%" y="757" width="0.0366%" height="15" fill="rgb(213,51,10)" fg:x="141554" fg:w="98"/><text x="53.1520%" y="767.50"></text></g><g><title>unmap_page_range (57 samples, 0.02%)</title><rect x="52.9595%" y="709" width="0.0213%" height="15" fill="rgb(231,145,14)" fg:x="141708" fg:w="57"/><text x="53.2095%" y="719.50"></text></g><g><title>exit_mmap (113 samples, 0.04%)</title><rect x="52.9393%" y="741" width="0.0422%" height="15" fill="rgb(235,15,28)" fg:x="141654" fg:w="113"/><text x="53.1893%" y="751.50"></text></g><g><title>unmap_vmas (60 samples, 0.02%)</title><rect x="52.9591%" y="725" width="0.0224%" height="15" fill="rgb(237,206,10)" fg:x="141707" fg:w="60"/><text x="53.2091%" y="735.50"></text></g><g><title>mmput (114 samples, 0.04%)</title><rect x="52.9393%" y="757" width="0.0426%" height="15" fill="rgb(236,227,27)" fg:x="141654" fg:w="114"/><text x="53.1893%" y="767.50"></text></g><g><title>process-wrapper (1,760 samples, 0.66%)</title><rect x="52.3268%" y="853" width="0.6578%" height="15" fill="rgb(246,83,35)" fg:x="140015" fg:w="1760"/><text x="52.5768%" y="863.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (221 samples, 0.08%)</title><rect x="52.9020%" y="837" width="0.0826%" height="15" fill="rgb(220,136,24)" fg:x="141554" fg:w="221"/><text x="53.1520%" y="847.50"></text></g><g><title>do_syscall_64 (221 samples, 0.08%)</title><rect x="52.9020%" y="821" width="0.0826%" height="15" fill="rgb(217,3,25)" fg:x="141554" fg:w="221"/><text x="53.1520%" y="831.50"></text></g><g><title>__x64_sys_exit_group (123 samples, 0.05%)</title><rect x="52.9386%" y="805" width="0.0460%" height="15" fill="rgb(239,24,14)" fg:x="141652" fg:w="123"/><text x="53.1886%" y="815.50"></text></g><g><title>do_group_exit (123 samples, 0.05%)</title><rect x="52.9386%" y="789" width="0.0460%" height="15" fill="rgb(244,16,53)" fg:x="141652" fg:w="123"/><text x="53.1886%" y="799.50"></text></g><g><title>do_exit (123 samples, 0.05%)</title><rect x="52.9386%" y="773" width="0.0460%" height="15" fill="rgb(208,175,44)" fg:x="141652" fg:w="123"/><text x="53.1886%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (34 samples, 0.01%)</title><rect x="53.0615%" y="677" width="0.0127%" height="15" fill="rgb(252,18,48)" fg:x="141981" fg:w="34"/><text x="53.3115%" y="687.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (34 samples, 0.01%)</title><rect x="53.0615%" y="661" width="0.0127%" height="15" fill="rgb(234,199,32)" fg:x="141981" fg:w="34"/><text x="53.3115%" y="671.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="53.0615%" y="645" width="0.0127%" height="15" fill="rgb(225,77,54)" fg:x="141981" fg:w="34"/><text x="53.3115%" y="655.50"></text></g><g><title>schedule (43 samples, 0.02%)</title><rect x="53.0608%" y="725" width="0.0161%" height="15" fill="rgb(225,42,25)" fg:x="141979" fg:w="43"/><text x="53.3108%" y="735.50"></text></g><g><title>__schedule (43 samples, 0.02%)</title><rect x="53.0608%" y="709" width="0.0161%" height="15" fill="rgb(242,227,46)" fg:x="141979" fg:w="43"/><text x="53.3108%" y="719.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="53.0608%" y="693" width="0.0161%" height="15" fill="rgb(246,197,35)" fg:x="141979" fg:w="43"/><text x="53.3108%" y="703.50"></text></g><g><title>__dentry_kill (30 samples, 0.01%)</title><rect x="53.0840%" y="629" width="0.0112%" height="15" fill="rgb(215,159,26)" fg:x="142041" fg:w="30"/><text x="53.3340%" y="639.50"></text></g><g><title>d_invalidate (51 samples, 0.02%)</title><rect x="53.0795%" y="677" width="0.0191%" height="15" fill="rgb(212,194,50)" fg:x="142029" fg:w="51"/><text x="53.3295%" y="687.50"></text></g><g><title>shrink_dcache_parent (49 samples, 0.02%)</title><rect x="53.0802%" y="661" width="0.0183%" height="15" fill="rgb(246,132,1)" fg:x="142031" fg:w="49"/><text x="53.3302%" y="671.50"></text></g><g><title>shrink_dentry_list (39 samples, 0.01%)</title><rect x="53.0840%" y="645" width="0.0146%" height="15" fill="rgb(217,71,7)" fg:x="142041" fg:w="39"/><text x="53.3340%" y="655.50"></text></g><g><title>proc_invalidate_siblings_dcache (56 samples, 0.02%)</title><rect x="53.0787%" y="693" width="0.0209%" height="15" fill="rgb(252,59,32)" fg:x="142027" fg:w="56"/><text x="53.3287%" y="703.50"></text></g><g><title>do_wait (151 samples, 0.06%)</title><rect x="53.0436%" y="741" width="0.0564%" height="15" fill="rgb(253,204,25)" fg:x="141933" fg:w="151"/><text x="53.2936%" y="751.50"></text></g><g><title>wait_consider_task (62 samples, 0.02%)</title><rect x="53.0769%" y="725" width="0.0232%" height="15" fill="rgb(232,21,16)" fg:x="142022" fg:w="62"/><text x="53.3269%" y="735.50"></text></g><g><title>release_task (60 samples, 0.02%)</title><rect x="53.0776%" y="709" width="0.0224%" height="15" fill="rgb(248,90,29)" fg:x="142024" fg:w="60"/><text x="53.3276%" y="719.50"></text></g><g><title>do_syscall_64 (154 samples, 0.06%)</title><rect x="53.0429%" y="773" width="0.0576%" height="15" fill="rgb(249,223,7)" fg:x="141931" fg:w="154"/><text x="53.2929%" y="783.50"></text></g><g><title>kernel_wait4 (154 samples, 0.06%)</title><rect x="53.0429%" y="757" width="0.0576%" height="15" fill="rgb(231,119,42)" fg:x="141931" fg:w="154"/><text x="53.2929%" y="767.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_waitForProcessExit0 (157 samples, 0.06%)</title><rect x="53.0425%" y="821" width="0.0587%" height="15" fill="rgb(215,41,35)" fg:x="141930" fg:w="157"/><text x="53.2925%" y="831.50"></text></g><g><title>__GI___wait4 (156 samples, 0.06%)</title><rect x="53.0429%" y="805" width="0.0583%" height="15" fill="rgb(220,44,45)" fg:x="141931" fg:w="156"/><text x="53.2929%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (156 samples, 0.06%)</title><rect x="53.0429%" y="789" width="0.0583%" height="15" fill="rgb(253,197,36)" fg:x="141931" fg:w="156"/><text x="53.2929%" y="799.50"></text></g><g><title>Unsafe_Park (28 samples, 0.01%)</title><rect x="53.1026%" y="821" width="0.0105%" height="15" fill="rgb(245,225,54)" fg:x="142091" fg:w="28"/><text x="53.3526%" y="831.50"></text></g><g><title>[perf-21254.map] (341 samples, 0.13%)</title><rect x="52.9868%" y="837" width="0.1274%" height="15" fill="rgb(239,94,37)" fg:x="141781" fg:w="341"/><text x="53.2368%" y="847.50"></text></g><g><title>process_reaper (350 samples, 0.13%)</title><rect x="52.9846%" y="853" width="0.1308%" height="15" fill="rgb(242,217,10)" fg:x="141775" fg:w="350"/><text x="53.2346%" y="863.50"></text></g><g><title>__perf_event_task_sched_in (49 samples, 0.02%)</title><rect x="53.2615%" y="597" width="0.0183%" height="15" fill="rgb(250,193,7)" fg:x="142516" fg:w="49"/><text x="53.5115%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (48 samples, 0.02%)</title><rect x="53.2619%" y="581" width="0.0179%" height="15" fill="rgb(230,104,19)" fg:x="142517" fg:w="48"/><text x="53.5119%" y="591.50"></text></g><g><title>native_write_msr (48 samples, 0.02%)</title><rect x="53.2619%" y="565" width="0.0179%" height="15" fill="rgb(230,181,4)" fg:x="142517" fg:w="48"/><text x="53.5119%" y="575.50"></text></g><g><title>finish_task_switch (51 samples, 0.02%)</title><rect x="53.2611%" y="613" width="0.0191%" height="15" fill="rgb(216,219,49)" fg:x="142515" fg:w="51"/><text x="53.5111%" y="623.50"></text></g><g><title>futex_wait_queue_me (83 samples, 0.03%)</title><rect x="53.2548%" y="661" width="0.0310%" height="15" fill="rgb(254,144,0)" fg:x="142498" fg:w="83"/><text x="53.5048%" y="671.50"></text></g><g><title>schedule (81 samples, 0.03%)</title><rect x="53.2555%" y="645" width="0.0303%" height="15" fill="rgb(205,209,38)" fg:x="142500" fg:w="81"/><text x="53.5055%" y="655.50"></text></g><g><title>__schedule (81 samples, 0.03%)</title><rect x="53.2555%" y="629" width="0.0303%" height="15" fill="rgb(240,21,42)" fg:x="142500" fg:w="81"/><text x="53.5055%" y="639.50"></text></g><g><title>do_syscall_64 (89 samples, 0.03%)</title><rect x="53.2529%" y="725" width="0.0333%" height="15" fill="rgb(241,132,3)" fg:x="142493" fg:w="89"/><text x="53.5029%" y="735.50"></text></g><g><title>__x64_sys_futex (88 samples, 0.03%)</title><rect x="53.2533%" y="709" width="0.0329%" height="15" fill="rgb(225,14,2)" fg:x="142494" fg:w="88"/><text x="53.5033%" y="719.50"></text></g><g><title>do_futex (88 samples, 0.03%)</title><rect x="53.2533%" y="693" width="0.0329%" height="15" fill="rgb(210,141,35)" fg:x="142494" fg:w="88"/><text x="53.5033%" y="703.50"></text></g><g><title>futex_wait (86 samples, 0.03%)</title><rect x="53.2540%" y="677" width="0.0321%" height="15" fill="rgb(251,14,44)" fg:x="142496" fg:w="86"/><text x="53.5040%" y="687.50"></text></g><g><title>__pthread_cond_wait (97 samples, 0.04%)</title><rect x="53.2510%" y="789" width="0.0363%" height="15" fill="rgb(247,48,18)" fg:x="142488" fg:w="97"/><text x="53.5010%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (97 samples, 0.04%)</title><rect x="53.2510%" y="773" width="0.0363%" height="15" fill="rgb(225,0,40)" fg:x="142488" fg:w="97"/><text x="53.5010%" y="783.50"></text></g><g><title>futex_wait_cancelable (94 samples, 0.04%)</title><rect x="53.2521%" y="757" width="0.0351%" height="15" fill="rgb(221,31,33)" fg:x="142491" fg:w="94"/><text x="53.5021%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (92 samples, 0.03%)</title><rect x="53.2529%" y="741" width="0.0344%" height="15" fill="rgb(237,42,40)" fg:x="142493" fg:w="92"/><text x="53.5029%" y="751.50"></text></g><g><title>Unsafe_Park (109 samples, 0.04%)</title><rect x="53.2477%" y="821" width="0.0407%" height="15" fill="rgb(233,51,29)" fg:x="142479" fg:w="109"/><text x="53.4977%" y="831.50"></text></g><g><title>Parker::park (107 samples, 0.04%)</title><rect x="53.2484%" y="805" width="0.0400%" height="15" fill="rgb(226,58,20)" fg:x="142481" fg:w="107"/><text x="53.4984%" y="815.50"></text></g><g><title>[perf-21254.map] (455 samples, 0.17%)</title><rect x="53.1187%" y="837" width="0.1700%" height="15" fill="rgb(208,98,7)" fg:x="142134" fg:w="455"/><text x="53.3687%" y="847.50"></text></g><g><title>profile-writer- (481 samples, 0.18%)</title><rect x="53.1154%" y="853" width="0.1798%" height="15" fill="rgb(228,143,44)" fg:x="142125" fg:w="481"/><text x="53.3654%" y="863.50"></text></g><g><title>[python3.9] (68 samples, 0.03%)</title><rect x="53.3261%" y="821" width="0.0254%" height="15" fill="rgb(246,55,38)" fg:x="142689" fg:w="68"/><text x="53.5761%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (54 samples, 0.02%)</title><rect x="53.3714%" y="805" width="0.0202%" height="15" fill="rgb(247,87,16)" fg:x="142810" fg:w="54"/><text x="53.6214%" y="815.50"></text></g><g><title>_PyEval_EvalFrameDefault (44 samples, 0.02%)</title><rect x="53.3751%" y="789" width="0.0164%" height="15" fill="rgb(234,129,42)" fg:x="142820" fg:w="44"/><text x="53.6251%" y="799.50"></text></g><g><title>_PyFunction_Vectorcall (43 samples, 0.02%)</title><rect x="53.3755%" y="773" width="0.0161%" height="15" fill="rgb(220,82,16)" fg:x="142821" fg:w="43"/><text x="53.6255%" y="783.50"></text></g><g><title>_PyEval_EvalFrameDefault (33 samples, 0.01%)</title><rect x="53.3792%" y="757" width="0.0123%" height="15" fill="rgb(211,88,4)" fg:x="142831" fg:w="33"/><text x="53.6292%" y="767.50"></text></g><g><title>_PyFunction_Vectorcall (33 samples, 0.01%)</title><rect x="53.3792%" y="741" width="0.0123%" height="15" fill="rgb(248,151,21)" fg:x="142831" fg:w="33"/><text x="53.6292%" y="751.50"></text></g><g><title>_PyEval_EvalFrameDefault (97 samples, 0.04%)</title><rect x="53.3557%" y="821" width="0.0363%" height="15" fill="rgb(238,163,6)" fg:x="142768" fg:w="97"/><text x="53.6057%" y="831.50"></text></g><g><title>_PyFunction_Vectorcall (38 samples, 0.01%)</title><rect x="53.3919%" y="821" width="0.0142%" height="15" fill="rgb(209,183,11)" fg:x="142865" fg:w="38"/><text x="53.6419%" y="831.50"></text></g><g><title>_PyEval_EvalFrameDefault (29 samples, 0.01%)</title><rect x="53.3953%" y="805" width="0.0108%" height="15" fill="rgb(219,37,20)" fg:x="142874" fg:w="29"/><text x="53.6453%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (29 samples, 0.01%)</title><rect x="53.3953%" y="789" width="0.0108%" height="15" fill="rgb(210,158,4)" fg:x="142874" fg:w="29"/><text x="53.6453%" y="799.50"></text></g><g><title>_PyObject_CallMethodIdObjArgs (28 samples, 0.01%)</title><rect x="53.4065%" y="821" width="0.0105%" height="15" fill="rgb(221,167,53)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="831.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4065%" y="805" width="0.0105%" height="15" fill="rgb(237,151,45)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="815.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="53.4065%" y="789" width="0.0105%" height="15" fill="rgb(231,39,3)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="799.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="773" width="0.0105%" height="15" fill="rgb(212,167,28)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="783.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="53.4065%" y="757" width="0.0105%" height="15" fill="rgb(232,178,8)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="767.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="741" width="0.0105%" height="15" fill="rgb(225,151,20)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="751.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="53.4065%" y="725" width="0.0105%" height="15" fill="rgb(238,3,37)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="735.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="709" width="0.0105%" height="15" fill="rgb(251,147,42)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="719.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="53.4065%" y="693" width="0.0105%" height="15" fill="rgb(208,173,10)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="703.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="677" width="0.0105%" height="15" fill="rgb(246,225,4)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="687.50"></text></g><g><title>_PyFunction_Vectorcall (28 samples, 0.01%)</title><rect x="53.4065%" y="661" width="0.0105%" height="15" fill="rgb(248,102,6)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="671.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4065%" y="645" width="0.0105%" height="15" fill="rgb(232,6,21)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="655.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="629" width="0.0105%" height="15" fill="rgb(221,179,22)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="639.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4065%" y="613" width="0.0105%" height="15" fill="rgb(252,50,20)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="623.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4065%" y="597" width="0.0105%" height="15" fill="rgb(222,56,38)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="607.50"></text></g><g><title>PyEval_EvalCode (28 samples, 0.01%)</title><rect x="53.4065%" y="581" width="0.0105%" height="15" fill="rgb(206,193,29)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="591.50"></text></g><g><title>_PyEval_EvalCodeWithName (28 samples, 0.01%)</title><rect x="53.4065%" y="565" width="0.0105%" height="15" fill="rgb(239,192,45)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="575.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4065%" y="549" width="0.0105%" height="15" fill="rgb(254,18,36)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="559.50"></text></g><g><title>_PyEval_EvalFrameDefault (28 samples, 0.01%)</title><rect x="53.4065%" y="533" width="0.0105%" height="15" fill="rgb(221,127,11)" fg:x="142904" fg:w="28"/><text x="53.6565%" y="543.50"></text></g><g><title>[unknown] (299 samples, 0.11%)</title><rect x="53.3074%" y="837" width="0.1117%" height="15" fill="rgb(234,146,35)" fg:x="142639" fg:w="299"/><text x="53.5574%" y="847.50"></text></g><g><title>[python3.9] (28 samples, 0.01%)</title><rect x="53.4311%" y="757" width="0.0105%" height="15" fill="rgb(254,201,37)" fg:x="142970" fg:w="28"/><text x="53.6811%" y="767.50"></text></g><g><title>Py_RunMain (72 samples, 0.03%)</title><rect x="53.4192%" y="789" width="0.0269%" height="15" fill="rgb(211,202,23)" fg:x="142938" fg:w="72"/><text x="53.6692%" y="799.50"></text></g><g><title>Py_FinalizeEx (55 samples, 0.02%)</title><rect x="53.4255%" y="773" width="0.0206%" height="15" fill="rgb(237,91,2)" fg:x="142955" fg:w="55"/><text x="53.6755%" y="783.50"></text></g><g><title>Py_InitializeFromConfig (75 samples, 0.03%)</title><rect x="53.4461%" y="757" width="0.0280%" height="15" fill="rgb(226,228,36)" fg:x="143010" fg:w="75"/><text x="53.6961%" y="767.50"></text></g><g><title>[python3.9] (75 samples, 0.03%)</title><rect x="53.4461%" y="741" width="0.0280%" height="15" fill="rgb(213,63,50)" fg:x="143010" fg:w="75"/><text x="53.6961%" y="751.50"></text></g><g><title>[python3.9] (74 samples, 0.03%)</title><rect x="53.4465%" y="725" width="0.0277%" height="15" fill="rgb(235,194,19)" fg:x="143011" fg:w="74"/><text x="53.6965%" y="735.50"></text></g><g><title>__libc_start_main (149 samples, 0.06%)</title><rect x="53.4192%" y="821" width="0.0557%" height="15" fill="rgb(207,204,18)" fg:x="142938" fg:w="149"/><text x="53.6692%" y="831.50"></text></g><g><title>Py_BytesMain (149 samples, 0.06%)</title><rect x="53.4192%" y="805" width="0.0557%" height="15" fill="rgb(248,8,7)" fg:x="142938" fg:w="149"/><text x="53.6692%" y="815.50"></text></g><g><title>[python3.9] (77 samples, 0.03%)</title><rect x="53.4461%" y="789" width="0.0288%" height="15" fill="rgb(223,145,47)" fg:x="143010" fg:w="77"/><text x="53.6961%" y="799.50"></text></g><g><title>[python3.9] (77 samples, 0.03%)</title><rect x="53.4461%" y="773" width="0.0288%" height="15" fill="rgb(228,84,11)" fg:x="143010" fg:w="77"/><text x="53.6961%" y="783.50"></text></g><g><title>_start (157 samples, 0.06%)</title><rect x="53.4192%" y="837" width="0.0587%" height="15" fill="rgb(218,76,45)" fg:x="142938" fg:w="157"/><text x="53.6692%" y="847.50"></text></g><g><title>python3 (500 samples, 0.19%)</title><rect x="53.2974%" y="853" width="0.1869%" height="15" fill="rgb(223,80,15)" fg:x="142612" fg:w="500"/><text x="53.5474%" y="863.50"></text></g><g><title>_dl_map_object_deps (27 samples, 0.01%)</title><rect x="53.4973%" y="757" width="0.0101%" height="15" fill="rgb(219,218,33)" fg:x="143147" fg:w="27"/><text x="53.7473%" y="767.50"></text></g><g><title>[ld-2.31.so] (44 samples, 0.02%)</title><rect x="53.4962%" y="773" width="0.0164%" height="15" fill="rgb(208,51,11)" fg:x="143144" fg:w="44"/><text x="53.7462%" y="783.50"></text></g><g><title>_dl_start_final (47 samples, 0.02%)</title><rect x="53.4962%" y="805" width="0.0176%" height="15" fill="rgb(229,165,39)" fg:x="143144" fg:w="47"/><text x="53.7462%" y="815.50"></text></g><g><title>_dl_sysdep_start (47 samples, 0.02%)</title><rect x="53.4962%" y="789" width="0.0176%" height="15" fill="rgb(241,100,24)" fg:x="143144" fg:w="47"/><text x="53.7462%" y="799.50"></text></g><g><title>_dl_start (52 samples, 0.02%)</title><rect x="53.4962%" y="821" width="0.0194%" height="15" fill="rgb(228,14,23)" fg:x="143144" fg:w="52"/><text x="53.7462%" y="831.50"></text></g><g><title>_start (53 samples, 0.02%)</title><rect x="53.4962%" y="837" width="0.0198%" height="15" fill="rgb(247,116,52)" fg:x="143144" fg:w="53"/><text x="53.7462%" y="847.50"></text></g><g><title>sed (97 samples, 0.04%)</title><rect x="53.4842%" y="853" width="0.0363%" height="15" fill="rgb(216,149,33)" fg:x="143112" fg:w="97"/><text x="53.7342%" y="863.50"></text></g><g><title>ThreadStateTransition::transition_from_native (27 samples, 0.01%)</title><rect x="53.7036%" y="821" width="0.0101%" height="15" fill="rgb(238,142,29)" fg:x="143699" fg:w="27"/><text x="53.9536%" y="831.50"></text></g><g><title>[anon] (686 samples, 0.26%)</title><rect x="53.5287%" y="837" width="0.2564%" height="15" fill="rgb(224,83,40)" fg:x="143231" fg:w="686"/><text x="53.7787%" y="847.50"></text></g><g><title>inode_permission.part.0 (42 samples, 0.02%)</title><rect x="53.8624%" y="693" width="0.0157%" height="15" fill="rgb(234,165,11)" fg:x="144124" fg:w="42"/><text x="54.1124%" y="703.50"></text></g><g><title>lookup_fast (54 samples, 0.02%)</title><rect x="53.8811%" y="677" width="0.0202%" height="15" fill="rgb(215,96,23)" fg:x="144174" fg:w="54"/><text x="54.1311%" y="687.50"></text></g><g><title>__d_lookup_rcu (50 samples, 0.02%)</title><rect x="53.8826%" y="661" width="0.0187%" height="15" fill="rgb(233,179,26)" fg:x="144178" fg:w="50"/><text x="54.1326%" y="671.50"></text></g><g><title>link_path_walk.part.0 (135 samples, 0.05%)</title><rect x="53.8568%" y="709" width="0.0505%" height="15" fill="rgb(225,129,33)" fg:x="144109" fg:w="135"/><text x="54.1068%" y="719.50"></text></g><g><title>walk_component (75 samples, 0.03%)</title><rect x="53.8792%" y="693" width="0.0280%" height="15" fill="rgb(237,49,13)" fg:x="144169" fg:w="75"/><text x="54.1292%" y="703.50"></text></g><g><title>path_lookupat (188 samples, 0.07%)</title><rect x="53.8520%" y="725" width="0.0703%" height="15" fill="rgb(211,3,31)" fg:x="144096" fg:w="188"/><text x="54.1020%" y="735.50"></text></g><g><title>filename_lookup (204 samples, 0.08%)</title><rect x="53.8471%" y="741" width="0.0762%" height="15" fill="rgb(216,152,19)" fg:x="144083" fg:w="204"/><text x="54.0971%" y="751.50"></text></g><g><title>user_path_at_empty (57 samples, 0.02%)</title><rect x="53.9323%" y="741" width="0.0213%" height="15" fill="rgb(251,121,35)" fg:x="144311" fg:w="57"/><text x="54.1823%" y="751.50"></text></g><g><title>getname_flags.part.0 (54 samples, 0.02%)</title><rect x="53.9334%" y="725" width="0.0202%" height="15" fill="rgb(210,217,47)" fg:x="144314" fg:w="54"/><text x="54.1834%" y="735.50"></text></g><g><title>__do_sys_newlstat (316 samples, 0.12%)</title><rect x="53.8363%" y="773" width="0.1181%" height="15" fill="rgb(244,116,22)" fg:x="144054" fg:w="316"/><text x="54.0863%" y="783.50"></text></g><g><title>vfs_statx (301 samples, 0.11%)</title><rect x="53.8419%" y="757" width="0.1125%" height="15" fill="rgb(228,17,21)" fg:x="144069" fg:w="301"/><text x="54.0919%" y="767.50"></text></g><g><title>do_syscall_64 (319 samples, 0.12%)</title><rect x="53.8355%" y="789" width="0.1192%" height="15" fill="rgb(240,149,34)" fg:x="144052" fg:w="319"/><text x="54.0855%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (329 samples, 0.12%)</title><rect x="53.8355%" y="805" width="0.1230%" height="15" fill="rgb(208,125,47)" fg:x="144052" fg:w="329"/><text x="54.0855%" y="815.50"></text></g><g><title>__GI___lxstat (343 samples, 0.13%)</title><rect x="53.8314%" y="821" width="0.1282%" height="15" fill="rgb(249,186,39)" fg:x="144041" fg:w="343"/><text x="54.0814%" y="831.50"></text></g><g><title>__GI___mkdir (38 samples, 0.01%)</title><rect x="53.9596%" y="821" width="0.0142%" height="15" fill="rgb(240,220,33)" fg:x="144384" fg:w="38"/><text x="54.2096%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (38 samples, 0.01%)</title><rect x="53.9596%" y="805" width="0.0142%" height="15" fill="rgb(243,110,23)" fg:x="144384" fg:w="38"/><text x="54.2096%" y="815.50"></text></g><g><title>do_syscall_64 (38 samples, 0.01%)</title><rect x="53.9596%" y="789" width="0.0142%" height="15" fill="rgb(219,163,46)" fg:x="144384" fg:w="38"/><text x="54.2096%" y="799.50"></text></g><g><title>do_mkdirat (38 samples, 0.01%)</title><rect x="53.9596%" y="773" width="0.0142%" height="15" fill="rgb(216,126,30)" fg:x="144384" fg:w="38"/><text x="54.2096%" y="783.50"></text></g><g><title>vfs_mkdir (28 samples, 0.01%)</title><rect x="53.9633%" y="757" width="0.0105%" height="15" fill="rgb(208,139,11)" fg:x="144394" fg:w="28"/><text x="54.2133%" y="767.50"></text></g><g><title>btrfs_mkdir (28 samples, 0.01%)</title><rect x="53.9633%" y="741" width="0.0105%" height="15" fill="rgb(213,118,36)" fg:x="144394" fg:w="28"/><text x="54.2133%" y="751.50"></text></g><g><title>btrfs_search_slot (28 samples, 0.01%)</title><rect x="53.9854%" y="709" width="0.0105%" height="15" fill="rgb(226,43,17)" fg:x="144453" fg:w="28"/><text x="54.2354%" y="719.50"></text></g><g><title>btrfs_real_readdir (61 samples, 0.02%)</title><rect x="53.9772%" y="725" width="0.0228%" height="15" fill="rgb(254,217,4)" fg:x="144431" fg:w="61"/><text x="54.2272%" y="735.50"></text></g><g><title>iterate_dir (71 samples, 0.03%)</title><rect x="53.9764%" y="741" width="0.0265%" height="15" fill="rgb(210,134,47)" fg:x="144429" fg:w="71"/><text x="54.2264%" y="751.50"></text></g><g><title>do_syscall_64 (73 samples, 0.03%)</title><rect x="53.9760%" y="773" width="0.0273%" height="15" fill="rgb(237,24,49)" fg:x="144428" fg:w="73"/><text x="54.2260%" y="783.50"></text></g><g><title>__x64_sys_getdents64 (73 samples, 0.03%)</title><rect x="53.9760%" y="757" width="0.0273%" height="15" fill="rgb(251,39,46)" fg:x="144428" fg:w="73"/><text x="54.2260%" y="767.50"></text></g><g><title>__GI___readdir64 (80 samples, 0.03%)</title><rect x="53.9738%" y="821" width="0.0299%" height="15" fill="rgb(251,220,3)" fg:x="144422" fg:w="80"/><text x="54.2238%" y="831.50"></text></g><g><title>__GI___getdents64 (75 samples, 0.03%)</title><rect x="53.9757%" y="805" width="0.0280%" height="15" fill="rgb(228,105,12)" fg:x="144427" fg:w="75"/><text x="54.2257%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (74 samples, 0.03%)</title><rect x="53.9760%" y="789" width="0.0277%" height="15" fill="rgb(215,196,1)" fg:x="144428" fg:w="74"/><text x="54.2260%" y="799.50"></text></g><g><title>lookup_fast (43 samples, 0.02%)</title><rect x="54.0441%" y="677" width="0.0161%" height="15" fill="rgb(214,33,39)" fg:x="144610" fg:w="43"/><text x="54.2941%" y="687.50"></text></g><g><title>__d_lookup_rcu (35 samples, 0.01%)</title><rect x="54.0470%" y="661" width="0.0131%" height="15" fill="rgb(220,19,52)" fg:x="144618" fg:w="35"/><text x="54.2970%" y="671.50"></text></g><g><title>link_path_walk.part.0 (101 samples, 0.04%)</title><rect x="54.0250%" y="709" width="0.0377%" height="15" fill="rgb(221,78,38)" fg:x="144559" fg:w="101"/><text x="54.2750%" y="719.50"></text></g><g><title>walk_component (54 samples, 0.02%)</title><rect x="54.0426%" y="693" width="0.0202%" height="15" fill="rgb(253,30,16)" fg:x="144606" fg:w="54"/><text x="54.2926%" y="703.50"></text></g><g><title>filename_lookup (143 samples, 0.05%)</title><rect x="54.0183%" y="741" width="0.0534%" height="15" fill="rgb(242,65,0)" fg:x="144541" fg:w="143"/><text x="54.2683%" y="751.50"></text></g><g><title>path_lookupat (132 samples, 0.05%)</title><rect x="54.0224%" y="725" width="0.0493%" height="15" fill="rgb(235,201,12)" fg:x="144552" fg:w="132"/><text x="54.2724%" y="735.50"></text></g><g><title>user_path_at_empty (35 samples, 0.01%)</title><rect x="54.0825%" y="741" width="0.0131%" height="15" fill="rgb(233,161,9)" fg:x="144713" fg:w="35"/><text x="54.3325%" y="751.50"></text></g><g><title>getname_flags.part.0 (35 samples, 0.01%)</title><rect x="54.0825%" y="725" width="0.0131%" height="15" fill="rgb(241,207,41)" fg:x="144713" fg:w="35"/><text x="54.3325%" y="735.50"></text></g><g><title>__do_sys_newstat (229 samples, 0.09%)</title><rect x="54.0108%" y="773" width="0.0856%" height="15" fill="rgb(212,69,46)" fg:x="144521" fg:w="229"/><text x="54.2608%" y="783.50"></text></g><g><title>vfs_statx (217 samples, 0.08%)</title><rect x="54.0153%" y="757" width="0.0811%" height="15" fill="rgb(239,69,45)" fg:x="144533" fg:w="217"/><text x="54.2653%" y="767.50"></text></g><g><title>do_syscall_64 (233 samples, 0.09%)</title><rect x="54.0104%" y="789" width="0.0871%" height="15" fill="rgb(242,117,48)" fg:x="144520" fg:w="233"/><text x="54.2604%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (238 samples, 0.09%)</title><rect x="54.0100%" y="805" width="0.0889%" height="15" fill="rgb(228,41,36)" fg:x="144519" fg:w="238"/><text x="54.2600%" y="815.50"></text></g><g><title>__GI___xstat (247 samples, 0.09%)</title><rect x="54.0074%" y="821" width="0.0923%" height="15" fill="rgb(212,3,32)" fg:x="144512" fg:w="247"/><text x="54.2574%" y="831.50"></text></g><g><title>__GI_remove (32 samples, 0.01%)</title><rect x="54.0997%" y="805" width="0.0120%" height="15" fill="rgb(233,41,49)" fg:x="144759" fg:w="32"/><text x="54.3497%" y="815.50"></text></g><g><title>__GI___rmdir (32 samples, 0.01%)</title><rect x="54.0997%" y="789" width="0.0120%" height="15" fill="rgb(252,170,49)" fg:x="144759" fg:w="32"/><text x="54.3497%" y="799.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (31 samples, 0.01%)</title><rect x="54.1001%" y="773" width="0.0116%" height="15" fill="rgb(229,53,26)" fg:x="144760" fg:w="31"/><text x="54.3501%" y="783.50"></text></g><g><title>do_syscall_64 (31 samples, 0.01%)</title><rect x="54.1001%" y="757" width="0.0116%" height="15" fill="rgb(217,157,12)" fg:x="144760" fg:w="31"/><text x="54.3501%" y="767.50"></text></g><g><title>do_rmdir (31 samples, 0.01%)</title><rect x="54.1001%" y="741" width="0.0116%" height="15" fill="rgb(227,17,9)" fg:x="144760" fg:w="31"/><text x="54.3501%" y="751.50"></text></g><g><title>vfs_rmdir.part.0 (29 samples, 0.01%)</title><rect x="54.1009%" y="725" width="0.0108%" height="15" fill="rgb(218,84,12)" fg:x="144762" fg:w="29"/><text x="54.3509%" y="735.50"></text></g><g><title>__GI_remove (78 samples, 0.03%)</title><rect x="54.0997%" y="821" width="0.0292%" height="15" fill="rgb(212,79,24)" fg:x="144759" fg:w="78"/><text x="54.3497%" y="831.50"></text></g><g><title>__unlink (46 samples, 0.02%)</title><rect x="54.1117%" y="805" width="0.0172%" height="15" fill="rgb(217,222,37)" fg:x="144791" fg:w="46"/><text x="54.3617%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.02%)</title><rect x="54.1121%" y="789" width="0.0168%" height="15" fill="rgb(246,208,8)" fg:x="144792" fg:w="45"/><text x="54.3621%" y="799.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="54.1121%" y="773" width="0.0168%" height="15" fill="rgb(244,133,10)" fg:x="144792" fg:w="45"/><text x="54.3621%" y="783.50"></text></g><g><title>do_unlinkat (44 samples, 0.02%)</title><rect x="54.1124%" y="757" width="0.0164%" height="15" fill="rgb(209,219,41)" fg:x="144793" fg:w="44"/><text x="54.3624%" y="767.50"></text></g><g><title>do_rmdir (50 samples, 0.02%)</title><rect x="54.1293%" y="773" width="0.0187%" height="15" fill="rgb(253,175,45)" fg:x="144838" fg:w="50"/><text x="54.3793%" y="783.50"></text></g><g><title>vfs_rmdir.part.0 (48 samples, 0.02%)</title><rect x="54.1300%" y="757" width="0.0179%" height="15" fill="rgb(235,100,37)" fg:x="144840" fg:w="48"/><text x="54.3800%" y="767.50"></text></g><g><title>__GI_unlinkat (68 samples, 0.03%)</title><rect x="54.1289%" y="821" width="0.0254%" height="15" fill="rgb(225,87,19)" fg:x="144837" fg:w="68"/><text x="54.3789%" y="831.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (67 samples, 0.03%)</title><rect x="54.1293%" y="805" width="0.0250%" height="15" fill="rgb(217,152,17)" fg:x="144838" fg:w="67"/><text x="54.3793%" y="815.50"></text></g><g><title>do_syscall_64 (67 samples, 0.03%)</title><rect x="54.1293%" y="789" width="0.0250%" height="15" fill="rgb(235,72,13)" fg:x="144838" fg:w="67"/><text x="54.3793%" y="799.50"></text></g><g><title>__opendir (34 samples, 0.01%)</title><rect x="54.1816%" y="821" width="0.0127%" height="15" fill="rgb(233,140,18)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="831.50"></text></g><g><title>__GI___open64_nocancel (34 samples, 0.01%)</title><rect x="54.1816%" y="805" width="0.0127%" height="15" fill="rgb(207,212,28)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (34 samples, 0.01%)</title><rect x="54.1816%" y="789" width="0.0127%" height="15" fill="rgb(220,130,25)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="799.50"></text></g><g><title>do_syscall_64 (34 samples, 0.01%)</title><rect x="54.1816%" y="773" width="0.0127%" height="15" fill="rgb(205,55,34)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="783.50"></text></g><g><title>__x64_sys_openat (34 samples, 0.01%)</title><rect x="54.1816%" y="757" width="0.0127%" height="15" fill="rgb(237,54,35)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="767.50"></text></g><g><title>do_sys_openat2 (34 samples, 0.01%)</title><rect x="54.1816%" y="741" width="0.0127%" height="15" fill="rgb(208,67,23)" fg:x="144978" fg:w="34"/><text x="54.4316%" y="751.50"></text></g><g><title>jni_GetByteArrayRegion (32 samples, 0.01%)</title><rect x="54.2010%" y="821" width="0.0120%" height="15" fill="rgb(206,207,50)" fg:x="145030" fg:w="32"/><text x="54.4510%" y="831.50"></text></g><g><title>jni_GetObjectField (47 samples, 0.02%)</title><rect x="54.2130%" y="821" width="0.0176%" height="15" fill="rgb(213,211,42)" fg:x="145062" fg:w="47"/><text x="54.4630%" y="831.50"></text></g><g><title>jni_GetStringLength (37 samples, 0.01%)</title><rect x="54.2305%" y="821" width="0.0138%" height="15" fill="rgb(252,197,50)" fg:x="145109" fg:w="37"/><text x="54.4805%" y="831.50"></text></g><g><title>InstanceKlass::allocate_instance (42 samples, 0.02%)</title><rect x="54.2575%" y="805" width="0.0157%" height="15" fill="rgb(251,211,41)" fg:x="145181" fg:w="42"/><text x="54.5075%" y="815.50"></text></g><g><title>CollectedHeap::obj_allocate (30 samples, 0.01%)</title><rect x="54.2619%" y="789" width="0.0112%" height="15" fill="rgb(229,211,5)" fg:x="145193" fg:w="30"/><text x="54.5119%" y="799.50"></text></g><g><title>MemAllocator::allocate (30 samples, 0.01%)</title><rect x="54.2619%" y="773" width="0.0112%" height="15" fill="rgb(239,36,31)" fg:x="145193" fg:w="30"/><text x="54.5119%" y="783.50"></text></g><g><title>JNI_ArgumentPusherVaArg::iterate (32 samples, 0.01%)</title><rect x="54.2900%" y="789" width="0.0120%" height="15" fill="rgb(248,67,31)" fg:x="145268" fg:w="32"/><text x="54.5400%" y="799.50"></text></g><g><title>JavaCalls::call_helper (62 samples, 0.02%)</title><rect x="54.3027%" y="789" width="0.0232%" height="15" fill="rgb(249,55,44)" fg:x="145302" fg:w="62"/><text x="54.5527%" y="799.50"></text></g><g><title>jni_NewObjectV (223 samples, 0.08%)</title><rect x="54.2470%" y="821" width="0.0833%" height="15" fill="rgb(216,82,12)" fg:x="145153" fg:w="223"/><text x="54.4970%" y="831.50"></text></g><g><title>jni_invoke_nonstatic (119 samples, 0.04%)</title><rect x="54.2859%" y="805" width="0.0445%" height="15" fill="rgb(242,174,1)" fg:x="145257" fg:w="119"/><text x="54.5359%" y="815.50"></text></g><g><title>__GI___libc_malloc (30 samples, 0.01%)</title><rect x="54.3490%" y="805" width="0.0112%" height="15" fill="rgb(208,120,29)" fg:x="145426" fg:w="30"/><text x="54.5990%" y="815.50"></text></g><g><title>operator new (34 samples, 0.01%)</title><rect x="54.3490%" y="821" width="0.0127%" height="15" fill="rgb(221,105,43)" fg:x="145426" fg:w="34"/><text x="54.5990%" y="831.50"></text></g><g><title>[libunix_jni.so] (1,568 samples, 0.59%)</title><rect x="53.7851%" y="837" width="0.5860%" height="15" fill="rgb(234,124,22)" fg:x="143917" fg:w="1568"/><text x="54.0351%" y="847.50"></text></g><g><title>Rewriter::rewrite (31 samples, 0.01%)</title><rect x="96.4821%" y="773" width="0.0116%" height="15" fill="rgb(212,23,30)" fg:x="258165" fg:w="31"/><text x="96.7321%" y="783.50"></text></g><g><title>Rewriter::Rewriter (31 samples, 0.01%)</title><rect x="96.4821%" y="757" width="0.0116%" height="15" fill="rgb(219,122,53)" fg:x="258165" fg:w="31"/><text x="96.7321%" y="767.50"></text></g><g><title>InstanceKlass::link_class_impl (79 samples, 0.03%)</title><rect x="96.4721%" y="789" width="0.0295%" height="15" fill="rgb(248,84,24)" fg:x="258138" fg:w="79"/><text x="96.7221%" y="799.50"></text></g><g><title>InstanceKlass::initialize_impl (83 samples, 0.03%)</title><rect x="96.4713%" y="805" width="0.0310%" height="15" fill="rgb(245,115,18)" fg:x="258136" fg:w="83"/><text x="96.7213%" y="815.50"></text></g><g><title>InterpreterRuntime::_new (117 samples, 0.04%)</title><rect x="96.4590%" y="821" width="0.0437%" height="15" fill="rgb(227,176,51)" fg:x="258103" fg:w="117"/><text x="96.7090%" y="831.50"></text></g><g><title>ObjArrayAllocator::initialize (33 samples, 0.01%)</title><rect x="96.5262%" y="757" width="0.0123%" height="15" fill="rgb(229,63,42)" fg:x="258283" fg:w="33"/><text x="96.7762%" y="767.50"></text></g><g><title>CollectedHeap::array_allocate (53 samples, 0.02%)</title><rect x="96.5203%" y="789" width="0.0198%" height="15" fill="rgb(247,202,24)" fg:x="258267" fg:w="53"/><text x="96.7703%" y="799.50"></text></g><g><title>MemAllocator::allocate (52 samples, 0.02%)</title><rect x="96.5206%" y="773" width="0.0194%" height="15" fill="rgb(244,173,20)" fg:x="258268" fg:w="52"/><text x="96.7706%" y="783.50"></text></g><g><title>InstanceKlass::allocate_objArray (86 samples, 0.03%)</title><rect x="96.5150%" y="805" width="0.0321%" height="15" fill="rgb(242,81,47)" fg:x="258253" fg:w="86"/><text x="96.7650%" y="815.50"></text></g><g><title>InterpreterRuntime::anewarray (126 samples, 0.05%)</title><rect x="96.5027%" y="821" width="0.0471%" height="15" fill="rgb(231,185,54)" fg:x="258220" fg:w="126"/><text x="96.7527%" y="831.50"></text></g><g><title>JavaThread::pd_last_frame (32 samples, 0.01%)</title><rect x="96.5771%" y="789" width="0.0120%" height="15" fill="rgb(243,55,32)" fg:x="258419" fg:w="32"/><text x="96.8271%" y="799.50"></text></g><g><title>CodeCache::find_blob (31 samples, 0.01%)</title><rect x="96.5774%" y="773" width="0.0116%" height="15" fill="rgb(208,167,19)" fg:x="258420" fg:w="31"/><text x="96.8274%" y="783.50"></text></g><g><title>TieredThresholdPolicy::call_event (110 samples, 0.04%)</title><rect x="96.6130%" y="757" width="0.0411%" height="15" fill="rgb(231,72,35)" fg:x="258515" fg:w="110"/><text x="96.8630%" y="767.50"></text></g><g><title>TieredThresholdPolicy::loop_predicate (36 samples, 0.01%)</title><rect x="96.6406%" y="741" width="0.0135%" height="15" fill="rgb(250,173,51)" fg:x="258589" fg:w="36"/><text x="96.8906%" y="751.50"></text></g><g><title>CompileBroker::compile_method_base (36 samples, 0.01%)</title><rect x="96.6552%" y="709" width="0.0135%" height="15" fill="rgb(209,5,22)" fg:x="258628" fg:w="36"/><text x="96.9052%" y="719.50"></text></g><g><title>CompileBroker::compile_method (42 samples, 0.02%)</title><rect x="96.6541%" y="725" width="0.0157%" height="15" fill="rgb(250,174,19)" fg:x="258625" fg:w="42"/><text x="96.9041%" y="735.50"></text></g><g><title>TieredThresholdPolicy::compile (43 samples, 0.02%)</title><rect x="96.6541%" y="757" width="0.0161%" height="15" fill="rgb(217,3,49)" fg:x="258625" fg:w="43"/><text x="96.9041%" y="767.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (43 samples, 0.02%)</title><rect x="96.6541%" y="741" width="0.0161%" height="15" fill="rgb(218,225,5)" fg:x="258625" fg:w="43"/><text x="96.9041%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (217 samples, 0.08%)</title><rect x="96.5894%" y="789" width="0.0811%" height="15" fill="rgb(236,89,11)" fg:x="258452" fg:w="217"/><text x="96.8394%" y="799.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (189 samples, 0.07%)</title><rect x="96.5999%" y="773" width="0.0706%" height="15" fill="rgb(206,33,28)" fg:x="258480" fg:w="189"/><text x="96.8499%" y="783.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow (287 samples, 0.11%)</title><rect x="96.5662%" y="821" width="0.1073%" height="15" fill="rgb(241,56,42)" fg:x="258390" fg:w="287"/><text x="96.8162%" y="831.50"></text></g><g><title>InterpreterRuntime::frequency_counter_overflow_inner (282 samples, 0.11%)</title><rect x="96.5681%" y="805" width="0.1054%" height="15" fill="rgb(222,44,11)" fg:x="258395" fg:w="282"/><text x="96.8181%" y="815.50"></text></g><g><title>JavaThread::pd_last_frame (39 samples, 0.01%)</title><rect x="96.6914%" y="805" width="0.0146%" height="15" fill="rgb(234,111,20)" fg:x="258725" fg:w="39"/><text x="96.9414%" y="815.50"></text></g><g><title>CodeCache::find_blob (36 samples, 0.01%)</title><rect x="96.6926%" y="789" width="0.0135%" height="15" fill="rgb(237,77,6)" fg:x="258728" fg:w="36"/><text x="96.9426%" y="799.50"></text></g><g><title>InterpreterRuntime::ldc (99 samples, 0.04%)</title><rect x="96.6735%" y="821" width="0.0370%" height="15" fill="rgb(235,111,23)" fg:x="258677" fg:w="99"/><text x="96.9235%" y="831.50"></text></g><g><title>ObjectMonitor::enter (34 samples, 0.01%)</title><rect x="96.7105%" y="805" width="0.0127%" height="15" fill="rgb(251,135,29)" fg:x="258776" fg:w="34"/><text x="96.9605%" y="815.50"></text></g><g><title>InterpreterRuntime::monitorenter (47 samples, 0.02%)</title><rect x="96.7105%" y="821" width="0.0176%" height="15" fill="rgb(217,57,1)" fg:x="258776" fg:w="47"/><text x="96.9605%" y="831.50"></text></g><g><title>InterpreterRuntime::newarray (43 samples, 0.02%)</title><rect x="96.7303%" y="821" width="0.0161%" height="15" fill="rgb(249,119,31)" fg:x="258829" fg:w="43"/><text x="96.9803%" y="831.50"></text></g><g><title>TypeArrayKlass::allocate_common (34 samples, 0.01%)</title><rect x="96.7337%" y="805" width="0.0127%" height="15" fill="rgb(233,164,33)" fg:x="258838" fg:w="34"/><text x="96.9837%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (32 samples, 0.01%)</title><rect x="96.7344%" y="789" width="0.0120%" height="15" fill="rgb(250,217,43)" fg:x="258840" fg:w="32"/><text x="96.9844%" y="799.50"></text></g><g><title>MemAllocator::allocate (31 samples, 0.01%)</title><rect x="96.7348%" y="773" width="0.0116%" height="15" fill="rgb(232,154,50)" fg:x="258841" fg:w="31"/><text x="96.9848%" y="783.50"></text></g><g><title>LinkResolver::resolve_field_access (29 samples, 0.01%)</title><rect x="96.7546%" y="789" width="0.0108%" height="15" fill="rgb(227,190,8)" fg:x="258894" fg:w="29"/><text x="97.0046%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_get_put (36 samples, 0.01%)</title><rect x="96.7523%" y="805" width="0.0135%" height="15" fill="rgb(209,217,32)" fg:x="258888" fg:w="36"/><text x="97.0023%" y="815.50"></text></g><g><title>LinkResolver::resolve_invokeinterface (51 samples, 0.02%)</title><rect x="96.8062%" y="773" width="0.0191%" height="15" fill="rgb(243,203,50)" fg:x="259032" fg:w="51"/><text x="97.0562%" y="783.50"></text></g><g><title>LinkResolver::linktime_resolve_virtual_method (38 samples, 0.01%)</title><rect x="96.8286%" y="757" width="0.0142%" height="15" fill="rgb(232,152,27)" fg:x="259092" fg:w="38"/><text x="97.0786%" y="767.50"></text></g><g><title>LinkResolver::lookup_method_in_klasses (28 samples, 0.01%)</title><rect x="96.8323%" y="741" width="0.0105%" height="15" fill="rgb(240,34,29)" fg:x="259102" fg:w="28"/><text x="97.0823%" y="751.50"></text></g><g><title>LinkResolver::resolve_invokevirtual (51 samples, 0.02%)</title><rect x="96.8252%" y="773" width="0.0191%" height="15" fill="rgb(215,185,52)" fg:x="259083" fg:w="51"/><text x="97.0752%" y="783.50"></text></g><g><title>InstanceKlass::link_class_impl (32 samples, 0.01%)</title><rect x="96.8450%" y="741" width="0.0120%" height="15" fill="rgb(240,89,49)" fg:x="259136" fg:w="32"/><text x="97.0950%" y="751.50"></text></g><g><title>InstanceKlass::initialize_impl (36 samples, 0.01%)</title><rect x="96.8443%" y="757" width="0.0135%" height="15" fill="rgb(225,12,52)" fg:x="259134" fg:w="36"/><text x="97.0943%" y="767.50"></text></g><g><title>LinkResolver::resolve_static_call (54 samples, 0.02%)</title><rect x="96.8443%" y="773" width="0.0202%" height="15" fill="rgb(239,128,45)" fg:x="259134" fg:w="54"/><text x="97.0943%" y="783.50"></text></g><g><title>LinkResolver::resolve_invoke (207 samples, 0.08%)</title><rect x="96.7893%" y="789" width="0.0774%" height="15" fill="rgb(211,78,47)" fg:x="258987" fg:w="207"/><text x="97.0393%" y="799.50"></text></g><g><title>InterpreterRuntime::resolve_invoke (291 samples, 0.11%)</title><rect x="96.7658%" y="805" width="0.1088%" height="15" fill="rgb(232,31,21)" fg:x="258924" fg:w="291"/><text x="97.0158%" y="815.50"></text></g><g><title>ConstantPool::copy_bootstrap_arguments_at_impl (42 samples, 0.02%)</title><rect x="96.8761%" y="741" width="0.0157%" height="15" fill="rgb(222,168,14)" fg:x="259219" fg:w="42"/><text x="97.1261%" y="751.50"></text></g><g><title>ConstantPool::resolve_constant_at_impl (41 samples, 0.02%)</title><rect x="96.8764%" y="725" width="0.0153%" height="15" fill="rgb(209,128,24)" fg:x="259220" fg:w="41"/><text x="97.1264%" y="735.50"></text></g><g><title>SystemDictionary::link_method_handle_constant (31 samples, 0.01%)</title><rect x="96.8802%" y="709" width="0.0116%" height="15" fill="rgb(249,35,13)" fg:x="259230" fg:w="31"/><text x="97.1302%" y="719.50"></text></g><g><title>ConstantPool::resolve_bootstrap_specifier_at_impl (60 samples, 0.02%)</title><rect x="96.8761%" y="757" width="0.0224%" height="15" fill="rgb(218,7,2)" fg:x="259219" fg:w="60"/><text x="97.1261%" y="767.50"></text></g><g><title>InterpreterRuntime::resolve_invokedynamic (81 samples, 0.03%)</title><rect x="96.8746%" y="805" width="0.0303%" height="15" fill="rgb(238,107,27)" fg:x="259215" fg:w="81"/><text x="97.1246%" y="815.50"></text></g><g><title>LinkResolver::resolve_invoke (78 samples, 0.03%)</title><rect x="96.8757%" y="789" width="0.0292%" height="15" fill="rgb(217,88,38)" fg:x="259218" fg:w="78"/><text x="97.1257%" y="799.50"></text></g><g><title>LinkResolver::resolve_invokedynamic (77 samples, 0.03%)</title><rect x="96.8761%" y="773" width="0.0288%" height="15" fill="rgb(230,207,0)" fg:x="259219" fg:w="77"/><text x="97.1261%" y="783.50"></text></g><g><title>InterpreterRuntime::resolve_from_cache (412 samples, 0.15%)</title><rect x="96.7516%" y="821" width="0.1540%" height="15" fill="rgb(249,64,54)" fg:x="258886" fg:w="412"/><text x="97.0016%" y="831.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;540784ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)9, 540784ul&gt;::access_barrier (32 samples, 0.01%)</title><rect x="96.9205%" y="805" width="0.0120%" height="15" fill="rgb(231,7,11)" fg:x="259338" fg:w="32"/><text x="97.1705%" y="815.50"></text></g><g><title>JVM_Clone (125 samples, 0.05%)</title><rect x="96.9153%" y="821" width="0.0467%" height="15" fill="rgb(205,149,21)" fg:x="259324" fg:w="125"/><text x="97.1653%" y="831.50"></text></g><g><title>JVM_GetClassDeclaredMethods (35 samples, 0.01%)</title><rect x="96.9979%" y="821" width="0.0131%" height="15" fill="rgb(215,126,34)" fg:x="259545" fg:w="35"/><text x="97.2479%" y="831.50"></text></g><g><title>get_class_declared_methods_helper (35 samples, 0.01%)</title><rect x="96.9979%" y="805" width="0.0131%" height="15" fill="rgb(241,132,45)" fg:x="259545" fg:w="35"/><text x="97.2479%" y="815.50"></text></g><g><title>Reflection::new_method (31 samples, 0.01%)</title><rect x="96.9994%" y="789" width="0.0116%" height="15" fill="rgb(252,69,32)" fg:x="259549" fg:w="31"/><text x="97.2494%" y="799.50"></text></g><g><title>JVM_IHashCode (36 samples, 0.01%)</title><rect x="97.0128%" y="821" width="0.0135%" height="15" fill="rgb(232,204,19)" fg:x="259585" fg:w="36"/><text x="97.2628%" y="831.50"></text></g><g><title>java_lang_StackTraceElement::fill_in (62 samples, 0.02%)</title><rect x="97.0382%" y="789" width="0.0232%" height="15" fill="rgb(249,15,47)" fg:x="259653" fg:w="62"/><text x="97.2882%" y="799.50"></text></g><g><title>StringTable::intern (35 samples, 0.01%)</title><rect x="97.0483%" y="773" width="0.0131%" height="15" fill="rgb(209,227,23)" fg:x="259680" fg:w="35"/><text x="97.2983%" y="783.50"></text></g><g><title>JVM_InitStackTraceElementArray (83 samples, 0.03%)</title><rect x="97.0311%" y="821" width="0.0310%" height="15" fill="rgb(248,92,24)" fg:x="259634" fg:w="83"/><text x="97.2811%" y="831.50"></text></g><g><title>java_lang_Throwable::get_stack_trace_elements (76 samples, 0.03%)</title><rect x="97.0338%" y="805" width="0.0284%" height="15" fill="rgb(247,59,2)" fg:x="259641" fg:w="76"/><text x="97.2838%" y="815.50"></text></g><g><title>JVM_IsInterrupted (35 samples, 0.01%)</title><rect x="97.0760%" y="821" width="0.0131%" height="15" fill="rgb(221,30,5)" fg:x="259754" fg:w="35"/><text x="97.3260%" y="831.50"></text></g><g><title>finish_task_switch (34 samples, 0.01%)</title><rect x="97.0924%" y="581" width="0.0127%" height="15" fill="rgb(208,108,53)" fg:x="259798" fg:w="34"/><text x="97.3424%" y="591.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="97.0932%" y="565" width="0.0120%" height="15" fill="rgb(211,183,26)" fg:x="259800" fg:w="32"/><text x="97.3432%" y="575.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (31 samples, 0.01%)</title><rect x="97.0936%" y="549" width="0.0116%" height="15" fill="rgb(232,132,4)" fg:x="259801" fg:w="31"/><text x="97.3436%" y="559.50"></text></g><g><title>native_write_msr (31 samples, 0.01%)</title><rect x="97.0936%" y="533" width="0.0116%" height="15" fill="rgb(253,128,37)" fg:x="259801" fg:w="31"/><text x="97.3436%" y="543.50"></text></g><g><title>do_syscall_64 (35 samples, 0.01%)</title><rect x="97.0924%" y="693" width="0.0131%" height="15" fill="rgb(221,58,24)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="703.50"></text></g><g><title>__x64_sys_futex (35 samples, 0.01%)</title><rect x="97.0924%" y="677" width="0.0131%" height="15" fill="rgb(230,54,45)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="687.50"></text></g><g><title>do_futex (35 samples, 0.01%)</title><rect x="97.0924%" y="661" width="0.0131%" height="15" fill="rgb(254,21,18)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="671.50"></text></g><g><title>futex_wait (35 samples, 0.01%)</title><rect x="97.0924%" y="645" width="0.0131%" height="15" fill="rgb(221,108,0)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="655.50"></text></g><g><title>futex_wait_queue_me (35 samples, 0.01%)</title><rect x="97.0924%" y="629" width="0.0131%" height="15" fill="rgb(206,95,1)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="639.50"></text></g><g><title>schedule (35 samples, 0.01%)</title><rect x="97.0924%" y="613" width="0.0131%" height="15" fill="rgb(237,52,5)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="623.50"></text></g><g><title>__schedule (35 samples, 0.01%)</title><rect x="97.0924%" y="597" width="0.0131%" height="15" fill="rgb(218,150,34)" fg:x="259798" fg:w="35"/><text x="97.3424%" y="607.50"></text></g><g><title>ObjectMonitor::wait (41 samples, 0.02%)</title><rect x="97.0906%" y="789" width="0.0153%" height="15" fill="rgb(235,194,28)" fg:x="259793" fg:w="41"/><text x="97.3406%" y="799.50"></text></g><g><title>os::PlatformEvent::park (38 samples, 0.01%)</title><rect x="97.0917%" y="773" width="0.0142%" height="15" fill="rgb(245,92,18)" fg:x="259796" fg:w="38"/><text x="97.3417%" y="783.50"></text></g><g><title>__pthread_cond_wait (37 samples, 0.01%)</title><rect x="97.0921%" y="757" width="0.0138%" height="15" fill="rgb(253,203,53)" fg:x="259797" fg:w="37"/><text x="97.3421%" y="767.50"></text></g><g><title>__pthread_cond_wait_common (37 samples, 0.01%)</title><rect x="97.0921%" y="741" width="0.0138%" height="15" fill="rgb(249,185,47)" fg:x="259797" fg:w="37"/><text x="97.3421%" y="751.50"></text></g><g><title>futex_wait_cancelable (37 samples, 0.01%)</title><rect x="97.0921%" y="725" width="0.0138%" height="15" fill="rgb(252,194,52)" fg:x="259797" fg:w="37"/><text x="97.3421%" y="735.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (36 samples, 0.01%)</title><rect x="97.0924%" y="709" width="0.0135%" height="15" fill="rgb(210,53,36)" fg:x="259798" fg:w="36"/><text x="97.3424%" y="719.50"></text></g><g><title>JVM_MonitorWait (44 samples, 0.02%)</title><rect x="97.0898%" y="821" width="0.0164%" height="15" fill="rgb(237,37,25)" fg:x="259791" fg:w="44"/><text x="97.3398%" y="831.50"></text></g><g><title>ObjectSynchronizer::wait (44 samples, 0.02%)</title><rect x="97.0898%" y="805" width="0.0164%" height="15" fill="rgb(242,116,27)" fg:x="259791" fg:w="44"/><text x="97.3398%" y="815.50"></text></g><g><title>SymbolTable::lookup_only (296 samples, 0.11%)</title><rect x="97.1534%" y="677" width="0.1106%" height="15" fill="rgb(213,185,26)" fg:x="259961" fg:w="296"/><text x="97.4034%" y="687.50"></text></g><g><title>ClassFileParser::parse_constant_pool_entries (331 samples, 0.12%)</title><rect x="97.1410%" y="693" width="0.1237%" height="15" fill="rgb(225,204,8)" fg:x="259928" fg:w="331"/><text x="97.3910%" y="703.50"></text></g><g><title>ClassFileParser::parse_constant_pool (335 samples, 0.13%)</title><rect x="97.1403%" y="709" width="0.1252%" height="15" fill="rgb(254,111,37)" fg:x="259926" fg:w="335"/><text x="97.3903%" y="719.50"></text></g><g><title>ClassFileParser::parse_methods (72 samples, 0.03%)</title><rect x="97.2681%" y="709" width="0.0269%" height="15" fill="rgb(242,35,9)" fg:x="260268" fg:w="72"/><text x="97.5181%" y="719.50"></text></g><g><title>ClassFileParser::parse_method (71 samples, 0.03%)</title><rect x="97.2685%" y="693" width="0.0265%" height="15" fill="rgb(232,138,49)" fg:x="260269" fg:w="71"/><text x="97.5185%" y="703.50"></text></g><g><title>ClassFileParser::ClassFileParser (431 samples, 0.16%)</title><rect x="97.1369%" y="741" width="0.1611%" height="15" fill="rgb(247,56,4)" fg:x="259917" fg:w="431"/><text x="97.3869%" y="751.50"></text></g><g><title>ClassFileParser::parse_stream (431 samples, 0.16%)</title><rect x="97.1369%" y="725" width="0.1611%" height="15" fill="rgb(226,179,17)" fg:x="259917" fg:w="431"/><text x="97.3869%" y="735.50"></text></g><g><title>HierarchyVisitor&lt;FindMethodsByErasedSig&gt;::run (30 samples, 0.01%)</title><rect x="97.3032%" y="693" width="0.0112%" height="15" fill="rgb(216,163,45)" fg:x="260362" fg:w="30"/><text x="97.5532%" y="703.50"></text></g><g><title>DefaultMethods::generate_default_methods (45 samples, 0.02%)</title><rect x="97.2999%" y="709" width="0.0168%" height="15" fill="rgb(211,157,3)" fg:x="260353" fg:w="45"/><text x="97.5499%" y="719.50"></text></g><g><title>ClassFileParser::fill_instance_klass (70 samples, 0.03%)</title><rect x="97.2980%" y="725" width="0.0262%" height="15" fill="rgb(234,44,20)" fg:x="260348" fg:w="70"/><text x="97.5480%" y="735.50"></text></g><g><title>ClassFileParser::create_instance_klass (74 samples, 0.03%)</title><rect x="97.2980%" y="741" width="0.0277%" height="15" fill="rgb(254,138,23)" fg:x="260348" fg:w="74"/><text x="97.5480%" y="751.50"></text></g><g><title>KlassFactory::create_from_stream (532 samples, 0.20%)</title><rect x="97.1369%" y="757" width="0.1988%" height="15" fill="rgb(206,119,39)" fg:x="259917" fg:w="532"/><text x="97.3869%" y="767.50"></text></g><g><title>JVM_DefineClassWithSource (563 samples, 0.21%)</title><rect x="97.1343%" y="805" width="0.2104%" height="15" fill="rgb(231,105,52)" fg:x="259910" fg:w="563"/><text x="97.3843%" y="815.50"></text></g><g><title>jvm_define_class_common (562 samples, 0.21%)</title><rect x="97.1347%" y="789" width="0.2100%" height="15" fill="rgb(250,20,5)" fg:x="259911" fg:w="562"/><text x="97.3847%" y="799.50"></text></g><g><title>SystemDictionary::resolve_from_stream (556 samples, 0.21%)</title><rect x="97.1369%" y="773" width="0.2078%" height="15" fill="rgb(215,198,30)" fg:x="259917" fg:w="556"/><text x="97.3869%" y="783.50"></text></g><g><title>Java_java_lang_ClassLoader_defineClass1 (592 samples, 0.22%)</title><rect x="97.1328%" y="821" width="0.2212%" height="15" fill="rgb(246,142,8)" fg:x="259906" fg:w="592"/><text x="97.3828%" y="831.50"></text></g><g><title>Java_java_lang_ClassLoader_findBootstrapClass (35 samples, 0.01%)</title><rect x="97.3540%" y="821" width="0.0131%" height="15" fill="rgb(243,26,38)" fg:x="260498" fg:w="35"/><text x="97.6040%" y="831.50"></text></g><g><title>Java_java_lang_ProcessHandleImpl_isAlive0 (53 samples, 0.02%)</title><rect x="97.3712%" y="821" width="0.0198%" height="15" fill="rgb(205,133,28)" fg:x="260544" fg:w="53"/><text x="97.6212%" y="831.50"></text></g><g><title>os_getParentPidAndTimings (53 samples, 0.02%)</title><rect x="97.3712%" y="805" width="0.0198%" height="15" fill="rgb(212,34,0)" fg:x="260544" fg:w="53"/><text x="97.6212%" y="815.50"></text></g><g><title>copy_process (39 samples, 0.01%)</title><rect x="97.4090%" y="709" width="0.0146%" height="15" fill="rgb(251,226,22)" fg:x="260645" fg:w="39"/><text x="97.6590%" y="719.50"></text></g><g><title>__perf_event_task_sched_in (32 samples, 0.01%)</title><rect x="97.4262%" y="613" width="0.0120%" height="15" fill="rgb(252,119,9)" fg:x="260691" fg:w="32"/><text x="97.6762%" y="623.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (32 samples, 0.01%)</title><rect x="97.4262%" y="597" width="0.0120%" height="15" fill="rgb(213,150,50)" fg:x="260691" fg:w="32"/><text x="97.6762%" y="607.50"></text></g><g><title>native_write_msr (32 samples, 0.01%)</title><rect x="97.4262%" y="581" width="0.0120%" height="15" fill="rgb(212,24,39)" fg:x="260691" fg:w="32"/><text x="97.6762%" y="591.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="97.4250%" y="629" width="0.0135%" height="15" fill="rgb(213,46,39)" fg:x="260688" fg:w="36"/><text x="97.6750%" y="639.50"></text></g><g><title>wait_for_completion_killable (45 samples, 0.02%)</title><rect x="97.4236%" y="709" width="0.0168%" height="15" fill="rgb(239,106,12)" fg:x="260684" fg:w="45"/><text x="97.6736%" y="719.50"></text></g><g><title>__wait_for_common (45 samples, 0.02%)</title><rect x="97.4236%" y="693" width="0.0168%" height="15" fill="rgb(249,229,21)" fg:x="260684" fg:w="45"/><text x="97.6736%" y="703.50"></text></g><g><title>schedule_timeout (45 samples, 0.02%)</title><rect x="97.4236%" y="677" width="0.0168%" height="15" fill="rgb(212,158,3)" fg:x="260684" fg:w="45"/><text x="97.6736%" y="687.50"></text></g><g><title>schedule (43 samples, 0.02%)</title><rect x="97.4243%" y="661" width="0.0161%" height="15" fill="rgb(253,26,48)" fg:x="260686" fg:w="43"/><text x="97.6743%" y="671.50"></text></g><g><title>__schedule (43 samples, 0.02%)</title><rect x="97.4243%" y="645" width="0.0161%" height="15" fill="rgb(238,178,20)" fg:x="260686" fg:w="43"/><text x="97.6743%" y="655.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (91 samples, 0.03%)</title><rect x="97.4079%" y="773" width="0.0340%" height="15" fill="rgb(208,86,15)" fg:x="260642" fg:w="91"/><text x="97.6579%" y="783.50"></text></g><g><title>do_syscall_64 (91 samples, 0.03%)</title><rect x="97.4079%" y="757" width="0.0340%" height="15" fill="rgb(239,42,53)" fg:x="260642" fg:w="91"/><text x="97.6579%" y="767.50"></text></g><g><title>__x64_sys_vfork (91 samples, 0.03%)</title><rect x="97.4079%" y="741" width="0.0340%" height="15" fill="rgb(245,226,8)" fg:x="260642" fg:w="91"/><text x="97.6579%" y="751.50"></text></g><g><title>kernel_clone (91 samples, 0.03%)</title><rect x="97.4079%" y="725" width="0.0340%" height="15" fill="rgb(216,176,32)" fg:x="260642" fg:w="91"/><text x="97.6579%" y="735.50"></text></g><g><title>__libc_vfork (129 samples, 0.05%)</title><rect x="97.4071%" y="789" width="0.0482%" height="15" fill="rgb(231,186,21)" fg:x="260640" fg:w="129"/><text x="97.6571%" y="799.50"></text></g><g><title>ret_from_fork (36 samples, 0.01%)</title><rect x="97.4419%" y="773" width="0.0135%" height="15" fill="rgb(205,95,49)" fg:x="260733" fg:w="36"/><text x="97.6919%" y="783.50"></text></g><g><title>schedule_tail (36 samples, 0.01%)</title><rect x="97.4419%" y="757" width="0.0135%" height="15" fill="rgb(217,145,8)" fg:x="260733" fg:w="36"/><text x="97.6919%" y="767.50"></text></g><g><title>finish_task_switch (36 samples, 0.01%)</title><rect x="97.4419%" y="741" width="0.0135%" height="15" fill="rgb(239,144,48)" fg:x="260733" fg:w="36"/><text x="97.6919%" y="751.50"></text></g><g><title>__perf_event_task_sched_in (36 samples, 0.01%)</title><rect x="97.4419%" y="725" width="0.0135%" height="15" fill="rgb(214,189,23)" fg:x="260733" fg:w="36"/><text x="97.6919%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (35 samples, 0.01%)</title><rect x="97.4422%" y="709" width="0.0131%" height="15" fill="rgb(229,157,17)" fg:x="260734" fg:w="35"/><text x="97.6922%" y="719.50"></text></g><g><title>native_write_msr (34 samples, 0.01%)</title><rect x="97.4426%" y="693" width="0.0127%" height="15" fill="rgb(230,5,48)" fg:x="260735" fg:w="34"/><text x="97.6926%" y="703.50"></text></g><g><title>bprm_execve (68 samples, 0.03%)</title><rect x="97.4598%" y="677" width="0.0254%" height="15" fill="rgb(224,156,48)" fg:x="260781" fg:w="68"/><text x="97.7098%" y="687.50"></text></g><g><title>do_execveat_common (103 samples, 0.04%)</title><rect x="97.4561%" y="693" width="0.0385%" height="15" fill="rgb(223,14,29)" fg:x="260771" fg:w="103"/><text x="97.7061%" y="703.50"></text></g><g><title>JDK_execvpe (105 samples, 0.04%)</title><rect x="97.4557%" y="773" width="0.0392%" height="15" fill="rgb(229,96,36)" fg:x="260770" fg:w="105"/><text x="97.7057%" y="783.50"></text></g><g><title>__GI_execve (105 samples, 0.04%)</title><rect x="97.4557%" y="757" width="0.0392%" height="15" fill="rgb(231,102,53)" fg:x="260770" fg:w="105"/><text x="97.7057%" y="767.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (104 samples, 0.04%)</title><rect x="97.4561%" y="741" width="0.0389%" height="15" fill="rgb(210,77,38)" fg:x="260771" fg:w="104"/><text x="97.7061%" y="751.50"></text></g><g><title>do_syscall_64 (104 samples, 0.04%)</title><rect x="97.4561%" y="725" width="0.0389%" height="15" fill="rgb(235,131,6)" fg:x="260771" fg:w="104"/><text x="97.7061%" y="735.50"></text></g><g><title>__x64_sys_execve (104 samples, 0.04%)</title><rect x="97.4561%" y="709" width="0.0389%" height="15" fill="rgb(252,55,38)" fg:x="260771" fg:w="104"/><text x="97.7061%" y="719.50"></text></g><g><title>proc_fill_cache (33 samples, 0.01%)</title><rect x="97.5017%" y="645" width="0.0123%" height="15" fill="rgb(246,38,14)" fg:x="260893" fg:w="33"/><text x="97.7517%" y="655.50"></text></g><g><title>proc_readfd_common (41 samples, 0.02%)</title><rect x="97.4998%" y="661" width="0.0153%" height="15" fill="rgb(242,27,5)" fg:x="260888" fg:w="41"/><text x="97.7498%" y="671.50"></text></g><g><title>__GI___readdir64 (46 samples, 0.02%)</title><rect x="97.4987%" y="757" width="0.0172%" height="15" fill="rgb(228,65,35)" fg:x="260885" fg:w="46"/><text x="97.7487%" y="767.50"></text></g><g><title>__GI___getdents64 (46 samples, 0.02%)</title><rect x="97.4987%" y="741" width="0.0172%" height="15" fill="rgb(245,93,11)" fg:x="260885" fg:w="46"/><text x="97.7487%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (46 samples, 0.02%)</title><rect x="97.4987%" y="725" width="0.0172%" height="15" fill="rgb(213,1,31)" fg:x="260885" fg:w="46"/><text x="97.7487%" y="735.50"></text></g><g><title>do_syscall_64 (46 samples, 0.02%)</title><rect x="97.4987%" y="709" width="0.0172%" height="15" fill="rgb(237,205,14)" fg:x="260885" fg:w="46"/><text x="97.7487%" y="719.50"></text></g><g><title>__x64_sys_getdents64 (46 samples, 0.02%)</title><rect x="97.4987%" y="693" width="0.0172%" height="15" fill="rgb(232,118,45)" fg:x="260885" fg:w="46"/><text x="97.7487%" y="703.50"></text></g><g><title>iterate_dir (45 samples, 0.02%)</title><rect x="97.4990%" y="677" width="0.0168%" height="15" fill="rgb(218,5,6)" fg:x="260886" fg:w="45"/><text x="97.7490%" y="687.50"></text></g><g><title>do_filp_open (41 samples, 0.02%)</title><rect x="97.5203%" y="661" width="0.0153%" height="15" fill="rgb(251,87,51)" fg:x="260943" fg:w="41"/><text x="97.7703%" y="671.50"></text></g><g><title>path_openat (40 samples, 0.01%)</title><rect x="97.5207%" y="645" width="0.0149%" height="15" fill="rgb(207,225,20)" fg:x="260944" fg:w="40"/><text x="97.7707%" y="655.50"></text></g><g><title>__opendir (45 samples, 0.02%)</title><rect x="97.5200%" y="757" width="0.0168%" height="15" fill="rgb(222,78,54)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="767.50"></text></g><g><title>__GI___open64_nocancel (45 samples, 0.02%)</title><rect x="97.5200%" y="741" width="0.0168%" height="15" fill="rgb(232,85,16)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (45 samples, 0.02%)</title><rect x="97.5200%" y="725" width="0.0168%" height="15" fill="rgb(244,25,33)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="735.50"></text></g><g><title>do_syscall_64 (45 samples, 0.02%)</title><rect x="97.5200%" y="709" width="0.0168%" height="15" fill="rgb(233,24,36)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="719.50"></text></g><g><title>__x64_sys_openat (45 samples, 0.02%)</title><rect x="97.5200%" y="693" width="0.0168%" height="15" fill="rgb(253,49,54)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="703.50"></text></g><g><title>do_sys_openat2 (45 samples, 0.02%)</title><rect x="97.5200%" y="677" width="0.0168%" height="15" fill="rgb(245,12,22)" fg:x="260942" fg:w="45"/><text x="97.7700%" y="687.50"></text></g><g><title>closeDescriptors (114 samples, 0.04%)</title><rect x="97.4972%" y="773" width="0.0426%" height="15" fill="rgb(253,141,28)" fg:x="260881" fg:w="114"/><text x="97.7472%" y="783.50"></text></g><g><title>Java_java_lang_ProcessImpl_forkAndExec (404 samples, 0.15%)</title><rect x="97.3910%" y="821" width="0.1510%" height="15" fill="rgb(225,207,27)" fg:x="260597" fg:w="404"/><text x="97.6410%" y="831.50"></text></g><g><title>vforkChild (363 samples, 0.14%)</title><rect x="97.4064%" y="805" width="0.1357%" height="15" fill="rgb(220,84,2)" fg:x="260638" fg:w="363"/><text x="97.6564%" y="815.50"></text></g><g><title>childProcess (232 samples, 0.09%)</title><rect x="97.4553%" y="789" width="0.0867%" height="15" fill="rgb(224,37,37)" fg:x="260769" fg:w="232"/><text x="97.7053%" y="799.50"></text></g><g><title>JVM_FillInStackTrace (49 samples, 0.02%)</title><rect x="97.5420%" y="805" width="0.0183%" height="15" fill="rgb(220,143,18)" fg:x="261001" fg:w="49"/><text x="97.7920%" y="815.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (47 samples, 0.02%)</title><rect x="97.5428%" y="789" width="0.0176%" height="15" fill="rgb(210,88,33)" fg:x="261003" fg:w="47"/><text x="97.7928%" y="799.50"></text></g><g><title>java_lang_Throwable::fill_in_stack_trace (47 samples, 0.02%)</title><rect x="97.5428%" y="773" width="0.0176%" height="15" fill="rgb(219,87,51)" fg:x="261003" fg:w="47"/><text x="97.7928%" y="783.50"></text></g><g><title>Java_java_lang_Throwable_fillInStackTrace (50 samples, 0.02%)</title><rect x="97.5420%" y="821" width="0.0187%" height="15" fill="rgb(211,7,35)" fg:x="261001" fg:w="50"/><text x="97.7920%" y="831.50"></text></g><g><title>Java_sun_nio_fs_UnixNativeDispatcher_mkdir0 (34 samples, 0.01%)</title><rect x="97.5607%" y="821" width="0.0127%" height="15" fill="rgb(232,77,2)" fg:x="261051" fg:w="34"/><text x="97.8107%" y="831.50"></text></g><g><title>__GI___mkdir (34 samples, 0.01%)</title><rect x="97.5607%" y="805" width="0.0127%" height="15" fill="rgb(249,94,25)" fg:x="261051" fg:w="34"/><text x="97.8107%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (33 samples, 0.01%)</title><rect x="97.5611%" y="789" width="0.0123%" height="15" fill="rgb(215,112,2)" fg:x="261052" fg:w="33"/><text x="97.8111%" y="799.50"></text></g><g><title>do_syscall_64 (33 samples, 0.01%)</title><rect x="97.5611%" y="773" width="0.0123%" height="15" fill="rgb(226,115,48)" fg:x="261052" fg:w="33"/><text x="97.8111%" y="783.50"></text></g><g><title>do_mkdirat (32 samples, 0.01%)</title><rect x="97.5615%" y="757" width="0.0120%" height="15" fill="rgb(249,196,10)" fg:x="261053" fg:w="32"/><text x="97.8115%" y="767.50"></text></g><g><title>kernel_init_free_pages (58 samples, 0.02%)</title><rect x="97.5973%" y="597" width="0.0217%" height="15" fill="rgb(237,109,14)" fg:x="261149" fg:w="58"/><text x="97.8473%" y="607.50"></text></g><g><title>clear_page_erms (57 samples, 0.02%)</title><rect x="97.5977%" y="581" width="0.0213%" height="15" fill="rgb(217,103,53)" fg:x="261150" fg:w="57"/><text x="97.8477%" y="591.50"></text></g><g><title>alloc_pages_vma (66 samples, 0.02%)</title><rect x="97.5955%" y="661" width="0.0247%" height="15" fill="rgb(244,137,9)" fg:x="261144" fg:w="66"/><text x="97.8455%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (65 samples, 0.02%)</title><rect x="97.5958%" y="645" width="0.0243%" height="15" fill="rgb(227,201,3)" fg:x="261145" fg:w="65"/><text x="97.8458%" y="655.50"></text></g><g><title>get_page_from_freelist (65 samples, 0.02%)</title><rect x="97.5958%" y="629" width="0.0243%" height="15" fill="rgb(243,94,6)" fg:x="261145" fg:w="65"/><text x="97.8458%" y="639.50"></text></g><g><title>prep_new_page (61 samples, 0.02%)</title><rect x="97.5973%" y="613" width="0.0228%" height="15" fill="rgb(235,118,5)" fg:x="261149" fg:w="61"/><text x="97.8473%" y="623.50"></text></g><g><title>clear_huge_page (44 samples, 0.02%)</title><rect x="97.6201%" y="661" width="0.0164%" height="15" fill="rgb(247,10,30)" fg:x="261210" fg:w="44"/><text x="97.8701%" y="671.50"></text></g><g><title>clear_subpage (43 samples, 0.02%)</title><rect x="97.6205%" y="645" width="0.0161%" height="15" fill="rgb(205,26,28)" fg:x="261211" fg:w="43"/><text x="97.8705%" y="655.50"></text></g><g><title>clear_page_erms (41 samples, 0.02%)</title><rect x="97.6213%" y="629" width="0.0153%" height="15" fill="rgb(206,99,35)" fg:x="261213" fg:w="41"/><text x="97.8713%" y="639.50"></text></g><g><title>InstanceKlass::allocate_objArray (145 samples, 0.05%)</title><rect x="97.5828%" y="805" width="0.0542%" height="15" fill="rgb(238,130,40)" fg:x="261110" fg:w="145"/><text x="97.8328%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (142 samples, 0.05%)</title><rect x="97.5839%" y="789" width="0.0531%" height="15" fill="rgb(224,126,31)" fg:x="261113" fg:w="142"/><text x="97.8339%" y="799.50"></text></g><g><title>MemAllocator::allocate (142 samples, 0.05%)</title><rect x="97.5839%" y="773" width="0.0531%" height="15" fill="rgb(254,105,17)" fg:x="261113" fg:w="142"/><text x="97.8339%" y="783.50"></text></g><g><title>ObjArrayAllocator::initialize (126 samples, 0.05%)</title><rect x="97.5899%" y="757" width="0.0471%" height="15" fill="rgb(216,87,36)" fg:x="261129" fg:w="126"/><text x="97.8399%" y="767.50"></text></g><g><title>asm_exc_page_fault (113 samples, 0.04%)</title><rect x="97.5947%" y="741" width="0.0422%" height="15" fill="rgb(240,21,12)" fg:x="261142" fg:w="113"/><text x="97.8447%" y="751.50"></text></g><g><title>exc_page_fault (113 samples, 0.04%)</title><rect x="97.5947%" y="725" width="0.0422%" height="15" fill="rgb(245,192,34)" fg:x="261142" fg:w="113"/><text x="97.8447%" y="735.50"></text></g><g><title>do_user_addr_fault (113 samples, 0.04%)</title><rect x="97.5947%" y="709" width="0.0422%" height="15" fill="rgb(226,100,49)" fg:x="261142" fg:w="113"/><text x="97.8447%" y="719.50"></text></g><g><title>handle_mm_fault (112 samples, 0.04%)</title><rect x="97.5951%" y="693" width="0.0419%" height="15" fill="rgb(245,188,27)" fg:x="261143" fg:w="112"/><text x="97.8451%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (112 samples, 0.04%)</title><rect x="97.5951%" y="677" width="0.0419%" height="15" fill="rgb(212,170,8)" fg:x="261143" fg:w="112"/><text x="97.8451%" y="687.50"></text></g><g><title>kernel_init_free_pages (86 samples, 0.03%)</title><rect x="97.6482%" y="597" width="0.0321%" height="15" fill="rgb(217,113,29)" fg:x="261285" fg:w="86"/><text x="97.8982%" y="607.50"></text></g><g><title>clear_page_erms (84 samples, 0.03%)</title><rect x="97.6489%" y="581" width="0.0314%" height="15" fill="rgb(237,30,3)" fg:x="261287" fg:w="84"/><text x="97.8989%" y="591.50"></text></g><g><title>alloc_pages_vma (92 samples, 0.03%)</title><rect x="97.6470%" y="661" width="0.0344%" height="15" fill="rgb(227,19,28)" fg:x="261282" fg:w="92"/><text x="97.8970%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (92 samples, 0.03%)</title><rect x="97.6470%" y="645" width="0.0344%" height="15" fill="rgb(239,172,45)" fg:x="261282" fg:w="92"/><text x="97.8970%" y="655.50"></text></g><g><title>get_page_from_freelist (92 samples, 0.03%)</title><rect x="97.6470%" y="629" width="0.0344%" height="15" fill="rgb(254,55,39)" fg:x="261282" fg:w="92"/><text x="97.8970%" y="639.50"></text></g><g><title>prep_new_page (89 samples, 0.03%)</title><rect x="97.6482%" y="613" width="0.0333%" height="15" fill="rgb(249,208,12)" fg:x="261285" fg:w="89"/><text x="97.8982%" y="623.50"></text></g><g><title>clear_huge_page (69 samples, 0.03%)</title><rect x="97.6818%" y="661" width="0.0258%" height="15" fill="rgb(240,52,13)" fg:x="261375" fg:w="69"/><text x="97.9318%" y="671.50"></text></g><g><title>clear_subpage (68 samples, 0.03%)</title><rect x="97.6822%" y="645" width="0.0254%" height="15" fill="rgb(252,149,13)" fg:x="261376" fg:w="68"/><text x="97.9322%" y="655.50"></text></g><g><title>clear_page_erms (68 samples, 0.03%)</title><rect x="97.6822%" y="629" width="0.0254%" height="15" fill="rgb(232,81,48)" fg:x="261376" fg:w="68"/><text x="97.9322%" y="639.50"></text></g><g><title>exc_page_fault (165 samples, 0.06%)</title><rect x="97.6470%" y="725" width="0.0617%" height="15" fill="rgb(222,144,2)" fg:x="261282" fg:w="165"/><text x="97.8970%" y="735.50"></text></g><g><title>do_user_addr_fault (165 samples, 0.06%)</title><rect x="97.6470%" y="709" width="0.0617%" height="15" fill="rgb(216,81,32)" fg:x="261282" fg:w="165"/><text x="97.8970%" y="719.50"></text></g><g><title>handle_mm_fault (165 samples, 0.06%)</title><rect x="97.6470%" y="693" width="0.0617%" height="15" fill="rgb(244,78,51)" fg:x="261282" fg:w="165"/><text x="97.8970%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (165 samples, 0.06%)</title><rect x="97.6470%" y="677" width="0.0617%" height="15" fill="rgb(217,66,21)" fg:x="261282" fg:w="165"/><text x="97.8970%" y="687.50"></text></g><g><title>ObjArrayAllocator::initialize (175 samples, 0.07%)</title><rect x="97.6437%" y="757" width="0.0654%" height="15" fill="rgb(247,101,42)" fg:x="261273" fg:w="175"/><text x="97.8937%" y="767.50"></text></g><g><title>asm_exc_page_fault (166 samples, 0.06%)</title><rect x="97.6470%" y="741" width="0.0620%" height="15" fill="rgb(227,81,39)" fg:x="261282" fg:w="166"/><text x="97.8970%" y="751.50"></text></g><g><title>OptoRuntime::new_array_C (344 samples, 0.13%)</title><rect x="97.5809%" y="821" width="0.1286%" height="15" fill="rgb(220,223,44)" fg:x="261105" fg:w="344"/><text x="97.8309%" y="831.50"></text></g><g><title>TypeArrayKlass::allocate_common (193 samples, 0.07%)</title><rect x="97.6373%" y="805" width="0.0721%" height="15" fill="rgb(205,218,2)" fg:x="261256" fg:w="193"/><text x="97.8873%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (192 samples, 0.07%)</title><rect x="97.6377%" y="789" width="0.0718%" height="15" fill="rgb(212,207,28)" fg:x="261257" fg:w="192"/><text x="97.8877%" y="799.50"></text></g><g><title>MemAllocator::allocate (192 samples, 0.07%)</title><rect x="97.6377%" y="773" width="0.0718%" height="15" fill="rgb(224,12,41)" fg:x="261257" fg:w="192"/><text x="97.8877%" y="783.50"></text></g><g><title>OptoRuntime::new_array_nozero_C (55 samples, 0.02%)</title><rect x="97.7095%" y="821" width="0.0206%" height="15" fill="rgb(216,118,12)" fg:x="261449" fg:w="55"/><text x="97.9595%" y="831.50"></text></g><g><title>TypeArrayKlass::allocate_common (50 samples, 0.02%)</title><rect x="97.7113%" y="805" width="0.0187%" height="15" fill="rgb(252,97,46)" fg:x="261454" fg:w="50"/><text x="97.9613%" y="815.50"></text></g><g><title>CollectedHeap::array_allocate (50 samples, 0.02%)</title><rect x="97.7113%" y="789" width="0.0187%" height="15" fill="rgb(244,206,19)" fg:x="261454" fg:w="50"/><text x="97.9613%" y="799.50"></text></g><g><title>MemAllocator::allocate (50 samples, 0.02%)</title><rect x="97.7113%" y="773" width="0.0187%" height="15" fill="rgb(231,84,31)" fg:x="261454" fg:w="50"/><text x="97.9613%" y="783.50"></text></g><g><title>ObjArrayAllocator::initialize (44 samples, 0.02%)</title><rect x="97.7136%" y="757" width="0.0164%" height="15" fill="rgb(244,133,0)" fg:x="261460" fg:w="44"/><text x="97.9636%" y="767.50"></text></g><g><title>asm_exc_page_fault (43 samples, 0.02%)</title><rect x="97.7139%" y="741" width="0.0161%" height="15" fill="rgb(223,15,50)" fg:x="261461" fg:w="43"/><text x="97.9639%" y="751.50"></text></g><g><title>exc_page_fault (43 samples, 0.02%)</title><rect x="97.7139%" y="725" width="0.0161%" height="15" fill="rgb(250,118,49)" fg:x="261461" fg:w="43"/><text x="97.9639%" y="735.50"></text></g><g><title>do_user_addr_fault (43 samples, 0.02%)</title><rect x="97.7139%" y="709" width="0.0161%" height="15" fill="rgb(248,25,38)" fg:x="261461" fg:w="43"/><text x="97.9639%" y="719.50"></text></g><g><title>handle_mm_fault (43 samples, 0.02%)</title><rect x="97.7139%" y="693" width="0.0161%" height="15" fill="rgb(215,70,14)" fg:x="261461" fg:w="43"/><text x="97.9639%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (43 samples, 0.02%)</title><rect x="97.7139%" y="677" width="0.0161%" height="15" fill="rgb(215,28,15)" fg:x="261461" fg:w="43"/><text x="97.9639%" y="687.50"></text></g><g><title>kernel_init_free_pages (119 samples, 0.04%)</title><rect x="97.7461%" y="597" width="0.0445%" height="15" fill="rgb(243,6,28)" fg:x="261547" fg:w="119"/><text x="97.9961%" y="607.50"></text></g><g><title>clear_page_erms (117 samples, 0.04%)</title><rect x="97.7468%" y="581" width="0.0437%" height="15" fill="rgb(222,130,1)" fg:x="261549" fg:w="117"/><text x="97.9968%" y="591.50"></text></g><g><title>alloc_pages_vma (126 samples, 0.05%)</title><rect x="97.7453%" y="661" width="0.0471%" height="15" fill="rgb(236,166,44)" fg:x="261545" fg:w="126"/><text x="97.9953%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (126 samples, 0.05%)</title><rect x="97.7453%" y="645" width="0.0471%" height="15" fill="rgb(221,108,14)" fg:x="261545" fg:w="126"/><text x="97.9953%" y="655.50"></text></g><g><title>get_page_from_freelist (126 samples, 0.05%)</title><rect x="97.7453%" y="629" width="0.0471%" height="15" fill="rgb(252,3,45)" fg:x="261545" fg:w="126"/><text x="97.9953%" y="639.50"></text></g><g><title>prep_new_page (124 samples, 0.05%)</title><rect x="97.7461%" y="613" width="0.0463%" height="15" fill="rgb(237,68,30)" fg:x="261547" fg:w="124"/><text x="97.9961%" y="623.50"></text></g><g><title>clear_huge_page (85 samples, 0.03%)</title><rect x="97.7924%" y="661" width="0.0318%" height="15" fill="rgb(211,79,22)" fg:x="261671" fg:w="85"/><text x="98.0424%" y="671.50"></text></g><g><title>clear_subpage (85 samples, 0.03%)</title><rect x="97.7924%" y="645" width="0.0318%" height="15" fill="rgb(252,185,21)" fg:x="261671" fg:w="85"/><text x="98.0424%" y="655.50"></text></g><g><title>clear_page_erms (83 samples, 0.03%)</title><rect x="97.7932%" y="629" width="0.0310%" height="15" fill="rgb(225,189,26)" fg:x="261673" fg:w="83"/><text x="98.0432%" y="639.50"></text></g><g><title>exc_page_fault (216 samples, 0.08%)</title><rect x="97.7438%" y="725" width="0.0807%" height="15" fill="rgb(241,30,40)" fg:x="261541" fg:w="216"/><text x="97.9938%" y="735.50"></text></g><g><title>do_user_addr_fault (216 samples, 0.08%)</title><rect x="97.7438%" y="709" width="0.0807%" height="15" fill="rgb(235,215,44)" fg:x="261541" fg:w="216"/><text x="97.9938%" y="719.50"></text></g><g><title>handle_mm_fault (216 samples, 0.08%)</title><rect x="97.7438%" y="693" width="0.0807%" height="15" fill="rgb(205,8,29)" fg:x="261541" fg:w="216"/><text x="97.9938%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (216 samples, 0.08%)</title><rect x="97.7438%" y="677" width="0.0807%" height="15" fill="rgb(241,137,42)" fg:x="261541" fg:w="216"/><text x="97.9938%" y="687.50"></text></g><g><title>asm_exc_page_fault (217 samples, 0.08%)</title><rect x="97.7438%" y="741" width="0.0811%" height="15" fill="rgb(237,155,2)" fg:x="261541" fg:w="217"/><text x="97.9938%" y="751.50"></text></g><g><title>ObjAllocator::initialize (222 samples, 0.08%)</title><rect x="97.7423%" y="757" width="0.0830%" height="15" fill="rgb(245,29,42)" fg:x="261537" fg:w="222"/><text x="97.9923%" y="767.50"></text></g><g><title>InstanceKlass::allocate_instance (246 samples, 0.09%)</title><rect x="97.7337%" y="805" width="0.0919%" height="15" fill="rgb(234,101,35)" fg:x="261514" fg:w="246"/><text x="97.9837%" y="815.50"></text></g><g><title>CollectedHeap::obj_allocate (246 samples, 0.09%)</title><rect x="97.7337%" y="789" width="0.0919%" height="15" fill="rgb(228,64,37)" fg:x="261514" fg:w="246"/><text x="97.9837%" y="799.50"></text></g><g><title>MemAllocator::allocate (245 samples, 0.09%)</title><rect x="97.7341%" y="773" width="0.0916%" height="15" fill="rgb(217,214,36)" fg:x="261515" fg:w="245"/><text x="97.9841%" y="783.50"></text></g><g><title>OptoRuntime::new_instance_C (257 samples, 0.10%)</title><rect x="97.7300%" y="821" width="0.0960%" height="15" fill="rgb(243,70,3)" fg:x="261504" fg:w="257"/><text x="97.9800%" y="831.50"></text></g><g><title>JavaThread::pd_last_frame (29 samples, 0.01%)</title><rect x="97.8339%" y="805" width="0.0108%" height="15" fill="rgb(253,158,52)" fg:x="261782" fg:w="29"/><text x="98.0839%" y="815.50"></text></g><g><title>CodeCache::find_blob (27 samples, 0.01%)</title><rect x="97.8347%" y="789" width="0.0101%" height="15" fill="rgb(234,111,54)" fg:x="261784" fg:w="27"/><text x="98.0847%" y="799.50"></text></g><g><title>TieredThresholdPolicy::call_event (31 samples, 0.01%)</title><rect x="97.8586%" y="773" width="0.0116%" height="15" fill="rgb(217,70,32)" fg:x="261848" fg:w="31"/><text x="98.1086%" y="783.50"></text></g><g><title>CompileBroker::compile_method (41 samples, 0.02%)</title><rect x="97.8705%" y="741" width="0.0153%" height="15" fill="rgb(234,18,33)" fg:x="261880" fg:w="41"/><text x="98.1205%" y="751.50"></text></g><g><title>TieredThresholdPolicy::event (109 samples, 0.04%)</title><rect x="97.8455%" y="805" width="0.0407%" height="15" fill="rgb(234,12,49)" fg:x="261813" fg:w="109"/><text x="98.0955%" y="815.50"></text></g><g><title>TieredThresholdPolicy::method_invocation_event (76 samples, 0.03%)</title><rect x="97.8578%" y="789" width="0.0284%" height="15" fill="rgb(236,10,21)" fg:x="261846" fg:w="76"/><text x="98.1078%" y="799.50"></text></g><g><title>TieredThresholdPolicy::compile (43 samples, 0.02%)</title><rect x="97.8702%" y="773" width="0.0161%" height="15" fill="rgb(248,182,45)" fg:x="261879" fg:w="43"/><text x="98.1202%" y="783.50"></text></g><g><title>TieredThresholdPolicy::submit_compile (43 samples, 0.02%)</title><rect x="97.8702%" y="757" width="0.0161%" height="15" fill="rgb(217,95,36)" fg:x="261879" fg:w="43"/><text x="98.1202%" y="767.50"></text></g><g><title>CodeCache::find_blob (31 samples, 0.01%)</title><rect x="97.8896%" y="789" width="0.0116%" height="15" fill="rgb(212,110,31)" fg:x="261931" fg:w="31"/><text x="98.1396%" y="799.50"></text></g><g><title>frame::sender (40 samples, 0.01%)</title><rect x="97.8866%" y="805" width="0.0149%" height="15" fill="rgb(206,32,53)" fg:x="261923" fg:w="40"/><text x="98.1366%" y="815.50"></text></g><g><title>Runtime1::counter_overflow (205 samples, 0.08%)</title><rect x="97.8261%" y="821" width="0.0766%" height="15" fill="rgb(246,141,37)" fg:x="261761" fg:w="205"/><text x="98.0761%" y="831.50"></text></g><g><title>ObjectMonitor::TrySpin (37 samples, 0.01%)</title><rect x="97.9225%" y="789" width="0.0138%" height="15" fill="rgb(219,16,7)" fg:x="262019" fg:w="37"/><text x="98.1725%" y="799.50"></text></g><g><title>ObjectMonitor::enter (65 samples, 0.02%)</title><rect x="97.9172%" y="805" width="0.0243%" height="15" fill="rgb(230,205,45)" fg:x="262005" fg:w="65"/><text x="98.1672%" y="815.50"></text></g><g><title>Runtime1::monitorenter (122 samples, 0.05%)</title><rect x="97.9042%" y="821" width="0.0456%" height="15" fill="rgb(231,43,49)" fg:x="261970" fg:w="122"/><text x="98.1542%" y="831.50"></text></g><g><title>Runtime1::monitorexit (42 samples, 0.02%)</title><rect x="97.9498%" y="821" width="0.0157%" height="15" fill="rgb(212,106,34)" fg:x="262092" fg:w="42"/><text x="98.1998%" y="831.50"></text></g><g><title>kernel_init_free_pages (45 samples, 0.02%)</title><rect x="97.9718%" y="597" width="0.0168%" height="15" fill="rgb(206,83,17)" fg:x="262151" fg:w="45"/><text x="98.2218%" y="607.50"></text></g><g><title>clear_page_erms (45 samples, 0.02%)</title><rect x="97.9718%" y="581" width="0.0168%" height="15" fill="rgb(244,154,49)" fg:x="262151" fg:w="45"/><text x="98.2218%" y="591.50"></text></g><g><title>alloc_pages_vma (48 samples, 0.02%)</title><rect x="97.9714%" y="661" width="0.0179%" height="15" fill="rgb(244,149,49)" fg:x="262150" fg:w="48"/><text x="98.2214%" y="671.50"></text></g><g><title>__alloc_pages_nodemask (48 samples, 0.02%)</title><rect x="97.9714%" y="645" width="0.0179%" height="15" fill="rgb(227,134,18)" fg:x="262150" fg:w="48"/><text x="98.2214%" y="655.50"></text></g><g><title>get_page_from_freelist (48 samples, 0.02%)</title><rect x="97.9714%" y="629" width="0.0179%" height="15" fill="rgb(237,116,36)" fg:x="262150" fg:w="48"/><text x="98.2214%" y="639.50"></text></g><g><title>prep_new_page (47 samples, 0.02%)</title><rect x="97.9718%" y="613" width="0.0176%" height="15" fill="rgb(205,129,40)" fg:x="262151" fg:w="47"/><text x="98.2218%" y="623.50"></text></g><g><title>InstanceKlass::allocate_instance (84 samples, 0.03%)</title><rect x="97.9666%" y="805" width="0.0314%" height="15" fill="rgb(236,178,4)" fg:x="262137" fg:w="84"/><text x="98.2166%" y="815.50"></text></g><g><title>CollectedHeap::obj_allocate (84 samples, 0.03%)</title><rect x="97.9666%" y="789" width="0.0314%" height="15" fill="rgb(251,76,53)" fg:x="262137" fg:w="84"/><text x="98.2166%" y="799.50"></text></g><g><title>MemAllocator::allocate (84 samples, 0.03%)</title><rect x="97.9666%" y="773" width="0.0314%" height="15" fill="rgb(242,92,40)" fg:x="262137" fg:w="84"/><text x="98.2166%" y="783.50"></text></g><g><title>ObjAllocator::initialize (73 samples, 0.03%)</title><rect x="97.9707%" y="757" width="0.0273%" height="15" fill="rgb(209,45,30)" fg:x="262148" fg:w="73"/><text x="98.2207%" y="767.50"></text></g><g><title>asm_exc_page_fault (72 samples, 0.03%)</title><rect x="97.9711%" y="741" width="0.0269%" height="15" fill="rgb(218,157,36)" fg:x="262149" fg:w="72"/><text x="98.2211%" y="751.50"></text></g><g><title>exc_page_fault (72 samples, 0.03%)</title><rect x="97.9711%" y="725" width="0.0269%" height="15" fill="rgb(222,186,16)" fg:x="262149" fg:w="72"/><text x="98.2211%" y="735.50"></text></g><g><title>do_user_addr_fault (72 samples, 0.03%)</title><rect x="97.9711%" y="709" width="0.0269%" height="15" fill="rgb(254,72,35)" fg:x="262149" fg:w="72"/><text x="98.2211%" y="719.50"></text></g><g><title>handle_mm_fault (71 samples, 0.03%)</title><rect x="97.9714%" y="693" width="0.0265%" height="15" fill="rgb(224,25,35)" fg:x="262150" fg:w="71"/><text x="98.2214%" y="703.50"></text></g><g><title>do_huge_pmd_anonymous_page (71 samples, 0.03%)</title><rect x="97.9714%" y="677" width="0.0265%" height="15" fill="rgb(206,135,52)" fg:x="262150" fg:w="71"/><text x="98.2214%" y="687.50"></text></g><g><title>Runtime1::new_instance (89 samples, 0.03%)</title><rect x="97.9655%" y="821" width="0.0333%" height="15" fill="rgb(229,174,47)" fg:x="262134" fg:w="89"/><text x="98.2155%" y="831.50"></text></g><g><title>SharedRuntime::handle_wrong_method_ic_miss (29 samples, 0.01%)</title><rect x="98.0294%" y="821" width="0.0108%" height="15" fill="rgb(242,184,21)" fg:x="262305" fg:w="29"/><text x="98.2794%" y="831.50"></text></g><g><title>SharedRuntime::handle_ic_miss_helper (29 samples, 0.01%)</title><rect x="98.0294%" y="805" width="0.0108%" height="15" fill="rgb(213,22,45)" fg:x="262305" fg:w="29"/><text x="98.2794%" y="815.50"></text></g><g><title>ClassFileParser::ClassFileParser (44 samples, 0.02%)</title><rect x="98.0608%" y="773" width="0.0164%" height="15" fill="rgb(237,81,54)" fg:x="262389" fg:w="44"/><text x="98.3108%" y="783.50"></text></g><g><title>ClassFileParser::parse_stream (44 samples, 0.02%)</title><rect x="98.0608%" y="757" width="0.0164%" height="15" fill="rgb(248,177,18)" fg:x="262389" fg:w="44"/><text x="98.3108%" y="767.50"></text></g><g><title>KlassFactory::create_from_stream (55 samples, 0.02%)</title><rect x="98.0608%" y="789" width="0.0206%" height="15" fill="rgb(254,31,16)" fg:x="262389" fg:w="55"/><text x="98.3108%" y="799.50"></text></g><g><title>Unsafe_DefineAnonymousClass0 (85 samples, 0.03%)</title><rect x="98.0499%" y="821" width="0.0318%" height="15" fill="rgb(235,20,31)" fg:x="262360" fg:w="85"/><text x="98.2999%" y="831.50"></text></g><g><title>SystemDictionary::parse_stream (81 samples, 0.03%)</title><rect x="98.0514%" y="805" width="0.0303%" height="15" fill="rgb(240,56,43)" fg:x="262364" fg:w="81"/><text x="98.3014%" y="815.50"></text></g><g><title>Unsafe_DefineClass0 (30 samples, 0.01%)</title><rect x="98.0817%" y="821" width="0.0112%" height="15" fill="rgb(237,197,51)" fg:x="262445" fg:w="30"/><text x="98.3317%" y="831.50"></text></g><g><title>JVM_DefineClass (29 samples, 0.01%)</title><rect x="98.0821%" y="805" width="0.0108%" height="15" fill="rgb(241,162,44)" fg:x="262446" fg:w="29"/><text x="98.3321%" y="815.50"></text></g><g><title>jvm_define_class_common (29 samples, 0.01%)</title><rect x="98.0821%" y="789" width="0.0108%" height="15" fill="rgb(224,23,20)" fg:x="262446" fg:w="29"/><text x="98.3321%" y="799.50"></text></g><g><title>SystemDictionary::resolve_from_stream (29 samples, 0.01%)</title><rect x="98.0821%" y="773" width="0.0108%" height="15" fill="rgb(250,109,34)" fg:x="262446" fg:w="29"/><text x="98.3321%" y="783.50"></text></g><g><title>__perf_event_task_sched_in (71 samples, 0.03%)</title><rect x="98.1273%" y="597" width="0.0265%" height="15" fill="rgb(214,175,50)" fg:x="262567" fg:w="71"/><text x="98.3773%" y="607.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (67 samples, 0.03%)</title><rect x="98.1288%" y="581" width="0.0250%" height="15" fill="rgb(213,182,5)" fg:x="262571" fg:w="67"/><text x="98.3788%" y="591.50"></text></g><g><title>native_write_msr (67 samples, 0.03%)</title><rect x="98.1288%" y="565" width="0.0250%" height="15" fill="rgb(209,199,19)" fg:x="262571" fg:w="67"/><text x="98.3788%" y="575.50"></text></g><g><title>finish_task_switch (76 samples, 0.03%)</title><rect x="98.1269%" y="613" width="0.0284%" height="15" fill="rgb(236,224,42)" fg:x="262566" fg:w="76"/><text x="98.3769%" y="623.50"></text></g><g><title>futex_wait_queue_me (136 samples, 0.05%)</title><rect x="98.1187%" y="661" width="0.0508%" height="15" fill="rgb(246,226,29)" fg:x="262544" fg:w="136"/><text x="98.3687%" y="671.50"></text></g><g><title>schedule (134 samples, 0.05%)</title><rect x="98.1194%" y="645" width="0.0501%" height="15" fill="rgb(227,223,11)" fg:x="262546" fg:w="134"/><text x="98.3694%" y="655.50"></text></g><g><title>__schedule (134 samples, 0.05%)</title><rect x="98.1194%" y="629" width="0.0501%" height="15" fill="rgb(219,7,51)" fg:x="262546" fg:w="134"/><text x="98.3694%" y="639.50"></text></g><g><title>do_syscall_64 (143 samples, 0.05%)</title><rect x="98.1176%" y="725" width="0.0534%" height="15" fill="rgb(245,167,10)" fg:x="262541" fg:w="143"/><text x="98.3676%" y="735.50"></text></g><g><title>__x64_sys_futex (143 samples, 0.05%)</title><rect x="98.1176%" y="709" width="0.0534%" height="15" fill="rgb(237,224,16)" fg:x="262541" fg:w="143"/><text x="98.3676%" y="719.50"></text></g><g><title>do_futex (142 samples, 0.05%)</title><rect x="98.1179%" y="693" width="0.0531%" height="15" fill="rgb(226,132,13)" fg:x="262542" fg:w="142"/><text x="98.3679%" y="703.50"></text></g><g><title>futex_wait (142 samples, 0.05%)</title><rect x="98.1179%" y="677" width="0.0531%" height="15" fill="rgb(214,140,3)" fg:x="262542" fg:w="142"/><text x="98.3679%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (152 samples, 0.06%)</title><rect x="98.1176%" y="741" width="0.0568%" height="15" fill="rgb(221,177,4)" fg:x="262541" fg:w="152"/><text x="98.3676%" y="751.50"></text></g><g><title>__pthread_cond_wait (164 samples, 0.06%)</title><rect x="98.1142%" y="789" width="0.0613%" height="15" fill="rgb(238,139,3)" fg:x="262532" fg:w="164"/><text x="98.3642%" y="799.50"></text></g><g><title>__pthread_cond_wait_common (164 samples, 0.06%)</title><rect x="98.1142%" y="773" width="0.0613%" height="15" fill="rgb(216,17,39)" fg:x="262532" fg:w="164"/><text x="98.3642%" y="783.50"></text></g><g><title>futex_wait_cancelable (158 samples, 0.06%)</title><rect x="98.1164%" y="757" width="0.0590%" height="15" fill="rgb(238,120,9)" fg:x="262538" fg:w="158"/><text x="98.3664%" y="767.50"></text></g><g><title>Parker::park (227 samples, 0.08%)</title><rect x="98.0974%" y="805" width="0.0848%" height="15" fill="rgb(244,92,53)" fg:x="262487" fg:w="227"/><text x="98.3474%" y="815.50"></text></g><g><title>Unsafe_Park (234 samples, 0.09%)</title><rect x="98.0951%" y="821" width="0.0875%" height="15" fill="rgb(224,148,33)" fg:x="262481" fg:w="234"/><text x="98.3451%" y="831.50"></text></g><g><title>select_task_rq_fair (68 samples, 0.03%)</title><rect x="98.2267%" y="661" width="0.0254%" height="15" fill="rgb(243,6,36)" fg:x="262833" fg:w="68"/><text x="98.4767%" y="671.50"></text></g><g><title>enqueue_entity (48 samples, 0.02%)</title><rect x="98.2581%" y="629" width="0.0179%" height="15" fill="rgb(230,102,11)" fg:x="262917" fg:w="48"/><text x="98.5081%" y="639.50"></text></g><g><title>enqueue_task_fair (70 samples, 0.03%)</title><rect x="98.2543%" y="645" width="0.0262%" height="15" fill="rgb(234,148,36)" fg:x="262907" fg:w="70"/><text x="98.5043%" y="655.50"></text></g><g><title>ttwu_do_activate (115 samples, 0.04%)</title><rect x="98.2528%" y="661" width="0.0430%" height="15" fill="rgb(251,153,25)" fg:x="262903" fg:w="115"/><text x="98.5028%" y="671.50"></text></g><g><title>psi_task_change (41 samples, 0.02%)</title><rect x="98.2805%" y="645" width="0.0153%" height="15" fill="rgb(215,129,8)" fg:x="262977" fg:w="41"/><text x="98.5305%" y="655.50"></text></g><g><title>psi_group_change (27 samples, 0.01%)</title><rect x="98.2857%" y="629" width="0.0101%" height="15" fill="rgb(224,128,35)" fg:x="262991" fg:w="27"/><text x="98.5357%" y="639.50"></text></g><g><title>do_syscall_64 (274 samples, 0.10%)</title><rect x="98.2039%" y="757" width="0.1024%" height="15" fill="rgb(237,56,52)" fg:x="262772" fg:w="274"/><text x="98.4539%" y="767.50"></text></g><g><title>__x64_sys_futex (272 samples, 0.10%)</title><rect x="98.2046%" y="741" width="0.1017%" height="15" fill="rgb(234,213,19)" fg:x="262774" fg:w="272"/><text x="98.4546%" y="751.50"></text></g><g><title>do_futex (267 samples, 0.10%)</title><rect x="98.2065%" y="725" width="0.0998%" height="15" fill="rgb(252,82,23)" fg:x="262779" fg:w="267"/><text x="98.4565%" y="735.50"></text></g><g><title>futex_wake (265 samples, 0.10%)</title><rect x="98.2073%" y="709" width="0.0990%" height="15" fill="rgb(254,201,21)" fg:x="262781" fg:w="265"/><text x="98.4573%" y="719.50"></text></g><g><title>wake_up_q (231 samples, 0.09%)</title><rect x="98.2200%" y="693" width="0.0863%" height="15" fill="rgb(250,186,11)" fg:x="262815" fg:w="231"/><text x="98.4700%" y="703.50"></text></g><g><title>try_to_wake_up (227 samples, 0.08%)</title><rect x="98.2215%" y="677" width="0.0848%" height="15" fill="rgb(211,174,5)" fg:x="262819" fg:w="227"/><text x="98.4715%" y="687.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (311 samples, 0.12%)</title><rect x="98.2035%" y="773" width="0.1162%" height="15" fill="rgb(214,121,10)" fg:x="262771" fg:w="311"/><text x="98.4535%" y="783.50"></text></g><g><title>syscall_exit_to_user_mode (36 samples, 0.01%)</title><rect x="98.3063%" y="757" width="0.0135%" height="15" fill="rgb(241,66,2)" fg:x="263046" fg:w="36"/><text x="98.5563%" y="767.50"></text></g><g><title>exit_to_user_mode_prepare (35 samples, 0.01%)</title><rect x="98.3067%" y="741" width="0.0131%" height="15" fill="rgb(220,167,19)" fg:x="263047" fg:w="35"/><text x="98.5567%" y="751.50"></text></g><g><title>schedule (30 samples, 0.01%)</title><rect x="98.3085%" y="725" width="0.0112%" height="15" fill="rgb(231,54,50)" fg:x="263052" fg:w="30"/><text x="98.5585%" y="735.50"></text></g><g><title>__schedule (28 samples, 0.01%)</title><rect x="98.3093%" y="709" width="0.0105%" height="15" fill="rgb(239,217,53)" fg:x="263054" fg:w="28"/><text x="98.5593%" y="719.50"></text></g><g><title>__pthread_cond_signal (324 samples, 0.12%)</title><rect x="98.1994%" y="805" width="0.1211%" height="15" fill="rgb(248,8,0)" fg:x="262760" fg:w="324"/><text x="98.4494%" y="815.50"></text></g><g><title>futex_wake (320 samples, 0.12%)</title><rect x="98.2009%" y="789" width="0.1196%" height="15" fill="rgb(229,118,37)" fg:x="262764" fg:w="320"/><text x="98.4509%" y="799.50"></text></g><g><title>Unsafe_Unpark (377 samples, 0.14%)</title><rect x="98.1830%" y="821" width="0.1409%" height="15" fill="rgb(253,223,43)" fg:x="262716" fg:w="377"/><text x="98.4330%" y="831.50"></text></g><g><title>handle_irq_event (45 samples, 0.02%)</title><rect x="98.3336%" y="773" width="0.0168%" height="15" fill="rgb(211,77,36)" fg:x="263119" fg:w="45"/><text x="98.5836%" y="783.50"></text></g><g><title>__handle_irq_event_percpu (45 samples, 0.02%)</title><rect x="98.3336%" y="757" width="0.0168%" height="15" fill="rgb(219,3,53)" fg:x="263119" fg:w="45"/><text x="98.5836%" y="767.50"></text></g><g><title>nvme_irq (40 samples, 0.01%)</title><rect x="98.3354%" y="741" width="0.0149%" height="15" fill="rgb(244,45,42)" fg:x="263124" fg:w="40"/><text x="98.5854%" y="751.50"></text></g><g><title>nvme_process_cq (40 samples, 0.01%)</title><rect x="98.3354%" y="725" width="0.0149%" height="15" fill="rgb(225,95,27)" fg:x="263124" fg:w="40"/><text x="98.5854%" y="735.50"></text></g><g><title>handle_edge_irq (48 samples, 0.02%)</title><rect x="98.3328%" y="789" width="0.0179%" height="15" fill="rgb(207,74,8)" fg:x="263117" fg:w="48"/><text x="98.5828%" y="799.50"></text></g><g><title>common_interrupt (56 samples, 0.02%)</title><rect x="98.3324%" y="805" width="0.0209%" height="15" fill="rgb(243,63,36)" fg:x="263116" fg:w="56"/><text x="98.5824%" y="815.50"></text></g><g><title>asm_common_interrupt (64 samples, 0.02%)</title><rect x="98.3324%" y="821" width="0.0239%" height="15" fill="rgb(211,180,12)" fg:x="263116" fg:w="64"/><text x="98.5824%" y="831.50"></text></g><g><title>exc_page_fault (32 samples, 0.01%)</title><rect x="98.3564%" y="805" width="0.0120%" height="15" fill="rgb(254,166,49)" fg:x="263180" fg:w="32"/><text x="98.6064%" y="815.50"></text></g><g><title>asm_exc_page_fault (38 samples, 0.01%)</title><rect x="98.3564%" y="821" width="0.0142%" height="15" fill="rgb(205,19,0)" fg:x="263180" fg:w="38"/><text x="98.6064%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (40 samples, 0.01%)</title><rect x="98.3739%" y="725" width="0.0149%" height="15" fill="rgb(224,172,32)" fg:x="263227" fg:w="40"/><text x="98.6239%" y="735.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (40 samples, 0.01%)</title><rect x="98.3739%" y="709" width="0.0149%" height="15" fill="rgb(254,136,30)" fg:x="263227" fg:w="40"/><text x="98.6239%" y="719.50"></text></g><g><title>native_write_msr (40 samples, 0.01%)</title><rect x="98.3739%" y="693" width="0.0149%" height="15" fill="rgb(246,19,35)" fg:x="263227" fg:w="40"/><text x="98.6239%" y="703.50"></text></g><g><title>finish_task_switch (43 samples, 0.02%)</title><rect x="98.3739%" y="741" width="0.0161%" height="15" fill="rgb(219,24,36)" fg:x="263227" fg:w="43"/><text x="98.6239%" y="751.50"></text></g><g><title>schedule (53 samples, 0.02%)</title><rect x="98.3721%" y="773" width="0.0198%" height="15" fill="rgb(251,55,1)" fg:x="263222" fg:w="53"/><text x="98.6221%" y="783.50"></text></g><g><title>__schedule (53 samples, 0.02%)</title><rect x="98.3721%" y="757" width="0.0198%" height="15" fill="rgb(218,117,39)" fg:x="263222" fg:w="53"/><text x="98.6221%" y="767.50"></text></g><g><title>irqentry_exit_to_user_mode (56 samples, 0.02%)</title><rect x="98.3717%" y="805" width="0.0209%" height="15" fill="rgb(248,169,11)" fg:x="263221" fg:w="56"/><text x="98.6217%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (56 samples, 0.02%)</title><rect x="98.3717%" y="789" width="0.0209%" height="15" fill="rgb(244,40,44)" fg:x="263221" fg:w="56"/><text x="98.6217%" y="799.50"></text></g><g><title>task_tick_fair (28 samples, 0.01%)</title><rect x="98.4206%" y="677" width="0.0105%" height="15" fill="rgb(234,62,37)" fg:x="263352" fg:w="28"/><text x="98.6706%" y="687.50"></text></g><g><title>scheduler_tick (55 samples, 0.02%)</title><rect x="98.4113%" y="693" width="0.0206%" height="15" fill="rgb(207,117,42)" fg:x="263327" fg:w="55"/><text x="98.6613%" y="703.50"></text></g><g><title>tick_sched_handle (82 samples, 0.03%)</title><rect x="98.4023%" y="725" width="0.0306%" height="15" fill="rgb(213,43,2)" fg:x="263303" fg:w="82"/><text x="98.6523%" y="735.50"></text></g><g><title>update_process_times (78 samples, 0.03%)</title><rect x="98.4038%" y="709" width="0.0292%" height="15" fill="rgb(244,202,51)" fg:x="263307" fg:w="78"/><text x="98.6538%" y="719.50"></text></g><g><title>tick_sched_timer (89 samples, 0.03%)</title><rect x="98.4016%" y="741" width="0.0333%" height="15" fill="rgb(253,174,46)" fg:x="263301" fg:w="89"/><text x="98.6516%" y="751.50"></text></g><g><title>__hrtimer_run_queues (110 samples, 0.04%)</title><rect x="98.3952%" y="757" width="0.0411%" height="15" fill="rgb(251,23,1)" fg:x="263284" fg:w="110"/><text x="98.6452%" y="767.50"></text></g><g><title>__sysvec_apic_timer_interrupt (127 samples, 0.05%)</title><rect x="98.3926%" y="789" width="0.0475%" height="15" fill="rgb(253,26,1)" fg:x="263277" fg:w="127"/><text x="98.6426%" y="799.50"></text></g><g><title>hrtimer_interrupt (124 samples, 0.05%)</title><rect x="98.3937%" y="773" width="0.0463%" height="15" fill="rgb(216,89,31)" fg:x="263280" fg:w="124"/><text x="98.6437%" y="783.50"></text></g><g><title>rcu_core (35 samples, 0.01%)</title><rect x="98.4431%" y="725" width="0.0131%" height="15" fill="rgb(209,109,5)" fg:x="263412" fg:w="35"/><text x="98.6931%" y="735.50"></text></g><g><title>irq_exit_rcu (62 samples, 0.02%)</title><rect x="98.4408%" y="789" width="0.0232%" height="15" fill="rgb(229,63,13)" fg:x="263406" fg:w="62"/><text x="98.6908%" y="799.50"></text></g><g><title>do_softirq_own_stack (61 samples, 0.02%)</title><rect x="98.4412%" y="773" width="0.0228%" height="15" fill="rgb(238,137,54)" fg:x="263407" fg:w="61"/><text x="98.6912%" y="783.50"></text></g><g><title>asm_call_sysvec_on_stack (60 samples, 0.02%)</title><rect x="98.4416%" y="757" width="0.0224%" height="15" fill="rgb(228,1,9)" fg:x="263408" fg:w="60"/><text x="98.6916%" y="767.50"></text></g><g><title>__softirqentry_text_start (60 samples, 0.02%)</title><rect x="98.4416%" y="741" width="0.0224%" height="15" fill="rgb(249,120,48)" fg:x="263408" fg:w="60"/><text x="98.6916%" y="751.50"></text></g><g><title>asm_sysvec_apic_timer_interrupt (251 samples, 0.09%)</title><rect x="98.3706%" y="821" width="0.0938%" height="15" fill="rgb(209,72,36)" fg:x="263218" fg:w="251"/><text x="98.6206%" y="831.50"></text></g><g><title>sysvec_apic_timer_interrupt (192 samples, 0.07%)</title><rect x="98.3926%" y="805" width="0.0718%" height="15" fill="rgb(247,98,49)" fg:x="263277" fg:w="192"/><text x="98.6426%" y="815.50"></text></g><g><title>pick_next_task_fair (28 samples, 0.01%)</title><rect x="98.4864%" y="741" width="0.0105%" height="15" fill="rgb(233,75,36)" fg:x="263528" fg:w="28"/><text x="98.7364%" y="751.50"></text></g><g><title>schedule (94 samples, 0.04%)</title><rect x="98.4685%" y="773" width="0.0351%" height="15" fill="rgb(225,14,24)" fg:x="263480" fg:w="94"/><text x="98.7185%" y="783.50"></text></g><g><title>__schedule (94 samples, 0.04%)</title><rect x="98.4685%" y="757" width="0.0351%" height="15" fill="rgb(237,193,20)" fg:x="263480" fg:w="94"/><text x="98.7185%" y="767.50"></text></g><g><title>irqentry_exit_to_user_mode (101 samples, 0.04%)</title><rect x="98.4681%" y="805" width="0.0377%" height="15" fill="rgb(239,122,19)" fg:x="263479" fg:w="101"/><text x="98.7181%" y="815.50"></text></g><g><title>exit_to_user_mode_prepare (101 samples, 0.04%)</title><rect x="98.4681%" y="789" width="0.0377%" height="15" fill="rgb(231,220,10)" fg:x="263479" fg:w="101"/><text x="98.7181%" y="799.50"></text></g><g><title>asm_sysvec_reschedule_ipi (113 samples, 0.04%)</title><rect x="98.4677%" y="821" width="0.0422%" height="15" fill="rgb(220,66,15)" fg:x="263478" fg:w="113"/><text x="98.7177%" y="831.50"></text></g><g><title>__fput (30 samples, 0.01%)</title><rect x="98.5361%" y="725" width="0.0112%" height="15" fill="rgb(215,171,52)" fg:x="263661" fg:w="30"/><text x="98.7861%" y="735.50"></text></g><g><title>__close (74 samples, 0.03%)</title><rect x="98.5238%" y="805" width="0.0277%" height="15" fill="rgb(241,169,50)" fg:x="263628" fg:w="74"/><text x="98.7738%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (70 samples, 0.03%)</title><rect x="98.5253%" y="789" width="0.0262%" height="15" fill="rgb(236,189,0)" fg:x="263632" fg:w="70"/><text x="98.7753%" y="799.50"></text></g><g><title>syscall_exit_to_user_mode (50 samples, 0.02%)</title><rect x="98.5328%" y="773" width="0.0187%" height="15" fill="rgb(217,147,20)" fg:x="263652" fg:w="50"/><text x="98.7828%" y="783.50"></text></g><g><title>exit_to_user_mode_prepare (49 samples, 0.02%)</title><rect x="98.5331%" y="757" width="0.0183%" height="15" fill="rgb(206,188,39)" fg:x="263653" fg:w="49"/><text x="98.7831%" y="767.50"></text></g><g><title>task_work_run (42 samples, 0.02%)</title><rect x="98.5358%" y="741" width="0.0157%" height="15" fill="rgb(227,118,25)" fg:x="263660" fg:w="42"/><text x="98.7858%" y="751.50"></text></g><g><title>fileDescriptorClose (83 samples, 0.03%)</title><rect x="98.5227%" y="821" width="0.0310%" height="15" fill="rgb(248,171,40)" fg:x="263625" fg:w="83"/><text x="98.7727%" y="831.50"></text></g><g><title>JNU_GetStringPlatformChars (75 samples, 0.03%)</title><rect x="98.5559%" y="805" width="0.0280%" height="15" fill="rgb(251,90,54)" fg:x="263714" fg:w="75"/><text x="98.8059%" y="815.50"></text></g><g><title>do_syscall_64 (39 samples, 0.01%)</title><rect x="98.5907%" y="773" width="0.0146%" height="15" fill="rgb(234,11,46)" fg:x="263807" fg:w="39"/><text x="98.8407%" y="783.50"></text></g><g><title>__do_sys_newfstat (35 samples, 0.01%)</title><rect x="98.5922%" y="757" width="0.0131%" height="15" fill="rgb(229,134,13)" fg:x="263811" fg:w="35"/><text x="98.8422%" y="767.50"></text></g><g><title>__GI___fxstat (43 samples, 0.02%)</title><rect x="98.5896%" y="805" width="0.0161%" height="15" fill="rgb(223,129,3)" fg:x="263804" fg:w="43"/><text x="98.8396%" y="815.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (40 samples, 0.01%)</title><rect x="98.5907%" y="789" width="0.0149%" height="15" fill="rgb(221,124,13)" fg:x="263807" fg:w="40"/><text x="98.8407%" y="799.50"></text></g><g><title>kmem_cache_alloc (44 samples, 0.02%)</title><rect x="98.6299%" y="661" width="0.0164%" height="15" fill="rgb(234,3,18)" fg:x="263912" fg:w="44"/><text x="98.8799%" y="671.50"></text></g><g><title>__alloc_file (58 samples, 0.02%)</title><rect x="98.6288%" y="677" width="0.0217%" height="15" fill="rgb(249,199,20)" fg:x="263909" fg:w="58"/><text x="98.8788%" y="687.50"></text></g><g><title>alloc_empty_file (63 samples, 0.02%)</title><rect x="98.6277%" y="693" width="0.0235%" height="15" fill="rgb(224,134,6)" fg:x="263906" fg:w="63"/><text x="98.8777%" y="703.50"></text></g><g><title>btrfs_create (27 samples, 0.01%)</title><rect x="98.6512%" y="693" width="0.0101%" height="15" fill="rgb(254,83,26)" fg:x="263969" fg:w="27"/><text x="98.9012%" y="703.50"></text></g><g><title>do_dentry_open (51 samples, 0.02%)</title><rect x="98.6624%" y="693" width="0.0191%" height="15" fill="rgb(217,88,9)" fg:x="263999" fg:w="51"/><text x="98.9124%" y="703.50"></text></g><g><title>security_file_open (27 samples, 0.01%)</title><rect x="98.6714%" y="677" width="0.0101%" height="15" fill="rgb(225,73,2)" fg:x="264023" fg:w="27"/><text x="98.9214%" y="687.50"></text></g><g><title>lookup_fast (32 samples, 0.01%)</title><rect x="98.6968%" y="661" width="0.0120%" height="15" fill="rgb(226,44,39)" fg:x="264091" fg:w="32"/><text x="98.9468%" y="671.50"></text></g><g><title>__d_lookup_rcu (28 samples, 0.01%)</title><rect x="98.6983%" y="645" width="0.0105%" height="15" fill="rgb(228,53,17)" fg:x="264095" fg:w="28"/><text x="98.9483%" y="655.50"></text></g><g><title>link_path_walk.part.0 (77 samples, 0.03%)</title><rect x="98.6815%" y="693" width="0.0288%" height="15" fill="rgb(212,27,27)" fg:x="264050" fg:w="77"/><text x="98.9315%" y="703.50"></text></g><g><title>walk_component (38 samples, 0.01%)</title><rect x="98.6961%" y="677" width="0.0142%" height="15" fill="rgb(241,50,6)" fg:x="264089" fg:w="38"/><text x="98.9461%" y="687.50"></text></g><g><title>do_filp_open (255 samples, 0.10%)</title><rect x="98.6228%" y="725" width="0.0953%" height="15" fill="rgb(225,28,51)" fg:x="263893" fg:w="255"/><text x="98.8728%" y="735.50"></text></g><g><title>path_openat (252 samples, 0.09%)</title><rect x="98.6240%" y="709" width="0.0942%" height="15" fill="rgb(215,33,16)" fg:x="263896" fg:w="252"/><text x="98.8740%" y="719.50"></text></g><g><title>__x64_sys_openat (322 samples, 0.12%)</title><rect x="98.6127%" y="757" width="0.1203%" height="15" fill="rgb(243,40,39)" fg:x="263866" fg:w="322"/><text x="98.8627%" y="767.50"></text></g><g><title>do_sys_openat2 (321 samples, 0.12%)</title><rect x="98.6131%" y="741" width="0.1200%" height="15" fill="rgb(225,11,42)" fg:x="263867" fg:w="321"/><text x="98.8631%" y="751.50"></text></g><g><title>do_syscall_64 (327 samples, 0.12%)</title><rect x="98.6120%" y="773" width="0.1222%" height="15" fill="rgb(241,220,38)" fg:x="263864" fg:w="327"/><text x="98.8620%" y="783.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (330 samples, 0.12%)</title><rect x="98.6120%" y="789" width="0.1233%" height="15" fill="rgb(244,52,35)" fg:x="263864" fg:w="330"/><text x="98.8620%" y="799.50"></text></g><g><title>__libc_open64 (348 samples, 0.13%)</title><rect x="98.6064%" y="805" width="0.1301%" height="15" fill="rgb(246,42,46)" fg:x="263849" fg:w="348"/><text x="98.8564%" y="815.50"></text></g><g><title>fileOpen (516 samples, 0.19%)</title><rect x="98.5537%" y="821" width="0.1928%" height="15" fill="rgb(205,184,13)" fg:x="263708" fg:w="516"/><text x="98.8037%" y="831.50"></text></g><g><title>jni_IsAssignableFrom (77 samples, 0.03%)</title><rect x="98.7563%" y="821" width="0.0288%" height="15" fill="rgb(209,48,36)" fg:x="264250" fg:w="77"/><text x="99.0063%" y="831.50"></text></g><g><title>__vdso_clock_gettime (51 samples, 0.02%)</title><rect x="98.7981%" y="789" width="0.0191%" height="15" fill="rgb(244,34,51)" fg:x="264362" fg:w="51"/><text x="99.0481%" y="799.50"></text></g><g><title>os::javaTimeNanos (78 samples, 0.03%)</title><rect x="98.7884%" y="821" width="0.0292%" height="15" fill="rgb(221,107,33)" fg:x="264336" fg:w="78"/><text x="99.0384%" y="831.50"></text></g><g><title>__GI___clock_gettime (68 samples, 0.03%)</title><rect x="98.7921%" y="805" width="0.0254%" height="15" fill="rgb(224,203,12)" fg:x="264346" fg:w="68"/><text x="99.0421%" y="815.50"></text></g><g><title>[perf-21254.map] (118,933 samples, 44.45%)</title><rect x="54.3711%" y="837" width="44.4480%" height="15" fill="rgb(230,215,18)" fg:x="145485" fg:w="118933"/><text x="54.6211%" y="847.50">[perf-21254.map]</text></g><g><title>Deoptimization::create_vframeArray (38 samples, 0.01%)</title><rect x="98.8224%" y="805" width="0.0142%" height="15" fill="rgb(206,185,35)" fg:x="264427" fg:w="38"/><text x="99.0724%" y="815.50"></text></g><g><title>vframeArray::allocate (28 samples, 0.01%)</title><rect x="98.8261%" y="789" width="0.0105%" height="15" fill="rgb(228,140,34)" fg:x="264437" fg:w="28"/><text x="99.0761%" y="799.50"></text></g><g><title>Deoptimization::fetch_unroll_info_helper (49 samples, 0.02%)</title><rect x="98.8202%" y="821" width="0.0183%" height="15" fill="rgb(208,93,13)" fg:x="264421" fg:w="49"/><text x="99.0702%" y="831.50"></text></g><g><title>Runtime1::counter_overflow (31 samples, 0.01%)</title><rect x="98.8407%" y="821" width="0.0116%" height="15" fill="rgb(221,193,39)" fg:x="264476" fg:w="31"/><text x="99.0907%" y="831.50"></text></g><g><title>SharedRuntime::find_callee_method (36 samples, 0.01%)</title><rect x="98.8538%" y="821" width="0.0135%" height="15" fill="rgb(241,132,34)" fg:x="264511" fg:w="36"/><text x="99.1038%" y="831.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (34 samples, 0.01%)</title><rect x="98.8545%" y="805" width="0.0127%" height="15" fill="rgb(221,141,10)" fg:x="264513" fg:w="34"/><text x="99.1045%" y="815.50"></text></g><g><title>LinkResolver::resolve_method_statically (54 samples, 0.02%)</title><rect x="98.9102%" y="773" width="0.0202%" height="15" fill="rgb(226,90,31)" fg:x="264662" fg:w="54"/><text x="99.1602%" y="783.50"></text></g><g><title>Bytecode_invoke::static_target (56 samples, 0.02%)</title><rect x="98.9099%" y="789" width="0.0209%" height="15" fill="rgb(243,75,5)" fg:x="264661" fg:w="56"/><text x="99.1599%" y="799.50"></text></g><g><title>LinkResolver::resolve_invoke (39 samples, 0.01%)</title><rect x="98.9319%" y="789" width="0.0146%" height="15" fill="rgb(227,156,21)" fg:x="264720" fg:w="39"/><text x="99.1819%" y="799.50"></text></g><g><title>SharedRuntime::extract_attached_method (34 samples, 0.01%)</title><rect x="98.9487%" y="789" width="0.0127%" height="15" fill="rgb(250,195,8)" fg:x="264765" fg:w="34"/><text x="99.1987%" y="799.50"></text></g><g><title>frame::sender (53 samples, 0.02%)</title><rect x="98.9629%" y="789" width="0.0198%" height="15" fill="rgb(220,134,5)" fg:x="264803" fg:w="53"/><text x="99.2129%" y="799.50"></text></g><g><title>OopMapSet::update_register_map (51 samples, 0.02%)</title><rect x="98.9637%" y="773" width="0.0191%" height="15" fill="rgb(246,106,34)" fg:x="264805" fg:w="51"/><text x="99.2137%" y="783.50"></text></g><g><title>SharedRuntime::find_callee_info_helper (199 samples, 0.07%)</title><rect x="98.9087%" y="805" width="0.0744%" height="15" fill="rgb(205,1,4)" fg:x="264658" fg:w="199"/><text x="99.1587%" y="815.50"></text></g><g><title>SharedRuntime::resolve_sub_helper (295 samples, 0.11%)</title><rect x="98.8807%" y="821" width="0.1102%" height="15" fill="rgb(224,151,29)" fg:x="264583" fg:w="295"/><text x="99.1307%" y="831.50"></text></g><g><title>__perf_event_task_sched_in (86 samples, 0.03%)</title><rect x="99.0025%" y="549" width="0.0321%" height="15" fill="rgb(251,196,0)" fg:x="264909" fg:w="86"/><text x="99.2525%" y="559.50"></text></g><g><title>__intel_pmu_enable_all.constprop.0 (86 samples, 0.03%)</title><rect x="99.0025%" y="533" width="0.0321%" height="15" fill="rgb(212,127,0)" fg:x="264909" fg:w="86"/><text x="99.2525%" y="543.50"></text></g><g><title>native_write_msr (85 samples, 0.03%)</title><rect x="99.0029%" y="517" width="0.0318%" height="15" fill="rgb(236,71,53)" fg:x="264910" fg:w="85"/><text x="99.2529%" y="527.50"></text></g><g><title>finish_task_switch (91 samples, 0.03%)</title><rect x="99.0025%" y="565" width="0.0340%" height="15" fill="rgb(227,99,0)" fg:x="264909" fg:w="91"/><text x="99.2525%" y="575.50"></text></g><g><title>futex_wait_queue_me (112 samples, 0.04%)</title><rect x="98.9995%" y="613" width="0.0419%" height="15" fill="rgb(239,89,21)" fg:x="264901" fg:w="112"/><text x="99.2495%" y="623.50"></text></g><g><title>schedule (112 samples, 0.04%)</title><rect x="98.9995%" y="597" width="0.0419%" height="15" fill="rgb(243,122,19)" fg:x="264901" fg:w="112"/><text x="99.2495%" y="607.50"></text></g><g><title>__schedule (111 samples, 0.04%)</title><rect x="98.9999%" y="581" width="0.0415%" height="15" fill="rgb(229,192,45)" fg:x="264902" fg:w="111"/><text x="99.2499%" y="591.50"></text></g><g><title>do_syscall_64 (119 samples, 0.04%)</title><rect x="98.9980%" y="677" width="0.0445%" height="15" fill="rgb(235,165,35)" fg:x="264897" fg:w="119"/><text x="99.2480%" y="687.50"></text></g><g><title>__x64_sys_futex (119 samples, 0.04%)</title><rect x="98.9980%" y="661" width="0.0445%" height="15" fill="rgb(253,202,0)" fg:x="264897" fg:w="119"/><text x="99.2480%" y="671.50"></text></g><g><title>do_futex (118 samples, 0.04%)</title><rect x="98.9984%" y="645" width="0.0441%" height="15" fill="rgb(235,51,20)" fg:x="264898" fg:w="118"/><text x="99.2484%" y="655.50"></text></g><g><title>futex_wait (117 samples, 0.04%)</title><rect x="98.9988%" y="629" width="0.0437%" height="15" fill="rgb(218,95,46)" fg:x="264899" fg:w="117"/><text x="99.2488%" y="639.50"></text></g><g><title>__pthread_cond_wait (124 samples, 0.05%)</title><rect x="98.9969%" y="741" width="0.0463%" height="15" fill="rgb(212,81,10)" fg:x="264894" fg:w="124"/><text x="99.2469%" y="751.50"></text></g><g><title>__pthread_cond_wait_common (124 samples, 0.05%)</title><rect x="98.9969%" y="725" width="0.0463%" height="15" fill="rgb(240,59,0)" fg:x="264894" fg:w="124"/><text x="99.2469%" y="735.50"></text></g><g><title>futex_wait_cancelable (123 samples, 0.05%)</title><rect x="98.9973%" y="709" width="0.0460%" height="15" fill="rgb(212,191,42)" fg:x="264895" fg:w="123"/><text x="99.2473%" y="719.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (121 samples, 0.05%)</title><rect x="98.9980%" y="693" width="0.0452%" height="15" fill="rgb(233,140,3)" fg:x="264897" fg:w="121"/><text x="99.2480%" y="703.50"></text></g><g><title>Monitor::lock_without_safepoint_check (140 samples, 0.05%)</title><rect x="98.9939%" y="789" width="0.0523%" height="15" fill="rgb(215,69,23)" fg:x="264886" fg:w="140"/><text x="99.2439%" y="799.50"></text></g><g><title>Monitor::ILock (140 samples, 0.05%)</title><rect x="98.9939%" y="773" width="0.0523%" height="15" fill="rgb(240,202,20)" fg:x="264886" fg:w="140"/><text x="99.2439%" y="783.50"></text></g><g><title>os::PlatformEvent::park (132 samples, 0.05%)</title><rect x="98.9969%" y="757" width="0.0493%" height="15" fill="rgb(209,146,50)" fg:x="264894" fg:w="132"/><text x="99.2469%" y="767.50"></text></g><g><title>SafepointSynchronize::block (163 samples, 0.06%)</title><rect x="98.9932%" y="805" width="0.0609%" height="15" fill="rgb(253,102,54)" fg:x="264884" fg:w="163"/><text x="99.2432%" y="815.50"></text></g><g><title>ThreadSafepointState::handle_polling_page_exception (175 samples, 0.07%)</title><rect x="98.9909%" y="821" width="0.0654%" height="15" fill="rgb(250,173,47)" fg:x="264878" fg:w="175"/><text x="99.2409%" y="831.50"></text></g><g><title>entry_SYSCALL_64 (33 samples, 0.01%)</title><rect x="99.0975%" y="757" width="0.0123%" height="15" fill="rgb(232,142,7)" fg:x="265163" fg:w="33"/><text x="99.3475%" y="767.50"></text></g><g><title>__fget_light (49 samples, 0.02%)</title><rect x="99.1251%" y="693" width="0.0183%" height="15" fill="rgb(230,157,47)" fg:x="265237" fg:w="49"/><text x="99.3751%" y="703.50"></text></g><g><title>__fget_files (35 samples, 0.01%)</title><rect x="99.1303%" y="677" width="0.0131%" height="15" fill="rgb(214,177,35)" fg:x="265251" fg:w="35"/><text x="99.3803%" y="687.50"></text></g><g><title>__fdget_pos (63 samples, 0.02%)</title><rect x="99.1240%" y="709" width="0.0235%" height="15" fill="rgb(234,119,46)" fg:x="265234" fg:w="63"/><text x="99.3740%" y="719.50"></text></g><g><title>copy_user_enhanced_fast_string (602 samples, 0.22%)</title><rect x="99.2350%" y="645" width="0.2250%" height="15" fill="rgb(241,180,50)" fg:x="265531" fg:w="602"/><text x="99.4850%" y="655.50"></text></g><g><title>copy_page_to_iter (640 samples, 0.24%)</title><rect x="99.2212%" y="661" width="0.2392%" height="15" fill="rgb(221,54,25)" fg:x="265494" fg:w="640"/><text x="99.4712%" y="671.50"></text></g><g><title>__activate_page (80 samples, 0.03%)</title><rect x="99.4719%" y="629" width="0.0299%" height="15" fill="rgb(209,157,44)" fg:x="266165" fg:w="80"/><text x="99.7219%" y="639.50"></text></g><g><title>mark_page_accessed (127 samples, 0.05%)</title><rect x="99.4603%" y="661" width="0.0475%" height="15" fill="rgb(246,115,41)" fg:x="266134" fg:w="127"/><text x="99.7103%" y="671.50"></text></g><g><title>pagevec_lru_move_fn (99 samples, 0.04%)</title><rect x="99.4708%" y="645" width="0.0370%" height="15" fill="rgb(229,86,1)" fg:x="266162" fg:w="99"/><text x="99.7208%" y="655.50"></text></g><g><title>pagecache_get_page (183 samples, 0.07%)</title><rect x="99.5078%" y="661" width="0.0684%" height="15" fill="rgb(240,108,53)" fg:x="266261" fg:w="183"/><text x="99.7578%" y="671.50"></text></g><g><title>find_get_entry (159 samples, 0.06%)</title><rect x="99.5168%" y="645" width="0.0594%" height="15" fill="rgb(227,134,2)" fg:x="266285" fg:w="159"/><text x="99.7668%" y="655.50"></text></g><g><title>xas_load (87 samples, 0.03%)</title><rect x="99.5437%" y="629" width="0.0325%" height="15" fill="rgb(213,129,25)" fg:x="266357" fg:w="87"/><text x="99.7937%" y="639.50"></text></g><g><title>atime_needs_update (48 samples, 0.02%)</title><rect x="99.5799%" y="645" width="0.0179%" height="15" fill="rgb(226,35,21)" fg:x="266454" fg:w="48"/><text x="99.8299%" y="655.50"></text></g><g><title>current_time (31 samples, 0.01%)</title><rect x="99.5863%" y="629" width="0.0116%" height="15" fill="rgb(208,129,26)" fg:x="266471" fg:w="31"/><text x="99.8363%" y="639.50"></text></g><g><title>touch_atime (64 samples, 0.02%)</title><rect x="99.5762%" y="661" width="0.0239%" height="15" fill="rgb(224,83,6)" fg:x="266444" fg:w="64"/><text x="99.8262%" y="671.50"></text></g><g><title>generic_file_buffered_read (1,183 samples, 0.44%)</title><rect x="99.1886%" y="677" width="0.4421%" height="15" fill="rgb(227,52,39)" fg:x="265407" fg:w="1183"/><text x="99.4386%" y="687.50"></text></g><g><title>workingset_activation (82 samples, 0.03%)</title><rect x="99.6001%" y="661" width="0.0306%" height="15" fill="rgb(241,30,17)" fg:x="266508" fg:w="82"/><text x="99.8501%" y="671.50"></text></g><g><title>workingset_age_nonresident (64 samples, 0.02%)</title><rect x="99.6068%" y="645" width="0.0239%" height="15" fill="rgb(246,186,42)" fg:x="266526" fg:w="64"/><text x="99.8568%" y="655.50"></text></g><g><title>new_sync_read (1,216 samples, 0.45%)</title><rect x="99.1771%" y="693" width="0.4544%" height="15" fill="rgb(221,169,15)" fg:x="265376" fg:w="1216"/><text x="99.4271%" y="703.50"></text></g><g><title>apparmor_file_permission (33 samples, 0.01%)</title><rect x="99.6397%" y="677" width="0.0123%" height="15" fill="rgb(235,108,21)" fg:x="266614" fg:w="33"/><text x="99.8897%" y="687.50"></text></g><g><title>ksys_read (1,434 samples, 0.54%)</title><rect x="99.1165%" y="725" width="0.5359%" height="15" fill="rgb(219,148,30)" fg:x="265214" fg:w="1434"/><text x="99.3665%" y="735.50"></text></g><g><title>vfs_read (1,323 samples, 0.49%)</title><rect x="99.1580%" y="709" width="0.4944%" height="15" fill="rgb(220,109,5)" fg:x="265325" fg:w="1323"/><text x="99.4080%" y="719.50"></text></g><g><title>security_file_permission (51 samples, 0.02%)</title><rect x="99.6334%" y="693" width="0.0191%" height="15" fill="rgb(213,203,48)" fg:x="266597" fg:w="51"/><text x="99.8834%" y="703.50"></text></g><g><title>do_syscall_64 (1,457 samples, 0.54%)</title><rect x="99.1128%" y="741" width="0.5445%" height="15" fill="rgb(244,71,33)" fg:x="265204" fg:w="1457"/><text x="99.3628%" y="751.50"></text></g><g><title>entry_SYSCALL_64_after_hwframe (1,488 samples, 0.56%)</title><rect x="99.1098%" y="757" width="0.5561%" height="15" fill="rgb(209,23,2)" fg:x="265196" fg:w="1488"/><text x="99.3598%" y="767.50"></text></g><g><title>__libc_read (1,578 samples, 0.59%)</title><rect x="99.0810%" y="789" width="0.5897%" height="15" fill="rgb(219,97,7)" fg:x="265119" fg:w="1578"/><text x="99.3310%" y="799.50"></text></g><g><title>__libc_read (1,576 samples, 0.59%)</title><rect x="99.0818%" y="773" width="0.5890%" height="15" fill="rgb(216,161,23)" fg:x="265121" fg:w="1576"/><text x="99.3318%" y="783.50"></text></g><g><title>handleRead (1,589 samples, 0.59%)</title><rect x="99.0795%" y="805" width="0.5938%" height="15" fill="rgb(207,45,42)" fg:x="265115" fg:w="1589"/><text x="99.3295%" y="815.50"></text></g><g><title>jni_GetArrayLength (58 samples, 0.02%)</title><rect x="99.6734%" y="805" width="0.0217%" height="15" fill="rgb(241,61,4)" fg:x="266704" fg:w="58"/><text x="99.9234%" y="815.50"></text></g><g><title>ThreadStateTransition::transition_from_native (29 samples, 0.01%)</title><rect x="99.6842%" y="789" width="0.0108%" height="15" fill="rgb(236,170,1)" fg:x="266733" fg:w="29"/><text x="99.9342%" y="799.50"></text></g><g><title>AccessInternal::PostRuntimeDispatch&lt;G1BarrierSet::AccessBarrier&lt;802934ul, G1BarrierSet&gt;, (AccessInternal::BarrierType)3, 802934ul&gt;::oop_access_barrier (32 samples, 0.01%)</title><rect x="99.7119%" y="789" width="0.0120%" height="15" fill="rgb(239,72,5)" fg:x="266807" fg:w="32"/><text x="99.9619%" y="799.50"></text></g><g><title>JNIHandles::make_local (28 samples, 0.01%)</title><rect x="99.7287%" y="789" width="0.0105%" height="15" fill="rgb(214,13,50)" fg:x="266852" fg:w="28"/><text x="99.9787%" y="799.50"></text></g><g><title>ThreadStateTransition::trans_and_fence (32 samples, 0.01%)</title><rect x="99.7391%" y="789" width="0.0120%" height="15" fill="rgb(224,88,9)" fg:x="266880" fg:w="32"/><text x="99.9891%" y="799.50"></text></g><g><title>ThreadStateTransition::transition_from_native (28 samples, 0.01%)</title><rect x="99.7511%" y="789" width="0.0105%" height="15" fill="rgb(238,192,34)" fg:x="266912" fg:w="28"/><text x="100.0011%" y="799.50"></text></g><g><title>jni_GetObjectField (179 samples, 0.07%)</title><rect x="99.6950%" y="805" width="0.0669%" height="15" fill="rgb(217,203,50)" fg:x="266762" fg:w="179"/><text x="99.9450%" y="815.50"></text></g><g><title>[libc-2.31.so] (200 samples, 0.07%)</title><rect x="99.7832%" y="789" width="0.0747%" height="15" fill="rgb(241,123,32)" fg:x="266998" fg:w="200"/><text x="100.0332%" y="799.50"></text></g><g><title>readBytes (2,140 samples, 0.80%)</title><rect x="99.0679%" y="821" width="0.7998%" height="15" fill="rgb(248,151,39)" fg:x="265084" fg:w="2140"/><text x="99.3179%" y="831.50"></text></g><g><title>jni_SetByteArrayRegion (283 samples, 0.11%)</title><rect x="99.7619%" y="805" width="0.1058%" height="15" fill="rgb(208,89,6)" fg:x="266941" fg:w="283"/><text x="100.0119%" y="815.50"></text></g><g><title>[unknown] (2,830 samples, 1.06%)</title><rect x="98.8190%" y="837" width="1.0576%" height="15" fill="rgb(254,43,26)" fg:x="264418" fg:w="2830"/><text x="99.0690%" y="847.50"></text></g><g><title>Thread::call_run (38 samples, 0.01%)</title><rect x="99.9006%" y="789" width="0.0142%" height="15" fill="rgb(216,158,13)" fg:x="267312" fg:w="38"/><text x="100.1506%" y="799.50"></text></g><g><title>__GI___clone (111 samples, 0.04%)</title><rect x="99.8767%" y="837" width="0.0415%" height="15" fill="rgb(212,47,37)" fg:x="267248" fg:w="111"/><text x="100.1267%" y="847.50"></text></g><g><title>start_thread (73 samples, 0.03%)</title><rect x="99.8909%" y="821" width="0.0273%" height="15" fill="rgb(254,16,10)" fg:x="267286" fg:w="73"/><text x="100.1409%" y="831.50"></text></g><g><title>thread_native_entry (58 samples, 0.02%)</title><rect x="99.8965%" y="805" width="0.0217%" height="15" fill="rgb(223,228,16)" fg:x="267301" fg:w="58"/><text x="100.1465%" y="815.50"></text></g><g><title>skyframe-evalua (124,274 samples, 46.44%)</title><rect x="53.5205%" y="853" width="46.4440%" height="15" fill="rgb(249,108,50)" fg:x="143209" fg:w="124274"/><text x="53.7705%" y="863.50">skyframe-evalua</text></g><g><title>[perf-21254.map] (68 samples, 0.03%)</title><rect x="99.9656%" y="837" width="0.0254%" height="15" fill="rgb(208,220,5)" fg:x="267486" fg:w="68"/><text x="100.2156%" y="847.50"></text></g><g><title>skyframe-invali (94 samples, 0.04%)</title><rect x="99.9645%" y="853" width="0.0351%" height="15" fill="rgb(217,89,48)" fg:x="267483" fg:w="94"/><text x="100.2145%" y="863.50"></text></g><g><title>all (267,578 samples, 100%)</title><rect x="0.0000%" y="869" width="100.0000%" height="15" fill="rgb(212,113,41)" fg:x="0" fg:w="267578"/><text x="0.2500%" y="879.50"></text></g></svg></svg>