Skip to content

Instantly share code, notes, and snippets.

@tesuji
Created January 11, 2020 09:28
Show Gist options
  • Save tesuji/3e900642d43ec9bad186c74b3028902d to your computer and use it in GitHub Desktop.
Save tesuji/3e900642d43ec9bad186c74b3028902d to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?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="806" onload="init(evt)" viewBox="0 0 1200 806" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><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">.func_g:hover { stroke:black; stroke-width:0.5; cursor:pointer; }</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)';]]><![CDATA[var details, searchbtn, matchedtxt, svg;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
}
// mouse-over for info
function s(node) { // show
info = g_to_text(node);
details.nodeValue = nametype + " " + info;
}
function c() { // clear
details.nodeValue = ' ';
}
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
})
// functions
function find_child(parent, name, attr) {
var children = parent.childNodes;
for (var i=0; i<children.length;i++) {
if (children[i].tagName == name)
return (attr != undefined) ? children[i].attributes[attr].value : children[i];
}
return;
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_"+attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_"+attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_"+attr].value;
e.removeAttribute("_orig_"+attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes["width"].value) -3;
var txt = find_child(e, "title").textContent.replace(/\\([^(]*\\)\$/,"");
t.attributes["x"].value = parseFloat(r.attributes["x"].value) +3;
// Smaller than this size won't fit anything
if (w < 2*fontsize*fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getSubStringLength(0, txt.length) < w)
return;
for (var x=txt.length-2; x>0; x--) {
if (t.getSubStringLength(0, x+2) <= w) {
t.textContent = txt.substring(0,x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
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, ratio) {
if (e.attributes != undefined) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = (parseFloat(e.attributes["x"].value) - x - xpad) * ratio + xpad;
if(e.tagName == "text") e.attributes["x"].value = find_child(e.parentNode, "rect", "x") + 3;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseFloat(e.attributes["width"].value) * ratio;
}
}
if (e.childNodes == undefined) return;
for(var i=0, c=e.childNodes; i<c.length; i++) {
zoom_child(c[i], x-xpad, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes["x"] != undefined) {
orig_save(e, "x");
e.attributes["x"].value = xpad;
}
if (e.attributes["width"] != undefined) {
orig_save(e, "width");
e.attributes["width"].value = parseInt(svg.width.baseVal.value) - (xpad*2);
}
}
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 = parseFloat(attr["width"].value);
var xmin = parseFloat(attr["x"].value);
var xmax = parseFloat(xmin + width);
var ymin = parseFloat(attr["y"].value);
var ratio = (svg.width.baseVal.value - 2*xpad) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "1.0";
var el = document.getElementsByTagName("g");
for(var i=0;i<el.length;i++){
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a["x"].value);
var ew = parseFloat(a["width"].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+fudge) >= xmax) {
e.style["opacity"] = "0.5";
zoom_parent(e);
e.onclick = function(e){unzoom(); zoom(this);};
update_text(e);
}
// not in current path
else
e.style["display"] = "none";
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.style["display"] = "none";
}
else {
zoom_child(e, xmin, ratio);
e.onclick = function(e){zoom(this);};
update_text(e);
}
}
}
}
function unzoom() {
var unzoombtn = document.getElementById("unzoom");
unzoombtn.style["opacity"] = "0.0";
var el = document.getElementsByTagName("g");
for(i=0;i<el.length;i++) {
el[i].style["display"] = "block";
el[i].style["opacity"] = "1";
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.getElementsByTagName("rect");
for (var i=0; i < el.length; i++) {
orig_load(el[i], "fill")
}
}
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.style["opacity"] = "0.1";
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.style["opacity"] = "0.0";
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = document.getElementsByTagName("g");
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
if (e.attributes["class"].value != "func_g")
continue;
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (rect == null) {
// the rect might be wrapped in an anchor
// if nameattr href is being used
if (rect = find_child(e, "a")) {
rect = find_child(r, "rect");
}
}
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes["width"].value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes["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;
searchbtn.style["opacity"] = "1.0";
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.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.style["opacity"] = "1.0";
pct = 100 * count / maxwidth;
if (pct == 100)
pct = "100"
else
pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function searchover(e) {
searchbtn.style["opacity"] = "1.0";
}
function searchout(e) {
if (searching) {
searchbtn.style["opacity"] = "1.0";
} else {
searchbtn.style["opacity"] = "0.1";
}
}
]]></script><rect x="0" y="0" width="1200" height="806" fill="url(#background)"/><text text-anchor="middle" x="600.00" y="24.00" font-size="17" font-family="Verdana" fill="rgb(0, 0, 0)">Flame Graph</text><text id="details" text-anchor="left" x="10.00" y="789.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><text id="unzoom" onclick="unzoom()" style="opacity:0.0;cursor:pointer" text-anchor="left" x="10.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Reset Zoom</text><text id="search" onmouseover="searchover()" onmouseout="searchout()" onclick="search_prompt()" style="opacity:0.1;cursor:pointer" text-anchor="left" x="1090.00" y="24.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">Search</text><text id="matched" text-anchor="left" x="1090.00" y="789.00" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"> </text><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (4 samples, 0.23%)</title><rect x="10" y="645" width="2" height="15" fill="rgb(235,137,23)"/><text text-anchor="left" x="13.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (4 samples, 0.23%)</title><rect x="10" y="629" width="2" height="15" fill="rgb(239,68,39)"/><text text-anchor="left" x="13.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>cc (5 samples, 0.29%)</title><rect x="10" y="741" width="3" height="15" fill="rgb(211,28,3)"/><text text-anchor="left" x="13.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___clone (5 samples, 0.29%)</title><rect x="10" y="725" width="3" height="15" fill="rgb(227,92,37)"/><text text-anchor="left" x="13.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ret_from_fork (5 samples, 0.29%)</title><rect x="10" y="709" width="3" height="15" fill="rgb(233,52,44)"/><text text-anchor="left" x="13.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule_tail (5 samples, 0.29%)</title><rect x="10" y="693" width="3" height="15" fill="rgb(225,220,33)"/><text text-anchor="left" x="13.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (5 samples, 0.29%)</title><rect x="10" y="677" width="3" height="15" fill="rgb(209,109,24)"/><text text-anchor="left" x="13.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (5 samples, 0.29%)</title><rect x="10" y="661" width="3" height="15" fill="rgb(233,209,31)"/><text text-anchor="left" x="13.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (1 samples, 0.06%)</title><rect x="12" y="645" width="1" height="15" fill="rgb(254,20,54)"/><text text-anchor="left" x="15.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="12" y="629" width="1" height="15" fill="rgb(205,176,3)"/><text text-anchor="left" x="15.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="12" y="613" width="1" height="15" fill="rgb(235,150,37)"/><text text-anchor="left" x="15.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (1 samples, 0.06%)</title><rect x="12" y="597" width="1" height="15" fill="rgb(209,52,29)"/><text text-anchor="left" x="15.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[[heap]] (1 samples, 0.06%)</title><rect x="13" y="725" width="1" height="15" fill="rgb(238,3,26)"/><text text-anchor="left" x="16.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (1 samples, 0.06%)</title><rect x="13" y="709" width="1" height="15" fill="rgb(245,163,38)"/><text text-anchor="left" x="16.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___pthread_mutex_lock (4 samples, 0.23%)</title><rect x="14" y="549" width="2" height="15" fill="rgb(251,208,11)"/><text text-anchor="left" x="17.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__lll_lock_wait (4 samples, 0.23%)</title><rect x="14" y="533" width="2" height="15" fill="rgb(233,134,52)"/><text text-anchor="left" x="17.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (4 samples, 0.23%)</title><rect x="14" y="517" width="2" height="15" fill="rgb(207,73,18)"/><text text-anchor="left" x="17.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (4 samples, 0.23%)</title><rect x="14" y="501" width="2" height="15" fill="rgb(232,6,24)"/><text text-anchor="left" x="17.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (4 samples, 0.23%)</title><rect x="14" y="485" width="2" height="15" fill="rgb(237,85,53)"/><text text-anchor="left" x="17.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (4 samples, 0.23%)</title><rect x="14" y="469" width="2" height="15" fill="rgb(221,124,46)"/><text text-anchor="left" x="17.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait (4 samples, 0.23%)</title><rect x="14" y="453" width="2" height="15" fill="rgb(238,76,29)"/><text text-anchor="left" x="17.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_queue_me (4 samples, 0.23%)</title><rect x="14" y="437" width="2" height="15" fill="rgb(249,13,34)"/><text text-anchor="left" x="17.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule (4 samples, 0.23%)</title><rect x="14" y="421" width="2" height="15" fill="rgb(211,21,49)"/><text text-anchor="left" x="17.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__schedule (4 samples, 0.23%)</title><rect x="14" y="405" width="2" height="15" fill="rgb(221,95,21)"/><text text-anchor="left" x="17.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (4 samples, 0.23%)</title><rect x="14" y="389" width="2" height="15" fill="rgb(238,106,28)"/><text text-anchor="left" x="17.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (4 samples, 0.23%)</title><rect x="14" y="373" width="2" height="15" fill="rgb(236,40,9)"/><text text-anchor="left" x="17.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (4 samples, 0.23%)</title><rect x="14" y="357" width="2" height="15" fill="rgb(230,205,1)"/><text text-anchor="left" x="17.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (4 samples, 0.23%)</title><rect x="14" y="341" width="2" height="15" fill="rgb(232,182,43)"/><text text-anchor="left" x="17.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="725" width="3" height="15" fill="rgb(231,228,23)"/><text text-anchor="left" x="17.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__libc_start_main (5 samples, 0.29%)</title><rect x="14" y="709" width="3" height="15" fill="rgb(213,204,17)"/><text text-anchor="left" x="17.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="693" width="3" height="15" fill="rgb(224,80,3)"/><text text-anchor="left" x="17.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="677" width="3" height="15" fill="rgb(234,57,52)"/><text text-anchor="left" x="17.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="661" width="3" height="15" fill="rgb(250,1,47)"/><text text-anchor="left" x="17.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="645" width="3" height="15" fill="rgb(212,229,51)"/><text text-anchor="left" x="17.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="629" width="3" height="15" fill="rgb(240,96,9)"/><text text-anchor="left" x="17.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="613" width="3" height="15" fill="rgb(243,53,49)"/><text text-anchor="left" x="17.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="597" width="3" height="15" fill="rgb(247,187,15)"/><text text-anchor="left" x="17.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="581" width="3" height="15" fill="rgb(226,47,36)"/><text text-anchor="left" x="17.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (5 samples, 0.29%)</title><rect x="14" y="565" width="3" height="15" fill="rgb(251,114,26)"/><text text-anchor="left" x="17.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::condition_variable::notify_one (1 samples, 0.06%)</title><rect x="16" y="549" width="1" height="15" fill="rgb(207,115,6)"/><text text-anchor="left" x="19.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_cond_signal (1 samples, 0.06%)</title><rect x="16" y="533" width="1" height="15" fill="rgb(248,123,30)"/><text text-anchor="left" x="19.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wake (1 samples, 0.06%)</title><rect x="16" y="517" width="1" height="15" fill="rgb(244,148,49)"/><text text-anchor="left" x="19.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="16" y="501" width="1" height="15" fill="rgb(237,170,31)"/><text text-anchor="left" x="19.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="16" y="485" width="1" height="15" fill="rgb(222,36,52)"/><text text-anchor="left" x="19.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (1 samples, 0.06%)</title><rect x="16" y="469" width="1" height="15" fill="rgb(207,196,46)"/><text text-anchor="left" x="19.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (1 samples, 0.06%)</title><rect x="16" y="453" width="1" height="15" fill="rgb(221,60,9)"/><text text-anchor="left" x="19.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wake (1 samples, 0.06%)</title><rect x="16" y="437" width="1" height="15" fill="rgb(228,118,53)"/><text text-anchor="left" x="19.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>wake_up_q (1 samples, 0.06%)</title><rect x="16" y="421" width="1" height="15" fill="rgb(229,7,49)"/><text text-anchor="left" x="19.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>try_to_wake_up (1 samples, 0.06%)</title><rect x="16" y="405" width="1" height="15" fill="rgb(222,23,49)"/><text text-anchor="left" x="19.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ttwu_do_activate (1 samples, 0.06%)</title><rect x="16" y="389" width="1" height="15" fill="rgb(205,137,18)"/><text text-anchor="left" x="19.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>enqueue_task_fair (1 samples, 0.06%)</title><rect x="16" y="373" width="1" height="15" fill="rgb(220,12,0)"/><text text-anchor="left" x="19.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>enqueue_entity (1 samples, 0.06%)</title><rect x="16" y="357" width="1" height="15" fill="rgb(233,142,50)"/><text text-anchor="left" x="19.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[libstdc++.so.6.0.25] (1 samples, 0.06%)</title><rect x="17" y="709" width="1" height="15" fill="rgb(214,39,44)"/><text text-anchor="left" x="20.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (2 samples, 0.12%)</title><rect x="18" y="709" width="1" height="15" fill="rgb(247,96,35)"/><text text-anchor="left" x="21.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[unknown] (4 samples, 0.23%)</title><rect x="17" y="725" width="3" height="15" fill="rgb(246,181,51)"/><text text-anchor="left" x="20.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__lll_lock_wait (1 samples, 0.06%)</title><rect x="19" y="709" width="1" height="15" fill="rgb(249,19,4)"/><text text-anchor="left" x="22.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__entry_trampoline_start (1 samples, 0.06%)</title><rect x="19" y="693" width="1" height="15" fill="rgb(252,197,16)"/><text text-anchor="left" x="22.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__entry_trampoline_start (1 samples, 0.06%)</title><rect x="20" y="709" width="0" height="15" fill="rgb(226,209,24)"/><text text-anchor="left" x="23.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irq (2 samples, 0.12%)</title><rect x="22" y="677" width="1" height="15" fill="rgb(220,11,1)"/><text text-anchor="left" x="25.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>calculate_sigpending (10 samples, 0.58%)</title><rect x="21" y="693" width="7" height="15" fill="rgb(206,5,18)"/><text text-anchor="left" x="24.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>recalc_sigpending (7 samples, 0.41%)</title><rect x="23" y="677" width="5" height="15" fill="rgb(216,218,12)"/><text text-anchor="left" x="26.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>recalc_sigpending_tsk (4 samples, 0.23%)</title><rect x="25" y="661" width="3" height="15" fill="rgb(227,49,52)"/><text text-anchor="left" x="28.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (122 samples, 7.09%)</title><rect x="31" y="645" width="83" height="15" fill="rgb(229,168,12)"/><text text-anchor="left" x="34.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__intel_p..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (122 samples, 7.09%)</title><rect x="31" y="629" width="83" height="15" fill="rgb(217,128,43)"/><text text-anchor="left" x="34.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">native_wr..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock (2 samples, 0.12%)</title><rect x="116" y="629" width="1" height="15" fill="rgb(226,11,53)"/><text text-anchor="left" x="119.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (2 samples, 0.12%)</title><rect x="117" y="629" width="2" height="15" fill="rgb(216,72,41)"/><text text-anchor="left" x="120.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (2 samples, 0.12%)</title><rect x="117" y="613" width="2" height="15" fill="rgb(232,152,52)"/><text text-anchor="left" x="120.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (2 samples, 0.12%)</title><rect x="117" y="597" width="2" height="15" fill="rgb(224,99,35)"/><text text-anchor="left" x="120.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (132 samples, 7.67%)</title><rect x="29" y="661" width="90" height="15" fill="rgb(223,78,43)"/><text text-anchor="left" x="32.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__perf_eve..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (7 samples, 0.41%)</title><rect x="114" y="645" width="5" height="15" fill="rgb(243,214,3)"/><text text-anchor="left" x="117.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>x86_pmu_disable (1 samples, 0.06%)</title><rect x="119" y="629" width="0" height="15" fill="rgb(212,149,15)"/><text text-anchor="left" x="122.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ret_from_fork (145 samples, 8.43%)</title><rect x="20" y="709" width="100" height="15" fill="rgb(208,188,40)"/><text text-anchor="left" x="23.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ret_from_fork</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule_tail (134 samples, 7.79%)</title><rect x="28" y="693" width="92" height="15" fill="rgb(214,193,7)"/><text text-anchor="left" x="31.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">schedule_t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (134 samples, 7.79%)</title><rect x="28" y="677" width="92" height="15" fill="rgb(233,167,46)"/><text text-anchor="left" x="31.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">finish_tas..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>apic_timer_interrupt (1 samples, 0.06%)</title><rect x="119" y="661" width="1" height="15" fill="rgb(237,135,9)"/><text text-anchor="left" x="122.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (3 samples, 0.17%)</title><rect x="125" y="597" width="2" height="15" fill="rgb(219,79,47)"/><text text-anchor="left" x="128.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (2 samples, 0.12%)</title><rect x="126" y="581" width="1" height="15" fill="rgb(250,172,11)"/><text text-anchor="left" x="129.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (1 samples, 0.06%)</title><rect x="127" y="565" width="0" height="15" fill="rgb(249,214,33)"/><text text-anchor="left" x="130.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (1 samples, 0.06%)</title><rect x="127" y="549" width="0" height="15" fill="rgb(241,76,20)"/><text text-anchor="left" x="130.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (1 samples, 0.06%)</title><rect x="127" y="533" width="0" height="15" fill="rgb(205,178,41)"/><text text-anchor="left" x="130.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (1 samples, 0.06%)</title><rect x="127" y="517" width="0" height="15" fill="rgb(254,42,7)"/><text text-anchor="left" x="130.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__memcmp_sse4_1 (1 samples, 0.06%)</title><rect x="127" y="597" width="1" height="15" fill="rgb(232,221,33)"/><text text-anchor="left" x="130.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__radix_tree_lookup (1 samples, 0.06%)</title><rect x="128" y="453" width="1" height="15" fill="rgb(218,108,41)"/><text text-anchor="left" x="131.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_cache_readahead (2 samples, 0.12%)</title><rect x="128" y="469" width="1" height="15" fill="rgb(227,121,7)"/><text text-anchor="left" x="131.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>read_pages (1 samples, 0.06%)</title><rect x="129" y="453" width="0" height="15" fill="rgb(240,89,31)"/><text text-anchor="left" x="132.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ext4_mpage_readpages (1 samples, 0.06%)</title><rect x="129" y="437" width="0" height="15" fill="rgb(211,65,51)"/><text text-anchor="left" x="132.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>add_to_page_cache_lru (1 samples, 0.06%)</title><rect x="129" y="421" width="0" height="15" fill="rgb(230,34,23)"/><text text-anchor="left" x="132.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__add_to_page_cache_locked (1 samples, 0.06%)</title><rect x="129" y="405" width="0" height="15" fill="rgb(216,136,26)"/><text text-anchor="left" x="132.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irq (1 samples, 0.06%)</title><rect x="129" y="389" width="0" height="15" fill="rgb(208,187,10)"/><text text-anchor="left" x="132.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ondemand_readahead (1 samples, 0.06%)</title><rect x="129" y="469" width="1" height="15" fill="rgb(230,162,18)"/><text text-anchor="left" x="132.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_cache_readahead (1 samples, 0.06%)</title><rect x="129" y="453" width="1" height="15" fill="rgb(221,120,9)"/><text text-anchor="left" x="132.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__alloc_pages_nodemask (1 samples, 0.06%)</title><rect x="129" y="437" width="1" height="15" fill="rgb(210,32,12)"/><text text-anchor="left" x="132.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_page_from_freelist (1 samples, 0.06%)</title><rect x="129" y="421" width="1" height="15" fill="rgb(227,202,28)"/><text text-anchor="left" x="132.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__list_del_entry_valid (1 samples, 0.06%)</title><rect x="129" y="405" width="1" height="15" fill="rgb(235,217,11)"/><text text-anchor="left" x="132.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__memcpy_sse2_unaligned_erms (4 samples, 0.23%)</title><rect x="128" y="597" width="3" height="15" fill="rgb(254,89,50)"/><text text-anchor="left" x="131.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (4 samples, 0.23%)</title><rect x="128" y="581" width="3" height="15" fill="rgb(212,12,17)"/><text text-anchor="left" x="131.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (4 samples, 0.23%)</title><rect x="128" y="565" width="3" height="15" fill="rgb(239,183,13)"/><text text-anchor="left" x="131.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>handle_mm_fault (4 samples, 0.23%)</title><rect x="128" y="549" width="3" height="15" fill="rgb(224,104,53)"/><text text-anchor="left" x="131.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__handle_mm_fault (4 samples, 0.23%)</title><rect x="128" y="533" width="3" height="15" fill="rgb(216,128,20)"/><text text-anchor="left" x="131.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_fault (4 samples, 0.23%)</title><rect x="128" y="517" width="3" height="15" fill="rgb(213,154,53)"/><text text-anchor="left" x="131.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ext4_filemap_fault (4 samples, 0.23%)</title><rect x="128" y="501" width="3" height="15" fill="rgb(225,131,30)"/><text text-anchor="left" x="131.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>filemap_fault (4 samples, 0.23%)</title><rect x="128" y="485" width="3" height="15" fill="rgb(247,28,40)"/><text text-anchor="left" x="131.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pagecache_get_page (1 samples, 0.06%)</title><rect x="130" y="469" width="1" height="15" fill="rgb(251,176,42)"/><text text-anchor="left" x="133.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>find_get_entry (1 samples, 0.06%)</title><rect x="130" y="453" width="1" height="15" fill="rgb(224,111,15)"/><text text-anchor="left" x="133.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>radix_tree_lookup_slot (1 samples, 0.06%)</title><rect x="130" y="437" width="1" height="15" fill="rgb(243,38,4)"/><text text-anchor="left" x="133.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__radix_tree_lookup (1 samples, 0.06%)</title><rect x="130" y="421" width="1" height="15" fill="rgb(221,218,31)"/><text text-anchor="left" x="133.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>operator new (2 samples, 0.12%)</title><rect x="131" y="597" width="1" height="15" fill="rgb(250,26,53)"/><text text-anchor="left" x="134.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___libc_malloc (2 samples, 0.12%)</title><rect x="131" y="581" width="1" height="15" fill="rgb(249,140,32)"/><text text-anchor="left" x="134.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_int_malloc (2 samples, 0.12%)</title><rect x="131" y="565" width="1" height="15" fill="rgb(243,204,52)"/><text text-anchor="left" x="134.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="132" y="549" width="0" height="15" fill="rgb(254,59,24)"/><text text-anchor="left" x="135.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="132" y="533" width="0" height="15" fill="rgb(212,139,48)"/><text text-anchor="left" x="135.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>down_read (1 samples, 0.06%)</title><rect x="132" y="517" width="0" height="15" fill="rgb(226,67,2)"/><text text-anchor="left" x="135.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>call_rwsem_down_read_failed (1 samples, 0.06%)</title><rect x="132" y="501" width="0" height="15" fill="rgb(209,85,27)"/><text text-anchor="left" x="135.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rwsem_down_read_failed (1 samples, 0.06%)</title><rect x="132" y="485" width="0" height="15" fill="rgb(250,188,20)"/><text text-anchor="left" x="135.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>wake_up_q (1 samples, 0.06%)</title><rect x="132" y="469" width="0" height="15" fill="rgb(226,36,36)"/><text text-anchor="left" x="135.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>try_to_wake_up (1 samples, 0.06%)</title><rect x="132" y="453" width="0" height="15" fill="rgb(234,25,46)"/><text text-anchor="left" x="135.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irqsave (1 samples, 0.06%)</title><rect x="132" y="437" width="0" height="15" fill="rgb(207,83,20)"/><text text-anchor="left" x="135.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_queued_spin_lock_slowpath (1 samples, 0.06%)</title><rect x="132" y="421" width="0" height="15" fill="rgb(227,55,52)"/><text text-anchor="left" x="135.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (17 samples, 0.99%)</title><rect x="121" y="645" width="12" height="15" fill="rgb(238,197,39)"/><text text-anchor="left" x="124.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (15 samples, 0.87%)</title><rect x="123" y="629" width="10" height="15" fill="rgb(235,202,31)"/><text text-anchor="left" x="126.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (13 samples, 0.76%)</title><rect x="124" y="613" width="9" height="15" fill="rgb(245,115,35)"/><text text-anchor="left" x="127.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="132" y="597" width="1" height="15" fill="rgb(250,163,52)"/><text text-anchor="left" x="135.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="132" y="581" width="1" height="15" fill="rgb(253,162,9)"/><text text-anchor="left" x="135.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>down_read (1 samples, 0.06%)</title><rect x="132" y="565" width="1" height="15" fill="rgb(243,118,7)"/><text text-anchor="left" x="135.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>call_rwsem_down_read_failed (1 samples, 0.06%)</title><rect x="132" y="549" width="1" height="15" fill="rgb(218,156,37)"/><text text-anchor="left" x="135.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rwsem_down_read_failed (1 samples, 0.06%)</title><rect x="132" y="533" width="1" height="15" fill="rgb(217,87,46)"/><text text-anchor="left" x="135.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule (1 samples, 0.06%)</title><rect x="132" y="517" width="1" height="15" fill="rgb(225,222,42)"/><text text-anchor="left" x="135.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__schedule (1 samples, 0.06%)</title><rect x="132" y="501" width="1" height="15" fill="rgb(242,136,29)"/><text text-anchor="left" x="135.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock (1 samples, 0.06%)</title><rect x="132" y="485" width="1" height="15" fill="rgb(254,132,15)"/><text text-anchor="left" x="135.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>free@plt (1 samples, 0.06%)</title><rect x="133" y="645" width="1" height="15" fill="rgb(224,14,3)"/><text text-anchor="left" x="136.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (19 samples, 1.10%)</title><rect x="121" y="661" width="13" height="15" fill="rgb(241,64,22)"/><text text-anchor="left" x="124.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>operator new@plt (1 samples, 0.06%)</title><rect x="134" y="645" width="0" height="15" fill="rgb(223,16,26)"/><text text-anchor="left" x="137.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (13 samples, 0.76%)</title><rect x="134" y="469" width="9" height="15" fill="rgb(238,135,20)"/><text text-anchor="left" x="137.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (13 samples, 0.76%)</title><rect x="134" y="453" width="9" height="15" fill="rgb(254,189,47)"/><text text-anchor="left" x="137.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___pthread_mutex_lock (14 samples, 0.81%)</title><rect x="134" y="661" width="10" height="15" fill="rgb(244,121,53)"/><text text-anchor="left" x="137.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__lll_lock_wait (14 samples, 0.81%)</title><rect x="134" y="645" width="10" height="15" fill="rgb(229,26,25)"/><text text-anchor="left" x="137.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (14 samples, 0.81%)</title><rect x="134" y="629" width="10" height="15" fill="rgb(238,183,29)"/><text text-anchor="left" x="137.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (14 samples, 0.81%)</title><rect x="134" y="613" width="10" height="15" fill="rgb(228,219,52)"/><text text-anchor="left" x="137.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (14 samples, 0.81%)</title><rect x="134" y="597" width="10" height="15" fill="rgb(221,113,19)"/><text text-anchor="left" x="137.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (14 samples, 0.81%)</title><rect x="134" y="581" width="10" height="15" fill="rgb(207,165,50)"/><text text-anchor="left" x="137.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait (14 samples, 0.81%)</title><rect x="134" y="565" width="10" height="15" fill="rgb(237,127,37)"/><text text-anchor="left" x="137.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_queue_me (14 samples, 0.81%)</title><rect x="134" y="549" width="10" height="15" fill="rgb(247,111,39)"/><text text-anchor="left" x="137.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule (14 samples, 0.81%)</title><rect x="134" y="533" width="10" height="15" fill="rgb(223,198,8)"/><text text-anchor="left" x="137.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__schedule (14 samples, 0.81%)</title><rect x="134" y="517" width="10" height="15" fill="rgb(235,216,32)"/><text text-anchor="left" x="137.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (14 samples, 0.81%)</title><rect x="134" y="501" width="10" height="15" fill="rgb(226,150,8)"/><text text-anchor="left" x="137.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (14 samples, 0.81%)</title><rect x="134" y="485" width="10" height="15" fill="rgb(225,66,18)"/><text text-anchor="left" x="137.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (1 samples, 0.06%)</title><rect x="143" y="469" width="1" height="15" fill="rgb(224,209,10)"/><text text-anchor="left" x="146.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock (1 samples, 0.06%)</title><rect x="143" y="453" width="1" height="15" fill="rgb(228,198,51)"/><text text-anchor="left" x="146.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_mutex_unlock_usercnt (1 samples, 0.06%)</title><rect x="144" y="661" width="1" height="15" fill="rgb(212,190,28)"/><text text-anchor="left" x="147.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__condvar_dec_grefs (3 samples, 0.17%)</title><rect x="147" y="613" width="2" height="15" fill="rgb(231,227,24)"/><text text-anchor="left" x="150.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wake (1 samples, 0.06%)</title><rect x="149" y="597" width="0" height="15" fill="rgb(220,117,49)"/><text text-anchor="left" x="152.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="149" y="581" width="0" height="15" fill="rgb(220,205,41)"/><text text-anchor="left" x="152.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="149" y="565" width="0" height="15" fill="rgb(214,227,4)"/><text text-anchor="left" x="152.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (1 samples, 0.06%)</title><rect x="149" y="549" width="0" height="15" fill="rgb(231,108,10)"/><text text-anchor="left" x="152.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (1 samples, 0.06%)</title><rect x="149" y="533" width="0" height="15" fill="rgb(207,86,36)"/><text text-anchor="left" x="152.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wake (1 samples, 0.06%)</title><rect x="149" y="517" width="0" height="15" fill="rgb(220,217,4)"/><text text-anchor="left" x="152.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__condvar_fetch_add_wseq_acquire (1 samples, 0.06%)</title><rect x="149" y="613" width="1" height="15" fill="rgb(219,122,54)"/><text text-anchor="left" x="152.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__entry_trampoline_start (1 samples, 0.06%)</title><rect x="151" y="581" width="0" height="15" fill="rgb(218,116,51)"/><text text-anchor="left" x="154.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__indirect_thunk_start (1 samples, 0.06%)</title><rect x="151" y="581" width="1" height="15" fill="rgb(214,80,42)"/><text text-anchor="left" x="154.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (25 samples, 1.45%)</title><rect x="153" y="421" width="17" height="15" fill="rgb(205,41,21)"/><text text-anchor="left" x="156.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (25 samples, 1.45%)</title><rect x="153" y="405" width="17" height="15" fill="rgb(236,155,34)"/><text text-anchor="left" x="156.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (26 samples, 1.51%)</title><rect x="153" y="453" width="18" height="15" fill="rgb(212,199,53)"/><text text-anchor="left" x="156.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (26 samples, 1.51%)</title><rect x="153" y="437" width="18" height="15" fill="rgb(243,16,46)"/><text text-anchor="left" x="156.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (1 samples, 0.06%)</title><rect x="170" y="421" width="1" height="15" fill="rgb(231,168,24)"/><text text-anchor="left" x="173.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (28 samples, 1.63%)</title><rect x="152" y="581" width="19" height="15" fill="rgb(250,130,35)"/><text text-anchor="left" x="155.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (28 samples, 1.63%)</title><rect x="152" y="565" width="19" height="15" fill="rgb(218,88,45)"/><text text-anchor="left" x="155.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (27 samples, 1.57%)</title><rect x="153" y="549" width="18" height="15" fill="rgb(224,196,44)"/><text text-anchor="left" x="156.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (27 samples, 1.57%)</title><rect x="153" y="533" width="18" height="15" fill="rgb(232,47,31)"/><text text-anchor="left" x="156.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait (27 samples, 1.57%)</title><rect x="153" y="517" width="18" height="15" fill="rgb(210,220,0)"/><text text-anchor="left" x="156.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_queue_me (27 samples, 1.57%)</title><rect x="153" y="501" width="18" height="15" fill="rgb(220,185,19)"/><text text-anchor="left" x="156.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule (27 samples, 1.57%)</title><rect x="153" y="485" width="18" height="15" fill="rgb(213,221,41)"/><text text-anchor="left" x="156.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__schedule (27 samples, 1.57%)</title><rect x="153" y="469" width="18" height="15" fill="rgb(229,65,7)"/><text text-anchor="left" x="156.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pick_next_task_fair (1 samples, 0.06%)</title><rect x="171" y="453" width="0" height="15" fill="rgb(241,167,47)"/><text text-anchor="left" x="174.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>load_balance (1 samples, 0.06%)</title><rect x="171" y="437" width="0" height="15" fill="rgb(252,124,28)"/><text text-anchor="left" x="174.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>find_busiest_group (1 samples, 0.06%)</title><rect x="171" y="421" width="0" height="15" fill="rgb(217,52,25)"/><text text-anchor="left" x="174.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>update_nohz_stats (1 samples, 0.06%)</title><rect x="171" y="405" width="0" height="15" fill="rgb(233,4,8)"/><text text-anchor="left" x="174.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>update_blocked_averages (1 samples, 0.06%)</title><rect x="171" y="389" width="0" height="15" fill="rgb(238,91,13)"/><text text-anchor="left" x="174.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irqsave (1 samples, 0.06%)</title><rect x="171" y="373" width="0" height="15" fill="rgb(206,207,24)"/><text text-anchor="left" x="174.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_queued_spin_lock_slowpath (1 samples, 0.06%)</title><rect x="171" y="357" width="0" height="15" fill="rgb(207,133,36)"/><text text-anchor="left" x="174.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_mutex_cond_lock (32 samples, 1.86%)</title><rect x="150" y="613" width="22" height="15" fill="rgb(244,171,42)"/><text text-anchor="left" x="153.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__lll_lock_wait (32 samples, 1.86%)</title><rect x="150" y="597" width="22" height="15" fill="rgb(219,15,32)"/><text text-anchor="left" x="153.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>syscall_return_via_sysret (1 samples, 0.06%)</title><rect x="171" y="581" width="1" height="15" fill="rgb(227,81,28)"/><text text-anchor="left" x="174.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_futex_key (1 samples, 0.06%)</title><rect x="174" y="501" width="1" height="15" fill="rgb(224,21,20)"/><text text-anchor="left" x="177.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_futex_key_refs.isra.15 (1 samples, 0.06%)</title><rect x="174" y="485" width="1" height="15" fill="rgb(227,122,35)"/><text text-anchor="left" x="177.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_mutex_unlock_usercnt (5 samples, 0.29%)</title><rect x="172" y="613" width="3" height="15" fill="rgb(239,158,12)"/><text text-anchor="left" x="175.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__lll_unlock_wake (5 samples, 0.29%)</title><rect x="172" y="597" width="3" height="15" fill="rgb(211,26,38)"/><text text-anchor="left" x="175.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.29%)</title><rect x="172" y="581" width="3" height="15" fill="rgb(249,192,32)"/><text text-anchor="left" x="175.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (4 samples, 0.23%)</title><rect x="173" y="565" width="2" height="15" fill="rgb(230,14,46)"/><text text-anchor="left" x="176.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (4 samples, 0.23%)</title><rect x="173" y="549" width="2" height="15" fill="rgb(237,15,47)"/><text text-anchor="left" x="176.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (4 samples, 0.23%)</title><rect x="173" y="533" width="2" height="15" fill="rgb(205,115,26)"/><text text-anchor="left" x="176.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wake (4 samples, 0.23%)</title><rect x="173" y="517" width="2" height="15" fill="rgb(223,195,42)"/><text text-anchor="left" x="176.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hash_futex (1 samples, 0.06%)</title><rect x="175" y="501" width="0" height="15" fill="rgb(237,189,12)"/><text text-anchor="left" x="178.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_pthread_cleanup_pop (1 samples, 0.06%)</title><rect x="175" y="613" width="1" height="15" fill="rgb(217,114,28)"/><text text-anchor="left" x="178.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__entry_trampoline_start (2 samples, 0.12%)</title><rect x="178" y="597" width="2" height="15" fill="rgb(217,128,33)"/><text text-anchor="left" x="181.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_disable_asynccancel (2 samples, 0.12%)</title><rect x="180" y="597" width="1" height="15" fill="rgb(252,116,28)"/><text text-anchor="left" x="183.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>drop_futex_key_refs.isra.16 (1 samples, 0.06%)</title><rect x="184" y="517" width="0" height="15" fill="rgb(245,5,51)"/><text text-anchor="left" x="187.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_cond_resched (1 samples, 0.06%)</title><rect x="185" y="501" width="1" height="15" fill="rgb(243,129,49)"/><text text-anchor="left" x="188.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rcu_all_qs (1 samples, 0.06%)</title><rect x="185" y="485" width="1" height="15" fill="rgb(214,27,6)"/><text text-anchor="left" x="188.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>plist_add (1 samples, 0.06%)</title><rect x="186" y="501" width="0" height="15" fill="rgb(222,158,49)"/><text text-anchor="left" x="189.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_out (1 samples, 0.06%)</title><rect x="186" y="469" width="1" height="15" fill="rgb(205,127,54)"/><text text-anchor="left" x="189.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ctx_sched_out (1 samples, 0.06%)</title><rect x="186" y="453" width="1" height="15" fill="rgb(229,57,49)"/><text text-anchor="left" x="189.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="186" y="437" width="1" height="15" fill="rgb(235,162,12)"/><text text-anchor="left" x="189.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="186" y="421" width="1" height="15" fill="rgb(230,177,7)"/><text text-anchor="left" x="189.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (1 samples, 0.06%)</title><rect x="186" y="405" width="1" height="15" fill="rgb(208,4,2)"/><text text-anchor="left" x="189.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock (1 samples, 0.06%)</title><rect x="187" y="469" width="1" height="15" fill="rgb(243,29,18)"/><text text-anchor="left" x="190.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dequeue_task_fair (1 samples, 0.06%)</title><rect x="188" y="469" width="0" height="15" fill="rgb(254,46,10)"/><text text-anchor="left" x="191.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dequeue_entity (1 samples, 0.06%)</title><rect x="188" y="453" width="0" height="15" fill="rgb(209,84,30)"/><text text-anchor="left" x="191.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>update_curr (1 samples, 0.06%)</title><rect x="188" y="437" width="0" height="15" fill="rgb(251,214,2)"/><text text-anchor="left" x="191.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (399 samples, 23.18%)</title><rect x="194" y="437" width="274" height="15" fill="rgb(253,69,41)"/><text text-anchor="left" x="197.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__intel_pmu_enable_all.constprop.25</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (399 samples, 23.18%)</title><rect x="194" y="421" width="274" height="15" fill="rgb(236,193,38)"/><text text-anchor="left" x="197.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">native_write_msr</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock (2 samples, 0.12%)</title><rect x="469" y="421" width="1" height="15" fill="rgb(230,139,35)"/><text text-anchor="left" x="472.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (409 samples, 23.77%)</title><rect x="191" y="453" width="281" height="15" fill="rgb(250,62,25)"/><text text-anchor="left" x="194.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__perf_event_task_sched_in</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (6 samples, 0.35%)</title><rect x="468" y="437" width="4" height="15" fill="rgb(241,55,12)"/><text text-anchor="left" x="471.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (2 samples, 0.12%)</title><rect x="470" y="421" width="2" height="15" fill="rgb(234,161,39)"/><text text-anchor="left" x="473.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (2 samples, 0.12%)</title><rect x="470" y="405" width="2" height="15" fill="rgb(209,184,33)"/><text text-anchor="left" x="473.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (2 samples, 0.12%)</title><rect x="470" y="389" width="2" height="15" fill="rgb(254,224,32)"/><text text-anchor="left" x="473.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_unlock_irqrestore (1 samples, 0.06%)</title><rect x="472" y="453" width="0" height="15" fill="rgb(232,171,15)"/><text text-anchor="left" x="475.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>irq_enter (1 samples, 0.06%)</title><rect x="473" y="421" width="1" height="15" fill="rgb(217,150,39)"/><text text-anchor="left" x="476.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__wake_up_common (3 samples, 0.17%)</title><rect x="474" y="341" width="2" height="15" fill="rgb(223,196,2)"/><text text-anchor="left" x="477.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pollwake (1 samples, 0.06%)</title><rect x="475" y="325" width="1" height="15" fill="rgb(207,166,31)"/><text text-anchor="left" x="478.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>try_to_wake_up (1 samples, 0.06%)</title><rect x="475" y="309" width="1" height="15" fill="rgb(211,114,18)"/><text text-anchor="left" x="478.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ttwu_do_activate (1 samples, 0.06%)</title><rect x="475" y="293" width="1" height="15" fill="rgb(213,168,30)"/><text text-anchor="left" x="478.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>enqueue_task_fair (1 samples, 0.06%)</title><rect x="475" y="277" width="1" height="15" fill="rgb(253,144,54)"/><text text-anchor="left" x="478.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>enqueue_entity (1 samples, 0.06%)</title><rect x="475" y="261" width="1" height="15" fill="rgb(241,178,30)"/><text text-anchor="left" x="478.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_queue_me (426 samples, 24.75%)</title><rect x="184" y="517" width="292" height="15" fill="rgb(219,57,3)"/><text text-anchor="left" x="187.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">futex_wait_queue_me</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule (423 samples, 24.58%)</title><rect x="186" y="501" width="290" height="15" fill="rgb(217,164,44)"/><text text-anchor="left" x="189.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">schedule</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__schedule (423 samples, 24.58%)</title><rect x="186" y="485" width="290" height="15" fill="rgb(248,140,0)"/><text text-anchor="left" x="189.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__schedule</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (420 samples, 24.40%)</title><rect x="188" y="469" width="288" height="15" fill="rgb(251,180,36)"/><text text-anchor="left" x="191.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">finish_task_switch</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>irq_work_interrupt (6 samples, 0.35%)</title><rect x="472" y="453" width="4" height="15" fill="rgb(226,52,17)"/><text text-anchor="left" x="475.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>smp_irq_work_interrupt (5 samples, 0.29%)</title><rect x="473" y="437" width="3" height="15" fill="rgb(229,151,22)"/><text text-anchor="left" x="476.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>irq_work_run (4 samples, 0.23%)</title><rect x="474" y="421" width="2" height="15" fill="rgb(228,159,17)"/><text text-anchor="left" x="477.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>irq_work_run_list (4 samples, 0.23%)</title><rect x="474" y="405" width="2" height="15" fill="rgb(209,175,17)"/><text text-anchor="left" x="477.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pending_event (4 samples, 0.23%)</title><rect x="474" y="389" width="2" height="15" fill="rgb(253,188,1)"/><text text-anchor="left" x="477.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_event_wakeup (4 samples, 0.23%)</title><rect x="474" y="373" width="2" height="15" fill="rgb(220,227,44)"/><text text-anchor="left" x="477.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__wake_up_common_lock (4 samples, 0.23%)</title><rect x="474" y="357" width="2" height="15" fill="rgb(214,106,45)"/><text text-anchor="left" x="477.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irqsave (1 samples, 0.06%)</title><rect x="476" y="341" width="0" height="15" fill="rgb(210,122,12)"/><text text-anchor="left" x="479.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_futex (430 samples, 24.99%)</title><rect x="183" y="565" width="295" height="15" fill="rgb(235,176,15)"/><text text-anchor="left" x="186.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__x64_sys_futex</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_futex (430 samples, 24.99%)</title><rect x="183" y="549" width="295" height="15" fill="rgb(222,215,18)"/><text text-anchor="left" x="186.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">do_futex</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait (429 samples, 24.93%)</title><rect x="184" y="533" width="294" height="15" fill="rgb(254,187,18)"/><text text-anchor="left" x="187.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">futex_wait</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_setup (2 samples, 0.12%)</title><rect x="476" y="517" width="2" height="15" fill="rgb(217,59,29)"/><text text-anchor="left" x="479.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_futex_value_locked (1 samples, 0.06%)</title><rect x="477" y="501" width="1" height="15" fill="rgb(238,36,22)"/><text text-anchor="left" x="480.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irq (1 samples, 0.06%)</title><rect x="478" y="517" width="0" height="15" fill="rgb(221,87,31)"/><text text-anchor="left" x="481.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_queued_spin_lock_slowpath (1 samples, 0.06%)</title><rect x="478" y="501" width="0" height="15" fill="rgb(220,9,24)"/><text text-anchor="left" x="481.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>acct_collect (1 samples, 0.06%)</title><rect x="479" y="485" width="1" height="15" fill="rgb(209,182,2)"/><text text-anchor="left" x="482.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_raw_spin_lock_irq (1 samples, 0.06%)</title><rect x="479" y="469" width="1" height="15" fill="rgb(241,137,5)"/><text text-anchor="left" x="482.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_queued_spin_lock_slowpath (1 samples, 0.06%)</title><rect x="479" y="453" width="1" height="15" fill="rgb(221,202,9)"/><text text-anchor="left" x="482.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (437 samples, 25.39%)</title><rect x="181" y="597" width="300" height="15" fill="rgb(229,14,4)"/><text text-anchor="left" x="184.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">entry_SYSCALL_64_after_hwframe</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (436 samples, 25.33%)</title><rect x="182" y="581" width="299" height="15" fill="rgb(216,5,42)"/><text text-anchor="left" x="185.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">do_syscall_64</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>exit_to_usermode_loop (4 samples, 0.23%)</title><rect x="478" y="565" width="3" height="15" fill="rgb(207,49,15)"/><text text-anchor="left" x="481.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_signal (4 samples, 0.23%)</title><rect x="478" y="549" width="3" height="15" fill="rgb(246,105,27)"/><text text-anchor="left" x="481.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_signal (4 samples, 0.23%)</title><rect x="478" y="533" width="3" height="15" fill="rgb(230,125,38)"/><text text-anchor="left" x="481.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_group_exit (3 samples, 0.17%)</title><rect x="478" y="517" width="3" height="15" fill="rgb(240,49,2)"/><text text-anchor="left" x="481.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_exit (2 samples, 0.12%)</title><rect x="479" y="501" width="2" height="15" fill="rgb(240,102,9)"/><text text-anchor="left" x="482.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>mm_release (1 samples, 0.06%)</title><rect x="480" y="485" width="1" height="15" fill="rgb(212,68,43)"/><text text-anchor="left" x="483.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::condition_variable::wait (497 samples, 28.88%)</title><rect x="145" y="661" width="340" height="15" fill="rgb(249,98,8)"/><text text-anchor="left" x="148.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">std::condition_variable::wait</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_cond_wait (496 samples, 28.82%)</title><rect x="145" y="645" width="340" height="15" fill="rgb(212,222,38)"/><text text-anchor="left" x="148.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__pthread_cond_wait</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_cond_wait_common (496 samples, 28.82%)</title><rect x="145" y="629" width="340" height="15" fill="rgb(230,137,20)"/><text text-anchor="left" x="148.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__pthread_cond_wait_common</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>futex_wait_cancelable (451 samples, 26.21%)</title><rect x="176" y="613" width="309" height="15" fill="rgb(235,161,23)"/><text text-anchor="left" x="179.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">futex_wait_cancelable</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>syscall_return_via_sysret (7 samples, 0.41%)</title><rect x="481" y="597" width="4" height="15" fill="rgb(235,159,37)"/><text text-anchor="left" x="484.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::condition_variable::wait@plt (1 samples, 0.06%)</title><rect x="485" y="661" width="1" height="15" fill="rgb(252,136,43)"/><text text-anchor="left" x="488.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[libstdc++.so.6.0.25] (535 samples, 31.09%)</title><rect x="120" y="693" width="367" height="15" fill="rgb(210,121,45)"/><text text-anchor="left" x="123.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">[libstdc++.so.6.0.25]</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[lld] (535 samples, 31.09%)</title><rect x="120" y="677" width="367" height="15" fill="rgb(249,147,21)"/><text text-anchor="left" x="123.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">[lld]</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::thread::_M_start_thread (1 samples, 0.06%)</title><rect x="486" y="661" width="1" height="15" fill="rgb(246,84,48)"/><text text-anchor="left" x="489.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_create_2_1 (1 samples, 0.06%)</title><rect x="486" y="645" width="1" height="15" fill="rgb(227,23,0)"/><text text-anchor="left" x="489.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>allocate_stack (1 samples, 0.06%)</title><rect x="486" y="629" width="1" height="15" fill="rgb(218,86,46)"/><text text-anchor="left" x="489.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="486" y="613" width="1" height="15" fill="rgb(221,99,33)"/><text text-anchor="left" x="489.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="486" y="597" width="1" height="15" fill="rgb(235,61,52)"/><text text-anchor="left" x="489.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>handle_mm_fault (1 samples, 0.06%)</title><rect x="486" y="581" width="1" height="15" fill="rgb(242,144,40)"/><text text-anchor="left" x="489.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__handle_mm_fault (1 samples, 0.06%)</title><rect x="486" y="565" width="1" height="15" fill="rgb(205,115,25)"/><text text-anchor="left" x="489.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_huge_pmd_anonymous_page (1 samples, 0.06%)</title><rect x="486" y="549" width="1" height="15" fill="rgb(213,167,25)"/><text text-anchor="left" x="489.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_huge_page (1 samples, 0.06%)</title><rect x="486" y="533" width="1" height="15" fill="rgb(250,77,0)"/><text text-anchor="left" x="489.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_subpage (1 samples, 0.06%)</title><rect x="486" y="517" width="1" height="15" fill="rgb(234,153,52)"/><text text-anchor="left" x="489.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_page_rep (1 samples, 0.06%)</title><rect x="486" y="501" width="1" height="15" fill="rgb(243,75,28)"/><text text-anchor="left" x="489.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>start_thread (536 samples, 31.14%)</title><rect x="120" y="709" width="367" height="15" fill="rgb(213,22,5)"/><text text-anchor="left" x="123.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">start_thread</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___ctype_init (1 samples, 0.06%)</title><rect x="487" y="693" width="0" height="15" fill="rgb(220,192,16)"/><text text-anchor="left" x="490.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___clone (683 samples, 39.69%)</title><rect x="20" y="725" width="468" height="15" fill="rgb(244,79,12)"/><text text-anchor="left" x="23.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__GI___clone</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.06%)</title><rect x="487" y="709" width="1" height="15" fill="rgb(250,34,13)"/><text text-anchor="left" x="490.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__entry_trampoline_start (1 samples, 0.06%)</title><rect x="488" y="725" width="1" height="15" fill="rgb(238,120,53)"/><text text-anchor="left" x="491.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_start (1 samples, 0.06%)</title><rect x="489" y="725" width="0" height="15" fill="rgb(232,27,43)"/><text text-anchor="left" x="492.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_start (1 samples, 0.06%)</title><rect x="489" y="709" width="0" height="15" fill="rgb(223,220,1)"/><text text-anchor="left" x="492.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_start_final (1 samples, 0.06%)</title><rect x="489" y="693" width="0" height="15" fill="rgb(213,86,36)"/><text text-anchor="left" x="492.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_sysdep_start (1 samples, 0.06%)</title><rect x="489" y="677" width="0" height="15" fill="rgb(223,43,9)"/><text text-anchor="left" x="492.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dl_main (1 samples, 0.06%)</title><rect x="489" y="661" width="0" height="15" fill="rgb(231,85,6)"/><text text-anchor="left" x="492.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_object_deps (1 samples, 0.06%)</title><rect x="489" y="645" width="0" height="15" fill="rgb(236,108,54)"/><text text-anchor="left" x="492.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_catch_exception (1 samples, 0.06%)</title><rect x="489" y="629" width="0" height="15" fill="rgb(208,146,15)"/><text text-anchor="left" x="492.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>openaux (1 samples, 0.06%)</title><rect x="489" y="613" width="0" height="15" fill="rgb(232,25,28)"/><text text-anchor="left" x="492.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_object (1 samples, 0.06%)</title><rect x="489" y="597" width="0" height="15" fill="rgb(221,206,2)"/><text text-anchor="left" x="492.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>open_path (1 samples, 0.06%)</title><rect x="489" y="581" width="0" height="15" fill="rgb(220,50,17)"/><text text-anchor="left" x="492.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>open_verify (1 samples, 0.06%)</title><rect x="489" y="565" width="0" height="15" fill="rgb(246,206,51)"/><text text-anchor="left" x="492.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___open64_nocancel (1 samples, 0.06%)</title><rect x="489" y="549" width="0" height="15" fill="rgb(250,115,27)"/><text text-anchor="left" x="492.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="489" y="533" width="0" height="15" fill="rgb(215,50,41)"/><text text-anchor="left" x="492.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="489" y="517" width="0" height="15" fill="rgb(241,211,44)"/><text text-anchor="left" x="492.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_sys_open (1 samples, 0.06%)</title><rect x="489" y="501" width="0" height="15" fill="rgb(217,201,52)"/><text text-anchor="left" x="492.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_filp_open (1 samples, 0.06%)</title><rect x="489" y="485" width="0" height="15" fill="rgb(209,12,3)"/><text text-anchor="left" x="492.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>path_openat (1 samples, 0.06%)</title><rect x="489" y="469" width="0" height="15" fill="rgb(235,4,3)"/><text text-anchor="left" x="492.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>alloc_empty_file (1 samples, 0.06%)</title><rect x="489" y="453" width="0" height="15" fill="rgb(253,215,21)"/><text text-anchor="left" x="492.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__alloc_file (1 samples, 0.06%)</title><rect x="489" y="437" width="0" height="15" fill="rgb(205,216,17)"/><text text-anchor="left" x="492.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="489" y="725" width="1" height="15" fill="rgb(205,20,25)"/><text text-anchor="left" x="492.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="489" y="709" width="1" height="15" fill="rgb(250,102,10)"/><text text-anchor="left" x="492.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>exit_to_usermode_loop (1 samples, 0.06%)</title><rect x="489" y="693" width="1" height="15" fill="rgb(228,87,52)"/><text text-anchor="left" x="492.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_signal (1 samples, 0.06%)</title><rect x="489" y="677" width="1" height="15" fill="rgb(219,72,6)"/><text text-anchor="left" x="492.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>get_signal (1 samples, 0.06%)</title><rect x="489" y="661" width="1" height="15" fill="rgb(240,66,16)"/><text text-anchor="left" x="492.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_group_exit (1 samples, 0.06%)</title><rect x="489" y="645" width="1" height="15" fill="rgb(212,15,20)"/><text text-anchor="left" x="492.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_exit (1 samples, 0.06%)</title><rect x="489" y="629" width="1" height="15" fill="rgb(248,120,9)"/><text text-anchor="left" x="492.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>mmput (1 samples, 0.06%)</title><rect x="489" y="613" width="1" height="15" fill="rgb(224,128,34)"/><text text-anchor="left" x="492.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>exit_mmap (1 samples, 0.06%)</title><rect x="489" y="597" width="1" height="15" fill="rgb(247,40,43)"/><text text-anchor="left" x="492.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>unmap_vmas (1 samples, 0.06%)</title><rect x="489" y="581" width="1" height="15" fill="rgb(234,109,35)"/><text text-anchor="left" x="492.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>unmap_page_range (1 samples, 0.06%)</title><rect x="489" y="565" width="1" height="15" fill="rgb(249,178,8)"/><text text-anchor="left" x="492.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ld (698 samples, 40.56%)</title><rect x="13" y="741" width="479" height="15" fill="rgb(233,37,22)"/><text text-anchor="left" x="16.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ld</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_stage2 (2 samples, 0.12%)</title><rect x="490" y="725" width="2" height="15" fill="rgb(233,102,33)"/><text text-anchor="left" x="493.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_4.19 (5 samples, 0.29%)</title><rect x="492" y="741" width="3" height="15" fill="rgb(221,86,50)"/><text text-anchor="left" x="495.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (5 samples, 0.29%)</title><rect x="492" y="725" width="3" height="15" fill="rgb(235,192,19)"/><text text-anchor="left" x="495.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (5 samples, 0.29%)</title><rect x="492" y="709" width="3" height="15" fill="rgb(244,58,3)"/><text text-anchor="left" x="495.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_execve (5 samples, 0.29%)</title><rect x="492" y="693" width="3" height="15" fill="rgb(229,151,35)"/><text text-anchor="left" x="495.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_execve_file.isra.36 (5 samples, 0.29%)</title><rect x="492" y="677" width="3" height="15" fill="rgb(230,36,14)"/><text text-anchor="left" x="495.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>search_binary_handler (5 samples, 0.29%)</title><rect x="492" y="661" width="3" height="15" fill="rgb(217,172,53)"/><text text-anchor="left" x="495.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>load_elf_binary (5 samples, 0.29%)</title><rect x="492" y="645" width="3" height="15" fill="rgb(238,161,42)"/><text text-anchor="left" x="495.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>setup_new_exec (5 samples, 0.29%)</title><rect x="492" y="629" width="3" height="15" fill="rgb(254,216,11)"/><text text-anchor="left" x="495.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_event_exec (5 samples, 0.29%)</title><rect x="492" y="613" width="3" height="15" fill="rgb(220,180,54)"/><text text-anchor="left" x="495.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (5 samples, 0.29%)</title><rect x="492" y="597" width="3" height="15" fill="rgb(213,225,8)"/><text text-anchor="left" x="495.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (5 samples, 0.29%)</title><rect x="492" y="581" width="3" height="15" fill="rgb(219,102,16)"/><text text-anchor="left" x="495.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (4 samples, 0.23%)</title><rect x="495" y="725" width="3" height="15" fill="rgb(212,47,8)"/><text text-anchor="left" x="498.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (12 samples, 0.70%)</title><rect x="498" y="709" width="8" height="15" fill="rgb(209,7,54)"/><text text-anchor="left" x="501.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T,I&gt;&gt;::from_iter (7 samples, 0.41%)</title><rect x="506" y="709" width="5" height="15" fill="rgb(234,198,44)"/><text text-anchor="left" x="509.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (10 samples, 0.58%)</title><rect x="511" y="709" width="7" height="15" fill="rgb(242,188,39)"/><text text-anchor="left" x="514.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (3 samples, 0.17%)</title><rect x="518" y="709" width="2" height="15" fill="rgb(208,158,39)"/><text text-anchor="left" x="521.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::TyKind as core::hash::Hash&gt;::hash (1 samples, 0.06%)</title><rect x="520" y="709" width="0" height="15" fill="rgb(239,191,2)"/><text text-anchor="left" x="523.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as core::convert::From&lt;&amp;rustc::ty::TyS&gt;&gt;::from (2 samples, 0.12%)</title><rect x="520" y="709" width="2" height="15" fill="rgb(249,149,4)"/><text text-anchor="left" x="523.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::RawEntryBuilderMut&lt;K,V,S&gt;::from_hash (3 samples, 0.17%)</title><rect x="522" y="709" width="2" height="15" fill="rgb(245,124,50)"/><text text-anchor="left" x="525.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::ShallowResolver::shallow_resolve (6 samples, 0.35%)</title><rect x="524" y="709" width="4" height="15" fill="rgb(240,111,31)"/><text text-anchor="left" x="527.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (12 samples, 0.70%)</title><rect x="528" y="709" width="8" height="15" fill="rgb(242,94,7)"/><text text-anchor="left" x="531.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::Variance::xform (4 samples, 0.23%)</title><rect x="536" y="709" width="3" height="15" fill="rgb(247,21,34)"/><text text-anchor="left" x="539.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (7 samples, 0.41%)</title><rect x="539" y="709" width="5" height="15" fill="rgb(252,105,50)"/><text text-anchor="left" x="542.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::_intern_type_list (3 samples, 0.17%)</title><rect x="544" y="709" width="2" height="15" fill="rgb(213,80,5)"/><text text-anchor="left" x="547.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::mk_tup::_$u7b$$u7b$closure$u7d$$u7d$::hf248cba171c40224 (2 samples, 0.12%)</title><rect x="546" y="709" width="1" height="15" fill="rgb(230,122,20)"/><text text-anchor="left" x="549.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (5 samples, 0.29%)</title><rect x="547" y="709" width="3" height="15" fill="rgb(211,43,35)"/><text text-anchor="left" x="550.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (9 samples, 0.52%)</title><rect x="550" y="709" width="7" height="15" fill="rgb(241,108,5)"/><text text-anchor="left" x="553.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="557" y="709" width="15" height="15" fill="rgb(240,213,1)"/><text text-anchor="left" x="560.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::Binder&lt;T&gt;::map_bound_ref (4 samples, 0.23%)</title><rect x="572" y="709" width="2" height="15" fill="rgb(214,133,43)"/><text text-anchor="left" x="575.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::FnSig::output (3 samples, 0.17%)</title><rect x="574" y="709" width="3" height="15" fill="rgb(244,218,36)"/><text text-anchor="left" x="577.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[anon] (116 samples, 6.74%)</title><rect x="498" y="725" width="79" height="15" fill="rgb(219,186,53)"/><text text-anchor="left" x="501.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">[anon]</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>start_thread (1 samples, 0.06%)</title><rect x="577" y="709" width="0" height="15" fill="rgb(248,163,4)"/><text text-anchor="left" x="580.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::Binder&lt;T&gt;::map_bound_ref (1 samples, 0.06%)</title><rect x="601" y="245" width="0" height="15" fill="rgb(218,201,0)"/><text text-anchor="left" x="604.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (42 samples, 2.44%)</title><rect x="580" y="261" width="29" height="15" fill="rgb(228,47,26)"/><text text-anchor="left" x="583.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::FnSig::output (11 samples, 0.64%)</title><rect x="601" y="245" width="8" height="15" fill="rgb(214,4,16)"/><text text-anchor="left" x="604.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (4 samples, 0.23%)</title><rect x="649" y="133" width="2" height="15" fill="rgb(254,140,34)"/><text text-anchor="left" x="652.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (4 samples, 0.23%)</title><rect x="649" y="117" width="2" height="15" fill="rgb(249,226,3)"/><text text-anchor="left" x="652.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (23 samples, 1.34%)</title><rect x="636" y="197" width="16" height="15" fill="rgb(252,12,44)"/><text text-anchor="left" x="639.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (15 samples, 0.87%)</title><rect x="642" y="181" width="10" height="15" fill="rgb(251,128,20)"/><text text-anchor="left" x="645.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (10 samples, 0.58%)</title><rect x="645" y="165" width="7" height="15" fill="rgb(216,6,37)"/><text text-anchor="left" x="648.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (6 samples, 0.35%)</title><rect x="648" y="149" width="4" height="15" fill="rgb(236,204,53)"/><text text-anchor="left" x="651.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_out (1 samples, 0.06%)</title><rect x="651" y="133" width="1" height="15" fill="rgb(233,90,24)"/><text text-anchor="left" x="654.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_in (1 samples, 0.06%)</title><rect x="652" y="197" width="1" height="15" fill="rgb(219,72,42)"/><text text-anchor="left" x="655.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_out (1 samples, 0.06%)</title><rect x="653" y="197" width="0" height="15" fill="rgb(233,168,43)"/><text text-anchor="left" x="656.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (50 samples, 2.91%)</title><rect x="620" y="229" width="34" height="15" fill="rgb(230,22,49)"/><text text-anchor="left" x="623.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (32 samples, 1.86%)</title><rect x="632" y="213" width="22" height="15" fill="rgb(230,204,26)"/><text text-anchor="left" x="635.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.06%)</title><rect x="653" y="197" width="1" height="15" fill="rgb(248,120,10)"/><text text-anchor="left" x="656.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (111 samples, 6.45%)</title><rect x="580" y="693" width="76" height="15" fill="rgb(213,78,2)"/><text text-anchor="left" x="583.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (111 samples, 6.45%)</title><rect x="580" y="677" width="76" height="15" fill="rgb(225,99,18)"/><text text-anchor="left" x="583.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (111 samples, 6.45%)</title><rect x="580" y="661" width="76" height="15" fill="rgb(221,68,13)"/><text text-anchor="left" x="583.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::i..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (111 samples, 6.45%)</title><rect x="580" y="645" width="76" height="15" fill="rgb(245,100,26)"/><text text-anchor="left" x="583.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (111 samples, 6.45%)</title><rect x="580" y="629" width="76" height="15" fill="rgb(215,141,8)"/><text text-anchor="left" x="583.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (111 samples, 6.45%)</title><rect x="580" y="613" width="76" height="15" fill="rgb(229,48,39)"/><text text-anchor="left" x="583.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (111 samples, 6.45%)</title><rect x="580" y="597" width="76" height="15" fill="rgb(253,176,32)"/><text text-anchor="left" x="583.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (111 samples, 6.45%)</title><rect x="580" y="581" width="76" height="15" fill="rgb(243,145,18)"/><text text-anchor="left" x="583.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (111 samples, 6.45%)</title><rect x="580" y="565" width="76" height="15" fill="rgb(225,50,31)"/><text text-anchor="left" x="583.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::i..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (111 samples, 6.45%)</title><rect x="580" y="549" width="76" height="15" fill="rgb(205,41,0)"/><text text-anchor="left" x="583.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (111 samples, 6.45%)</title><rect x="580" y="533" width="76" height="15" fill="rgb(219,194,29)"/><text text-anchor="left" x="583.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (111 samples, 6.45%)</title><rect x="580" y="517" width="76" height="15" fill="rgb(225,101,53)"/><text text-anchor="left" x="583.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (111 samples, 6.45%)</title><rect x="580" y="501" width="76" height="15" fill="rgb(207,94,24)"/><text text-anchor="left" x="583.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (111 samples, 6.45%)</title><rect x="580" y="485" width="76" height="15" fill="rgb(245,28,4)"/><text text-anchor="left" x="583.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::i..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (111 samples, 6.45%)</title><rect x="580" y="469" width="76" height="15" fill="rgb(207,173,20)"/><text text-anchor="left" x="583.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (111 samples, 6.45%)</title><rect x="580" y="453" width="76" height="15" fill="rgb(254,66,21)"/><text text-anchor="left" x="583.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (111 samples, 6.45%)</title><rect x="580" y="437" width="76" height="15" fill="rgb(246,122,5)"/><text text-anchor="left" x="583.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (111 samples, 6.45%)</title><rect x="580" y="421" width="76" height="15" fill="rgb(219,60,51)"/><text text-anchor="left" x="583.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (111 samples, 6.45%)</title><rect x="580" y="405" width="76" height="15" fill="rgb(243,78,30)"/><text text-anchor="left" x="583.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (111 samples, 6.45%)</title><rect x="580" y="389" width="76" height="15" fill="rgb(231,171,12)"/><text text-anchor="left" x="583.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::i..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (111 samples, 6.45%)</title><rect x="580" y="373" width="76" height="15" fill="rgb(224,82,54)"/><text text-anchor="left" x="583.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (111 samples, 6.45%)</title><rect x="580" y="357" width="76" height="15" fill="rgb(231,43,24)"/><text text-anchor="left" x="583.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (111 samples, 6.45%)</title><rect x="580" y="341" width="76" height="15" fill="rgb(250,24,4)"/><text text-anchor="left" x="583.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (111 samples, 6.45%)</title><rect x="580" y="325" width="76" height="15" fill="rgb(205,134,47)"/><text text-anchor="left" x="583.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (111 samples, 6.45%)</title><rect x="580" y="309" width="76" height="15" fill="rgb(253,156,14)"/><text text-anchor="left" x="583.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::i..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (111 samples, 6.45%)</title><rect x="580" y="293" width="76" height="15" fill="rgb(254,52,46)"/><text text-anchor="left" x="583.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (111 samples, 6.45%)</title><rect x="580" y="277" width="76" height="15" fill="rgb(223,67,22)"/><text text-anchor="left" x="583.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (69 samples, 4.01%)</title><rect x="609" y="261" width="47" height="15" fill="rgb(209,142,20)"/><text text-anchor="left" x="612.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (69 samples, 4.01%)</title><rect x="609" y="245" width="47" height="15" fill="rgb(209,61,47)"/><text text-anchor="left" x="612.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_out (3 samples, 0.17%)</title><rect x="654" y="229" width="2" height="15" fill="rgb(206,86,53)"/><text text-anchor="left" x="657.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::ShallowResolver as rustc::ty::fold::TypeFolder&gt;::fold_ty (1 samples, 0.06%)</title><rect x="689" y="245" width="1" height="15" fill="rgb(254,123,52)"/><text text-anchor="left" x="692.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::ShallowResolver::shallow_resolve (1 samples, 0.06%)</title><rect x="690" y="245" width="0" height="15" fill="rgb(227,44,11)"/><text text-anchor="left" x="693.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (42 samples, 2.44%)</title><rect x="676" y="277" width="29" height="15" fill="rgb(224,48,12)"/><text text-anchor="left" x="679.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (30 samples, 1.74%)</title><rect x="684" y="261" width="21" height="15" fill="rgb(245,102,21)"/><text text-anchor="left" x="687.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (21 samples, 1.22%)</title><rect x="690" y="245" width="15" height="15" fill="rgb(219,19,35)"/><text text-anchor="left" x="693.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::Variance::xform (10 samples, 0.58%)</title><rect x="705" y="277" width="7" height="15" fill="rgb(208,147,23)"/><text text-anchor="left" x="708.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>apic_timer_interrupt (1 samples, 0.06%)</title><rect x="721" y="261" width="1" height="15" fill="rgb(221,118,48)"/><text text-anchor="left" x="724.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>smp_apic_timer_interrupt (1 samples, 0.06%)</title><rect x="721" y="245" width="1" height="15" fill="rgb(242,195,25)"/><text text-anchor="left" x="724.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hrtimer_interrupt (1 samples, 0.06%)</title><rect x="721" y="229" width="1" height="15" fill="rgb(225,20,33)"/><text text-anchor="left" x="724.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__hrtimer_run_queues (1 samples, 0.06%)</title><rect x="721" y="213" width="1" height="15" fill="rgb(219,5,4)"/><text text-anchor="left" x="724.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tick_sched_timer (1 samples, 0.06%)</title><rect x="721" y="197" width="1" height="15" fill="rgb(237,115,52)"/><text text-anchor="left" x="724.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tick_sched_handle (1 samples, 0.06%)</title><rect x="721" y="181" width="1" height="15" fill="rgb(238,78,33)"/><text text-anchor="left" x="724.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>update_process_times (1 samples, 0.06%)</title><rect x="721" y="165" width="1" height="15" fill="rgb(205,61,17)"/><text text-anchor="left" x="724.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>scheduler_tick (1 samples, 0.06%)</title><rect x="721" y="149" width="1" height="15" fill="rgb(208,113,33)"/><text text-anchor="left" x="724.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_event_task_tick (1 samples, 0.06%)</title><rect x="721" y="133" width="1" height="15" fill="rgb(241,17,15)"/><text text-anchor="left" x="724.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="721" y="117" width="1" height="15" fill="rgb(233,202,20)"/><text text-anchor="left" x="724.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="721" y="101" width="1" height="15" fill="rgb(235,79,27)"/><text text-anchor="left" x="724.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (1 samples, 0.06%)</title><rect x="721" y="85" width="1" height="15" fill="rgb(227,43,16)"/><text text-anchor="left" x="724.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::_intern_substs (17 samples, 0.99%)</title><rect x="712" y="277" width="11" height="15" fill="rgb(233,201,46)"/><text text-anchor="left" x="715.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::slice::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (2 samples, 0.12%)</title><rect x="722" y="261" width="1" height="15" fill="rgb(221,88,3)"/><text text-anchor="left" x="725.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::intern_substs (2 samples, 0.12%)</title><rect x="723" y="277" width="2" height="15" fill="rgb(214,185,37)"/><text text-anchor="left" x="726.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T,I&gt;&gt;::from_iter (33 samples, 1.92%)</title><rect x="730" y="261" width="23" height="15" fill="rgb(215,205,38)"/><text text-anchor="left" x="733.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::TyKind as core::hash::Hash&gt;::hash (11 samples, 0.64%)</title><rect x="765" y="245" width="8" height="15" fill="rgb(207,44,45)"/><text text-anchor="left" x="768.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (327 samples, 19.00%)</title><rect x="577" y="709" width="224" height="15" fill="rgb(244,135,52)"/><text text-anchor="left" x="580.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::context::Int..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (212 samples, 12.32%)</title><rect x="656" y="693" width="145" height="15" fill="rgb(205,17,21)"/><text text-anchor="left" x="659.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (212 samples, 12.32%)</title><rect x="656" y="677" width="145" height="15" fill="rgb(237,9,3)"/><text text-anchor="left" x="659.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::comb..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (212 samples, 12.32%)</title><rect x="656" y="661" width="145" height="15" fill="rgb(240,17,46)"/><text text-anchor="left" x="659.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (212 samples, 12.32%)</title><rect x="656" y="645" width="145" height="15" fill="rgb(231,229,37)"/><text text-anchor="left" x="659.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (212 samples, 12.32%)</title><rect x="656" y="629" width="145" height="15" fill="rgb(248,146,29)"/><text text-anchor="left" x="659.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::subst:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (212 samples, 12.32%)</title><rect x="656" y="613" width="145" height="15" fill="rgb(241,140,44)"/><text text-anchor="left" x="659.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (212 samples, 12.32%)</title><rect x="656" y="597" width="145" height="15" fill="rgb(214,89,14)"/><text text-anchor="left" x="659.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::comb..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (212 samples, 12.32%)</title><rect x="656" y="581" width="145" height="15" fill="rgb(235,128,14)"/><text text-anchor="left" x="659.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (212 samples, 12.32%)</title><rect x="656" y="565" width="145" height="15" fill="rgb(234,168,10)"/><text text-anchor="left" x="659.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::infer::nll..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (212 samples, 12.32%)</title><rect x="656" y="549" width="145" height="15" fill="rgb(235,140,7)"/><text text-anchor="left" x="659.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sty::F..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (212 samples, 12.32%)</title><rect x="656" y="533" width="145" height="15" fill="rgb(218,89,47)"/><text text-anchor="left" x="659.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (212 samples, 12.32%)</title><rect x="656" y="517" width="145" height="15" fill="rgb(216,58,31)"/><text text-anchor="left" x="659.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (212 samples, 12.32%)</title><rect x="656" y="501" width="145" height="15" fill="rgb(229,80,0)"/><text text-anchor="left" x="659.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::comb..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (212 samples, 12.32%)</title><rect x="656" y="485" width="145" height="15" fill="rgb(229,86,7)"/><text text-anchor="left" x="659.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (212 samples, 12.32%)</title><rect x="656" y="469" width="145" height="15" fill="rgb(245,100,50)"/><text text-anchor="left" x="659.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (212 samples, 12.32%)</title><rect x="656" y="453" width="145" height="15" fill="rgb(209,158,38)"/><text text-anchor="left" x="659.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::subst:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (212 samples, 12.32%)</title><rect x="656" y="437" width="145" height="15" fill="rgb(249,217,18)"/><text text-anchor="left" x="659.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (212 samples, 12.32%)</title><rect x="656" y="421" width="145" height="15" fill="rgb(232,178,8)"/><text text-anchor="left" x="659.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::comb..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (212 samples, 12.32%)</title><rect x="656" y="405" width="145" height="15" fill="rgb(207,131,4)"/><text text-anchor="left" x="659.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (212 samples, 12.32%)</title><rect x="656" y="389" width="145" height="15" fill="rgb(236,69,22)"/><text text-anchor="left" x="659.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::infer::nll..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (212 samples, 12.32%)</title><rect x="656" y="373" width="145" height="15" fill="rgb(250,82,20)"/><text text-anchor="left" x="659.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sty::F..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (212 samples, 12.32%)</title><rect x="656" y="357" width="145" height="15" fill="rgb(253,60,6)"/><text text-anchor="left" x="659.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (212 samples, 12.32%)</title><rect x="656" y="341" width="145" height="15" fill="rgb(235,58,51)"/><text text-anchor="left" x="659.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (212 samples, 12.32%)</title><rect x="656" y="325" width="145" height="15" fill="rgb(233,198,46)"/><text text-anchor="left" x="659.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::comb..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (212 samples, 12.32%)</title><rect x="656" y="309" width="145" height="15" fill="rgb(206,146,44)"/><text text-anchor="left" x="659.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relate:..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (212 samples, 12.32%)</title><rect x="656" y="293" width="145" height="15" fill="rgb(215,9,54)"/><text text-anchor="left" x="659.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::mk_tup::_$u7b$$u7b$closure$u7d$$u7d$::hf248cba171c40224 (112 samples, 6.51%)</title><rect x="725" y="277" width="76" height="15" fill="rgb(236,7,41)"/><text text-anchor="left" x="728.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::t..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (71 samples, 4.13%)</title><rect x="753" y="261" width="48" height="15" fill="rgb(237,13,25)"/><text text-anchor="left" x="756.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::RawEntryBuilderMut&lt;K,V,S&gt;::from_hash (42 samples, 2.44%)</title><rect x="773" y="245" width="28" height="15" fill="rgb(233,37,19)"/><text text-anchor="left" x="776.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">h..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;alloc::vec::Vec&lt;T&gt; as alloc::vec::SpecExtend&lt;T,I&gt;&gt;::from_iter (1 samples, 0.06%)</title><rect x="801" y="709" width="1" height="15" fill="rgb(243,144,16)"/><text text-anchor="left" x="804.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (50 samples, 2.91%)</title><rect x="802" y="709" width="34" height="15" fill="rgb(223,4,44)"/><text text-anchor="left" x="805.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (50 samples, 2.91%)</title><rect x="802" y="693" width="34" height="15" fill="rgb(247,100,41)"/><text text-anchor="left" x="805.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (50 samples, 2.91%)</title><rect x="802" y="677" width="34" height="15" fill="rgb(232,186,43)"/><text text-anchor="left" x="805.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (50 samples, 2.91%)</title><rect x="802" y="661" width="34" height="15" fill="rgb(211,164,36)"/><text text-anchor="left" x="805.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (50 samples, 2.91%)</title><rect x="802" y="645" width="34" height="15" fill="rgb(246,103,5)"/><text text-anchor="left" x="805.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (50 samples, 2.91%)</title><rect x="802" y="629" width="34" height="15" fill="rgb(253,149,7)"/><text text-anchor="left" x="805.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (50 samples, 2.91%)</title><rect x="802" y="613" width="34" height="15" fill="rgb(222,141,25)"/><text text-anchor="left" x="805.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (50 samples, 2.91%)</title><rect x="802" y="597" width="34" height="15" fill="rgb(223,163,29)"/><text text-anchor="left" x="805.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (50 samples, 2.91%)</title><rect x="802" y="581" width="34" height="15" fill="rgb(222,79,50)"/><text text-anchor="left" x="805.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (50 samples, 2.91%)</title><rect x="802" y="565" width="34" height="15" fill="rgb(213,143,8)"/><text text-anchor="left" x="805.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (50 samples, 2.91%)</title><rect x="802" y="549" width="34" height="15" fill="rgb(252,175,35)"/><text text-anchor="left" x="805.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (50 samples, 2.91%)</title><rect x="802" y="533" width="34" height="15" fill="rgb(225,177,5)"/><text text-anchor="left" x="805.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (50 samples, 2.91%)</title><rect x="802" y="517" width="34" height="15" fill="rgb(229,11,1)"/><text text-anchor="left" x="805.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (50 samples, 2.91%)</title><rect x="802" y="501" width="34" height="15" fill="rgb(210,195,5)"/><text text-anchor="left" x="805.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (50 samples, 2.91%)</title><rect x="802" y="485" width="34" height="15" fill="rgb(226,22,7)"/><text text-anchor="left" x="805.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (50 samples, 2.91%)</title><rect x="802" y="469" width="34" height="15" fill="rgb(249,109,20)"/><text text-anchor="left" x="805.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (50 samples, 2.91%)</title><rect x="802" y="453" width="34" height="15" fill="rgb(252,200,3)"/><text text-anchor="left" x="805.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (50 samples, 2.91%)</title><rect x="802" y="437" width="34" height="15" fill="rgb(222,110,30)"/><text text-anchor="left" x="805.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (50 samples, 2.91%)</title><rect x="802" y="421" width="34" height="15" fill="rgb(239,224,53)"/><text text-anchor="left" x="805.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (50 samples, 2.91%)</title><rect x="802" y="405" width="34" height="15" fill="rgb(225,136,24)"/><text text-anchor="left" x="805.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (50 samples, 2.91%)</title><rect x="802" y="389" width="34" height="15" fill="rgb(235,159,28)"/><text text-anchor="left" x="805.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (50 samples, 2.91%)</title><rect x="802" y="373" width="34" height="15" fill="rgb(217,200,30)"/><text text-anchor="left" x="805.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (50 samples, 2.91%)</title><rect x="802" y="357" width="34" height="15" fill="rgb(241,189,46)"/><text text-anchor="left" x="805.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (50 samples, 2.91%)</title><rect x="802" y="341" width="34" height="15" fill="rgb(206,5,27)"/><text text-anchor="left" x="805.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (50 samples, 2.91%)</title><rect x="802" y="325" width="34" height="15" fill="rgb(235,116,44)"/><text text-anchor="left" x="805.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (50 samples, 2.91%)</title><rect x="802" y="309" width="34" height="15" fill="rgb(238,151,48)"/><text text-anchor="left" x="805.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (50 samples, 2.91%)</title><rect x="802" y="293" width="34" height="15" fill="rgb(223,77,54)"/><text text-anchor="left" x="805.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (50 samples, 2.91%)</title><rect x="802" y="277" width="34" height="15" fill="rgb(244,98,50)"/><text text-anchor="left" x="805.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (5 samples, 0.29%)</title><rect x="833" y="261" width="3" height="15" fill="rgb(239,28,16)"/><text text-anchor="left" x="836.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::TyKind as core::hash::Hash&gt;::hash (7 samples, 0.41%)</title><rect x="841" y="261" width="4" height="15" fill="rgb(233,137,5)"/><text text-anchor="left" x="844.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (28 samples, 1.63%)</title><rect x="836" y="709" width="20" height="15" fill="rgb(216,210,3)"/><text text-anchor="left" x="839.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (22 samples, 1.28%)</title><rect x="841" y="693" width="15" height="15" fill="rgb(227,82,12)"/><text text-anchor="left" x="844.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (22 samples, 1.28%)</title><rect x="841" y="677" width="15" height="15" fill="rgb(235,81,15)"/><text text-anchor="left" x="844.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (22 samples, 1.28%)</title><rect x="841" y="661" width="15" height="15" fill="rgb(221,47,25)"/><text text-anchor="left" x="844.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="841" y="645" width="15" height="15" fill="rgb(215,174,16)"/><text text-anchor="left" x="844.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (22 samples, 1.28%)</title><rect x="841" y="629" width="15" height="15" fill="rgb(211,75,23)"/><text text-anchor="left" x="844.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (22 samples, 1.28%)</title><rect x="841" y="613" width="15" height="15" fill="rgb(249,115,0)"/><text text-anchor="left" x="844.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (22 samples, 1.28%)</title><rect x="841" y="597" width="15" height="15" fill="rgb(245,18,10)"/><text text-anchor="left" x="844.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (22 samples, 1.28%)</title><rect x="841" y="581" width="15" height="15" fill="rgb(230,104,33)"/><text text-anchor="left" x="844.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="841" y="565" width="15" height="15" fill="rgb(250,31,24)"/><text text-anchor="left" x="844.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (22 samples, 1.28%)</title><rect x="841" y="549" width="15" height="15" fill="rgb(251,76,11)"/><text text-anchor="left" x="844.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (22 samples, 1.28%)</title><rect x="841" y="533" width="15" height="15" fill="rgb(220,101,36)"/><text text-anchor="left" x="844.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (22 samples, 1.28%)</title><rect x="841" y="517" width="15" height="15" fill="rgb(226,142,39)"/><text text-anchor="left" x="844.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (22 samples, 1.28%)</title><rect x="841" y="501" width="15" height="15" fill="rgb(206,117,2)"/><text text-anchor="left" x="844.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (22 samples, 1.28%)</title><rect x="841" y="485" width="15" height="15" fill="rgb(210,164,20)"/><text text-anchor="left" x="844.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="841" y="469" width="15" height="15" fill="rgb(243,136,8)"/><text text-anchor="left" x="844.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (22 samples, 1.28%)</title><rect x="841" y="453" width="15" height="15" fill="rgb(241,142,48)"/><text text-anchor="left" x="844.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (22 samples, 1.28%)</title><rect x="841" y="437" width="15" height="15" fill="rgb(250,148,34)"/><text text-anchor="left" x="844.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (22 samples, 1.28%)</title><rect x="841" y="421" width="15" height="15" fill="rgb(243,54,17)"/><text text-anchor="left" x="844.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (22 samples, 1.28%)</title><rect x="841" y="405" width="15" height="15" fill="rgb(240,78,39)"/><text text-anchor="left" x="844.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="841" y="389" width="15" height="15" fill="rgb(235,75,12)"/><text text-anchor="left" x="844.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (22 samples, 1.28%)</title><rect x="841" y="373" width="15" height="15" fill="rgb(245,150,45)"/><text text-anchor="left" x="844.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (22 samples, 1.28%)</title><rect x="841" y="357" width="15" height="15" fill="rgb(210,74,42)"/><text text-anchor="left" x="844.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (22 samples, 1.28%)</title><rect x="841" y="341" width="15" height="15" fill="rgb(247,120,48)"/><text text-anchor="left" x="844.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (22 samples, 1.28%)</title><rect x="841" y="325" width="15" height="15" fill="rgb(243,160,29)"/><text text-anchor="left" x="844.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (22 samples, 1.28%)</title><rect x="841" y="309" width="15" height="15" fill="rgb(234,212,0)"/><text text-anchor="left" x="844.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (22 samples, 1.28%)</title><rect x="841" y="293" width="15" height="15" fill="rgb(231,141,5)"/><text text-anchor="left" x="844.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (22 samples, 1.28%)</title><rect x="841" y="277" width="15" height="15" fill="rgb(248,188,31)"/><text text-anchor="left" x="844.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::RawEntryBuilderMut&lt;K,V,S&gt;::from_hash (15 samples, 0.87%)</title><rect x="845" y="261" width="11" height="15" fill="rgb(213,175,41)"/><text text-anchor="left" x="848.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::TyKind as core::hash::Hash&gt;::hash (2 samples, 0.12%)</title><rect x="856" y="709" width="1" height="15" fill="rgb(233,222,24)"/><text text-anchor="left" x="859.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (1 samples, 0.06%)</title><rect x="857" y="709" width="1" height="15" fill="rgb(237,207,53)"/><text text-anchor="left" x="860.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="857" y="693" width="1" height="15" fill="rgb(245,204,29)"/><text text-anchor="left" x="860.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="857" y="677" width="1" height="15" fill="rgb(225,124,20)"/><text text-anchor="left" x="860.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (1 samples, 0.06%)</title><rect x="857" y="661" width="1" height="15" fill="rgb(245,161,52)"/><text text-anchor="left" x="860.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (1 samples, 0.06%)</title><rect x="857" y="645" width="1" height="15" fill="rgb(237,222,5)"/><text text-anchor="left" x="860.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (1 samples, 0.06%)</title><rect x="857" y="629" width="1" height="15" fill="rgb(207,11,24)"/><text text-anchor="left" x="860.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (1 samples, 0.06%)</title><rect x="857" y="613" width="1" height="15" fill="rgb(237,51,4)"/><text text-anchor="left" x="860.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="857" y="597" width="1" height="15" fill="rgb(208,129,2)"/><text text-anchor="left" x="860.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="857" y="581" width="1" height="15" fill="rgb(214,214,23)"/><text text-anchor="left" x="860.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (1 samples, 0.06%)</title><rect x="857" y="565" width="1" height="15" fill="rgb(221,107,12)"/><text text-anchor="left" x="860.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (1 samples, 0.06%)</title><rect x="857" y="549" width="1" height="15" fill="rgb(225,191,4)"/><text text-anchor="left" x="860.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (1 samples, 0.06%)</title><rect x="857" y="533" width="1" height="15" fill="rgb(219,198,30)"/><text text-anchor="left" x="860.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="857" y="517" width="1" height="15" fill="rgb(211,1,13)"/><text text-anchor="left" x="860.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="857" y="501" width="1" height="15" fill="rgb(249,117,5)"/><text text-anchor="left" x="860.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (1 samples, 0.06%)</title><rect x="857" y="485" width="1" height="15" fill="rgb(216,96,25)"/><text text-anchor="left" x="860.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (1 samples, 0.06%)</title><rect x="857" y="469" width="1" height="15" fill="rgb(235,149,22)"/><text text-anchor="left" x="860.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (1 samples, 0.06%)</title><rect x="857" y="453" width="1" height="15" fill="rgb(238,70,12)"/><text text-anchor="left" x="860.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (1 samples, 0.06%)</title><rect x="857" y="437" width="1" height="15" fill="rgb(225,107,16)"/><text text-anchor="left" x="860.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="857" y="421" width="1" height="15" fill="rgb(216,222,10)"/><text text-anchor="left" x="860.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="857" y="405" width="1" height="15" fill="rgb(246,118,44)"/><text text-anchor="left" x="860.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (1 samples, 0.06%)</title><rect x="857" y="389" width="1" height="15" fill="rgb(248,128,10)"/><text text-anchor="left" x="860.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (1 samples, 0.06%)</title><rect x="857" y="373" width="1" height="15" fill="rgb(251,102,54)"/><text text-anchor="left" x="860.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (1 samples, 0.06%)</title><rect x="857" y="357" width="1" height="15" fill="rgb(209,88,9)"/><text text-anchor="left" x="860.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="857" y="341" width="1" height="15" fill="rgb(216,137,9)"/><text text-anchor="left" x="860.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="857" y="325" width="1" height="15" fill="rgb(253,181,16)"/><text text-anchor="left" x="860.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (1 samples, 0.06%)</title><rect x="857" y="309" width="1" height="15" fill="rgb(231,223,26)"/><text text-anchor="left" x="860.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (1 samples, 0.06%)</title><rect x="857" y="293" width="1" height="15" fill="rgb(226,61,54)"/><text text-anchor="left" x="860.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="277" width="1" height="15" fill="rgb(241,215,50)"/><text text-anchor="left" x="860.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="261" width="1" height="15" fill="rgb(216,151,3)"/><text text-anchor="left" x="860.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="245" width="1" height="15" fill="rgb(221,116,36)"/><text text-anchor="left" x="860.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="229" width="1" height="15" fill="rgb(218,22,4)"/><text text-anchor="left" x="860.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="213" width="1" height="15" fill="rgb(253,161,1)"/><text text-anchor="left" x="860.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="197" width="1" height="15" fill="rgb(205,212,22)"/><text text-anchor="left" x="860.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="181" width="1" height="15" fill="rgb(216,187,20)"/><text text-anchor="left" x="860.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="165" width="1" height="15" fill="rgb(250,200,3)"/><text text-anchor="left" x="860.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="149" width="1" height="15" fill="rgb(237,214,11)"/><text text-anchor="left" x="860.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="133" width="1" height="15" fill="rgb(240,94,51)"/><text text-anchor="left" x="860.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (1 samples, 0.06%)</title><rect x="857" y="117" width="1" height="15" fill="rgb(222,69,45)"/><text text-anchor="left" x="860.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::RawEntryBuilderMut&lt;K,V,S&gt;::from_hash (4 samples, 0.23%)</title><rect x="858" y="709" width="2" height="15" fill="rgb(245,51,0)"/><text text-anchor="left" x="861.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::raw::sse2::Group::static_empty (1 samples, 0.06%)</title><rect x="860" y="709" width="1" height="15" fill="rgb(238,122,3)"/><text text-anchor="left" x="863.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (23 samples, 1.34%)</title><rect x="861" y="677" width="16" height="15" fill="rgb(251,70,37)"/><text text-anchor="left" x="864.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (23 samples, 1.34%)</title><rect x="861" y="661" width="16" height="15" fill="rgb(249,217,42)"/><text text-anchor="left" x="864.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (23 samples, 1.34%)</title><rect x="861" y="645" width="16" height="15" fill="rgb(217,25,37)"/><text text-anchor="left" x="864.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (23 samples, 1.34%)</title><rect x="861" y="629" width="16" height="15" fill="rgb(239,58,23)"/><text text-anchor="left" x="864.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (23 samples, 1.34%)</title><rect x="861" y="613" width="16" height="15" fill="rgb(208,161,36)"/><text text-anchor="left" x="864.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (23 samples, 1.34%)</title><rect x="861" y="597" width="16" height="15" fill="rgb(241,32,24)"/><text text-anchor="left" x="864.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (23 samples, 1.34%)</title><rect x="861" y="581" width="16" height="15" fill="rgb(236,207,4)"/><text text-anchor="left" x="864.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (23 samples, 1.34%)</title><rect x="861" y="565" width="16" height="15" fill="rgb(206,170,37)"/><text text-anchor="left" x="864.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (23 samples, 1.34%)</title><rect x="861" y="549" width="16" height="15" fill="rgb(231,81,15)"/><text text-anchor="left" x="864.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (23 samples, 1.34%)</title><rect x="861" y="533" width="16" height="15" fill="rgb(215,84,9)"/><text text-anchor="left" x="864.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (23 samples, 1.34%)</title><rect x="861" y="517" width="16" height="15" fill="rgb(213,42,41)"/><text text-anchor="left" x="864.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (23 samples, 1.34%)</title><rect x="861" y="501" width="16" height="15" fill="rgb(249,84,1)"/><text text-anchor="left" x="864.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (23 samples, 1.34%)</title><rect x="861" y="485" width="16" height="15" fill="rgb(241,165,34)"/><text text-anchor="left" x="864.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (23 samples, 1.34%)</title><rect x="861" y="469" width="16" height="15" fill="rgb(230,180,19)"/><text text-anchor="left" x="864.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (23 samples, 1.34%)</title><rect x="861" y="453" width="16" height="15" fill="rgb(243,20,17)"/><text text-anchor="left" x="864.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (23 samples, 1.34%)</title><rect x="861" y="437" width="16" height="15" fill="rgb(206,144,9)"/><text text-anchor="left" x="864.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (23 samples, 1.34%)</title><rect x="861" y="421" width="16" height="15" fill="rgb(244,157,41)"/><text text-anchor="left" x="864.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (23 samples, 1.34%)</title><rect x="861" y="405" width="16" height="15" fill="rgb(220,34,39)"/><text text-anchor="left" x="864.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (23 samples, 1.34%)</title><rect x="861" y="389" width="16" height="15" fill="rgb(218,97,9)"/><text text-anchor="left" x="864.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (23 samples, 1.34%)</title><rect x="861" y="373" width="16" height="15" fill="rgb(214,81,1)"/><text text-anchor="left" x="864.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (23 samples, 1.34%)</title><rect x="861" y="357" width="16" height="15" fill="rgb(225,211,19)"/><text text-anchor="left" x="864.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (23 samples, 1.34%)</title><rect x="861" y="341" width="16" height="15" fill="rgb(244,24,51)"/><text text-anchor="left" x="864.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (23 samples, 1.34%)</title><rect x="861" y="325" width="16" height="15" fill="rgb(231,182,28)"/><text text-anchor="left" x="864.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (23 samples, 1.34%)</title><rect x="861" y="309" width="16" height="15" fill="rgb(219,160,53)"/><text text-anchor="left" x="864.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (23 samples, 1.34%)</title><rect x="861" y="293" width="16" height="15" fill="rgb(254,191,54)"/><text text-anchor="left" x="864.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (23 samples, 1.34%)</title><rect x="861" y="277" width="16" height="15" fill="rgb(243,26,40)"/><text text-anchor="left" x="864.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (23 samples, 1.34%)</title><rect x="861" y="261" width="16" height="15" fill="rgb(225,118,7)"/><text text-anchor="left" x="864.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::_intern_type_list (35 samples, 2.03%)</title><rect x="877" y="277" width="24" height="15" fill="rgb(228,64,31)"/><text text-anchor="left" x="880.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::slice::&lt;impl core::cmp::PartialEq&lt;[B]&gt; for [A]&gt;::eq (5 samples, 0.29%)</title><rect x="897" y="261" width="4" height="15" fill="rgb(215,131,39)"/><text text-anchor="left" x="900.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::ShallowResolver as rustc::ty::fold::TypeFolder&gt;::fold_ty (1 samples, 0.06%)</title><rect x="908" y="261" width="0" height="15" fill="rgb(236,138,21)"/><text text-anchor="left" x="911.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (71 samples, 4.13%)</title><rect x="861" y="709" width="49" height="15" fill="rgb(219,167,24)"/><text text-anchor="left" x="864.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (71 samples, 4.13%)</title><rect x="861" y="693" width="49" height="15" fill="rgb(243,145,53)"/><text text-anchor="left" x="864.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (48 samples, 2.79%)</title><rect x="877" y="677" width="33" height="15" fill="rgb(210,117,5)"/><text text-anchor="left" x="880.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (48 samples, 2.79%)</title><rect x="877" y="661" width="33" height="15" fill="rgb(211,87,27)"/><text text-anchor="left" x="880.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (48 samples, 2.79%)</title><rect x="877" y="645" width="33" height="15" fill="rgb(230,27,22)"/><text text-anchor="left" x="880.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (48 samples, 2.79%)</title><rect x="877" y="629" width="33" height="15" fill="rgb(235,140,14)"/><text text-anchor="left" x="880.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (48 samples, 2.79%)</title><rect x="877" y="613" width="33" height="15" fill="rgb(217,23,6)"/><text text-anchor="left" x="880.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (48 samples, 2.79%)</title><rect x="877" y="597" width="33" height="15" fill="rgb(243,200,33)"/><text text-anchor="left" x="880.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (48 samples, 2.79%)</title><rect x="877" y="581" width="33" height="15" fill="rgb(205,157,10)"/><text text-anchor="left" x="880.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (48 samples, 2.79%)</title><rect x="877" y="565" width="33" height="15" fill="rgb(216,167,14)"/><text text-anchor="left" x="880.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (48 samples, 2.79%)</title><rect x="877" y="549" width="33" height="15" fill="rgb(239,172,53)"/><text text-anchor="left" x="880.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (48 samples, 2.79%)</title><rect x="877" y="533" width="33" height="15" fill="rgb(210,194,54)"/><text text-anchor="left" x="880.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (48 samples, 2.79%)</title><rect x="877" y="517" width="33" height="15" fill="rgb(227,19,21)"/><text text-anchor="left" x="880.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (48 samples, 2.79%)</title><rect x="877" y="501" width="33" height="15" fill="rgb(215,126,21)"/><text text-anchor="left" x="880.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (48 samples, 2.79%)</title><rect x="877" y="485" width="33" height="15" fill="rgb(241,218,29)"/><text text-anchor="left" x="880.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (48 samples, 2.79%)</title><rect x="877" y="469" width="33" height="15" fill="rgb(231,52,4)"/><text text-anchor="left" x="880.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (48 samples, 2.79%)</title><rect x="877" y="453" width="33" height="15" fill="rgb(238,8,29)"/><text text-anchor="left" x="880.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (48 samples, 2.79%)</title><rect x="877" y="437" width="33" height="15" fill="rgb(225,165,25)"/><text text-anchor="left" x="880.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (48 samples, 2.79%)</title><rect x="877" y="421" width="33" height="15" fill="rgb(229,68,35)"/><text text-anchor="left" x="880.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (48 samples, 2.79%)</title><rect x="877" y="405" width="33" height="15" fill="rgb(218,147,3)"/><text text-anchor="left" x="880.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (48 samples, 2.79%)</title><rect x="877" y="389" width="33" height="15" fill="rgb(252,103,42)"/><text text-anchor="left" x="880.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (48 samples, 2.79%)</title><rect x="877" y="373" width="33" height="15" fill="rgb(213,132,16)"/><text text-anchor="left" x="880.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (48 samples, 2.79%)</title><rect x="877" y="357" width="33" height="15" fill="rgb(223,206,36)"/><text text-anchor="left" x="880.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (48 samples, 2.79%)</title><rect x="877" y="341" width="33" height="15" fill="rgb(234,125,26)"/><text text-anchor="left" x="880.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (48 samples, 2.79%)</title><rect x="877" y="325" width="33" height="15" fill="rgb(207,213,23)"/><text text-anchor="left" x="880.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (48 samples, 2.79%)</title><rect x="877" y="309" width="33" height="15" fill="rgb(207,156,20)"/><text text-anchor="left" x="880.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (48 samples, 2.79%)</title><rect x="877" y="293" width="33" height="15" fill="rgb(251,126,29)"/><text text-anchor="left" x="880.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (13 samples, 0.76%)</title><rect x="901" y="277" width="9" height="15" fill="rgb(206,195,50)"/><text text-anchor="left" x="904.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::ShallowResolver::shallow_resolve (2 samples, 0.12%)</title><rect x="908" y="261" width="2" height="15" fill="rgb(243,56,10)"/><text text-anchor="left" x="911.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::Variance::xform (1 samples, 0.06%)</title><rect x="910" y="709" width="0" height="15" fill="rgb(236,107,33)"/><text text-anchor="left" x="913.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (7 samples, 0.41%)</title><rect x="910" y="709" width="5" height="15" fill="rgb(243,178,42)"/><text text-anchor="left" x="913.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (1 samples, 0.06%)</title><rect x="915" y="693" width="0" height="15" fill="rgb(254,179,25)"/><text text-anchor="left" x="918.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::_intern_substs (2 samples, 0.12%)</title><rect x="915" y="709" width="2" height="15" fill="rgb(214,202,0)"/><text text-anchor="left" x="918.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::_intern_type_list (1 samples, 0.06%)</title><rect x="917" y="709" width="0" height="15" fill="rgb(215,224,53)"/><text text-anchor="left" x="920.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::intern_substs (1 samples, 0.06%)</title><rect x="917" y="709" width="1" height="15" fill="rgb(241,216,40)"/><text text-anchor="left" x="920.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (67 samples, 3.89%)</title><rect x="918" y="709" width="46" height="15" fill="rgb(232,136,12)"/><text text-anchor="left" x="921.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::__query_compute::const_eval_validated (1 samples, 0.06%)</title><rect x="964" y="709" width="1" height="15" fill="rgb(250,43,27)"/><text text-anchor="left" x="967.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::const_eval::eval_queries::const_eval_validated_provider (1 samples, 0.06%)</title><rect x="964" y="693" width="1" height="15" fill="rgb(252,135,19)"/><text text-anchor="left" x="967.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="964" y="677" width="1" height="15" fill="rgb(246,128,45)"/><text text-anchor="left" x="967.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::dep_graph::graph::DepGraph::with_task_impl (1 samples, 0.06%)</title><rect x="964" y="661" width="1" height="15" fill="rgb(208,207,26)"/><text text-anchor="left" x="967.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::&lt;impl rustc::ty::query::config::QueryAccessors for rustc::ty::query::queries::const_eval_validated&gt;::compute (1 samples, 0.06%)</title><rect x="964" y="645" width="1" height="15" fill="rgb(209,30,11)"/><text text-anchor="left" x="967.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::__query_compute::const_eval_validated (1 samples, 0.06%)</title><rect x="964" y="629" width="1" height="15" fill="rgb(254,57,25)"/><text text-anchor="left" x="967.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::const_eval::eval_queries::const_eval_validated_provider (1 samples, 0.06%)</title><rect x="964" y="613" width="1" height="15" fill="rgb(217,175,6)"/><text text-anchor="left" x="967.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="964" y="597" width="1" height="15" fill="rgb(244,216,36)"/><text text-anchor="left" x="967.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::dep_graph::graph::DepGraph::with_task_impl (1 samples, 0.06%)</title><rect x="964" y="581" width="1" height="15" fill="rgb(217,84,23)"/><text text-anchor="left" x="967.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::&lt;impl rustc::ty::query::config::QueryAccessors for rustc::ty::query::queries::const_eval_raw&gt;::compute (1 samples, 0.06%)</title><rect x="964" y="565" width="1" height="15" fill="rgb(223,80,15)"/><text text-anchor="left" x="967.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::__query_compute::const_eval_raw (1 samples, 0.06%)</title><rect x="964" y="549" width="1" height="15" fill="rgb(233,89,29)"/><text text-anchor="left" x="967.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::const_eval::eval_queries::const_eval_raw_provider (1 samples, 0.06%)</title><rect x="964" y="533" width="1" height="15" fill="rgb(212,67,35)"/><text text-anchor="left" x="967.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::util::&lt;impl rustc::ty::context::TyCtxt&gt;::is_static (1 samples, 0.06%)</title><rect x="964" y="517" width="1" height="15" fill="rgb(207,201,44)"/><text text-anchor="left" x="967.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="964" y="501" width="1" height="15" fill="rgb(211,113,41)"/><text text-anchor="left" x="967.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.06%)</title><rect x="964" y="485" width="1" height="15" fill="rgb(231,0,41)"/><text text-anchor="left" x="967.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::raw::RawTable&lt;T&gt;::insert (1 samples, 0.06%)</title><rect x="964" y="469" width="1" height="15" fill="rgb(249,220,25)"/><text text-anchor="left" x="967.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="965" y="709" width="0" height="15" fill="rgb(244,175,13)"/><text text-anchor="left" x="968.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::dep_graph::graph::DepGraph::with_task_impl (1 samples, 0.06%)</title><rect x="965" y="693" width="0" height="15" fill="rgb(246,43,20)"/><text text-anchor="left" x="968.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::&lt;impl rustc::ty::query::config::QueryAccessors for rustc::ty::query::queries::const_eval_validated&gt;::compute (1 samples, 0.06%)</title><rect x="965" y="677" width="0" height="15" fill="rgb(218,205,16)"/><text text-anchor="left" x="968.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::__query_compute::const_eval_validated (1 samples, 0.06%)</title><rect x="965" y="661" width="0" height="15" fill="rgb(235,142,10)"/><text text-anchor="left" x="968.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::const_eval::eval_queries::const_eval_validated_provider (1 samples, 0.06%)</title><rect x="965" y="645" width="0" height="15" fill="rgb(238,212,14)"/><text text-anchor="left" x="968.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="965" y="629" width="0" height="15" fill="rgb(248,214,18)"/><text text-anchor="left" x="968.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::dep_graph::graph::DepGraph::with_task_impl (1 samples, 0.06%)</title><rect x="965" y="613" width="0" height="15" fill="rgb(242,1,42)"/><text text-anchor="left" x="968.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::&lt;impl rustc::ty::query::config::QueryAccessors for rustc::ty::query::queries::const_eval_raw&gt;::compute (1 samples, 0.06%)</title><rect x="965" y="597" width="0" height="15" fill="rgb(243,20,28)"/><text text-anchor="left" x="968.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::__query_compute::const_eval_raw (1 samples, 0.06%)</title><rect x="965" y="581" width="0" height="15" fill="rgb(251,142,46)"/><text text-anchor="left" x="968.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::const_eval::eval_queries::const_eval_raw_provider (1 samples, 0.06%)</title><rect x="965" y="565" width="0" height="15" fill="rgb(207,140,22)"/><text text-anchor="left" x="968.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::print::pretty::&lt;impl rustc::ty::context::TyCtxt&gt;::def_path_str (1 samples, 0.06%)</title><rect x="965" y="549" width="0" height="15" fill="rgb(224,125,2)"/><text text-anchor="left" x="968.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::print::pretty::&lt;impl rustc::ty::context::TyCtxt&gt;::def_path_str_with_substs (1 samples, 0.06%)</title><rect x="965" y="533" width="0" height="15" fill="rgb(240,226,36)"/><text text-anchor="left" x="968.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::print::pretty::FmtPrinter&lt;F&gt; as rustc::ty::print::Printer&gt;::print_def_path (1 samples, 0.06%)</title><rect x="965" y="517" width="0" height="15" fill="rgb(238,23,50)"/><text text-anchor="left" x="968.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::print::pretty::PrettyPrinter::try_print_visible_def_path_recur (1 samples, 0.06%)</title><rect x="965" y="501" width="0" height="15" fill="rgb(253,79,27)"/><text text-anchor="left" x="968.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="965" y="485" width="0" height="15" fill="rgb(236,45,26)"/><text text-anchor="left" x="968.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::dep_graph::graph::DepGraph::with_task_impl (1 samples, 0.06%)</title><rect x="965" y="469" width="0" height="15" fill="rgb(238,98,52)"/><text text-anchor="left" x="968.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::ops::function::FnOnce::call_once (1 samples, 0.06%)</title><rect x="965" y="453" width="0" height="15" fill="rgb(209,135,51)"/><text text-anchor="left" x="968.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::rustc_entry::&lt;impl hashbrown::map::HashMap&lt;K,V,S&gt;&gt;::rustc_entry (1 samples, 0.06%)</title><rect x="965" y="437" width="0" height="15" fill="rgb(233,131,50)"/><text text-anchor="left" x="968.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::Variance::xform (13 samples, 0.76%)</title><rect x="1002" y="261" width="9" height="15" fill="rgb(248,179,32)"/><text text-anchor="left" x="1005.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (67 samples, 3.89%)</title><rect x="965" y="709" width="46" height="15" fill="rgb(213,146,6)"/><text text-anchor="left" x="968.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (62 samples, 3.60%)</title><rect x="969" y="693" width="42" height="15" fill="rgb(252,131,6)"/><text text-anchor="left" x="972.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (62 samples, 3.60%)</title><rect x="969" y="677" width="42" height="15" fill="rgb(216,78,37)"/><text text-anchor="left" x="972.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (62 samples, 3.60%)</title><rect x="969" y="661" width="42" height="15" fill="rgb(243,73,36)"/><text text-anchor="left" x="972.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (62 samples, 3.60%)</title><rect x="969" y="645" width="42" height="15" fill="rgb(220,78,28)"/><text text-anchor="left" x="972.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (62 samples, 3.60%)</title><rect x="969" y="629" width="42" height="15" fill="rgb(220,55,7)"/><text text-anchor="left" x="972.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I ..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (62 samples, 3.60%)</title><rect x="969" y="613" width="42" height="15" fill="rgb(239,37,34)"/><text text-anchor="left" x="972.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (62 samples, 3.60%)</title><rect x="969" y="597" width="42" height="15" fill="rgb(214,62,38)"/><text text-anchor="left" x="972.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (62 samples, 3.60%)</title><rect x="969" y="581" width="42" height="15" fill="rgb(206,217,37)"/><text text-anchor="left" x="972.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (62 samples, 3.60%)</title><rect x="969" y="565" width="42" height="15" fill="rgb(242,106,30)"/><text text-anchor="left" x="972.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I ..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (62 samples, 3.60%)</title><rect x="969" y="549" width="42" height="15" fill="rgb(236,216,28)"/><text text-anchor="left" x="972.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (62 samples, 3.60%)</title><rect x="969" y="533" width="42" height="15" fill="rgb(207,83,36)"/><text text-anchor="left" x="972.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (62 samples, 3.60%)</title><rect x="969" y="517" width="42" height="15" fill="rgb(252,118,26)"/><text text-anchor="left" x="972.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (62 samples, 3.60%)</title><rect x="969" y="501" width="42" height="15" fill="rgb(247,207,28)"/><text text-anchor="left" x="972.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (62 samples, 3.60%)</title><rect x="969" y="485" width="42" height="15" fill="rgb(242,181,9)"/><text text-anchor="left" x="972.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (62 samples, 3.60%)</title><rect x="969" y="469" width="42" height="15" fill="rgb(227,31,25)"/><text text-anchor="left" x="972.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (62 samples, 3.60%)</title><rect x="969" y="453" width="42" height="15" fill="rgb(229,201,15)"/><text text-anchor="left" x="972.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I ..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (62 samples, 3.60%)</title><rect x="969" y="437" width="42" height="15" fill="rgb(226,159,15)"/><text text-anchor="left" x="972.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (62 samples, 3.60%)</title><rect x="969" y="421" width="42" height="15" fill="rgb(226,53,28)"/><text text-anchor="left" x="972.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (62 samples, 3.60%)</title><rect x="969" y="405" width="42" height="15" fill="rgb(210,11,50)"/><text text-anchor="left" x="972.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (62 samples, 3.60%)</title><rect x="969" y="389" width="42" height="15" fill="rgb(237,14,4)"/><text text-anchor="left" x="972.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I ..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (62 samples, 3.60%)</title><rect x="969" y="373" width="42" height="15" fill="rgb(226,36,41)"/><text text-anchor="left" x="972.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (62 samples, 3.60%)</title><rect x="969" y="357" width="42" height="15" fill="rgb(243,229,54)"/><text text-anchor="left" x="972.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (62 samples, 3.60%)</title><rect x="969" y="341" width="42" height="15" fill="rgb(245,53,47)"/><text text-anchor="left" x="972.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (62 samples, 3.60%)</title><rect x="969" y="325" width="42" height="15" fill="rgb(244,189,51)"/><text text-anchor="left" x="972.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rus..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (62 samples, 3.60%)</title><rect x="969" y="309" width="42" height="15" fill="rgb(223,13,48)"/><text text-anchor="left" x="972.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (62 samples, 3.60%)</title><rect x="969" y="293" width="42" height="15" fill="rgb(230,62,4)"/><text text-anchor="left" x="972.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;ru..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (62 samples, 3.60%)</title><rect x="969" y="277" width="42" height="15" fill="rgb(253,13,54)"/><text text-anchor="left" x="972.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I ..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::TyCtxt::intern_type_list (1 samples, 0.06%)</title><rect x="1011" y="261" width="0" height="15" fill="rgb(213,176,48)"/><text text-anchor="left" x="1014.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (153 samples, 8.89%)</title><rect x="1015" y="261" width="105" height="15" fill="rgb(213,203,7)"/><text text-anchor="left" x="1018.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::infe..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (63 samples, 3.66%)</title><rect x="1076" y="245" width="44" height="15" fill="rgb(237,101,25)"/><text text-anchor="left" x="1079.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rust..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::TyKind as core::hash::Hash&gt;::hash (9 samples, 0.52%)</title><rect x="1126" y="245" width="6" height="15" fill="rgb(216,149,13)"/><text text-anchor="left" x="1129.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (181 samples, 10.52%)</title><rect x="1015" y="693" width="124" height="15" fill="rgb(253,115,50)"/><text text-anchor="left" x="1018.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (181 samples, 10.52%)</title><rect x="1015" y="677" width="124" height="15" fill="rgb(230,165,31)"/><text text-anchor="left" x="1018.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sub..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (181 samples, 10.52%)</title><rect x="1015" y="661" width="124" height="15" fill="rgb(212,151,9)"/><text text-anchor="left" x="1018.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (181 samples, 10.52%)</title><rect x="1015" y="645" width="124" height="15" fill="rgb(213,26,53)"/><text text-anchor="left" x="1018.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (181 samples, 10.52%)</title><rect x="1015" y="629" width="124" height="15" fill="rgb(230,176,21)"/><text text-anchor="left" x="1018.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (181 samples, 10.52%)</title><rect x="1015" y="613" width="124" height="15" fill="rgb(228,12,52)"/><text text-anchor="left" x="1018.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::infer::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (181 samples, 10.52%)</title><rect x="1015" y="597" width="124" height="15" fill="rgb(229,166,6)"/><text text-anchor="left" x="1018.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (181 samples, 10.52%)</title><rect x="1015" y="581" width="124" height="15" fill="rgb(239,149,45)"/><text text-anchor="left" x="1018.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (181 samples, 10.52%)</title><rect x="1015" y="565" width="124" height="15" fill="rgb(251,113,9)"/><text text-anchor="left" x="1018.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (181 samples, 10.52%)</title><rect x="1015" y="549" width="124" height="15" fill="rgb(222,153,17)"/><text text-anchor="left" x="1018.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (181 samples, 10.52%)</title><rect x="1015" y="533" width="124" height="15" fill="rgb(254,224,3)"/><text text-anchor="left" x="1018.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (181 samples, 10.52%)</title><rect x="1015" y="517" width="124" height="15" fill="rgb(232,71,52)"/><text text-anchor="left" x="1018.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (181 samples, 10.52%)</title><rect x="1015" y="501" width="124" height="15" fill="rgb(233,176,33)"/><text text-anchor="left" x="1018.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sub..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (181 samples, 10.52%)</title><rect x="1015" y="485" width="124" height="15" fill="rgb(223,40,32)"/><text text-anchor="left" x="1018.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (181 samples, 10.52%)</title><rect x="1015" y="469" width="124" height="15" fill="rgb(205,3,54)"/><text text-anchor="left" x="1018.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (181 samples, 10.52%)</title><rect x="1015" y="453" width="124" height="15" fill="rgb(221,170,18)"/><text text-anchor="left" x="1018.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (181 samples, 10.52%)</title><rect x="1015" y="437" width="124" height="15" fill="rgb(232,199,11)"/><text text-anchor="left" x="1018.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::infer::..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (181 samples, 10.52%)</title><rect x="1015" y="421" width="124" height="15" fill="rgb(218,13,42)"/><text text-anchor="left" x="1018.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (181 samples, 10.52%)</title><rect x="1015" y="405" width="124" height="15" fill="rgb(226,24,5)"/><text text-anchor="left" x="1018.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (181 samples, 10.52%)</title><rect x="1015" y="389" width="124" height="15" fill="rgb(239,132,12)"/><text text-anchor="left" x="1018.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (181 samples, 10.52%)</title><rect x="1015" y="373" width="124" height="15" fill="rgb(242,207,31)"/><text text-anchor="left" x="1018.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (181 samples, 10.52%)</title><rect x="1015" y="357" width="124" height="15" fill="rgb(208,154,25)"/><text text-anchor="left" x="1018.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (181 samples, 10.52%)</title><rect x="1015" y="341" width="124" height="15" fill="rgb(230,197,0)"/><text text-anchor="left" x="1018.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;I as rustc::ty..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (181 samples, 10.52%)</title><rect x="1015" y="325" width="124" height="15" fill="rgb(249,87,25)"/><text text-anchor="left" x="1018.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">&lt;rustc::ty::sub..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (181 samples, 10.52%)</title><rect x="1015" y="309" width="124" height="15" fill="rgb(219,58,8)"/><text text-anchor="left" x="1018.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (181 samples, 10.52%)</title><rect x="1015" y="293" width="124" height="15" fill="rgb(250,176,19)"/><text text-anchor="left" x="1018.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::infer::c..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (181 samples, 10.52%)</title><rect x="1015" y="277" width="124" height="15" fill="rgb(221,88,12)"/><text text-anchor="left" x="1018.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::rela..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::context::CtxtInterners::intern_ty (28 samples, 1.63%)</title><rect x="1120" y="261" width="19" height="15" fill="rgb(221,38,20)"/><text text-anchor="left" x="1123.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::RawEntryBuilderMut&lt;K,V,S&gt;::from_hash (10 samples, 0.58%)</title><rect x="1132" y="245" width="7" height="15" fill="rgb(236,57,39)"/><text text-anchor="left" x="1135.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (6 samples, 0.35%)</title><rect x="1139" y="325" width="4" height="15" fill="rgb(207,156,40)"/><text text-anchor="left" x="1142.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (6 samples, 0.35%)</title><rect x="1139" y="309" width="4" height="15" fill="rgb(209,150,34)"/><text text-anchor="left" x="1142.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (6 samples, 0.35%)</title><rect x="1139" y="293" width="4" height="15" fill="rgb(219,187,49)"/><text text-anchor="left" x="1142.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (6 samples, 0.35%)</title><rect x="1139" y="277" width="4" height="15" fill="rgb(254,223,33)"/><text text-anchor="left" x="1142.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (194 samples, 11.27%)</title><rect x="1011" y="709" width="133" height="15" fill="rgb(232,15,3)"/><text text-anchor="left" x="1014.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc::ty::relat..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (8 samples, 0.46%)</title><rect x="1139" y="693" width="5" height="15" fill="rgb(249,43,53)"/><text text-anchor="left" x="1142.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (8 samples, 0.46%)</title><rect x="1139" y="677" width="5" height="15" fill="rgb(247,161,16)"/><text text-anchor="left" x="1142.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (8 samples, 0.46%)</title><rect x="1139" y="661" width="5" height="15" fill="rgb(207,175,35)"/><text text-anchor="left" x="1142.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (8 samples, 0.46%)</title><rect x="1139" y="645" width="5" height="15" fill="rgb(230,99,50)"/><text text-anchor="left" x="1142.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (8 samples, 0.46%)</title><rect x="1139" y="629" width="5" height="15" fill="rgb(233,161,2)"/><text text-anchor="left" x="1142.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (8 samples, 0.46%)</title><rect x="1139" y="613" width="5" height="15" fill="rgb(238,22,21)"/><text text-anchor="left" x="1142.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (8 samples, 0.46%)</title><rect x="1139" y="597" width="5" height="15" fill="rgb(214,173,39)"/><text text-anchor="left" x="1142.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (8 samples, 0.46%)</title><rect x="1139" y="581" width="5" height="15" fill="rgb(205,102,2)"/><text text-anchor="left" x="1142.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (8 samples, 0.46%)</title><rect x="1139" y="565" width="5" height="15" fill="rgb(229,159,42)"/><text text-anchor="left" x="1142.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (8 samples, 0.46%)</title><rect x="1139" y="549" width="5" height="15" fill="rgb(222,13,4)"/><text text-anchor="left" x="1142.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (8 samples, 0.46%)</title><rect x="1139" y="533" width="5" height="15" fill="rgb(236,183,4)"/><text text-anchor="left" x="1142.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (8 samples, 0.46%)</title><rect x="1139" y="517" width="5" height="15" fill="rgb(249,219,45)"/><text text-anchor="left" x="1142.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::sty::FnSig as rustc::ty::relate::Relate&gt;::relate (8 samples, 0.46%)</title><rect x="1139" y="501" width="5" height="15" fill="rgb(228,127,10)"/><text text-anchor="left" x="1142.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (8 samples, 0.46%)</title><rect x="1139" y="485" width="5" height="15" fill="rgb(244,9,3)"/><text text-anchor="left" x="1142.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (8 samples, 0.46%)</title><rect x="1139" y="469" width="5" height="15" fill="rgb(224,2,46)"/><text text-anchor="left" x="1142.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (8 samples, 0.46%)</title><rect x="1139" y="453" width="5" height="15" fill="rgb(247,166,54)"/><text text-anchor="left" x="1142.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (8 samples, 0.46%)</title><rect x="1139" y="437" width="5" height="15" fill="rgb(235,79,11)"/><text text-anchor="left" x="1142.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;I as rustc::ty::context::InternAs&lt;[T],R&gt;&gt;::intern_with (8 samples, 0.46%)</title><rect x="1139" y="421" width="5" height="15" fill="rgb(216,174,46)"/><text text-anchor="left" x="1142.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::ty::subst::GenericArg as rustc::ty::relate::Relate&gt;::relate (8 samples, 0.46%)</title><rect x="1139" y="405" width="5" height="15" fill="rgb(212,193,36)"/><text text-anchor="left" x="1142.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (8 samples, 0.46%)</title><rect x="1139" y="389" width="5" height="15" fill="rgb(216,100,31)"/><text text-anchor="left" x="1142.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::infer::combine::&lt;impl rustc::infer::InferCtxt&gt;::super_combine_tys (8 samples, 0.46%)</title><rect x="1139" y="373" width="5" height="15" fill="rgb(246,119,2)"/><text text-anchor="left" x="1142.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::super_relate_tys (8 samples, 0.46%)</title><rect x="1139" y="357" width="5" height="15" fill="rgb(251,46,11)"/><text text-anchor="left" x="1142.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc::infer::nll_relate::TypeRelating&lt;D&gt; as rustc::ty::relate::TypeRelation&gt;::binders (8 samples, 0.46%)</title><rect x="1139" y="341" width="5" height="15" fill="rgb(218,120,39)"/><text text-anchor="left" x="1142.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="325" width="1" height="15" fill="rgb(240,198,38)"/><text text-anchor="left" x="1146.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="309" width="1" height="15" fill="rgb(237,98,39)"/><text text-anchor="left" x="1146.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="293" width="1" height="15" fill="rgb(250,203,30)"/><text text-anchor="left" x="1146.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="277" width="1" height="15" fill="rgb(245,104,36)"/><text text-anchor="left" x="1146.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="261" width="1" height="15" fill="rgb(249,197,45)"/><text text-anchor="left" x="1146.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="245" width="1" height="15" fill="rgb(249,49,35)"/><text text-anchor="left" x="1146.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="229" width="1" height="15" fill="rgb(247,97,32)"/><text text-anchor="left" x="1146.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="213" width="1" height="15" fill="rgb(217,45,36)"/><text text-anchor="left" x="1146.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="197" width="1" height="15" fill="rgb(233,196,35)"/><text text-anchor="left" x="1146.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="181" width="1" height="15" fill="rgb(232,98,5)"/><text text-anchor="left" x="1146.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="165" width="1" height="15" fill="rgb(229,156,46)"/><text text-anchor="left" x="1146.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="149" width="1" height="15" fill="rgb(222,103,30)"/><text text-anchor="left" x="1146.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="133" width="1" height="15" fill="rgb(215,92,28)"/><text text-anchor="left" x="1146.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="117" width="1" height="15" fill="rgb(241,106,7)"/><text text-anchor="left" x="1146.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="101" width="1" height="15" fill="rgb(206,36,51)"/><text text-anchor="left" x="1146.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="85" width="1" height="15" fill="rgb(231,50,32)"/><text text-anchor="left" x="1146.00" y="95.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="69" width="1" height="15" fill="rgb(221,20,50)"/><text text-anchor="left" x="1146.00" y="79.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="53" width="1" height="15" fill="rgb(250,3,38)"/><text text-anchor="left" x="1146.00" y="63.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::fold::TypeVisitor::visit_ty (2 samples, 0.12%)</title><rect x="1143" y="37" width="1" height="15" fill="rgb(250,116,22)"/><text text-anchor="left" x="1146.00" y="47.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::Binder&lt;T&gt;::map_bound_ref (1 samples, 0.06%)</title><rect x="1144" y="709" width="1" height="15" fill="rgb(235,184,18)"/><text text-anchor="left" x="1147.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_in (6 samples, 0.35%)</title><rect x="1145" y="709" width="4" height="15" fill="rgb(234,79,20)"/><text text-anchor="left" x="1148.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::sty::DebruijnIndex::shift_out (3 samples, 0.17%)</title><rect x="1149" y="709" width="2" height="15" fill="rgb(243,57,42)"/><text text-anchor="left" x="1152.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__malloc_fork_unlock_child (1 samples, 0.06%)</title><rect x="1151" y="533" width="1" height="15" fill="rgb(254,226,42)"/><text text-anchor="left" x="1154.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>swapgs_restore_regs_and_return_to_usermode (1 samples, 0.06%)</title><rect x="1151" y="517" width="1" height="15" fill="rgb(234,80,8)"/><text text-anchor="left" x="1154.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__put_user_4 (1 samples, 0.06%)</title><rect x="1152" y="485" width="0" height="15" fill="rgb(242,102,27)"/><text text-anchor="left" x="1155.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="1152" y="469" width="0" height="15" fill="rgb(205,36,42)"/><text text-anchor="left" x="1155.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="1152" y="453" width="0" height="15" fill="rgb(239,13,0)"/><text text-anchor="left" x="1155.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>find_vma (1 samples, 0.06%)</title><rect x="1152" y="437" width="0" height="15" fill="rgb(215,185,33)"/><text text-anchor="left" x="1155.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_interface::interface::run_compiler_in_existing_thread_pool (6 samples, 0.35%)</title><rect x="1151" y="709" width="4" height="15" fill="rgb(249,143,43)"/><text text-anchor="left" x="1154.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_interface::queries::Linker::link (6 samples, 0.35%)</title><rect x="1151" y="693" width="4" height="15" fill="rgb(216,4,33)"/><text text-anchor="left" x="1154.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;rustc_codegen_llvm::LlvmCodegenBackend as rustc_codegen_utils::codegen_backend::CodegenBackend&gt;::join_codegen_and_link (6 samples, 0.35%)</title><rect x="1151" y="677" width="4" height="15" fill="rgb(217,47,48)"/><text text-anchor="left" x="1154.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_session::utils::&lt;impl rustc_session::session::Session&gt;::time (6 samples, 0.35%)</title><rect x="1151" y="661" width="4" height="15" fill="rgb(227,180,13)"/><text text-anchor="left" x="1154.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_ssa::back::link::link_binary (6 samples, 0.35%)</title><rect x="1151" y="645" width="4" height="15" fill="rgb(216,222,36)"/><text text-anchor="left" x="1154.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_ssa::back::link::link_natively (6 samples, 0.35%)</title><rect x="1151" y="629" width="4" height="15" fill="rgb(218,191,24)"/><text text-anchor="left" x="1154.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_session::utils::&lt;impl rustc_session::session::Session&gt;::time (6 samples, 0.35%)</title><rect x="1151" y="613" width="4" height="15" fill="rgb(218,217,10)"/><text text-anchor="left" x="1154.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_ssa::back::link::exec_linker (6 samples, 0.35%)</title><rect x="1151" y="597" width="4" height="15" fill="rgb(227,190,52)"/><text text-anchor="left" x="1154.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::process::Command::spawn (6 samples, 0.35%)</title><rect x="1151" y="581" width="4" height="15" fill="rgb(224,131,51)"/><text text-anchor="left" x="1154.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::process::process_inner::&lt;impl std::sys::unix::process::process_common::Command&gt;::spawn (6 samples, 0.35%)</title><rect x="1151" y="565" width="4" height="15" fill="rgb(230,216,43)"/><text text-anchor="left" x="1154.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__libc_fork (6 samples, 0.35%)</title><rect x="1151" y="549" width="4" height="15" fill="rgb(248,79,37)"/><text text-anchor="left" x="1154.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arch_fork (5 samples, 0.29%)</title><rect x="1152" y="533" width="3" height="15" fill="rgb(234,219,33)"/><text text-anchor="left" x="1155.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ret_from_fork (5 samples, 0.29%)</title><rect x="1152" y="517" width="3" height="15" fill="rgb(221,54,32)"/><text text-anchor="left" x="1155.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule_tail (5 samples, 0.29%)</title><rect x="1152" y="501" width="3" height="15" fill="rgb(208,212,54)"/><text text-anchor="left" x="1155.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (4 samples, 0.23%)</title><rect x="1152" y="485" width="3" height="15" fill="rgb(226,74,51)"/><text text-anchor="left" x="1155.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (4 samples, 0.23%)</title><rect x="1152" y="469" width="3" height="15" fill="rgb(247,10,44)"/><text text-anchor="left" x="1155.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (4 samples, 0.23%)</title><rect x="1152" y="453" width="3" height="15" fill="rgb(208,120,49)"/><text text-anchor="left" x="1155.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (4 samples, 0.23%)</title><rect x="1152" y="437" width="3" height="15" fill="rgb(228,38,3)"/><text text-anchor="left" x="1155.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>[unknown] (844 samples, 49.04%)</title><rect x="577" y="725" width="579" height="15" fill="rgb(252,65,12)"/><text text-anchor="left" x="580.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">[unknown]</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::borrow_check::do_mir_borrowck (1 samples, 0.06%)</title><rect x="1155" y="709" width="1" height="15" fill="rgb(246,71,9)"/><text text-anchor="left" x="1158.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::borrow_check::nll::compute_regions (1 samples, 0.06%)</title><rect x="1155" y="693" width="1" height="15" fill="rgb(214,160,11)"/><text text-anchor="left" x="1158.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::borrow_check::type_check::type_check (1 samples, 0.06%)</title><rect x="1155" y="677" width="1" height="15" fill="rgb(213,218,40)"/><text text-anchor="left" x="1158.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::borrow_check::type_check::TypeChecker::typeck_mir (1 samples, 0.06%)</title><rect x="1155" y="661" width="1" height="15" fill="rgb(218,39,48)"/><text text-anchor="left" x="1158.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_mir::borrow_check::type_check::TypeChecker::check_rvalue (1 samples, 0.06%)</title><rect x="1155" y="645" width="1" height="15" fill="rgb(228,159,50)"/><text text-anchor="left" x="1158.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::query::plumbing::&lt;impl rustc::ty::context::TyCtxt&gt;::get_query (1 samples, 0.06%)</title><rect x="1155" y="629" width="1" height="15" fill="rgb(212,8,11)"/><text text-anchor="left" x="1158.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::map::HashMap&lt;K,V,S&gt;::insert (1 samples, 0.06%)</title><rect x="1155" y="613" width="1" height="15" fill="rgb(241,87,9)"/><text text-anchor="left" x="1158.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>hashbrown::raw::RawTable&lt;T&gt;::insert (1 samples, 0.06%)</title><rect x="1155" y="597" width="1" height="15" fill="rgb(212,154,36)"/><text text-anchor="left" x="1158.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_enable_all.constprop.25 (34 samples, 1.98%)</title><rect x="1157" y="645" width="24" height="15" fill="rgb(232,223,19)"/><text text-anchor="left" x="1160.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>native_write_msr (34 samples, 1.98%)</title><rect x="1157" y="629" width="24" height="15" fill="rgb(244,177,14)"/><text text-anchor="left" x="1160.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">n..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ret_from_fork (35 samples, 2.03%)</title><rect x="1157" y="709" width="24" height="15" fill="rgb(250,144,20)"/><text text-anchor="left" x="1160.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">r..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>schedule_tail (35 samples, 2.03%)</title><rect x="1157" y="693" width="24" height="15" fill="rgb(211,127,26)"/><text text-anchor="left" x="1160.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">s..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>finish_task_switch (35 samples, 2.03%)</title><rect x="1157" y="677" width="24" height="15" fill="rgb(208,78,36)"/><text text-anchor="left" x="1160.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">f..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event_task_sched_in (35 samples, 2.03%)</title><rect x="1157" y="661" width="24" height="15" fill="rgb(243,21,45)"/><text text-anchor="left" x="1160.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">_..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_pmu_sched_task (1 samples, 0.06%)</title><rect x="1181" y="645" width="0" height="15" fill="rgb(252,102,12)"/><text text-anchor="left" x="1184.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="1181" y="629" width="0" height="15" fill="rgb(248,191,49)"/><text text-anchor="left" x="1184.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__intel_pmu_disable_all (1 samples, 0.06%)</title><rect x="1181" y="613" width="0" height="15" fill="rgb(206,36,26)"/><text text-anchor="left" x="1184.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__ctype_init@plt (1 samples, 0.06%)</title><rect x="1182" y="693" width="1" height="15" fill="rgb(239,208,52)"/><text text-anchor="left" x="1185.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::LLVMTargetMachine::addPassesToEmitFile (1 samples, 0.06%)</title><rect x="1183" y="501" width="0" height="15" fill="rgb(223,34,39)"/><text text-anchor="left" x="1186.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::TargetPassConfig::addISelPasses (1 samples, 0.06%)</title><rect x="1183" y="485" width="0" height="15" fill="rgb(226,181,30)"/><text text-anchor="left" x="1186.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::TargetPassConfig::addIRPasses (1 samples, 0.06%)</title><rect x="1183" y="469" width="0" height="15" fill="rgb(247,135,34)"/><text text-anchor="left" x="1186.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::TargetPassConfig::addPass (1 samples, 0.06%)</title><rect x="1183" y="453" width="0" height="15" fill="rgb(235,27,16)"/><text text-anchor="left" x="1186.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::PMTopLevelManager::schedulePass (1 samples, 0.06%)</title><rect x="1183" y="437" width="0" height="15" fill="rgb(223,171,47)"/><text text-anchor="left" x="1186.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::callDefaultCtor&lt;llvm::DominatorTreeWrapperPass&gt; (1 samples, 0.06%)</title><rect x="1183" y="421" width="0" height="15" fill="rgb(239,156,45)"/><text text-anchor="left" x="1186.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>operator new (1 samples, 0.06%)</title><rect x="1183" y="405" width="0" height="15" fill="rgb(223,199,11)"/><text text-anchor="left" x="1186.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc (1 samples, 0.06%)</title><rect x="1183" y="389" width="0" height="15" fill="rgb(220,140,51)"/><text text-anchor="left" x="1186.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc (1 samples, 0.06%)</title><rect x="1183" y="373" width="0" height="15" fill="rgb(241,106,47)"/><text text-anchor="left" x="1186.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_body (1 samples, 0.06%)</title><rect x="1183" y="357" width="0" height="15" fill="rgb(240,69,24)"/><text text-anchor="left" x="1186.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_no_sample (1 samples, 0.06%)</title><rect x="1183" y="341" width="0" height="15" fill="rgb(215,180,44)"/><text text-anchor="left" x="1186.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>iallocztm (1 samples, 0.06%)</title><rect x="1183" y="325" width="0" height="15" fill="rgb(222,197,26)"/><text text-anchor="left" x="1186.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_malloc (1 samples, 0.06%)</title><rect x="1183" y="309" width="0" height="15" fill="rgb(252,158,27)"/><text text-anchor="left" x="1186.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tcache_alloc_small (1 samples, 0.06%)</title><rect x="1183" y="293" width="0" height="15" fill="rgb(221,97,24)"/><text text-anchor="left" x="1186.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.06%)</title><rect x="1183" y="277" width="0" height="15" fill="rgb(252,69,16)"/><text text-anchor="left" x="1186.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_tcache_fill_small (1 samples, 0.06%)</title><rect x="1183" y="261" width="0" height="15" fill="rgb(228,101,47)"/><text text-anchor="left" x="1186.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_malloc_hard (1 samples, 0.06%)</title><rect x="1183" y="245" width="0" height="15" fill="rgb(226,189,28)"/><text text-anchor="left" x="1186.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_nonfull_slab_get (1 samples, 0.06%)</title><rect x="1183" y="229" width="0" height="15" fill="rgb(253,206,18)"/><text text-anchor="left" x="1186.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_slab_alloc (1 samples, 0.06%)</title><rect x="1183" y="213" width="0" height="15" fill="rgb(230,20,32)"/><text text-anchor="left" x="1186.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_extents_alloc (1 samples, 0.06%)</title><rect x="1183" y="197" width="0" height="15" fill="rgb(249,101,12)"/><text text-anchor="left" x="1186.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle (1 samples, 0.06%)</title><rect x="1183" y="181" width="0" height="15" fill="rgb(235,99,24)"/><text text-anchor="left" x="1186.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle_split (1 samples, 0.06%)</title><rect x="1183" y="165" width="0" height="15" fill="rgb(240,185,12)"/><text text-anchor="left" x="1186.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_split_interior (1 samples, 0.06%)</title><rect x="1183" y="149" width="0" height="15" fill="rgb(232,130,17)"/><text text-anchor="left" x="1186.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_llvm::back::write::codegen (2 samples, 0.12%)</title><rect x="1183" y="549" width="1" height="15" fill="rgb(230,6,2)"/><text text-anchor="left" x="1186.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_llvm::back::write::write_output_file (2 samples, 0.12%)</title><rect x="1183" y="533" width="1" height="15" fill="rgb(215,23,44)"/><text text-anchor="left" x="1186.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>LLVMRustWriteOutputFile (2 samples, 0.12%)</title><rect x="1183" y="517" width="1" height="15" fill="rgb(207,154,25)"/><text text-anchor="left" x="1186.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::legacy::PassManagerImpl::run (1 samples, 0.06%)</title><rect x="1183" y="501" width="1" height="15" fill="rgb(221,50,33)"/><text text-anchor="left" x="1186.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::FPPassManager::doInitialization (1 samples, 0.06%)</title><rect x="1183" y="485" width="1" height="15" fill="rgb(228,137,14)"/><text text-anchor="left" x="1186.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::AsmPrinter::doInitialization (1 samples, 0.06%)</title><rect x="1183" y="469" width="1" height="15" fill="rgb(225,28,20)"/><text text-anchor="left" x="1186.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::sys::path::reverse_iterator::operator++ (1 samples, 0.06%)</title><rect x="1183" y="453" width="1" height="15" fill="rgb(205,220,11)"/><text text-anchor="left" x="1186.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::PMTopLevelManager::findAnalysisPassInfo (1 samples, 0.06%)</title><rect x="1184" y="501" width="1" height="15" fill="rgb(248,162,18)"/><text text-anchor="left" x="1187.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::DenseMapBase&lt;llvm::DenseMap&lt;void const*, llvm::PassInfo const*, llvm::DenseMapInfo&lt;void const*&gt;, llvm::detail::DenseMapPair&lt;void const*, llvm::PassInfo const*&gt; &gt;, void const*, llvm::PassInfo const*, llvm::DenseMapInfo&lt;void const*&gt;, llvm::detail::DenseMapPair&lt;void const*, llvm::PassInfo const*&gt; &gt;::InsertIntoBucketImpl&lt;void const*&gt; (1 samples, 0.06%)</title><rect x="1184" y="485" width="1" height="15" fill="rgb(247,66,48)"/><text text-anchor="left" x="1187.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>operator new (1 samples, 0.06%)</title><rect x="1184" y="469" width="1" height="15" fill="rgb(220,130,9)"/><text text-anchor="left" x="1187.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc (1 samples, 0.06%)</title><rect x="1184" y="453" width="1" height="15" fill="rgb(207,92,6)"/><text text-anchor="left" x="1187.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc (1 samples, 0.06%)</title><rect x="1184" y="437" width="1" height="15" fill="rgb(207,79,45)"/><text text-anchor="left" x="1187.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_body (1 samples, 0.06%)</title><rect x="1184" y="421" width="1" height="15" fill="rgb(209,217,54)"/><text text-anchor="left" x="1187.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_no_sample (1 samples, 0.06%)</title><rect x="1184" y="405" width="1" height="15" fill="rgb(229,179,50)"/><text text-anchor="left" x="1187.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>iallocztm (1 samples, 0.06%)</title><rect x="1184" y="389" width="1" height="15" fill="rgb(241,194,21)"/><text text-anchor="left" x="1187.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_malloc (1 samples, 0.06%)</title><rect x="1184" y="373" width="1" height="15" fill="rgb(253,18,41)"/><text text-anchor="left" x="1187.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tcache_alloc_small (1 samples, 0.06%)</title><rect x="1184" y="357" width="1" height="15" fill="rgb(215,80,45)"/><text text-anchor="left" x="1187.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.06%)</title><rect x="1184" y="341" width="1" height="15" fill="rgb(228,135,16)"/><text text-anchor="left" x="1187.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_tcache_fill_small (1 samples, 0.06%)</title><rect x="1184" y="325" width="1" height="15" fill="rgb(225,226,10)"/><text text-anchor="left" x="1187.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_malloc_hard (1 samples, 0.06%)</title><rect x="1184" y="309" width="1" height="15" fill="rgb(230,154,6)"/><text text-anchor="left" x="1187.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_nonfull_slab_get (1 samples, 0.06%)</title><rect x="1184" y="293" width="1" height="15" fill="rgb(238,128,48)"/><text text-anchor="left" x="1187.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_slab_alloc (1 samples, 0.06%)</title><rect x="1184" y="277" width="1" height="15" fill="rgb(241,141,38)"/><text text-anchor="left" x="1187.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_slab_alloc_hard (1 samples, 0.06%)</title><rect x="1184" y="261" width="1" height="15" fill="rgb(252,16,1)"/><text text-anchor="left" x="1187.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_extent_alloc_wrapper (1 samples, 0.06%)</title><rect x="1184" y="245" width="1" height="15" fill="rgb(210,222,21)"/><text text-anchor="left" x="1187.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_alloc_retained (1 samples, 0.06%)</title><rect x="1184" y="229" width="1" height="15" fill="rgb(248,91,9)"/><text text-anchor="left" x="1187.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle (1 samples, 0.06%)</title><rect x="1184" y="213" width="1" height="15" fill="rgb(242,52,26)"/><text text-anchor="left" x="1187.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle_split (1 samples, 0.06%)</title><rect x="1184" y="197" width="1" height="15" fill="rgb(235,25,3)"/><text text-anchor="left" x="1187.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_split_interior (1 samples, 0.06%)</title><rect x="1184" y="181" width="1" height="15" fill="rgb(245,20,13)"/><text text-anchor="left" x="1187.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_split_impl (1 samples, 0.06%)</title><rect x="1184" y="165" width="1" height="15" fill="rgb(225,115,48)"/><text text-anchor="left" x="1187.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_unlock2 (1 samples, 0.06%)</title><rect x="1184" y="149" width="1" height="15" fill="rgb(205,193,32)"/><text text-anchor="left" x="1187.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>mutex_pool_unlock2 (1 samples, 0.06%)</title><rect x="1184" y="133" width="1" height="15" fill="rgb(240,168,13)"/><text text-anchor="left" x="1187.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc_mutex_unlock (1 samples, 0.06%)</title><rect x="1184" y="117" width="1" height="15" fill="rgb(219,89,29)"/><text text-anchor="left" x="1187.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_mutex_unlock_usercnt (1 samples, 0.06%)</title><rect x="1184" y="101" width="1" height="15" fill="rgb(223,10,34)"/><text text-anchor="left" x="1187.00" y="111.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__rust_maybe_catch_panic (4 samples, 0.23%)</title><rect x="1183" y="613" width="2" height="15" fill="rgb(251,151,39)"/><text text-anchor="left" x="1186.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::panicking::try::do_call (4 samples, 0.23%)</title><rect x="1183" y="597" width="2" height="15" fill="rgb(250,142,30)"/><text text-anchor="left" x="1186.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys_common::backtrace::__rust_begin_short_backtrace (4 samples, 0.23%)</title><rect x="1183" y="581" width="2" height="15" fill="rgb(254,66,28)"/><text text-anchor="left" x="1186.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_ssa::back::write::execute_work_item (4 samples, 0.23%)</title><rect x="1183" y="565" width="2" height="15" fill="rgb(245,210,19)"/><text text-anchor="left" x="1186.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc_codegen_llvm::back::write::optimize (2 samples, 0.12%)</title><rect x="1184" y="549" width="1" height="15" fill="rgb(208,202,36)"/><text text-anchor="left" x="1187.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>LLVMAddAnalysisPasses (2 samples, 0.12%)</title><rect x="1184" y="533" width="1" height="15" fill="rgb(243,28,47)"/><text text-anchor="left" x="1187.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::PMTopLevelManager::schedulePass (2 samples, 0.12%)</title><rect x="1184" y="517" width="1" height="15" fill="rgb(246,19,21)"/><text text-anchor="left" x="1187.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::PMTopLevelManager::findAnalysisUsage (1 samples, 0.06%)</title><rect x="1185" y="501" width="0" height="15" fill="rgb(206,166,3)"/><text text-anchor="left" x="1188.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>llvm::BumpPtrAllocatorImpl&lt;llvm::MallocAllocator, 4096ul, 4096ul&gt;::Allocate (1 samples, 0.06%)</title><rect x="1185" y="485" width="0" height="15" fill="rgb(221,13,50)"/><text text-anchor="left" x="1188.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc (1 samples, 0.06%)</title><rect x="1185" y="469" width="0" height="15" fill="rgb(246,6,38)"/><text text-anchor="left" x="1188.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc (1 samples, 0.06%)</title><rect x="1185" y="453" width="0" height="15" fill="rgb(216,52,23)"/><text text-anchor="left" x="1188.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_body (1 samples, 0.06%)</title><rect x="1185" y="437" width="0" height="15" fill="rgb(237,156,48)"/><text text-anchor="left" x="1188.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_no_sample (1 samples, 0.06%)</title><rect x="1185" y="421" width="0" height="15" fill="rgb(225,112,37)"/><text text-anchor="left" x="1188.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>iallocztm (1 samples, 0.06%)</title><rect x="1185" y="405" width="0" height="15" fill="rgb(233,157,14)"/><text text-anchor="left" x="1188.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_malloc (1 samples, 0.06%)</title><rect x="1185" y="389" width="0" height="15" fill="rgb(218,229,42)"/><text text-anchor="left" x="1188.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tcache_alloc_small (1 samples, 0.06%)</title><rect x="1185" y="373" width="0" height="15" fill="rgb(245,49,45)"/><text text-anchor="left" x="1188.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.06%)</title><rect x="1185" y="357" width="0" height="15" fill="rgb(209,93,19)"/><text text-anchor="left" x="1188.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_tcache_fill_small (1 samples, 0.06%)</title><rect x="1185" y="341" width="0" height="15" fill="rgb(235,50,46)"/><text text-anchor="left" x="1188.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_malloc_hard (1 samples, 0.06%)</title><rect x="1185" y="325" width="0" height="15" fill="rgb(232,142,42)"/><text text-anchor="left" x="1188.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_bin_nonfull_slab_get (1 samples, 0.06%)</title><rect x="1185" y="309" width="0" height="15" fill="rgb(253,46,28)"/><text text-anchor="left" x="1188.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_slab_alloc (1 samples, 0.06%)</title><rect x="1185" y="293" width="0" height="15" fill="rgb(213,166,12)"/><text text-anchor="left" x="1188.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_slab_alloc_hard (1 samples, 0.06%)</title><rect x="1185" y="277" width="0" height="15" fill="rgb(228,126,39)"/><text text-anchor="left" x="1188.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_extent_alloc_wrapper (1 samples, 0.06%)</title><rect x="1185" y="261" width="0" height="15" fill="rgb(245,30,52)"/><text text-anchor="left" x="1188.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_alloc_retained (1 samples, 0.06%)</title><rect x="1185" y="245" width="0" height="15" fill="rgb(248,181,1)"/><text text-anchor="left" x="1188.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle (1 samples, 0.06%)</title><rect x="1185" y="229" width="0" height="15" fill="rgb(238,202,0)"/><text text-anchor="left" x="1188.00" y="239.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_recycle_split (1 samples, 0.06%)</title><rect x="1185" y="213" width="0" height="15" fill="rgb(253,221,38)"/><text text-anchor="left" x="1188.00" y="223.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_split_interior (1 samples, 0.06%)</title><rect x="1185" y="197" width="0" height="15" fill="rgb(237,37,38)"/><text text-anchor="left" x="1188.00" y="207.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_split_impl (1 samples, 0.06%)</title><rect x="1185" y="181" width="0" height="15" fill="rgb(225,48,4)"/><text text-anchor="left" x="1188.00" y="191.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>extent_unlock2 (1 samples, 0.06%)</title><rect x="1185" y="165" width="0" height="15" fill="rgb(229,42,34)"/><text text-anchor="left" x="1188.00" y="175.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>mutex_pool_unlock2 (1 samples, 0.06%)</title><rect x="1185" y="149" width="0" height="15" fill="rgb(239,4,17)"/><text text-anchor="left" x="1188.00" y="159.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc_mutex_unlock (1 samples, 0.06%)</title><rect x="1185" y="133" width="0" height="15" fill="rgb(246,25,17)"/><text text-anchor="left" x="1188.00" y="143.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_mutex_unlock_usercnt (1 samples, 0.06%)</title><rect x="1185" y="117" width="0" height="15" fill="rgb(240,224,12)"/><text text-anchor="left" x="1188.00" y="127.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h23180651a68a6178 (5 samples, 0.29%)</title><rect x="1183" y="629" width="3" height="15" fill="rgb(216,126,26)"/><text text-anchor="left" x="1186.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::thread::guard::current (1 samples, 0.06%)</title><rect x="1185" y="613" width="1" height="15" fill="rgb(234,209,9)"/><text text-anchor="left" x="1188.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pthread_getattr_np (1 samples, 0.06%)</title><rect x="1185" y="597" width="1" height="15" fill="rgb(247,216,6)"/><text text-anchor="left" x="1188.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_getaffinity_new (1 samples, 0.06%)</title><rect x="1185" y="581" width="1" height="15" fill="rgb(229,6,6)"/><text text-anchor="left" x="1188.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="1185" y="565" width="1" height="15" fill="rgb(247,78,27)"/><text text-anchor="left" x="1188.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="1185" y="549" width="1" height="15" fill="rgb(210,107,47)"/><text text-anchor="left" x="1188.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_sched_getaffinity (1 samples, 0.06%)</title><rect x="1185" y="533" width="1" height="15" fill="rgb(238,136,42)"/><text text-anchor="left" x="1188.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_copy_to_user (1 samples, 0.06%)</title><rect x="1185" y="517" width="1" height="15" fill="rgb(235,92,33)"/><text text-anchor="left" x="1188.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>copy_user_generic_string (1 samples, 0.06%)</title><rect x="1185" y="501" width="1" height="15" fill="rgb(216,165,29)"/><text text-anchor="left" x="1188.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="1185" y="485" width="1" height="15" fill="rgb(206,147,22)"/><text text-anchor="left" x="1188.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="1185" y="469" width="1" height="15" fill="rgb(232,90,25)"/><text text-anchor="left" x="1188.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>handle_mm_fault (1 samples, 0.06%)</title><rect x="1185" y="453" width="1" height="15" fill="rgb(251,204,26)"/><text text-anchor="left" x="1188.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__handle_mm_fault (1 samples, 0.06%)</title><rect x="1185" y="437" width="1" height="15" fill="rgb(244,67,12)"/><text text-anchor="left" x="1188.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_huge_pmd_anonymous_page (1 samples, 0.06%)</title><rect x="1185" y="421" width="1" height="15" fill="rgb(210,78,0)"/><text text-anchor="left" x="1188.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_huge_page (1 samples, 0.06%)</title><rect x="1185" y="405" width="1" height="15" fill="rgb(218,113,21)"/><text text-anchor="left" x="1188.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_subpage (1 samples, 0.06%)</title><rect x="1185" y="389" width="1" height="15" fill="rgb(228,37,17)"/><text text-anchor="left" x="1188.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_page_rep (1 samples, 0.06%)</title><rect x="1185" y="373" width="1" height="15" fill="rgb(205,95,4)"/><text text-anchor="left" x="1188.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h5fe2a01c6bfa2dbd (1 samples, 0.06%)</title><rect x="1186" y="629" width="1" height="15" fill="rgb(242,113,5)"/><text text-anchor="left" x="1189.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::thread::guard::current (1 samples, 0.06%)</title><rect x="1186" y="613" width="1" height="15" fill="rgb(219,112,19)"/><text text-anchor="left" x="1189.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pthread_getattr_np (1 samples, 0.06%)</title><rect x="1186" y="597" width="1" height="15" fill="rgb(229,0,25)"/><text text-anchor="left" x="1189.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc (1 samples, 0.06%)</title><rect x="1186" y="581" width="1" height="15" fill="rgb(237,126,13)"/><text text-anchor="left" x="1189.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc (1 samples, 0.06%)</title><rect x="1186" y="565" width="1" height="15" fill="rgb(247,15,2)"/><text text-anchor="left" x="1189.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_body (1 samples, 0.06%)</title><rect x="1186" y="549" width="1" height="15" fill="rgb(227,58,6)"/><text text-anchor="left" x="1189.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc_no_sample (1 samples, 0.06%)</title><rect x="1186" y="533" width="1" height="15" fill="rgb(222,221,29)"/><text text-anchor="left" x="1189.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>iallocztm (1 samples, 0.06%)</title><rect x="1186" y="517" width="1" height="15" fill="rgb(235,159,21)"/><text text-anchor="left" x="1189.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_malloc (1 samples, 0.06%)</title><rect x="1186" y="501" width="1" height="15" fill="rgb(219,149,47)"/><text text-anchor="left" x="1189.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tcache_alloc_small (1 samples, 0.06%)</title><rect x="1186" y="485" width="1" height="15" fill="rgb(251,113,29)"/><text text-anchor="left" x="1189.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tcache_alloc_small_hard (1 samples, 0.06%)</title><rect x="1186" y="469" width="1" height="15" fill="rgb(232,13,10)"/><text text-anchor="left" x="1189.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_tcache_fill_small (1 samples, 0.06%)</title><rect x="1186" y="453" width="1" height="15" fill="rgb(217,141,26)"/><text text-anchor="left" x="1189.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h61bac4771749011c (1 samples, 0.06%)</title><rect x="1187" y="629" width="0" height="15" fill="rgb(205,120,17)"/><text text-anchor="left" x="1190.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::thread::guard::current (1 samples, 0.06%)</title><rect x="1187" y="613" width="0" height="15" fill="rgb(226,72,36)"/><text text-anchor="left" x="1190.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pthread_getattr_np (1 samples, 0.06%)</title><rect x="1187" y="597" width="0" height="15" fill="rgb(254,164,35)"/><text text-anchor="left" x="1190.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__pthread_getaffinity_new (1 samples, 0.06%)</title><rect x="1187" y="581" width="0" height="15" fill="rgb(218,175,53)"/><text text-anchor="left" x="1190.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="1187" y="565" width="0" height="15" fill="rgb(247,191,5)"/><text text-anchor="left" x="1190.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="1187" y="549" width="0" height="15" fill="rgb(243,199,35)"/><text text-anchor="left" x="1190.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__x64_sys_sched_getaffinity (1 samples, 0.06%)</title><rect x="1187" y="533" width="0" height="15" fill="rgb(227,50,3)"/><text text-anchor="left" x="1190.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_copy_to_user (1 samples, 0.06%)</title><rect x="1187" y="517" width="0" height="15" fill="rgb(231,126,43)"/><text text-anchor="left" x="1190.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>copy_user_generic_string (1 samples, 0.06%)</title><rect x="1187" y="501" width="0" height="15" fill="rgb(224,56,13)"/><text text-anchor="left" x="1190.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="1187" y="485" width="0" height="15" fill="rgb(235,46,2)"/><text text-anchor="left" x="1190.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="1187" y="469" width="0" height="15" fill="rgb(218,11,38)"/><text text-anchor="left" x="1190.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>handle_mm_fault (1 samples, 0.06%)</title><rect x="1187" y="453" width="0" height="15" fill="rgb(240,160,12)"/><text text-anchor="left" x="1190.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__handle_mm_fault (1 samples, 0.06%)</title><rect x="1187" y="437" width="0" height="15" fill="rgb(209,188,52)"/><text text-anchor="left" x="1190.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_huge_pmd_anonymous_page (1 samples, 0.06%)</title><rect x="1187" y="421" width="0" height="15" fill="rgb(236,28,42)"/><text text-anchor="left" x="1190.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_huge_page (1 samples, 0.06%)</title><rect x="1187" y="405" width="0" height="15" fill="rgb(250,9,1)"/><text text-anchor="left" x="1190.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_subpage (1 samples, 0.06%)</title><rect x="1187" y="389" width="0" height="15" fill="rgb(229,2,35)"/><text text-anchor="left" x="1190.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_page_rep (1 samples, 0.06%)</title><rect x="1187" y="373" width="0" height="15" fill="rgb(210,160,34)"/><text text-anchor="left" x="1190.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__GI___clone (47 samples, 2.73%)</title><rect x="1156" y="725" width="32" height="15" fill="rgb(239,192,30)"/><text text-anchor="left" x="1159.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">__..</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>start_thread (10 samples, 0.58%)</title><rect x="1181" y="709" width="7" height="15" fill="rgb(216,99,12)"/><text text-anchor="left" x="1184.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::thread::Thread::new::thread_start (8 samples, 0.46%)</title><rect x="1183" y="693" width="5" height="15" fill="rgb(221,137,29)"/><text text-anchor="left" x="1186.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys_common::thread::start_thread (8 samples, 0.46%)</title><rect x="1183" y="677" width="5" height="15" fill="rgb(246,6,3)"/><text text-anchor="left" x="1186.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once (8 samples, 0.46%)</title><rect x="1183" y="661" width="5" height="15" fill="rgb(211,184,30)"/><text text-anchor="left" x="1186.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>&lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once (8 samples, 0.46%)</title><rect x="1183" y="645" width="5" height="15" fill="rgb(236,47,0)"/><text text-anchor="left" x="1186.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::he9dfd9d512a52f12 (1 samples, 0.06%)</title><rect x="1187" y="629" width="1" height="15" fill="rgb(220,169,44)"/><text text-anchor="left" x="1190.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>std::sys::unix::thread::guard::current (1 samples, 0.06%)</title><rect x="1187" y="613" width="1" height="15" fill="rgb(213,161,11)"/><text text-anchor="left" x="1190.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>pthread_getattr_np (1 samples, 0.06%)</title><rect x="1187" y="597" width="1" height="15" fill="rgb(231,101,22)"/><text text-anchor="left" x="1190.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>malloc (1 samples, 0.06%)</title><rect x="1187" y="581" width="1" height="15" fill="rgb(208,11,19)"/><text text-anchor="left" x="1190.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>imalloc (1 samples, 0.06%)</title><rect x="1187" y="565" width="1" height="15" fill="rgb(232,213,26)"/><text text-anchor="left" x="1190.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tsd_fetch (1 samples, 0.06%)</title><rect x="1187" y="549" width="1" height="15" fill="rgb(207,13,35)"/><text text-anchor="left" x="1190.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>tsd_fetch_impl (1 samples, 0.06%)</title><rect x="1187" y="533" width="1" height="15" fill="rgb(247,109,34)"/><text text-anchor="left" x="1190.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tsd_fetch_slow (1 samples, 0.06%)</title><rect x="1187" y="517" width="1" height="15" fill="rgb(210,182,35)"/><text text-anchor="left" x="1190.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tsd_tcache_enabled_data_init (1 samples, 0.06%)</title><rect x="1187" y="501" width="1" height="15" fill="rgb(227,134,3)"/><text text-anchor="left" x="1190.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_tsd_tcache_data_init (1 samples, 0.06%)</title><rect x="1187" y="485" width="1" height="15" fill="rgb(225,0,32)"/><text text-anchor="left" x="1190.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_choose (1 samples, 0.06%)</title><rect x="1187" y="469" width="1" height="15" fill="rgb(206,88,16)"/><text text-anchor="left" x="1190.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_choose_impl (1 samples, 0.06%)</title><rect x="1187" y="453" width="1" height="15" fill="rgb(227,169,43)"/><text text-anchor="left" x="1190.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_choose_hard (1 samples, 0.06%)</title><rect x="1187" y="437" width="1" height="15" fill="rgb(235,78,11)"/><text text-anchor="left" x="1190.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>arena_init_locked (1 samples, 0.06%)</title><rect x="1187" y="421" width="1" height="15" fill="rgb(249,25,36)"/><text text-anchor="left" x="1190.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_arena_new (1 samples, 0.06%)</title><rect x="1187" y="405" width="1" height="15" fill="rgb(223,195,33)"/><text text-anchor="left" x="1190.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_rjem_je_base_new (1 samples, 0.06%)</title><rect x="1187" y="389" width="1" height="15" fill="rgb(252,43,3)"/><text text-anchor="left" x="1190.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>base_block_alloc (1 samples, 0.06%)</title><rect x="1187" y="373" width="1" height="15" fill="rgb(253,92,12)"/><text text-anchor="left" x="1190.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>page_fault (1 samples, 0.06%)</title><rect x="1187" y="357" width="1" height="15" fill="rgb(229,4,31)"/><text text-anchor="left" x="1190.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__do_page_fault (1 samples, 0.06%)</title><rect x="1187" y="341" width="1" height="15" fill="rgb(209,156,23)"/><text text-anchor="left" x="1190.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>handle_mm_fault (1 samples, 0.06%)</title><rect x="1187" y="325" width="1" height="15" fill="rgb(215,97,23)"/><text text-anchor="left" x="1190.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__handle_mm_fault (1 samples, 0.06%)</title><rect x="1187" y="309" width="1" height="15" fill="rgb(206,133,11)"/><text text-anchor="left" x="1190.00" y="319.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_huge_pmd_anonymous_page (1 samples, 0.06%)</title><rect x="1187" y="293" width="1" height="15" fill="rgb(210,130,52)"/><text text-anchor="left" x="1190.00" y="303.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_huge_page (1 samples, 0.06%)</title><rect x="1187" y="277" width="1" height="15" fill="rgb(216,134,19)"/><text text-anchor="left" x="1190.00" y="287.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_subpage (1 samples, 0.06%)</title><rect x="1187" y="261" width="1" height="15" fill="rgb(239,55,26)"/><text text-anchor="left" x="1190.00" y="271.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>clear_page_rep (1 samples, 0.06%)</title><rect x="1187" y="245" width="1" height="15" fill="rgb(247,92,13)"/><text text-anchor="left" x="1190.00" y="255.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_start (1 samples, 0.06%)</title><rect x="1188" y="725" width="1" height="15" fill="rgb(215,14,52)"/><text text-anchor="left" x="1191.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_start (1 samples, 0.06%)</title><rect x="1188" y="709" width="1" height="15" fill="rgb(212,228,27)"/><text text-anchor="left" x="1191.00" y="719.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_start_final (1 samples, 0.06%)</title><rect x="1188" y="693" width="1" height="15" fill="rgb(222,14,53)"/><text text-anchor="left" x="1191.00" y="703.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_sysdep_start (1 samples, 0.06%)</title><rect x="1188" y="677" width="1" height="15" fill="rgb(232,186,46)"/><text text-anchor="left" x="1191.00" y="687.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>dl_main (1 samples, 0.06%)</title><rect x="1188" y="661" width="1" height="15" fill="rgb(225,167,38)"/><text text-anchor="left" x="1191.00" y="671.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_object_deps (1 samples, 0.06%)</title><rect x="1188" y="645" width="1" height="15" fill="rgb(229,43,0)"/><text text-anchor="left" x="1191.00" y="655.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_catch_exception (1 samples, 0.06%)</title><rect x="1188" y="629" width="1" height="15" fill="rgb(235,194,8)"/><text text-anchor="left" x="1191.00" y="639.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>openaux (1 samples, 0.06%)</title><rect x="1188" y="613" width="1" height="15" fill="rgb(210,160,22)"/><text text-anchor="left" x="1191.00" y="623.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_object (1 samples, 0.06%)</title><rect x="1188" y="597" width="1" height="15" fill="rgb(229,208,12)"/><text text-anchor="left" x="1191.00" y="607.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_object_from_fd (1 samples, 0.06%)</title><rect x="1188" y="581" width="1" height="15" fill="rgb(232,66,20)"/><text text-anchor="left" x="1191.00" y="591.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>_dl_map_segments (1 samples, 0.06%)</title><rect x="1188" y="565" width="1" height="15" fill="rgb(234,107,23)"/><text text-anchor="left" x="1191.00" y="575.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__mmap64 (1 samples, 0.06%)</title><rect x="1188" y="549" width="1" height="15" fill="rgb(241,72,17)"/><text text-anchor="left" x="1191.00" y="559.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__mmap64 (1 samples, 0.06%)</title><rect x="1188" y="533" width="1" height="15" fill="rgb(207,154,20)"/><text text-anchor="left" x="1191.00" y="543.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>entry_SYSCALL_64_after_hwframe (1 samples, 0.06%)</title><rect x="1188" y="517" width="1" height="15" fill="rgb(238,180,44)"/><text text-anchor="left" x="1191.00" y="527.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_syscall_64 (1 samples, 0.06%)</title><rect x="1188" y="501" width="1" height="15" fill="rgb(229,186,14)"/><text text-anchor="left" x="1191.00" y="511.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>ksys_mmap_pgoff (1 samples, 0.06%)</title><rect x="1188" y="485" width="1" height="15" fill="rgb(235,36,29)"/><text text-anchor="left" x="1191.00" y="495.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>vm_mmap_pgoff (1 samples, 0.06%)</title><rect x="1188" y="469" width="1" height="15" fill="rgb(248,69,14)"/><text text-anchor="left" x="1191.00" y="479.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>do_mmap (1 samples, 0.06%)</title><rect x="1188" y="453" width="1" height="15" fill="rgb(210,216,43)"/><text text-anchor="left" x="1191.00" y="463.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>mmap_region (1 samples, 0.06%)</title><rect x="1188" y="437" width="1" height="15" fill="rgb(218,203,36)"/><text text-anchor="left" x="1191.00" y="447.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_event_mmap (1 samples, 0.06%)</title><rect x="1188" y="421" width="1" height="15" fill="rgb(244,116,46)"/><text text-anchor="left" x="1191.00" y="431.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_iterate_sb (1 samples, 0.06%)</title><rect x="1188" y="405" width="1" height="15" fill="rgb(207,95,26)"/><text text-anchor="left" x="1191.00" y="415.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_iterate_ctx (1 samples, 0.06%)</title><rect x="1188" y="389" width="1" height="15" fill="rgb(217,114,13)"/><text text-anchor="left" x="1191.00" y="399.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_event_mmap_output (1 samples, 0.06%)</title><rect x="1188" y="373" width="1" height="15" fill="rgb(209,202,45)"/><text text-anchor="left" x="1191.00" y="383.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>__perf_event__output_id_sample (1 samples, 0.06%)</title><rect x="1188" y="357" width="1" height="15" fill="rgb(207,195,31)"/><text text-anchor="left" x="1191.00" y="367.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>perf_output_copy (1 samples, 0.06%)</title><rect x="1188" y="341" width="1" height="15" fill="rgb(207,179,7)"/><text text-anchor="left" x="1191.00" y="351.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>memcpy (1 samples, 0.06%)</title><rect x="1188" y="325" width="1" height="15" fill="rgb(236,192,48)"/><text text-anchor="left" x="1191.00" y="335.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>all (1,721 samples, 100%)</title><rect x="10" y="757" width="1180" height="15" fill="rgb(244,190,4)"/><text text-anchor="left" x="13.00" y="767.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc (1,013 samples, 58.86%)</title><rect x="495" y="741" width="695" height="15" fill="rgb(222,31,11)"/><text text-anchor="left" x="498.00" y="751.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)">rustc</text></g><g class="func_g" onmouseover="s(this)" onmouseout="c()" onclick="zoom(this)"><title>rustc::ty::relate::TypeRelation::relate (1 samples, 0.06%)</title><rect x="1189" y="725" width="1" height="15" fill="rgb(236,111,24)"/><text text-anchor="left" x="1192.00" y="735.50" font-size="12" font-family="Verdana" fill="rgb(0, 0, 0)"></text></g></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment