Skip to content

Instantly share code, notes, and snippets.

@taegyunkim
Last active February 14, 2020 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taegyunkim/ed3111b469aee22c1a577e4c2c428631 to your computer and use it in GitHub Desktop.
Save taegyunkim/ed3111b469aee22c1a577e4c2c428631 to your computer and use it in GitHub Desktop.
CPU time analysis for `cargo run --release ./examples/hackers_delight/p1.wat` @ b4c89610
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="1094" onload="init(evt)" viewBox="0 0 1200 1094" 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. -->
<!-- NOTES: -->
<defs>
<linearGradient id="background" y1="0" y2="1" x1="0" x2="0" >
<stop stop-color="#eeeeee" offset="5%" />
<stop stop-color="#eeeeb0" offset="95%" />
</linearGradient>
</defs>
<style type="text/css">
text { font-family:Verdana; font-size:12px; fill:rgb(0,0,0); }
#search, #ignorecase { opacity:0.1; cursor:pointer; }
#search:hover, #search.show, #ignorecase:hover, #ignorecase.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#title { text-anchor:middle; font-size:17px}
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style>
<script type="text/ecmascript">
<![CDATA[
"use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, currentSearchTerm, ignorecase, ignorecaseBtn;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
ignorecaseBtn = document.getElementById("ignorecase");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
searching = 0;
currentSearchTerm = null;
}
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
}
else if (e.target.id == "unzoom") unzoom();
else if (e.target.id == "search") search_prompt();
else if (e.target.id == "ignorecase") toggle_ignorecase();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = "Function: " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// ctrl-I to toggle case-sensitive search
window.addEventListener("keydown",function (e) {
if (e.ctrlKey && e.keyCode === 73) {
e.preventDefault();
toggle_ignorecase();
}
}, false)
// functions
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_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 * 12 * 0.59) {
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 - 10) * ratio + 10;
if (e.tagName == "text")
e.attributes.x.value = find_child(e.parentNode, "rect[x]").attributes.x.value + 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 - 10, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = 10;
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = parseInt(svg.width.baseVal.value) - (10 * 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 * 10) / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.0001;
unzoombtn.classList.remove("hide");
var el = document.getElementById("frames").children;
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);
var upstack;
// Is it an ancestor
if (0 == 0) {
upstack = parseFloat(a.y.value) > ymin;
} else {
upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
search();
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = document.getElementById("frames").children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
search();
}
// search
function toggle_ignorecase() {
ignorecase = !ignorecase;
if (ignorecase) {
ignorecaseBtn.classList.add("show");
} else {
ignorecaseBtn.classList.remove("show");
}
reset_search();
search();
}
function reset_search() {
var el = document.querySelectorAll("#frames 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_)"
+ (ignorecase ? ", ignoring case" : "")
+ "\nPress Ctrl-i to toggle case sensitivity", "");
if (term != null) {
currentSearchTerm = term;
search();
}
} else {
reset_search();
searching = 0;
currentSearchTerm = null;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
if (currentSearchTerm === null) return;
var term = currentSearchTerm;
var re = new RegExp(term, ignorecase ? 'i' : '');
var el = document.getElementById("frames").children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = 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 = "rgb(230,0,230)";
// 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.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
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.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1)
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
]]>
</script>
<rect x="0.0" y="0" width="1200.0" height="1094.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="1077" > </text>
<text id="unzoom" x="10.00" y="24" class="hide">Reset Zoom</text>
<text id="search" x="1090.00" y="24" >Search</text>
<text id="ignorecase" x="1174.00" y="24" >ic</text>
<text id="matched" x="1090.00" y="1077" > </text>
<g id="frames">
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="259.5" y="549" width="1.4" height="15.0" fill="rgb(238,15,8)" rx="2" ry="2" />
<text x="262.45" y="559.5" ></text>
</g>
<g >
<title>core::cmp::max::h87f2065332d01093 (1 samples, 0.12%)</title><rect x="702.3" y="549" width="1.4" height="15.0" fill="rgb(224,137,7)" rx="2" ry="2" />
<text x="705.30" y="559.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::unwrap_or_else::h7e6dc2125f8cf3fd (2 samples, 0.24%)</title><rect x="174.0" y="437" width="2.8" height="15.0" fill="rgb(214,126,14)" rx="2" ry="2" />
<text x="176.97" y="447.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::or_else::he60d662e146ed094 (45 samples, 5.34%)</title><rect x="56.2" y="677" width="63.1" height="15.0" fill="rgb(251,214,19)" rx="2" ry="2" />
<text x="59.25" y="687.5" >core::..</text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="863.5" y="725" width="1.4" height="15.0" fill="rgb(239,75,8)" rx="2" ry="2" />
<text x="866.47" y="735.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::as_ref::h511f9eed01216d1f (1 samples, 0.12%)</title><rect x="371.6" y="661" width="1.4" height="15.0" fill="rgb(251,76,3)" rx="2" ry="2" />
<text x="374.57" y="671.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="874.7" y="709" width="1.4" height="15.0" fill="rgb(232,229,17)" rx="2" ry="2" />
<text x="877.68" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="154.3" y="181" width="5.7" height="15.0" fill="rgb(208,60,48)" rx="2" ry="2" />
<text x="157.35" y="191.5" ></text>
</g>
<g >
<title>clap::app::App::get_matches::hde6f61339bfa2353 (1 samples, 0.12%)</title><rect x="134.7" y="821" width="1.4" height="15.0" fill="rgb(211,80,18)" rx="2" ry="2" />
<text x="137.73" y="831.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcae88ece32ddb0d4 (4 samples, 0.48%)</title><rect x="570.6" y="613" width="5.6" height="15.0" fill="rgb(235,57,9)" rx="2" ry="2" />
<text x="573.57" y="623.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="504.7" y="581" width="2.8" height="15.0" fill="rgb(217,67,47)" rx="2" ry="2" />
<text x="507.70" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::he2cc0f066058ca1e (8 samples, 0.95%)</title><rect x="200.6" y="229" width="11.2" height="15.0" fill="rgb(237,15,28)" rx="2" ry="2" />
<text x="203.59" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (5 samples, 0.59%)</title><rect x="416.4" y="661" width="7.0" height="15.0" fill="rgb(254,13,12)" rx="2" ry="2" />
<text x="419.41" y="671.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.12%)</title><rect x="1177.4" y="997" width="1.4" height="15.0" fill="rgb(234,132,17)" rx="2" ry="2" />
<text x="1180.39" y="1007.5" ></text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::h0c624e6bc1680d8a (1 samples, 0.12%)</title><rect x="152.9" y="69" width="1.4" height="15.0" fill="rgb(243,120,42)" rx="2" ry="2" />
<text x="155.95" y="79.5" ></text>
</g>
<g >
<title>_dl_protect_relro (1 samples, 0.12%)</title><rect x="1178.8" y="997" width="1.4" height="15.0" fill="rgb(223,228,53)" rx="2" ry="2" />
<text x="1181.79" y="1007.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (3 samples, 0.36%)</title><rect x="52.0" y="981" width="4.2" height="15.0" fill="rgb(245,181,14)" rx="2" ry="2" />
<text x="55.04" y="991.5" ></text>
</g>
<g >
<title>all (842 samples, 100%)</title><rect x="10.0" y="1045" width="1180.0" height="15.0" fill="rgb(242,8,24)" rx="2" ry="2" />
<text x="13.00" y="1055.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..ExportSection$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6d5ed6ddfdd5538e (42 samples, 4.99%)</title><rect x="712.1" y="741" width="58.9" height="15.0" fill="rgb(238,200,33)" rx="2" ry="2" />
<text x="715.11" y="751.5" >_$LT$p..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="930.7" y="741" width="1.4" height="15.0" fill="rgb(213,90,50)" rx="2" ry="2" />
<text x="933.74" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="1126.9" y="741" width="1.4" height="15.0" fill="rgb(233,133,17)" rx="2" ry="2" />
<text x="1129.94" y="751.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..layout..Insts$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h2cb6803f835ffd28 (1 samples, 0.12%)</title><rect x="1160.6" y="773" width="1.4" height="15.0" fill="rgb(224,12,31)" rx="2" ry="2" />
<text x="1163.57" y="783.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h6ac7611c7dc963ec (1 samples, 0.12%)</title><rect x="237.0" y="549" width="1.4" height="15.0" fill="rgb(207,78,45)" rx="2" ry="2" />
<text x="240.03" y="559.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h29f0b80d803d3f43 (3 samples, 0.36%)</title><rect x="150.1" y="117" width="4.2" height="15.0" fill="rgb(221,150,19)" rx="2" ry="2" />
<text x="153.14" y="127.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::new::hf12ccbad95b21035 (1 samples, 0.12%)</title><rect x="258.1" y="725" width="1.4" height="15.0" fill="rgb(240,206,6)" rx="2" ry="2" />
<text x="261.05" y="735.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf17dfbcfb4e46c21 (1 samples, 0.12%)</title><rect x="548.1" y="773" width="1.4" height="15.0" fill="rgb(251,80,31)" rx="2" ry="2" />
<text x="551.15" y="783.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="810.2" y="549" width="2.8" height="15.0" fill="rgb(239,159,14)" rx="2" ry="2" />
<text x="813.21" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h0235acfd42a652f1 (8 samples, 0.95%)</title><rect x="220.2" y="709" width="11.2" height="15.0" fill="rgb(218,9,49)" rx="2" ry="2" />
<text x="223.21" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h370d58ac748f9e1d (6 samples, 0.71%)</title><rect x="244.0" y="709" width="8.4" height="15.0" fill="rgb(220,40,30)" rx="2" ry="2" />
<text x="247.04" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..module..ModuleBuilder$LT$F$GT$$u20$as$u20$parity_wasm..builder..invoke..Invoke$LT$parity_wasm..elements..export_entry..ExportEntry$GT$$GT$::invoke::hade9e1b3b4b413ac (9 samples, 1.07%)</title><rect x="949.0" y="757" width="12.6" height="15.0" fill="rgb(214,194,46)" rx="2" ry="2" />
<text x="951.95" y="767.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::he49a6d85e10ddc97 (3 samples, 0.36%)</title><rect x="150.1" y="149" width="4.2" height="15.0" fill="rgb(225,74,39)" rx="2" ry="2" />
<text x="153.14" y="159.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::is_empty_singleton::hff21fdb90f2f723b (1 samples, 0.12%)</title><rect x="232.8" y="677" width="1.4" height="15.0" fill="rgb(237,113,16)" rx="2" ry="2" />
<text x="235.83" y="687.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="11.4" y="613" width="1.4" height="15.0" fill="rgb(254,182,2)" rx="2" ry="2" />
<text x="14.40" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb206b25879ccd1da (1 samples, 0.12%)</title><rect x="888.7" y="757" width="1.4" height="15.0" fill="rgb(233,106,10)" rx="2" ry="2" />
<text x="891.69" y="767.5" ></text>
</g>
<g >
<title>__munmap (3 samples, 0.36%)</title><rect x="238.4" y="613" width="4.2" height="15.0" fill="rgb(210,111,1)" rx="2" ry="2" />
<text x="241.43" y="623.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::ha8dc20cee05f0e84 (2 samples, 0.24%)</title><rect x="43.6" y="165" width="2.8" height="15.0" fill="rgb(242,15,0)" rx="2" ry="2" />
<text x="46.63" y="175.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h15bc87da1c96ab3b (7 samples, 0.83%)</title><rect x="508.9" y="661" width="9.8" height="15.0" fill="rgb(219,196,0)" rx="2" ry="2" />
<text x="511.91" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::heac6dae04802aca7 (1 samples, 0.12%)</title><rect x="479.5" y="517" width="1.4" height="15.0" fill="rgb(206,206,37)" rx="2" ry="2" />
<text x="482.48" y="527.5" ></text>
</g>
<g >
<title>_dl_init (1 samples, 0.12%)</title><rect x="1180.2" y="997" width="1.4" height="15.0" fill="rgb(211,108,3)" rx="2" ry="2" />
<text x="1183.19" y="1007.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="878.9" y="741" width="2.8" height="15.0" fill="rgb(245,182,21)" rx="2" ry="2" />
<text x="881.88" y="751.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (5 samples, 0.59%)</title><rect x="696.7" y="645" width="7.0" height="15.0" fill="rgb(222,30,35)" rx="2" ry="2" />
<text x="699.70" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h327b4e62cb829b72 (1 samples, 0.12%)</title><rect x="1156.4" y="789" width="1.4" height="15.0" fill="rgb(236,57,31)" rx="2" ry="2" />
<text x="1159.37" y="799.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (1 samples, 0.12%)</title><rect x="40.8" y="277" width="1.4" height="15.0" fill="rgb(224,89,51)" rx="2" ry="2" />
<text x="43.83" y="287.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0c0200f4271db1e3 (6 samples, 0.71%)</title><rect x="244.0" y="725" width="8.4" height="15.0" fill="rgb(237,84,20)" rx="2" ry="2" />
<text x="247.04" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h82a7dc3569650ef1 (5 samples, 0.59%)</title><rect x="193.6" y="533" width="7.0" height="15.0" fill="rgb(237,58,38)" rx="2" ry="2" />
<text x="196.59" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (1 samples, 0.12%)</title><rect x="1166.2" y="917" width="1.4" height="15.0" fill="rgb(216,185,51)" rx="2" ry="2" />
<text x="1169.18" y="927.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (5 samples, 0.59%)</title><rect x="838.2" y="661" width="7.0" height="15.0" fill="rgb(228,11,54)" rx="2" ry="2" />
<text x="841.24" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf1f26fd0460420b1 (1 samples, 0.12%)</title><rect x="493.5" y="661" width="1.4" height="15.0" fill="rgb(254,91,3)" rx="2" ry="2" />
<text x="496.49" y="671.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="542.5" y="757" width="1.4" height="15.0" fill="rgb(237,109,18)" rx="2" ry="2" />
<text x="545.54" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h1d0d296f77b59146 (6 samples, 0.71%)</title><rect x="951.8" y="693" width="8.4" height="15.0" fill="rgb(238,49,53)" rx="2" ry="2" />
<text x="954.76" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h845f0940ad0edf85 (1 samples, 0.12%)</title><rect x="595.8" y="757" width="1.4" height="15.0" fill="rgb(205,137,29)" rx="2" ry="2" />
<text x="598.80" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (3 samples, 0.36%)</title><rect x="779.4" y="597" width="4.2" height="15.0" fill="rgb(238,77,12)" rx="2" ry="2" />
<text x="782.38" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h78a48f048e2985ba (2 samples, 0.24%)</title><rect x="681.3" y="677" width="2.8" height="15.0" fill="rgb(212,133,16)" rx="2" ry="2" />
<text x="684.28" y="687.5" ></text>
</g>
<g >
<title>wake_up_q (1 samples, 0.12%)</title><rect x="1177.4" y="901" width="1.4" height="15.0" fill="rgb(218,201,29)" rx="2" ry="2" />
<text x="1180.39" y="911.5" ></text>
</g>
<g >
<title>__GI___libc_free (6 samples, 0.71%)</title><rect x="244.0" y="645" width="8.4" height="15.0" fill="rgb(241,21,18)" rx="2" ry="2" />
<text x="247.04" y="655.5" ></text>
</g>
<g >
<title>crossbeam_epoch::atomic::decompose_data::h2c4a82c27f56d156 (7 samples, 0.83%)</title><rect x="103.9" y="277" width="9.8" height="15.0" fill="rgb(220,210,7)" rx="2" ry="2" />
<text x="106.90" y="287.5" ></text>
</g>
<g >
<title>core::intrinsics::copy_nonoverlapping::hf7bdb82089647043 (1 samples, 0.12%)</title><rect x="713.5" y="597" width="1.4" height="15.0" fill="rgb(223,154,40)" rx="2" ry="2" />
<text x="716.52" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (1 samples, 0.12%)</title><rect x="28.2" y="373" width="1.4" height="15.0" fill="rgb(215,110,44)" rx="2" ry="2" />
<text x="31.22" y="383.5" ></text>
</g>
<g >
<title>__mmap (1 samples, 0.12%)</title><rect x="131.9" y="757" width="1.4" height="15.0" fill="rgb(207,163,24)" rx="2" ry="2" />
<text x="134.92" y="767.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="733.1" y="613" width="1.4" height="15.0" fill="rgb(244,205,6)" rx="2" ry="2" />
<text x="736.14" y="623.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="1143.8" y="613" width="1.4" height="15.0" fill="rgb(217,23,45)" rx="2" ry="2" />
<text x="1146.75" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (2 samples, 0.24%)</title><rect x="685.5" y="597" width="2.8" height="15.0" fill="rgb(240,40,53)" rx="2" ry="2" />
<text x="688.49" y="607.5" ></text>
</g>
<g >
<title>clap::app::App::get_matches_from_safe_borrow::h6e82577e9fa3d13b (1 samples, 0.12%)</title><rect x="134.7" y="789" width="1.4" height="15.0" fill="rgb(219,2,29)" rx="2" ry="2" />
<text x="137.73" y="799.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::add::hfdfa509d83774973 (1 samples, 0.12%)</title><rect x="15.6" y="677" width="1.4" height="15.0" fill="rgb(254,110,2)" rx="2" ry="2" />
<text x="18.61" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="584.6" y="757" width="1.4" height="15.0" fill="rgb(242,188,16)" rx="2" ry="2" />
<text x="587.58" y="767.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h9687b7186500097c (7 samples, 0.83%)</title><rect x="183.8" y="485" width="9.8" height="15.0" fill="rgb(228,150,4)" rx="2" ry="2" />
<text x="186.78" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.36%)</title><rect x="423.4" y="597" width="4.2" height="15.0" fill="rgb(246,91,16)" rx="2" ry="2" />
<text x="426.42" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::_$u7b$$u7b$closure$u7d$$u7d$::h81c4ebd07ec449c1 (1 samples, 0.12%)</title><rect x="47.8" y="213" width="1.4" height="15.0" fill="rgb(207,82,4)" rx="2" ry="2" />
<text x="50.84" y="223.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve::h543212ffdb74d0b4 (6 samples, 0.71%)</title><rect x="434.6" y="629" width="8.4" height="15.0" fill="rgb(254,34,26)" rx="2" ry="2" />
<text x="437.63" y="639.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h09b423cadf0da692 (33 samples, 3.92%)</title><rect x="637.8" y="693" width="46.3" height="15.0" fill="rgb(210,210,8)" rx="2" ry="2" />
<text x="640.84" y="703.5" >_$LT..</text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="178.2" y="149" width="5.6" height="15.0" fill="rgb(216,217,17)" rx="2" ry="2" />
<text x="181.17" y="159.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h2129dc6ec15fb220 (3 samples, 0.36%)</title><rect x="883.1" y="645" width="4.2" height="15.0" fill="rgb(217,151,52)" rx="2" ry="2" />
<text x="886.09" y="655.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..redundant_reload_remover..AvailEnv$u20$as$u20$core..clone..Clone$GT$::clone::hce61985e7e1836d9 (1 samples, 0.12%)</title><rect x="38.0" y="261" width="1.4" height="15.0" fill="rgb(209,28,24)" rx="2" ry="2" />
<text x="41.03" y="271.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="806.0" y="581" width="7.0" height="15.0" fill="rgb(216,0,38)" rx="2" ry="2" />
<text x="809.01" y="591.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.12%)</title><rect x="18.4" y="725" width="1.4" height="15.0" fill="rgb(211,213,22)" rx="2" ry="2" />
<text x="21.41" y="735.5" ></text>
</g>
<g >
<title>rayon::iter::reduce::reduce::hed2b1ea7593f5d79 (3 samples, 0.36%)</title><rect x="52.0" y="821" width="4.2" height="15.0" fill="rgb(250,224,36)" rx="2" ry="2" />
<text x="55.04" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="284.7" y="549" width="5.6" height="15.0" fill="rgb(220,96,43)" rx="2" ry="2" />
<text x="287.68" y="559.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="853.7" y="661" width="1.4" height="15.0" fill="rgb(211,125,51)" rx="2" ry="2" />
<text x="856.66" y="671.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h9137cd9203500647 (12 samples, 1.43%)</title><rect x="176.8" y="501" width="16.8" height="15.0" fill="rgb(231,111,42)" rx="2" ry="2" />
<text x="179.77" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::run::h375bef7a9f8a9db5 (2 samples, 0.24%)</title><rect x="36.6" y="341" width="2.8" height="15.0" fill="rgb(230,175,6)" rx="2" ry="2" />
<text x="39.63" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (15 samples, 1.78%)</title><rect x="29.6" y="389" width="21.0" height="15.0" fill="rgb(240,106,9)" rx="2" ry="2" />
<text x="32.62" y="399.5" ></text>
</g>
<g >
<title>rocinante::parity_wasm_utils::build_module::h3459cb68f5b7661d (143 samples, 16.98%)</title><rect x="869.1" y="789" width="200.4" height="15.0" fill="rgb(230,207,51)" rx="2" ry="2" />
<text x="872.07" y="799.5" >rocinante::parity_wasm_uti..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="961.6" y="757" width="2.8" height="15.0" fill="rgb(249,67,29)" rx="2" ry="2" />
<text x="964.57" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (2 samples, 0.24%)</title><rect x="678.5" y="613" width="2.8" height="15.0" fill="rgb(242,126,32)" rx="2" ry="2" />
<text x="681.48" y="623.5" ></text>
</g>
<g >
<title>alloc_perturb (1 samples, 0.12%)</title><rect x="1066.7" y="629" width="1.4" height="15.0" fill="rgb(220,41,11)" rx="2" ry="2" />
<text x="1069.67" y="639.5" ></text>
</g>
<g >
<title>mprotect_fixup (2 samples, 0.24%)</title><rect x="263.7" y="613" width="2.8" height="15.0" fill="rgb(212,175,25)" rx="2" ry="2" />
<text x="266.66" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::h35ad93935e048912 (11 samples, 1.31%)</title><rect x="144.5" y="469" width="15.5" height="15.0" fill="rgb(229,89,2)" rx="2" ry="2" />
<text x="147.54" y="479.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1 samples, 0.12%)</title><rect x="263.7" y="581" width="1.4" height="15.0" fill="rgb(241,0,3)" rx="2" ry="2" />
<text x="266.66" y="591.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.12%)</title><rect x="1178.8" y="965" width="1.4" height="15.0" fill="rgb(215,173,4)" rx="2" ry="2" />
<text x="1181.79" y="975.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::eof::hf0cca2a165b8c662 (1 samples, 0.12%)</title><rect x="312.7" y="629" width="1.4" height="15.0" fill="rgb(233,45,0)" rx="2" ry="2" />
<text x="315.71" y="639.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="710.7" y="629" width="1.4" height="15.0" fill="rgb(229,122,43)" rx="2" ry="2" />
<text x="713.71" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (31 samples, 3.68%)</title><rect x="1012.0" y="645" width="43.5" height="15.0" fill="rgb(252,96,49)" rx="2" ry="2" />
<text x="1015.02" y="655.5" >_$LT..</text>
</g>
<g >
<title>_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::hade4fdd1e3cebe04 (1 samples, 0.12%)</title><rect x="54.8" y="565" width="1.4" height="15.0" fill="rgb(231,105,52)" rx="2" ry="2" />
<text x="57.85" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h4e4202bc9efcf162 (8 samples, 0.95%)</title><rect x="200.6" y="453" width="11.2" height="15.0" fill="rgb(246,203,17)" rx="2" ry="2" />
<text x="203.59" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="923.7" y="613" width="5.6" height="15.0" fill="rgb(238,164,35)" rx="2" ry="2" />
<text x="926.73" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (7 samples, 0.83%)</title><rect x="660.3" y="533" width="9.8" height="15.0" fill="rgb(209,109,2)" rx="2" ry="2" />
<text x="663.26" y="543.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (6 samples, 0.71%)</title><rect x="518.7" y="709" width="8.4" height="15.0" fill="rgb(226,221,35)" rx="2" ry="2" />
<text x="521.72" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (5 samples, 0.59%)</title><rect x="731.7" y="677" width="7.0" height="15.0" fill="rgb(212,178,1)" rx="2" ry="2" />
<text x="734.73" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="181.0" y="133" width="2.8" height="15.0" fill="rgb(223,33,30)" rx="2" ry="2" />
<text x="183.97" y="143.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hdd6e1b0755c30a69 (1 samples, 0.12%)</title><rect x="584.6" y="805" width="1.4" height="15.0" fill="rgb(236,117,10)" rx="2" ry="2" />
<text x="587.58" y="815.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::h02bb13e49905c2a7 (11 samples, 1.31%)</title><rect x="144.5" y="357" width="15.5" height="15.0" fill="rgb(216,67,37)" rx="2" ry="2" />
<text x="147.54" y="367.5" ></text>
</g>
<g >
<title>_$LT$rand..distributions..uniform..UniformInt$LT$i32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::h414accef804fe040 (5 samples, 0.59%)</title><rect x="855.1" y="725" width="7.0" height="15.0" fill="rgb(226,3,13)" rx="2" ry="2" />
<text x="858.06" y="735.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (11 samples, 1.31%)</title><rect x="11.4" y="917" width="15.4" height="15.0" fill="rgb(225,177,51)" rx="2" ry="2" />
<text x="14.40" y="927.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (2 samples, 0.24%)</title><rect x="604.2" y="629" width="2.8" height="15.0" fill="rgb(248,179,28)" rx="2" ry="2" />
<text x="607.20" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.71%)</title><rect x="906.9" y="629" width="8.4" height="15.0" fill="rgb(207,116,0)" rx="2" ry="2" />
<text x="909.91" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.95%)</title><rect x="220.2" y="661" width="11.2" height="15.0" fill="rgb(208,151,14)" rx="2" ry="2" />
<text x="223.21" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::heaa563e94a16943c (1 samples, 0.12%)</title><rect x="15.6" y="725" width="1.4" height="15.0" fill="rgb(234,35,38)" rx="2" ry="2" />
<text x="18.61" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf7f3095375dcb3b2 (1 samples, 0.12%)</title><rect x="583.2" y="757" width="1.4" height="15.0" fill="rgb(253,173,46)" rx="2" ry="2" />
<text x="586.18" y="767.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1651cfa161ce1ef5 (6 samples, 0.71%)</title><rect x="244.0" y="741" width="8.4" height="15.0" fill="rgb(254,62,6)" rx="2" ry="2" />
<text x="247.04" y="751.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="401.0" y="565" width="7.0" height="15.0" fill="rgb(209,190,36)" rx="2" ry="2" />
<text x="404.00" y="575.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0eddf6cab0c06ea7 (1 samples, 0.12%)</title><rect x="25.4" y="837" width="1.4" height="15.0" fill="rgb(208,13,35)" rx="2" ry="2" />
<text x="28.42" y="847.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h30bda2eb7af14384 (1 samples, 0.12%)</title><rect x="259.5" y="693" width="1.4" height="15.0" fill="rgb(230,51,22)" rx="2" ry="2" />
<text x="262.45" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="981.2" y="661" width="5.6" height="15.0" fill="rgb(219,203,8)" rx="2" ry="2" />
<text x="984.19" y="671.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_callback::h112eaf8ef11de86c (1 samples, 0.12%)</title><rect x="930.7" y="757" width="1.4" height="15.0" fill="rgb(213,142,41)" rx="2" ry="2" />
<text x="933.74" y="767.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h6cc3d8564293b5fe (1 samples, 0.12%)</title><rect x="260.9" y="661" width="1.4" height="15.0" fill="rgb(247,138,18)" rx="2" ry="2" />
<text x="263.86" y="671.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h011a45fd973f253b (18 samples, 2.14%)</title><rect x="26.8" y="469" width="25.2" height="15.0" fill="rgb(216,23,38)" rx="2" ry="2" />
<text x="29.82" y="479.5" >c..</text>
</g>
<g >
<title>core::ptr::drop_in_place::hb99f80c8a0bef050 (21 samples, 2.49%)</title><rect x="553.8" y="757" width="29.4" height="15.0" fill="rgb(250,197,0)" rx="2" ry="2" />
<text x="556.75" y="767.5" >co..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="706.5" y="581" width="2.8" height="15.0" fill="rgb(215,26,15)" rx="2" ry="2" />
<text x="709.51" y="591.5" ></text>
</g>
<g >
<title>std::io::impls::_$LT$impl$u20$std..io..Write$u20$for$u20$alloc..vec..Vec$LT$u8$GT$$GT$::write_all::h10a6238cd3a5773f (7 samples, 0.83%)</title><rect x="755.6" y="693" width="9.8" height="15.0" fill="rgb(211,40,53)" rx="2" ry="2" />
<text x="758.56" y="703.5" ></text>
</g>
<g >
<title>__rdl_alloc (1 samples, 0.12%)</title><rect x="782.2" y="565" width="1.4" height="15.0" fill="rgb(241,43,35)" rx="2" ry="2" />
<text x="785.19" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (5 samples, 0.59%)</title><rect x="39.4" y="341" width="7.0" height="15.0" fill="rgb(230,155,36)" rx="2" ry="2" />
<text x="42.43" y="351.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::append_elements::h8c30cba809e31ad1 (6 samples, 0.71%)</title><rect x="939.1" y="725" width="8.5" height="15.0" fill="rgb(234,137,27)" rx="2" ry="2" />
<text x="942.14" y="735.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (2 samples, 0.24%)</title><rect x="685.5" y="613" width="2.8" height="15.0" fill="rgb(240,225,21)" rx="2" ry="2" />
<text x="688.49" y="623.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="918.1" y="613" width="1.4" height="15.0" fill="rgb(224,172,29)" rx="2" ry="2" />
<text x="921.12" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (8 samples, 0.95%)</title><rect x="660.3" y="581" width="11.2" height="15.0" fill="rgb(247,146,34)" rx="2" ry="2" />
<text x="663.26" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (5 samples, 0.59%)</title><rect x="714.9" y="645" width="7.0" height="15.0" fill="rgb(236,142,10)" rx="2" ry="2" />
<text x="717.92" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_with::h6c503d2404f2fbae (1 samples, 0.12%)</title><rect x="1156.4" y="805" width="1.4" height="15.0" fill="rgb(215,120,52)" rx="2" ry="2" />
<text x="1159.37" y="815.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::new_uninitialized::ha9a7c11e91562b97 (5 samples, 0.59%)</title><rect x="436.0" y="565" width="7.0" height="15.0" fill="rgb(241,1,6)" rx="2" ry="2" />
<text x="439.03" y="575.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (18 samples, 2.14%)</title><rect x="26.8" y="949" width="25.2" height="15.0" fill="rgb(207,161,54)" rx="2" ry="2" />
<text x="29.82" y="959.5" >r..</text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (1 samples, 0.12%)</title><rect x="395.4" y="709" width="1.4" height="15.0" fill="rgb(225,15,15)" rx="2" ry="2" />
<text x="398.39" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h932bd9b48f3b8408 (4 samples, 0.48%)</title><rect x="570.6" y="549" width="5.6" height="15.0" fill="rgb(227,25,5)" rx="2" ry="2" />
<text x="573.57" y="559.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="1122.7" y="629" width="1.4" height="15.0" fill="rgb(233,217,6)" rx="2" ry="2" />
<text x="1125.73" y="639.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::collect_extended::h833a9ba3f6cf2125 (18 samples, 2.14%)</title><rect x="26.8" y="901" width="25.2" height="15.0" fill="rgb(206,96,8)" rx="2" ry="2" />
<text x="29.82" y="911.5" >r..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h52118cdb8b4f233a (1 samples, 0.12%)</title><rect x="399.6" y="613" width="1.4" height="15.0" fill="rgb(228,75,21)" rx="2" ry="2" />
<text x="402.60" y="623.5" ></text>
</g>
<g >
<title>std::io::impls::_$LT$impl$u20$std..io..Write$u20$for$u20$alloc..vec..Vec$LT$u8$GT$$GT$::write_all::h10a6238cd3a5773f (1 samples, 0.12%)</title><rect x="793.4" y="693" width="1.4" height="15.0" fill="rgb(230,65,3)" rx="2" ry="2" />
<text x="796.40" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01c6f1483464e918 (23 samples, 2.73%)</title><rect x="144.5" y="533" width="32.3" height="15.0" fill="rgb(250,0,2)" rx="2" ry="2" />
<text x="147.54" y="543.5" >_$..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0c0200f4271db1e3 (3 samples, 0.36%)</title><rect x="549.5" y="789" width="4.3" height="15.0" fill="rgb(206,183,0)" rx="2" ry="2" />
<text x="552.55" y="799.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_section_header::hc7ab7ab28ca11b5b (18 samples, 2.14%)</title><rect x="346.3" y="661" width="25.3" height="15.0" fill="rgb(235,224,50)" rx="2" ry="2" />
<text x="349.34" y="671.5" >w..</text>
</g>
<g >
<title>std::sys::unix::condvar::Condvar::wait::hb2ffade62aa31893 (1 samples, 0.12%)</title><rect x="130.5" y="613" width="1.4" height="15.0" fill="rgb(223,178,43)" rx="2" ry="2" />
<text x="133.52" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (1 samples, 0.12%)</title><rect x="11.4" y="661" width="1.4" height="15.0" fill="rgb(242,106,13)" rx="2" ry="2" />
<text x="14.40" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (25 samples, 2.97%)</title><rect x="1020.4" y="597" width="35.1" height="15.0" fill="rgb(247,1,24)" rx="2" ry="2" />
<text x="1023.43" y="607.5" >_i..</text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::fn_impl::h3fc70cd5830bcca1 (1 samples, 0.12%)</title><rect x="860.7" y="533" width="1.4" height="15.0" fill="rgb(242,216,35)" rx="2" ry="2" />
<text x="863.67" y="543.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h2c72ff7015c6a192 (2 samples, 0.24%)</title><rect x="274.9" y="709" width="2.8" height="15.0" fill="rgb(245,222,8)" rx="2" ry="2" />
<text x="277.87" y="719.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="492.1" y="565" width="1.4" height="15.0" fill="rgb(244,195,17)" rx="2" ry="2" />
<text x="495.09" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="209.0" y="133" width="2.8" height="15.0" fill="rgb(208,153,13)" rx="2" ry="2" />
<text x="212.00" y="143.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="513.1" y="629" width="5.6" height="15.0" fill="rgb(219,203,11)" rx="2" ry="2" />
<text x="516.11" y="639.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::he3505b00773c765b (1 samples, 0.12%)</title><rect x="1164.8" y="517" width="1.4" height="15.0" fill="rgb(223,61,7)" rx="2" ry="2" />
<text x="1167.77" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (1 samples, 0.12%)</title><rect x="1141.0" y="757" width="1.4" height="15.0" fill="rgb(219,157,26)" rx="2" ry="2" />
<text x="1143.95" y="767.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (2 samples, 0.24%)</title><rect x="1162.0" y="965" width="2.8" height="15.0" fill="rgb(241,201,53)" rx="2" ry="2" />
<text x="1164.97" y="975.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="1111.5" y="629" width="1.4" height="15.0" fill="rgb(227,1,25)" rx="2" ry="2" />
<text x="1114.52" y="639.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::Section::get_export_section_reader::h165aee0fcb268a78 (2 samples, 0.24%)</title><rect x="388.4" y="661" width="2.8" height="15.0" fill="rgb(206,90,20)" rx="2" ry="2" />
<text x="391.38" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::save_idom_live_set::hc94f6b3e33618e10 (2 samples, 0.24%)</title><rect x="43.6" y="245" width="2.8" height="15.0" fill="rgb(247,91,42)" rx="2" ry="2" />
<text x="46.63" y="255.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h7776a431453c4a6c (1 samples, 0.12%)</title><rect x="597.2" y="757" width="1.4" height="15.0" fill="rgb(245,136,13)" rx="2" ry="2" />
<text x="600.20" y="767.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..chain..Chain$LT$A$C$B$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h53a0234d259dd93f (45 samples, 5.34%)</title><rect x="56.2" y="581" width="63.1" height="15.0" fill="rgb(229,160,51)" rx="2" ry="2" />
<text x="59.25" y="591.5" >_$LT$c..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5 samples, 0.59%)</title><rect x="831.2" y="597" width="7.0" height="15.0" fill="rgb(249,181,11)" rx="2" ry="2" />
<text x="834.24" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (4 samples, 0.48%)</title><rect x="839.6" y="629" width="5.6" height="15.0" fill="rgb(243,81,15)" rx="2" ry="2" />
<text x="842.64" y="639.5" ></text>
</g>
<g >
<title>__pthread_cond_wait (1 samples, 0.12%)</title><rect x="130.5" y="597" width="1.4" height="15.0" fill="rgb(207,44,32)" rx="2" ry="2" />
<text x="133.52" y="607.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::_$LT$impl$u20$rand..distributions..Distribution$LT$rocinante..stoke..transform..TransformKind$GT$$u20$for$u20$rand..distributions..Standard$GT$::sample::h92a3b26e007cf094 (5 samples, 0.59%)</title><rect x="855.1" y="757" width="7.0" height="15.0" fill="rgb(236,2,44)" rx="2" ry="2" />
<text x="858.06" y="767.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::hd57ea4f8793eaf15 (3 samples, 0.36%)</title><rect x="52.0" y="661" width="4.2" height="15.0" fill="rgb(243,171,54)" rx="2" ry="2" />
<text x="55.04" y="671.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h8c8ec47e97803ba4 (1 samples, 0.12%)</title><rect x="1143.8" y="741" width="1.4" height="15.0" fill="rgb(227,41,46)" rx="2" ry="2" />
<text x="1146.75" y="751.5" ></text>
</g>
<g >
<title>core::intrinsics::write_bytes::h792b10e401917c3d (1 samples, 0.12%)</title><rect x="28.2" y="213" width="1.4" height="15.0" fill="rgb(212,9,39)" rx="2" ry="2" />
<text x="31.22" y="223.5" ></text>
</g>
<g >
<title>linux_sysconf (1 samples, 0.12%)</title><rect x="1180.2" y="933" width="1.4" height="15.0" fill="rgb(207,100,49)" rx="2" ry="2" />
<text x="1183.19" y="943.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h6926523d7376676b (11 samples, 1.31%)</title><rect x="144.5" y="373" width="15.5" height="15.0" fill="rgb(221,101,43)" rx="2" ry="2" />
<text x="147.54" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::scoped_hash_map::ScopedHashMap$LT$K$C$V$GT$::entry::hadc7bba76e60c5ba (1 samples, 0.12%)</title><rect x="49.2" y="325" width="1.4" height="15.0" fill="rgb(229,149,7)" rx="2" ry="2" />
<text x="52.24" y="335.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h040886d86db5a05a (18 samples, 2.14%)</title><rect x="26.8" y="613" width="25.2" height="15.0" fill="rgb(254,134,52)" rx="2" ry="2" />
<text x="29.82" y="623.5" >_..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hc9c2ffc4fa991304 (1 samples, 0.12%)</title><rect x="40.8" y="197" width="1.4" height="15.0" fill="rgb(242,154,20)" rx="2" ry="2" />
<text x="43.83" y="207.5" ></text>
</g>
<g >
<title>__split_vma (1 samples, 0.12%)</title><rect x="1178.8" y="869" width="1.4" height="15.0" fill="rgb(244,201,47)" rx="2" ry="2" />
<text x="1181.79" y="879.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hee5ce2ea3f47e4c6 (2 samples, 0.24%)</title><rect x="21.2" y="773" width="2.8" height="15.0" fill="rgb(234,160,7)" rx="2" ry="2" />
<text x="24.21" y="783.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hdeca22932aecbb36 (1 samples, 0.12%)</title><rect x="1143.8" y="709" width="1.4" height="15.0" fill="rgb(212,223,23)" rx="2" ry="2" />
<text x="1146.75" y="719.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (5 samples, 0.59%)</title><rect x="1146.6" y="869" width="7.0" height="15.0" fill="rgb(215,124,47)" rx="2" ry="2" />
<text x="1149.56" y="879.5" ></text>
</g>
<g >
<title>_dl_map_object_from_fd (1 samples, 0.12%)</title><rect x="1181.6" y="869" width="1.4" height="15.0" fill="rgb(246,43,6)" rx="2" ry="2" />
<text x="1184.59" y="879.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he9c7499a8ffa5660 (53 samples, 6.29%)</title><rect x="636.4" y="725" width="74.3" height="15.0" fill="rgb(222,47,1)" rx="2" ry="2" />
<text x="639.44" y="735.5" >_$LT$par..</text>
</g>
<g >
<title>__GI___pthread_rwlock_wrlock (1 samples, 0.12%)</title><rect x="541.1" y="677" width="1.4" height="15.0" fill="rgb(249,126,54)" rx="2" ry="2" />
<text x="544.14" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h7764d609d50ab81c (2 samples, 0.24%)</title><rect x="968.6" y="709" width="2.8" height="15.0" fill="rgb(253,138,46)" rx="2" ry="2" />
<text x="971.57" y="719.5" ></text>
</g>
<g >
<title>[unknown] (825 samples, 97.98%)</title><rect x="11.4" y="1013" width="1156.2" height="15.0" fill="rgb(218,145,12)" rx="2" ry="2" />
<text x="14.40" y="1023.5" >[unknown]</text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h5f0fbe21d3b782cc (1 samples, 0.12%)</title><rect x="26.8" y="309" width="1.4" height="15.0" fill="rgb(230,51,35)" rx="2" ry="2" />
<text x="29.82" y="319.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::hbad30c24535b7c33 (8 samples, 0.95%)</title><rect x="220.2" y="741" width="11.2" height="15.0" fill="rgb(207,107,28)" rx="2" ry="2" />
<text x="223.21" y="751.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (10 samples, 1.19%)</title><rect x="778.0" y="709" width="14.0" height="15.0" fill="rgb(254,112,31)" rx="2" ry="2" />
<text x="780.98" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0c6117828443cc44 (8 samples, 0.95%)</title><rect x="232.8" y="789" width="11.2" height="15.0" fill="rgb(216,228,2)" rx="2" ry="2" />
<text x="235.83" y="799.5" ></text>
</g>
<g >
<title>alloc::alloc::box_free::h839e78acedc7e436 (3 samples, 0.36%)</title><rect x="500.5" y="597" width="4.2" height="15.0" fill="rgb(237,175,8)" rx="2" ry="2" />
<text x="503.50" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h7919db14739b0183 (22 samples, 2.61%)</title><rect x="553.8" y="789" width="30.8" height="15.0" fill="rgb(237,214,15)" rx="2" ry="2" />
<text x="556.75" y="799.5" >co..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (7 samples, 0.83%)</title><rect x="755.6" y="597" width="9.8" height="15.0" fill="rgb(244,167,23)" rx="2" ry="2" />
<text x="758.56" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (6 samples, 0.71%)</title><rect x="783.6" y="597" width="8.4" height="15.0" fill="rgb(224,139,41)" rx="2" ry="2" />
<text x="786.59" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="583.2" y="693" width="1.4" height="15.0" fill="rgb(209,79,25)" rx="2" ry="2" />
<text x="586.18" y="703.5" ></text>
</g>
<g >
<title>change_protection_range (1 samples, 0.12%)</title><rect x="1157.8" y="709" width="1.4" height="15.0" fill="rgb(233,100,15)" rx="2" ry="2" />
<text x="1160.77" y="719.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h6ebb9e3bdcdf63a5 (1 samples, 0.12%)</title><rect x="684.1" y="677" width="1.4" height="15.0" fill="rgb(209,131,19)" rx="2" ry="2" />
<text x="687.09" y="687.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (2 samples, 0.24%)</title><rect x="681.3" y="597" width="2.8" height="15.0" fill="rgb(227,200,26)" rx="2" ry="2" />
<text x="684.28" y="607.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.59%)</title><rect x="245.4" y="629" width="7.0" height="15.0" fill="rgb(215,202,32)" rx="2" ry="2" />
<text x="248.44" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (1 samples, 0.12%)</title><rect x="825.6" y="613" width="1.4" height="15.0" fill="rgb(241,191,53)" rx="2" ry="2" />
<text x="828.63" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hc40d3c487d0208b3 (8 samples, 0.95%)</title><rect x="220.2" y="725" width="11.2" height="15.0" fill="rgb(235,216,5)" rx="2" ry="2" />
<text x="223.21" y="735.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h01793e171da5d8f3 (1 samples, 0.12%)</title><rect x="11.4" y="693" width="1.4" height="15.0" fill="rgb(229,36,25)" rx="2" ry="2" />
<text x="14.40" y="703.5" ></text>
</g>
<g >
<title>inherit_task_group.isra.100.part.101 (6 samples, 0.71%)</title><rect x="1167.6" y="901" width="8.4" height="15.0" fill="rgb(220,7,27)" rx="2" ry="2" />
<text x="1170.58" y="911.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hf5842b6c96e0c047 (13 samples, 1.54%)</title><rect x="688.3" y="693" width="18.2" height="15.0" fill="rgb(229,74,45)" rx="2" ry="2" />
<text x="691.29" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (5 samples, 0.59%)</title><rect x="738.7" y="629" width="7.0" height="15.0" fill="rgb(215,73,23)" rx="2" ry="2" />
<text x="741.74" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h1d0d296f77b59146 (4 samples, 0.48%)</title><rect x="923.7" y="677" width="5.6" height="15.0" fill="rgb(219,92,36)" rx="2" ry="2" />
<text x="926.73" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_ebb::h4d06c3146adefee8 (1 samples, 0.12%)</title><rect x="40.8" y="293" width="1.4" height="15.0" fill="rgb(251,218,37)" rx="2" ry="2" />
<text x="43.83" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..builder..InsertBuilder$LT$IIB$GT$$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h1c5204cffac9d1f9 (2 samples, 0.24%)</title><rect x="1143.8" y="821" width="2.8" height="15.0" fill="rgb(249,22,50)" rx="2" ry="2" />
<text x="1146.75" y="831.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::h5cb93bb22494d324 (18 samples, 2.14%)</title><rect x="26.8" y="965" width="25.2" height="15.0" fill="rgb(229,187,7)" rx="2" ry="2" />
<text x="29.82" y="975.5" >r..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h8492ddef1a0fecb5 (58 samples, 6.89%)</title><rect x="138.9" y="709" width="81.3" height="15.0" fill="rgb(209,21,15)" rx="2" ry="2" />
<text x="141.93" y="719.5" >_$LT$allo..</text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h27c57577c909f566 (3 samples, 0.36%)</title><rect x="52.0" y="757" width="4.2" height="15.0" fill="rgb(236,210,43)" rx="2" ry="2" />
<text x="55.04" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h2dc57471a789f11c (3 samples, 0.36%)</title><rect x="915.3" y="693" width="4.2" height="15.0" fill="rgb(253,107,32)" rx="2" ry="2" />
<text x="918.32" y="703.5" ></text>
</g>
<g >
<title>c2_chacha::guts::round::h86428085dc96d932 (1 samples, 0.12%)</title><rect x="860.7" y="501" width="1.4" height="15.0" fill="rgb(251,56,5)" rx="2" ry="2" />
<text x="863.67" y="511.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1 samples, 0.12%)</title><rect x="1152.2" y="725" width="1.4" height="15.0" fill="rgb(252,147,50)" rx="2" ry="2" />
<text x="1155.16" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf8bd67447a128235 (1 samples, 0.12%)</title><rect x="853.7" y="741" width="1.4" height="15.0" fill="rgb(216,30,35)" rx="2" ry="2" />
<text x="856.66" y="751.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..convert..From$LT$$RF$str$GT$$GT$::from::h4e52b3bc9313b98c (4 samples, 0.48%)</title><rect x="284.7" y="709" width="5.6" height="15.0" fill="rgb(224,31,40)" rx="2" ry="2" />
<text x="287.68" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="378.6" y="565" width="7.0" height="15.0" fill="rgb(225,139,1)" rx="2" ry="2" />
<text x="381.57" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h3534c64212330b0c (55 samples, 6.53%)</title><rect x="56.2" y="917" width="77.1" height="15.0" fill="rgb(243,194,17)" rx="2" ry="2" />
<text x="59.25" y="927.5" >_$LT$all..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hac0529bc449daaa1 (1 samples, 0.12%)</title><rect x="40.8" y="149" width="1.4" height="15.0" fill="rgb(242,218,12)" rx="2" ry="2" />
<text x="43.83" y="159.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (2 samples, 0.24%)</title><rect x="892.9" y="741" width="2.8" height="15.0" fill="rgb(253,67,11)" rx="2" ry="2" />
<text x="895.90" y="751.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h470f8931de1e981f (2 samples, 0.24%)</title><rect x="681.3" y="661" width="2.8" height="15.0" fill="rgb(224,86,35)" rx="2" ry="2" />
<text x="684.28" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hb32fac37e38a1a0c (1 samples, 0.12%)</title><rect x="260.9" y="565" width="1.4" height="15.0" fill="rgb(208,35,14)" rx="2" ry="2" />
<text x="263.86" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h932bd9b48f3b8408 (3 samples, 0.36%)</title><rect x="549.5" y="757" width="4.3" height="15.0" fill="rgb(225,63,25)" rx="2" ry="2" />
<text x="552.55" y="767.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::steal::_$u7b$$u7b$closure$u7d$$u7d$::h43d47ece601b587f (1 samples, 0.12%)</title><rect x="117.9" y="517" width="1.4" height="15.0" fill="rgb(234,228,35)" rx="2" ry="2" />
<text x="120.91" y="527.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (2 samples, 0.24%)</title><rect x="703.7" y="677" width="2.8" height="15.0" fill="rgb(243,32,44)" rx="2" ry="2" />
<text x="706.71" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbf1a2e7b1d7f1667 (1 samples, 0.12%)</title><rect x="315.5" y="661" width="1.4" height="15.0" fill="rgb(213,100,54)" rx="2" ry="2" />
<text x="318.51" y="671.5" ></text>
</g>
<g >
<title>__handle_mm_fault (1 samples, 0.12%)</title><rect x="864.9" y="677" width="1.4" height="15.0" fill="rgb(205,12,46)" rx="2" ry="2" />
<text x="867.87" y="687.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (1 samples, 0.12%)</title><rect x="1157.8" y="837" width="1.4" height="15.0" fill="rgb(222,146,47)" rx="2" ry="2" />
<text x="1160.77" y="847.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (4 samples, 0.48%)</title><rect x="765.4" y="677" width="5.6" height="15.0" fill="rgb(240,115,31)" rx="2" ry="2" />
<text x="768.37" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (5 samples, 0.59%)</title><rect x="696.7" y="581" width="7.0" height="15.0" fill="rgb(245,61,6)" rx="2" ry="2" />
<text x="699.70" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="598.6" y="629" width="5.6" height="15.0" fill="rgb(234,11,15)" rx="2" ry="2" />
<text x="601.60" y="639.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.12%)</title><rect x="130.5" y="549" width="1.4" height="15.0" fill="rgb(217,100,42)" rx="2" ry="2" />
<text x="133.52" y="559.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.48%)</title><rect x="1056.9" y="757" width="5.6" height="15.0" fill="rgb(232,211,28)" rx="2" ry="2" />
<text x="1059.86" y="767.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="1142.4" y="725" width="1.4" height="15.0" fill="rgb(247,207,54)" rx="2" ry="2" />
<text x="1145.35" y="735.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd8d55df17decfd84 (5 samples, 0.59%)</title><rect x="176.8" y="421" width="7.0" height="15.0" fill="rgb(243,132,6)" rx="2" ry="2" />
<text x="179.77" y="431.5" ></text>
</g>
<g >
<title>core::cmp::max_by::h705f07cf880e31a1 (1 samples, 0.12%)</title><rect x="702.3" y="517" width="1.4" height="15.0" fill="rgb(209,131,16)" rx="2" ry="2" />
<text x="705.30" y="527.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (6 samples, 0.71%)</title><rect x="695.3" y="677" width="8.4" height="15.0" fill="rgb(238,221,47)" rx="2" ry="2" />
<text x="698.30" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4ef1a1016be60934 (1 samples, 0.12%)</title><rect x="259.5" y="629" width="1.4" height="15.0" fill="rgb(221,66,4)" rx="2" ry="2" />
<text x="262.45" y="639.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h7b956e322363fb07 (54 samples, 6.41%)</title><rect x="56.2" y="821" width="75.7" height="15.0" fill="rgb(211,136,50)" rx="2" ry="2" />
<text x="59.25" y="831.5" >std::pan..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="881.7" y="725" width="1.4" height="15.0" fill="rgb(231,161,51)" rx="2" ry="2" />
<text x="884.69" y="735.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9e8fa79ef32e2f92 (1 samples, 0.12%)</title><rect x="888.7" y="741" width="1.4" height="15.0" fill="rgb(245,66,32)" rx="2" ry="2" />
<text x="891.69" y="751.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h8e3a9dedca46b845 (1 samples, 0.12%)</title><rect x="14.2" y="741" width="1.4" height="15.0" fill="rgb(235,58,36)" rx="2" ry="2" />
<text x="17.20" y="751.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.48%)</title><rect x="598.6" y="581" width="5.6" height="15.0" fill="rgb(219,127,20)" rx="2" ry="2" />
<text x="601.60" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hd3269c36fd4298ce (6 samples, 0.71%)</title><rect x="939.1" y="709" width="8.5" height="15.0" fill="rgb(229,130,44)" rx="2" ry="2" />
<text x="942.14" y="719.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h87a0545fb4a43e58 (1 samples, 0.12%)</title><rect x="38.0" y="213" width="1.4" height="15.0" fill="rgb(222,109,46)" rx="2" ry="2" />
<text x="41.03" y="223.5" ></text>
</g>
<g >
<title>unmap_region (2 samples, 0.24%)</title><rect x="239.8" y="517" width="2.8" height="15.0" fill="rgb(216,189,13)" rx="2" ry="2" />
<text x="242.83" y="527.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h12bf8025d5652db0 (66 samples, 7.84%)</title><rect x="138.9" y="757" width="92.5" height="15.0" fill="rgb(219,193,43)" rx="2" ry="2" />
<text x="141.93" y="767.5" >alloc::slic..</text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_equiv_local_idx::h095449e04ed3aa2c (1 samples, 0.12%)</title><rect x="1119.9" y="773" width="1.4" height="15.0" fill="rgb(218,162,43)" rx="2" ry="2" />
<text x="1122.93" y="783.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1 samples, 0.12%)</title><rect x="237.0" y="325" width="1.4" height="15.0" fill="rgb(215,89,40)" rx="2" ry="2" />
<text x="240.03" y="335.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="436.0" y="549" width="7.0" height="15.0" fill="rgb(210,75,12)" rx="2" ry="2" />
<text x="439.03" y="559.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0c0200f4271db1e3 (4 samples, 0.48%)</title><rect x="570.6" y="581" width="5.6" height="15.0" fill="rgb(215,134,9)" rx="2" ry="2" />
<text x="573.57" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h6ae4018c4ff98f03 (1 samples, 0.12%)</title><rect x="1122.7" y="725" width="1.4" height="15.0" fill="rgb(244,90,41)" rx="2" ry="2" />
<text x="1125.73" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1166.2" y="693" width="1.4" height="15.0" fill="rgb(249,153,29)" rx="2" ry="2" />
<text x="1169.18" y="703.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge::hf04575a5334eecf9 (1 samples, 0.12%)</title><rect x="1164.8" y="741" width="1.4" height="15.0" fill="rgb(249,185,23)" rx="2" ry="2" />
<text x="1167.77" y="751.5" ></text>
</g>
<g >
<title>__rdl_realloc (1 samples, 0.12%)</title><rect x="630.8" y="581" width="1.4" height="15.0" fill="rgb(213,109,25)" rx="2" ry="2" />
<text x="633.83" y="591.5" ></text>
</g>
<g >
<title>wasmparser::readers::type_section::TypeSectionReader::read::h60bd6fe7b02a0f1c (10 samples, 1.19%)</title><rect x="374.4" y="645" width="14.0" height="15.0" fill="rgb(216,177,25)" rx="2" ry="2" />
<text x="377.37" y="655.5" ></text>
</g>
<g >
<title>core::mem::swap::h37f0299a6475c6cd (1 samples, 0.12%)</title><rect x="43.6" y="133" width="1.4" height="15.0" fill="rgb(234,78,14)" rx="2" ry="2" />
<text x="46.63" y="143.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (3 samples, 0.36%)</title><rect x="691.1" y="677" width="4.2" height="15.0" fill="rgb(228,58,29)" rx="2" ry="2" />
<text x="694.09" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="11.4" y="629" width="1.4" height="15.0" fill="rgb(223,15,27)" rx="2" ry="2" />
<text x="14.40" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h9f4993087320ae2e (1 samples, 0.12%)</title><rect x="26.8" y="293" width="1.4" height="15.0" fill="rgb(243,2,20)" rx="2" ry="2" />
<text x="29.82" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::_$u7b$$u7b$closure$u7d$$u7d$::hedfa6147ceeee299 (2 samples, 0.24%)</title><rect x="144.5" y="309" width="2.8" height="15.0" fill="rgb(227,150,30)" rx="2" ry="2" />
<text x="147.54" y="319.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (3 samples, 0.36%)</title><rect x="238.4" y="629" width="4.2" height="15.0" fill="rgb(211,67,41)" rx="2" ry="2" />
<text x="241.43" y="639.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::sample_i32::hdfe8706392df27fb (1 samples, 0.12%)</title><rect x="1112.9" y="757" width="1.4" height="15.0" fill="rgb(240,224,29)" rx="2" ry="2" />
<text x="1115.92" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (1 samples, 0.12%)</title><rect x="846.7" y="613" width="1.4" height="15.0" fill="rgb(230,152,37)" rx="2" ry="2" />
<text x="849.65" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::he1029039b7b5061e (2 samples, 0.24%)</title><rect x="494.9" y="661" width="2.8" height="15.0" fill="rgb(212,51,8)" rx="2" ry="2" />
<text x="497.89" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="178.2" y="165" width="5.6" height="15.0" fill="rgb(231,130,42)" rx="2" ry="2" />
<text x="181.17" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_ebb::h4d06c3146adefee8 (1 samples, 0.12%)</title><rect x="15.6" y="805" width="1.4" height="15.0" fill="rgb(228,222,43)" rx="2" ry="2" />
<text x="18.61" y="815.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::free_buckets::h12816893d35751bd (1 samples, 0.12%)</title><rect x="1142.4" y="741" width="1.4" height="15.0" fill="rgb(254,183,4)" rx="2" ry="2" />
<text x="1145.35" y="751.5" ></text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::h7698eeb9f730c817 (9 samples, 1.07%)</title><rect x="147.3" y="325" width="12.7" height="15.0" fill="rgb(222,127,16)" rx="2" ry="2" />
<text x="150.34" y="335.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::with_signature::h2cee79de176cd7be (1 samples, 0.12%)</title><rect x="934.9" y="741" width="1.4" height="15.0" fill="rgb(222,103,38)" rx="2" ry="2" />
<text x="937.94" y="751.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h08ddd46ade302123 (1 samples, 0.12%)</title><rect x="1164.8" y="757" width="1.4" height="15.0" fill="rgb(248,153,43)" rx="2" ry="2" />
<text x="1167.77" y="767.5" ></text>
</g>
<g >
<title>openaux (1 samples, 0.12%)</title><rect x="1181.6" y="901" width="1.4" height="15.0" fill="rgb(220,60,41)" rx="2" ry="2" />
<text x="1184.59" y="911.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::collect::h1f2b29105d9f9b2d (11 samples, 1.31%)</title><rect x="102.5" y="341" width="15.4" height="15.0" fill="rgb(248,66,16)" rx="2" ry="2" />
<text x="105.49" y="351.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (1 samples, 0.12%)</title><rect x="1157.8" y="693" width="1.4" height="15.0" fill="rgb(235,21,12)" rx="2" ry="2" />
<text x="1160.77" y="703.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (10 samples, 1.19%)</title><rect x="778.0" y="693" width="14.0" height="15.0" fill="rgb(246,11,26)" rx="2" ry="2" />
<text x="780.98" y="703.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (16 samples, 1.90%)</title><rect x="986.8" y="629" width="22.4" height="15.0" fill="rgb(254,141,3)" rx="2" ry="2" />
<text x="989.79" y="639.5" >_..</text>
</g>
<g >
<title>crossbeam_epoch::default::pin::hb4a29c3259df6262 (38 samples, 4.51%)</title><rect x="64.7" y="453" width="53.2" height="15.0" fill="rgb(214,141,38)" rx="2" ry="2" />
<text x="67.66" y="463.5" >cross..</text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (2 samples, 0.24%)</title><rect x="1159.2" y="981" width="2.8" height="15.0" fill="rgb(246,105,16)" rx="2" ry="2" />
<text x="1162.17" y="991.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="916.7" y="661" width="2.8" height="15.0" fill="rgb(219,1,49)" rx="2" ry="2" />
<text x="919.72" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::ra_liveness::h225166b1af7d7fb0 (1 samples, 0.12%)</title><rect x="18.4" y="821" width="1.4" height="15.0" fill="rgb(218,127,43)" rx="2" ry="2" />
<text x="21.41" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="876.1" y="661" width="2.8" height="15.0" fill="rgb(242,10,24)" rx="2" ry="2" />
<text x="879.08" y="671.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint7$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h578fe398302931fa (5 samples, 0.59%)</title><rect x="838.2" y="677" width="7.0" height="15.0" fill="rgb(249,33,41)" rx="2" ry="2" />
<text x="841.24" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::EncInfo::byte_size::_$u7b$$u7b$closure$u7d$$u7d$::h89e970b90e029eca (1 samples, 0.12%)</title><rect x="47.8" y="165" width="1.4" height="15.0" fill="rgb(225,106,17)" rx="2" ry="2" />
<text x="50.84" y="175.5" ></text>
</g>
<g >
<title>exit_mmap (1 samples, 0.12%)</title><rect x="1184.4" y="885" width="1.4" height="15.0" fill="rgb(234,198,12)" rx="2" ry="2" />
<text x="1187.39" y="895.5" ></text>
</g>
<g >
<title>alloc::collections::linked_list::LinkedList$LT$T$GT$::push_back::h92a34cc4c1e33537 (1 samples, 0.12%)</title><rect x="52.0" y="517" width="1.4" height="15.0" fill="rgb(220,67,8)" rx="2" ry="2" />
<text x="55.04" y="527.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.12%)</title><rect x="18.4" y="709" width="1.4" height="15.0" fill="rgb(252,125,43)" rx="2" ry="2" />
<text x="21.41" y="719.5" ></text>
</g>
<g >
<title>sys_mprotect (1 samples, 0.12%)</title><rect x="1157.8" y="773" width="1.4" height="15.0" fill="rgb(205,79,32)" rx="2" ry="2" />
<text x="1160.77" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hcf3d786abf97b98e (1 samples, 0.12%)</title><rect x="1145.2" y="709" width="1.4" height="15.0" fill="rgb(216,97,27)" rx="2" ry="2" />
<text x="1148.15" y="719.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (1 samples, 0.12%)</title><rect x="1115.7" y="757" width="1.4" height="15.0" fill="rgb(243,31,19)" rx="2" ry="2" />
<text x="1118.72" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::regalloc::hfc5ad6c1ecfb5906 (3 samples, 0.36%)</title><rect x="15.6" y="869" width="4.2" height="15.0" fill="rgb(233,146,40)" rx="2" ry="2" />
<text x="18.61" y="879.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="1143.8" y="629" width="1.4" height="15.0" fill="rgb(234,3,8)" rx="2" ry="2" />
<text x="1146.75" y="639.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (714 samples, 84.80%)</title><rect x="136.1" y="821" width="1000.6" height="15.0" fill="rgb(250,48,40)" rx="2" ry="2" />
<text x="139.13" y="831.5" >rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9</text>
</g>
<g >
<title>__slab_alloc (1 samples, 0.12%)</title><rect x="1171.8" y="837" width="1.4" height="15.0" fill="rgb(227,164,4)" rx="2" ry="2" />
<text x="1174.78" y="847.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h5d2d78ad967d7ec5 (12 samples, 1.43%)</title><rect x="814.4" y="677" width="16.8" height="15.0" fill="rgb(211,94,50)" rx="2" ry="2" />
<text x="817.42" y="687.5" ></text>
</g>
<g >
<title>cranelift_entity::list::ListPool$LT$T$GT$::realloc::h94c8a4e9c97c23a9 (1 samples, 0.12%)</title><rect x="11.4" y="773" width="1.4" height="15.0" fill="rgb(224,108,28)" rx="2" ry="2" />
<text x="14.40" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.36%)</title><rect x="895.7" y="693" width="4.2" height="15.0" fill="rgb(209,134,14)" rx="2" ry="2" />
<text x="898.70" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (1 samples, 0.12%)</title><rect x="1145.2" y="773" width="1.4" height="15.0" fill="rgb(227,41,35)" rx="2" ry="2" />
<text x="1148.15" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h29385fd261b02390 (1 samples, 0.12%)</title><rect x="1143.8" y="677" width="1.4" height="15.0" fill="rgb(221,198,18)" rx="2" ry="2" />
<text x="1146.75" y="687.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (3 samples, 0.36%)</title><rect x="1108.7" y="773" width="4.2" height="15.0" fill="rgb(222,83,8)" rx="2" ry="2" />
<text x="1111.72" y="783.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::run::h514625a86c8948e2 (2 samples, 0.24%)</title><rect x="43.6" y="309" width="2.8" height="15.0" fill="rgb(223,181,25)" rx="2" ry="2" />
<text x="46.63" y="319.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..code..FunctionBuilder$LT$F$GT$$u20$as$u20$parity_wasm..builder..invoke..Invoke$LT$parity_wasm..elements..types..FunctionType$GT$$GT$::invoke::h0a38ad11dbf86f98 (3 samples, 0.36%)</title><rect x="932.1" y="757" width="4.2" height="15.0" fill="rgb(232,174,5)" rx="2" ry="2" />
<text x="935.14" y="767.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge::hf04575a5334eecf9 (18 samples, 2.14%)</title><rect x="26.8" y="725" width="25.2" height="15.0" fill="rgb(230,197,1)" rx="2" ry="2" />
<text x="29.82" y="735.5" >r..</text>
</g>
<g >
<title>flush_tlb_mm_range (1 samples, 0.12%)</title><rect x="1149.4" y="725" width="1.4" height="15.0" fill="rgb(243,208,43)" rx="2" ry="2" />
<text x="1152.36" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::he145fe02890cff00 (3 samples, 0.36%)</title><rect x="500.5" y="677" width="4.2" height="15.0" fill="rgb(206,73,25)" rx="2" ry="2" />
<text x="503.50" y="687.5" ></text>
</g>
<g >
<title>__GI___mprotect (3 samples, 0.36%)</title><rect x="266.5" y="693" width="4.2" height="15.0" fill="rgb(231,26,11)" rx="2" ry="2" />
<text x="269.46" y="703.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.36%)</title><rect x="691.1" y="549" width="4.2" height="15.0" fill="rgb(244,205,20)" rx="2" ry="2" />
<text x="694.09" y="559.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::fold1::ha4f05f390da02c58 (3 samples, 0.36%)</title><rect x="21.2" y="805" width="4.2" height="15.0" fill="rgb(228,35,1)" rx="2" ry="2" />
<text x="24.21" y="815.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::write::h1c284c26c15044c0 (1 samples, 0.12%)</title><rect x="541.1" y="725" width="1.4" height="15.0" fill="rgb(250,141,19)" rx="2" ry="2" />
<text x="544.14" y="735.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h4cc9386bf0ff298e (1 samples, 0.12%)</title><rect x="24.0" y="741" width="1.4" height="15.0" fill="rgb(207,58,50)" rx="2" ry="2" />
<text x="27.01" y="751.5" ></text>
</g>
<g >
<title>std::sys_common::rwlock::RWLock::write::h762499e0a004f4c0 (1 samples, 0.12%)</title><rect x="541.1" y="709" width="1.4" height="15.0" fill="rgb(254,76,39)" rx="2" ry="2" />
<text x="544.14" y="719.5" ></text>
</g>
<g >
<title>rocinante (842 samples, 100.00%)</title><rect x="10.0" y="1029" width="1180.0" height="15.0" fill="rgb(211,172,11)" rx="2" ry="2" />
<text x="13.00" y="1039.5" >rocinante</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h5f801527cd0cdd64 (2 samples, 0.24%)</title><rect x="1075.1" y="725" width="2.8" height="15.0" fill="rgb(249,192,22)" rx="2" ry="2" />
<text x="1078.08" y="735.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h299f0a34f264699f (12 samples, 1.43%)</title><rect x="176.8" y="517" width="16.8" height="15.0" fill="rgb(230,66,12)" rx="2" ry="2" />
<text x="179.77" y="527.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hefc4acfc4833f85d (15 samples, 1.78%)</title><rect x="497.7" y="725" width="21.0" height="15.0" fill="rgb(229,128,2)" rx="2" ry="2" />
<text x="500.70" y="735.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (2 samples, 0.24%)</title><rect x="745.7" y="693" width="2.9" height="15.0" fill="rgb(210,209,17)" rx="2" ry="2" />
<text x="748.75" y="703.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="1136.7" y="725" width="1.4" height="15.0" fill="rgb(241,120,44)" rx="2" ry="2" />
<text x="1139.75" y="735.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (2 samples, 0.24%)</title><rect x="703.7" y="661" width="2.8" height="15.0" fill="rgb(242,180,41)" rx="2" ry="2" />
<text x="706.71" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0fd490b1bd555f75 (1 samples, 0.12%)</title><rect x="493.5" y="597" width="1.4" height="15.0" fill="rgb(225,162,18)" rx="2" ry="2" />
<text x="496.49" y="607.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (2 samples, 0.24%)</title><rect x="706.5" y="645" width="2.8" height="15.0" fill="rgb(230,27,10)" rx="2" ry="2" />
<text x="709.51" y="655.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::function::h109b1838bb0dfa6a (5 samples, 0.59%)</title><rect x="1062.5" y="773" width="7.0" height="15.0" fill="rgb(226,203,44)" rx="2" ry="2" />
<text x="1065.47" y="783.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h2ceadffb0bdf2f92 (2 samples, 0.24%)</title><rect x="681.3" y="629" width="2.8" height="15.0" fill="rgb(211,202,41)" rx="2" ry="2" />
<text x="684.28" y="639.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::h214819f1caec495c (1 samples, 0.12%)</title><rect x="260.9" y="597" width="1.4" height="15.0" fill="rgb(226,19,22)" rx="2" ry="2" />
<text x="263.86" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0c871947beec2b5f (1 samples, 0.12%)</title><rect x="242.6" y="629" width="1.4" height="15.0" fill="rgb(237,214,41)" rx="2" ry="2" />
<text x="245.64" y="639.5" ></text>
</g>
<g >
<title>inherit_event.isra.98 (5 samples, 0.59%)</title><rect x="1169.0" y="885" width="7.0" height="15.0" fill="rgb(239,77,6)" rx="2" ry="2" />
<text x="1171.98" y="895.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::h0e39f99f59742673 (5 samples, 0.59%)</title><rect x="176.8" y="389" width="7.0" height="15.0" fill="rgb(228,18,31)" rx="2" ry="2" />
<text x="179.77" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1 samples, 0.12%)</title><rect x="133.3" y="885" width="1.4" height="15.0" fill="rgb(237,69,33)" rx="2" ry="2" />
<text x="136.33" y="895.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (227 samples, 26.96%)</title><rect x="231.4" y="805" width="318.1" height="15.0" fill="rgb(222,188,44)" rx="2" ry="2" />
<text x="234.43" y="815.5" >_$LT$rocinante..exec..wasmer..Wasmer$u20$a..</text>
</g>
<g >
<title>wasmparser::parser::Parser::read_function_body_locals::h03ae591e2fe9bb2e (7 samples, 0.83%)</title><rect x="333.7" y="677" width="9.8" height="15.0" fill="rgb(215,203,13)" rx="2" ry="2" />
<text x="336.73" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf030b767cb81da57 (1 samples, 0.12%)</title><rect x="1136.7" y="821" width="1.4" height="15.0" fill="rgb(206,35,31)" rx="2" ry="2" />
<text x="1139.75" y="831.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..structures..map..Map$LT$K$C$V$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hdcbdc9b9ebb8bb36 (1 samples, 0.12%)</title><rect x="260.9" y="709" width="1.4" height="15.0" fill="rgb(249,109,3)" rx="2" ry="2" />
<text x="263.86" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::ha402e7a4d83968b3 (6 samples, 0.71%)</title><rect x="415.0" y="693" width="8.4" height="15.0" fill="rgb(233,211,9)" rx="2" ry="2" />
<text x="418.01" y="703.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (3 samples, 0.36%)</title><rect x="671.5" y="613" width="4.2" height="15.0" fill="rgb(217,210,54)" rx="2" ry="2" />
<text x="674.47" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (1 samples, 0.12%)</title><rect x="677.1" y="613" width="1.4" height="15.0" fill="rgb(238,23,37)" rx="2" ry="2" />
<text x="680.08" y="623.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::body::hf7afe1e300d36ce3 (7 samples, 0.83%)</title><rect x="890.1" y="773" width="9.8" height="15.0" fill="rgb(211,180,41)" rx="2" ry="2" />
<text x="893.10" y="783.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::Instructions::empty::hf0de196a610ea90e (3 samples, 0.36%)</title><rect x="895.7" y="741" width="4.2" height="15.0" fill="rgb(240,183,13)" rx="2" ry="2" />
<text x="898.70" y="751.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="304.3" y="629" width="5.6" height="15.0" fill="rgb(220,23,29)" rx="2" ry="2" />
<text x="307.30" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hbcce27a5e2efa8f2 (5 samples, 0.59%)</title><rect x="468.3" y="661" width="7.0" height="15.0" fill="rgb(251,164,25)" rx="2" ry="2" />
<text x="471.27" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hf9e0df9d807b2584 (2 samples, 0.24%)</title><rect x="681.3" y="613" width="2.8" height="15.0" fill="rgb(236,161,53)" rx="2" ry="2" />
<text x="684.28" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (2 samples, 0.24%)</title><rect x="678.5" y="565" width="2.8" height="15.0" fill="rgb(235,43,20)" rx="2" ry="2" />
<text x="681.48" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_push::hc52b23226d54cb2d (1 samples, 0.12%)</title><rect x="38.0" y="277" width="1.4" height="15.0" fill="rgb(226,157,6)" rx="2" ry="2" />
<text x="41.03" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_trace (1 samples, 0.12%)</title><rect x="1167.6" y="869" width="1.4" height="15.0" fill="rgb(244,152,17)" rx="2" ry="2" />
<text x="1170.58" y="879.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (6 samples, 0.71%)</title><rect x="906.9" y="661" width="8.4" height="15.0" fill="rgb(246,64,54)" rx="2" ry="2" />
<text x="909.91" y="671.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (2 samples, 0.24%)</title><rect x="316.9" y="645" width="2.8" height="15.0" fill="rgb(234,43,12)" rx="2" ry="2" />
<text x="319.91" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hc60376776e203b82 (1 samples, 0.12%)</title><rect x="1136.7" y="789" width="1.4" height="15.0" fill="rgb(215,77,38)" rx="2" ry="2" />
<text x="1139.75" y="799.5" ></text>
</g>
<g >
<title>kmem_cache_alloc_trace (1 samples, 0.12%)</title><rect x="1171.8" y="853" width="1.4" height="15.0" fill="rgb(206,196,33)" rx="2" ry="2" />
<text x="1174.78" y="863.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (2 samples, 0.24%)</title><rect x="1159.2" y="965" width="2.8" height="15.0" fill="rgb(247,171,40)" rx="2" ry="2" />
<text x="1162.17" y="975.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::hf31d7ee6ba0847c4 (8 samples, 0.95%)</title><rect x="232.8" y="725" width="11.2" height="15.0" fill="rgb(208,97,10)" rx="2" ry="2" />
<text x="235.83" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.36%)</title><rect x="1063.9" y="645" width="4.2" height="15.0" fill="rgb(213,113,39)" rx="2" ry="2" />
<text x="1066.87" y="655.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (1 samples, 0.12%)</title><rect x="133.3" y="949" width="1.4" height="15.0" fill="rgb(219,151,51)" rx="2" ry="2" />
<text x="136.33" y="959.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="862.1" y="741" width="2.8" height="15.0" fill="rgb(228,89,46)" rx="2" ry="2" />
<text x="865.07" y="751.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1 samples, 0.12%)</title><rect x="1166.2" y="965" width="1.4" height="15.0" fill="rgb(243,90,18)" rx="2" ry="2" />
<text x="1169.18" y="975.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..FunctionSection$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h3387e6c24a7dccf1 (21 samples, 2.49%)</title><rect x="771.0" y="741" width="29.4" height="15.0" fill="rgb(229,93,8)" rx="2" ry="2" />
<text x="773.97" y="751.5" >_$..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h819c0501df0d1c42 (3 samples, 0.36%)</title><rect x="500.5" y="629" width="4.2" height="15.0" fill="rgb(223,10,31)" rx="2" ry="2" />
<text x="503.50" y="639.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (1 samples, 0.12%)</title><rect x="47.8" y="149" width="1.4" height="15.0" fill="rgb(245,123,16)" rx="2" ry="2" />
<text x="50.84" y="159.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h6f6704bbb1af4ed5 (8 samples, 0.95%)</title><rect x="200.6" y="373" width="11.2" height="15.0" fill="rgb(206,197,38)" rx="2" ry="2" />
<text x="203.59" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="1108.7" y="741" width="2.8" height="15.0" fill="rgb(226,27,23)" rx="2" ry="2" />
<text x="1111.72" y="751.5" ></text>
</g>
<g >
<title>sys_sched_yield (2 samples, 0.24%)</title><rect x="127.7" y="629" width="2.8" height="15.0" fill="rgb(228,2,7)" rx="2" ry="2" />
<text x="130.72" y="639.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (6 samples, 0.71%)</title><rect x="319.7" y="677" width="8.4" height="15.0" fill="rgb(235,143,5)" rx="2" ry="2" />
<text x="322.71" y="687.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1 samples, 0.12%)</title><rect x="1153.6" y="693" width="1.4" height="15.0" fill="rgb(212,123,43)" rx="2" ry="2" />
<text x="1156.56" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (5 samples, 0.59%)</title><rect x="696.7" y="629" width="7.0" height="15.0" fill="rgb(207,22,13)" rx="2" ry="2" />
<text x="699.70" y="639.5" ></text>
</g>
<g >
<title>__rust_dealloc (1 samples, 0.12%)</title><rect x="829.8" y="533" width="1.4" height="15.0" fill="rgb(222,169,36)" rx="2" ry="2" />
<text x="832.83" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (2 samples, 0.24%)</title><rect x="11.4" y="869" width="2.8" height="15.0" fill="rgb(229,127,3)" rx="2" ry="2" />
<text x="14.40" y="879.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (1 samples, 0.12%)</title><rect x="31.0" y="245" width="1.4" height="15.0" fill="rgb(237,105,50)" rx="2" ry="2" />
<text x="34.02" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::h0cc42d96a5763bb6 (8 samples, 0.95%)</title><rect x="200.6" y="469" width="11.2" height="15.0" fill="rgb(237,90,42)" rx="2" ry="2" />
<text x="203.59" y="479.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="681.3" y="549" width="2.8" height="15.0" fill="rgb(226,178,35)" rx="2" ry="2" />
<text x="684.28" y="559.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapInit$LT$I$C$INIT$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h6766d2778cbab6ce (18 samples, 2.14%)</title><rect x="26.8" y="757" width="25.2" height="15.0" fill="rgb(249,13,36)" rx="2" ry="2" />
<text x="29.82" y="767.5" >_..</text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="706.5" y="565" width="2.8" height="15.0" fill="rgb(231,19,30)" rx="2" ry="2" />
<text x="709.51" y="575.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (2 samples, 0.24%)</title><rect x="1153.6" y="789" width="2.8" height="15.0" fill="rgb(219,102,44)" rx="2" ry="2" />
<text x="1156.56" y="799.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h3e1607d9587d426d (26 samples, 3.09%)</title><rect x="1069.5" y="789" width="36.4" height="15.0" fill="rgb(233,174,51)" rx="2" ry="2" />
<text x="1072.48" y="799.5" >roc..</text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h5024ccd3415780bb (1 samples, 0.12%)</title><rect x="1055.5" y="661" width="1.4" height="15.0" fill="rgb(221,225,24)" rx="2" ry="2" />
<text x="1058.46" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="468.3" y="613" width="7.0" height="15.0" fill="rgb(243,84,27)" rx="2" ry="2" />
<text x="471.27" y="623.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h04e36ed174d122bf (3 samples, 0.36%)</title><rect x="500.5" y="661" width="4.2" height="15.0" fill="rgb(213,202,11)" rx="2" ry="2" />
<text x="503.50" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (2 samples, 0.24%)</title><rect x="703.7" y="629" width="2.8" height="15.0" fill="rgb(208,11,29)" rx="2" ry="2" />
<text x="706.71" y="639.5" ></text>
</g>
<g >
<title>__mmap (3 samples, 0.36%)</title><rect x="270.7" y="693" width="4.2" height="15.0" fill="rgb(205,143,47)" rx="2" ry="2" />
<text x="273.67" y="703.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1bca338488f9c7cc (1 samples, 0.12%)</title><rect x="1142.4" y="805" width="1.4" height="15.0" fill="rgb(250,178,44)" rx="2" ry="2" />
<text x="1145.35" y="815.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (2 samples, 0.24%)</title><rect x="272.1" y="533" width="2.8" height="15.0" fill="rgb(236,11,40)" rx="2" ry="2" />
<text x="275.07" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::regalloc::hfc5ad6c1ecfb5906 (1 samples, 0.12%)</title><rect x="1166.2" y="885" width="1.4" height="15.0" fill="rgb(248,190,54)" rx="2" ry="2" />
<text x="1169.18" y="895.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (15 samples, 1.78%)</title><rect x="1136.7" y="965" width="21.1" height="15.0" fill="rgb(238,213,45)" rx="2" ry="2" />
<text x="1139.75" y="975.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::he78241edf6397a41 (1 samples, 0.12%)</title><rect x="476.7" y="661" width="1.4" height="15.0" fill="rgb(206,50,13)" rx="2" ry="2" />
<text x="479.67" y="671.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::try_advance::hdfa3562e1e5e830a (8 samples, 0.95%)</title><rect x="102.5" y="325" width="11.2" height="15.0" fill="rgb(212,8,7)" rx="2" ry="2" />
<text x="105.49" y="335.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1 samples, 0.12%)</title><rect x="1157.8" y="885" width="1.4" height="15.0" fill="rgb(222,221,44)" rx="2" ry="2" />
<text x="1160.77" y="895.5" ></text>
</g>
<g >
<title>malloc_consolidate (1 samples, 0.12%)</title><rect x="584.6" y="725" width="1.4" height="15.0" fill="rgb(219,184,54)" rx="2" ry="2" />
<text x="587.58" y="735.5" ></text>
</g>
<g >
<title>alloc::alloc::exchange_malloc::h4ed529a7aa347ab4 (1 samples, 0.12%)</title><rect x="52.0" y="501" width="1.4" height="15.0" fill="rgb(228,81,13)" rx="2" ry="2" />
<text x="55.04" y="511.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (2 samples, 0.24%)</title><rect x="239.8" y="501" width="2.8" height="15.0" fill="rgb(226,175,44)" rx="2" ry="2" />
<text x="242.83" y="511.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (31 samples, 3.68%)</title><rect x="1012.0" y="629" width="43.5" height="15.0" fill="rgb(207,44,5)" rx="2" ry="2" />
<text x="1015.02" y="639.5" >allo..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h6cad88bf92e70ffd (1 samples, 0.12%)</title><rect x="1010.6" y="725" width="1.4" height="15.0" fill="rgb(247,27,1)" rx="2" ry="2" />
<text x="1013.62" y="735.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h076cbeb3322a3dc8 (19 samples, 2.26%)</title><rect x="1079.3" y="773" width="26.6" height="15.0" fill="rgb(253,57,36)" rx="2" ry="2" />
<text x="1082.29" y="783.5" >a..</text>
</g>
<g >
<title>cranelift_entity::list::ListPool$LT$T$GT$::alloc::h7031e3fd97879e16 (1 samples, 0.12%)</title><rect x="11.4" y="757" width="1.4" height="15.0" fill="rgb(232,55,13)" rx="2" ry="2" />
<text x="14.40" y="767.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="259.5" y="517" width="1.4" height="15.0" fill="rgb(227,71,33)" rx="2" ry="2" />
<text x="262.45" y="527.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h2dc31a379fc4d1a1 (1 samples, 0.12%)</title><rect x="259.5" y="725" width="1.4" height="15.0" fill="rgb(225,7,10)" rx="2" ry="2" />
<text x="262.45" y="735.5" ></text>
</g>
<g >
<title>rand::seq::index::sample_floyd::h553a70e5dcf26b28 (1 samples, 0.12%)</title><rect x="1111.5" y="741" width="1.4" height="15.0" fill="rgb(238,137,24)" rx="2" ry="2" />
<text x="1114.52" y="751.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (2 samples, 0.24%)</title><rect x="1162.0" y="885" width="2.8" height="15.0" fill="rgb(249,93,40)" rx="2" ry="2" />
<text x="1164.97" y="895.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::hdf56feb2b8f1e516 (5 samples, 0.59%)</title><rect x="176.8" y="437" width="7.0" height="15.0" fill="rgb(239,144,15)" rx="2" ry="2" />
<text x="179.77" y="447.5" ></text>
</g>
<g >
<title>crossbeam_deque::Stealer$LT$T$GT$::steal::h6b48c94d436504c3 (43 samples, 5.11%)</title><rect x="57.6" y="469" width="60.3" height="15.0" fill="rgb(235,75,39)" rx="2" ry="2" />
<text x="60.65" y="479.5" >crossb..</text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h8b2cb678eb07d084 (1 samples, 0.12%)</title><rect x="1142.4" y="757" width="1.4" height="15.0" fill="rgb(236,67,46)" rx="2" ry="2" />
<text x="1145.35" y="767.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::write::heac6dae04802aca7 (1 samples, 0.12%)</title><rect x="429.0" y="565" width="1.4" height="15.0" fill="rgb(228,128,18)" rx="2" ry="2" />
<text x="432.03" y="575.5" ></text>
</g>
<g >
<title>crossbeam_epoch::epoch::Epoch::pinned::h2ef29b3a2dfb74c2 (9 samples, 1.07%)</title><rect x="89.9" y="341" width="12.6" height="15.0" fill="rgb(235,60,41)" rx="2" ry="2" />
<text x="92.88" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::h55a1cd0016a5bf28 (1 samples, 0.12%)</title><rect x="1112.9" y="741" width="1.4" height="15.0" fill="rgb(223,89,23)" rx="2" ry="2" />
<text x="1115.92" y="751.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (2 samples, 0.24%)</title><rect x="1159.2" y="997" width="2.8" height="15.0" fill="rgb(206,16,34)" rx="2" ry="2" />
<text x="1162.17" y="1007.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="259.5" y="533" width="1.4" height="15.0" fill="rgb(205,34,39)" rx="2" ry="2" />
<text x="262.45" y="543.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="740.1" y="565" width="5.6" height="15.0" fill="rgb(222,182,9)" rx="2" ry="2" />
<text x="743.14" y="575.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.71%)</title><rect x="223.0" y="645" width="8.4" height="15.0" fill="rgb(246,83,42)" rx="2" ry="2" />
<text x="226.02" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::call_indirect::h1d38d2281f406238 (2 samples, 0.24%)</title><rect x="1143.8" y="853" width="2.8" height="15.0" fill="rgb(238,149,16)" rx="2" ry="2" />
<text x="1146.75" y="863.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h040886d86db5a05a (1 samples, 0.12%)</title><rect x="1164.8" y="629" width="1.4" height="15.0" fill="rgb(230,203,3)" rx="2" ry="2" />
<text x="1167.77" y="639.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::checked_add::h43ac995e0720f110 (1 samples, 0.12%)</title><rect x="686.9" y="549" width="1.4" height="15.0" fill="rgb(235,6,43)" rx="2" ry="2" />
<text x="689.89" y="559.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (6 samples, 0.71%)</title><rect x="500.5" y="709" width="8.4" height="15.0" fill="rgb(210,131,53)" rx="2" ry="2" />
<text x="503.50" y="719.5" ></text>
</g>
<g >
<title>opendir_tail (1 samples, 0.12%)</title><rect x="1180.2" y="869" width="1.4" height="15.0" fill="rgb(239,177,39)" rx="2" ry="2" />
<text x="1183.19" y="879.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::hfb8feb38e26cefc7 (1 samples, 0.12%)</title><rect x="1164.8" y="837" width="1.4" height="15.0" fill="rgb(215,11,0)" rx="2" ry="2" />
<text x="1167.77" y="847.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::wait_until_cold::h7fe04d79d0f90279 (54 samples, 6.41%)</title><rect x="56.2" y="693" width="75.7" height="15.0" fill="rgb(252,100,12)" rx="2" ry="2" />
<text x="59.25" y="703.5" >rayon_co..</text>
</g>
<g >
<title>crossbeam_epoch::default::with_handle::h9d547d0a76e107f9 (36 samples, 4.28%)</title><rect x="67.5" y="437" width="50.4" height="15.0" fill="rgb(237,84,18)" rx="2" ry="2" />
<text x="70.46" y="447.5" >cross..</text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="287.5" y="533" width="2.8" height="15.0" fill="rgb(219,156,23)" rx="2" ry="2" />
<text x="290.48" y="543.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1951080d9ca0b938 (189 samples, 22.45%)</title><rect x="590.2" y="773" width="264.9" height="15.0" fill="rgb(214,29,27)" rx="2" ry="2" />
<text x="593.19" y="783.5" >_$LT$parity_wasm..elements..module...</text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (5 samples, 0.59%)</title><rect x="831.2" y="549" width="7.0" height="15.0" fill="rgb(207,99,35)" rx="2" ry="2" />
<text x="834.24" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (2 samples, 0.24%)</title><rect x="745.7" y="661" width="2.9" height="15.0" fill="rgb(218,103,9)" rx="2" ry="2" />
<text x="748.75" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hecc58545c2033bf4 (1 samples, 0.12%)</title><rect x="252.4" y="789" width="1.4" height="15.0" fill="rgb(244,131,48)" rx="2" ry="2" />
<text x="255.45" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hdccb68127dd78368 (21 samples, 2.49%)</title><rect x="979.8" y="677" width="29.4" height="15.0" fill="rgb(243,140,45)" rx="2" ry="2" />
<text x="982.79" y="687.5" >al..</text>
</g>
<g >
<title>__rdl_alloc (1 samples, 0.12%)</title><rect x="158.6" y="149" width="1.4" height="15.0" fill="rgb(207,164,33)" rx="2" ry="2" />
<text x="161.55" y="159.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (2 samples, 0.24%)</title><rect x="235.6" y="661" width="2.8" height="15.0" fill="rgb(223,162,40)" rx="2" ry="2" />
<text x="238.63" y="671.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (6 samples, 0.71%)</title><rect x="434.6" y="613" width="8.4" height="15.0" fill="rgb(243,148,25)" rx="2" ry="2" />
<text x="437.63" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0fd490b1bd555f75 (2 samples, 0.24%)</title><rect x="490.7" y="677" width="2.8" height="15.0" fill="rgb(229,63,28)" rx="2" ry="2" />
<text x="493.69" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (1 samples, 0.12%)</title><rect x="11.4" y="837" width="1.4" height="15.0" fill="rgb(231,1,3)" rx="2" ry="2" />
<text x="14.40" y="847.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hb9edaa91414d2aba (33 samples, 3.92%)</title><rect x="800.4" y="725" width="46.3" height="15.0" fill="rgb(252,191,32)" rx="2" ry="2" />
<text x="803.40" y="735.5" >_$LT..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (1 samples, 0.12%)</title><rect x="53.4" y="613" width="1.4" height="15.0" fill="rgb(205,142,14)" rx="2" ry="2" />
<text x="56.44" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..hash..Hash$GT$::hash::h3f9ee3b78530654a (1 samples, 0.12%)</title><rect x="429.0" y="629" width="1.4" height="15.0" fill="rgb(231,109,18)" rx="2" ry="2" />
<text x="432.03" y="639.5" ></text>
</g>
<g >
<title>__lock_text_start (1 samples, 0.12%)</title><rect x="1177.4" y="869" width="1.4" height="15.0" fill="rgb(208,154,52)" rx="2" ry="2" />
<text x="1180.39" y="879.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hf268084a4e30fcb9 (1 samples, 0.12%)</title><rect x="359.0" y="629" width="1.4" height="15.0" fill="rgb(230,93,27)" rx="2" ry="2" />
<text x="361.95" y="639.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (1 samples, 0.12%)</title><rect x="237.0" y="373" width="1.4" height="15.0" fill="rgb(222,165,54)" rx="2" ry="2" />
<text x="240.03" y="383.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_module::hc1e8414d9b11f0da (1 samples, 0.12%)</title><rect x="343.5" y="677" width="1.4" height="15.0" fill="rgb(232,140,48)" rx="2" ry="2" />
<text x="346.54" y="687.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (6 samples, 0.71%)</title><rect x="518.7" y="725" width="8.4" height="15.0" fill="rgb(230,93,10)" rx="2" ry="2" />
<text x="521.72" y="735.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hb287f0143f1d1770 (3 samples, 0.36%)</title><rect x="684.1" y="693" width="4.2" height="15.0" fill="rgb(205,65,46)" rx="2" ry="2" />
<text x="687.09" y="703.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h2d434e239cf4c716 (2 samples, 0.24%)</title><rect x="800.4" y="709" width="2.8" height="15.0" fill="rgb(212,70,20)" rx="2" ry="2" />
<text x="803.40" y="719.5" ></text>
</g>
<g >
<title>unmap_region (1 samples, 0.12%)</title><rect x="237.0" y="389" width="1.4" height="15.0" fill="rgb(205,60,34)" rx="2" ry="2" />
<text x="240.03" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (3 samples, 0.36%)</title><rect x="270.7" y="709" width="4.2" height="15.0" fill="rgb(212,224,47)" rx="2" ry="2" />
<text x="273.67" y="719.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.12%)</title><rect x="864.9" y="741" width="1.4" height="15.0" fill="rgb(216,194,21)" rx="2" ry="2" />
<text x="867.87" y="751.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::wrapping_mul::hd4fd4adb43dec662 (1 samples, 0.12%)</title><rect x="49.2" y="165" width="1.4" height="15.0" fill="rgb(206,143,52)" rx="2" ry="2" />
<text x="52.24" y="175.5" ></text>
</g>
<g >
<title>Z3_solver_assert (3 samples, 0.36%)</title><rect x="862.1" y="773" width="4.2" height="15.0" fill="rgb(211,9,21)" rx="2" ry="2" />
<text x="865.07" y="783.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::he29a6e76bf9988d2 (1 samples, 0.12%)</title><rect x="493.5" y="581" width="1.4" height="15.0" fill="rgb(229,199,45)" rx="2" ry="2" />
<text x="496.49" y="591.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::Instructions::empty::hf0de196a610ea90e (4 samples, 0.48%)</title><rect x="1062.5" y="709" width="5.6" height="15.0" fill="rgb(244,20,14)" rx="2" ry="2" />
<text x="1065.47" y="719.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h77f49f89d813ec4e (2 samples, 0.24%)</title><rect x="21.2" y="741" width="2.8" height="15.0" fill="rgb(243,123,43)" rx="2" ry="2" />
<text x="24.21" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="416.4" y="597" width="7.0" height="15.0" fill="rgb(213,47,11)" rx="2" ry="2" />
<text x="419.41" y="607.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with::h0c4abf6c699d4650 (1 samples, 0.12%)</title><rect x="1157.8" y="901" width="1.4" height="15.0" fill="rgb(233,176,45)" rx="2" ry="2" />
<text x="1160.77" y="911.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::build::h02095bd4d5c8c197 (11 samples, 1.31%)</title><rect x="949.0" y="773" width="15.4" height="15.0" fill="rgb(254,186,36)" rx="2" ry="2" />
<text x="951.95" y="783.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::add_nodes_to_tree::h52a59e433ae90cff (1 samples, 0.12%)</title><rect x="36.6" y="309" width="1.4" height="15.0" fill="rgb(214,61,19)" rx="2" ry="2" />
<text x="39.63" y="319.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (10 samples, 1.19%)</title><rect x="778.0" y="677" width="14.0" height="15.0" fill="rgb(211,60,52)" rx="2" ry="2" />
<text x="780.98" y="687.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::ha4ef4148ebab9fbd (19 samples, 2.26%)</title><rect x="1079.3" y="757" width="26.6" height="15.0" fill="rgb(210,178,27)" rx="2" ry="2" />
<text x="1082.29" y="767.5" >a..</text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::hc3d51f988ff7327f (8 samples, 0.95%)</title><rect x="200.6" y="325" width="11.2" height="15.0" fill="rgb(218,152,30)" rx="2" ry="2" />
<text x="203.59" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (1 samples, 0.12%)</title><rect x="1138.1" y="821" width="1.4" height="15.0" fill="rgb(237,215,3)" rx="2" ry="2" />
<text x="1141.15" y="831.5" ></text>
</g>
<g >
<title>sys_sched_yield (1 samples, 0.12%)</title><rect x="126.3" y="613" width="1.4" height="15.0" fill="rgb(229,130,34)" rx="2" ry="2" />
<text x="129.32" y="623.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (1 samples, 0.12%)</title><rect x="32.4" y="309" width="1.4" height="15.0" fill="rgb(229,204,29)" rx="2" ry="2" />
<text x="35.42" y="319.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="274.9" y="629" width="2.8" height="15.0" fill="rgb(229,161,16)" rx="2" ry="2" />
<text x="277.87" y="639.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1 samples, 0.12%)</title><rect x="1138.1" y="853" width="1.4" height="15.0" fill="rgb(229,29,30)" rx="2" ry="2" />
<text x="1141.15" y="863.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::hef33cf4d2aba79da (5 samples, 0.59%)</title><rect x="193.6" y="517" width="7.0" height="15.0" fill="rgb(235,161,33)" rx="2" ry="2" />
<text x="196.59" y="527.5" ></text>
</g>
<g >
<title>std::sys::unix::rwlock::RWLock::write::hf878fa4311c3caa2 (1 samples, 0.12%)</title><rect x="541.1" y="693" width="1.4" height="15.0" fill="rgb(248,119,9)" rx="2" ry="2" />
<text x="544.14" y="703.5" ></text>
</g>
<g >
<title>try_to_wake_up (1 samples, 0.12%)</title><rect x="1177.4" y="885" width="1.4" height="15.0" fill="rgb(206,210,46)" rx="2" ry="2" />
<text x="1180.39" y="895.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h927f5222ad4383be (3 samples, 0.36%)</title><rect x="150.1" y="197" width="4.2" height="15.0" fill="rgb(235,121,39)" rx="2" ry="2" />
<text x="153.14" y="207.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="972.8" y="741" width="1.4" height="15.0" fill="rgb(236,197,11)" rx="2" ry="2" />
<text x="975.78" y="751.5" ></text>
</g>
<g >
<title>std::sys::unix::thread::Thread::new::thread_start::h61c012ef60f933c0 (55 samples, 6.53%)</title><rect x="56.2" y="965" width="77.1" height="15.0" fill="rgb(251,149,3)" rx="2" ry="2" />
<text x="59.25" y="975.5" >std::sys..</text>
</g>
<g >
<title>_int_malloc (5 samples, 0.59%)</title><rect x="436.0" y="517" width="7.0" height="15.0" fill="rgb(243,41,32)" rx="2" ry="2" />
<text x="439.03" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (1 samples, 0.12%)</title><rect x="46.4" y="357" width="1.4" height="15.0" fill="rgb(234,149,34)" rx="2" ry="2" />
<text x="49.44" y="367.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (4 samples, 0.48%)</title><rect x="765.4" y="693" width="5.6" height="15.0" fill="rgb(236,83,8)" rx="2" ry="2" />
<text x="768.37" y="703.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.12%)</title><rect x="130.5" y="565" width="1.4" height="15.0" fill="rgb(236,69,30)" rx="2" ry="2" />
<text x="133.52" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::do_redundant_fill_removal_on_function::h0915e7840d7db9a4 (2 samples, 0.24%)</title><rect x="36.6" y="325" width="2.8" height="15.0" fill="rgb(221,11,1)" rx="2" ry="2" />
<text x="39.63" y="335.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0b2b73b0163102fc (1 samples, 0.12%)</title><rect x="1010.6" y="709" width="1.4" height="15.0" fill="rgb(228,24,33)" rx="2" ry="2" />
<text x="1013.62" y="719.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (206 samples, 24.47%)</title><rect x="255.2" y="773" width="288.7" height="15.0" fill="rgb(237,177,23)" rx="2" ry="2" />
<text x="258.25" y="783.5" >wasmer_runtime_core::compile_with_conf..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h09dd68e5677158e3 (1 samples, 0.12%)</title><rect x="256.7" y="677" width="1.4" height="15.0" fill="rgb(214,195,35)" rx="2" ry="2" />
<text x="259.65" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (1 samples, 0.12%)</title><rect x="476.7" y="677" width="1.4" height="15.0" fill="rgb(229,20,47)" rx="2" ry="2" />
<text x="479.67" y="687.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (3 samples, 0.36%)</title><rect x="706.5" y="693" width="4.2" height="15.0" fill="rgb(233,211,22)" rx="2" ry="2" />
<text x="709.51" y="703.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::with_body::ha0c06395d7cc47cf (4 samples, 0.48%)</title><rect x="881.7" y="741" width="5.6" height="15.0" fill="rgb(208,63,51)" rx="2" ry="2" />
<text x="884.69" y="751.5" ></text>
</g>
<g >
<title>crossbeam_epoch::sync::queue::Queue$LT$T$GT$::try_pop_if::h01df6640649252a6 (3 samples, 0.36%)</title><rect x="113.7" y="325" width="4.2" height="15.0" fill="rgb(216,225,37)" rx="2" ry="2" />
<text x="116.71" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (1 samples, 0.12%)</title><rect x="46.4" y="341" width="1.4" height="15.0" fill="rgb(234,160,44)" rx="2" ry="2" />
<text x="49.44" y="351.5" ></text>
</g>
<g >
<title>call_rwsem_wake (1 samples, 0.12%)</title><rect x="1177.4" y="933" width="1.4" height="15.0" fill="rgb(226,223,21)" rx="2" ry="2" />
<text x="1180.39" y="943.5" ></text>
</g>
<g >
<title>std::thread::local::lazy::LazyKeyInner$LT$T$GT$::get::hf67f240c3ee79a95 (1 samples, 0.12%)</title><rect x="63.3" y="373" width="1.4" height="15.0" fill="rgb(246,30,33)" rx="2" ry="2" />
<text x="66.25" y="383.5" ></text>
</g>
<g >
<title>memset_erms (2 samples, 0.24%)</title><rect x="1173.2" y="853" width="2.8" height="15.0" fill="rgb(254,213,7)" rx="2" ry="2" />
<text x="1176.18" y="863.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::heb8bb6a113da11f9 (1 samples, 0.12%)</title><rect x="53.4" y="597" width="1.4" height="15.0" fill="rgb(253,177,38)" rx="2" ry="2" />
<text x="56.44" y="607.5" ></text>
</g>
<g >
<title>alloc::alloc::exchange_malloc::h4ed529a7aa347ab4 (3 samples, 0.36%)</title><rect x="895.7" y="725" width="4.2" height="15.0" fill="rgb(219,64,23)" rx="2" ry="2" />
<text x="898.70" y="735.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (3 samples, 0.36%)</title><rect x="52.0" y="997" width="4.2" height="15.0" fill="rgb(245,2,4)" rx="2" ry="2" />
<text x="55.04" y="1007.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::resize::h31fc538b79960e36 (5 samples, 0.59%)</title><rect x="436.0" y="597" width="7.0" height="15.0" fill="rgb(243,138,35)" rx="2" ry="2" />
<text x="439.03" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::inst_variable_args::h584c8cd6807c9901 (1 samples, 0.12%)</title><rect x="15.6" y="757" width="1.4" height="15.0" fill="rgb(209,217,40)" rx="2" ry="2" />
<text x="18.61" y="767.5" ></text>
</g>
<g >
<title>start_thread (55 samples, 6.53%)</title><rect x="56.2" y="981" width="77.1" height="15.0" fill="rgb(230,31,49)" rx="2" ry="2" />
<text x="59.25" y="991.5" >start_th..</text>
</g>
<g >
<title>anon_vma_interval_tree_remove (1 samples, 0.12%)</title><rect x="269.3" y="565" width="1.4" height="15.0" fill="rgb(231,96,2)" rx="2" ry="2" />
<text x="272.26" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueVec::push::h86cab7a0ba357c1b (1 samples, 0.12%)</title><rect x="1166.2" y="773" width="1.4" height="15.0" fill="rgb(217,178,42)" rx="2" ry="2" />
<text x="1169.18" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="570.6" y="501" width="5.6" height="15.0" fill="rgb(254,145,13)" rx="2" ry="2" />
<text x="573.57" y="511.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (3 samples, 0.36%)</title><rect x="706.5" y="677" width="4.2" height="15.0" fill="rgb(235,23,29)" rx="2" ry="2" />
<text x="709.51" y="687.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (2 samples, 0.24%)</title><rect x="1162.0" y="997" width="2.8" height="15.0" fill="rgb(226,136,15)" rx="2" ry="2" />
<text x="1164.97" y="1007.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::ha94c45315377da75 (5 samples, 0.59%)</title><rect x="176.8" y="405" width="7.0" height="15.0" fill="rgb(217,198,1)" rx="2" ry="2" />
<text x="179.77" y="415.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h1b1bab09467e3831 (11 samples, 1.31%)</title><rect x="144.5" y="405" width="15.5" height="15.0" fill="rgb(214,75,21)" rx="2" ry="2" />
<text x="147.54" y="415.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (3 samples, 0.36%)</title><rect x="549.5" y="725" width="4.3" height="15.0" fill="rgb(246,50,34)" rx="2" ry="2" />
<text x="552.55" y="735.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (715 samples, 84.92%)</title><rect x="134.7" y="949" width="1002.0" height="15.0" fill="rgb(221,101,2)" rx="2" ry="2" />
<text x="137.73" y="959.5" >std::rt::lang_start_internal::h3bdc4c7d98181bf9</text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::h454b58eed3ec980d (5 samples, 0.59%)</title><rect x="176.8" y="357" width="7.0" height="15.0" fill="rgb(249,44,32)" rx="2" ry="2" />
<text x="179.77" y="367.5" ></text>
</g>
<g >
<title>rayon_core::sleep::Sleep::no_work_found::h6c97f111a84bec3e (9 samples, 1.07%)</title><rect x="119.3" y="677" width="12.6" height="15.0" fill="rgb(235,208,34)" rx="2" ry="2" />
<text x="122.31" y="687.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="923.7" y="645" width="5.6" height="15.0" fill="rgb(239,214,48)" rx="2" ry="2" />
<text x="926.73" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbfd3d82dd12e1428 (4 samples, 0.48%)</title><rect x="748.6" y="693" width="5.6" height="15.0" fill="rgb(227,107,28)" rx="2" ry="2" />
<text x="751.55" y="703.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::hd1654cf4d271d3f5 (8 samples, 0.95%)</title><rect x="200.6" y="389" width="11.2" height="15.0" fill="rgb(213,140,14)" rx="2" ry="2" />
<text x="203.59" y="399.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h1b69d26d777a9276 (6 samples, 0.71%)</title><rect x="415.0" y="677" width="8.4" height="15.0" fill="rgb(237,86,0)" rx="2" ry="2" />
<text x="418.01" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$$u5b$T$u5d$$GT$::to_owned::h0ca4d6dca0b54848 (2 samples, 0.24%)</title><rect x="968.6" y="741" width="2.8" height="15.0" fill="rgb(253,96,38)" rx="2" ry="2" />
<text x="971.57" y="751.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h64e01156b7220ca0 (3 samples, 0.36%)</title><rect x="478.1" y="661" width="4.2" height="15.0" fill="rgb(234,59,4)" rx="2" ry="2" />
<text x="481.08" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (1 samples, 0.12%)</title><rect x="1145.2" y="805" width="1.4" height="15.0" fill="rgb(211,162,38)" rx="2" ry="2" />
<text x="1148.15" y="815.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h4b9f718698e27950 (1 samples, 0.12%)</title><rect x="262.3" y="645" width="1.4" height="15.0" fill="rgb(228,32,32)" rx="2" ry="2" />
<text x="265.26" y="655.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="934.9" y="725" width="1.4" height="15.0" fill="rgb(239,155,42)" rx="2" ry="2" />
<text x="937.94" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::visit_inst::h0d7532ac5a215532 (2 samples, 0.24%)</title><rect x="43.6" y="277" width="2.8" height="15.0" fill="rgb(210,84,54)" rx="2" ry="2" />
<text x="46.63" y="287.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::clear::hcdcc4d0308eb1adb (1 samples, 0.12%)</title><rect x="1163.4" y="709" width="1.4" height="15.0" fill="rgb(254,42,27)" rx="2" ry="2" />
<text x="1166.37" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf0275efcc783dc82 (4 samples, 0.48%)</title><rect x="570.6" y="693" width="5.6" height="15.0" fill="rgb(235,174,21)" rx="2" ry="2" />
<text x="573.57" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (5 samples, 0.59%)</title><rect x="738.7" y="645" width="7.0" height="15.0" fill="rgb(227,163,40)" rx="2" ry="2" />
<text x="741.74" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h855c05e682eda5ce (1 samples, 0.12%)</title><rect x="507.5" y="693" width="1.4" height="15.0" fill="rgb(245,226,50)" rx="2" ry="2" />
<text x="510.51" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h34c73ad4b67ed243 (8 samples, 0.95%)</title><rect x="232.8" y="757" width="11.2" height="15.0" fill="rgb(237,35,18)" rx="2" ry="2" />
<text x="235.83" y="767.5" ></text>
</g>
<g >
<title>sys_mprotect (4 samples, 0.48%)</title><rect x="1148.0" y="805" width="5.6" height="15.0" fill="rgb(248,51,46)" rx="2" ry="2" />
<text x="1150.96" y="815.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (1 samples, 0.12%)</title><rect x="25.4" y="805" width="1.4" height="15.0" fill="rgb(235,17,46)" rx="2" ry="2" />
<text x="28.42" y="815.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hc000ed0ad4265a98 (4 samples, 0.48%)</title><rect x="423.4" y="677" width="5.6" height="15.0" fill="rgb(234,181,39)" rx="2" ry="2" />
<text x="426.42" y="687.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (1 samples, 0.12%)</title><rect x="1159.2" y="741" width="1.4" height="15.0" fill="rgb(219,103,39)" rx="2" ry="2" />
<text x="1162.17" y="751.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hf5728161c12fcf1c (2 samples, 0.24%)</title><rect x="274.9" y="661" width="2.8" height="15.0" fill="rgb(250,150,40)" rx="2" ry="2" />
<text x="277.87" y="671.5" ></text>
</g>
<g >
<title>___slab_alloc (1 samples, 0.12%)</title><rect x="1171.8" y="821" width="1.4" height="15.0" fill="rgb(235,64,41)" rx="2" ry="2" />
<text x="1174.78" y="831.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::add::h7286341121943738 (1 samples, 0.12%)</title><rect x="675.7" y="565" width="1.4" height="15.0" fill="rgb(212,9,46)" rx="2" ry="2" />
<text x="678.68" y="575.5" ></text>
</g>
<g >
<title>sys_mmap (2 samples, 0.24%)</title><rect x="1153.6" y="805" width="2.8" height="15.0" fill="rgb(240,95,20)" rx="2" ry="2" />
<text x="1156.56" y="815.5" ></text>
</g>
<g >
<title>native_flush_tlb_others (1 samples, 0.12%)</title><rect x="1157.8" y="677" width="1.4" height="15.0" fill="rgb(211,227,12)" rx="2" ry="2" />
<text x="1160.77" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h96b83998c9d7e41c (4 samples, 0.48%)</title><rect x="748.6" y="661" width="5.6" height="15.0" fill="rgb(207,182,19)" rx="2" ry="2" />
<text x="751.55" y="671.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::min_by_key::h46b83e94ca225a6b (1 samples, 0.12%)</title><rect x="47.8" y="325" width="1.4" height="15.0" fill="rgb(247,80,49)" rx="2" ry="2" />
<text x="50.84" y="335.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..IndexedParallelIterator$GT$::with_producer::h33594415df50c415 (18 samples, 2.14%)</title><rect x="26.8" y="709" width="25.2" height="15.0" fill="rgb(218,73,50)" rx="2" ry="2" />
<text x="29.82" y="719.5" >_..</text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="681.3" y="565" width="2.8" height="15.0" fill="rgb(219,28,54)" rx="2" ry="2" />
<text x="684.28" y="575.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1 samples, 0.12%)</title><rect x="265.1" y="565" width="1.4" height="15.0" fill="rgb(208,151,9)" rx="2" ry="2" />
<text x="268.06" y="575.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::hd16d799b84977fb2 (1 samples, 0.12%)</title><rect x="1164.8" y="501" width="1.4" height="15.0" fill="rgb(239,99,2)" rx="2" ry="2" />
<text x="1167.77" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (1 samples, 0.12%)</title><rect x="31.0" y="341" width="1.4" height="15.0" fill="rgb(249,103,2)" rx="2" ry="2" />
<text x="34.02" y="351.5" ></text>
</g>
<g >
<title>mmap_region (2 samples, 0.24%)</title><rect x="272.1" y="581" width="2.8" height="15.0" fill="rgb(220,205,23)" rx="2" ry="2" />
<text x="275.07" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.48%)</title><rect x="714.9" y="533" width="5.6" height="15.0" fill="rgb(238,184,46)" rx="2" ry="2" />
<text x="717.92" y="543.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (6 samples, 0.71%)</title><rect x="817.2" y="645" width="8.4" height="15.0" fill="rgb(241,143,45)" rx="2" ry="2" />
<text x="820.22" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h5fbc6abcea635ee2 (1 samples, 0.12%)</title><rect x="256.7" y="645" width="1.4" height="15.0" fill="rgb(250,167,38)" rx="2" ry="2" />
<text x="259.65" y="655.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="845.2" y="565" width="1.5" height="15.0" fill="rgb(208,225,17)" rx="2" ry="2" />
<text x="848.25" y="575.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hdbcec1ca2afd5372 (54 samples, 6.41%)</title><rect x="56.2" y="869" width="75.7" height="15.0" fill="rgb(250,125,38)" rx="2" ry="2" />
<text x="59.25" y="879.5" >std::pan..</text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::process_tree::h39ab16b5918eac52 (1 samples, 0.12%)</title><rect x="38.0" y="309" width="1.4" height="15.0" fill="rgb(205,212,38)" rx="2" ry="2" />
<text x="41.03" y="319.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (3 samples, 0.36%)</title><rect x="339.3" y="661" width="4.2" height="15.0" fill="rgb(253,1,27)" rx="2" ry="2" />
<text x="342.33" y="671.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (2 samples, 0.24%)</title><rect x="267.9" y="629" width="2.8" height="15.0" fill="rgb(212,64,18)" rx="2" ry="2" />
<text x="270.86" y="639.5" ></text>
</g>
<g >
<title>std::thread::local::LocalKey$LT$T$GT$::try_with::h66177bc3d7530845 (2 samples, 0.24%)</title><rect x="61.9" y="421" width="2.8" height="15.0" fill="rgb(219,121,9)" rx="2" ry="2" />
<text x="64.85" y="431.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::hfe70ed3f423a623e (3 samples, 0.36%)</title><rect x="52.0" y="917" width="4.2" height="15.0" fill="rgb(234,18,42)" rx="2" ry="2" />
<text x="55.04" y="927.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1122.7" y="677" width="1.4" height="15.0" fill="rgb(223,45,1)" rx="2" ry="2" />
<text x="1125.73" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.36%)</title><rect x="154.3" y="149" width="4.3" height="15.0" fill="rgb(242,160,22)" rx="2" ry="2" />
<text x="157.35" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (1 samples, 0.12%)</title><rect x="14.2" y="837" width="1.4" height="15.0" fill="rgb(234,125,21)" rx="2" ry="2" />
<text x="17.20" y="847.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (1 samples, 0.12%)</title><rect x="793.4" y="645" width="1.4" height="15.0" fill="rgb(237,125,43)" rx="2" ry="2" />
<text x="796.40" y="655.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.24%)</title><rect x="1153.6" y="821" width="2.8" height="15.0" fill="rgb(250,85,23)" rx="2" ry="2" />
<text x="1156.56" y="831.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9a562ec56c05ddde (1 samples, 0.12%)</title><rect x="1119.9" y="757" width="1.4" height="15.0" fill="rgb(245,52,26)" rx="2" ry="2" />
<text x="1122.93" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="1122.7" y="645" width="1.4" height="15.0" fill="rgb(223,37,35)" rx="2" ry="2" />
<text x="1125.73" y="655.5" ></text>
</g>
<g >
<title>Z3_solver_check (2 samples, 0.24%)</title><rect x="866.3" y="773" width="2.8" height="15.0" fill="rgb(233,92,13)" rx="2" ry="2" />
<text x="869.27" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="1142.4" y="709" width="1.4" height="15.0" fill="rgb(226,113,37)" rx="2" ry="2" />
<text x="1145.35" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::details::start_pass::hd7fb3b93ee1da8db (1 samples, 0.12%)</title><rect x="29.6" y="309" width="1.4" height="15.0" fill="rgb(254,115,30)" rx="2" ry="2" />
<text x="32.62" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h4862717cb8770bf3 (6 samples, 0.71%)</title><rect x="939.1" y="693" width="8.5" height="15.0" fill="rgb(249,23,20)" rx="2" ry="2" />
<text x="942.14" y="703.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::dyn_func::h22490eb4f9ed4dfd (1 samples, 0.12%)</title><rect x="548.1" y="789" width="1.4" height="15.0" fill="rgb(248,110,25)" rx="2" ry="2" />
<text x="551.15" y="799.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="576.2" y="629" width="5.6" height="15.0" fill="rgb(219,195,11)" rx="2" ry="2" />
<text x="579.18" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (2 samples, 0.24%)</title><rect x="678.5" y="597" width="2.8" height="15.0" fill="rgb(208,193,11)" rx="2" ry="2" />
<text x="681.48" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="1131.1" y="677" width="2.8" height="15.0" fill="rgb(218,20,25)" rx="2" ry="2" />
<text x="1134.14" y="687.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h245554d4f6d307bc (6 samples, 0.71%)</title><rect x="906.9" y="725" width="8.4" height="15.0" fill="rgb(238,24,31)" rx="2" ry="2" />
<text x="909.91" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::cursor::Cursor::current_inst::hb55971522743c8a0 (1 samples, 0.12%)</title><rect x="12.8" y="789" width="1.4" height="15.0" fill="rgb(213,33,26)" rx="2" ry="2" />
<text x="15.80" y="799.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (1 samples, 0.12%)</title><rect x="18.4" y="773" width="1.4" height="15.0" fill="rgb(217,194,29)" rx="2" ry="2" />
<text x="21.41" y="783.5" ></text>
</g>
<g >
<title>_dl_map_object (1 samples, 0.12%)</title><rect x="1181.6" y="885" width="1.4" height="15.0" fill="rgb(247,221,42)" rx="2" ry="2" />
<text x="1184.59" y="895.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (8 samples, 0.95%)</title><rect x="431.8" y="645" width="11.2" height="15.0" fill="rgb(229,95,22)" rx="2" ry="2" />
<text x="434.83" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (6 samples, 0.71%)</title><rect x="244.0" y="677" width="8.4" height="15.0" fill="rgb(242,206,23)" rx="2" ry="2" />
<text x="247.04" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (1 samples, 0.12%)</title><rect x="1160.6" y="789" width="1.4" height="15.0" fill="rgb(225,85,35)" rx="2" ry="2" />
<text x="1163.57" y="799.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (7 samples, 0.83%)</title><rect x="150.1" y="277" width="9.9" height="15.0" fill="rgb(208,6,29)" rx="2" ry="2" />
<text x="153.14" y="287.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h59d9eccc36f81736 (45 samples, 5.34%)</title><rect x="56.2" y="597" width="63.1" height="15.0" fill="rgb(225,72,27)" rx="2" ry="2" />
<text x="59.25" y="607.5" >_$LT$c..</text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h5ea6a430c3b76c71 (1 samples, 0.12%)</title><rect x="36.6" y="261" width="1.4" height="15.0" fill="rgb(238,75,35)" rx="2" ry="2" />
<text x="39.63" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_entity..map..SecondaryMap$LT$K$C$V$GT$$u20$as$u20$core..ops..index..Index$LT$K$GT$$GT$::index::h2c66c50bf98c40da (1 samples, 0.12%)</title><rect x="42.2" y="293" width="1.4" height="15.0" fill="rgb(246,200,1)" rx="2" ry="2" />
<text x="45.23" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (4 samples, 0.48%)</title><rect x="848.1" y="661" width="5.6" height="15.0" fill="rgb(215,45,24)" rx="2" ry="2" />
<text x="851.05" y="671.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::build::hd5b52f86b88e443c (59 samples, 7.01%)</title><rect x="974.2" y="773" width="82.7" height="15.0" fill="rgb(208,137,15)" rx="2" ry="2" />
<text x="977.18" y="783.5" >parity_wa..</text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="235.6" y="597" width="1.4" height="15.0" fill="rgb(225,83,15)" rx="2" ry="2" />
<text x="238.63" y="607.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="685.5" y="549" width="1.4" height="15.0" fill="rgb(223,66,24)" rx="2" ry="2" />
<text x="688.49" y="559.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (1 samples, 0.12%)</title><rect x="677.1" y="597" width="1.4" height="15.0" fill="rgb(226,144,10)" rx="2" ry="2" />
<text x="680.08" y="607.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (8 samples, 0.95%)</title><rect x="529.9" y="677" width="11.2" height="15.0" fill="rgb(232,154,34)" rx="2" ry="2" />
<text x="532.93" y="687.5" ></text>
</g>
<g >
<title>vm_munmap (1 samples, 0.12%)</title><rect x="237.0" y="421" width="1.4" height="15.0" fill="rgb(229,207,16)" rx="2" ry="2" />
<text x="240.03" y="431.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h893c88444351b941 (5 samples, 0.59%)</title><rect x="576.2" y="661" width="7.0" height="15.0" fill="rgb(251,158,35)" rx="2" ry="2" />
<text x="579.18" y="671.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (1 samples, 0.12%)</title><rect x="237.0" y="341" width="1.4" height="15.0" fill="rgb(253,124,28)" rx="2" ry="2" />
<text x="240.03" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h6c5fd35b97fc8b23 (19 samples, 2.26%)</title><rect x="1079.3" y="725" width="26.6" height="15.0" fill="rgb(235,26,38)" rx="2" ry="2" />
<text x="1082.29" y="735.5" >a..</text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get_unchecked_mut::hb0307e6c885fd30a (1 samples, 0.12%)</title><rect x="675.7" y="613" width="1.4" height="15.0" fill="rgb(230,152,44)" rx="2" ry="2" />
<text x="678.68" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="53.4" y="501" width="1.4" height="15.0" fill="rgb(208,204,30)" rx="2" ry="2" />
<text x="56.44" y="511.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h4122676c740e9bd3 (2 samples, 0.24%)</title><rect x="375.8" y="613" width="2.8" height="15.0" fill="rgb(246,168,31)" rx="2" ry="2" />
<text x="378.77" y="623.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (2 samples, 0.24%)</title><rect x="1162.0" y="837" width="2.8" height="15.0" fill="rgb(237,184,43)" rx="2" ry="2" />
<text x="1164.97" y="847.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (14 samples, 1.66%)</title><rect x="615.4" y="693" width="19.6" height="15.0" fill="rgb(227,72,39)" rx="2" ry="2" />
<text x="618.42" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (3 samples, 0.36%)</title><rect x="883.1" y="629" width="4.2" height="15.0" fill="rgb(223,101,52)" rx="2" ry="2" />
<text x="886.09" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h0162c86268883d6e (31 samples, 3.68%)</title><rect x="1012.0" y="677" width="43.5" height="15.0" fill="rgb(209,58,37)" rx="2" ry="2" />
<text x="1015.02" y="687.5" >allo..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h4f5fcaec68b3da28 (21 samples, 2.49%)</title><rect x="553.8" y="773" width="29.4" height="15.0" fill="rgb(219,161,23)" rx="2" ry="2" />
<text x="556.75" y="783.5" >_$..</text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="681.3" y="581" width="2.8" height="15.0" fill="rgb(209,101,13)" rx="2" ry="2" />
<text x="684.28" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h40104eea2a4ed157 (5 samples, 0.59%)</title><rect x="576.2" y="693" width="7.0" height="15.0" fill="rgb(243,165,7)" rx="2" ry="2" />
<text x="579.18" y="703.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (1 samples, 0.12%)</title><rect x="237.0" y="501" width="1.4" height="15.0" fill="rgb(242,35,34)" rx="2" ry="2" />
<text x="240.03" y="511.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h2b990f8b346c6149 (1 samples, 0.12%)</title><rect x="1111.5" y="693" width="1.4" height="15.0" fill="rgb(208,50,34)" rx="2" ry="2" />
<text x="1114.52" y="703.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::h3826c224b3d01360 (11 samples, 1.31%)</title><rect x="144.5" y="389" width="15.5" height="15.0" fill="rgb(226,174,45)" rx="2" ry="2" />
<text x="147.54" y="399.5" ></text>
</g>
<g >
<title>core::ptr::write::hbd078577ca06aa3d (1 samples, 0.12%)</title><rect x="176.8" y="293" width="1.4" height="15.0" fill="rgb(229,63,4)" rx="2" ry="2" />
<text x="179.77" y="303.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (7 samples, 0.83%)</title><rect x="598.6" y="709" width="9.8" height="15.0" fill="rgb(245,225,40)" rx="2" ry="2" />
<text x="601.60" y="719.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::from_par_iter::hcc780dcd99c4dd47 (1 samples, 0.12%)</title><rect x="1164.8" y="933" width="1.4" height="15.0" fill="rgb(249,219,48)" rx="2" ry="2" />
<text x="1167.77" y="943.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="378.6" y="533" width="7.0" height="15.0" fill="rgb(210,199,21)" rx="2" ry="2" />
<text x="381.57" y="543.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha22fe22c40adc3f7 (21 samples, 2.49%)</title><rect x="979.8" y="693" width="29.4" height="15.0" fill="rgb(205,112,28)" rx="2" ry="2" />
<text x="982.79" y="703.5" >al..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (1 samples, 0.12%)</title><rect x="1166.2" y="789" width="1.4" height="15.0" fill="rgb(214,40,26)" rx="2" ry="2" />
<text x="1169.18" y="799.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::he7b0b871cfaa8e01 (1 samples, 0.12%)</title><rect x="1142.4" y="789" width="1.4" height="15.0" fill="rgb(231,107,15)" rx="2" ry="2" />
<text x="1145.35" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h28f2508d1fce2165 (1 samples, 0.12%)</title><rect x="845.2" y="629" width="1.5" height="15.0" fill="rgb(219,187,29)" rx="2" ry="2" />
<text x="848.25" y="639.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (1 samples, 0.12%)</title><rect x="38.0" y="293" width="1.4" height="15.0" fill="rgb(210,152,35)" rx="2" ry="2" />
<text x="41.03" y="303.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (7 samples, 0.83%)</title><rect x="183.8" y="421" width="9.8" height="15.0" fill="rgb(244,96,49)" rx="2" ry="2" />
<text x="186.78" y="431.5" ></text>
</g>
<g >
<title>rayon::iter::collect::_$LT$impl$u20$rayon..iter..ParallelExtend$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::par_extend::h1ed47f20ca241bcf (18 samples, 2.14%)</title><rect x="26.8" y="885" width="25.2" height="15.0" fill="rgb(252,28,6)" rx="2" ry="2" />
<text x="29.82" y="895.5" >r..</text>
</g>
<g >
<title>core::iter::adapters::map_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::h09e6ae84f5702760 (1 samples, 0.12%)</title><rect x="50.6" y="437" width="1.4" height="15.0" fill="rgb(218,135,50)" rx="2" ry="2" />
<text x="53.64" y="447.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::hc6488b1e2ae4c23d (1 samples, 0.12%)</title><rect x="49.2" y="277" width="1.4" height="15.0" fill="rgb(235,184,19)" rx="2" ry="2" />
<text x="52.24" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (7 samples, 0.83%)</title><rect x="598.6" y="693" width="9.8" height="15.0" fill="rgb(252,48,44)" rx="2" ry="2" />
<text x="601.60" y="703.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::overflowing_add::he2871af9ad84e017 (1 samples, 0.12%)</title><rect x="686.9" y="533" width="1.4" height="15.0" fill="rgb(227,58,8)" rx="2" ry="2" />
<text x="689.89" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (6 samples, 0.71%)</title><rect x="951.8" y="661" width="8.4" height="15.0" fill="rgb(235,193,4)" rx="2" ry="2" />
<text x="954.76" y="671.5" ></text>
</g>
<g >
<title>mprotect_fixup (2 samples, 0.24%)</title><rect x="267.9" y="613" width="2.8" height="15.0" fill="rgb(240,70,12)" rx="2" ry="2" />
<text x="270.86" y="623.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h11453e6976358159 (1 samples, 0.12%)</title><rect x="133.3" y="805" width="1.4" height="15.0" fill="rgb(241,98,28)" rx="2" ry="2" />
<text x="136.33" y="815.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="309.9" y="549" width="2.8" height="15.0" fill="rgb(206,156,29)" rx="2" ry="2" />
<text x="312.90" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (2 samples, 0.24%)</title><rect x="706.5" y="613" width="2.8" height="15.0" fill="rgb(228,46,3)" rx="2" ry="2" />
<text x="709.51" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (2 samples, 0.24%)</title><rect x="841.0" y="549" width="2.8" height="15.0" fill="rgb(219,57,32)" rx="2" ry="2" />
<text x="844.05" y="559.5" ></text>
</g>
<g >
<title>perf_event_mmap (1 samples, 0.12%)</title><rect x="1153.6" y="725" width="1.4" height="15.0" fill="rgb(240,17,3)" rx="2" ry="2" />
<text x="1156.56" y="735.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::fold1::ha4f05f390da02c58 (1 samples, 0.12%)</title><rect x="47.8" y="293" width="1.4" height="15.0" fill="rgb(220,133,52)" rx="2" ry="2" />
<text x="50.84" y="303.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="40.8" y="101" width="1.4" height="15.0" fill="rgb(217,85,36)" rx="2" ry="2" />
<text x="43.83" y="111.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="494.9" y="597" width="2.8" height="15.0" fill="rgb(244,68,52)" rx="2" ry="2" />
<text x="497.89" y="607.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::clear::hfd02411c2066ee80 (1 samples, 0.12%)</title><rect x="28.2" y="325" width="1.4" height="15.0" fill="rgb(246,46,40)" rx="2" ry="2" />
<text x="31.22" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="876.1" y="693" width="2.8" height="15.0" fill="rgb(224,122,51)" rx="2" ry="2" />
<text x="879.08" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hae3ade2e2396aabd (1 samples, 0.12%)</title><rect x="583.2" y="741" width="1.4" height="15.0" fill="rgb(221,7,38)" rx="2" ry="2" />
<text x="586.18" y="751.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::get::h3b0ba413b7007176 (1 samples, 0.12%)</title><rect x="1141.0" y="741" width="1.4" height="15.0" fill="rgb(232,62,24)" rx="2" ry="2" />
<text x="1143.95" y="751.5" ></text>
</g>
<g >
<title>alloc::vec::from_elem::habcf7e9ea4ef6818 (1 samples, 0.12%)</title><rect x="262.3" y="693" width="1.4" height="15.0" fill="rgb(218,67,45)" rx="2" ry="2" />
<text x="265.26" y="703.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (5 samples, 0.59%)</title><rect x="19.8" y="853" width="7.0" height="15.0" fill="rgb(225,84,49)" rx="2" ry="2" />
<text x="22.81" y="863.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::with_export::h27a9b61ef7706ef7 (8 samples, 0.95%)</title><rect x="950.4" y="741" width="11.2" height="15.0" fill="rgb(251,217,54)" rx="2" ry="2" />
<text x="953.36" y="751.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (15 samples, 1.78%)</title><rect x="1136.7" y="917" width="21.1" height="15.0" fill="rgb(244,199,12)" rx="2" ry="2" />
<text x="1139.75" y="927.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="912.5" y="613" width="2.8" height="15.0" fill="rgb(234,182,31)" rx="2" ry="2" />
<text x="915.52" y="623.5" ></text>
</g>
<g >
<title>page_fault (1 samples, 0.12%)</title><rect x="863.5" y="709" width="1.4" height="15.0" fill="rgb(221,52,47)" rx="2" ry="2" />
<text x="866.47" y="719.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (2 samples, 0.24%)</title><rect x="1162.0" y="981" width="2.8" height="15.0" fill="rgb(230,60,22)" rx="2" ry="2" />
<text x="1164.97" y="991.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_with::hb9f8e0c53d71767e (1 samples, 0.12%)</title><rect x="11.4" y="725" width="1.4" height="15.0" fill="rgb(240,222,36)" rx="2" ry="2" />
<text x="14.40" y="735.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$::clone::hb3781841ab52f338 (1 samples, 0.12%)</title><rect x="152.9" y="53" width="1.4" height="15.0" fill="rgb(251,131,4)" rx="2" ry="2" />
<text x="155.95" y="63.5" ></text>
</g>
<g >
<title>malloc_hook_ini (1 samples, 0.12%)</title><rect x="1180.2" y="837" width="1.4" height="15.0" fill="rgb(232,150,14)" rx="2" ry="2" />
<text x="1183.19" y="847.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::hfb8feb38e26cefc7 (18 samples, 2.14%)</title><rect x="26.8" y="821" width="25.2" height="15.0" fill="rgb(217,26,1)" rx="2" ry="2" />
<text x="29.82" y="831.5" >_..</text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::new::h3f1dc390b23514f6 (1 samples, 0.12%)</title><rect x="343.5" y="661" width="1.4" height="15.0" fill="rgb(207,110,27)" rx="2" ry="2" />
<text x="346.54" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (1 samples, 0.12%)</title><rect x="32.4" y="357" width="1.4" height="15.0" fill="rgb(227,191,29)" rx="2" ry="2" />
<text x="35.42" y="367.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (4 samples, 0.48%)</title><rect x="839.6" y="613" width="5.6" height="15.0" fill="rgb(220,165,50)" rx="2" ry="2" />
<text x="842.64" y="623.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1 samples, 0.12%)</title><rect x="1166.2" y="997" width="1.4" height="15.0" fill="rgb(224,79,15)" rx="2" ry="2" />
<text x="1169.18" y="1007.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="255.2" y="725" width="1.5" height="15.0" fill="rgb(219,35,30)" rx="2" ry="2" />
<text x="258.25" y="735.5" ></text>
</g>
<g >
<title>rayon::iter::extend::collect::h3ca5cf21a6ef6fc7 (3 samples, 0.36%)</title><rect x="52.0" y="853" width="4.2" height="15.0" fill="rgb(206,42,10)" rx="2" ry="2" />
<text x="55.04" y="863.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h08ddd46ade302123 (3 samples, 0.36%)</title><rect x="52.0" y="725" width="4.2" height="15.0" fill="rgb(252,116,3)" rx="2" ry="2" />
<text x="55.04" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::run::h514625a86c8948e2 (1 samples, 0.12%)</title><rect x="1166.2" y="837" width="1.4" height="15.0" fill="rgb(206,116,21)" rx="2" ry="2" />
<text x="1169.18" y="847.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::_$LT$impl$u20$core..convert..From$LT$parity_wasm..builder..module..ModuleScaffold$GT$$u20$for$u20$parity_wasm..elements..module..Module$GT$::from::hf26812deeed40e05 (58 samples, 6.89%)</title><rect x="975.6" y="741" width="81.3" height="15.0" fill="rgb(208,141,30)" rx="2" ry="2" />
<text x="978.58" y="751.5" >parity_wa..</text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="422.0" y="581" width="1.4" height="15.0" fill="rgb(241,147,18)" rx="2" ry="2" />
<text x="425.02" y="591.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (1 samples, 0.12%)</title><rect x="33.8" y="229" width="1.4" height="15.0" fill="rgb(240,213,32)" rx="2" ry="2" />
<text x="36.82" y="239.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (7 samples, 0.83%)</title><rect x="660.3" y="565" width="9.8" height="15.0" fill="rgb(242,30,16)" rx="2" ry="2" />
<text x="663.26" y="575.5" ></text>
</g>
<g >
<title>pthread_getattr_np (1 samples, 0.12%)</title><rect x="131.9" y="853" width="1.4" height="15.0" fill="rgb(212,135,38)" rx="2" ry="2" />
<text x="134.92" y="863.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hced5582be437b9a2 (5 samples, 0.59%)</title><rect x="408.0" y="645" width="7.0" height="15.0" fill="rgb(240,97,2)" rx="2" ry="2" />
<text x="411.00" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hd7cca6a9107f50d6 (1 samples, 0.12%)</title><rect x="1142.4" y="821" width="1.4" height="15.0" fill="rgb(213,164,24)" rx="2" ry="2" />
<text x="1145.35" y="831.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="253.8" y="773" width="1.4" height="15.0" fill="rgb(251,120,30)" rx="2" ry="2" />
<text x="256.85" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hb19a801825944200 (2 samples, 0.24%)</title><rect x="876.1" y="725" width="2.8" height="15.0" fill="rgb(232,187,27)" rx="2" ry="2" />
<text x="879.08" y="735.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::steal::h374b0fc399d74147 (45 samples, 5.34%)</title><rect x="56.2" y="645" width="63.1" height="15.0" fill="rgb(235,54,14)" rx="2" ry="2" />
<text x="59.25" y="655.5" >rayon_..</text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="853.7" y="645" width="1.4" height="15.0" fill="rgb(244,59,0)" rx="2" ry="2" />
<text x="856.66" y="655.5" ></text>
</g>
<g >
<title>__sigjmp_save (3 samples, 0.36%)</title><rect x="543.9" y="693" width="4.2" height="15.0" fill="rgb(210,95,38)" rx="2" ry="2" />
<text x="546.94" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::he2cc0f066058ca1e (2 samples, 0.24%)</title><rect x="876.1" y="741" width="2.8" height="15.0" fill="rgb(207,42,53)" rx="2" ry="2" />
<text x="879.08" y="751.5" ></text>
</g>
<g >
<title>__sigprocmask (3 samples, 0.36%)</title><rect x="1185.8" y="981" width="4.2" height="15.0" fill="rgb(251,150,39)" rx="2" ry="2" />
<text x="1188.80" y="991.5" ></text>
</g>
<g >
<title>core::result::Result$LT$T$C$E$GT$::map_err::hd0e45861f2b07d52 (1 samples, 0.12%)</title><rect x="325.3" y="629" width="1.4" height="15.0" fill="rgb(254,178,22)" rx="2" ry="2" />
<text x="328.32" y="639.5" ></text>
</g>
<g >
<title>std::thread::local::LocalKey$LT$T$GT$::try_with::hd7afc50a6508e120 (36 samples, 4.28%)</title><rect x="67.5" y="421" width="50.4" height="15.0" fill="rgb(244,129,26)" rx="2" ry="2" />
<text x="70.46" y="431.5" >std::..</text>
</g>
<g >
<title>do_munmap (1 samples, 0.12%)</title><rect x="237.0" y="405" width="1.4" height="15.0" fill="rgb(241,87,49)" rx="2" ry="2" />
<text x="240.03" y="415.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (715 samples, 84.92%)</title><rect x="134.7" y="901" width="1002.0" height="15.0" fill="rgb(229,174,10)" rx="2" ry="2" />
<text x="137.73" y="911.5" >__rust_maybe_catch_panic</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hb19a801825944200 (8 samples, 0.95%)</title><rect x="200.6" y="213" width="11.2" height="15.0" fill="rgb(221,56,27)" rx="2" ry="2" />
<text x="203.59" y="223.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (4 samples, 0.48%)</title><rect x="1128.3" y="757" width="5.6" height="15.0" fill="rgb(210,222,11)" rx="2" ry="2" />
<text x="1131.34" y="767.5" ></text>
</g>
<g >
<title>__opendir (1 samples, 0.12%)</title><rect x="1180.2" y="885" width="1.4" height="15.0" fill="rgb(248,197,36)" rx="2" ry="2" />
<text x="1183.19" y="895.5" ></text>
</g>
<g >
<title>parity_wasm::elements::section::CodeSection::bodies_mut::h00533e11de63cda0 (1 samples, 0.12%)</title><rect x="960.2" y="725" width="1.4" height="15.0" fill="rgb(226,93,31)" rx="2" ry="2" />
<text x="963.17" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (1 samples, 0.12%)</title><rect x="1143.8" y="773" width="1.4" height="15.0" fill="rgb(220,59,33)" rx="2" ry="2" />
<text x="1146.75" y="783.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (5 samples, 0.59%)</title><rect x="846.7" y="725" width="7.0" height="15.0" fill="rgb(232,86,18)" rx="2" ry="2" />
<text x="849.65" y="735.5" ></text>
</g>
<g >
<title>std::f64::_$LT$impl$u20$f64$GT$::exp::hd414f76d36bc23d7 (2 samples, 0.24%)</title><rect x="1133.9" y="805" width="2.8" height="15.0" fill="rgb(221,222,9)" rx="2" ry="2" />
<text x="1136.94" y="815.5" ></text>
</g>
<g >
<title>_dl_map_object_deps (1 samples, 0.12%)</title><rect x="1181.6" y="933" width="1.4" height="15.0" fill="rgb(240,175,53)" rx="2" ry="2" />
<text x="1184.59" y="943.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd442425b52ef964d (58 samples, 6.89%)</title><rect x="138.9" y="661" width="81.3" height="15.0" fill="rgb(214,162,28)" rx="2" ry="2" />
<text x="141.93" y="671.5" >_$LT$core..</text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..SigIndex$u20$as$u20$wasmer_runtime_core..structures..TypedIndex$GT$::index::h7510ab74816c04d6 (1 samples, 0.12%)</title><rect x="1162.0" y="757" width="1.4" height="15.0" fill="rgb(224,180,2)" rx="2" ry="2" />
<text x="1164.97" y="767.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..Internal$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h94017ed9d6b45814 (6 samples, 0.71%)</title><rect x="713.5" y="693" width="8.4" height="15.0" fill="rgb(213,59,38)" rx="2" ry="2" />
<text x="716.52" y="703.5" ></text>
</g>
<g >
<title>_$LT$rand_core..block..BlockRng$LT$R$GT$$u20$as$u20$rand_core..RngCore$GT$::next_u32::h19ce6e38db5779b7 (3 samples, 0.36%)</title><rect x="857.9" y="645" width="4.2" height="15.0" fill="rgb(242,60,38)" rx="2" ry="2" />
<text x="860.86" y="655.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::swap::hef8f55d4b367fc1f (7 samples, 0.83%)</title><rect x="1124.1" y="789" width="9.8" height="15.0" fill="rgb(231,68,1)" rx="2" ry="2" />
<text x="1127.13" y="799.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (2 samples, 0.24%)</title><rect x="1089.1" y="645" width="2.8" height="15.0" fill="rgb(228,191,38)" rx="2" ry="2" />
<text x="1092.10" y="655.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::with_handle::_$u7b$$u7b$closure$u7d$$u7d$::hfbeef226347ac05e (32 samples, 3.80%)</title><rect x="73.1" y="405" width="44.8" height="15.0" fill="rgb(229,50,25)" rx="2" ry="2" />
<text x="76.06" y="415.5" >cros..</text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::hbd67ca119c31b0c4 (5 samples, 0.59%)</title><rect x="436.0" y="581" width="7.0" height="15.0" fill="rgb(226,150,0)" rx="2" ry="2" />
<text x="439.03" y="591.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h678b6ed657bcebee (1 samples, 0.12%)</title><rect x="1077.9" y="693" width="1.4" height="15.0" fill="rgb(206,114,8)" rx="2" ry="2" />
<text x="1080.89" y="703.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (11 samples, 1.31%)</title><rect x="527.1" y="741" width="15.4" height="15.0" fill="rgb(223,202,32)" rx="2" ry="2" />
<text x="530.13" y="751.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (7 samples, 0.83%)</title><rect x="755.6" y="581" width="9.8" height="15.0" fill="rgb(247,127,9)" rx="2" ry="2" />
<text x="758.56" y="591.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="780.8" y="549" width="1.4" height="15.0" fill="rgb(229,164,47)" rx="2" ry="2" />
<text x="783.78" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="493.5" y="533" width="1.4" height="15.0" fill="rgb(221,9,17)" rx="2" ry="2" />
<text x="496.49" y="543.5" ></text>
</g>
<g >
<title>_$LT$std..panic..AssertUnwindSafe$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$GT$::call_once::h0c2eabb776cf49fb (54 samples, 6.41%)</title><rect x="56.2" y="805" width="75.7" height="15.0" fill="rgb(227,59,39)" rx="2" ry="2" />
<text x="59.25" y="815.5" >_$LT$std..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (6 samples, 0.71%)</title><rect x="951.8" y="645" width="8.4" height="15.0" fill="rgb(241,112,44)" rx="2" ry="2" />
<text x="954.76" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (19 samples, 2.26%)</title><rect x="1079.3" y="677" width="26.6" height="15.0" fill="rgb(248,12,20)" rx="2" ry="2" />
<text x="1082.29" y="687.5" >_..</text>
</g>
<g >
<title>cranelift_codegen::ir::stackslot::StackSlots::push::h95401f482e65726d (1 samples, 0.12%)</title><rect x="14.2" y="789" width="1.4" height="15.0" fill="rgb(226,98,52)" rx="2" ry="2" />
<text x="17.20" y="799.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::dce::h4db8f4248ca15d97 (1 samples, 0.12%)</title><rect x="1159.2" y="821" width="1.4" height="15.0" fill="rgb(237,139,53)" rx="2" ry="2" />
<text x="1162.17" y="831.5" ></text>
</g>
<g >
<title>vma_interval_tree_insert (1 samples, 0.12%)</title><rect x="1178.8" y="837" width="1.4" height="15.0" fill="rgb(250,204,38)" rx="2" ry="2" />
<text x="1181.79" y="847.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="14.2" y="645" width="1.4" height="15.0" fill="rgb(247,38,9)" rx="2" ry="2" />
<text x="17.20" y="655.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::as_ref::h511f9eed01216d1f (1 samples, 0.12%)</title><rect x="527.1" y="661" width="1.4" height="15.0" fill="rgb(219,12,46)" rx="2" ry="2" />
<text x="530.13" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="710.7" y="645" width="1.4" height="15.0" fill="rgb(251,55,7)" rx="2" ry="2" />
<text x="713.71" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (1 samples, 0.12%)</title><rect x="1160.6" y="853" width="1.4" height="15.0" fill="rgb(223,54,14)" rx="2" ry="2" />
<text x="1163.57" y="863.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.12%)</title><rect x="1159.2" y="709" width="1.4" height="15.0" fill="rgb(212,103,48)" rx="2" ry="2" />
<text x="1162.17" y="719.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (3 samples, 0.36%)</title><rect x="827.0" y="549" width="4.2" height="15.0" fill="rgb(239,17,20)" rx="2" ry="2" />
<text x="830.03" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compute_cfg::h00be85fd0d3f7fab (1 samples, 0.12%)</title><rect x="29.6" y="357" width="1.4" height="15.0" fill="rgb(228,97,6)" rx="2" ry="2" />
<text x="32.62" y="367.5" ></text>
</g>
<g >
<title>copy_process.part.35 (6 samples, 0.71%)</title><rect x="1167.6" y="933" width="8.4" height="15.0" fill="rgb(224,1,50)" rx="2" ry="2" />
<text x="1170.58" y="943.5" ></text>
</g>
<g >
<title>core::result::Result$LT$T$C$E$GT$::unwrap::h71154b4b0cdf068c (1 samples, 0.12%)</title><rect x="586.0" y="805" width="1.4" height="15.0" fill="rgb(246,113,47)" rx="2" ry="2" />
<text x="588.99" y="815.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h619007961d8fc372 (2 samples, 0.24%)</title><rect x="968.6" y="693" width="2.8" height="15.0" fill="rgb(224,31,25)" rx="2" ry="2" />
<text x="971.57" y="703.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::WhitelistedInstruction::sample::h9a59cbfed31487a4 (2 samples, 0.24%)</title><rect x="1112.9" y="773" width="2.8" height="15.0" fill="rgb(229,7,47)" rx="2" ry="2" />
<text x="1115.92" y="783.5" ></text>
</g>
<g >
<title>clap::app::App::get_matches_from::h062c17bc9ccf7af2 (1 samples, 0.12%)</title><rect x="134.7" y="805" width="1.4" height="15.0" fill="rgb(246,190,8)" rx="2" ry="2" />
<text x="137.73" y="815.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.59%)</title><rect x="996.6" y="597" width="7.0" height="15.0" fill="rgb(219,155,32)" rx="2" ry="2" />
<text x="999.60" y="607.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.12%)</title><rect x="1184.4" y="997" width="1.4" height="15.0" fill="rgb(226,50,14)" rx="2" ry="2" />
<text x="1187.39" y="1007.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (2 samples, 0.24%)</title><rect x="239.8" y="485" width="2.8" height="15.0" fill="rgb(253,194,7)" rx="2" ry="2" />
<text x="242.83" y="495.5" ></text>
</g>
<g >
<title>core::intrinsics::copy_nonoverlapping::hf7bdb82089647043 (1 samples, 0.12%)</title><rect x="674.3" y="597" width="1.4" height="15.0" fill="rgb(220,227,25)" rx="2" ry="2" />
<text x="677.28" y="607.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSomeFolder$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$core..option..Option$LT$T$GT$$GT$$GT$::complete::ha7eb9ecd5019fbf0 (1 samples, 0.12%)</title><rect x="52.0" y="597" width="1.4" height="15.0" fill="rgb(230,33,43)" rx="2" ry="2" />
<text x="55.04" y="607.5" ></text>
</g>
<g >
<title>__alloc_dir (1 samples, 0.12%)</title><rect x="1180.2" y="853" width="1.4" height="15.0" fill="rgb(205,138,11)" rx="2" ry="2" />
<text x="1183.19" y="863.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h6a84daac62135148 (1 samples, 0.12%)</title><rect x="485.1" y="661" width="1.4" height="15.0" fill="rgb(246,114,18)" rx="2" ry="2" />
<text x="488.08" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (7 samples, 0.83%)</title><rect x="660.3" y="549" width="9.8" height="15.0" fill="rgb(212,186,11)" rx="2" ry="2" />
<text x="663.26" y="559.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear::_$u7b$$u7b$closure$u7d$$u7d$::h9ad3c69d3e5d91ed (1 samples, 0.12%)</title><rect x="28.2" y="261" width="1.4" height="15.0" fill="rgb(243,227,7)" rx="2" ry="2" />
<text x="31.22" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1 samples, 0.12%)</title><rect x="720.5" y="613" width="1.4" height="15.0" fill="rgb(253,25,31)" rx="2" ry="2" />
<text x="723.52" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::_$u7b$$u7b$closure$u7d$$u7d$::hfeea0e31d90bcca3 (4 samples, 0.48%)</title><rect x="138.9" y="565" width="5.6" height="15.0" fill="rgb(220,92,5)" rx="2" ry="2" />
<text x="141.93" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::details::start_pass::hd7fb3b93ee1da8db (1 samples, 0.12%)</title><rect x="31.0" y="309" width="1.4" height="15.0" fill="rgb(215,176,0)" rx="2" ry="2" />
<text x="34.02" y="319.5" ></text>
</g>
<g >
<title>rand::Rng::gen_range::h71e6e2e80203939d (5 samples, 0.59%)</title><rect x="855.1" y="741" width="7.0" height="15.0" fill="rgb(243,169,48)" rx="2" ry="2" />
<text x="858.06" y="751.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (1 samples, 0.12%)</title><rect x="670.1" y="565" width="1.4" height="15.0" fill="rgb(231,224,2)" rx="2" ry="2" />
<text x="673.07" y="575.5" ></text>
</g>
<g >
<title>_$LT$u8$u20$as$u20$alloc..vec..SpecFromElem$GT$::from_elem::h5df8a114daba0608 (1 samples, 0.12%)</title><rect x="262.3" y="677" width="1.4" height="15.0" fill="rgb(247,229,46)" rx="2" ry="2" />
<text x="265.26" y="687.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h22af0a113d8cf653 (8 samples, 0.95%)</title><rect x="200.6" y="405" width="11.2" height="15.0" fill="rgb(219,168,0)" rx="2" ry="2" />
<text x="203.59" y="415.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::clear::h143c814be1c02781 (1 samples, 0.12%)</title><rect x="28.2" y="341" width="1.4" height="15.0" fill="rgb(213,102,52)" rx="2" ry="2" />
<text x="31.22" y="351.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear_no_drop::h79f619de356bc164 (1 samples, 0.12%)</title><rect x="28.2" y="245" width="1.4" height="15.0" fill="rgb(216,67,16)" rx="2" ry="2" />
<text x="31.22" y="255.5" ></text>
</g>
<g >
<title>change_protection (1 samples, 0.12%)</title><rect x="1149.4" y="757" width="1.4" height="15.0" fill="rgb(252,102,53)" rx="2" ry="2" />
<text x="1152.36" y="767.5" ></text>
</g>
<g >
<title>new_slab (1 samples, 0.12%)</title><rect x="1171.8" y="805" width="1.4" height="15.0" fill="rgb(246,114,53)" rx="2" ry="2" />
<text x="1174.78" y="815.5" ></text>
</g>
<g >
<title>__get_nprocs_conf (1 samples, 0.12%)</title><rect x="1180.2" y="901" width="1.4" height="15.0" fill="rgb(224,72,19)" rx="2" ry="2" />
<text x="1183.19" y="911.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::ha10cec1febecee84 (5 samples, 0.59%)</title><rect x="378.6" y="613" width="7.0" height="15.0" fill="rgb(244,32,23)" rx="2" ry="2" />
<text x="381.57" y="623.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.12%)</title><rect x="1177.4" y="965" width="1.4" height="15.0" fill="rgb(213,140,45)" rx="2" ry="2" />
<text x="1180.39" y="975.5" ></text>
</g>
<g >
<title>std::sys::unix::thread::guard::current::h101c5ada05dd6603 (1 samples, 0.12%)</title><rect x="131.9" y="869" width="1.4" height="15.0" fill="rgb(245,13,8)" rx="2" ry="2" />
<text x="134.92" y="879.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::he926be9e25de1109 (1 samples, 0.12%)</title><rect x="259.5" y="597" width="1.4" height="15.0" fill="rgb(254,29,47)" rx="2" ry="2" />
<text x="262.45" y="607.5" ></text>
</g>
<g >
<title>_$LT$rand..rngs..adapter..reseeding..ReseedingCore$LT$R$C$Rsdr$GT$$u20$as$u20$rand_core..block..BlockRngCore$GT$::generate::h0c42419c2b6250fe (1 samples, 0.12%)</title><rect x="860.7" y="613" width="1.4" height="15.0" fill="rgb(219,155,7)" rx="2" ry="2" />
<text x="863.67" y="623.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (1 samples, 0.12%)</title><rect x="46.4" y="325" width="1.4" height="15.0" fill="rgb(253,214,41)" rx="2" ry="2" />
<text x="49.44" y="335.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_key_value::h2e26cf6e6fd1b793 (3 samples, 0.36%)</title><rect x="478.1" y="613" width="4.2" height="15.0" fill="rgb(239,140,15)" rx="2" ry="2" />
<text x="481.08" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="583.2" y="709" width="1.4" height="15.0" fill="rgb(206,47,46)" rx="2" ry="2" />
<text x="586.18" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h8d5d1969fea5259e (6 samples, 0.71%)</title><rect x="211.8" y="453" width="8.4" height="15.0" fill="rgb(209,60,40)" rx="2" ry="2" />
<text x="214.81" y="463.5" ></text>
</g>
<g >
<title>unmap_single_vma (1 samples, 0.12%)</title><rect x="1184.4" y="853" width="1.4" height="15.0" fill="rgb(239,174,41)" rx="2" ry="2" />
<text x="1187.39" y="863.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (3 samples, 0.36%)</title><rect x="543.9" y="773" width="4.2" height="15.0" fill="rgb(208,117,31)" rx="2" ry="2" />
<text x="546.94" y="783.5" ></text>
</g>
<g >
<title>core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$str$GT$::hash::h34c0559131ca6fcb (1 samples, 0.12%)</title><rect x="429.0" y="613" width="1.4" height="15.0" fill="rgb(221,113,32)" rx="2" ry="2" />
<text x="432.03" y="623.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (3 samples, 0.36%)</title><rect x="734.5" y="613" width="4.2" height="15.0" fill="rgb(228,70,3)" rx="2" ry="2" />
<text x="737.54" y="623.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::call::_$u7b$$u7b$closure$u7d$$u7d$::h42b9e2ea7dcbf89f (2 samples, 0.24%)</title><rect x="144.5" y="325" width="2.8" height="15.0" fill="rgb(217,125,25)" rx="2" ry="2" />
<text x="147.54" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::he13aa6f563f3aeca (1 samples, 0.12%)</title><rect x="478.1" y="565" width="1.4" height="15.0" fill="rgb(205,136,20)" rx="2" ry="2" />
<text x="481.08" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (1 samples, 0.12%)</title><rect x="42.2" y="309" width="1.4" height="15.0" fill="rgb(223,45,13)" rx="2" ry="2" />
<text x="45.23" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.48%)</title><rect x="1148.0" y="837" width="5.6" height="15.0" fill="rgb(252,79,44)" rx="2" ry="2" />
<text x="1150.96" y="847.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..ProbeSeq$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hea8aca2c9e2c7eae (1 samples, 0.12%)</title><rect x="433.2" y="613" width="1.4" height="15.0" fill="rgb(228,96,33)" rx="2" ry="2" />
<text x="436.23" y="623.5" ></text>
</g>
<g >
<title>parity_wasm::elements::serialize::hc36e24131cbd9925 (190 samples, 22.57%)</title><rect x="588.8" y="789" width="266.3" height="15.0" fill="rgb(231,136,44)" rx="2" ry="2" />
<text x="591.79" y="799.5" >parity_wasm::elements::serialize::h..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (1 samples, 0.12%)</title><rect x="710.7" y="693" width="1.4" height="15.0" fill="rgb(231,111,24)" rx="2" ry="2" />
<text x="713.71" y="703.5" ></text>
</g>
<g >
<title>change_protection_range (1 samples, 0.12%)</title><rect x="1149.4" y="741" width="1.4" height="15.0" fill="rgb(244,212,1)" rx="2" ry="2" />
<text x="1152.36" y="751.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::complete::hd1e8def2dabc5e51 (1 samples, 0.12%)</title><rect x="52.0" y="613" width="1.4" height="15.0" fill="rgb(237,202,9)" rx="2" ry="2" />
<text x="55.04" y="623.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::write_bytes::hb2dc261e29115144 (1 samples, 0.12%)</title><rect x="28.2" y="229" width="1.4" height="15.0" fill="rgb(231,60,50)" rx="2" ry="2" />
<text x="31.22" y="239.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (1 samples, 0.12%)</title><rect x="262.3" y="709" width="1.4" height="15.0" fill="rgb(207,42,22)" rx="2" ry="2" />
<text x="265.26" y="719.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="38.0" y="133" width="1.4" height="15.0" fill="rgb(250,224,5)" rx="2" ry="2" />
<text x="41.03" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (2 samples, 0.24%)</title><rect x="1139.5" y="805" width="2.9" height="15.0" fill="rgb(222,7,34)" rx="2" ry="2" />
<text x="1142.55" y="815.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (2 samples, 0.24%)</title><rect x="490.7" y="613" width="2.8" height="15.0" fill="rgb(228,205,14)" rx="2" ry="2" />
<text x="493.69" y="623.5" ></text>
</g>
<g >
<title>_$LT$crossbeam_epoch..sync..list..Iter$LT$T$C$C$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hfa992e1b1f77fd4f (7 samples, 0.83%)</title><rect x="103.9" y="309" width="9.8" height="15.0" fill="rgb(209,136,9)" rx="2" ry="2" />
<text x="106.90" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="436.0" y="533" width="7.0" height="15.0" fill="rgb(221,106,6)" rx="2" ry="2" />
<text x="439.03" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::simplify::hdeffc00bdd146740 (1 samples, 0.12%)</title><rect x="35.2" y="325" width="1.4" height="15.0" fill="rgb(212,3,0)" rx="2" ry="2" />
<text x="38.23" y="335.5" ></text>
</g>
<g >
<title>__GI__dl_addr (1 samples, 0.12%)</title><rect x="1180.2" y="805" width="1.4" height="15.0" fill="rgb(223,131,26)" rx="2" ry="2" />
<text x="1183.19" y="815.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h5580f8e1cb59a4c0 (58 samples, 6.89%)</title><rect x="138.9" y="677" width="81.3" height="15.0" fill="rgb(225,31,1)" rx="2" ry="2" />
<text x="141.93" y="687.5" >_$LT$core..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h42f7ad9973531128 (14 samples, 1.66%)</title><rect x="657.5" y="661" width="19.6" height="15.0" fill="rgb(236,200,34)" rx="2" ry="2" />
<text x="660.46" y="671.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume::hc2c00237aa975ae6 (1 samples, 0.12%)</title><rect x="52.0" y="565" width="1.4" height="15.0" fill="rgb(208,115,45)" rx="2" ry="2" />
<text x="55.04" y="575.5" ></text>
</g>
<g >
<title>rocinante::exec::wasmer::Wasmer::new::hf1107b11a01d37af (1 samples, 0.12%)</title><rect x="1157.8" y="949" width="1.4" height="15.0" fill="rgb(242,219,36)" rx="2" ry="2" />
<text x="1160.77" y="959.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (4 samples, 0.48%)</title><rect x="748.6" y="597" width="5.6" height="15.0" fill="rgb(235,37,51)" rx="2" ry="2" />
<text x="751.55" y="607.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..plumbing..bridge..Callback$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..ProducerCallback$LT$I$GT$$GT$::callback::hf4ac68f147f82ab3 (1 samples, 0.12%)</title><rect x="1164.8" y="709" width="1.4" height="15.0" fill="rgb(232,166,44)" rx="2" ry="2" />
<text x="1167.77" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (1 samples, 0.12%)</title><rect x="39.4" y="309" width="1.4" height="15.0" fill="rgb(216,32,34)" rx="2" ry="2" />
<text x="42.43" y="319.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h472fb416f14bc7f5 (45 samples, 5.34%)</title><rect x="56.2" y="565" width="63.1" height="15.0" fill="rgb(230,106,49)" rx="2" ry="2" />
<text x="59.25" y="575.5" >core::..</text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::field::hfe273cdc0de5f043 (5 samples, 0.59%)</title><rect x="964.4" y="773" width="7.0" height="15.0" fill="rgb(242,14,38)" rx="2" ry="2" />
<text x="967.37" y="783.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (1 samples, 0.12%)</title><rect x="745.7" y="645" width="1.4" height="15.0" fill="rgb(243,201,47)" rx="2" ry="2" />
<text x="748.75" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="1136.7" y="757" width="1.4" height="15.0" fill="rgb(246,183,29)" rx="2" ry="2" />
<text x="1139.75" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::visit_ebb::hfbb99e781486252b (1 samples, 0.12%)</title><rect x="1166.2" y="821" width="1.4" height="15.0" fill="rgb(228,96,25)" rx="2" ry="2" />
<text x="1169.18" y="831.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb0649733a3784ed7 (1 samples, 0.12%)</title><rect x="493.5" y="565" width="1.4" height="15.0" fill="rgb(226,54,46)" rx="2" ry="2" />
<text x="496.49" y="575.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h5d7d1c3c3408e211 (58 samples, 6.89%)</title><rect x="138.9" y="629" width="81.3" height="15.0" fill="rgb(234,221,11)" rx="2" ry="2" />
<text x="141.93" y="639.5" >core::ite..</text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (12 samples, 1.43%)</title><rect x="754.2" y="725" width="16.8" height="15.0" fill="rgb(229,201,18)" rx="2" ry="2" />
<text x="757.16" y="735.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::with::_$u7b$$u7b$closure$u7d$$u7d$::h0b35bd47cc4bab00 (17 samples, 2.02%)</title><rect x="26.8" y="437" width="23.8" height="15.0" fill="rgb(224,143,21)" rx="2" ry="2" />
<text x="29.82" y="447.5" >_..</text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapInit$LT$I$C$INIT$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h6766d2778cbab6ce (1 samples, 0.12%)</title><rect x="1164.8" y="773" width="1.4" height="15.0" fill="rgb(229,46,15)" rx="2" ry="2" />
<text x="1167.77" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity_zeroed::h316f60c69570f4c3 (1 samples, 0.12%)</title><rect x="262.3" y="661" width="1.4" height="15.0" fill="rgb(205,129,14)" rx="2" ry="2" />
<text x="265.26" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h3be5ec3a7780bc0e (1 samples, 0.12%)</title><rect x="53.4" y="533" width="1.4" height="15.0" fill="rgb(239,15,1)" rx="2" ry="2" />
<text x="56.44" y="543.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.36%)</title><rect x="750.0" y="565" width="4.2" height="15.0" fill="rgb(212,59,4)" rx="2" ry="2" />
<text x="752.95" y="575.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (14 samples, 1.66%)</title><rect x="1136.7" y="885" width="19.7" height="15.0" fill="rgb(219,54,13)" rx="2" ry="2" />
<text x="1139.75" y="895.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1 samples, 0.12%)</title><rect x="1166.2" y="933" width="1.4" height="15.0" fill="rgb(245,170,28)" rx="2" ry="2" />
<text x="1169.18" y="943.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha9093790e6c98589 (4 samples, 0.48%)</title><rect x="923.7" y="661" width="5.6" height="15.0" fill="rgb(246,85,13)" rx="2" ry="2" />
<text x="926.73" y="671.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (6 samples, 0.71%)</title><rect x="792.0" y="725" width="8.4" height="15.0" fill="rgb(251,82,23)" rx="2" ry="2" />
<text x="795.00" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="939.1" y="629" width="7.1" height="15.0" fill="rgb(223,42,13)" rx="2" ry="2" />
<text x="942.14" y="639.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="762.6" y="533" width="2.8" height="15.0" fill="rgb(243,48,30)" rx="2" ry="2" />
<text x="765.57" y="543.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h32b318570ad34571 (4 samples, 0.48%)</title><rect x="423.4" y="645" width="5.6" height="15.0" fill="rgb(215,145,33)" rx="2" ry="2" />
<text x="426.42" y="655.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (6 samples, 0.71%)</title><rect x="266.5" y="725" width="8.4" height="15.0" fill="rgb(209,136,18)" rx="2" ry="2" />
<text x="269.46" y="735.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h37ef66f69f23d377 (5 samples, 0.59%)</title><rect x="468.3" y="629" width="7.0" height="15.0" fill="rgb(227,106,32)" rx="2" ry="2" />
<text x="471.27" y="639.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.48%)</title><rect x="1148.0" y="821" width="5.6" height="15.0" fill="rgb(252,46,45)" rx="2" ry="2" />
<text x="1150.96" y="831.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="53.4" y="469" width="1.4" height="15.0" fill="rgb(254,84,53)" rx="2" ry="2" />
<text x="56.44" y="479.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="497.7" y="693" width="2.8" height="15.0" fill="rgb(210,19,35)" rx="2" ry="2" />
<text x="500.70" y="703.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1166.2" y="677" width="1.4" height="15.0" fill="rgb(244,16,15)" rx="2" ry="2" />
<text x="1169.18" y="687.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="1136.7" y="741" width="1.4" height="15.0" fill="rgb(242,146,9)" rx="2" ry="2" />
<text x="1139.75" y="751.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="1136.7" y="709" width="1.4" height="15.0" fill="rgb(232,157,47)" rx="2" ry="2" />
<text x="1139.75" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hdd3ca9f159a36419 (1 samples, 0.12%)</title><rect x="1010.6" y="693" width="1.4" height="15.0" fill="rgb(208,222,10)" rx="2" ry="2" />
<text x="1013.62" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (1 samples, 0.12%)</title><rect x="26.8" y="341" width="1.4" height="15.0" fill="rgb(205,212,28)" rx="2" ry="2" />
<text x="29.82" y="351.5" ></text>
</g>
<g >
<title>rocinante::solver::z3::Z3Solver::verify::ha247dd2077cd2fca (5 samples, 0.59%)</title><rect x="862.1" y="805" width="7.0" height="15.0" fill="rgb(224,5,53)" rx="2" ry="2" />
<text x="865.07" y="815.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::ha059be90d4b58841 (1 samples, 0.12%)</title><rect x="399.6" y="597" width="1.4" height="15.0" fill="rgb(220,42,51)" rx="2" ry="2" />
<text x="402.60" y="607.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::find::h3f114579d9524e70 (1 samples, 0.12%)</title><rect x="24.0" y="757" width="1.4" height="15.0" fill="rgb(241,65,48)" rx="2" ry="2" />
<text x="27.01" y="767.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::he0446b43bfc1ac5d (8 samples, 0.95%)</title><rect x="200.6" y="261" width="11.2" height="15.0" fill="rgb(219,106,32)" rx="2" ry="2" />
<text x="203.59" y="271.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1077.9" y="661" width="1.4" height="15.0" fill="rgb(252,132,29)" rx="2" ry="2" />
<text x="1080.89" y="671.5" ></text>
</g>
<g >
<title>new_heap (1 samples, 0.12%)</title><rect x="131.9" y="773" width="1.4" height="15.0" fill="rgb(245,33,42)" rx="2" ry="2" />
<text x="134.92" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="193.6" y="405" width="7.0" height="15.0" fill="rgb(231,59,38)" rx="2" ry="2" />
<text x="196.59" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="262.3" y="581" width="1.4" height="15.0" fill="rgb(227,120,8)" rx="2" ry="2" />
<text x="265.26" y="591.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (1 samples, 0.12%)</title><rect x="33.8" y="261" width="1.4" height="15.0" fill="rgb(244,138,30)" rx="2" ry="2" />
<text x="36.82" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9c1eb8e4c3b10949 (1 samples, 0.12%)</title><rect x="237.0" y="517" width="1.4" height="15.0" fill="rgb(242,173,8)" rx="2" ry="2" />
<text x="240.03" y="527.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$parity_wasm..io..Write$GT$::write::hfcc8d197ef7c0ff8 (7 samples, 0.83%)</title><rect x="755.6" y="709" width="9.8" height="15.0" fill="rgb(251,202,31)" rx="2" ry="2" />
<text x="758.56" y="719.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="1110.1" y="725" width="1.4" height="15.0" fill="rgb(222,142,49)" rx="2" ry="2" />
<text x="1113.12" y="735.5" ></text>
</g>
<g >
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$::call::hb7689bb0bbee0c67 (1 samples, 0.12%)</title><rect x="1164.8" y="437" width="1.4" height="15.0" fill="rgb(209,106,31)" rx="2" ry="2" />
<text x="1167.77" y="447.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..Fold$LT$I$C$ID$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h4f82d0cf6a1d5b5e (18 samples, 2.14%)</title><rect x="26.8" y="805" width="25.2" height="15.0" fill="rgb(245,222,10)" rx="2" ry="2" />
<text x="29.82" y="815.5" >_..</text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="1156.4" y="709" width="1.4" height="15.0" fill="rgb(231,189,11)" rx="2" ry="2" />
<text x="1159.37" y="719.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.12%)</title><rect x="1178.8" y="949" width="1.4" height="15.0" fill="rgb(253,189,4)" rx="2" ry="2" />
<text x="1181.79" y="959.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="423.4" y="629" width="5.6" height="15.0" fill="rgb(244,114,42)" rx="2" ry="2" />
<text x="426.42" y="639.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (8 samples, 0.95%)</title><rect x="232.8" y="741" width="11.2" height="15.0" fill="rgb(254,198,41)" rx="2" ry="2" />
<text x="235.83" y="751.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd9e3775caf844c9f (8 samples, 0.95%)</title><rect x="200.6" y="277" width="11.2" height="15.0" fill="rgb(238,90,22)" rx="2" ry="2" />
<text x="203.59" y="287.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (715 samples, 84.92%)</title><rect x="134.7" y="917" width="1002.0" height="15.0" fill="rgb(232,144,24)" rx="2" ry="2" />
<text x="137.73" y="927.5" >std::panicking::try::hab539b2d1255d635</text>
</g>
<g >
<title>_int_malloc (3 samples, 0.36%)</title><rect x="925.1" y="597" width="4.2" height="15.0" fill="rgb(250,4,8)" rx="2" ry="2" />
<text x="928.13" y="607.5" ></text>
</g>
<g >
<title>crossbeam_epoch::sync::queue::Queue$LT$T$GT$::pop_if_internal::he59d221a2e6546b1 (2 samples, 0.24%)</title><rect x="115.1" y="309" width="2.8" height="15.0" fill="rgb(229,167,17)" rx="2" ry="2" />
<text x="118.11" y="319.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::with::_$u7b$$u7b$closure$u7d$$u7d$::h0b35bd47cc4bab00 (1 samples, 0.12%)</title><rect x="1164.8" y="453" width="1.4" height="15.0" fill="rgb(217,207,32)" rx="2" ry="2" />
<text x="1167.77" y="463.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..module..ModuleBuilder$LT$F$GT$$u20$as$u20$parity_wasm..builder..invoke..Invoke$LT$parity_wasm..builder..code..FunctionDefinition$GT$$GT$::invoke::hc2b8d6ca9d9f7d33 (22 samples, 2.61%)</title><rect x="899.9" y="757" width="30.8" height="15.0" fill="rgb(219,177,27)" rx="2" ry="2" />
<text x="902.90" y="767.5" >_$..</text>
</g>
<g >
<title>_$LT$cranelift_entity..map..SecondaryMap$LT$K$C$V$GT$$u20$as$u20$core..ops..index..Index$LT$K$GT$$GT$::index::hcdcef4feb7c3b60a (1 samples, 0.12%)</title><rect x="1139.5" y="757" width="1.5" height="15.0" fill="rgb(213,213,9)" rx="2" ry="2" />
<text x="1142.55" y="767.5" ></text>
</g>
<g >
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (1 samples, 0.12%)</title><rect x="45.0" y="149" width="1.4" height="15.0" fill="rgb(214,19,43)" rx="2" ry="2" />
<text x="48.04" y="159.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1 samples, 0.12%)</title><rect x="709.3" y="645" width="1.4" height="15.0" fill="rgb(230,52,54)" rx="2" ry="2" />
<text x="712.31" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (2 samples, 0.24%)</title><rect x="706.5" y="629" width="2.8" height="15.0" fill="rgb(207,10,20)" rx="2" ry="2" />
<text x="709.51" y="639.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (16 samples, 1.90%)</title><rect x="1136.7" y="997" width="22.5" height="15.0" fill="rgb(241,157,0)" rx="2" ry="2" />
<text x="1139.75" y="1007.5" >r..</text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (205 samples, 24.35%)</title><rect x="255.2" y="757" width="287.3" height="15.0" fill="rgb(245,129,41)" rx="2" ry="2" />
<text x="258.25" y="767.5" >_$LT$wasmer_runtime_core..codegen..Str..</text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (1 samples, 0.12%)</title><rect x="1164.8" y="325" width="1.4" height="15.0" fill="rgb(228,62,33)" rx="2" ry="2" />
<text x="1167.77" y="335.5" ></text>
</g>
<g >
<title>sys_munmap (1 samples, 0.12%)</title><rect x="237.0" y="437" width="1.4" height="15.0" fill="rgb(242,148,47)" rx="2" ry="2" />
<text x="240.03" y="447.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (1 samples, 0.12%)</title><rect x="14.2" y="853" width="1.4" height="15.0" fill="rgb(244,223,34)" rx="2" ry="2" />
<text x="17.20" y="863.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..TakeWhile$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h7a427990aa61af15 (1 samples, 0.12%)</title><rect x="1164.8" y="533" width="1.4" height="15.0" fill="rgb(242,19,30)" rx="2" ry="2" />
<text x="1167.77" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (1 samples, 0.12%)</title><rect x="1166.2" y="853" width="1.4" height="15.0" fill="rgb(249,175,3)" rx="2" ry="2" />
<text x="1169.18" y="863.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="309.9" y="565" width="2.8" height="15.0" fill="rgb(242,26,21)" rx="2" ry="2" />
<text x="312.90" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (1 samples, 0.12%)</title><rect x="702.3" y="565" width="1.4" height="15.0" fill="rgb(238,223,27)" rx="2" ry="2" />
<text x="705.30" y="575.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::signature::h181ee2bb8b752d2b (1 samples, 0.12%)</title><rect x="930.7" y="773" width="1.4" height="15.0" fill="rgb(228,38,43)" rx="2" ry="2" />
<text x="933.74" y="783.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h588283575c2d01a9 (1 samples, 0.12%)</title><rect x="256.7" y="709" width="1.4" height="15.0" fill="rgb(254,206,38)" rx="2" ry="2" />
<text x="259.65" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (2 samples, 0.24%)</title><rect x="17.0" y="837" width="2.8" height="15.0" fill="rgb(250,96,25)" rx="2" ry="2" />
<text x="20.01" y="847.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hd2423dfa68b9e73e (1 samples, 0.12%)</title><rect x="493.5" y="613" width="1.4" height="15.0" fill="rgb(246,101,43)" rx="2" ry="2" />
<text x="496.49" y="623.5" ></text>
</g>
<g >
<title>rwsem_wake (1 samples, 0.12%)</title><rect x="1177.4" y="917" width="1.4" height="15.0" fill="rgb(213,125,47)" rx="2" ry="2" />
<text x="1180.39" y="927.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="845.2" y="597" width="1.5" height="15.0" fill="rgb(239,204,19)" rx="2" ry="2" />
<text x="848.25" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (1 samples, 0.12%)</title><rect x="28.2" y="389" width="1.4" height="15.0" fill="rgb(248,209,6)" rx="2" ry="2" />
<text x="31.22" y="399.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h7be5d713f95b0298 (11 samples, 1.31%)</title><rect x="144.5" y="453" width="15.5" height="15.0" fill="rgb(230,187,8)" rx="2" ry="2" />
<text x="147.54" y="463.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hcf3d786abf97b98e (1 samples, 0.12%)</title><rect x="11.4" y="677" width="1.4" height="15.0" fill="rgb(232,3,0)" rx="2" ry="2" />
<text x="14.40" y="687.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..ExportEntry$u20$as$u20$core..clone..Clone$GT$::clone::h7a7f9c630f3ae907 (4 samples, 0.48%)</title><rect x="178.2" y="309" width="5.6" height="15.0" fill="rgb(227,4,48)" rx="2" ry="2" />
<text x="181.17" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 1.07%)</title><rect x="160.0" y="405" width="12.6" height="15.0" fill="rgb(221,48,12)" rx="2" ry="2" />
<text x="162.95" y="415.5" ></text>
</g>
<g >
<title>wasmparser::readers::operators::OperatorsReader::read::hd75d3516d1eab9be (2 samples, 0.24%)</title><rect x="316.9" y="661" width="2.8" height="15.0" fill="rgb(220,126,17)" rx="2" ry="2" />
<text x="319.91" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="468.3" y="597" width="7.0" height="15.0" fill="rgb(219,72,30)" rx="2" ry="2" />
<text x="471.27" y="607.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="901.3" y="741" width="2.8" height="15.0" fill="rgb(244,204,38)" rx="2" ry="2" />
<text x="904.31" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="131.9" y="821" width="1.4" height="15.0" fill="rgb(234,4,43)" rx="2" ry="2" />
<text x="134.92" y="831.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_return_type::h3f3863c914eaa627 (1 samples, 0.12%)</title><rect x="947.6" y="773" width="1.4" height="15.0" fill="rgb(247,126,12)" rx="2" ry="2" />
<text x="950.55" y="783.5" ></text>
</g>
<g >
<title>mprotect_fixup (3 samples, 0.36%)</title><rect x="1149.4" y="773" width="4.2" height="15.0" fill="rgb(220,175,34)" rx="2" ry="2" />
<text x="1152.36" y="783.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.12%)</title><rect x="1184.4" y="1013" width="1.4" height="15.0" fill="rgb(245,188,23)" rx="2" ry="2" />
<text x="1187.39" y="1023.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::checked_add::h43ac995e0720f110 (1 samples, 0.12%)</title><rect x="670.1" y="549" width="1.4" height="15.0" fill="rgb(205,17,46)" rx="2" ry="2" />
<text x="673.07" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (2 samples, 0.24%)</title><rect x="685.5" y="629" width="2.8" height="15.0" fill="rgb(216,82,52)" rx="2" ry="2" />
<text x="688.49" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4fd074af8c56209a (4 samples, 0.48%)</title><rect x="570.6" y="645" width="5.6" height="15.0" fill="rgb(245,27,36)" rx="2" ry="2" />
<text x="573.57" y="655.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="778.0" y="645" width="1.4" height="15.0" fill="rgb(215,100,42)" rx="2" ry="2" />
<text x="780.98" y="655.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="1068.1" y="741" width="1.4" height="15.0" fill="rgb(221,82,14)" rx="2" ry="2" />
<text x="1071.08" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcf5b048654b5ba67 (1 samples, 0.12%)</title><rect x="53.4" y="565" width="1.4" height="15.0" fill="rgb(220,118,26)" rx="2" ry="2" />
<text x="56.44" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="504.7" y="597" width="2.8" height="15.0" fill="rgb(224,100,48)" rx="2" ry="2" />
<text x="507.70" y="607.5" ></text>
</g>
<g >
<title>rand::Rng::gen::h7eb46441d353f94a (1 samples, 0.12%)</title><rect x="1114.3" y="709" width="1.4" height="15.0" fill="rgb(243,122,1)" rx="2" ry="2" />
<text x="1117.32" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (9 samples, 1.07%)</title><rect x="779.4" y="645" width="12.6" height="15.0" fill="rgb(249,177,33)" rx="2" ry="2" />
<text x="782.38" y="655.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h10d57826f4d4f877 (18 samples, 2.14%)</title><rect x="26.8" y="629" width="25.2" height="15.0" fill="rgb(205,125,52)" rx="2" ry="2" />
<text x="29.82" y="639.5" >_..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="968.6" y="645" width="2.8" height="15.0" fill="rgb(227,175,52)" rx="2" ry="2" />
<text x="971.57" y="655.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::as_ref::h693b3326254ffd0a (1 samples, 0.12%)</title><rect x="63.3" y="357" width="1.4" height="15.0" fill="rgb(252,161,40)" rx="2" ry="2" />
<text x="66.25" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear::_$u7b$$u7b$closure$u7d$$u7d$::hff38f4f530a47097 (1 samples, 0.12%)</title><rect x="1163.4" y="645" width="1.4" height="15.0" fill="rgb(253,135,45)" rx="2" ry="2" />
<text x="1166.37" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_desugared::hef337347f981076f (1 samples, 0.12%)</title><rect x="40.8" y="181" width="1.4" height="15.0" fill="rgb(237,58,4)" rx="2" ry="2" />
<text x="43.83" y="191.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h347cf1b7ced82d08 (3 samples, 0.36%)</title><rect x="508.9" y="565" width="4.2" height="15.0" fill="rgb(251,8,29)" rx="2" ry="2" />
<text x="511.91" y="575.5" ></text>
</g>
<g >
<title>std::sys_common::backtrace::__rust_begin_short_backtrace::ha8f073e9b0fe5d28 (54 samples, 6.41%)</title><rect x="56.2" y="773" width="75.7" height="15.0" fill="rgb(227,88,41)" rx="2" ry="2" />
<text x="59.25" y="783.5" >std::sys..</text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.36%)</title><rect x="549.5" y="709" width="4.3" height="15.0" fill="rgb(225,30,23)" rx="2" ry="2" />
<text x="552.55" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (4 samples, 0.48%)</title><rect x="848.1" y="709" width="5.6" height="15.0" fill="rgb(207,72,50)" rx="2" ry="2" />
<text x="851.05" y="719.5" ></text>
</g>
<g >
<title>_$LT$cranelift_entity..map..SecondaryMap$LT$K$C$V$GT$$u20$as$u20$core..ops..index..IndexMut$LT$K$GT$$GT$::index_mut::h33bdc7eb52a76cef (1 samples, 0.12%)</title><rect x="1143.8" y="757" width="1.4" height="15.0" fill="rgb(208,146,30)" rx="2" ry="2" />
<text x="1146.75" y="767.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb99a41cc657e93d6 (1 samples, 0.12%)</title><rect x="507.5" y="677" width="1.4" height="15.0" fill="rgb(224,88,51)" rx="2" ry="2" />
<text x="510.51" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.59%)</title><rect x="457.1" y="549" width="7.0" height="15.0" fill="rgb(246,83,27)" rx="2" ry="2" />
<text x="460.05" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::flowgraph::h98304246e210f74f (1 samples, 0.12%)</title><rect x="33.8" y="309" width="1.4" height="15.0" fill="rgb(250,52,42)" rx="2" ry="2" />
<text x="36.82" y="319.5" ></text>
</g>
<g >
<title>std::collections::hash::set::HashSet$LT$T$C$S$GT$::insert::h01655e5c814667c8 (10 samples, 1.19%)</title><rect x="429.0" y="693" width="14.0" height="15.0" fill="rgb(250,1,19)" rx="2" ry="2" />
<text x="432.03" y="703.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::with_callback::h53a76230fd2502e4 (5 samples, 0.59%)</title><rect x="1062.5" y="757" width="7.0" height="15.0" fill="rgb(226,127,53)" rx="2" ry="2" />
<text x="1065.47" y="767.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h92ca1919f0e59642 (1 samples, 0.12%)</title><rect x="845.2" y="661" width="1.5" height="15.0" fill="rgb(232,201,18)" rx="2" ry="2" />
<text x="848.25" y="671.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="827.0" y="517" width="2.8" height="15.0" fill="rgb(245,63,25)" rx="2" ry="2" />
<text x="830.03" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (5 samples, 0.59%)</title><rect x="738.7" y="613" width="7.0" height="15.0" fill="rgb(234,23,38)" rx="2" ry="2" />
<text x="741.74" y="623.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (1 samples, 0.12%)</title><rect x="1164.8" y="805" width="1.4" height="15.0" fill="rgb(241,130,1)" rx="2" ry="2" />
<text x="1167.77" y="815.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hcc908b779ea433d4 (1 samples, 0.12%)</title><rect x="24.0" y="789" width="1.4" height="15.0" fill="rgb(236,36,27)" rx="2" ry="2" />
<text x="27.01" y="799.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..FunctionType$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hb1ed452fbc920ea8 (23 samples, 2.73%)</title><rect x="813.0" y="693" width="32.2" height="15.0" fill="rgb(242,44,17)" rx="2" ry="2" />
<text x="816.02" y="703.5" >_$..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (6 samples, 0.71%)</title><rect x="817.2" y="613" width="8.4" height="15.0" fill="rgb(217,34,38)" rx="2" ry="2" />
<text x="820.22" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (3 samples, 0.36%)</title><rect x="841.0" y="581" width="4.2" height="15.0" fill="rgb(221,148,13)" rx="2" ry="2" />
<text x="844.05" y="591.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::entry::h6fd02e38c235dda2 (1 samples, 0.12%)</title><rect x="49.2" y="309" width="1.4" height="15.0" fill="rgb(226,106,17)" rx="2" ry="2" />
<text x="52.24" y="319.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$core..default..Default$GT$::default::h564df83a8a9c6ddb (31 samples, 3.68%)</title><rect x="1012.0" y="709" width="43.5" height="15.0" fill="rgb(236,203,49)" rx="2" ry="2" />
<text x="1015.02" y="719.5" >_$LT..</text>
</g>
<g >
<title>_$LT$core..iter..adapters..Filter$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h8dbc5cbd9f43e286 (1 samples, 0.12%)</title><rect x="24.0" y="773" width="1.4" height="15.0" fill="rgb(233,114,5)" rx="2" ry="2" />
<text x="27.01" y="783.5" ></text>
</g>
<g >
<title>rayon_core::sleep::Sleep::sleep::h00a89c8dc1c90a7d (1 samples, 0.12%)</title><rect x="130.5" y="661" width="1.4" height="15.0" fill="rgb(254,42,27)" rx="2" ry="2" />
<text x="133.52" y="671.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.24%)</title><rect x="789.2" y="549" width="2.8" height="15.0" fill="rgb(222,196,5)" rx="2" ry="2" />
<text x="792.19" y="559.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (5 samples, 0.59%)</title><rect x="831.2" y="645" width="7.0" height="15.0" fill="rgb(228,204,24)" rx="2" ry="2" />
<text x="834.24" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="40.8" y="85" width="1.4" height="15.0" fill="rgb(226,164,7)" rx="2" ry="2" />
<text x="43.83" y="95.5" ></text>
</g>
<g >
<title>__mmap (2 samples, 0.24%)</title><rect x="1153.6" y="853" width="2.8" height="15.0" fill="rgb(241,2,30)" rx="2" ry="2" />
<text x="1156.56" y="863.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (1 samples, 0.12%)</title><rect x="793.4" y="661" width="1.4" height="15.0" fill="rgb(254,63,28)" rx="2" ry="2" />
<text x="796.40" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h24f96eea4fd3903e (19 samples, 2.26%)</title><rect x="1079.3" y="741" width="26.6" height="15.0" fill="rgb(217,85,40)" rx="2" ry="2" />
<text x="1082.29" y="751.5" >a..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h879013f5b20030bb (4 samples, 0.48%)</title><rect x="748.6" y="709" width="5.6" height="15.0" fill="rgb(233,74,21)" rx="2" ry="2" />
<text x="751.55" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5cbb074cfc59ada3 (3 samples, 0.36%)</title><rect x="493.5" y="677" width="4.2" height="15.0" fill="rgb(237,187,26)" rx="2" ry="2" />
<text x="496.49" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hda1998c5cdf266ef (1 samples, 0.12%)</title><rect x="26.8" y="277" width="1.4" height="15.0" fill="rgb(245,125,28)" rx="2" ry="2" />
<text x="29.82" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1 samples, 0.12%)</title><rect x="1166.2" y="869" width="1.4" height="15.0" fill="rgb(236,70,4)" rx="2" ry="2" />
<text x="1169.18" y="879.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (18 samples, 2.14%)</title><rect x="26.8" y="997" width="25.2" height="15.0" fill="rgb(223,137,17)" rx="2" ry="2" />
<text x="29.82" y="1007.5" >_..</text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::unwrap::h6c82b6a8a176ac98 (1 samples, 0.12%)</title><rect x="489.3" y="677" width="1.4" height="15.0" fill="rgb(228,114,3)" rx="2" ry="2" />
<text x="492.29" y="687.5" ></text>
</g>
<g >
<title>perf_event_init_task (6 samples, 0.71%)</title><rect x="1167.6" y="917" width="8.4" height="15.0" fill="rgb(230,8,49)" rx="2" ry="2" />
<text x="1170.58" y="927.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (1 samples, 0.12%)</title><rect x="1159.2" y="773" width="1.4" height="15.0" fill="rgb(222,93,45)" rx="2" ry="2" />
<text x="1162.17" y="783.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (2 samples, 0.24%)</title><rect x="1159.2" y="901" width="2.8" height="15.0" fill="rgb(237,138,50)" rx="2" ry="2" />
<text x="1162.17" y="911.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h116cedda3891c909 (8 samples, 0.95%)</title><rect x="200.6" y="245" width="11.2" height="15.0" fill="rgb(215,73,24)" rx="2" ry="2" />
<text x="203.59" y="255.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h0268e36a446ab8e7 (2 samples, 0.24%)</title><rect x="968.6" y="725" width="2.8" height="15.0" fill="rgb(236,225,34)" rx="2" ry="2" />
<text x="971.57" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="944.8" y="613" width="1.4" height="15.0" fill="rgb(215,182,12)" rx="2" ry="2" />
<text x="947.75" y="623.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (3 samples, 0.36%)</title><rect x="1139.5" y="837" width="4.3" height="15.0" fill="rgb(223,214,5)" rx="2" ry="2" />
<text x="1142.55" y="847.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (7 samples, 0.83%)</title><rect x="598.6" y="677" width="9.8" height="15.0" fill="rgb(225,203,46)" rx="2" ry="2" />
<text x="601.60" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.83%)</title><rect x="183.8" y="405" width="9.8" height="15.0" fill="rgb(252,160,54)" rx="2" ry="2" />
<text x="186.78" y="415.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (1 samples, 0.12%)</title><rect x="1164.8" y="965" width="1.4" height="15.0" fill="rgb(235,105,23)" rx="2" ry="2" />
<text x="1167.77" y="975.5" ></text>
</g>
<g >
<title>_$LT$core..ops..range..RangeFrom$LT$usize$GT$$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked_mut::h8462946e6a3364b4 (1 samples, 0.12%)</title><rect x="675.7" y="597" width="1.4" height="15.0" fill="rgb(248,101,33)" rx="2" ry="2" />
<text x="678.68" y="607.5" ></text>
</g>
<g >
<title>__rdl_alloc (2 samples, 0.24%)</title><rect x="464.1" y="565" width="2.8" height="15.0" fill="rgb(228,186,14)" rx="2" ry="2" />
<text x="467.06" y="575.5" ></text>
</g>
<g >
<title>do_mmap (2 samples, 0.24%)</title><rect x="272.1" y="597" width="2.8" height="15.0" fill="rgb(253,61,33)" rx="2" ry="2" />
<text x="275.07" y="607.5" ></text>
</g>
<g >
<title>__clone (7 samples, 0.83%)</title><rect x="1167.6" y="1013" width="9.8" height="15.0" fill="rgb(214,51,29)" rx="2" ry="2" />
<text x="1170.58" y="1023.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h901e15aef1756357 (3 samples, 0.36%)</title><rect x="508.9" y="597" width="4.2" height="15.0" fill="rgb(219,199,43)" rx="2" ry="2" />
<text x="511.91" y="607.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (1 samples, 0.12%)</title><rect x="864.9" y="661" width="1.4" height="15.0" fill="rgb(245,142,35)" rx="2" ry="2" />
<text x="867.87" y="671.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::hb54ff8a4f925fc93 (58 samples, 6.89%)</title><rect x="138.9" y="597" width="81.3" height="15.0" fill="rgb(248,71,4)" rx="2" ry="2" />
<text x="141.93" y="607.5" >core::ite..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb2e11882195b050b (1 samples, 0.12%)</title><rect x="242.6" y="677" width="1.4" height="15.0" fill="rgb(250,126,4)" rx="2" ry="2" />
<text x="245.64" y="687.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::reduce::h2373a34cb1ad605e (1 samples, 0.12%)</title><rect x="1164.8" y="869" width="1.4" height="15.0" fill="rgb(216,70,28)" rx="2" ry="2" />
<text x="1167.77" y="879.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Coloring::run::h3acbc7f1babdb6f6 (1 samples, 0.12%)</title><rect x="15.6" y="837" width="1.4" height="15.0" fill="rgb(212,23,50)" rx="2" ry="2" />
<text x="18.61" y="847.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="256.7" y="613" width="1.4" height="15.0" fill="rgb(242,206,19)" rx="2" ry="2" />
<text x="259.65" y="623.5" ></text>
</g>
<g >
<title>core::str::from_utf8::h5960e424c2aef74c (1 samples, 0.12%)</title><rect x="326.7" y="629" width="1.4" height="15.0" fill="rgb(216,222,40)" rx="2" ry="2" />
<text x="329.72" y="639.5" ></text>
</g>
<g >
<title>std::sys::unix::rwlock::RWLock::read::h443c8e5e0f4279ef (8 samples, 0.95%)</title><rect x="529.9" y="693" width="11.2" height="15.0" fill="rgb(252,150,43)" rx="2" ry="2" />
<text x="532.93" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h42ae31ea13e57604 (2 samples, 0.24%)</title><rect x="494.9" y="629" width="2.8" height="15.0" fill="rgb(223,199,38)" rx="2" ry="2" />
<text x="497.89" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h549ffc0e6a70bb62 (1 samples, 0.12%)</title><rect x="256.7" y="661" width="1.4" height="15.0" fill="rgb(240,99,34)" rx="2" ry="2" />
<text x="259.65" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="685.5" y="533" width="1.4" height="15.0" fill="rgb(205,74,39)" rx="2" ry="2" />
<text x="688.49" y="543.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h7776a431453c4a6c (1 samples, 0.12%)</title><rect x="813.0" y="677" width="1.4" height="15.0" fill="rgb(249,219,10)" rx="2" ry="2" />
<text x="816.02" y="687.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1 samples, 0.12%)</title><rect x="133.3" y="853" width="1.4" height="15.0" fill="rgb(211,153,43)" rx="2" ry="2" />
<text x="136.33" y="863.5" ></text>
</g>
<g >
<title>_dl_catch_error (1 samples, 0.12%)</title><rect x="1181.6" y="917" width="1.4" height="15.0" fill="rgb(217,29,36)" rx="2" ry="2" />
<text x="1184.59" y="927.5" ></text>
</g>
<g >
<title>__libc_start_main (715 samples, 84.92%)</title><rect x="134.7" y="981" width="1002.0" height="15.0" fill="rgb(233,175,8)" rx="2" ry="2" />
<text x="137.73" y="991.5" >__libc_start_main</text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (2 samples, 0.24%)</title><rect x="1162.0" y="917" width="2.8" height="15.0" fill="rgb(219,13,41)" rx="2" ry="2" />
<text x="1164.97" y="927.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.24%)</title><rect x="263.7" y="661" width="2.8" height="15.0" fill="rgb(249,88,29)" rx="2" ry="2" />
<text x="266.66" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (1 samples, 0.12%)</title><rect x="12.8" y="837" width="1.4" height="15.0" fill="rgb(237,134,42)" rx="2" ry="2" />
<text x="15.80" y="847.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (5 samples, 0.59%)</title><rect x="817.2" y="597" width="7.0" height="15.0" fill="rgb(248,99,4)" rx="2" ry="2" />
<text x="820.22" y="607.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h3b22b0ddf87d536f (2 samples, 0.24%)</title><rect x="43.6" y="213" width="2.8" height="15.0" fill="rgb(231,94,48)" rx="2" ry="2" />
<text x="46.63" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (3 samples, 0.36%)</title><rect x="691.1" y="597" width="4.2" height="15.0" fill="rgb(233,204,54)" rx="2" ry="2" />
<text x="694.09" y="607.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h4127c1e8eaf95b31 (4 samples, 0.48%)</title><rect x="154.3" y="229" width="5.7" height="15.0" fill="rgb(238,203,40)" rx="2" ry="2" />
<text x="157.35" y="239.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (1 samples, 0.12%)</title><rect x="1157.8" y="757" width="1.4" height="15.0" fill="rgb(224,127,50)" rx="2" ry="2" />
<text x="1160.77" y="767.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear::h14092dc2515c7fa9 (1 samples, 0.12%)</title><rect x="28.2" y="309" width="1.4" height="15.0" fill="rgb(232,124,39)" rx="2" ry="2" />
<text x="31.22" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="1062.5" y="661" width="5.6" height="15.0" fill="rgb(241,215,7)" rx="2" ry="2" />
<text x="1065.47" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h642dce57f213208f (1 samples, 0.12%)</title><rect x="242.6" y="613" width="1.4" height="15.0" fill="rgb(207,5,26)" rx="2" ry="2" />
<text x="245.64" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb543681360516410 (1 samples, 0.12%)</title><rect x="252.4" y="741" width="1.4" height="15.0" fill="rgb(241,225,17)" rx="2" ry="2" />
<text x="255.45" y="751.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::collect_extended::h833a9ba3f6cf2125 (1 samples, 0.12%)</title><rect x="1164.8" y="917" width="1.4" height="15.0" fill="rgb(212,46,25)" rx="2" ry="2" />
<text x="1167.77" y="927.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (11 samples, 1.31%)</title><rect x="11.4" y="949" width="15.4" height="15.0" fill="rgb(225,224,44)" rx="2" ry="2" />
<text x="14.40" y="959.5" ></text>
</g>
<g >
<title>core::sync::atomic::AtomicBool::load::h258b90cdf0896c0e (1 samples, 0.12%)</title><rect x="50.6" y="389" width="1.4" height="15.0" fill="rgb(233,5,34)" rx="2" ry="2" />
<text x="53.64" y="399.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$parity_wasm..io..Write$GT$::write::hfcc8d197ef7c0ff8 (7 samples, 0.83%)</title><rect x="598.6" y="741" width="9.8" height="15.0" fill="rgb(233,38,29)" rx="2" ry="2" />
<text x="601.60" y="751.5" ></text>
</g>
<g >
<title>__rust_dealloc (1 samples, 0.12%)</title><rect x="581.8" y="629" width="1.4" height="15.0" fill="rgb(235,157,45)" rx="2" ry="2" />
<text x="584.78" y="639.5" ></text>
</g>
<g >
<title>perf_iterate_sb (1 samples, 0.12%)</title><rect x="1153.6" y="709" width="1.4" height="15.0" fill="rgb(242,98,19)" rx="2" ry="2" />
<text x="1156.56" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarInt32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h47cdb50632b40fb0 (1 samples, 0.12%)</title><rect x="677.1" y="661" width="1.4" height="15.0" fill="rgb(217,154,35)" rx="2" ry="2" />
<text x="680.08" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="1055.5" y="613" width="1.4" height="15.0" fill="rgb(210,59,36)" rx="2" ry="2" />
<text x="1058.46" y="623.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (3 samples, 0.36%)</title><rect x="992.4" y="597" width="4.2" height="15.0" fill="rgb(245,117,44)" rx="2" ry="2" />
<text x="995.40" y="607.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (11 samples, 1.31%)</title><rect x="616.8" y="597" width="15.4" height="15.0" fill="rgb(233,180,41)" rx="2" ry="2" />
<text x="619.82" y="607.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint7$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hc5ea49e307e39ef5 (14 samples, 1.66%)</title><rect x="615.4" y="741" width="19.6" height="15.0" fill="rgb(228,136,1)" rx="2" ry="2" />
<text x="618.42" y="751.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h473e5f66f7b86f26 (3 samples, 0.36%)</title><rect x="827.0" y="629" width="4.2" height="15.0" fill="rgb(208,9,21)" rx="2" ry="2" />
<text x="830.03" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (2 samples, 0.24%)</title><rect x="678.5" y="629" width="2.8" height="15.0" fill="rgb(233,22,41)" rx="2" ry="2" />
<text x="681.48" y="639.5" ></text>
</g>
<g >
<title>__rdl_alloc (1 samples, 0.12%)</title><rect x="172.6" y="405" width="1.4" height="15.0" fill="rgb(232,34,40)" rx="2" ry="2" />
<text x="175.57" y="415.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (13 samples, 1.54%)</title><rect x="353.3" y="645" width="18.3" height="15.0" fill="rgb(236,134,28)" rx="2" ry="2" />
<text x="356.35" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::hcc42d9046409bb05 (8 samples, 0.95%)</title><rect x="200.6" y="485" width="11.2" height="15.0" fill="rgb(254,41,31)" rx="2" ry="2" />
<text x="203.59" y="495.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.24%)</title><rect x="841.0" y="533" width="2.8" height="15.0" fill="rgb(229,17,3)" rx="2" ry="2" />
<text x="844.05" y="543.5" ></text>
</g>
<g >
<title>__sigjmp_save (3 samples, 0.36%)</title><rect x="1185.8" y="997" width="4.2" height="15.0" fill="rgb(213,63,54)" rx="2" ry="2" />
<text x="1188.80" y="1007.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$$u5b$T$u5d$$GT$$u20$as$u20$core..clone..Clone$GT$::clone::haa7f6ca93d51b2d4 (5 samples, 0.59%)</title><rect x="408.0" y="677" width="7.0" height="15.0" fill="rgb(247,3,22)" rx="2" ry="2" />
<text x="411.00" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h853db04901f1dd95 (4 samples, 0.48%)</title><rect x="284.7" y="661" width="5.6" height="15.0" fill="rgb(210,134,36)" rx="2" ry="2" />
<text x="287.68" y="671.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::process_state::h9e1175ddb845b5e5 (67 samples, 7.96%)</title><rect x="396.8" y="709" width="93.9" height="15.0" fill="rgb(232,28,38)" rx="2" ry="2" />
<text x="399.79" y="719.5" >wasmparser:..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h8108a5bf11f503e4 (4 samples, 0.48%)</title><rect x="284.7" y="629" width="5.6" height="15.0" fill="rgb(231,185,7)" rx="2" ry="2" />
<text x="287.68" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hc242ee550513a1d7 (1 samples, 0.12%)</title><rect x="1166.2" y="741" width="1.4" height="15.0" fill="rgb(232,121,39)" rx="2" ry="2" />
<text x="1169.18" y="751.5" ></text>
</g>
<g >
<title>crossbeam_epoch::atomic::decompose_data::h02393603f86a1330 (1 samples, 0.12%)</title><rect x="116.5" y="261" width="1.4" height="15.0" fill="rgb(251,164,45)" rx="2" ry="2" />
<text x="119.51" y="271.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (5 samples, 0.59%)</title><rect x="831.2" y="613" width="7.0" height="15.0" fill="rgb(249,50,52)" rx="2" ry="2" />
<text x="834.24" y="623.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_function_body::hcb187222237f62c7 (4 samples, 0.48%)</title><rect x="328.1" y="677" width="5.6" height="15.0" fill="rgb(229,17,29)" rx="2" ry="2" />
<text x="331.12" y="687.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::hf3dbc6c02fde82f8 (1 samples, 0.12%)</title><rect x="478.1" y="549" width="1.4" height="15.0" fill="rgb(206,177,17)" rx="2" ry="2" />
<text x="481.08" y="559.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::hfb8feb38e26cefc7 (3 samples, 0.36%)</title><rect x="52.0" y="805" width="4.2" height="15.0" fill="rgb(211,90,9)" rx="2" ry="2" />
<text x="55.04" y="815.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::hfb3050a85fb47d24 (1 samples, 0.12%)</title><rect x="1164.8" y="581" width="1.4" height="15.0" fill="rgb(217,143,5)" rx="2" ry="2" />
<text x="1167.77" y="591.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::hfb3050a85fb47d24 (18 samples, 2.14%)</title><rect x="26.8" y="565" width="25.2" height="15.0" fill="rgb(220,60,11)" rx="2" ry="2" />
<text x="29.82" y="575.5" >c..</text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h502a3e1c0561121c (1 samples, 0.12%)</title><rect x="38.0" y="229" width="1.4" height="15.0" fill="rgb(223,109,12)" rx="2" ry="2" />
<text x="41.03" y="239.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::hfb50ddc04a0da0bf (5 samples, 0.59%)</title><rect x="176.8" y="373" width="7.0" height="15.0" fill="rgb(229,75,25)" rx="2" ry="2" />
<text x="179.77" y="383.5" ></text>
</g>
<g >
<title>__GI___sysconf (1 samples, 0.12%)</title><rect x="1180.2" y="949" width="1.4" height="15.0" fill="rgb(208,165,11)" rx="2" ry="2" />
<text x="1183.19" y="959.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h0f8c77e8091f4247 (2 samples, 0.24%)</title><rect x="274.9" y="693" width="2.8" height="15.0" fill="rgb(243,26,17)" rx="2" ry="2" />
<text x="277.87" y="703.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..TakeWhile$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::check::_$u7b$$u7b$closure$u7d$$u7d$::he354ac4fa0952830 (1 samples, 0.12%)</title><rect x="50.6" y="421" width="1.4" height="15.0" fill="rgb(243,1,40)" rx="2" ry="2" />
<text x="53.64" y="431.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..function..Function$u20$as$u20$core..clone..Clone$GT$::clone::h43601ddadab895c2 (1 samples, 0.12%)</title><rect x="26.8" y="373" width="1.4" height="15.0" fill="rgb(230,100,24)" rx="2" ry="2" />
<text x="29.82" y="383.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..code..FunctionDefinition$u20$as$u20$core..default..Default$GT$::default::h6149cbf8db633453 (4 samples, 0.48%)</title><rect x="1062.5" y="741" width="5.6" height="15.0" fill="rgb(212,117,47)" rx="2" ry="2" />
<text x="1065.47" y="751.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::h5cb93bb22494d324 (1 samples, 0.12%)</title><rect x="1164.8" y="981" width="1.4" height="15.0" fill="rgb(215,10,15)" rx="2" ry="2" />
<text x="1167.77" y="991.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h0ff363c8ae3fa0a8 (3 samples, 0.36%)</title><rect x="238.4" y="661" width="4.2" height="15.0" fill="rgb(217,171,19)" rx="2" ry="2" />
<text x="241.43" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h270228a086bc73c2 (1 samples, 0.12%)</title><rect x="845.2" y="645" width="1.5" height="15.0" fill="rgb(208,148,7)" rx="2" ry="2" />
<text x="848.25" y="655.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::overflowing_add::he2871af9ad84e017 (1 samples, 0.12%)</title><rect x="670.1" y="533" width="1.4" height="15.0" fill="rgb(248,18,19)" rx="2" ry="2" />
<text x="673.07" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1164.8" y="245" width="1.4" height="15.0" fill="rgb(217,217,54)" rx="2" ry="2" />
<text x="1167.77" y="255.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::hade4fdd1e3cebe04 (18 samples, 2.14%)</title><rect x="26.8" y="581" width="25.2" height="15.0" fill="rgb(227,187,21)" rx="2" ry="2" />
<text x="29.82" y="591.5" >_..</text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_entry_params::h68cefcc0d5bda827 (1 samples, 0.12%)</title><rect x="11.4" y="821" width="1.4" height="15.0" fill="rgb(207,90,19)" rx="2" ry="2" />
<text x="14.40" y="831.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (5 samples, 0.59%)</title><rect x="738.7" y="597" width="7.0" height="15.0" fill="rgb(205,166,41)" rx="2" ry="2" />
<text x="741.74" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (10 samples, 1.19%)</title><rect x="778.0" y="661" width="14.0" height="15.0" fill="rgb(226,3,41)" rx="2" ry="2" />
<text x="780.98" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::hbb5671c2e273ba8c (2 samples, 0.24%)</title><rect x="873.3" y="725" width="2.8" height="15.0" fill="rgb(234,86,50)" rx="2" ry="2" />
<text x="876.28" y="735.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::generate_func::h8181cbf0c7873221 (2 samples, 0.24%)</title><rect x="1143.8" y="869" width="2.8" height="15.0" fill="rgb(233,192,48)" rx="2" ry="2" />
<text x="1146.75" y="879.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (3 samples, 0.36%)</title><rect x="691.1" y="629" width="4.2" height="15.0" fill="rgb(249,36,31)" rx="2" ry="2" />
<text x="694.09" y="639.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::get::h30644a7eebae3e20 (2 samples, 0.24%)</title><rect x="1139.5" y="773" width="2.9" height="15.0" fill="rgb(234,193,46)" rx="2" ry="2" />
<text x="1142.55" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (9 samples, 1.07%)</title><rect x="779.4" y="613" width="12.6" height="15.0" fill="rgb(252,141,53)" rx="2" ry="2" />
<text x="782.38" y="623.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::collect_moves::h418c722f70a10a85 (1 samples, 0.12%)</title><rect x="40.8" y="229" width="1.4" height="15.0" fill="rgb(242,141,1)" rx="2" ry="2" />
<text x="43.83" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (2 samples, 0.24%)</title><rect x="1121.3" y="773" width="2.8" height="15.0" fill="rgb(238,218,10)" rx="2" ry="2" />
<text x="1124.33" y="783.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.36%)</title><rect x="883.1" y="581" width="4.2" height="15.0" fill="rgb(225,99,3)" rx="2" ry="2" />
<text x="886.09" y="591.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (3 samples, 0.36%)</title><rect x="500.5" y="581" width="4.2" height="15.0" fill="rgb(235,2,22)" rx="2" ry="2" />
<text x="503.50" y="591.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (1 samples, 0.12%)</title><rect x="24.0" y="725" width="1.4" height="15.0" fill="rgb(237,165,50)" rx="2" ry="2" />
<text x="27.01" y="735.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.59%)</title><rect x="623.8" y="565" width="7.0" height="15.0" fill="rgb(227,48,45)" rx="2" ry="2" />
<text x="626.82" y="575.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h76464c9d087ec2df (1 samples, 0.12%)</title><rect x="845.2" y="709" width="1.5" height="15.0" fill="rgb(253,53,44)" rx="2" ry="2" />
<text x="848.25" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h4127c1e8eaf95b31 (1 samples, 0.12%)</title><rect x="1077.9" y="725" width="1.4" height="15.0" fill="rgb(235,204,0)" rx="2" ry="2" />
<text x="1080.89" y="735.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="757.0" y="533" width="5.6" height="15.0" fill="rgb(225,170,35)" rx="2" ry="2" />
<text x="759.96" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="26.8" y="197" width="1.4" height="15.0" fill="rgb(253,135,3)" rx="2" ry="2" />
<text x="29.82" y="207.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::as_ptr::h6109fc401efd6a58 (1 samples, 0.12%)</title><rect x="1112.9" y="725" width="1.4" height="15.0" fill="rgb(208,38,2)" rx="2" ry="2" />
<text x="1115.92" y="735.5" ></text>
</g>
<g >
<title>malloc_consolidate (1 samples, 0.12%)</title><rect x="262.3" y="565" width="1.4" height="15.0" fill="rgb(243,229,38)" rx="2" ry="2" />
<text x="265.26" y="575.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::h165bbb94b3773c60 (58 samples, 6.89%)</title><rect x="138.9" y="645" width="81.3" height="15.0" fill="rgb(250,86,22)" rx="2" ry="2" />
<text x="141.93" y="655.5" >core::ite..</text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="256.7" y="597" width="1.4" height="15.0" fill="rgb(208,2,34)" rx="2" ry="2" />
<text x="259.65" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::run::h5f2a1c5233b33c2e (1 samples, 0.12%)</title><rect x="40.8" y="309" width="1.4" height="15.0" fill="rgb(205,138,38)" rx="2" ry="2" />
<text x="43.83" y="319.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::with_func::h5f69f1920d573f0e (2 samples, 0.24%)</title><rect x="887.3" y="773" width="2.8" height="15.0" fill="rgb(228,7,22)" rx="2" ry="2" />
<text x="890.29" y="783.5" ></text>
</g>
<g >
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::h5d3a3f55316b457c (45 samples, 5.34%)</title><rect x="56.2" y="549" width="63.1" height="15.0" fill="rgb(240,160,9)" rx="2" ry="2" />
<text x="59.25" y="559.5" >core::..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h7228d91f2d6ded07 (12 samples, 1.43%)</title><rect x="176.8" y="533" width="16.8" height="15.0" fill="rgb(208,87,9)" rx="2" ry="2" />
<text x="179.77" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h834c1b243e676a07 (1 samples, 0.12%)</title><rect x="53.4" y="549" width="1.4" height="15.0" fill="rgb(212,88,16)" rx="2" ry="2" />
<text x="56.44" y="559.5" ></text>
</g>
<g >
<title>malloc_consolidate (1 samples, 0.12%)</title><rect x="867.7" y="709" width="1.4" height="15.0" fill="rgb(219,218,5)" rx="2" ry="2" />
<text x="870.67" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (4 samples, 0.48%)</title><rect x="794.8" y="709" width="5.6" height="15.0" fill="rgb(212,26,49)" rx="2" ry="2" />
<text x="797.80" y="719.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::map::he6568b87e5292f4c (1 samples, 0.12%)</title><rect x="47.8" y="261" width="1.4" height="15.0" fill="rgb(240,215,10)" rx="2" ry="2" />
<text x="50.84" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (1 samples, 0.12%)</title><rect x="1160.6" y="821" width="1.4" height="15.0" fill="rgb(226,64,45)" rx="2" ry="2" />
<text x="1163.57" y="831.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h11f48ff1f20fdb6b (1 samples, 0.12%)</title><rect x="583.2" y="773" width="1.4" height="15.0" fill="rgb(226,125,49)" rx="2" ry="2" />
<text x="586.18" y="783.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="154.3" y="165" width="5.7" height="15.0" fill="rgb(222,174,51)" rx="2" ry="2" />
<text x="157.35" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="745.7" y="565" width="1.4" height="15.0" fill="rgb(211,66,4)" rx="2" ry="2" />
<text x="748.75" y="575.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="256.7" y="565" width="1.4" height="15.0" fill="rgb(205,146,39)" rx="2" ry="2" />
<text x="259.65" y="575.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapInit$LT$I$C$INIT$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h6766d2778cbab6ce (3 samples, 0.36%)</title><rect x="52.0" y="741" width="4.2" height="15.0" fill="rgb(218,220,32)" rx="2" ry="2" />
<text x="55.04" y="751.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="657.5" y="613" width="1.4" height="15.0" fill="rgb(249,129,32)" rx="2" ry="2" />
<text x="660.46" y="623.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::hade4fdd1e3cebe04 (1 samples, 0.12%)</title><rect x="1164.8" y="597" width="1.4" height="15.0" fill="rgb(219,165,40)" rx="2" ry="2" />
<text x="1167.77" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (19 samples, 2.26%)</title><rect x="1079.3" y="709" width="26.6" height="15.0" fill="rgb(222,24,26)" rx="2" ry="2" />
<text x="1082.29" y="719.5" >_..</text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (1 samples, 0.12%)</title><rect x="31.0" y="261" width="1.4" height="15.0" fill="rgb(214,219,23)" rx="2" ry="2" />
<text x="34.02" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get::hc9f481d7ac1186ee (1 samples, 0.12%)</title><rect x="1139.5" y="741" width="1.5" height="15.0" fill="rgb(221,141,28)" rx="2" ry="2" />
<text x="1142.55" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.59%)</title><rect x="721.9" y="549" width="7.0" height="15.0" fill="rgb(244,117,29)" rx="2" ry="2" />
<text x="724.92" y="559.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::probe_seq::h92d5b4801941e06a (1 samples, 0.12%)</title><rect x="1141.0" y="677" width="1.4" height="15.0" fill="rgb(208,170,30)" rx="2" ry="2" />
<text x="1143.95" y="687.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (2 samples, 0.24%)</title><rect x="1159.2" y="917" width="2.8" height="15.0" fill="rgb(248,226,26)" rx="2" ry="2" />
<text x="1162.17" y="927.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (6 samples, 0.71%)</title><rect x="211.8" y="421" width="8.4" height="15.0" fill="rgb(239,107,6)" rx="2" ry="2" />
<text x="214.81" y="431.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (1 samples, 0.12%)</title><rect x="1178.8" y="917" width="1.4" height="15.0" fill="rgb(211,5,43)" rx="2" ry="2" />
<text x="1181.79" y="927.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="113.7" y="309" width="1.4" height="15.0" fill="rgb(248,32,51)" rx="2" ry="2" />
<text x="116.71" y="319.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="277.7" y="709" width="1.4" height="15.0" fill="rgb(249,13,14)" rx="2" ry="2" />
<text x="280.67" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::ha1518eb2b9410b43 (15 samples, 1.78%)</title><rect x="447.2" y="645" width="21.1" height="15.0" fill="rgb(206,153,11)" rx="2" ry="2" />
<text x="450.24" y="655.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (2 samples, 0.24%)</title><rect x="1162.0" y="869" width="2.8" height="15.0" fill="rgb(240,178,51)" rx="2" ry="2" />
<text x="1164.97" y="879.5" ></text>
</g>
<g >
<title>_$LT$rand..rngs..adapter..reseeding..ReseedingRng$LT$R$C$Rsdr$GT$$u20$as$u20$rand_core..RngCore$GT$::next_u32::h46bde1aed85da2bb (3 samples, 0.36%)</title><rect x="857.9" y="661" width="4.2" height="15.0" fill="rgb(231,70,48)" rx="2" ry="2" />
<text x="860.86" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::h2dd68700c21828c7 (1 samples, 0.12%)</title><rect x="429.0" y="581" width="1.4" height="15.0" fill="rgb(231,135,51)" rx="2" ry="2" />
<text x="432.03" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h06ec3abbdc20be38 (4 samples, 0.48%)</title><rect x="748.6" y="677" width="5.6" height="15.0" fill="rgb(214,0,14)" rx="2" ry="2" />
<text x="751.55" y="687.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he36f127a7dad25b2 (1 samples, 0.12%)</title><rect x="846.7" y="709" width="1.4" height="15.0" fill="rgb(208,216,2)" rx="2" ry="2" />
<text x="849.65" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$::clone::hb3781841ab52f338 (1 samples, 0.12%)</title><rect x="1125.5" y="757" width="1.4" height="15.0" fill="rgb(227,32,13)" rx="2" ry="2" />
<text x="1128.53" y="767.5" ></text>
</g>
<g >
<title>mmap_region (1 samples, 0.12%)</title><rect x="1153.6" y="741" width="1.4" height="15.0" fill="rgb(222,213,30)" rx="2" ry="2" />
<text x="1156.56" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.48%)</title><rect x="817.2" y="517" width="5.6" height="15.0" fill="rgb(251,103,45)" rx="2" ry="2" />
<text x="820.22" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (6 samples, 0.71%)</title><rect x="721.9" y="581" width="8.4" height="15.0" fill="rgb(243,129,22)" rx="2" ry="2" />
<text x="724.92" y="591.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$::clone::hb3781841ab52f338 (1 samples, 0.12%)</title><rect x="1121.3" y="757" width="1.4" height="15.0" fill="rgb(232,69,14)" rx="2" ry="2" />
<text x="1124.33" y="767.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile::h86e160cb163e102a (1 samples, 0.12%)</title><rect x="1157.8" y="917" width="1.4" height="15.0" fill="rgb(241,18,34)" rx="2" ry="2" />
<text x="1160.77" y="927.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1 samples, 0.12%)</title><rect x="713.5" y="613" width="1.4" height="15.0" fill="rgb(208,126,15)" rx="2" ry="2" />
<text x="716.52" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (8 samples, 0.95%)</title><rect x="220.2" y="693" width="11.2" height="15.0" fill="rgb(236,49,20)" rx="2" ry="2" />
<text x="223.21" y="703.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="974.2" y="741" width="1.4" height="15.0" fill="rgb(211,148,11)" rx="2" ry="2" />
<text x="977.18" y="751.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::ha3ef74826c04ba58 (5 samples, 0.59%)</title><rect x="401.0" y="597" width="7.0" height="15.0" fill="rgb(254,214,35)" rx="2" ry="2" />
<text x="404.00" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="853.7" y="677" width="1.4" height="15.0" fill="rgb(247,207,32)" rx="2" ry="2" />
<text x="856.66" y="687.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (2 samples, 0.24%)</title><rect x="239.8" y="469" width="2.8" height="15.0" fill="rgb(243,88,1)" rx="2" ry="2" />
<text x="242.83" y="479.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hea99a5f5679f68dd (1 samples, 0.12%)</title><rect x="366.0" y="613" width="1.4" height="15.0" fill="rgb(229,81,2)" rx="2" ry="2" />
<text x="368.96" y="623.5" ></text>
</g>
<g >
<title>z3::solver::_$LT$impl$u20$z3..Solver$GT$::assert::hbde8231969432c87 (3 samples, 0.36%)</title><rect x="862.1" y="789" width="4.2" height="15.0" fill="rgb(219,150,26)" rx="2" ry="2" />
<text x="865.07" y="799.5" ></text>
</g>
<g >
<title>_$LT$rand..rngs..thread..ThreadRng$u20$as$u20$rand_core..RngCore$GT$::next_u32::hc27940daa71e8d32 (3 samples, 0.36%)</title><rect x="857.9" y="677" width="4.2" height="15.0" fill="rgb(227,185,32)" rx="2" ry="2" />
<text x="860.86" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::hcf3f17cf13e7bdd9 (4 samples, 0.48%)</title><rect x="1073.7" y="741" width="5.6" height="15.0" fill="rgb(229,8,44)" rx="2" ry="2" />
<text x="1076.68" y="751.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h35c6143a1e902398 (23 samples, 2.73%)</title><rect x="144.5" y="501" width="32.3" height="15.0" fill="rgb(248,209,54)" rx="2" ry="2" />
<text x="147.54" y="511.5" >al..</text>
</g>
<g >
<title>__rust_maybe_catch_panic (54 samples, 6.41%)</title><rect x="56.2" y="837" width="75.7" height="15.0" fill="rgb(254,156,13)" rx="2" ry="2" />
<text x="59.25" y="847.5" >__rust_m..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (1 samples, 0.12%)</title><rect x="745.7" y="629" width="1.4" height="15.0" fill="rgb(219,68,28)" rx="2" ry="2" />
<text x="748.75" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1651cfa161ce1ef5 (4 samples, 0.48%)</title><rect x="570.6" y="597" width="5.6" height="15.0" fill="rgb(215,192,20)" rx="2" ry="2" />
<text x="573.57" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb01da30477f88d1c (3 samples, 0.36%)</title><rect x="234.2" y="693" width="4.2" height="15.0" fill="rgb(229,227,20)" rx="2" ry="2" />
<text x="237.23" y="703.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (2 samples, 0.24%)</title><rect x="272.1" y="629" width="2.8" height="15.0" fill="rgb(248,117,3)" rx="2" ry="2" />
<text x="275.07" y="639.5" ></text>
</g>
<g >
<title>split_vma (1 samples, 0.12%)</title><rect x="1178.8" y="885" width="1.4" height="15.0" fill="rgb(248,102,33)" rx="2" ry="2" />
<text x="1181.79" y="895.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::steal::_$u7b$$u7b$closure$u7d$$u7d$::h91d77a6f76479cdc (44 samples, 5.23%)</title><rect x="56.2" y="485" width="61.7" height="15.0" fill="rgb(225,51,14)" rx="2" ry="2" />
<text x="59.25" y="495.5" >rayon_..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h2dab9521faac3198 (1 samples, 0.12%)</title><rect x="11.4" y="741" width="1.4" height="15.0" fill="rgb(205,33,1)" rx="2" ry="2" />
<text x="14.40" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbd13599ee8efd453 (1 samples, 0.12%)</title><rect x="252.4" y="757" width="1.4" height="15.0" fill="rgb(245,52,26)" rx="2" ry="2" />
<text x="255.45" y="767.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1 samples, 0.12%)</title><rect x="133.3" y="869" width="1.4" height="15.0" fill="rgb(244,189,6)" rx="2" ry="2" />
<text x="136.33" y="879.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::ha034774e5c8c1c1b (2 samples, 0.24%)</title><rect x="1075.1" y="709" width="2.8" height="15.0" fill="rgb(225,229,54)" rx="2" ry="2" />
<text x="1078.08" y="719.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::initialize::h647245500dff39f8 (1 samples, 0.12%)</title><rect x="1163.4" y="757" width="1.4" height="15.0" fill="rgb(249,49,10)" rx="2" ry="2" />
<text x="1166.37" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (5 samples, 0.59%)</title><rect x="831.2" y="581" width="7.0" height="15.0" fill="rgb(205,65,19)" rx="2" ry="2" />
<text x="834.24" y="591.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (7 samples, 0.83%)</title><rect x="598.6" y="661" width="9.8" height="15.0" fill="rgb(234,219,45)" rx="2" ry="2" />
<text x="601.60" y="671.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (1 samples, 0.12%)</title><rect x="18.4" y="789" width="1.4" height="15.0" fill="rgb(252,191,8)" rx="2" ry="2" />
<text x="21.41" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h13a54976c00acf29 (1 samples, 0.12%)</title><rect x="242.6" y="581" width="1.4" height="15.0" fill="rgb(208,156,7)" rx="2" ry="2" />
<text x="245.64" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (1 samples, 0.12%)</title><rect x="846.7" y="629" width="1.4" height="15.0" fill="rgb(245,46,2)" rx="2" ry="2" />
<text x="849.65" y="639.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (1 samples, 0.12%)</title><rect x="10.0" y="997" width="1.4" height="15.0" fill="rgb(223,87,30)" rx="2" ry="2" />
<text x="13.00" y="1007.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h13a8d07ee0f8e3e8 (2 samples, 0.24%)</title><rect x="681.3" y="645" width="2.8" height="15.0" fill="rgb(253,67,12)" rx="2" ry="2" />
<text x="684.28" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (4 samples, 0.48%)</title><rect x="714.9" y="581" width="5.6" height="15.0" fill="rgb(208,95,31)" rx="2" ry="2" />
<text x="717.92" y="591.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::flowgraph::h98304246e210f74f (1 samples, 0.12%)</title><rect x="29.6" y="325" width="1.4" height="15.0" fill="rgb(252,19,51)" rx="2" ry="2" />
<text x="32.62" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="685.5" y="565" width="1.4" height="15.0" fill="rgb(206,51,0)" rx="2" ry="2" />
<text x="688.49" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha9093790e6c98589 (6 samples, 0.71%)</title><rect x="951.8" y="677" width="8.4" height="15.0" fill="rgb(207,80,36)" rx="2" ry="2" />
<text x="954.76" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (11 samples, 1.31%)</title><rect x="11.4" y="901" width="15.4" height="15.0" fill="rgb(234,220,5)" rx="2" ry="2" />
<text x="14.40" y="911.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="284.7" y="565" width="5.6" height="15.0" fill="rgb(240,164,44)" rx="2" ry="2" />
<text x="287.68" y="575.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h70326c0194e879ae (1 samples, 0.12%)</title><rect x="1136.7" y="837" width="1.4" height="15.0" fill="rgb(249,190,38)" rx="2" ry="2" />
<text x="1139.75" y="847.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (11 samples, 1.31%)</title><rect x="11.4" y="933" width="15.4" height="15.0" fill="rgb(211,41,50)" rx="2" ry="2" />
<text x="14.40" y="943.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (1 samples, 0.12%)</title><rect x="32.4" y="325" width="1.4" height="15.0" fill="rgb(249,110,19)" rx="2" ry="2" />
<text x="35.42" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="14.2" y="661" width="1.4" height="15.0" fill="rgb(232,140,5)" rx="2" ry="2" />
<text x="17.20" y="671.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="848.1" y="597" width="5.6" height="15.0" fill="rgb(224,14,44)" rx="2" ry="2" />
<text x="851.05" y="607.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5799aea0ed87e892 (6 samples, 0.71%)</title><rect x="906.9" y="693" width="8.4" height="15.0" fill="rgb(246,8,51)" rx="2" ry="2" />
<text x="909.91" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (7 samples, 0.83%)</title><rect x="598.6" y="645" width="9.8" height="15.0" fill="rgb(252,75,21)" rx="2" ry="2" />
<text x="601.60" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_with::hd45606f9a82ae0bb (1 samples, 0.12%)</title><rect x="1143.8" y="725" width="1.4" height="15.0" fill="rgb(209,178,26)" rx="2" ry="2" />
<text x="1146.75" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 3.68%)</title><rect x="1012.0" y="613" width="43.5" height="15.0" fill="rgb(215,194,15)" rx="2" ry="2" />
<text x="1015.02" y="623.5" >__GI..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="932.1" y="741" width="2.8" height="15.0" fill="rgb(222,146,47)" rx="2" ry="2" />
<text x="935.14" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb3ce9c72dca2f9ff (4 samples, 0.48%)</title><rect x="238.4" y="693" width="5.6" height="15.0" fill="rgb(218,176,54)" rx="2" ry="2" />
<text x="241.43" y="703.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (1 samples, 0.12%)</title><rect x="47.8" y="357" width="1.4" height="15.0" fill="rgb(209,85,0)" rx="2" ry="2" />
<text x="50.84" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compute_loop_analysis::h98bbc3df5fc13cd1 (1 samples, 0.12%)</title><rect x="31.0" y="357" width="1.4" height="15.0" fill="rgb(250,81,20)" rx="2" ry="2" />
<text x="34.02" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.48%)</title><rect x="831.2" y="533" width="5.6" height="15.0" fill="rgb(224,86,10)" rx="2" ry="2" />
<text x="834.24" y="543.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="274.9" y="597" width="2.8" height="15.0" fill="rgb(238,173,34)" rx="2" ry="2" />
<text x="277.87" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.71%)</title><rect x="783.6" y="565" width="8.4" height="15.0" fill="rgb(223,10,42)" rx="2" ry="2" />
<text x="786.59" y="575.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$::clone::hb3781841ab52f338 (1 samples, 0.12%)</title><rect x="1107.3" y="773" width="1.4" height="15.0" fill="rgb(205,175,29)" rx="2" ry="2" />
<text x="1110.32" y="783.5" ></text>
</g>
<g >
<title>rand::Rng::gen::h72246b2475eca729 (3 samples, 0.36%)</title><rect x="857.9" y="709" width="4.2" height="15.0" fill="rgb(226,205,49)" rx="2" ry="2" />
<text x="860.86" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::ha097f032d146c0c5 (30 samples, 3.56%)</title><rect x="712.1" y="725" width="42.1" height="15.0" fill="rgb(251,73,26)" rx="2" ry="2" />
<text x="715.11" y="735.5" >_$L..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="971.4" y="757" width="1.4" height="15.0" fill="rgb(248,198,22)" rx="2" ry="2" />
<text x="974.38" y="767.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (6 samples, 0.71%)</title><rect x="804.6" y="677" width="8.4" height="15.0" fill="rgb(234,131,54)" rx="2" ry="2" />
<text x="807.61" y="687.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::h12e3a57e6d8ad182 (8 samples, 0.95%)</title><rect x="200.6" y="341" width="11.2" height="15.0" fill="rgb(223,6,25)" rx="2" ry="2" />
<text x="203.59" y="351.5" ></text>
</g>
<g >
<title>__memset_avx2 (1 samples, 0.12%)</title><rect x="28.2" y="197" width="1.4" height="15.0" fill="rgb(231,161,8)" rx="2" ry="2" />
<text x="31.22" y="207.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_section_body::h7d630b60fd73dcee (14 samples, 1.66%)</title><rect x="371.6" y="677" width="19.6" height="15.0" fill="rgb(245,28,39)" rx="2" ry="2" />
<text x="374.57" y="687.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (4 samples, 0.48%)</title><rect x="733.1" y="645" width="5.6" height="15.0" fill="rgb(214,214,13)" rx="2" ry="2" />
<text x="736.14" y="655.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::clear::h989489d89e7e604b (1 samples, 0.12%)</title><rect x="1163.4" y="741" width="1.4" height="15.0" fill="rgb(222,150,2)" rx="2" ry="2" />
<text x="1166.37" y="751.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="745.7" y="581" width="1.4" height="15.0" fill="rgb(227,62,8)" rx="2" ry="2" />
<text x="748.75" y="591.5" ></text>
</g>
<g >
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnOnce$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_once::hd0488f9b6929c7f5 (1 samples, 0.12%)</title><rect x="47.8" y="245" width="1.4" height="15.0" fill="rgb(229,212,22)" rx="2" ry="2" />
<text x="50.84" y="255.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::finish::he13aa6f563f3aeca (1 samples, 0.12%)</title><rect x="430.4" y="613" width="1.4" height="15.0" fill="rgb(248,80,52)" rx="2" ry="2" />
<text x="433.43" y="623.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..TypeSection$u20$as$u20$core..clone..Clone$GT$::clone::h9e3f88497d0b3720 (14 samples, 1.66%)</title><rect x="200.6" y="549" width="19.6" height="15.0" fill="rgb(241,105,22)" rx="2" ry="2" />
<text x="203.59" y="559.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5c762fb24f2921ad (8 samples, 0.95%)</title><rect x="232.8" y="709" width="11.2" height="15.0" fill="rgb(242,99,10)" rx="2" ry="2" />
<text x="235.83" y="719.5" ></text>
</g>
<g >
<title>__rust_realloc (1 samples, 0.12%)</title><rect x="836.8" y="533" width="1.4" height="15.0" fill="rgb(241,81,48)" rx="2" ry="2" />
<text x="839.84" y="543.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (11 samples, 1.31%)</title><rect x="11.4" y="981" width="15.4" height="15.0" fill="rgb(213,14,27)" rx="2" ry="2" />
<text x="14.40" y="991.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (19 samples, 2.26%)</title><rect x="344.9" y="677" width="26.7" height="15.0" fill="rgb(252,160,3)" rx="2" ry="2" />
<text x="347.94" y="687.5" >w..</text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (1 samples, 0.12%)</title><rect x="1122.7" y="757" width="1.4" height="15.0" fill="rgb(220,79,38)" rx="2" ry="2" />
<text x="1125.73" y="767.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (2 samples, 0.24%)</title><rect x="1162.0" y="821" width="2.8" height="15.0" fill="rgb(207,216,12)" rx="2" ry="2" />
<text x="1164.97" y="831.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (1 samples, 0.12%)</title><rect x="1143.8" y="693" width="1.4" height="15.0" fill="rgb(220,64,14)" rx="2" ry="2" />
<text x="1146.75" y="703.5" ></text>
</g>
<g >
<title>_int_realloc (2 samples, 0.24%)</title><rect x="667.3" y="517" width="2.8" height="15.0" fill="rgb(241,202,13)" rx="2" ry="2" />
<text x="670.27" y="527.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.12%)</title><rect x="864.9" y="709" width="1.4" height="15.0" fill="rgb(248,228,13)" rx="2" ry="2" />
<text x="867.87" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (14 samples, 1.66%)</title><rect x="657.5" y="645" width="19.6" height="15.0" fill="rgb(213,90,40)" rx="2" ry="2" />
<text x="660.46" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h632f54764f4f1554 (1 samples, 0.12%)</title><rect x="1119.9" y="741" width="1.4" height="15.0" fill="rgb(207,97,10)" rx="2" ry="2" />
<text x="1122.93" y="751.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (1 samples, 0.12%)</title><rect x="1156.4" y="901" width="1.4" height="15.0" fill="rgb(220,177,40)" rx="2" ry="2" />
<text x="1159.37" y="911.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h0cbf6e68d9157840 (5 samples, 0.59%)</title><rect x="468.3" y="677" width="7.0" height="15.0" fill="rgb(211,149,30)" rx="2" ry="2" />
<text x="471.27" y="687.5" ></text>
</g>
<g >
<title>_$LT$cranelift_bforest..set..SetIter$LT$K$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hd282eae7c717ac22 (1 samples, 0.12%)</title><rect x="36.6" y="277" width="1.4" height="15.0" fill="rgb(226,125,41)" rx="2" ry="2" />
<text x="39.63" y="287.5" ></text>
</g>
<g >
<title>__rust_dealloc (1 samples, 0.12%)</title><rect x="242.6" y="533" width="1.4" height="15.0" fill="rgb(243,86,8)" rx="2" ry="2" />
<text x="245.64" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::h5602d4e12e03aa51 (1 samples, 0.12%)</title><rect x="260.9" y="629" width="1.4" height="15.0" fill="rgb(240,28,28)" rx="2" ry="2" />
<text x="263.86" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hd7286b0057b33873 (1 samples, 0.12%)</title><rect x="929.3" y="693" width="1.4" height="15.0" fill="rgb(211,68,1)" rx="2" ry="2" />
<text x="932.33" y="703.5" ></text>
</g>
<g >
<title>core::hash::sip::u8to64_le::h408e352212f85115 (1 samples, 0.12%)</title><rect x="429.0" y="549" width="1.4" height="15.0" fill="rgb(232,3,17)" rx="2" ry="2" />
<text x="432.03" y="559.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::sample_local_idx::hc6baf159d6bfe98b (1 samples, 0.12%)</title><rect x="1114.3" y="757" width="1.4" height="15.0" fill="rgb(226,24,25)" rx="2" ry="2" />
<text x="1117.32" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hdd14d76e5467070d (1 samples, 0.12%)</title><rect x="1111.5" y="709" width="1.4" height="15.0" fill="rgb(248,109,48)" rx="2" ry="2" />
<text x="1114.52" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h6a285d4b03c7c3ad (1 samples, 0.12%)</title><rect x="853.7" y="725" width="1.4" height="15.0" fill="rgb(235,201,19)" rx="2" ry="2" />
<text x="856.66" y="735.5" ></text>
</g>
<g >
<title>perf_iterate_sb (1 samples, 0.12%)</title><rect x="265.1" y="581" width="1.4" height="15.0" fill="rgb(208,173,22)" rx="2" ry="2" />
<text x="268.06" y="591.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (2 samples, 0.24%)</title><rect x="1162.0" y="933" width="2.8" height="15.0" fill="rgb(234,180,51)" rx="2" ry="2" />
<text x="1164.97" y="943.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.71%)</title><rect x="951.8" y="629" width="8.4" height="15.0" fill="rgb(223,198,47)" rx="2" ry="2" />
<text x="954.76" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h9993b2ee6320f178 (1 samples, 0.12%)</title><rect x="853.7" y="693" width="1.4" height="15.0" fill="rgb(216,99,37)" rx="2" ry="2" />
<text x="856.66" y="703.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (1 samples, 0.12%)</title><rect x="133.3" y="757" width="1.4" height="15.0" fill="rgb(220,161,48)" rx="2" ry="2" />
<text x="136.33" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::fx::FxHasher::add_to_hash::h21e5e841ee58e8a2 (1 samples, 0.12%)</title><rect x="49.2" y="181" width="1.4" height="15.0" fill="rgb(229,142,49)" rx="2" ry="2" />
<text x="52.24" y="191.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5bf570143b3e1616 (3 samples, 0.36%)</title><rect x="508.9" y="581" width="4.2" height="15.0" fill="rgb(208,13,17)" rx="2" ry="2" />
<text x="511.91" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h89157caae37f1e55 (1 samples, 0.12%)</title><rect x="237.0" y="581" width="1.4" height="15.0" fill="rgb(222,77,50)" rx="2" ry="2" />
<text x="240.03" y="591.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (715 samples, 84.92%)</title><rect x="134.7" y="853" width="1002.0" height="15.0" fill="rgb(208,7,4)" rx="2" ry="2" />
<text x="137.73" y="863.5" >std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1</text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (1 samples, 0.12%)</title><rect x="39.4" y="325" width="1.4" height="15.0" fill="rgb(240,196,25)" rx="2" ry="2" />
<text x="42.43" y="335.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="493.5" y="485" width="1.4" height="15.0" fill="rgb(242,130,34)" rx="2" ry="2" />
<text x="496.49" y="495.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc_zeroed::h2410518a61e052e5 (1 samples, 0.12%)</title><rect x="262.3" y="629" width="1.4" height="15.0" fill="rgb(245,115,28)" rx="2" ry="2" />
<text x="265.26" y="639.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::get::h6e801bfa596ae24f (1 samples, 0.12%)</title><rect x="42.2" y="277" width="1.4" height="15.0" fill="rgb(209,118,41)" rx="2" ry="2" />
<text x="45.23" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime::instantiate::hc284564ea7f4a095 (1 samples, 0.12%)</title><rect x="1157.8" y="933" width="1.4" height="15.0" fill="rgb(243,139,53)" rx="2" ry="2" />
<text x="1160.77" y="943.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h552e5e201cfe7349 (5 samples, 0.59%)</title><rect x="193.6" y="485" width="7.0" height="15.0" fill="rgb(211,16,1)" rx="2" ry="2" />
<text x="196.59" y="495.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="11.4" y="597" width="1.4" height="15.0" fill="rgb(232,14,52)" rx="2" ry="2" />
<text x="14.40" y="607.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hd0c9c753b8e26fea (1 samples, 0.12%)</title><rect x="1119.9" y="709" width="1.4" height="15.0" fill="rgb(208,180,47)" rx="2" ry="2" />
<text x="1122.93" y="719.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h116cedda3891c909 (4 samples, 0.48%)</title><rect x="873.3" y="757" width="5.6" height="15.0" fill="rgb(234,72,41)" rx="2" ry="2" />
<text x="876.28" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (1 samples, 0.12%)</title><rect x="32.4" y="277" width="1.4" height="15.0" fill="rgb(222,168,42)" rx="2" ry="2" />
<text x="35.42" y="287.5" ></text>
</g>
<g >
<title>__rust_alloc (1 samples, 0.12%)</title><rect x="466.9" y="565" width="1.4" height="15.0" fill="rgb(218,13,32)" rx="2" ry="2" />
<text x="469.86" y="575.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::reserve::h817f5396f83d27c9 (2 samples, 0.24%)</title><rect x="43.6" y="197" width="2.8" height="15.0" fill="rgb(234,84,44)" rx="2" ry="2" />
<text x="46.63" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (4 samples, 0.48%)</title><rect x="1138.1" y="869" width="5.7" height="15.0" fill="rgb(239,38,21)" rx="2" ry="2" />
<text x="1141.15" y="879.5" ></text>
</g>
<g >
<title>std::collections::hash::set::HashSet$LT$T$C$S$GT$::contains::h447821debb24e6bc (3 samples, 0.36%)</title><rect x="478.1" y="677" width="4.2" height="15.0" fill="rgb(207,35,41)" rx="2" ry="2" />
<text x="481.08" y="687.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::h3261baf36222f055 (58 samples, 6.89%)</title><rect x="138.9" y="725" width="81.3" height="15.0" fill="rgb(249,91,17)" rx="2" ry="2" />
<text x="141.93" y="735.5" >_$LT$allo..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="423.4" y="613" width="5.6" height="15.0" fill="rgb(206,7,45)" rx="2" ry="2" />
<text x="426.42" y="623.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h0b8107a032d61909 (1 samples, 0.12%)</title><rect x="478.1" y="581" width="1.4" height="15.0" fill="rgb(224,65,7)" rx="2" ry="2" />
<text x="481.08" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h133abf96dbb77183 (3 samples, 0.36%)</title><rect x="827.0" y="613" width="4.2" height="15.0" fill="rgb(252,210,30)" rx="2" ry="2" />
<text x="830.03" y="623.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (1 samples, 0.12%)</title><rect x="31.0" y="293" width="1.4" height="15.0" fill="rgb(248,20,26)" rx="2" ry="2" />
<text x="34.02" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h684ad19867cee894 (1 samples, 0.12%)</title><rect x="1055.5" y="709" width="1.4" height="15.0" fill="rgb(240,142,15)" rx="2" ry="2" />
<text x="1058.46" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (6 samples, 0.71%)</title><rect x="804.6" y="613" width="8.4" height="15.0" fill="rgb(229,24,53)" rx="2" ry="2" />
<text x="807.61" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="193.6" y="421" width="7.0" height="15.0" fill="rgb(252,107,11)" rx="2" ry="2" />
<text x="196.59" y="431.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..TakeWhile$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h0c9fbae3ca41de07 (18 samples, 2.14%)</title><rect x="26.8" y="549" width="25.2" height="15.0" fill="rgb(230,90,27)" rx="2" ry="2" />
<text x="29.82" y="559.5" >_..</text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::set_validation_error::hab30335beb6b7d39 (2 samples, 0.24%)</title><rect x="487.9" y="693" width="2.8" height="15.0" fill="rgb(221,158,13)" rx="2" ry="2" />
<text x="490.89" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="476.7" y="597" width="1.4" height="15.0" fill="rgb(232,206,33)" rx="2" ry="2" />
<text x="479.67" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1111.5" y="677" width="1.4" height="15.0" fill="rgb(235,140,39)" rx="2" ry="2" />
<text x="1114.52" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h2664d9aec9ee8681 (1 samples, 0.12%)</title><rect x="845.2" y="693" width="1.5" height="15.0" fill="rgb(243,94,44)" rx="2" ry="2" />
<text x="848.25" y="703.5" ></text>
</g>
<g >
<title>_$LT$rand..distributions..uniform..UniformInt$LT$usize$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::hee998064ef02a492 (1 samples, 0.12%)</title><rect x="1114.3" y="725" width="1.4" height="15.0" fill="rgb(249,26,12)" rx="2" ry="2" />
<text x="1117.32" y="735.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::h88163dffbe585458 (58 samples, 6.89%)</title><rect x="138.9" y="613" width="81.3" height="15.0" fill="rgb(220,131,45)" rx="2" ry="2" />
<text x="141.93" y="623.5" >core::ite..</text>
</g>
<g >
<title>_int_malloc (3 samples, 0.36%)</title><rect x="381.4" y="517" width="4.2" height="15.0" fill="rgb(208,202,46)" rx="2" ry="2" />
<text x="384.38" y="527.5" ></text>
</g>
<g >
<title>rayon::iter::reduce::reduce::hed2b1ea7593f5d79 (18 samples, 2.14%)</title><rect x="26.8" y="837" width="25.2" height="15.0" fill="rgb(249,74,26)" rx="2" ry="2" />
<text x="29.82" y="847.5" >r..</text>
</g>
<g >
<title>crossbeam_epoch::collector::LocalHandle::pin::h691eec7d26b18bb8 (32 samples, 3.80%)</title><rect x="73.1" y="373" width="44.8" height="15.0" fill="rgb(246,201,26)" rx="2" ry="2" />
<text x="76.06" y="383.5" >cros..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (2 samples, 0.24%)</title><rect x="703.7" y="613" width="2.8" height="15.0" fill="rgb(228,177,54)" rx="2" ry="2" />
<text x="706.71" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hb558f4c8231dd218 (5 samples, 0.59%)</title><rect x="193.6" y="469" width="7.0" height="15.0" fill="rgb(243,30,26)" rx="2" ry="2" />
<text x="196.59" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::details::start_pass::hd7fb3b93ee1da8db (1 samples, 0.12%)</title><rect x="33.8" y="293" width="1.4" height="15.0" fill="rgb(249,22,20)" rx="2" ry="2" />
<text x="36.82" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h22a087a28c50da77 (1 samples, 0.12%)</title><rect x="1077.9" y="709" width="1.4" height="15.0" fill="rgb(245,65,30)" rx="2" ry="2" />
<text x="1080.89" y="719.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (5 samples, 0.59%)</title><rect x="817.2" y="533" width="7.0" height="15.0" fill="rgb(220,212,6)" rx="2" ry="2" />
<text x="820.22" y="543.5" ></text>
</g>
<g >
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::h23e9c4901f0a32e7 (6 samples, 0.71%)</title><rect x="399.6" y="677" width="8.4" height="15.0" fill="rgb(221,70,52)" rx="2" ry="2" />
<text x="402.60" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::he78241edf6397a41 (15 samples, 1.78%)</title><rect x="447.2" y="613" width="21.1" height="15.0" fill="rgb(224,104,31)" rx="2" ry="2" />
<text x="450.24" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="274.9" y="645" width="2.8" height="15.0" fill="rgb(238,209,23)" rx="2" ry="2" />
<text x="277.87" y="655.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h7e297f515d2b9800 (1 samples, 0.12%)</title><rect x="636.4" y="709" width="1.4" height="15.0" fill="rgb(229,220,29)" rx="2" ry="2" />
<text x="639.44" y="719.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.59%)</title><rect x="1091.9" y="645" width="7.0" height="15.0" fill="rgb(250,53,40)" rx="2" ry="2" />
<text x="1094.90" y="655.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::internal::hc00a34f8209d8a9d (1 samples, 0.12%)</title><rect x="971.4" y="773" width="1.4" height="15.0" fill="rgb(208,66,30)" rx="2" ry="2" />
<text x="974.38" y="783.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (143 samples, 16.98%)</title><rect x="290.3" y="725" width="200.4" height="15.0" fill="rgb(207,202,50)" rx="2" ry="2" />
<text x="293.29" y="735.5" >_$LT$wasmparser..validator..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0206dbe7b12f9d0 (49 samples, 5.82%)</title><rect x="637.8" y="709" width="68.7" height="15.0" fill="rgb(223,37,54)" rx="2" ry="2" />
<text x="640.84" y="719.5" >_$LT$pa..</text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get_key_value::h02493fd1a3364d1c (1 samples, 0.12%)</title><rect x="1141.0" y="709" width="1.4" height="15.0" fill="rgb(246,109,43)" rx="2" ry="2" />
<text x="1143.95" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::attach_ebb_param::haa68bda0c8e6ad48 (1 samples, 0.12%)</title><rect x="11.4" y="805" width="1.4" height="15.0" fill="rgb(240,62,4)" rx="2" ry="2" />
<text x="14.40" y="815.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (4 samples, 0.48%)</title><rect x="1073.7" y="773" width="5.6" height="15.0" fill="rgb(223,121,52)" rx="2" ry="2" />
<text x="1076.68" y="783.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf6fe7132ff918dbc (1 samples, 0.12%)</title><rect x="1010.6" y="677" width="1.4" height="15.0" fill="rgb(206,7,10)" rx="2" ry="2" />
<text x="1013.62" y="687.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::map::h5573f7c2c21f1602 (2 samples, 0.24%)</title><rect x="800.4" y="693" width="2.8" height="15.0" fill="rgb(207,164,28)" rx="2" ry="2" />
<text x="803.40" y="703.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="496.3" y="565" width="1.4" height="15.0" fill="rgb(244,139,19)" rx="2" ry="2" />
<text x="499.29" y="575.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (1 samples, 0.12%)</title><rect x="11.4" y="645" width="1.4" height="15.0" fill="rgb(221,7,15)" rx="2" ry="2" />
<text x="14.40" y="655.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSomeFolder$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$core..option..Option$LT$T$GT$$GT$$GT$::consume_iter::hb572ec4d159e6450 (1 samples, 0.12%)</title><rect x="1164.8" y="613" width="1.4" height="15.0" fill="rgb(205,3,38)" rx="2" ry="2" />
<text x="1167.77" y="623.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::he20f360286dafeda (2 samples, 0.24%)</title><rect x="1075.1" y="677" width="2.8" height="15.0" fill="rgb(206,205,2)" rx="2" ry="2" />
<text x="1078.08" y="687.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (3 samples, 0.36%)</title><rect x="691.1" y="565" width="4.2" height="15.0" fill="rgb(246,0,48)" rx="2" ry="2" />
<text x="694.09" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (10 samples, 1.19%)</title><rect x="160.0" y="437" width="14.0" height="15.0" fill="rgb(222,132,12)" rx="2" ry="2" />
<text x="162.95" y="447.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::instruction::h9460bf8689609894 (6 samples, 0.71%)</title><rect x="1107.3" y="789" width="8.4" height="15.0" fill="rgb(225,162,0)" rx="2" ry="2" />
<text x="1110.32" y="799.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::system_v_prologue_epilogue::hace716b8c348dcd2 (1 samples, 0.12%)</title><rect x="14.2" y="821" width="1.4" height="15.0" fill="rgb(249,198,13)" rx="2" ry="2" />
<text x="17.20" y="831.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb699a3c12be378e9 (1 samples, 0.12%)</title><rect x="256.7" y="693" width="1.4" height="15.0" fill="rgb(220,2,1)" rx="2" ry="2" />
<text x="259.65" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (5 samples, 0.59%)</title><rect x="714.9" y="629" width="7.0" height="15.0" fill="rgb(246,227,6)" rx="2" ry="2" />
<text x="717.92" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (13 samples, 1.54%)</title><rect x="616.8" y="629" width="18.2" height="15.0" fill="rgb(209,193,18)" rx="2" ry="2" />
<text x="619.82" y="639.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (16 samples, 1.90%)</title><rect x="255.2" y="741" width="22.5" height="15.0" fill="rgb(213,164,38)" rx="2" ry="2" />
<text x="258.25" y="751.5" >_..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (6 samples, 0.71%)</title><rect x="939.1" y="645" width="8.5" height="15.0" fill="rgb(247,76,38)" rx="2" ry="2" />
<text x="942.14" y="655.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (8 samples, 0.95%)</title><rect x="200.6" y="165" width="11.2" height="15.0" fill="rgb(224,23,37)" rx="2" ry="2" />
<text x="203.59" y="175.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Hasher$LT$S$GT$$u20$as$u20$core..hash..Hasher$GT$::finish::hf3dbc6c02fde82f8 (1 samples, 0.12%)</title><rect x="430.4" y="597" width="1.4" height="15.0" fill="rgb(252,195,7)" rx="2" ry="2" />
<text x="433.43" y="607.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (1 samples, 0.12%)</title><rect x="1156.4" y="869" width="1.4" height="15.0" fill="rgb(253,86,38)" rx="2" ry="2" />
<text x="1159.37" y="879.5" ></text>
</g>
<g >
<title>__vma_adjust (1 samples, 0.12%)</title><rect x="269.3" y="581" width="1.4" height="15.0" fill="rgb(232,143,9)" rx="2" ry="2" />
<text x="272.26" y="591.5" ></text>
</g>
<g >
<title>std::thread::local::fast::Key$LT$T$GT$::get::h902ad5abbaacfea5 (1 samples, 0.12%)</title><rect x="63.3" y="389" width="1.4" height="15.0" fill="rgb(236,163,28)" rx="2" ry="2" />
<text x="66.25" y="399.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (1 samples, 0.12%)</title><rect x="237.0" y="357" width="1.4" height="15.0" fill="rgb(221,147,54)" rx="2" ry="2" />
<text x="240.03" y="367.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (4 samples, 0.48%)</title><rect x="794.8" y="677" width="5.6" height="15.0" fill="rgb(244,12,9)" rx="2" ry="2" />
<text x="797.80" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (5 samples, 0.59%)</title><rect x="490.7" y="725" width="7.0" height="15.0" fill="rgb(207,168,37)" rx="2" ry="2" />
<text x="493.69" y="735.5" ></text>
</g>
<g >
<title>parity_wasm::elements::module::Module::new::h04780e784830cd91 (32 samples, 3.80%)</title><rect x="1012.0" y="725" width="44.9" height="15.0" fill="rgb(237,52,13)" rx="2" ry="2" />
<text x="1015.02" y="735.5" >pari..</text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="888.7" y="645" width="1.4" height="15.0" fill="rgb(231,227,31)" rx="2" ry="2" />
<text x="891.69" y="655.5" ></text>
</g>
<g >
<title>unmap_vmas (1 samples, 0.12%)</title><rect x="1184.4" y="869" width="1.4" height="15.0" fill="rgb(205,37,35)" rx="2" ry="2" />
<text x="1187.39" y="879.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.59%)</title><rect x="738.7" y="581" width="7.0" height="15.0" fill="rgb(212,185,18)" rx="2" ry="2" />
<text x="741.74" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (1 samples, 0.12%)</title><rect x="1143.8" y="661" width="1.4" height="15.0" fill="rgb(233,184,52)" rx="2" ry="2" />
<text x="1146.75" y="671.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (1 samples, 0.12%)</title><rect x="1153.6" y="677" width="1.4" height="15.0" fill="rgb(211,214,38)" rx="2" ry="2" />
<text x="1156.56" y="687.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..readers..code_section..CodeSectionReader$u20$as$u20$wasmparser..readers..section_reader..SectionReader$GT$::eof::h7d324352a571be7c (1 samples, 0.12%)</title><rect x="312.7" y="645" width="1.4" height="15.0" fill="rgb(235,84,16)" rx="2" ry="2" />
<text x="315.71" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (5 samples, 0.59%)</title><rect x="831.2" y="565" width="7.0" height="15.0" fill="rgb(241,210,0)" rx="2" ry="2" />
<text x="834.24" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h485cc29838317297 (3 samples, 0.36%)</title><rect x="883.1" y="661" width="4.2" height="15.0" fill="rgb(231,100,50)" rx="2" ry="2" />
<text x="886.09" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hc71a429985c19729 (3 samples, 0.36%)</title><rect x="827.0" y="581" width="4.2" height="15.0" fill="rgb(244,56,48)" rx="2" ry="2" />
<text x="830.03" y="591.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="842.4" y="517" width="1.4" height="15.0" fill="rgb(214,78,46)" rx="2" ry="2" />
<text x="845.45" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h4986f3e8128de784 (6 samples, 0.71%)</title><rect x="906.9" y="677" width="8.4" height="15.0" fill="rgb(250,46,52)" rx="2" ry="2" />
<text x="909.91" y="687.5" ></text>
</g>
<g >
<title>[libgomp.so.1.0.0] (1 samples, 0.12%)</title><rect x="1180.2" y="965" width="1.4" height="15.0" fill="rgb(225,196,30)" rx="2" ry="2" />
<text x="1183.19" y="975.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.48%)</title><rect x="1003.6" y="597" width="5.6" height="15.0" fill="rgb(220,201,51)" rx="2" ry="2" />
<text x="1006.61" y="607.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="719.1" y="517" width="1.4" height="15.0" fill="rgb(248,92,46)" rx="2" ry="2" />
<text x="722.12" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (14 samples, 1.66%)</title><rect x="615.4" y="677" width="19.6" height="15.0" fill="rgb(223,65,45)" rx="2" ry="2" />
<text x="618.42" y="687.5" ></text>
</g>
<g >
<title>perf_iterate_sb (1 samples, 0.12%)</title><rect x="1152.2" y="741" width="1.4" height="15.0" fill="rgb(235,15,45)" rx="2" ry="2" />
<text x="1155.16" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::ha2c15585099cc52c (3 samples, 0.36%)</title><rect x="238.4" y="645" width="4.2" height="15.0" fill="rgb(228,89,35)" rx="2" ry="2" />
<text x="241.43" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="155.7" y="133" width="2.9" height="15.0" fill="rgb(243,190,16)" rx="2" ry="2" />
<text x="158.75" y="143.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="583.2" y="725" width="1.4" height="15.0" fill="rgb(226,63,38)" rx="2" ry="2" />
<text x="586.18" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::preopt::h36ab56a575c54c2b (1 samples, 0.12%)</title><rect x="35.2" y="357" width="1.4" height="15.0" fill="rgb(216,36,36)" rx="2" ry="2" />
<text x="38.23" y="367.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1df01ae01f77852d (3 samples, 0.36%)</title><rect x="500.5" y="645" width="4.2" height="15.0" fill="rgb(220,210,28)" rx="2" ry="2" />
<text x="503.50" y="655.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::hfbc62a961793dc81 (1 samples, 0.12%)</title><rect x="26.8" y="325" width="1.4" height="15.0" fill="rgb(249,173,6)" rx="2" ry="2" />
<text x="29.82" y="335.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h27c57577c909f566 (18 samples, 2.14%)</title><rect x="26.8" y="773" width="25.2" height="15.0" fill="rgb(223,82,9)" rx="2" ry="2" />
<text x="29.82" y="783.5" >_..</text>
</g>
<g >
<title>_dl_map_segments (1 samples, 0.12%)</title><rect x="1181.6" y="853" width="1.4" height="15.0" fill="rgb(206,185,51)" rx="2" ry="2" />
<text x="1184.59" y="863.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="745.7" y="549" width="1.4" height="15.0" fill="rgb(240,192,11)" rx="2" ry="2" />
<text x="748.75" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (1 samples, 0.12%)</title><rect x="745.7" y="613" width="1.4" height="15.0" fill="rgb(214,222,34)" rx="2" ry="2" />
<text x="748.75" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (15 samples, 1.78%)</title><rect x="447.2" y="597" width="21.1" height="15.0" fill="rgb(240,56,35)" rx="2" ry="2" />
<text x="450.24" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (4 samples, 0.48%)</title><rect x="696.7" y="565" width="5.6" height="15.0" fill="rgb(221,24,18)" rx="2" ry="2" />
<text x="699.70" y="575.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge::hf04575a5334eecf9 (3 samples, 0.36%)</title><rect x="52.0" y="709" width="4.2" height="15.0" fill="rgb(238,59,5)" rx="2" ry="2" />
<text x="55.04" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6 samples, 0.71%)</title><rect x="804.6" y="629" width="8.4" height="15.0" fill="rgb(222,207,50)" rx="2" ry="2" />
<text x="807.61" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h525681825b33c8b1 (1 samples, 0.12%)</title><rect x="1112.9" y="709" width="1.4" height="15.0" fill="rgb(236,83,30)" rx="2" ry="2" />
<text x="1115.92" y="719.5" ></text>
</g>
<g >
<title>_int_new_arena (1 samples, 0.12%)</title><rect x="131.9" y="789" width="1.4" height="15.0" fill="rgb(245,186,19)" rx="2" ry="2" />
<text x="134.92" y="799.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.24%)</title><rect x="735.9" y="533" width="2.8" height="15.0" fill="rgb(246,181,36)" rx="2" ry="2" />
<text x="738.94" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (4 samples, 0.48%)</title><rect x="848.1" y="677" width="5.6" height="15.0" fill="rgb(230,178,47)" rx="2" ry="2" />
<text x="851.05" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h2cecdcf63e0d258e (1 samples, 0.12%)</title><rect x="237.0" y="533" width="1.4" height="15.0" fill="rgb(213,227,46)" rx="2" ry="2" />
<text x="240.03" y="543.5" ></text>
</g>
<g >
<title>ima_file_mmap (1 samples, 0.12%)</title><rect x="1155.0" y="757" width="1.4" height="15.0" fill="rgb(216,40,0)" rx="2" ry="2" />
<text x="1157.96" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="53.4" y="485" width="1.4" height="15.0" fill="rgb(221,203,52)" rx="2" ry="2" />
<text x="56.44" y="495.5" ></text>
</g>
<g >
<title>malloc_consolidate (20 samples, 2.38%)</title><rect x="1027.4" y="581" width="28.1" height="15.0" fill="rgb(230,85,35)" rx="2" ry="2" />
<text x="1030.43" y="591.5" >m..</text>
</g>
<g >
<title>crossbeam_epoch::atomic::Shared$LT$T$GT$::deref::hd816652358beeda7 (1 samples, 0.12%)</title><rect x="116.5" y="293" width="1.4" height="15.0" fill="rgb(211,73,22)" rx="2" ry="2" />
<text x="119.51" y="303.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::build::hfed3c1d7c10ae131 (22 samples, 2.61%)</title><rect x="899.9" y="773" width="30.8" height="15.0" fill="rgb(241,167,48)" rx="2" ry="2" />
<text x="902.90" y="783.5" >pa..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="598.6" y="613" width="5.6" height="15.0" fill="rgb(252,35,0)" rx="2" ry="2" />
<text x="601.60" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h8037b78066b451e4 (31 samples, 3.68%)</title><rect x="1012.0" y="661" width="43.5" height="15.0" fill="rgb(232,192,34)" rx="2" ry="2" />
<text x="1015.02" y="671.5" >allo..</text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::h9d0dbadacf05cc4f (11 samples, 1.31%)</title><rect x="144.5" y="437" width="15.5" height="15.0" fill="rgb(213,187,28)" rx="2" ry="2" />
<text x="147.54" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h6a285d4b03c7c3ad (1 samples, 0.12%)</title><rect x="1055.5" y="677" width="1.4" height="15.0" fill="rgb(207,82,28)" rx="2" ry="2" />
<text x="1058.46" y="687.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::new::hc859addf0333e238 (1 samples, 0.12%)</title><rect x="277.7" y="741" width="1.4" height="15.0" fill="rgb(238,32,38)" rx="2" ry="2" />
<text x="280.67" y="751.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::empty::h0404b2efb1ef4e5b (4 samples, 0.48%)</title><rect x="1062.5" y="725" width="5.6" height="15.0" fill="rgb(230,196,7)" rx="2" ry="2" />
<text x="1065.47" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="848.1" y="613" width="5.6" height="15.0" fill="rgb(251,11,19)" rx="2" ry="2" />
<text x="851.05" y="623.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.24%)</title><rect x="1153.6" y="837" width="2.8" height="15.0" fill="rgb(242,87,31)" rx="2" ry="2" />
<text x="1156.56" y="847.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (3 samples, 0.36%)</title><rect x="15.6" y="853" width="4.2" height="15.0" fill="rgb(224,161,54)" rx="2" ry="2" />
<text x="18.61" y="863.5" ></text>
</g>
<g >
<title>__rdl_realloc (1 samples, 0.12%)</title><rect x="822.8" y="517" width="1.4" height="15.0" fill="rgb(217,27,23)" rx="2" ry="2" />
<text x="825.83" y="527.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::hd1664681c64370a8 (6 samples, 0.71%)</title><rect x="399.6" y="645" width="8.4" height="15.0" fill="rgb(242,168,15)" rx="2" ry="2" />
<text x="402.60" y="655.5" ></text>
</g>
<g >
<title>__GI___mprotect (2 samples, 0.24%)</title><rect x="263.7" y="693" width="2.8" height="15.0" fill="rgb(244,58,39)" rx="2" ry="2" />
<text x="266.66" y="703.5" ></text>
</g>
<g >
<title>alloc_perturb (1 samples, 0.12%)</title><rect x="157.1" y="117" width="1.5" height="15.0" fill="rgb(230,227,14)" rx="2" ry="2" />
<text x="160.15" y="127.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (1 samples, 0.12%)</title><rect x="29.6" y="277" width="1.4" height="15.0" fill="rgb(215,184,53)" rx="2" ry="2" />
<text x="32.62" y="287.5" ></text>
</g>
<g >
<title>[libz3.so.4] (3 samples, 0.36%)</title><rect x="862.1" y="757" width="4.2" height="15.0" fill="rgb(222,136,32)" rx="2" ry="2" />
<text x="865.07" y="767.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h6ae4018c4ff98f03 (2 samples, 0.24%)</title><rect x="1131.1" y="725" width="2.8" height="15.0" fill="rgb(239,85,31)" rx="2" ry="2" />
<text x="1134.14" y="735.5" ></text>
</g>
<g >
<title>_start (2 samples, 0.24%)</title><rect x="1181.6" y="1013" width="2.8" height="15.0" fill="rgb(236,208,53)" rx="2" ry="2" />
<text x="1184.59" y="1023.5" ></text>
</g>
<g >
<title>cranelift_codegen::cursor::Cursor::insert_inst::hf01a37b54896042c (1 samples, 0.12%)</title><rect x="1143.8" y="789" width="1.4" height="15.0" fill="rgb(244,112,5)" rx="2" ry="2" />
<text x="1146.75" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (9 samples, 1.07%)</title><rect x="779.4" y="629" width="12.6" height="15.0" fill="rgb(215,215,53)" rx="2" ry="2" />
<text x="782.38" y="639.5" ></text>
</g>
<g >
<title>_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get::h66783aec5ca80fd0 (1 samples, 0.12%)</title><rect x="1139.5" y="725" width="1.5" height="15.0" fill="rgb(206,145,44)" rx="2" ry="2" />
<text x="1142.55" y="735.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::hc8cb9c9b193fbdb6 (4 samples, 0.48%)</title><rect x="923.7" y="709" width="5.6" height="15.0" fill="rgb(217,129,37)" rx="2" ry="2" />
<text x="926.73" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (5 samples, 0.59%)</title><rect x="19.8" y="869" width="7.0" height="15.0" fill="rgb(233,142,17)" rx="2" ry="2" />
<text x="22.81" y="879.5" ></text>
</g>
<g >
<title>do_exit (1 samples, 0.12%)</title><rect x="1184.4" y="917" width="1.4" height="15.0" fill="rgb(226,144,11)" rx="2" ry="2" />
<text x="1187.39" y="927.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (1 samples, 0.12%)</title><rect x="42.2" y="325" width="1.4" height="15.0" fill="rgb(239,205,24)" rx="2" ry="2" />
<text x="45.23" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (1 samples, 0.12%)</title><rect x="843.8" y="565" width="1.4" height="15.0" fill="rgb(239,2,21)" rx="2" ry="2" />
<text x="846.85" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h9113cee50f7dab86 (2 samples, 0.24%)</title><rect x="968.6" y="677" width="2.8" height="15.0" fill="rgb(240,82,51)" rx="2" ry="2" />
<text x="971.57" y="687.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::hd57ea4f8793eaf15 (18 samples, 2.14%)</title><rect x="26.8" y="677" width="25.2" height="15.0" fill="rgb(208,226,35)" rx="2" ry="2" />
<text x="29.82" y="687.5" >r..</text>
</g>
<g >
<title>core::ptr::swap_nonoverlapping_one::h6bec446f0b681393 (1 samples, 0.12%)</title><rect x="43.6" y="117" width="1.4" height="15.0" fill="rgb(216,80,3)" rx="2" ry="2" />
<text x="46.63" y="127.5" ></text>
</g>
<g >
<title>_$LT$usize$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get::hb64b67c050b9adbd (1 samples, 0.12%)</title><rect x="42.2" y="261" width="1.4" height="15.0" fill="rgb(213,59,23)" rx="2" ry="2" />
<text x="45.23" y="271.5" ></text>
</g>
<g >
<title>cranelift_entity::map::SecondaryMap$LT$K$C$V$GT$::resize::hdff972b7ecc1d34a (1 samples, 0.12%)</title><rect x="1145.2" y="789" width="1.4" height="15.0" fill="rgb(216,87,35)" rx="2" ry="2" />
<text x="1148.15" y="799.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (715 samples, 84.92%)</title><rect x="134.7" y="869" width="1002.0" height="15.0" fill="rgb(225,84,51)" rx="2" ry="2" />
<text x="137.73" y="879.5" >std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::hd928a9c942627bd9 (31 samples, 3.68%)</title><rect x="1012.0" y="693" width="43.5" height="15.0" fill="rgb(221,37,34)" rx="2" ry="2" />
<text x="1015.02" y="703.5" >allo..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h3e5747e43e64c0cc (4 samples, 0.48%)</title><rect x="748.6" y="629" width="5.6" height="15.0" fill="rgb(224,98,1)" rx="2" ry="2" />
<text x="751.55" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h054e79e44149db91 (2 samples, 0.24%)</title><rect x="876.1" y="709" width="2.8" height="15.0" fill="rgb(241,100,50)" rx="2" ry="2" />
<text x="879.08" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h22a087a28c50da77 (4 samples, 0.48%)</title><rect x="154.3" y="213" width="5.7" height="15.0" fill="rgb(244,50,43)" rx="2" ry="2" />
<text x="157.35" y="223.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::h0491d5a49b6126eb (18 samples, 2.14%)</title><rect x="26.8" y="453" width="25.2" height="15.0" fill="rgb(237,184,7)" rx="2" ry="2" />
<text x="29.82" y="463.5" >c..</text>
</g>
<g >
<title>_dl_relocate_object (1 samples, 0.12%)</title><rect x="1183.0" y="933" width="1.4" height="15.0" fill="rgb(212,154,31)" rx="2" ry="2" />
<text x="1185.99" y="943.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h271e917f85000884 (1 samples, 0.12%)</title><rect x="252.4" y="693" width="1.4" height="15.0" fill="rgb(216,156,32)" rx="2" ry="2" />
<text x="255.45" y="703.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::from_par_iter::hcc780dcd99c4dd47 (3 samples, 0.36%)</title><rect x="52.0" y="901" width="4.2" height="15.0" fill="rgb(246,131,23)" rx="2" ry="2" />
<text x="55.04" y="911.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="26.8" y="229" width="1.4" height="15.0" fill="rgb(241,193,47)" rx="2" ry="2" />
<text x="29.82" y="239.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::hcf30bedb2280825b (4 samples, 0.48%)</title><rect x="423.4" y="693" width="5.6" height="15.0" fill="rgb(215,1,0)" rx="2" ry="2" />
<text x="426.42" y="703.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..CodeSection$u20$as$u20$core..clone..Clone$GT$::clone::h576e1def172dde39 (23 samples, 2.73%)</title><rect x="144.5" y="549" width="32.3" height="15.0" fill="rgb(229,95,29)" rx="2" ry="2" />
<text x="147.54" y="559.5" >_$..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4da55a25adceb867 (1 samples, 0.12%)</title><rect x="1126.9" y="757" width="1.4" height="15.0" fill="rgb(216,123,21)" rx="2" ry="2" />
<text x="1129.94" y="767.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::hd8340726942d5aca (2 samples, 0.24%)</title><rect x="873.3" y="741" width="2.8" height="15.0" fill="rgb(235,181,50)" rx="2" ry="2" />
<text x="876.28" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5da50f7ed8952335 (6 samples, 0.71%)</title><rect x="244.0" y="789" width="8.4" height="15.0" fill="rgb(222,108,30)" rx="2" ry="2" />
<text x="247.04" y="799.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (2 samples, 0.24%)</title><rect x="263.7" y="709" width="2.8" height="15.0" fill="rgb(245,95,17)" rx="2" ry="2" />
<text x="266.66" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$alloc..vec..IntoIter$LT$T$GT$$GT$$GT$::spec_extend::h1393d3108f71c90c (6 samples, 0.71%)</title><rect x="939.1" y="741" width="8.5" height="15.0" fill="rgb(230,21,15)" rx="2" ry="2" />
<text x="942.14" y="751.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::next_function::hbef1985a853e1f1c (1 samples, 0.12%)</title><rect x="133.3" y="821" width="1.4" height="15.0" fill="rgb(221,100,22)" rx="2" ry="2" />
<text x="136.33" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="304.3" y="645" width="5.6" height="15.0" fill="rgb(216,185,5)" rx="2" ry="2" />
<text x="307.30" y="655.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::he0446b43bfc1ac5d (4 samples, 0.48%)</title><rect x="873.3" y="773" width="5.6" height="15.0" fill="rgb(248,51,49)" rx="2" ry="2" />
<text x="876.28" y="783.5" ></text>
</g>
<g >
<title>perf_event_mmap (2 samples, 0.24%)</title><rect x="1150.8" y="757" width="2.8" height="15.0" fill="rgb(242,180,13)" rx="2" ry="2" />
<text x="1153.76" y="767.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="1164.8" y="197" width="1.4" height="15.0" fill="rgb(243,160,44)" rx="2" ry="2" />
<text x="1167.77" y="207.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..backend..CompilerConfig$u20$as$u20$core..default..Default$GT$::default::h190d2a6234fa648f (1 samples, 0.12%)</title><rect x="231.4" y="789" width="1.4" height="15.0" fill="rgb(235,17,18)" rx="2" ry="2" />
<text x="234.43" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::ha270ebd7af33b1d5 (1 samples, 0.12%)</title><rect x="493.5" y="549" width="1.4" height="15.0" fill="rgb(205,223,18)" rx="2" ry="2" />
<text x="496.49" y="559.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::is_some::hb5a7bcd1c6d6fc9e (3 samples, 0.36%)</title><rect x="391.2" y="709" width="4.2" height="15.0" fill="rgb(222,97,30)" rx="2" ry="2" />
<text x="394.19" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="1164.8" y="213" width="1.4" height="15.0" fill="rgb(234,71,14)" rx="2" ry="2" />
<text x="1167.77" y="223.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h9c7b6ed34df6e876 (6 samples, 0.71%)</title><rect x="399.6" y="629" width="8.4" height="15.0" fill="rgb(251,183,47)" rx="2" ry="2" />
<text x="402.60" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h944558584d274714 (1 samples, 0.12%)</title><rect x="888.7" y="725" width="1.4" height="15.0" fill="rgb(249,103,18)" rx="2" ry="2" />
<text x="891.69" y="735.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (69 samples, 8.19%)</title><rect x="294.5" y="709" width="96.7" height="15.0" fill="rgb(245,96,32)" rx="2" ry="2" />
<text x="297.49" y="719.5" >_$LT$wasmpa..</text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h741bc29efe0e57bc (1 samples, 0.12%)</title><rect x="399.6" y="581" width="1.4" height="15.0" fill="rgb(245,72,52)" rx="2" ry="2" />
<text x="402.60" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf9567595bb953c49 (1 samples, 0.12%)</title><rect x="1055.5" y="693" width="1.4" height="15.0" fill="rgb(210,17,11)" rx="2" ry="2" />
<text x="1058.46" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hf50eb67290961325 (3 samples, 0.36%)</title><rect x="915.3" y="709" width="4.2" height="15.0" fill="rgb(240,195,49)" rx="2" ry="2" />
<text x="918.32" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01f5ef0200a27f82 (2 samples, 0.24%)</title><rect x="147.3" y="293" width="2.8" height="15.0" fill="rgb(216,108,41)" rx="2" ry="2" />
<text x="150.34" y="303.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::Producer::fold_with::h97a9f6e1edeed240 (18 samples, 2.14%)</title><rect x="26.8" y="645" width="25.2" height="15.0" fill="rgb(236,81,4)" rx="2" ry="2" />
<text x="29.82" y="655.5" >r..</text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_value_types::h852fc8c2d0e6778a (1 samples, 0.12%)</title><rect x="485.1" y="677" width="1.4" height="15.0" fill="rgb(244,106,45)" rx="2" ry="2" />
<text x="488.08" y="687.5" ></text>
</g>
<g >
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::h23e9c4901f0a32e7 (2 samples, 0.24%)</title><rect x="968.6" y="757" width="2.8" height="15.0" fill="rgb(252,126,14)" rx="2" ry="2" />
<text x="971.57" y="767.5" ></text>
</g>
<g >
<title>core::intrinsics::copy_nonoverlapping::he90eb200ed93a889 (1 samples, 0.12%)</title><rect x="38.0" y="149" width="1.4" height="15.0" fill="rgb(239,65,45)" rx="2" ry="2" />
<text x="41.03" y="159.5" ></text>
</g>
<g >
<title>clap::app::parser::Parser::get_matches_with::hb1f857b9a33db690 (1 samples, 0.12%)</title><rect x="134.7" y="773" width="1.4" height="15.0" fill="rgb(228,57,33)" rx="2" ry="2" />
<text x="137.73" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3 samples, 0.36%)</title><rect x="691.1" y="613" width="4.2" height="15.0" fill="rgb(206,133,27)" rx="2" ry="2" />
<text x="694.09" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="794.8" y="613" width="5.6" height="15.0" fill="rgb(221,107,46)" rx="2" ry="2" />
<text x="797.80" y="623.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..SipHasher13$u20$as$u20$core..hash..Hasher$GT$::write::h2dd68700c21828c7 (1 samples, 0.12%)</title><rect x="479.5" y="533" width="1.4" height="15.0" fill="rgb(244,185,20)" rx="2" ry="2" />
<text x="482.48" y="543.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (1 samples, 0.12%)</title><rect x="710.7" y="725" width="1.4" height="15.0" fill="rgb(222,145,46)" rx="2" ry="2" />
<text x="713.71" y="735.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (1 samples, 0.12%)</title><rect x="846.7" y="661" width="1.4" height="15.0" fill="rgb(211,124,33)" rx="2" ry="2" />
<text x="849.65" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (3 samples, 0.36%)</title><rect x="706.5" y="661" width="4.2" height="15.0" fill="rgb(247,145,25)" rx="2" ry="2" />
<text x="709.51" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="779.4" y="565" width="2.8" height="15.0" fill="rgb(211,125,23)" rx="2" ry="2" />
<text x="782.38" y="575.5" ></text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::h07ed0709fb15109a (1 samples, 0.12%)</title><rect x="260.9" y="485" width="1.4" height="15.0" fill="rgb(234,16,35)" rx="2" ry="2" />
<text x="263.86" y="495.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h6bd4320a2ecd2b78 (17 samples, 2.02%)</title><rect x="444.4" y="677" width="23.9" height="15.0" fill="rgb(217,53,52)" rx="2" ry="2" />
<text x="447.44" y="687.5" >a..</text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (16 samples, 1.90%)</title><rect x="986.8" y="645" width="22.4" height="15.0" fill="rgb(230,154,27)" rx="2" ry="2" />
<text x="989.79" y="655.5" >a..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h725b36d552dae03b (1 samples, 0.12%)</title><rect x="259.5" y="661" width="1.4" height="15.0" fill="rgb(245,58,19)" rx="2" ry="2" />
<text x="262.45" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (2 samples, 0.24%)</title><rect x="1075.1" y="661" width="2.8" height="15.0" fill="rgb(247,93,20)" rx="2" ry="2" />
<text x="1078.08" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::OpcodeConstraints::ctrl_typeset::h4787cfa5f6a60985 (1 samples, 0.12%)</title><rect x="32.4" y="245" width="1.4" height="15.0" fill="rgb(231,31,40)" rx="2" ry="2" />
<text x="35.42" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h678b6ed657bcebee (4 samples, 0.48%)</title><rect x="154.3" y="197" width="5.7" height="15.0" fill="rgb(251,179,13)" rx="2" ry="2" />
<text x="157.35" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="476.7" y="645" width="1.4" height="15.0" fill="rgb(239,18,42)" rx="2" ry="2" />
<text x="479.67" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (1 samples, 0.12%)</title><rect x="49.2" y="341" width="1.4" height="15.0" fill="rgb(216,139,30)" rx="2" ry="2" />
<text x="52.24" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="877.5" y="645" width="1.4" height="15.0" fill="rgb(254,45,24)" rx="2" ry="2" />
<text x="880.48" y="655.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::hd16d799b84977fb2 (18 samples, 2.14%)</title><rect x="26.8" y="485" width="25.2" height="15.0" fill="rgb(243,114,10)" rx="2" ry="2" />
<text x="29.82" y="495.5" >_..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (9 samples, 1.07%)</title><rect x="658.9" y="597" width="12.6" height="15.0" fill="rgb(220,170,35)" rx="2" ry="2" />
<text x="661.86" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="468.3" y="581" width="7.0" height="15.0" fill="rgb(205,213,2)" rx="2" ry="2" />
<text x="471.27" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hd19e1b006e3f7c50 (1 samples, 0.12%)</title><rect x="28.2" y="293" width="1.4" height="15.0" fill="rgb(246,7,2)" rx="2" ry="2" />
<text x="31.22" y="303.5" ></text>
</g>
<g >
<title>std::sys_common::rwlock::RWLock::read::h43808505903cf481 (8 samples, 0.95%)</title><rect x="529.9" y="709" width="11.2" height="15.0" fill="rgb(212,62,6)" rx="2" ry="2" />
<text x="532.93" y="719.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (1 samples, 0.12%)</title><rect x="1159.2" y="757" width="1.4" height="15.0" fill="rgb(237,160,44)" rx="2" ry="2" />
<text x="1162.17" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hdcfc2f3b12354940 (1 samples, 0.12%)</title><rect x="256.7" y="629" width="1.4" height="15.0" fill="rgb(230,152,21)" rx="2" ry="2" />
<text x="259.65" y="639.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (1 samples, 0.12%)</title><rect x="793.4" y="613" width="1.4" height="15.0" fill="rgb(235,126,11)" rx="2" ry="2" />
<text x="796.40" y="623.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..IndexedParallelIterator$GT$::with_producer::h33594415df50c415 (3 samples, 0.36%)</title><rect x="52.0" y="693" width="4.2" height="15.0" fill="rgb(227,113,26)" rx="2" ry="2" />
<text x="55.04" y="703.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (3 samples, 0.36%)</title><rect x="508.9" y="645" width="4.2" height="15.0" fill="rgb(224,181,9)" rx="2" ry="2" />
<text x="511.91" y="655.5" ></text>
</g>
<g >
<title>std::io::impls::_$LT$impl$u20$std..io..Write$u20$for$u20$alloc..vec..Vec$LT$u8$GT$$GT$::write_all::h10a6238cd3a5773f (1 samples, 0.12%)</title><rect x="846.7" y="677" width="1.4" height="15.0" fill="rgb(227,37,51)" rx="2" ry="2" />
<text x="849.65" y="687.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (1 samples, 0.12%)</title><rect x="846.7" y="645" width="1.4" height="15.0" fill="rgb(205,132,27)" rx="2" ry="2" />
<text x="849.65" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::run::h5f2a1c5233b33c2e (1 samples, 0.12%)</title><rect x="15.6" y="821" width="1.4" height="15.0" fill="rgb(244,85,48)" rx="2" ry="2" />
<text x="18.61" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="274.9" y="613" width="2.8" height="15.0" fill="rgb(223,175,12)" rx="2" ry="2" />
<text x="277.87" y="623.5" ></text>
</g>
<g >
<title>rayon::iter::extend::collect::h3ca5cf21a6ef6fc7 (1 samples, 0.12%)</title><rect x="1164.8" y="885" width="1.4" height="15.0" fill="rgb(244,106,51)" rx="2" ry="2" />
<text x="1167.77" y="895.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="40.8" y="117" width="1.4" height="15.0" fill="rgb(215,107,14)" rx="2" ry="2" />
<text x="43.83" y="127.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::h156953fa3f339a3c (2 samples, 0.24%)</title><rect x="21.2" y="725" width="2.8" height="15.0" fill="rgb(253,71,18)" rx="2" ry="2" />
<text x="24.21" y="735.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="258.1" y="693" width="1.4" height="15.0" fill="rgb(248,6,17)" rx="2" ry="2" />
<text x="261.05" y="703.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (715 samples, 84.92%)</title><rect x="134.7" y="885" width="1002.0" height="15.0" fill="rgb(243,62,16)" rx="2" ry="2" />
<text x="137.73" y="895.5" >std::panicking::try::do_call::h631c6408dfccc6f5</text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="528.5" y="709" width="1.4" height="15.0" fill="rgb(212,128,16)" rx="2" ry="2" />
<text x="531.53" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (1 samples, 0.12%)</title><rect x="15.6" y="773" width="1.4" height="15.0" fill="rgb(239,228,28)" rx="2" ry="2" />
<text x="18.61" y="783.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (1 samples, 0.12%)</title><rect x="1164.8" y="405" width="1.4" height="15.0" fill="rgb(235,178,10)" rx="2" ry="2" />
<text x="1167.77" y="415.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (15 samples, 1.78%)</title><rect x="1136.7" y="933" width="21.1" height="15.0" fill="rgb(244,137,49)" rx="2" ry="2" />
<text x="1139.75" y="943.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_type_entry::h947d5f4aca4edd16 (11 samples, 1.31%)</title><rect x="373.0" y="661" width="15.4" height="15.0" fill="rgb(254,16,12)" rx="2" ry="2" />
<text x="375.97" y="671.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (3 samples, 0.36%)</title><rect x="706.5" y="709" width="4.2" height="15.0" fill="rgb(210,19,13)" rx="2" ry="2" />
<text x="709.51" y="719.5" ></text>
</g>
<g >
<title>__lock_text_start (1 samples, 0.12%)</title><rect x="1169.0" y="869" width="1.4" height="15.0" fill="rgb(250,143,5)" rx="2" ry="2" />
<text x="1171.98" y="879.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (2 samples, 0.24%)</title><rect x="1159.2" y="885" width="2.8" height="15.0" fill="rgb(222,31,39)" rx="2" ry="2" />
<text x="1162.17" y="895.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="504.7" y="613" width="2.8" height="15.0" fill="rgb(248,80,42)" rx="2" ry="2" />
<text x="507.70" y="623.5" ></text>
</g>
<g >
<title>clap::app::parser::Parser::remove_overrides::h167d99ec074d9c04 (1 samples, 0.12%)</title><rect x="134.7" y="757" width="1.4" height="15.0" fill="rgb(208,2,34)" rx="2" ry="2" />
<text x="137.73" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (3 samples, 0.36%)</title><rect x="508.9" y="485" width="4.2" height="15.0" fill="rgb(206,154,49)" rx="2" ry="2" />
<text x="511.91" y="495.5" ></text>
</g>
<g >
<title>main (715 samples, 84.92%)</title><rect x="134.7" y="965" width="1002.0" height="15.0" fill="rgb(240,3,22)" rx="2" ry="2" />
<text x="137.73" y="975.5" >main</text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (1 samples, 0.12%)</title><rect x="1157.8" y="869" width="1.4" height="15.0" fill="rgb(219,87,54)" rx="2" ry="2" />
<text x="1160.77" y="879.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::verify_section_end::h849484f7c47676fd (1 samples, 0.12%)</title><rect x="370.2" y="629" width="1.4" height="15.0" fill="rgb(207,182,38)" rx="2" ry="2" />
<text x="373.17" y="639.5" ></text>
</g>
<g >
<title>rayon::result::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$core..result..Result$LT$T$C$E$GT$$GT$$u20$for$u20$core..result..Result$LT$C$C$E$GT$$GT$::from_par_iter::h1e10d100eaa83031 (3 samples, 0.36%)</title><rect x="52.0" y="933" width="4.2" height="15.0" fill="rgb(229,83,23)" rx="2" ry="2" />
<text x="55.04" y="943.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (14 samples, 1.66%)</title><rect x="1136.7" y="901" width="19.7" height="15.0" fill="rgb(227,129,27)" rx="2" ry="2" />
<text x="1139.75" y="911.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (1 samples, 0.12%)</title><rect x="22.6" y="677" width="1.4" height="15.0" fill="rgb(230,40,10)" rx="2" ry="2" />
<text x="25.61" y="687.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.36%)</title><rect x="625.2" y="549" width="4.2" height="15.0" fill="rgb(237,193,41)" rx="2" ry="2" />
<text x="628.23" y="559.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::hf20c7381077e0728 (14 samples, 1.66%)</title><rect x="200.6" y="517" width="19.6" height="15.0" fill="rgb(240,109,20)" rx="2" ry="2" />
<text x="203.59" y="527.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.59%)</title><rect x="1098.9" y="645" width="7.0" height="15.0" fill="rgb(211,162,26)" rx="2" ry="2" />
<text x="1101.91" y="655.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (1 samples, 0.12%)</title><rect x="1166.2" y="949" width="1.4" height="15.0" fill="rgb(230,118,17)" rx="2" ry="2" />
<text x="1169.18" y="959.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.12%)</title><rect x="1157.8" y="805" width="1.4" height="15.0" fill="rgb(222,180,26)" rx="2" ry="2" />
<text x="1160.77" y="815.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.48%)</title><rect x="469.7" y="565" width="5.6" height="15.0" fill="rgb(225,114,8)" rx="2" ry="2" />
<text x="472.67" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h8437ca62300d7702 (3 samples, 0.36%)</title><rect x="508.9" y="517" width="4.2" height="15.0" fill="rgb(231,220,19)" rx="2" ry="2" />
<text x="511.91" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (3 samples, 0.36%)</title><rect x="549.5" y="741" width="4.3" height="15.0" fill="rgb(217,147,23)" rx="2" ry="2" />
<text x="552.55" y="751.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h9af231f1083d321e (5 samples, 0.59%)</title><rect x="416.4" y="645" width="7.0" height="15.0" fill="rgb(206,117,9)" rx="2" ry="2" />
<text x="419.41" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (4 samples, 0.48%)</title><rect x="848.1" y="645" width="5.6" height="15.0" fill="rgb(206,16,38)" rx="2" ry="2" />
<text x="851.05" y="655.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..TypeSection$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h72b0447685e7886c (38 samples, 4.51%)</title><rect x="800.4" y="741" width="53.3" height="15.0" fill="rgb(211,64,43)" rx="2" ry="2" />
<text x="803.40" y="751.5" >_$LT$..</text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::_$u7b$$u7b$closure$u7d$$u7d$::hce96408d8d84f81d (2 samples, 0.24%)</title><rect x="21.2" y="693" width="2.8" height="15.0" fill="rgb(231,111,52)" rx="2" ry="2" />
<text x="24.21" y="703.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::find::h075a43e05b676903 (1 samples, 0.12%)</title><rect x="1141.0" y="693" width="1.4" height="15.0" fill="rgb(238,96,49)" rx="2" ry="2" />
<text x="1143.95" y="703.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (715 samples, 84.92%)</title><rect x="134.7" y="933" width="1002.0" height="15.0" fill="rgb(249,101,38)" rx="2" ry="2" />
<text x="137.73" y="943.5" >std::panic::catch_unwind::hd5e0a26424bd7f34</text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (2 samples, 0.24%)</title><rect x="43.6" y="261" width="2.8" height="15.0" fill="rgb(216,71,31)" rx="2" ry="2" />
<text x="46.63" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (1 samples, 0.12%)</title><rect x="158.6" y="133" width="1.4" height="15.0" fill="rgb(225,160,38)" rx="2" ry="2" />
<text x="161.55" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="476.7" y="613" width="1.4" height="15.0" fill="rgb(235,125,42)" rx="2" ry="2" />
<text x="479.67" y="623.5" ></text>
</g>
<g >
<title>arena_get2 (1 samples, 0.12%)</title><rect x="131.9" y="805" width="1.4" height="15.0" fill="rgb(210,172,2)" rx="2" ry="2" />
<text x="134.92" y="815.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (2 samples, 0.24%)</title><rect x="745.7" y="677" width="2.9" height="15.0" fill="rgb(229,72,14)" rx="2" ry="2" />
<text x="748.75" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf1c5808e2ef06048 (2 samples, 0.24%)</title><rect x="235.6" y="629" width="2.8" height="15.0" fill="rgb(248,219,20)" rx="2" ry="2" />
<text x="238.63" y="639.5" ></text>
</g>
<g >
<title>alloc_perturb (1 samples, 0.12%)</title><rect x="602.8" y="565" width="1.4" height="15.0" fill="rgb(219,21,21)" rx="2" ry="2" />
<text x="605.80" y="575.5" ></text>
</g>
<g >
<title>__GI___mprotect (1 samples, 0.12%)</title><rect x="1157.8" y="821" width="1.4" height="15.0" fill="rgb(242,129,2)" rx="2" ry="2" />
<text x="1160.77" y="831.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (1 samples, 0.12%)</title><rect x="14.2" y="693" width="1.4" height="15.0" fill="rgb(216,34,27)" rx="2" ry="2" />
<text x="17.20" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h2b990f8b346c6149 (2 samples, 0.24%)</title><rect x="1131.1" y="693" width="2.8" height="15.0" fill="rgb(211,202,11)" rx="2" ry="2" />
<text x="1134.14" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::he4e1ca4afcd444e2 (5 samples, 0.59%)</title><rect x="401.0" y="581" width="7.0" height="15.0" fill="rgb(240,173,42)" rx="2" ry="2" />
<text x="404.00" y="591.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.83%)</title><rect x="1167.6" y="981" width="9.8" height="15.0" fill="rgb(215,20,29)" rx="2" ry="2" />
<text x="1170.58" y="991.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2 samples, 0.24%)</title><rect x="604.2" y="597" width="2.8" height="15.0" fill="rgb(215,153,33)" rx="2" ry="2" />
<text x="607.20" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="806.0" y="565" width="7.0" height="15.0" fill="rgb(219,224,14)" rx="2" ry="2" />
<text x="809.01" y="575.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (1 samples, 0.12%)</title><rect x="31.0" y="277" width="1.4" height="15.0" fill="rgb(253,185,53)" rx="2" ry="2" />
<text x="34.02" y="287.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (2 samples, 0.24%)</title><rect x="272.1" y="613" width="2.8" height="15.0" fill="rgb(246,60,36)" rx="2" ry="2" />
<text x="275.07" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h01793e171da5d8f3 (1 samples, 0.12%)</title><rect x="1164.8" y="277" width="1.4" height="15.0" fill="rgb(238,195,44)" rx="2" ry="2" />
<text x="1167.77" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (3 samples, 0.36%)</title><rect x="543.9" y="709" width="4.2" height="15.0" fill="rgb(207,26,44)" rx="2" ry="2" />
<text x="546.94" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (5 samples, 0.59%)</title><rect x="831.2" y="661" width="7.0" height="15.0" fill="rgb(211,63,6)" rx="2" ry="2" />
<text x="834.24" y="671.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (1 samples, 0.12%)</title><rect x="133.3" y="901" width="1.4" height="15.0" fill="rgb(217,177,12)" rx="2" ry="2" />
<text x="136.33" y="911.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h2b990f8b346c6149 (1 samples, 0.12%)</title><rect x="1122.7" y="693" width="1.4" height="15.0" fill="rgb(210,67,3)" rx="2" ry="2" />
<text x="1125.73" y="703.5" ></text>
</g>
<g >
<title>alloc::alloc::exchange_malloc::h4ed529a7aa347ab4 (1 samples, 0.12%)</title><rect x="258.1" y="709" width="1.4" height="15.0" fill="rgb(244,71,36)" rx="2" ry="2" />
<text x="261.05" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..Section$u20$as$u20$core..clone..Clone$GT$::clone::h7d3dc358f3a5d649 (54 samples, 6.41%)</title><rect x="144.5" y="565" width="75.7" height="15.0" fill="rgb(211,196,36)" rx="2" ry="2" />
<text x="147.54" y="575.5" >_$LT$par..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (1 samples, 0.12%)</title><rect x="793.4" y="677" width="1.4" height="15.0" fill="rgb(215,160,16)" rx="2" ry="2" />
<text x="796.40" y="687.5" ></text>
</g>
<g >
<title>_$LT$rand_chacha..chacha..ChaCha20Core$u20$as$u20$rand_core..block..BlockRngCore$GT$::generate::h43597ee5e7879ff4 (1 samples, 0.12%)</title><rect x="860.7" y="597" width="1.4" height="15.0" fill="rgb(231,53,50)" rx="2" ry="2" />
<text x="863.67" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h9c14b401b7d3e05a (4 samples, 0.48%)</title><rect x="570.6" y="677" width="5.6" height="15.0" fill="rgb(217,143,18)" rx="2" ry="2" />
<text x="573.57" y="687.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..convert..From$LT$$RF$str$GT$$GT$::from::h4e52b3bc9313b98c (6 samples, 0.71%)</title><rect x="399.6" y="693" width="8.4" height="15.0" fill="rgb(239,50,50)" rx="2" ry="2" />
<text x="402.60" y="703.5" ></text>
</g>
<g >
<title>ptmalloc_init (1 samples, 0.12%)</title><rect x="1180.2" y="821" width="1.4" height="15.0" fill="rgb(205,147,11)" rx="2" ry="2" />
<text x="1183.19" y="831.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (3 samples, 0.36%)</title><rect x="52.0" y="773" width="4.2" height="15.0" fill="rgb(226,17,12)" rx="2" ry="2" />
<text x="55.04" y="783.5" ></text>
</g>
<g >
<title>_dl_sysdep_start (2 samples, 0.24%)</title><rect x="1181.6" y="965" width="2.8" height="15.0" fill="rgb(207,184,12)" rx="2" ry="2" />
<text x="1184.59" y="975.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="888.7" y="613" width="1.4" height="15.0" fill="rgb(253,109,32)" rx="2" ry="2" />
<text x="891.69" y="623.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="949.0" y="741" width="1.4" height="15.0" fill="rgb(243,62,45)" rx="2" ry="2" />
<text x="951.95" y="751.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (2 samples, 0.24%)</title><rect x="429.0" y="645" width="2.8" height="15.0" fill="rgb(248,178,24)" rx="2" ry="2" />
<text x="432.03" y="655.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h202b36eeeb75d90d (1 samples, 0.12%)</title><rect x="259.5" y="677" width="1.4" height="15.0" fill="rgb(234,49,13)" rx="2" ry="2" />
<text x="262.45" y="687.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.12%)</title><rect x="237.0" y="469" width="1.4" height="15.0" fill="rgb(228,148,13)" rx="2" ry="2" />
<text x="240.03" y="479.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::min_by::hffc4597ac6e3e834 (1 samples, 0.12%)</title><rect x="47.8" y="309" width="1.4" height="15.0" fill="rgb(217,56,53)" rx="2" ry="2" />
<text x="50.84" y="319.5" ></text>
</g>
<g >
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..Fn$LT$A$GT$$u20$for$u20$$RF$F$GT$::call::hb7689bb0bbee0c67 (17 samples, 2.02%)</title><rect x="26.8" y="421" width="23.8" height="15.0" fill="rgb(217,67,35)" rx="2" ry="2" />
<text x="29.82" y="431.5" >c..</text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::hb07264f9926e5f58 (1 samples, 0.12%)</title><rect x="314.1" y="661" width="1.4" height="15.0" fill="rgb(244,104,38)" rx="2" ry="2" />
<text x="317.11" y="671.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="510.3" y="437" width="2.8" height="15.0" fill="rgb(210,177,30)" rx="2" ry="2" />
<text x="513.31" y="447.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="378.6" y="549" width="7.0" height="15.0" fill="rgb(215,48,15)" rx="2" ry="2" />
<text x="381.57" y="559.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (3 samples, 0.36%)</title><rect x="238.4" y="677" width="4.2" height="15.0" fill="rgb(227,227,29)" rx="2" ry="2" />
<text x="241.43" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h189eac580e34fea8 (1 samples, 0.12%)</title><rect x="1136.7" y="773" width="1.4" height="15.0" fill="rgb(205,227,13)" rx="2" ry="2" />
<text x="1139.75" y="783.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$u64$GT$::wrapping_add::heac1fa8adc9369e1 (1 samples, 0.12%)</title><rect x="478.1" y="517" width="1.4" height="15.0" fill="rgb(234,207,1)" rx="2" ry="2" />
<text x="481.08" y="527.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (3 samples, 0.36%)</title><rect x="543.9" y="789" width="4.2" height="15.0" fill="rgb(223,213,12)" rx="2" ry="2" />
<text x="546.94" y="799.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h2454dda234d30be1 (2 samples, 0.24%)</title><rect x="504.7" y="661" width="2.8" height="15.0" fill="rgb(243,208,42)" rx="2" ry="2" />
<text x="507.70" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="598.6" y="597" width="5.6" height="15.0" fill="rgb(252,39,43)" rx="2" ry="2" />
<text x="601.60" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$F$GT$$u20$as$u20$core..ops..function..FnOnce$LT$A$GT$$GT$::call_once::h338c10574a337ece (55 samples, 6.53%)</title><rect x="56.2" y="933" width="77.1" height="15.0" fill="rgb(226,149,5)" rx="2" ry="2" />
<text x="59.25" y="943.5" >_$LT$all..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h1acdd404ea4c2dea (12 samples, 1.43%)</title><rect x="160.0" y="485" width="16.8" height="15.0" fill="rgb(211,50,15)" rx="2" ry="2" />
<text x="162.95" y="495.5" ></text>
</g>
<g >
<title>__GI___sched_yield (8 samples, 0.95%)</title><rect x="119.3" y="661" width="11.2" height="15.0" fill="rgb(214,134,4)" rx="2" ry="2" />
<text x="122.31" y="671.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (1 samples, 0.12%)</title><rect x="479.5" y="549" width="1.4" height="15.0" fill="rgb(210,139,29)" rx="2" ry="2" />
<text x="482.48" y="559.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (2 samples, 0.24%)</title><rect x="1162.0" y="901" width="2.8" height="15.0" fill="rgb(252,184,28)" rx="2" ry="2" />
<text x="1164.97" y="911.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::details::start_pass::hd7fb3b93ee1da8db (1 samples, 0.12%)</title><rect x="18.4" y="805" width="1.4" height="15.0" fill="rgb(251,54,48)" rx="2" ry="2" />
<text x="21.41" y="815.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (7 samples, 0.83%)</title><rect x="755.6" y="613" width="9.8" height="15.0" fill="rgb(239,167,33)" rx="2" ry="2" />
<text x="758.56" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (2 samples, 0.24%)</title><rect x="703.7" y="645" width="2.8" height="15.0" fill="rgb(252,157,42)" rx="2" ry="2" />
<text x="706.71" y="655.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (2 samples, 0.24%)</title><rect x="1162.0" y="805" width="2.8" height="15.0" fill="rgb(210,69,6)" rx="2" ry="2" />
<text x="1164.97" y="815.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="255.2" y="709" width="1.5" height="15.0" fill="rgb(227,78,44)" rx="2" ry="2" />
<text x="258.25" y="719.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h0ed9317719148ddd (1 samples, 0.12%)</title><rect x="260.9" y="677" width="1.4" height="15.0" fill="rgb(253,9,39)" rx="2" ry="2" />
<text x="263.86" y="687.5" ></text>
</g>
<g >
<title>dl_main (2 samples, 0.24%)</title><rect x="1181.6" y="949" width="2.8" height="15.0" fill="rgb(224,133,43)" rx="2" ry="2" />
<text x="1184.59" y="959.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::complete::h5f2cefb0849b6678 (2 samples, 0.24%)</title><rect x="52.0" y="629" width="2.8" height="15.0" fill="rgb(222,151,39)" rx="2" ry="2" />
<text x="55.04" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h370d58ac748f9e1d (4 samples, 0.48%)</title><rect x="570.6" y="565" width="5.6" height="15.0" fill="rgb(226,52,4)" rx="2" ry="2" />
<text x="573.57" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 1.19%)</title><rect x="553.8" y="725" width="14.0" height="15.0" fill="rgb(213,167,36)" rx="2" ry="2" />
<text x="556.75" y="735.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::overflowing_add::he2871af9ad84e017 (1 samples, 0.12%)</title><rect x="730.3" y="549" width="1.4" height="15.0" fill="rgb(254,206,23)" rx="2" ry="2" />
<text x="733.33" y="559.5" ></text>
</g>
<g >
<title>sys_mmap (2 samples, 0.24%)</title><rect x="272.1" y="645" width="2.8" height="15.0" fill="rgb(246,57,5)" rx="2" ry="2" />
<text x="275.07" y="655.5" ></text>
</g>
<g >
<title>core::cmp::impls::_$LT$impl$u20$core..cmp..PartialOrd$u20$for$u20$usize$GT$::lt::h5a4a8b01db7bd177 (1 samples, 0.12%)</title><rect x="385.6" y="597" width="1.4" height="15.0" fill="rgb(231,173,31)" rx="2" ry="2" />
<text x="388.58" y="607.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (1 samples, 0.12%)</title><rect x="677.1" y="629" width="1.4" height="15.0" fill="rgb(238,183,9)" rx="2" ry="2" />
<text x="680.08" y="639.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="705.1" y="565" width="1.4" height="15.0" fill="rgb(251,110,42)" rx="2" ry="2" />
<text x="708.11" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h054e79e44149db91 (8 samples, 0.95%)</title><rect x="200.6" y="197" width="11.2" height="15.0" fill="rgb(246,194,54)" rx="2" ry="2" />
<text x="203.59" y="207.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="551.0" y="693" width="2.8" height="15.0" fill="rgb(232,217,16)" rx="2" ry="2" />
<text x="553.95" y="703.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (7 samples, 0.83%)</title><rect x="360.4" y="629" width="9.8" height="15.0" fill="rgb(233,77,6)" rx="2" ry="2" />
<text x="363.36" y="639.5" ></text>
</g>
<g >
<title>local_clock (1 samples, 0.12%)</title><rect x="272.1" y="501" width="1.4" height="15.0" fill="rgb(209,221,14)" rx="2" ry="2" />
<text x="275.07" y="511.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h281eff1744ee1172 (14 samples, 1.66%)</title><rect x="200.6" y="501" width="19.6" height="15.0" fill="rgb(225,14,27)" rx="2" ry="2" />
<text x="203.59" y="511.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$alloc..borrow..ToOwned$GT$::to_owned::h243a230274a8a4d9 (1 samples, 0.12%)</title><rect x="26.8" y="389" width="1.4" height="15.0" fill="rgb(254,69,19)" rx="2" ry="2" />
<text x="29.82" y="399.5" ></text>
</g>
<g >
<title>mprotect_fixup (1 samples, 0.12%)</title><rect x="1157.8" y="741" width="1.4" height="15.0" fill="rgb(230,32,36)" rx="2" ry="2" />
<text x="1160.77" y="751.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..TakeWhile$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h0c9fbae3ca41de07 (1 samples, 0.12%)</title><rect x="1164.8" y="565" width="1.4" height="15.0" fill="rgb(240,172,26)" rx="2" ry="2" />
<text x="1167.77" y="575.5" ></text>
</g>
<g >
<title>wasmparser::readers::section_reader::SectionReader::ensure_end::h61e801dbce68197f (1 samples, 0.12%)</title><rect x="312.7" y="661" width="1.4" height="15.0" fill="rgb(228,60,37)" rx="2" ry="2" />
<text x="315.71" y="671.5" ></text>
</g>
<g >
<title>rand::seq::index::sample_floyd::h553a70e5dcf26b28 (1 samples, 0.12%)</title><rect x="1122.7" y="741" width="1.4" height="15.0" fill="rgb(215,5,51)" rx="2" ry="2" />
<text x="1125.73" y="751.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..dfg..DataFlowGraph$u20$as$u20$core..ops..index..Index$LT$cranelift_codegen..ir..entities..Inst$GT$$GT$::index::h0016acd16b88a0ac (1 samples, 0.12%)</title><rect x="35.2" y="293" width="1.4" height="15.0" fill="rgb(253,114,24)" rx="2" ry="2" />
<text x="38.23" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (2 samples, 0.24%)</title><rect x="325.3" y="645" width="2.8" height="15.0" fill="rgb(205,124,10)" rx="2" ry="2" />
<text x="328.32" y="655.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::insert::h73e8faec002d9e9e (10 samples, 1.19%)</title><rect x="429.0" y="677" width="14.0" height="15.0" fill="rgb(223,88,14)" rx="2" ry="2" />
<text x="432.03" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0e163ac7abf9add5 (2 samples, 0.24%)</title><rect x="309.9" y="629" width="2.8" height="15.0" fill="rgb(238,32,51)" rx="2" ry="2" />
<text x="312.90" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5333cea73f0fa9cd (2 samples, 0.24%)</title><rect x="274.9" y="677" width="2.8" height="15.0" fill="rgb(218,12,46)" rx="2" ry="2" />
<text x="277.87" y="687.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (18 samples, 2.14%)</title><rect x="26.8" y="981" width="25.2" height="15.0" fill="rgb(208,165,38)" rx="2" ry="2" />
<text x="29.82" y="991.5" >w..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5 samples, 0.59%)</title><rect x="696.7" y="597" width="7.0" height="15.0" fill="rgb(212,212,46)" rx="2" ry="2" />
<text x="699.70" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (4 samples, 0.48%)</title><rect x="714.9" y="565" width="5.6" height="15.0" fill="rgb(253,7,21)" rx="2" ry="2" />
<text x="717.92" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (2 samples, 0.24%)</title><rect x="678.5" y="581" width="2.8" height="15.0" fill="rgb(226,93,4)" rx="2" ry="2" />
<text x="681.48" y="591.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_wrapped::h474ff170e8a7fe75 (1 samples, 0.12%)</title><rect x="527.1" y="693" width="1.4" height="15.0" fill="rgb(252,37,46)" rx="2" ry="2" />
<text x="530.13" y="703.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::map_or::hca0b74977f22f7ec (1 samples, 0.12%)</title><rect x="47.8" y="181" width="1.4" height="15.0" fill="rgb(246,75,5)" rx="2" ry="2" />
<text x="50.84" y="191.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::find_map::ha014d5013b983f21 (45 samples, 5.34%)</title><rect x="56.2" y="613" width="63.1" height="15.0" fill="rgb(252,185,43)" rx="2" ry="2" />
<text x="59.25" y="623.5" >core::..</text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::min_by_key::h46b83e94ca225a6b (4 samples, 0.48%)</title><rect x="19.8" y="837" width="5.6" height="15.0" fill="rgb(240,181,24)" rx="2" ry="2" />
<text x="22.81" y="847.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.71%)</title><rect x="757.0" y="549" width="8.4" height="15.0" fill="rgb(248,124,29)" rx="2" ry="2" />
<text x="759.96" y="559.5" ></text>
</g>
<g >
<title>std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::h308ed0f42a76752e (55 samples, 6.53%)</title><rect x="56.2" y="885" width="77.1" height="15.0" fill="rgb(240,172,11)" rx="2" ry="2" />
<text x="59.25" y="895.5" >std::thr..</text>
</g>
<g >
<title>change_protection (1 samples, 0.12%)</title><rect x="1157.8" y="725" width="1.4" height="15.0" fill="rgb(222,181,2)" rx="2" ry="2" />
<text x="1160.77" y="735.5" ></text>
</g>
<g >
<title>std::sys_common::rwlock::RWLock::read::h43808505903cf481 (1 samples, 0.12%)</title><rect x="133.3" y="789" width="1.4" height="15.0" fill="rgb(223,143,43)" rx="2" ry="2" />
<text x="136.33" y="799.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.59%)</title><rect x="120.7" y="629" width="7.0" height="15.0" fill="rgb(247,55,28)" rx="2" ry="2" />
<text x="123.71" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (1 samples, 0.12%)</title><rect x="237.0" y="613" width="1.4" height="15.0" fill="rgb(206,223,19)" rx="2" ry="2" />
<text x="240.03" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3 samples, 0.36%)</title><rect x="734.5" y="597" width="4.2" height="15.0" fill="rgb(206,150,1)" rx="2" ry="2" />
<text x="737.54" y="607.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (1 samples, 0.12%)</title><rect x="1145.2" y="677" width="1.4" height="15.0" fill="rgb(231,225,19)" rx="2" ry="2" />
<text x="1148.15" y="687.5" ></text>
</g>
<g >
<title>rand::seq::index::sample_floyd::h553a70e5dcf26b28 (2 samples, 0.24%)</title><rect x="1131.1" y="741" width="2.8" height="15.0" fill="rgb(220,63,17)" rx="2" ry="2" />
<text x="1134.14" y="751.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::pin::_$u7b$$u7b$closure$u7d$$u7d$::hf43600016dc52a98 (32 samples, 3.80%)</title><rect x="73.1" y="389" width="44.8" height="15.0" fill="rgb(213,171,53)" rx="2" ry="2" />
<text x="76.06" y="399.5" >cros..</text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::min_by_key::key::_$u7b$$u7b$closure$u7d$$u7d$::h4071782eccf48384 (1 samples, 0.12%)</title><rect x="47.8" y="229" width="1.4" height="15.0" fill="rgb(241,105,15)" rx="2" ry="2" />
<text x="50.84" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="827.0" y="533" width="2.8" height="15.0" fill="rgb(230,224,35)" rx="2" ry="2" />
<text x="830.03" y="543.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (1 samples, 0.12%)</title><rect x="527.1" y="709" width="1.4" height="15.0" fill="rgb(209,28,19)" rx="2" ry="2" />
<text x="530.13" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="497.7" y="709" width="2.8" height="15.0" fill="rgb(253,54,23)" rx="2" ry="2" />
<text x="500.70" y="719.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a08147292e7e62e (1 samples, 0.12%)</title><rect x="28.2" y="277" width="1.4" height="15.0" fill="rgb(224,74,24)" rx="2" ry="2" />
<text x="31.22" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hb70b6ffc93b73a95 (5 samples, 0.59%)</title><rect x="193.6" y="453" width="7.0" height="15.0" fill="rgb(242,19,26)" rx="2" ry="2" />
<text x="196.59" y="463.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (6 samples, 0.71%)</title><rect x="721.9" y="565" width="8.4" height="15.0" fill="rgb(228,172,47)" rx="2" ry="2" />
<text x="724.92" y="575.5" ></text>
</g>
<g >
<title>vm_munmap (2 samples, 0.24%)</title><rect x="239.8" y="549" width="2.8" height="15.0" fill="rgb(211,177,51)" rx="2" ry="2" />
<text x="242.83" y="559.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.83%)</title><rect x="120.7" y="645" width="9.8" height="15.0" fill="rgb(215,201,21)" rx="2" ry="2" />
<text x="123.71" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h3c219d273facdac8 (5 samples, 0.59%)</title><rect x="378.6" y="597" width="7.0" height="15.0" fill="rgb(241,44,7)" rx="2" ry="2" />
<text x="381.57" y="607.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h7e767ca1819c39fa (1 samples, 0.12%)</title><rect x="148.7" y="229" width="1.4" height="15.0" fill="rgb(226,162,23)" rx="2" ry="2" />
<text x="151.74" y="239.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcae88ece32ddb0d4 (6 samples, 0.71%)</title><rect x="244.0" y="757" width="8.4" height="15.0" fill="rgb(249,79,40)" rx="2" ry="2" />
<text x="247.04" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (1 samples, 0.12%)</title><rect x="33.8" y="341" width="1.4" height="15.0" fill="rgb(213,130,0)" rx="2" ry="2" />
<text x="36.82" y="351.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::he8e4968d40742750 (20 samples, 2.38%)</title><rect x="1105.9" y="805" width="28.0" height="15.0" fill="rgb(219,187,11)" rx="2" ry="2" />
<text x="1108.91" y="815.5" >r..</text>
</g>
<g >
<title>std::sys_common::thread::start_thread::h761ac6d57710d65d (55 samples, 6.53%)</title><rect x="56.2" y="949" width="77.1" height="15.0" fill="rgb(252,200,46)" rx="2" ry="2" />
<text x="59.25" y="959.5" >std::sys..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h8b5e1dd1500e28cf (22 samples, 2.61%)</title><rect x="979.8" y="725" width="30.8" height="15.0" fill="rgb(219,76,53)" rx="2" ry="2" />
<text x="982.79" y="735.5" >al..</text>
</g>
<g >
<title>_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::index::h236c44b67b1b81b4 (1 samples, 0.12%)</title><rect x="15.6" y="709" width="1.4" height="15.0" fill="rgb(223,208,2)" rx="2" ry="2" />
<text x="18.61" y="719.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="765.4" y="597" width="5.6" height="15.0" fill="rgb(227,132,10)" rx="2" ry="2" />
<text x="768.37" y="607.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (2 samples, 0.24%)</title><rect x="1162.0" y="853" width="2.8" height="15.0" fill="rgb(230,95,42)" rx="2" ry="2" />
<text x="1164.97" y="863.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4dff7b93bd7502e8 (1 samples, 0.12%)</title><rect x="260.9" y="693" width="1.4" height="15.0" fill="rgb(246,184,38)" rx="2" ry="2" />
<text x="263.86" y="703.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (2 samples, 0.24%)</title><rect x="367.4" y="613" width="2.8" height="15.0" fill="rgb(241,113,35)" rx="2" ry="2" />
<text x="370.36" y="623.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="1142.4" y="693" width="1.4" height="15.0" fill="rgb(224,209,48)" rx="2" ry="2" />
<text x="1145.35" y="703.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (7 samples, 0.83%)</title><rect x="721.9" y="677" width="9.8" height="15.0" fill="rgb(238,199,16)" rx="2" ry="2" />
<text x="724.92" y="687.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (7 samples, 0.83%)</title><rect x="1124.1" y="773" width="9.8" height="15.0" fill="rgb(217,22,24)" rx="2" ry="2" />
<text x="1127.13" y="783.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::min_by::hffc4597ac6e3e834 (4 samples, 0.48%)</title><rect x="19.8" y="821" width="5.6" height="15.0" fill="rgb(254,83,6)" rx="2" ry="2" />
<text x="22.81" y="831.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb206b25879ccd1da (3 samples, 0.36%)</title><rect x="883.1" y="725" width="4.2" height="15.0" fill="rgb(237,48,43)" rx="2" ry="2" />
<text x="886.09" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..sync..Arc$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h16f6848e918ed8b5 (3 samples, 0.36%)</title><rect x="234.2" y="677" width="4.2" height="15.0" fill="rgb(216,187,50)" rx="2" ry="2" />
<text x="237.23" y="687.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::drop_in_place::h80b27457c072c199 (3 samples, 0.36%)</title><rect x="508.9" y="613" width="4.2" height="15.0" fill="rgb(227,215,47)" rx="2" ry="2" />
<text x="511.91" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h62c0921a8377f059 (1 samples, 0.12%)</title><rect x="776.6" y="693" width="1.4" height="15.0" fill="rgb(226,157,18)" rx="2" ry="2" />
<text x="779.58" y="703.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::try_unwrap::h9d9cacc04e6e5155 (1 samples, 0.12%)</title><rect x="279.1" y="741" width="1.4" height="15.0" fill="rgb(231,4,53)" rx="2" ry="2" />
<text x="282.07" y="751.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.12%)</title><rect x="863.5" y="693" width="1.4" height="15.0" fill="rgb(244,98,43)" rx="2" ry="2" />
<text x="866.47" y="703.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4a27f979394a7de6 (5 samples, 0.59%)</title><rect x="576.2" y="645" width="7.0" height="15.0" fill="rgb(230,67,49)" rx="2" ry="2" />
<text x="579.18" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hd1f0916b3c8187ed (1 samples, 0.12%)</title><rect x="237.0" y="597" width="1.4" height="15.0" fill="rgb(245,62,13)" rx="2" ry="2" />
<text x="240.03" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.71%)</title><rect x="211.8" y="405" width="8.4" height="15.0" fill="rgb(208,87,46)" rx="2" ry="2" />
<text x="214.81" y="415.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="965.8" y="757" width="2.8" height="15.0" fill="rgb(223,227,27)" rx="2" ry="2" />
<text x="968.77" y="767.5" ></text>
</g>
<g >
<title>_int_realloc (13 samples, 1.54%)</title><rect x="991.0" y="613" width="18.2" height="15.0" fill="rgb(226,206,46)" rx="2" ry="2" />
<text x="994.00" y="623.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..ExportSection$u20$as$u20$core..clone..Clone$GT$::clone::haaf9e4cfaccaa78e (12 samples, 1.43%)</title><rect x="176.8" y="549" width="16.8" height="15.0" fill="rgb(231,106,13)" rx="2" ry="2" />
<text x="179.77" y="559.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::Producer::fold_with::h97a9f6e1edeed240 (1 samples, 0.12%)</title><rect x="1164.8" y="661" width="1.4" height="15.0" fill="rgb(226,210,23)" rx="2" ry="2" />
<text x="1167.77" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (1 samples, 0.12%)</title><rect x="14.2" y="677" width="1.4" height="15.0" fill="rgb(246,213,35)" rx="2" ry="2" />
<text x="17.20" y="687.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb66fc00754c2624b (1 samples, 0.12%)</title><rect x="1142.4" y="773" width="1.4" height="15.0" fill="rgb(253,110,36)" rx="2" ry="2" />
<text x="1145.35" y="783.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (2 samples, 0.24%)</title><rect x="272.1" y="517" width="2.8" height="15.0" fill="rgb(242,194,4)" rx="2" ry="2" />
<text x="275.07" y="527.5" ></text>
</g>
<g >
<title>std::panicking::try::h477101c584708521 (54 samples, 6.41%)</title><rect x="56.2" y="853" width="75.7" height="15.0" fill="rgb(254,145,26)" rx="2" ry="2" />
<text x="59.25" y="863.5" >std::pan..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h932bd9b48f3b8408 (6 samples, 0.71%)</title><rect x="244.0" y="693" width="8.4" height="15.0" fill="rgb(221,146,44)" rx="2" ry="2" />
<text x="247.04" y="703.5" ></text>
</g>
<g >
<title>rayon::iter::collect::_$LT$impl$u20$rayon..iter..ParallelExtend$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::par_extend::h1ed47f20ca241bcf (1 samples, 0.12%)</title><rect x="1164.8" y="901" width="1.4" height="15.0" fill="rgb(242,97,21)" rx="2" ry="2" />
<text x="1167.77" y="911.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (1 samples, 0.12%)</title><rect x="527.1" y="725" width="1.4" height="15.0" fill="rgb(226,212,42)" rx="2" ry="2" />
<text x="530.13" y="735.5" ></text>
</g>
<g >
<title>sys_munmap (2 samples, 0.24%)</title><rect x="239.8" y="565" width="2.8" height="15.0" fill="rgb(223,110,43)" rx="2" ry="2" />
<text x="242.83" y="575.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h32f3acc386231c35 (4 samples, 0.48%)</title><rect x="570.6" y="709" width="5.6" height="15.0" fill="rgb(240,204,41)" rx="2" ry="2" />
<text x="573.57" y="719.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::build::h43b3778966365e6f (6 samples, 0.71%)</title><rect x="878.9" y="773" width="8.4" height="15.0" fill="rgb(212,217,1)" rx="2" ry="2" />
<text x="881.88" y="783.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h10d57826f4d4f877 (1 samples, 0.12%)</title><rect x="54.8" y="613" width="1.4" height="15.0" fill="rgb(244,194,15)" rx="2" ry="2" />
<text x="57.85" y="623.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="947.6" y="757" width="1.4" height="15.0" fill="rgb(207,176,34)" rx="2" ry="2" />
<text x="950.55" y="767.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h0be6351f64f96a69 (4 samples, 0.48%)</title><rect x="178.2" y="245" width="5.6" height="15.0" fill="rgb(210,29,17)" rx="2" ry="2" />
<text x="181.17" y="255.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h010a5395a2aefdc6 (4 samples, 0.48%)</title><rect x="1073.7" y="757" width="5.6" height="15.0" fill="rgb(224,152,47)" rx="2" ry="2" />
<text x="1076.68" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h092b7a3050d267f9 (2 samples, 0.24%)</title><rect x="494.9" y="645" width="2.8" height="15.0" fill="rgb(210,8,40)" rx="2" ry="2" />
<text x="497.89" y="655.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::hfe70ed3f423a623e (18 samples, 2.14%)</title><rect x="26.8" y="933" width="25.2" height="15.0" fill="rgb(229,191,9)" rx="2" ry="2" />
<text x="29.82" y="943.5" >r..</text>
</g>
<g >
<title>core::ptr::write::h776fe0e56bcde3ed (4 samples, 0.48%)</title><rect x="138.9" y="549" width="5.6" height="15.0" fill="rgb(235,108,21)" rx="2" ry="2" />
<text x="141.93" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::ha270ebd7af33b1d5 (2 samples, 0.24%)</title><rect x="490.7" y="629" width="2.8" height="15.0" fill="rgb(218,105,7)" rx="2" ry="2" />
<text x="493.69" y="639.5" ></text>
</g>
<g >
<title>core::hash::Hasher::write_u8::hdb3aebea3eb26940 (1 samples, 0.12%)</title><rect x="479.5" y="565" width="1.4" height="15.0" fill="rgb(227,104,14)" rx="2" ry="2" />
<text x="482.48" y="575.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::find::he325be86e5d63d6c (1 samples, 0.12%)</title><rect x="480.9" y="597" width="1.4" height="15.0" fill="rgb(209,132,17)" rx="2" ry="2" />
<text x="483.88" y="607.5" ></text>
</g>
<g >
<title>malloc_consolidate (1 samples, 0.12%)</title><rect x="276.3" y="581" width="1.4" height="15.0" fill="rgb(238,8,8)" rx="2" ry="2" />
<text x="279.27" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1c80f9d30d2271e9 (1 samples, 0.12%)</title><rect x="53.4" y="581" width="1.4" height="15.0" fill="rgb(218,204,7)" rx="2" ry="2" />
<text x="56.44" y="591.5" ></text>
</g>
<g >
<title>__rust_alloc (1 samples, 0.12%)</title><rect x="427.6" y="597" width="1.4" height="15.0" fill="rgb(230,93,26)" rx="2" ry="2" />
<text x="430.62" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb35dbfa927a2ec4a (1 samples, 0.12%)</title><rect x="252.4" y="773" width="1.4" height="15.0" fill="rgb(211,225,21)" rx="2" ry="2" />
<text x="255.45" y="783.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..Uint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hc8a4e956ff4631c9 (7 samples, 0.83%)</title><rect x="598.6" y="757" width="9.8" height="15.0" fill="rgb(229,44,42)" rx="2" ry="2" />
<text x="601.60" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h927f5222ad4383be (2 samples, 0.24%)</title><rect x="1075.1" y="693" width="2.8" height="15.0" fill="rgb(245,0,45)" rx="2" ry="2" />
<text x="1078.08" y="703.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (2 samples, 0.24%)</title><rect x="239.8" y="453" width="2.8" height="15.0" fill="rgb(236,11,40)" rx="2" ry="2" />
<text x="242.83" y="463.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="284.7" y="581" width="5.6" height="15.0" fill="rgb(225,158,26)" rx="2" ry="2" />
<text x="287.68" y="591.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::hc3f024e37c72af79 (1 samples, 0.12%)</title><rect x="260.9" y="501" width="1.4" height="15.0" fill="rgb(207,103,13)" rx="2" ry="2" />
<text x="263.86" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="235.6" y="581" width="1.4" height="15.0" fill="rgb(251,41,30)" rx="2" ry="2" />
<text x="238.63" y="591.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (1 samples, 0.12%)</title><rect x="429.0" y="597" width="1.4" height="15.0" fill="rgb(220,217,49)" rx="2" ry="2" />
<text x="432.03" y="607.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (4 samples, 0.48%)</title><rect x="714.9" y="549" width="5.6" height="15.0" fill="rgb(205,20,19)" rx="2" ry="2" />
<text x="717.92" y="559.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..Section$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h99e337bc9a43ca35 (175 samples, 20.78%)</title><rect x="608.4" y="757" width="245.3" height="15.0" fill="rgb(229,27,6)" rx="2" ry="2" />
<text x="611.41" y="767.5" >_$LT$parity_wasm..elements..sect..</text>
</g>
<g >
<title>__sigprocmask (3 samples, 0.36%)</title><rect x="543.9" y="677" width="4.2" height="15.0" fill="rgb(252,206,46)" rx="2" ry="2" />
<text x="546.94" y="687.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::he20f360286dafeda (3 samples, 0.36%)</title><rect x="150.1" y="181" width="4.2" height="15.0" fill="rgb(222,145,51)" rx="2" ry="2" />
<text x="153.14" y="191.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (4 samples, 0.48%)</title><rect x="570.6" y="517" width="5.6" height="15.0" fill="rgb(208,226,4)" rx="2" ry="2" />
<text x="573.57" y="527.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb992b4d373b2aae2 (7 samples, 0.83%)</title><rect x="508.9" y="677" width="9.8" height="15.0" fill="rgb(242,3,21)" rx="2" ry="2" />
<text x="511.91" y="687.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hfccf8a1e9c2168fb (2 samples, 0.24%)</title><rect x="685.5" y="677" width="2.8" height="15.0" fill="rgb(251,210,51)" rx="2" ry="2" />
<text x="688.49" y="687.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..FunctionSection$u20$as$u20$core..clone..Clone$GT$::clone::h859caf6bad4b26ed (5 samples, 0.59%)</title><rect x="193.6" y="549" width="7.0" height="15.0" fill="rgb(220,218,3)" rx="2" ry="2" />
<text x="196.59" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::encode::h0316993727d275a3 (1 samples, 0.12%)</title><rect x="32.4" y="293" width="1.4" height="15.0" fill="rgb(233,219,20)" rx="2" ry="2" />
<text x="35.42" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..collect..Extend$LT$T$GT$$GT$::extend::hfa93bc4107cefc98 (6 samples, 0.71%)</title><rect x="939.1" y="757" width="8.5" height="15.0" fill="rgb(216,149,34)" rx="2" ry="2" />
<text x="942.14" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5 samples, 0.59%)</title><rect x="817.2" y="581" width="7.0" height="15.0" fill="rgb(220,162,53)" rx="2" ry="2" />
<text x="820.22" y="591.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::heb3b0915163c57ea (1 samples, 0.12%)</title><rect x="1166.2" y="709" width="1.4" height="15.0" fill="rgb(238,217,25)" rx="2" ry="2" />
<text x="1169.18" y="719.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h81fdc17dfe3ce6d5 (1 samples, 0.12%)</title><rect x="252.4" y="725" width="1.4" height="15.0" fill="rgb(214,87,44)" rx="2" ry="2" />
<text x="255.45" y="735.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::he07bb5fd1cc174c0 (1 samples, 0.12%)</title><rect x="38.0" y="197" width="1.4" height="15.0" fill="rgb(222,188,12)" rx="2" ry="2" />
<text x="41.03" y="207.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (8 samples, 0.95%)</title><rect x="220.2" y="677" width="11.2" height="15.0" fill="rgb(220,53,6)" rx="2" ry="2" />
<text x="223.21" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h4273e98f525bd593 (2 samples, 0.24%)</title><rect x="147.3" y="277" width="2.8" height="15.0" fill="rgb(233,137,6)" rx="2" ry="2" />
<text x="150.34" y="287.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::hca510a9ecba01af0 (2 samples, 0.24%)</title><rect x="151.5" y="101" width="2.8" height="15.0" fill="rgb(214,190,39)" rx="2" ry="2" />
<text x="154.54" y="111.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (1 samples, 0.12%)</title><rect x="1160.6" y="837" width="1.4" height="15.0" fill="rgb(217,122,50)" rx="2" ry="2" />
<text x="1163.57" y="847.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="178.2" y="181" width="5.6" height="15.0" fill="rgb(205,66,54)" rx="2" ry="2" />
<text x="181.17" y="191.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (1 samples, 0.12%)</title><rect x="342.1" y="629" width="1.4" height="15.0" fill="rgb(230,106,8)" rx="2" ry="2" />
<text x="345.14" y="639.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::reduce::h2373a34cb1ad605e (18 samples, 2.14%)</title><rect x="26.8" y="853" width="25.2" height="15.0" fill="rgb(211,130,50)" rx="2" ry="2" />
<text x="29.82" y="863.5" >r..</text>
</g>
<g >
<title>rayon::iter::ParallelIterator::reduce::h2373a34cb1ad605e (3 samples, 0.36%)</title><rect x="52.0" y="837" width="4.2" height="15.0" fill="rgb(218,114,20)" rx="2" ry="2" />
<text x="55.04" y="847.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h7776a431453c4a6c (1 samples, 0.12%)</title><rect x="803.2" y="709" width="1.4" height="15.0" fill="rgb(205,150,48)" rx="2" ry="2" />
<text x="806.21" y="719.5" ></text>
</g>
<g >
<title>std::sys_common::condvar::Condvar::wait::h59abc023900f891d (1 samples, 0.12%)</title><rect x="130.5" y="629" width="1.4" height="15.0" fill="rgb(231,19,13)" rx="2" ry="2" />
<text x="133.52" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcfc5aa949b97ab55 (1 samples, 0.12%)</title><rect x="259.5" y="645" width="1.4" height="15.0" fill="rgb(248,199,23)" rx="2" ry="2" />
<text x="262.45" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha322e43667ac3903 (6 samples, 0.71%)</title><rect x="939.1" y="677" width="8.5" height="15.0" fill="rgb(243,225,17)" rx="2" ry="2" />
<text x="942.14" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="513.1" y="645" width="5.6" height="15.0" fill="rgb(246,145,39)" rx="2" ry="2" />
<text x="516.11" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h5c53d79ed6d713ed (1 samples, 0.12%)</title><rect x="1156.4" y="757" width="1.4" height="15.0" fill="rgb(225,200,10)" rx="2" ry="2" />
<text x="1159.37" y="767.5" ></text>
</g>
<g >
<title>core::iter::adapters::filter_fold::_$u7b$$u7b$closure$u7d$$u7d$::hf06be857f33f557d (2 samples, 0.24%)</title><rect x="21.2" y="709" width="2.8" height="15.0" fill="rgb(247,54,18)" rx="2" ry="2" />
<text x="24.21" y="719.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (5 samples, 0.59%)</title><rect x="696.7" y="661" width="7.0" height="15.0" fill="rgb(228,87,37)" rx="2" ry="2" />
<text x="699.70" y="671.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::h610cebac6c3f3993 (1 samples, 0.12%)</title><rect x="260.9" y="517" width="1.4" height="15.0" fill="rgb(244,126,5)" rx="2" ry="2" />
<text x="263.86" y="527.5" ></text>
</g>
<g >
<title>core::cmp::Ord::max::h96776237ba61ccfe (1 samples, 0.12%)</title><rect x="702.3" y="533" width="1.4" height="15.0" fill="rgb(246,35,45)" rx="2" ry="2" />
<text x="705.30" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (2 samples, 0.24%)</title><rect x="1159.2" y="869" width="2.8" height="15.0" fill="rgb(210,166,14)" rx="2" ry="2" />
<text x="1162.17" y="879.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (8 samples, 0.95%)</title><rect x="529.9" y="725" width="11.2" height="15.0" fill="rgb(251,171,28)" rx="2" ry="2" />
<text x="532.93" y="735.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (2 samples, 0.24%)</title><rect x="263.7" y="629" width="2.8" height="15.0" fill="rgb(215,28,46)" rx="2" ry="2" />
<text x="266.66" y="639.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="957.4" y="613" width="2.8" height="15.0" fill="rgb(252,120,29)" rx="2" ry="2" />
<text x="960.36" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h4550351a658c4a7c (1 samples, 0.12%)</title><rect x="684.1" y="661" width="1.4" height="15.0" fill="rgb(240,207,13)" rx="2" ry="2" />
<text x="687.09" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::system_v_prologue_epilogue::hace716b8c348dcd2 (1 samples, 0.12%)</title><rect x="1160.6" y="805" width="1.4" height="15.0" fill="rgb(251,58,11)" rx="2" ry="2" />
<text x="1163.57" y="815.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="1111.5" y="645" width="1.4" height="15.0" fill="rgb(224,71,47)" rx="2" ry="2" />
<text x="1114.52" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (5 samples, 0.59%)</title><rect x="696.7" y="613" width="7.0" height="15.0" fill="rgb(216,193,3)" rx="2" ry="2" />
<text x="699.70" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h550acff94d0692e4 (1 samples, 0.12%)</title><rect x="845.2" y="677" width="1.5" height="15.0" fill="rgb(215,144,23)" rx="2" ry="2" />
<text x="848.25" y="687.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (1 samples, 0.12%)</title><rect x="29.6" y="293" width="1.4" height="15.0" fill="rgb(246,167,37)" rx="2" ry="2" />
<text x="32.62" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="835.4" y="517" width="1.4" height="15.0" fill="rgb(233,116,12)" rx="2" ry="2" />
<text x="838.44" y="527.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::he7cbbb420ac7c346 (2 samples, 0.24%)</title><rect x="21.2" y="757" width="2.8" height="15.0" fill="rgb(205,200,44)" rx="2" ry="2" />
<text x="24.21" y="767.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (6 samples, 0.71%)</title><rect x="783.6" y="581" width="8.4" height="15.0" fill="rgb(214,218,27)" rx="2" ry="2" />
<text x="786.59" y="591.5" ></text>
</g>
<g >
<title>elf_dynamic_do_Rela (1 samples, 0.12%)</title><rect x="1183.0" y="917" width="1.4" height="15.0" fill="rgb(253,43,12)" rx="2" ry="2" />
<text x="1185.99" y="927.5" ></text>
</g>
<g >
<title>handle_mm_fault (1 samples, 0.12%)</title><rect x="864.9" y="693" width="1.4" height="15.0" fill="rgb(242,202,36)" rx="2" ry="2" />
<text x="867.87" y="703.5" ></text>
</g>
<g >
<title>rayon::iter::collect::_$LT$impl$u20$rayon..iter..ParallelExtend$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::par_extend::h1ed47f20ca241bcf (3 samples, 0.36%)</title><rect x="52.0" y="869" width="4.2" height="15.0" fill="rgb(229,167,39)" rx="2" ry="2" />
<text x="55.04" y="879.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (3 samples, 0.36%)</title><rect x="150.1" y="165" width="4.2" height="15.0" fill="rgb(206,48,39)" rx="2" ry="2" />
<text x="153.14" y="175.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="309.9" y="581" width="2.8" height="15.0" fill="rgb(254,18,39)" rx="2" ry="2" />
<text x="312.90" y="591.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::h9e9f7213fb2e91d0 (1 samples, 0.12%)</title><rect x="260.9" y="549" width="1.4" height="15.0" fill="rgb(212,198,46)" rx="2" ry="2" />
<text x="263.86" y="559.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::finish::h0b8107a032d61909 (1 samples, 0.12%)</title><rect x="430.4" y="629" width="1.4" height="15.0" fill="rgb(207,144,32)" rx="2" ry="2" />
<text x="433.43" y="639.5" ></text>
</g>
<g >
<title>schedule (1 samples, 0.12%)</title><rect x="126.3" y="597" width="1.4" height="15.0" fill="rgb(221,213,7)" rx="2" ry="2" />
<text x="129.32" y="607.5" ></text>
</g>
<g >
<title>[libz3.so.4] (1 samples, 0.12%)</title><rect x="584.6" y="773" width="1.4" height="15.0" fill="rgb(219,23,34)" rx="2" ry="2" />
<text x="587.58" y="783.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (1 samples, 0.12%)</title><rect x="11.4" y="789" width="1.4" height="15.0" fill="rgb(239,119,14)" rx="2" ry="2" />
<text x="14.40" y="799.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hd8cf0215d75e40e5 (1 samples, 0.12%)</title><rect x="853.7" y="757" width="1.4" height="15.0" fill="rgb(252,0,9)" rx="2" ry="2" />
<text x="856.66" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb0649733a3784ed7 (2 samples, 0.24%)</title><rect x="490.7" y="645" width="2.8" height="15.0" fill="rgb(239,199,12)" rx="2" ry="2" />
<text x="493.69" y="655.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h62a0d605ab03c932 (66 samples, 7.84%)</title><rect x="138.9" y="773" width="92.5" height="15.0" fill="rgb(242,196,45)" rx="2" ry="2" />
<text x="141.93" y="783.5" >alloc::slic..</text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="570.6" y="485" width="5.6" height="15.0" fill="rgb(239,181,40)" rx="2" ry="2" />
<text x="573.57" y="495.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::ok::_$u7b$$u7b$closure$u7d$$u7d$::hd70dfbc15b1da5c3 (8 samples, 0.95%)</title><rect x="200.6" y="357" width="11.2" height="15.0" fill="rgb(237,193,32)" rx="2" ry="2" />
<text x="203.59" y="367.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (11 samples, 1.31%)</title><rect x="11.4" y="997" width="15.4" height="15.0" fill="rgb(244,48,29)" rx="2" ry="2" />
<text x="14.40" y="1007.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::simple_gvn::h92017a72e4a02f50 (1 samples, 0.12%)</title><rect x="49.2" y="357" width="1.4" height="15.0" fill="rgb(207,6,40)" rx="2" ry="2" />
<text x="52.24" y="367.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1156.4" y="725" width="1.4" height="15.0" fill="rgb(233,164,17)" rx="2" ry="2" />
<text x="1159.37" y="735.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="190.8" y="389" width="2.8" height="15.0" fill="rgb(236,25,32)" rx="2" ry="2" />
<text x="193.78" y="399.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (2 samples, 0.24%)</title><rect x="745.7" y="709" width="2.9" height="15.0" fill="rgb(254,11,40)" rx="2" ry="2" />
<text x="748.75" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h133039c7e5ab2b87 (4 samples, 0.48%)</title><rect x="178.2" y="277" width="5.6" height="15.0" fill="rgb(250,48,27)" rx="2" ry="2" />
<text x="181.17" y="287.5" ></text>
</g>
<g >
<title>_dl_start_final (2 samples, 0.24%)</title><rect x="1181.6" y="981" width="2.8" height="15.0" fill="rgb(246,71,13)" rx="2" ry="2" />
<text x="1184.59" y="991.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (2 samples, 0.24%)</title><rect x="1159.2" y="933" width="2.8" height="15.0" fill="rgb(214,203,1)" rx="2" ry="2" />
<text x="1162.17" y="943.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (4 samples, 0.48%)</title><rect x="765.4" y="629" width="5.6" height="15.0" fill="rgb(237,58,28)" rx="2" ry="2" />
<text x="768.37" y="639.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (1 samples, 0.12%)</title><rect x="387.0" y="613" width="1.4" height="15.0" fill="rgb(216,145,50)" rx="2" ry="2" />
<text x="389.98" y="623.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h38af3dc50e2ce193 (4 samples, 0.48%)</title><rect x="178.2" y="229" width="5.6" height="15.0" fill="rgb(254,145,4)" rx="2" ry="2" />
<text x="181.17" y="239.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..IndexedParallelIterator$GT$::with_producer::h33594415df50c415 (1 samples, 0.12%)</title><rect x="1164.8" y="725" width="1.4" height="15.0" fill="rgb(218,137,30)" rx="2" ry="2" />
<text x="1167.77" y="735.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve::h7ae1baf26bcd21c0 (2 samples, 0.24%)</title><rect x="43.6" y="181" width="2.8" height="15.0" fill="rgb(250,17,20)" rx="2" ry="2" />
<text x="46.63" y="191.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h511ec3d42cfa6b56 (18 samples, 2.14%)</title><rect x="26.8" y="533" width="25.2" height="15.0" fill="rgb(226,147,44)" rx="2" ry="2" />
<text x="29.82" y="543.5" >_..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hd388a75a7e96e17c (23 samples, 2.73%)</title><rect x="649.0" y="677" width="32.3" height="15.0" fill="rgb(210,196,24)" rx="2" ry="2" />
<text x="652.05" y="687.5" >_$..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9eff5dbe085b6dcd (4 samples, 0.48%)</title><rect x="570.6" y="629" width="5.6" height="15.0" fill="rgb(216,112,5)" rx="2" ry="2" />
<text x="573.57" y="639.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.12%)</title><rect x="864.9" y="725" width="1.4" height="15.0" fill="rgb(222,126,52)" rx="2" ry="2" />
<text x="867.87" y="735.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::with_callback::ha9fd064efa13c93b (7 samples, 0.83%)</title><rect x="890.1" y="757" width="9.8" height="15.0" fill="rgb(219,101,4)" rx="2" ry="2" />
<text x="893.10" y="767.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="584.6" y="741" width="1.4" height="15.0" fill="rgb(211,136,15)" rx="2" ry="2" />
<text x="587.58" y="751.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::wait_until::he5ba343e1ed63189 (54 samples, 6.41%)</title><rect x="56.2" y="709" width="75.7" height="15.0" fill="rgb(245,72,15)" rx="2" ry="2" />
<text x="59.25" y="719.5" >rayon_co..</text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="678.5" y="517" width="1.4" height="15.0" fill="rgb(213,81,13)" rx="2" ry="2" />
<text x="681.48" y="527.5" ></text>
</g>
<g >
<title>_dl_start_user (1 samples, 0.12%)</title><rect x="1180.2" y="1013" width="1.4" height="15.0" fill="rgb(237,8,44)" rx="2" ry="2" />
<text x="1183.19" y="1023.5" ></text>
</g>
<g >
<title>sys_mprotect (2 samples, 0.24%)</title><rect x="263.7" y="645" width="2.8" height="15.0" fill="rgb(222,100,6)" rx="2" ry="2" />
<text x="266.66" y="655.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h930c70d77b28ac6f (3 samples, 0.36%)</title><rect x="915.3" y="725" width="4.2" height="15.0" fill="rgb(223,220,51)" rx="2" ry="2" />
<text x="918.32" y="735.5" ></text>
</g>
<g >
<title>crossbeam_epoch::atomic::Shared$LT$T$GT$::as_raw::h03d3906923d7cced (1 samples, 0.12%)</title><rect x="116.5" y="277" width="1.4" height="15.0" fill="rgb(218,0,8)" rx="2" ry="2" />
<text x="119.51" y="287.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9271ea9b4debbe4d (2 samples, 0.24%)</title><rect x="309.9" y="613" width="2.8" height="15.0" fill="rgb(232,13,10)" rx="2" ry="2" />
<text x="312.90" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (15 samples, 1.78%)</title><rect x="447.2" y="581" width="21.1" height="15.0" fill="rgb(232,198,54)" rx="2" ry="2" />
<text x="450.24" y="591.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h296f859ac637ecae (4 samples, 0.48%)</title><rect x="178.2" y="261" width="5.6" height="15.0" fill="rgb(251,167,33)" rx="2" ry="2" />
<text x="181.17" y="271.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.12%)</title><rect x="1159.2" y="725" width="1.4" height="15.0" fill="rgb(249,193,32)" rx="2" ry="2" />
<text x="1162.17" y="735.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hee7f5010b7ca5345 (1 samples, 0.12%)</title><rect x="260.9" y="613" width="1.4" height="15.0" fill="rgb(214,80,45)" rx="2" ry="2" />
<text x="263.86" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (3 samples, 0.36%)</title><rect x="895.7" y="709" width="4.2" height="15.0" fill="rgb(249,0,33)" rx="2" ry="2" />
<text x="898.70" y="719.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (15 samples, 1.78%)</title><rect x="1136.7" y="949" width="21.1" height="15.0" fill="rgb(252,137,30)" rx="2" ry="2" />
<text x="1139.75" y="959.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.36%)</title><rect x="1185.8" y="949" width="4.2" height="15.0" fill="rgb(218,41,14)" rx="2" ry="2" />
<text x="1188.80" y="959.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::OpcodeConstraints::typeset_offset::h0b8bb100ba781e20 (1 samples, 0.12%)</title><rect x="32.4" y="229" width="1.4" height="15.0" fill="rgb(229,27,53)" rx="2" ry="2" />
<text x="35.42" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (3 samples, 0.36%)</title><rect x="543.9" y="757" width="4.2" height="15.0" fill="rgb(223,49,25)" rx="2" ry="2" />
<text x="546.94" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::details::start_pass::hd7fb3b93ee1da8db (1 samples, 0.12%)</title><rect x="1159.2" y="805" width="1.4" height="15.0" fill="rgb(217,178,28)" rx="2" ry="2" />
<text x="1162.17" y="815.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1 samples, 0.12%)</title><rect x="824.2" y="597" width="1.4" height="15.0" fill="rgb(224,98,28)" rx="2" ry="2" />
<text x="827.23" y="607.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h42f7ad9973531128 (1 samples, 0.12%)</title><rect x="677.1" y="645" width="1.4" height="15.0" fill="rgb(217,104,47)" rx="2" ry="2" />
<text x="680.08" y="655.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="476.7" y="629" width="1.4" height="15.0" fill="rgb(228,213,37)" rx="2" ry="2" />
<text x="479.67" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc3a33afc07f2354c (5 samples, 0.59%)</title><rect x="576.2" y="709" width="7.0" height="15.0" fill="rgb(244,101,33)" rx="2" ry="2" />
<text x="579.18" y="719.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="748.6" y="581" width="5.6" height="15.0" fill="rgb(219,30,4)" rx="2" ry="2" />
<text x="751.55" y="591.5" ></text>
</g>
<g >
<title>alloc_perturb (1 samples, 0.12%)</title><rect x="927.9" y="581" width="1.4" height="15.0" fill="rgb(241,229,6)" rx="2" ry="2" />
<text x="930.93" y="591.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (2 samples, 0.24%)</title><rect x="1133.9" y="773" width="2.8" height="15.0" fill="rgb(228,173,5)" rx="2" ry="2" />
<text x="1136.94" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.36%)</title><rect x="508.9" y="453" width="4.2" height="15.0" fill="rgb(231,24,22)" rx="2" ry="2" />
<text x="511.91" y="463.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="242.6" y="549" width="1.4" height="15.0" fill="rgb(237,165,28)" rx="2" ry="2" />
<text x="245.64" y="559.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (5 samples, 0.59%)</title><rect x="738.7" y="677" width="7.0" height="15.0" fill="rgb(215,25,43)" rx="2" ry="2" />
<text x="741.74" y="687.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::resolve_type_ref::h554f9003e804fa49 (8 samples, 0.95%)</title><rect x="919.5" y="725" width="11.2" height="15.0" fill="rgb(241,161,15)" rx="2" ry="2" />
<text x="922.52" y="735.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::is_pinned::h9d3662c5475dec39 (2 samples, 0.24%)</title><rect x="61.9" y="453" width="2.8" height="15.0" fill="rgb(250,30,38)" rx="2" ry="2" />
<text x="64.85" y="463.5" ></text>
</g>
<g >
<title>llist_add_batch (1 samples, 0.12%)</title><rect x="1157.8" y="645" width="1.4" height="15.0" fill="rgb(240,195,53)" rx="2" ry="2" />
<text x="1160.77" y="655.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map_with..MapWithFolder$LT$C$C$U$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h10d57826f4d4f877 (1 samples, 0.12%)</title><rect x="1164.8" y="645" width="1.4" height="15.0" fill="rgb(215,15,36)" rx="2" ry="2" />
<text x="1167.77" y="655.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="401.0" y="549" width="7.0" height="15.0" fill="rgb(254,207,25)" rx="2" ry="2" />
<text x="404.00" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (2 samples, 0.24%)</title><rect x="504.7" y="629" width="2.8" height="15.0" fill="rgb(230,28,3)" rx="2" ry="2" />
<text x="507.70" y="639.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (2 samples, 0.24%)</title><rect x="475.3" y="693" width="2.8" height="15.0" fill="rgb(236,24,9)" rx="2" ry="2" />
<text x="478.27" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h7aa137feea6cd692 (1 samples, 0.12%)</title><rect x="1145.2" y="741" width="1.4" height="15.0" fill="rgb(237,40,36)" rx="2" ry="2" />
<text x="1148.15" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="490.7" y="581" width="2.8" height="15.0" fill="rgb(213,3,48)" rx="2" ry="2" />
<text x="493.69" y="591.5" ></text>
</g>
<g >
<title>rayon::iter::extend::as_list::hfda51be754379eb6 (1 samples, 0.12%)</title><rect x="52.0" y="533" width="1.4" height="15.0" fill="rgb(216,169,19)" rx="2" ry="2" />
<text x="55.04" y="543.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (4 samples, 0.48%)</title><rect x="848.1" y="693" width="5.6" height="15.0" fill="rgb(206,100,2)" rx="2" ry="2" />
<text x="851.05" y="703.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (1 samples, 0.12%)</title><rect x="1164.8" y="341" width="1.4" height="15.0" fill="rgb(251,47,26)" rx="2" ry="2" />
<text x="1167.77" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.48%)</title><rect x="765.4" y="613" width="5.6" height="15.0" fill="rgb(209,125,22)" rx="2" ry="2" />
<text x="768.37" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc_zeroed::h65637f90795a6218 (1 samples, 0.12%)</title><rect x="262.3" y="613" width="1.4" height="15.0" fill="rgb(228,192,43)" rx="2" ry="2" />
<text x="265.26" y="623.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Local::pin::he4346b753afc7dea (32 samples, 3.80%)</title><rect x="73.1" y="357" width="44.8" height="15.0" fill="rgb(246,119,44)" rx="2" ry="2" />
<text x="76.06" y="367.5" >cros..</text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (1 samples, 0.12%)</title><rect x="237.0" y="565" width="1.4" height="15.0" fill="rgb(234,19,2)" rx="2" ry="2" />
<text x="240.03" y="575.5" ></text>
</g>
<g >
<title>Z3_del_context (1 samples, 0.12%)</title><rect x="584.6" y="789" width="1.4" height="15.0" fill="rgb(214,161,30)" rx="2" ry="2" />
<text x="587.58" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (5 samples, 0.59%)</title><rect x="817.2" y="565" width="7.0" height="15.0" fill="rgb(216,48,34)" rx="2" ry="2" />
<text x="820.22" y="575.5" ></text>
</g>
<g >
<title>__pthread_create_2_1 (1 samples, 0.12%)</title><rect x="1177.4" y="1013" width="1.4" height="15.0" fill="rgb(231,20,8)" rx="2" ry="2" />
<text x="1180.39" y="1023.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::h2a1c35b2f6735726 (1 samples, 0.12%)</title><rect x="776.6" y="709" width="1.4" height="15.0" fill="rgb(212,59,28)" rx="2" ry="2" />
<text x="779.58" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (6 samples, 0.71%)</title><rect x="804.6" y="645" width="8.4" height="15.0" fill="rgb(229,16,15)" rx="2" ry="2" />
<text x="807.61" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4ce7ee2a91eb51fd (1 samples, 0.12%)</title><rect x="38.0" y="245" width="1.4" height="15.0" fill="rgb(242,161,25)" rx="2" ry="2" />
<text x="41.03" y="255.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.12%)</title><rect x="31.0" y="229" width="1.4" height="15.0" fill="rgb(205,105,38)" rx="2" ry="2" />
<text x="34.02" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (1 samples, 0.12%)</title><rect x="825.6" y="565" width="1.4" height="15.0" fill="rgb(246,42,46)" rx="2" ry="2" />
<text x="828.63" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="1119.9" y="661" width="1.4" height="15.0" fill="rgb(210,85,5)" rx="2" ry="2" />
<text x="1122.93" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="923.7" y="629" width="5.6" height="15.0" fill="rgb(206,195,40)" rx="2" ry="2" />
<text x="926.73" y="639.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (1 samples, 0.12%)</title><rect x="1164.8" y="997" width="1.4" height="15.0" fill="rgb(232,152,51)" rx="2" ry="2" />
<text x="1167.77" y="1007.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$$u5b$T$u5d$$GT$::to_owned::hdfebb7e0e3c0f609 (6 samples, 0.71%)</title><rect x="399.6" y="661" width="8.4" height="15.0" fill="rgb(233,144,13)" rx="2" ry="2" />
<text x="402.60" y="671.5" ></text>
</g>
<g >
<title>__lock_text_start (1 samples, 0.12%)</title><rect x="1176.0" y="917" width="1.4" height="15.0" fill="rgb(245,54,6)" rx="2" ry="2" />
<text x="1178.99" y="927.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="409.4" y="613" width="5.6" height="15.0" fill="rgb(220,84,24)" rx="2" ry="2" />
<text x="412.41" y="623.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (715 samples, 84.92%)</title><rect x="134.7" y="837" width="1002.0" height="15.0" fill="rgb(227,217,48)" rx="2" ry="2" />
<text x="137.73" y="847.5" >rocinante::main::h69eb7648725adb6f</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.36%)</title><rect x="266.5" y="677" width="4.2" height="15.0" fill="rgb(205,202,32)" rx="2" ry="2" />
<text x="269.46" y="687.5" ></text>
</g>
<g >
<title>core::ptr::write::hd6a6b839856a25b2 (1 samples, 0.12%)</title><rect x="1009.2" y="709" width="1.4" height="15.0" fill="rgb(236,225,24)" rx="2" ry="2" />
<text x="1012.22" y="719.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::h47a3deef46b7be99 (1 samples, 0.12%)</title><rect x="430.4" y="581" width="1.4" height="15.0" fill="rgb(229,0,10)" rx="2" ry="2" />
<text x="433.43" y="591.5" ></text>
</g>
<g >
<title>parity_wasm::elements::section::CodeSection::bodies::h0cd2f6e9b497f340 (1 samples, 0.12%)</title><rect x="929.3" y="709" width="1.4" height="15.0" fill="rgb(251,87,22)" rx="2" ry="2" />
<text x="932.33" y="719.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (2 samples, 0.24%)</title><rect x="735.9" y="549" width="2.8" height="15.0" fill="rgb(242,155,44)" rx="2" ry="2" />
<text x="738.94" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::CallIndirect::hc87da635e955722c (2 samples, 0.24%)</title><rect x="1143.8" y="837" width="2.8" height="15.0" fill="rgb(253,163,23)" rx="2" ry="2" />
<text x="1146.75" y="847.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSomeFolder$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$core..option..Option$LT$T$GT$$GT$$GT$::consume_iter::hb572ec4d159e6450 (1 samples, 0.12%)</title><rect x="54.8" y="581" width="1.4" height="15.0" fill="rgb(246,94,5)" rx="2" ry="2" />
<text x="57.85" y="591.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h198fb7f00ad92294 (4 samples, 0.48%)</title><rect x="284.7" y="645" width="5.6" height="15.0" fill="rgb(209,227,30)" rx="2" ry="2" />
<text x="287.68" y="655.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..simple_gvn..HashKey$u20$as$u20$core..hash..Hash$GT$::hash::h4bf6977efcf303bc (1 samples, 0.12%)</title><rect x="49.2" y="261" width="1.4" height="15.0" fill="rgb(228,115,2)" rx="2" ry="2" />
<text x="52.24" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (11 samples, 1.31%)</title><rect x="11.4" y="965" width="15.4" height="15.0" fill="rgb(209,33,10)" rx="2" ry="2" />
<text x="14.40" y="975.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1 samples, 0.12%)</title><rect x="1166.2" y="901" width="1.4" height="15.0" fill="rgb(245,1,1)" rx="2" ry="2" />
<text x="1169.18" y="911.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (1 samples, 0.12%)</title><rect x="1115.7" y="773" width="1.4" height="15.0" fill="rgb(205,105,30)" rx="2" ry="2" />
<text x="1118.72" y="783.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::HANDLE::__getit::hcf25f8eca80b27a3 (1 samples, 0.12%)</title><rect x="63.3" y="405" width="1.4" height="15.0" fill="rgb(226,61,3)" rx="2" ry="2" />
<text x="66.25" y="415.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::hcf3f17cf13e7bdd9 (7 samples, 0.83%)</title><rect x="150.1" y="245" width="9.9" height="15.0" fill="rgb(237,130,23)" rx="2" ry="2" />
<text x="153.14" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hdc27663d6b393ecb (5 samples, 0.59%)</title><rect x="576.2" y="677" width="7.0" height="15.0" fill="rgb(219,135,4)" rx="2" ry="2" />
<text x="579.18" y="687.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="707.9" y="549" width="1.4" height="15.0" fill="rgb(207,217,51)" rx="2" ry="2" />
<text x="710.91" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2 samples, 0.24%)</title><rect x="706.5" y="597" width="2.8" height="15.0" fill="rgb(246,154,10)" rx="2" ry="2" />
<text x="709.51" y="607.5" ></text>
</g>
<g >
<title>memcpy_erms (1 samples, 0.12%)</title><rect x="273.5" y="501" width="1.4" height="15.0" fill="rgb(240,151,24)" rx="2" ry="2" />
<text x="276.47" y="511.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (4 samples, 0.48%)</title><rect x="1148.0" y="789" width="5.6" height="15.0" fill="rgb(208,228,43)" rx="2" ry="2" />
<text x="1150.96" y="799.5" ></text>
</g>
<g >
<title>_int_realloc (13 samples, 1.54%)</title><rect x="1087.7" y="661" width="18.2" height="15.0" fill="rgb(214,26,41)" rx="2" ry="2" />
<text x="1090.70" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (2 samples, 0.24%)</title><rect x="494.9" y="613" width="2.8" height="15.0" fill="rgb(250,0,9)" rx="2" ry="2" />
<text x="497.89" y="623.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h482a2cc57a2f8431 (1 samples, 0.12%)</title><rect x="493.5" y="645" width="1.4" height="15.0" fill="rgb(217,31,42)" rx="2" ry="2" />
<text x="496.49" y="655.5" ></text>
</g>
<g >
<title>std::io::impls::_$LT$impl$u20$std..io..Write$u20$for$u20$alloc..vec..Vec$LT$u8$GT$$GT$::write_all::h10a6238cd3a5773f (7 samples, 0.83%)</title><rect x="598.6" y="725" width="9.8" height="15.0" fill="rgb(235,106,19)" rx="2" ry="2" />
<text x="601.60" y="735.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h42f7ad9973531128 (2 samples, 0.24%)</title><rect x="678.5" y="645" width="2.8" height="15.0" fill="rgb(230,164,0)" rx="2" ry="2" />
<text x="681.48" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h368b47655d1b9022 (8 samples, 0.95%)</title><rect x="232.8" y="773" width="11.2" height="15.0" fill="rgb(248,68,37)" rx="2" ry="2" />
<text x="235.83" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="866.3" y="741" width="2.8" height="15.0" fill="rgb(234,82,5)" rx="2" ry="2" />
<text x="869.27" y="751.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (3 samples, 0.36%)</title><rect x="691.1" y="661" width="4.2" height="15.0" fill="rgb(211,227,47)" rx="2" ry="2" />
<text x="694.09" y="671.5" ></text>
</g>
<g >
<title>_do_fork (7 samples, 0.83%)</title><rect x="1167.6" y="949" width="9.8" height="15.0" fill="rgb(246,21,0)" rx="2" ry="2" />
<text x="1170.58" y="959.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::regalloc::hfc5ad6c1ecfb5906 (1 samples, 0.12%)</title><rect x="1164.8" y="373" width="1.4" height="15.0" fill="rgb(239,162,9)" rx="2" ry="2" />
<text x="1167.77" y="383.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (9 samples, 1.07%)</title><rect x="658.9" y="613" width="12.6" height="15.0" fill="rgb(231,35,26)" rx="2" ry="2" />
<text x="661.86" y="623.5" ></text>
</g>
<g >
<title>wake_up_new_task (1 samples, 0.12%)</title><rect x="1176.0" y="933" width="1.4" height="15.0" fill="rgb(221,118,28)" rx="2" ry="2" />
<text x="1178.99" y="943.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h6322d39b3381584f (5 samples, 0.59%)</title><rect x="176.8" y="485" width="7.0" height="15.0" fill="rgb(223,47,44)" rx="2" ry="2" />
<text x="179.77" y="495.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.24%)</title><rect x="263.7" y="677" width="2.8" height="15.0" fill="rgb(205,142,4)" rx="2" ry="2" />
<text x="266.66" y="687.5" ></text>
</g>
<g >
<title>rand::seq::index::sample_floyd::h553a70e5dcf26b28 (1 samples, 0.12%)</title><rect x="1115.7" y="741" width="1.4" height="15.0" fill="rgb(222,73,39)" rx="2" ry="2" />
<text x="1118.72" y="751.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5ec62926f09f387f (3 samples, 0.36%)</title><rect x="883.1" y="677" width="4.2" height="15.0" fill="rgb(241,59,27)" rx="2" ry="2" />
<text x="886.09" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::create_stack_slot::hbd2a6f7d6711365f (1 samples, 0.12%)</title><rect x="14.2" y="805" width="1.4" height="15.0" fill="rgb(210,88,39)" rx="2" ry="2" />
<text x="17.20" y="815.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbf1a2e7b1d7f1667 (2 samples, 0.24%)</title><rect x="350.5" y="645" width="2.8" height="15.0" fill="rgb(205,58,21)" rx="2" ry="2" />
<text x="353.55" y="655.5" ></text>
</g>
<g >
<title>__mprotect (1 samples, 0.12%)</title><rect x="1181.6" y="837" width="1.4" height="15.0" fill="rgb(240,107,20)" rx="2" ry="2" />
<text x="1184.59" y="847.5" ></text>
</g>
<g >
<title>core::ptr::swap_nonoverlapping::h4f1ae9937ec6079d (1 samples, 0.12%)</title><rect x="43.6" y="101" width="1.4" height="15.0" fill="rgb(239,26,14)" rx="2" ry="2" />
<text x="46.63" y="111.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::skip_locals::hd54d69658b91bf2f (1 samples, 0.12%)</title><rect x="342.1" y="645" width="1.4" height="15.0" fill="rgb(230,182,44)" rx="2" ry="2" />
<text x="345.14" y="655.5" ></text>
</g>
<g >
<title>unmap_page_range (1 samples, 0.12%)</title><rect x="1184.4" y="837" width="1.4" height="15.0" fill="rgb(241,132,30)" rx="2" ry="2" />
<text x="1187.39" y="847.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="985.4" y="613" width="1.4" height="15.0" fill="rgb(251,69,11)" rx="2" ry="2" />
<text x="988.39" y="623.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (1 samples, 0.12%)</title><rect x="1164.8" y="677" width="1.4" height="15.0" fill="rgb(216,133,4)" rx="2" ry="2" />
<text x="1167.77" y="687.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h6ae4018c4ff98f03 (1 samples, 0.12%)</title><rect x="1111.5" y="725" width="1.4" height="15.0" fill="rgb(222,34,30)" rx="2" ry="2" />
<text x="1114.52" y="735.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSomeFolder$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$core..option..Option$LT$T$GT$$GT$$GT$::consume_iter::hb572ec4d159e6450 (18 samples, 2.14%)</title><rect x="26.8" y="597" width="25.2" height="15.0" fill="rgb(231,90,17)" rx="2" ry="2" />
<text x="29.82" y="607.5" >_..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hd8a910271e6e0356 (4 samples, 0.48%)</title><rect x="178.2" y="213" width="5.6" height="15.0" fill="rgb(212,104,25)" rx="2" ry="2" />
<text x="181.17" y="223.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide_impl::h334c34544c219b2c (1 samples, 0.12%)</title><rect x="860.7" y="517" width="1.4" height="15.0" fill="rgb(234,18,7)" rx="2" ry="2" />
<text x="863.67" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h3298ac3ae45e1917 (1 samples, 0.12%)</title><rect x="1156.4" y="773" width="1.4" height="15.0" fill="rgb(214,140,45)" rx="2" ry="2" />
<text x="1159.37" y="783.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc88308801519e42d (7 samples, 0.83%)</title><rect x="508.9" y="709" width="9.8" height="15.0" fill="rgb(250,101,6)" rx="2" ry="2" />
<text x="511.91" y="719.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (1 samples, 0.12%)</title><rect x="793.4" y="597" width="1.4" height="15.0" fill="rgb(206,86,22)" rx="2" ry="2" />
<text x="796.40" y="607.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::entry::hf79a5e407089a76b (2 samples, 0.24%)</title><rect x="43.6" y="229" width="2.8" height="15.0" fill="rgb(213,154,14)" rx="2" ry="2" />
<text x="46.63" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h07203e88fe15dd5d (1 samples, 0.12%)</title><rect x="1166.2" y="725" width="1.4" height="15.0" fill="rgb(229,218,52)" rx="2" ry="2" />
<text x="1169.18" y="735.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (10 samples, 1.19%)</title><rect x="374.4" y="629" width="14.0" height="15.0" fill="rgb(253,49,44)" rx="2" ry="2" />
<text x="377.37" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbe84ef1290234831 (22 samples, 2.61%)</title><rect x="553.8" y="805" width="30.8" height="15.0" fill="rgb(218,122,48)" rx="2" ry="2" />
<text x="556.75" y="815.5" >co..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (1 samples, 0.12%)</title><rect x="1138.1" y="837" width="1.4" height="15.0" fill="rgb(218,115,46)" rx="2" ry="2" />
<text x="1141.15" y="847.5" ></text>
</g>
<g >
<title>core::ops::function::impls::_$LT$impl$u20$core..ops..function..FnMut$LT$A$GT$$u20$for$u20$$RF$mut$u20$F$GT$::call_mut::heba040442909f57b (44 samples, 5.23%)</title><rect x="56.2" y="501" width="61.7" height="15.0" fill="rgb(243,125,47)" rx="2" ry="2" />
<text x="59.25" y="511.5" >core::..</text>
</g>
<g >
<title>alloc_perf_context (1 samples, 0.12%)</title><rect x="1167.6" y="885" width="1.4" height="15.0" fill="rgb(217,218,39)" rx="2" ry="2" />
<text x="1170.58" y="895.5" ></text>
</g>
<g >
<title>core::intrinsics::copy_nonoverlapping::hd9cc6d31749433b6 (1 samples, 0.12%)</title><rect x="43.6" y="69" width="1.4" height="15.0" fill="rgb(216,149,36)" rx="2" ry="2" />
<text x="46.63" y="79.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..iter..traits..collect..Extend$LT$T$GT$$GT$::extend::h8a0058ab546580a0 (1 samples, 0.12%)</title><rect x="40.8" y="213" width="1.4" height="15.0" fill="rgb(248,128,43)" rx="2" ry="2" />
<text x="43.83" y="223.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$core..clone..Clone$GT$::clone::hf5eccf5a156a72fc (68 samples, 8.08%)</title><rect x="136.1" y="805" width="95.3" height="15.0" fill="rgb(222,148,49)" rx="2" ry="2" />
<text x="139.13" y="815.5" >_$LT$parity..</text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="629.4" y="549" width="1.4" height="15.0" fill="rgb(227,198,7)" rx="2" ry="2" />
<text x="632.43" y="559.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hcc908b779ea433d4 (1 samples, 0.12%)</title><rect x="47.8" y="277" width="1.4" height="15.0" fill="rgb(214,98,7)" rx="2" ry="2" />
<text x="50.84" y="287.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h1ce3360cecae11fd (1 samples, 0.12%)</title><rect x="337.9" y="661" width="1.4" height="15.0" fill="rgb(251,218,6)" rx="2" ry="2" />
<text x="340.93" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h047612b5d9b59568 (11 samples, 1.31%)</title><rect x="567.8" y="725" width="15.4" height="15.0" fill="rgb(246,140,5)" rx="2" ry="2" />
<text x="570.77" y="735.5" ></text>
</g>
<g >
<title>std::sys::unix::rwlock::RWLock::read::h443c8e5e0f4279ef (1 samples, 0.12%)</title><rect x="133.3" y="773" width="1.4" height="15.0" fill="rgb(223,73,47)" rx="2" ry="2" />
<text x="136.33" y="783.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSomeFolder$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$core..option..Option$LT$T$GT$$GT$$GT$::consume_iter::some::_$u7b$$u7b$closure$u7d$$u7d$::h0c76f0f2f5511879 (1 samples, 0.12%)</title><rect x="50.6" y="405" width="1.4" height="15.0" fill="rgb(218,104,13)" rx="2" ry="2" />
<text x="53.64" y="415.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h0234124bad11f8db (11 samples, 1.31%)</title><rect x="144.5" y="421" width="15.5" height="15.0" fill="rgb(228,40,24)" rx="2" ry="2" />
<text x="147.54" y="431.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h681fa2b201d55396 (6 samples, 0.71%)</title><rect x="906.9" y="709" width="8.4" height="15.0" fill="rgb(242,209,47)" rx="2" ry="2" />
<text x="909.91" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (7 samples, 0.83%)</title><rect x="721.9" y="597" width="9.8" height="15.0" fill="rgb(245,101,9)" rx="2" ry="2" />
<text x="724.92" y="607.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::h0491d5a49b6126eb (1 samples, 0.12%)</title><rect x="1164.8" y="469" width="1.4" height="15.0" fill="rgb(252,60,30)" rx="2" ry="2" />
<text x="1167.77" y="479.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (4 samples, 0.48%)</title><rect x="260.9" y="725" width="5.6" height="15.0" fill="rgb(232,32,54)" rx="2" ry="2" />
<text x="263.86" y="735.5" ></text>
</g>
<g >
<title>perf_event_mmap (2 samples, 0.24%)</title><rect x="272.1" y="565" width="2.8" height="15.0" fill="rgb(233,3,17)" rx="2" ry="2" />
<text x="275.07" y="575.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::ha93bdacc6321d57f (4 samples, 0.48%)</title><rect x="570.6" y="661" width="5.6" height="15.0" fill="rgb(233,52,40)" rx="2" ry="2" />
<text x="573.57" y="671.5" ></text>
</g>
<g >
<title>std::collections::hash::map::HashMap$LT$K$C$V$C$S$GT$::clear::hb7af8ee01d248d60 (1 samples, 0.12%)</title><rect x="1163.4" y="725" width="1.4" height="15.0" fill="rgb(216,78,32)" rx="2" ry="2" />
<text x="1166.37" y="735.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::ha1cbbf52dbd8f90e (1 samples, 0.12%)</title><rect x="259.5" y="613" width="1.4" height="15.0" fill="rgb(219,19,33)" rx="2" ry="2" />
<text x="262.45" y="623.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="52.0" y="485" width="1.4" height="15.0" fill="rgb(236,63,52)" rx="2" ry="2" />
<text x="55.04" y="495.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h39a7212219667534 (1 samples, 0.12%)</title><rect x="232.8" y="693" width="1.4" height="15.0" fill="rgb(205,143,3)" rx="2" ry="2" />
<text x="235.83" y="703.5" ></text>
</g>
<g >
<title>_$LT$cranelift_entity..primary..PrimaryMap$LT$K$C$V$GT$$u20$as$u20$core..ops..index..Index$LT$K$GT$$GT$::index::heb9f4cc59cca537d (1 samples, 0.12%)</title><rect x="35.2" y="277" width="1.4" height="15.0" fill="rgb(237,209,12)" rx="2" ry="2" />
<text x="38.23" y="287.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hbf1a2e7b1d7f1667 (2 samples, 0.24%)</title><rect x="309.9" y="645" width="2.8" height="15.0" fill="rgb(221,77,17)" rx="2" ry="2" />
<text x="312.90" y="655.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (1 samples, 0.12%)</title><rect x="33.8" y="245" width="1.4" height="15.0" fill="rgb(227,193,18)" rx="2" ry="2" />
<text x="36.82" y="255.5" ></text>
</g>
<g >
<title>core::iter::adapters::filter_try_fold::_$u7b$$u7b$closure$u7d$$u7d$::hc666ebae6d02a793 (45 samples, 5.34%)</title><rect x="56.2" y="533" width="63.1" height="15.0" fill="rgb(215,98,35)" rx="2" ry="2" />
<text x="59.25" y="543.5" >core::..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h9993b2ee6320f178 (1 samples, 0.12%)</title><rect x="1055.5" y="645" width="1.4" height="15.0" fill="rgb(229,204,41)" rx="2" ry="2" />
<text x="1058.46" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1 samples, 0.12%)</title><rect x="1164.8" y="357" width="1.4" height="15.0" fill="rgb(254,115,33)" rx="2" ry="2" />
<text x="1167.77" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (1 samples, 0.12%)</title><rect x="793.4" y="629" width="1.4" height="15.0" fill="rgb(212,1,17)" rx="2" ry="2" />
<text x="796.40" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..clone..Clone$GT$::clone::hfb3085804dd270db (4 samples, 0.48%)</title><rect x="178.2" y="293" width="5.6" height="15.0" fill="rgb(217,33,1)" rx="2" ry="2" />
<text x="181.17" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="981.2" y="629" width="5.6" height="15.0" fill="rgb(243,164,44)" rx="2" ry="2" />
<text x="984.19" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (1 samples, 0.12%)</title><rect x="713.5" y="629" width="1.4" height="15.0" fill="rgb(220,166,37)" rx="2" ry="2" />
<text x="716.52" y="639.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (4 samples, 0.48%)</title><rect x="848.1" y="629" width="5.6" height="15.0" fill="rgb(208,115,27)" rx="2" ry="2" />
<text x="851.05" y="639.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h9e8fa79ef32e2f92 (3 samples, 0.36%)</title><rect x="883.1" y="709" width="4.2" height="15.0" fill="rgb(216,189,45)" rx="2" ry="2" />
<text x="886.09" y="719.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="493.5" y="517" width="1.4" height="15.0" fill="rgb(226,136,52)" rx="2" ry="2" />
<text x="496.49" y="527.5" ></text>
</g>
<g >
<title>rand::Rng::gen::h76baed36918cb707 (5 samples, 0.59%)</title><rect x="855.1" y="773" width="7.0" height="15.0" fill="rgb(205,102,46)" rx="2" ry="2" />
<text x="858.06" y="783.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (23 samples, 2.73%)</title><rect x="443.0" y="693" width="32.3" height="15.0" fill="rgb(231,161,42)" rx="2" ry="2" />
<text x="446.04" y="703.5" >wa..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (1 samples, 0.12%)</title><rect x="713.5" y="661" width="1.4" height="15.0" fill="rgb(245,86,34)" rx="2" ry="2" />
<text x="716.52" y="671.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (1 samples, 0.12%)</title><rect x="133.3" y="981" width="1.4" height="15.0" fill="rgb(217,42,27)" rx="2" ry="2" />
<text x="136.33" y="991.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h0a37eabba81f369f (3 samples, 0.36%)</title><rect x="915.3" y="677" width="4.2" height="15.0" fill="rgb(222,61,51)" rx="2" ry="2" />
<text x="918.32" y="687.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="876.1" y="677" width="2.8" height="15.0" fill="rgb(222,104,20)" rx="2" ry="2" />
<text x="879.08" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h2129dc6ec15fb220 (1 samples, 0.12%)</title><rect x="888.7" y="677" width="1.4" height="15.0" fill="rgb(212,181,35)" rx="2" ry="2" />
<text x="891.69" y="687.5" ></text>
</g>
<g >
<title>rand::distributions::integer::_$LT$impl$u20$rand..distributions..Distribution$LT$u32$GT$$u20$for$u20$rand..distributions..Standard$GT$::sample::he1453cf356f06f75 (3 samples, 0.36%)</title><rect x="857.9" y="693" width="4.2" height="15.0" fill="rgb(219,192,38)" rx="2" ry="2" />
<text x="860.86" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (2 samples, 0.24%)</title><rect x="866.3" y="725" width="2.8" height="15.0" fill="rgb(244,8,48)" rx="2" ry="2" />
<text x="869.27" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.48%)</title><rect x="409.4" y="597" width="5.6" height="15.0" fill="rgb(247,112,10)" rx="2" ry="2" />
<text x="412.41" y="607.5" ></text>
</g>
<g >
<title>std::thread::Builder::spawn_unchecked::_$u7b$$u7b$closure$u7d$$u7d$::_$u7b$$u7b$closure$u7d$$u7d$::ha54c1cff51030ed3 (54 samples, 6.41%)</title><rect x="56.2" y="789" width="75.7" height="15.0" fill="rgb(239,69,41)" rx="2" ry="2" />
<text x="59.25" y="799.5" >std::thr..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="1131.1" y="661" width="2.8" height="15.0" fill="rgb(231,60,41)" rx="2" ry="2" />
<text x="1134.14" y="671.5" ></text>
</g>
<g >
<title>do_group_exit (1 samples, 0.12%)</title><rect x="1184.4" y="933" width="1.4" height="15.0" fill="rgb(228,50,36)" rx="2" ry="2" />
<text x="1187.39" y="943.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::he288f56c949a8456 (6 samples, 0.71%)</title><rect x="211.8" y="469" width="8.4" height="15.0" fill="rgb(239,142,0)" rx="2" ry="2" />
<text x="214.81" y="479.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (1 samples, 0.12%)</title><rect x="679.9" y="501" width="1.4" height="15.0" fill="rgb(234,53,3)" rx="2" ry="2" />
<text x="682.88" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="277.7" y="693" width="1.4" height="15.0" fill="rgb(207,112,24)" rx="2" ry="2" />
<text x="280.67" y="703.5" ></text>
</g>
<g >
<title>_$LT$str$u20$as$u20$alloc..string..ToString$GT$::to_string::h4ad9fff72002ec5e (4 samples, 0.48%)</title><rect x="284.7" y="725" width="5.6" height="15.0" fill="rgb(229,117,16)" rx="2" ry="2" />
<text x="287.68" y="735.5" ></text>
</g>
<g >
<title>__schedule (1 samples, 0.12%)</title><rect x="126.3" y="581" width="1.4" height="15.0" fill="rgb(212,34,17)" rx="2" ry="2" />
<text x="129.32" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h5f801527cd0cdd64 (3 samples, 0.36%)</title><rect x="150.1" y="229" width="4.2" height="15.0" fill="rgb(209,159,52)" rx="2" ry="2" />
<text x="153.14" y="239.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.36%)</title><rect x="796.2" y="597" width="4.2" height="15.0" fill="rgb(244,52,28)" rx="2" ry="2" />
<text x="799.20" y="607.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (2 samples, 0.24%)</title><rect x="685.5" y="581" width="2.8" height="15.0" fill="rgb(225,194,51)" rx="2" ry="2" />
<text x="688.49" y="591.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::find_insert_slot::hd48e5bf173a3204a (1 samples, 0.12%)</title><rect x="433.2" y="629" width="1.4" height="15.0" fill="rgb(243,206,20)" rx="2" ry="2" />
<text x="436.23" y="639.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_module::ha4d490680831af37 (169 samples, 20.07%)</title><rect x="869.1" y="805" width="236.8" height="15.0" fill="rgb(251,51,42)" rx="2" ry="2" />
<text x="872.07" y="815.5" >rocinante::stoke::CandidateFunc..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h0f3f3a92ab885ee1 (1 samples, 0.12%)</title><rect x="1136.7" y="805" width="1.4" height="15.0" fill="rgb(229,127,18)" rx="2" ry="2" />
<text x="1139.75" y="815.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (2 samples, 0.24%)</title><rect x="685.5" y="645" width="2.8" height="15.0" fill="rgb(239,165,51)" rx="2" ry="2" />
<text x="688.49" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (4 samples, 0.48%)</title><rect x="714.9" y="597" width="5.6" height="15.0" fill="rgb(211,3,21)" rx="2" ry="2" />
<text x="717.92" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5ffa11a669e7d899 (1 samples, 0.12%)</title><rect x="1163.4" y="677" width="1.4" height="15.0" fill="rgb(242,170,47)" rx="2" ry="2" />
<text x="1166.37" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hb6cb515054aea3e2 (2 samples, 0.24%)</title><rect x="968.6" y="661" width="2.8" height="15.0" fill="rgb(229,155,21)" rx="2" ry="2" />
<text x="971.57" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (2 samples, 0.24%)</title><rect x="841.0" y="565" width="2.8" height="15.0" fill="rgb(224,111,15)" rx="2" ry="2" />
<text x="844.05" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.12%)</title><rect x="237.0" y="453" width="1.4" height="15.0" fill="rgb(221,194,38)" rx="2" ry="2" />
<text x="240.03" y="463.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (2 samples, 0.24%)</title><rect x="735.9" y="565" width="2.8" height="15.0" fill="rgb(213,15,14)" rx="2" ry="2" />
<text x="738.94" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (6 samples, 0.71%)</title><rect x="804.6" y="661" width="8.4" height="15.0" fill="rgb(216,227,29)" rx="2" ry="2" />
<text x="807.61" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="259.5" y="565" width="1.4" height="15.0" fill="rgb(212,77,20)" rx="2" ry="2" />
<text x="262.45" y="575.5" ></text>
</g>
<g >
<title>alloc::alloc::exchange_malloc::h4ed529a7aa347ab4 (1 samples, 0.12%)</title><rect x="277.7" y="725" width="1.4" height="15.0" fill="rgb(234,163,40)" rx="2" ry="2" />
<text x="280.67" y="735.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume_iter::h040886d86db5a05a (1 samples, 0.12%)</title><rect x="54.8" y="597" width="1.4" height="15.0" fill="rgb(211,108,30)" rx="2" ry="2" />
<text x="57.85" y="607.5" ></text>
</g>
<g >
<title>_dl_start (2 samples, 0.24%)</title><rect x="1181.6" y="997" width="2.8" height="15.0" fill="rgb(243,135,10)" rx="2" ry="2" />
<text x="1184.59" y="1007.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h0153bd9134671f1c (11 samples, 1.31%)</title><rect x="144.5" y="485" width="15.5" height="15.0" fill="rgb(246,73,10)" rx="2" ry="2" />
<text x="147.54" y="495.5" ></text>
</g>
<g >
<title>__do_page_fault (1 samples, 0.12%)</title><rect x="863.5" y="677" width="1.4" height="15.0" fill="rgb(243,57,36)" rx="2" ry="2" />
<text x="866.47" y="687.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (1 samples, 0.12%)</title><rect x="18.4" y="741" width="1.4" height="15.0" fill="rgb(254,154,33)" rx="2" ry="2" />
<text x="21.41" y="751.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (6 samples, 0.71%)</title><rect x="244.0" y="661" width="8.4" height="15.0" fill="rgb(252,212,47)" rx="2" ry="2" />
<text x="247.04" y="671.5" ></text>
</g>
<g >
<title>posix_sysconf (1 samples, 0.12%)</title><rect x="1180.2" y="917" width="1.4" height="15.0" fill="rgb(237,21,21)" rx="2" ry="2" />
<text x="1183.19" y="927.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear_no_drop::h2361cb80a618a06b (1 samples, 0.12%)</title><rect x="1163.4" y="629" width="1.4" height="15.0" fill="rgb(248,7,45)" rx="2" ry="2" />
<text x="1166.37" y="639.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="494.9" y="581" width="2.8" height="15.0" fill="rgb(235,16,18)" rx="2" ry="2" />
<text x="497.89" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h5024ccd3415780bb (1 samples, 0.12%)</title><rect x="853.7" y="709" width="1.4" height="15.0" fill="rgb(227,10,16)" rx="2" ry="2" />
<text x="856.66" y="719.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..primitives..FuncType$u20$as$u20$core..clone..Clone$GT$::clone::hb4eeb90c6767a15a (5 samples, 0.59%)</title><rect x="408.0" y="693" width="7.0" height="15.0" fill="rgb(246,194,39)" rx="2" ry="2" />
<text x="411.00" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (1 samples, 0.12%)</title><rect x="677.1" y="581" width="1.4" height="15.0" fill="rgb(210,150,13)" rx="2" ry="2" />
<text x="680.08" y="591.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::hc3dce295b7631139 (2 samples, 0.24%)</title><rect x="478.1" y="597" width="2.8" height="15.0" fill="rgb(219,92,14)" rx="2" ry="2" />
<text x="481.08" y="607.5" ></text>
</g>
<g >
<title>rayon::iter::reduce::reduce::hed2b1ea7593f5d79 (1 samples, 0.12%)</title><rect x="1164.8" y="853" width="1.4" height="15.0" fill="rgb(254,99,40)" rx="2" ry="2" />
<text x="1167.77" y="863.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="1119.9" y="693" width="1.4" height="15.0" fill="rgb(221,181,15)" rx="2" ry="2" />
<text x="1122.93" y="703.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::h4b398484f62760f3 (11 samples, 1.31%)</title><rect x="144.5" y="341" width="15.5" height="15.0" fill="rgb(227,9,51)" rx="2" ry="2" />
<text x="147.54" y="351.5" ></text>
</g>
<g >
<title>_$LT$ppv_lite86..x86_64..sse2..avx2..u32x4x4_avx2$LT$NI$GT$$u20$as$u20$core..ops..bit..BitXor$GT$::bitxor::ha65c688b04feb8c3 (1 samples, 0.12%)</title><rect x="860.7" y="485" width="1.4" height="15.0" fill="rgb(211,157,47)" rx="2" ry="2" />
<text x="863.67" y="495.5" ></text>
</g>
<g >
<title>call_init (1 samples, 0.12%)</title><rect x="1180.2" y="981" width="1.4" height="15.0" fill="rgb(212,217,47)" rx="2" ry="2" />
<text x="1183.19" y="991.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (16 samples, 1.90%)</title><rect x="1136.7" y="981" width="22.5" height="15.0" fill="rgb(232,24,44)" rx="2" ry="2" />
<text x="1139.75" y="991.5" >r..</text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operand::hd5ba41e205c2926d (3 samples, 0.36%)</title><rect x="1119.9" y="789" width="4.2" height="15.0" fill="rgb(229,61,13)" rx="2" ry="2" />
<text x="1122.93" y="799.5" ></text>
</g>
<g >
<title>core::iter::range::_$LT$impl$u20$core..iter..traits..iterator..Iterator$u20$for$u20$core..ops..range..Range$LT$A$GT$$GT$::next::h2c0a5cfee21b630b (1 samples, 0.12%)</title><rect x="385.6" y="613" width="1.4" height="15.0" fill="rgb(206,14,39)" rx="2" ry="2" />
<text x="388.58" y="623.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarInt7$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hfb0d59668618bb33 (1 samples, 0.12%)</title><rect x="825.6" y="645" width="1.4" height="15.0" fill="rgb(207,51,5)" rx="2" ry="2" />
<text x="828.63" y="655.5" ></text>
</g>
<g >
<title>core::ops::function::Fn::call::h308226cfd580debb (2 samples, 0.24%)</title><rect x="1139.5" y="821" width="2.9" height="15.0" fill="rgb(206,216,29)" rx="2" ry="2" />
<text x="1142.55" y="831.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_code_operator::h1e89e0ec4d77dcc0 (4 samples, 0.48%)</title><rect x="314.1" y="677" width="5.6" height="15.0" fill="rgb(210,125,3)" rx="2" ry="2" />
<text x="317.11" y="687.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::structures::map::Map$LT$K$C$V$GT$::push::h6da0cb9352dbf1d2 (2 samples, 0.24%)</title><rect x="274.9" y="725" width="2.8" height="15.0" fill="rgb(230,162,50)" rx="2" ry="2" />
<text x="277.87" y="735.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h42f7ad9973531128 (2 samples, 0.24%)</title><rect x="685.5" y="661" width="2.8" height="15.0" fill="rgb(236,183,49)" rx="2" ry="2" />
<text x="688.49" y="671.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (1 samples, 0.12%)</title><rect x="1184.4" y="981" width="1.4" height="15.0" fill="rgb(226,86,54)" rx="2" ry="2" />
<text x="1187.39" y="991.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (4 samples, 0.48%)</title><rect x="765.4" y="709" width="5.6" height="15.0" fill="rgb(215,148,41)" rx="2" ry="2" />
<text x="768.37" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hd34877fc55b93181 (4 samples, 0.48%)</title><rect x="748.6" y="645" width="5.6" height="15.0" fill="rgb(238,95,49)" rx="2" ry="2" />
<text x="751.55" y="655.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (2 samples, 0.24%)</title><rect x="1153.6" y="869" width="2.8" height="15.0" fill="rgb(242,171,36)" rx="2" ry="2" />
<text x="1156.56" y="879.5" ></text>
</g>
<g >
<title>alloc::alloc::exchange_malloc::h4ed529a7aa347ab4 (4 samples, 0.48%)</title><rect x="1062.5" y="693" width="5.6" height="15.0" fill="rgb(211,27,10)" rx="2" ry="2" />
<text x="1065.47" y="703.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (1 samples, 0.12%)</title><rect x="35.2" y="309" width="1.4" height="15.0" fill="rgb(223,104,16)" rx="2" ry="2" />
<text x="38.23" y="319.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..FuncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::h2dc32e2eaff27ce6 (1 samples, 0.12%)</title><rect x="1143.8" y="805" width="1.4" height="15.0" fill="rgb(235,55,12)" rx="2" ry="2" />
<text x="1146.75" y="815.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::_$LT$impl$u20$rayon..iter..FromParallelIterator$LT$T$GT$$u20$for$u20$alloc..vec..Vec$LT$T$GT$$GT$::from_par_iter::hcc780dcd99c4dd47 (18 samples, 2.14%)</title><rect x="26.8" y="917" width="25.2" height="15.0" fill="rgb(233,160,17)" rx="2" ry="2" />
<text x="29.82" y="927.5" >r..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (3 samples, 0.36%)</title><rect x="779.4" y="581" width="4.2" height="15.0" fill="rgb(245,10,46)" rx="2" ry="2" />
<text x="782.38" y="591.5" ></text>
</g>
<g >
<title>rand_core::block::BlockRng$LT$R$GT$::generate_and_set::h6ea2bdc63af95c91 (1 samples, 0.12%)</title><rect x="860.7" y="629" width="1.4" height="15.0" fill="rgb(233,164,13)" rx="2" ry="2" />
<text x="863.67" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h01ff102847f5e95c (1 samples, 0.12%)</title><rect x="26.8" y="261" width="1.4" height="15.0" fill="rgb(217,123,17)" rx="2" ry="2" />
<text x="29.82" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (1 samples, 0.12%)</title><rect x="29.6" y="341" width="1.4" height="15.0" fill="rgb(242,155,1)" rx="2" ry="2" />
<text x="32.62" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hefedd6ab9ba23454 (1 samples, 0.12%)</title><rect x="137.5" y="773" width="1.4" height="15.0" fill="rgb(252,45,13)" rx="2" ry="2" />
<text x="140.53" y="783.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (15 samples, 1.78%)</title><rect x="29.6" y="373" width="21.0" height="15.0" fill="rgb(206,78,54)" rx="2" ry="2" />
<text x="32.62" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::ha7043630dca43460 (2 samples, 0.24%)</title><rect x="735.9" y="581" width="2.8" height="15.0" fill="rgb(248,86,39)" rx="2" ry="2" />
<text x="738.94" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::ha034774e5c8c1c1b (3 samples, 0.36%)</title><rect x="150.1" y="213" width="4.2" height="15.0" fill="rgb(254,72,38)" rx="2" ry="2" />
<text x="153.14" y="223.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.36%)</title><rect x="266.5" y="661" width="4.2" height="15.0" fill="rgb(210,187,22)" rx="2" ry="2" />
<text x="269.46" y="671.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..export..ExportBuilder$LT$F$GT$$u20$as$u20$parity_wasm..builder..invoke..Invoke$LT$parity_wasm..elements..export_entry..Internal$GT$$GT$::invoke::h8a5d3ceda9c1447c (1 samples, 0.12%)</title><rect x="972.8" y="757" width="1.4" height="15.0" fill="rgb(221,57,30)" rx="2" ry="2" />
<text x="975.78" y="767.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (1 samples, 0.12%)</title><rect x="172.6" y="389" width="1.4" height="15.0" fill="rgb(243,135,36)" rx="2" ry="2" />
<text x="175.57" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc0711aa2d094cc69 (2 samples, 0.24%)</title><rect x="504.7" y="677" width="2.8" height="15.0" fill="rgb(222,223,16)" rx="2" ry="2" />
<text x="507.70" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hf6a717841e612fb7 (12 samples, 1.43%)</title><rect x="160.0" y="469" width="16.8" height="15.0" fill="rgb(207,201,30)" rx="2" ry="2" />
<text x="162.95" y="479.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (1 samples, 0.12%)</title><rect x="25.4" y="821" width="1.4" height="15.0" fill="rgb(233,133,38)" rx="2" ry="2" />
<text x="28.42" y="831.5" ></text>
</g>
<g >
<title>c2_chacha::guts::ChaCha::refill4::hece5f66842d14084 (1 samples, 0.12%)</title><rect x="860.7" y="581" width="1.4" height="15.0" fill="rgb(225,16,48)" rx="2" ry="2" />
<text x="863.67" y="591.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (13 samples, 1.54%)</title><rect x="616.8" y="645" width="18.2" height="15.0" fill="rgb(239,58,9)" rx="2" ry="2" />
<text x="619.82" y="655.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..fx..FxHasher$u20$as$u20$core..hash..Hasher$GT$::write_u64::hcd24d4a5c179f20a (1 samples, 0.12%)</title><rect x="49.2" y="197" width="1.4" height="15.0" fill="rgb(250,127,36)" rx="2" ry="2" />
<text x="52.24" y="207.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1 samples, 0.12%)</title><rect x="747.1" y="645" width="1.5" height="15.0" fill="rgb(245,170,38)" rx="2" ry="2" />
<text x="750.15" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h03389b94da50825a (3 samples, 0.36%)</title><rect x="508.9" y="501" width="4.2" height="15.0" fill="rgb(218,173,54)" rx="2" ry="2" />
<text x="511.91" y="511.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h511ec3d42cfa6b56 (1 samples, 0.12%)</title><rect x="1164.8" y="549" width="1.4" height="15.0" fill="rgb(212,93,11)" rx="2" ry="2" />
<text x="1167.77" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::current_layout::h8074434f831e1272 (1 samples, 0.12%)</title><rect x="607.0" y="629" width="1.4" height="15.0" fill="rgb(239,211,36)" rx="2" ry="2" />
<text x="610.01" y="639.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (1 samples, 0.12%)</title><rect x="14.2" y="725" width="1.4" height="15.0" fill="rgb(206,211,34)" rx="2" ry="2" />
<text x="17.20" y="735.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (7 samples, 0.83%)</title><rect x="755.6" y="565" width="9.8" height="15.0" fill="rgb(233,183,32)" rx="2" ry="2" />
<text x="758.56" y="575.5" ></text>
</g>
<g >
<title>do_syscall_64 (1 samples, 0.12%)</title><rect x="1157.8" y="789" width="1.4" height="15.0" fill="rgb(216,183,6)" rx="2" ry="2" />
<text x="1160.77" y="799.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (207 samples, 24.58%)</title><rect x="253.8" y="789" width="290.1" height="15.0" fill="rgb(249,83,27)" rx="2" ry="2" />
<text x="256.85" y="799.5" >wasmer_runtime::compile_with_config::h..</text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="1166.2" y="661" width="1.4" height="15.0" fill="rgb(227,1,0)" rx="2" ry="2" />
<text x="1169.18" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf3645a3685760d78 (7 samples, 0.83%)</title><rect x="508.9" y="693" width="9.8" height="15.0" fill="rgb(243,219,1)" rx="2" ry="2" />
<text x="511.91" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h8680d12a6750e818 (1 samples, 0.12%)</title><rect x="148.7" y="213" width="1.4" height="15.0" fill="rgb(244,202,50)" rx="2" ry="2" />
<text x="151.74" y="223.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (1 samples, 0.12%)</title><rect x="713.5" y="645" width="1.4" height="15.0" fill="rgb(205,128,18)" rx="2" ry="2" />
<text x="716.52" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1de7c5794a1fbde2 (3 samples, 0.36%)</title><rect x="827.0" y="597" width="4.2" height="15.0" fill="rgb(223,6,29)" rx="2" ry="2" />
<text x="830.03" y="607.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hb1bec686da9df687 (1 samples, 0.12%)</title><rect x="11.4" y="709" width="1.4" height="15.0" fill="rgb(229,149,40)" rx="2" ry="2" />
<text x="14.40" y="719.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h26f66af12a0d75e4 (1 samples, 0.12%)</title><rect x="1156.4" y="821" width="1.4" height="15.0" fill="rgb(221,183,26)" rx="2" ry="2" />
<text x="1159.37" y="831.5" ></text>
</g>
<g >
<title>hashbrown::raw::Bucket$LT$T$GT$::drop::h0dfa6c6d829d48f9 (3 samples, 0.36%)</title><rect x="508.9" y="629" width="4.2" height="15.0" fill="rgb(211,102,27)" rx="2" ry="2" />
<text x="511.91" y="639.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_section_body::h7d630b60fd73dcee (1 samples, 0.12%)</title><rect x="527.1" y="677" width="1.4" height="15.0" fill="rgb(253,57,46)" rx="2" ry="2" />
<text x="530.13" y="687.5" ></text>
</g>
<g >
<title>rocinante::exec::get_interpreter::h4929bb9229a46c67 (1 samples, 0.12%)</title><rect x="1157.8" y="965" width="1.4" height="15.0" fill="rgb(247,113,38)" rx="2" ry="2" />
<text x="1160.77" y="975.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h7270414e2e731aae (4 samples, 0.48%)</title><rect x="284.7" y="597" width="5.6" height="15.0" fill="rgb(212,164,41)" rx="2" ry="2" />
<text x="287.68" y="607.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (1 samples, 0.12%)</title><rect x="1111.5" y="757" width="1.4" height="15.0" fill="rgb(253,141,9)" rx="2" ry="2" />
<text x="1114.52" y="767.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1122.7" y="661" width="1.4" height="15.0" fill="rgb(224,189,41)" rx="2" ry="2" />
<text x="1125.73" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="968.6" y="613" width="2.8" height="15.0" fill="rgb(253,112,0)" rx="2" ry="2" />
<text x="971.57" y="623.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h1ebd9b466d5d8407 (1 samples, 0.12%)</title><rect x="260.9" y="581" width="1.4" height="15.0" fill="rgb(250,110,46)" rx="2" ry="2" />
<text x="263.86" y="591.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::from_error::he6648a3ce6772e10 (1 samples, 0.12%)</title><rect x="283.3" y="725" width="1.4" height="15.0" fill="rgb(214,186,20)" rx="2" ry="2" />
<text x="286.28" y="735.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::opcode::h4aa24d5c0dbaf79c (3 samples, 0.36%)</title><rect x="1115.7" y="789" width="4.2" height="15.0" fill="rgb(236,94,54)" rx="2" ry="2" />
<text x="1118.72" y="799.5" ></text>
</g>
<g >
<title>__rdl_realloc (1 samples, 0.12%)</title><rect x="679.9" y="517" width="1.4" height="15.0" fill="rgb(211,27,46)" rx="2" ry="2" />
<text x="682.88" y="527.5" ></text>
</g>
<g >
<title>core::ptr::write::h06c4db2b588eb1ab (2 samples, 0.24%)</title><rect x="144.5" y="293" width="2.8" height="15.0" fill="rgb(227,163,5)" rx="2" ry="2" />
<text x="147.54" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (2 samples, 0.24%)</title><rect x="1159.2" y="949" width="2.8" height="15.0" fill="rgb(223,204,24)" rx="2" ry="2" />
<text x="1162.17" y="959.5" ></text>
</g>
<g >
<title>do_page_fault (1 samples, 0.12%)</title><rect x="1177.4" y="981" width="1.4" height="15.0" fill="rgb(225,174,11)" rx="2" ry="2" />
<text x="1180.39" y="991.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::checked_add::h43ac995e0720f110 (1 samples, 0.12%)</title><rect x="730.3" y="565" width="1.4" height="15.0" fill="rgb(239,141,22)" rx="2" ry="2" />
<text x="733.33" y="575.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="193.6" y="437" width="7.0" height="15.0" fill="rgb(241,156,12)" rx="2" ry="2" />
<text x="196.59" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4 samples, 0.48%)</title><rect x="696.7" y="533" width="5.6" height="15.0" fill="rgb(223,120,49)" rx="2" ry="2" />
<text x="699.70" y="543.5" ></text>
</g>
<g >
<title>cranelift_entity::primary::PrimaryMap$LT$K$C$V$GT$::push::h83e4ac54972922ce (1 samples, 0.12%)</title><rect x="14.2" y="773" width="1.4" height="15.0" fill="rgb(241,150,15)" rx="2" ry="2" />
<text x="17.20" y="783.5" ></text>
</g>
<g >
<title>determine_info (1 samples, 0.12%)</title><rect x="1180.2" y="789" width="1.4" height="15.0" fill="rgb(250,204,35)" rx="2" ry="2" />
<text x="1183.19" y="799.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (7 samples, 0.83%)</title><rect x="721.9" y="661" width="9.8" height="15.0" fill="rgb(236,195,23)" rx="2" ry="2" />
<text x="724.92" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="199.2" y="389" width="1.4" height="15.0" fill="rgb(230,49,32)" rx="2" ry="2" />
<text x="202.19" y="399.5" ></text>
</g>
<g >
<title>__vma_adjust (1 samples, 0.12%)</title><rect x="1178.8" y="853" width="1.4" height="15.0" fill="rgb(207,14,9)" rx="2" ry="2" />
<text x="1181.79" y="863.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::find_map::check::_$u7b$$u7b$closure$u7d$$u7d$::h029c90572c6a3430 (44 samples, 5.23%)</title><rect x="56.2" y="517" width="61.7" height="15.0" fill="rgb(220,195,32)" rx="2" ry="2" />
<text x="59.25" y="527.5" >core::..</text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="131.9" y="837" width="1.4" height="15.0" fill="rgb(236,71,40)" rx="2" ry="2" />
<text x="134.92" y="847.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (4 samples, 0.48%)</title><rect x="423.4" y="661" width="5.6" height="15.0" fill="rgb(214,166,3)" rx="2" ry="2" />
<text x="426.42" y="671.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..ExportEntry$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h4be7f1d73b60ccfe (23 samples, 2.73%)</title><rect x="713.5" y="709" width="32.2" height="15.0" fill="rgb(253,195,32)" rx="2" ry="2" />
<text x="716.52" y="719.5" >_$..</text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="888.7" y="629" width="1.4" height="15.0" fill="rgb(225,24,16)" rx="2" ry="2" />
<text x="891.69" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h513be2b8f8edc154 (1 samples, 0.12%)</title><rect x="1166.2" y="757" width="1.4" height="15.0" fill="rgb(213,74,3)" rx="2" ry="2" />
<text x="1169.18" y="767.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::_$u7b$$u7b$closure$u7d$$u7d$::hbf82656ced404904 (1 samples, 0.12%)</title><rect x="1164.8" y="421" width="1.4" height="15.0" fill="rgb(236,162,44)" rx="2" ry="2" />
<text x="1167.77" y="431.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$mut$u20$T$GT$::offset::hb3d1899e942f8abc (1 samples, 0.12%)</title><rect x="675.7" y="549" width="1.4" height="15.0" fill="rgb(248,34,10)" rx="2" ry="2" />
<text x="678.68" y="559.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..entities..Inst$u20$as$u20$cranelift_entity..EntityRef$GT$::index::hcc789baf9f3b3651 (1 samples, 0.12%)</title><rect x="35.2" y="261" width="1.4" height="15.0" fill="rgb(238,45,11)" rx="2" ry="2" />
<text x="38.23" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (2 samples, 0.24%)</title><rect x="1162.0" y="789" width="2.8" height="15.0" fill="rgb(253,181,26)" rx="2" ry="2" />
<text x="1164.97" y="799.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h50ffec749030bf21 (3 samples, 0.36%)</title><rect x="827.0" y="645" width="4.2" height="15.0" fill="rgb(212,76,17)" rx="2" ry="2" />
<text x="830.03" y="655.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::call::_$u7b$$u7b$closure$u7d$$u7d$::h023dc3fdc0e3d150 (1 samples, 0.12%)</title><rect x="151.5" y="69" width="1.4" height="15.0" fill="rgb(253,82,2)" rx="2" ry="2" />
<text x="154.54" y="79.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h157f2592beb19670 (1 samples, 0.12%)</title><rect x="49.2" y="293" width="1.4" height="15.0" fill="rgb(233,205,29)" rx="2" ry="2" />
<text x="52.24" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h59eb5d679a823677 (5 samples, 0.59%)</title><rect x="500.5" y="693" width="7.0" height="15.0" fill="rgb(226,163,27)" rx="2" ry="2" />
<text x="503.50" y="703.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::new::hbb62ff20d783c9ba (1 samples, 0.12%)</title><rect x="528.5" y="725" width="1.4" height="15.0" fill="rgb(219,96,22)" rx="2" ry="2" />
<text x="531.53" y="735.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h149d1c3b3b583e51 (1 samples, 0.12%)</title><rect x="242.6" y="661" width="1.4" height="15.0" fill="rgb(216,191,41)" rx="2" ry="2" />
<text x="245.64" y="671.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="703.7" y="597" width="2.8" height="15.0" fill="rgb(233,3,22)" rx="2" ry="2" />
<text x="706.71" y="607.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (1 samples, 0.12%)</title><rect x="133.3" y="965" width="1.4" height="15.0" fill="rgb(233,146,34)" rx="2" ry="2" />
<text x="136.33" y="975.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::map::h66ceb79b1498cf61 (1 samples, 0.12%)</title><rect x="636.4" y="693" width="1.4" height="15.0" fill="rgb(206,142,35)" rx="2" ry="2" />
<text x="639.44" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (13 samples, 1.54%)</title><rect x="616.8" y="661" width="18.2" height="15.0" fill="rgb(213,42,2)" rx="2" ry="2" />
<text x="619.82" y="671.5" ></text>
</g>
<g >
<title>[perf-15805.map] (1 samples, 0.12%)</title><rect x="10.0" y="1013" width="1.4" height="15.0" fill="rgb(212,43,15)" rx="2" ry="2" />
<text x="13.00" y="1023.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_params::hc949b3cf879ad282 (8 samples, 0.95%)</title><rect x="936.3" y="773" width="11.3" height="15.0" fill="rgb(229,79,17)" rx="2" ry="2" />
<text x="939.34" y="783.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::hf8fd676145e820bd (1 samples, 0.12%)</title><rect x="14.2" y="757" width="1.4" height="15.0" fill="rgb(206,162,48)" rx="2" ry="2" />
<text x="17.20" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h946791f777187d09 (14 samples, 1.66%)</title><rect x="200.6" y="533" width="19.6" height="15.0" fill="rgb(249,206,46)" rx="2" ry="2" />
<text x="203.59" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (3 samples, 0.36%)</title><rect x="827.0" y="565" width="4.2" height="15.0" fill="rgb(246,140,50)" rx="2" ry="2" />
<text x="830.03" y="575.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1651cfa161ce1ef5 (3 samples, 0.36%)</title><rect x="549.5" y="805" width="4.3" height="15.0" fill="rgb(219,114,9)" rx="2" ry="2" />
<text x="552.55" y="815.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h88e9486d5c61a254 (1 samples, 0.12%)</title><rect x="259.5" y="581" width="1.4" height="15.0" fill="rgb(242,137,52)" rx="2" ry="2" />
<text x="262.45" y="591.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="234.2" y="661" width="1.4" height="15.0" fill="rgb(244,203,24)" rx="2" ry="2" />
<text x="237.23" y="671.5" ></text>
</g>
<g >
<title>__clone (55 samples, 6.53%)</title><rect x="56.2" y="997" width="77.1" height="15.0" fill="rgb(221,202,23)" rx="2" ry="2" />
<text x="59.25" y="1007.5" >__clone</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..CodeSection$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::ha36510a47c98a268 (55 samples, 6.53%)</title><rect x="635.0" y="741" width="77.1" height="15.0" fill="rgb(239,18,45)" rx="2" ry="2" />
<text x="638.04" y="751.5" >_$LT$par..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h5ec62926f09f387f (1 samples, 0.12%)</title><rect x="888.7" y="709" width="1.4" height="15.0" fill="rgb(213,58,51)" rx="2" ry="2" />
<text x="891.69" y="719.5" ></text>
</g>
<g >
<title>do_signal (1 samples, 0.12%)</title><rect x="1184.4" y="965" width="1.4" height="15.0" fill="rgb(246,169,28)" rx="2" ry="2" />
<text x="1187.39" y="975.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="845.2" y="613" width="1.5" height="15.0" fill="rgb(207,14,33)" rx="2" ry="2" />
<text x="848.25" y="623.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="52.0" y="469" width="1.4" height="15.0" fill="rgb(233,144,50)" rx="2" ry="2" />
<text x="55.04" y="479.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::offset::h23696412547d86f6 (1 samples, 0.12%)</title><rect x="15.6" y="661" width="1.4" height="15.0" fill="rgb(211,86,39)" rx="2" ry="2" />
<text x="18.61" y="671.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..TakeWhile$LT$I$C$P$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::h7a427990aa61af15 (18 samples, 2.14%)</title><rect x="26.8" y="517" width="25.2" height="15.0" fill="rgb(213,194,41)" rx="2" ry="2" />
<text x="29.82" y="527.5" >_..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="916.7" y="645" width="2.8" height="15.0" fill="rgb(207,64,18)" rx="2" ry="2" />
<text x="919.72" y="655.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (3 samples, 0.36%)</title><rect x="543.9" y="741" width="4.2" height="15.0" fill="rgb(220,8,8)" rx="2" ry="2" />
<text x="546.94" y="751.5" ></text>
</g>
<g >
<title>get_signal (1 samples, 0.12%)</title><rect x="130.5" y="517" width="1.4" height="15.0" fill="rgb(235,146,30)" rx="2" ry="2" />
<text x="133.52" y="527.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hed758e2b3e859228 (6 samples, 0.71%)</title><rect x="244.0" y="773" width="8.4" height="15.0" fill="rgb(223,56,23)" rx="2" ry="2" />
<text x="247.04" y="783.5" ></text>
</g>
<g >
<title>perf_event_alloc (4 samples, 0.48%)</title><rect x="1170.4" y="869" width="5.6" height="15.0" fill="rgb(216,148,19)" rx="2" ry="2" />
<text x="1173.38" y="879.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (7 samples, 0.83%)</title><rect x="755.6" y="677" width="9.8" height="15.0" fill="rgb(212,7,36)" rx="2" ry="2" />
<text x="758.56" y="687.5" ></text>
</g>
<g >
<title>smp_call_function_many (1 samples, 0.12%)</title><rect x="1157.8" y="661" width="1.4" height="15.0" fill="rgb(249,52,24)" rx="2" ry="2" />
<text x="1160.77" y="671.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h48243f6b9d4a5b80 (21 samples, 2.49%)</title><rect x="553.8" y="741" width="29.4" height="15.0" fill="rgb(213,129,54)" rx="2" ry="2" />
<text x="556.75" y="751.5" >co..</text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get::h83e28b658e617fe8 (1 samples, 0.12%)</title><rect x="1141.0" y="725" width="1.4" height="15.0" fill="rgb(210,121,52)" rx="2" ry="2" />
<text x="1143.95" y="735.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hced5582be437b9a2 (5 samples, 0.59%)</title><rect x="378.6" y="581" width="7.0" height="15.0" fill="rgb(227,98,36)" rx="2" ry="2" />
<text x="381.57" y="591.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint1$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hd581c4b42e370046 (5 samples, 0.59%)</title><rect x="831.2" y="677" width="7.0" height="15.0" fill="rgb(209,15,21)" rx="2" ry="2" />
<text x="834.24" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hdd14d76e5467070d (1 samples, 0.12%)</title><rect x="1122.7" y="709" width="1.4" height="15.0" fill="rgb(221,41,23)" rx="2" ry="2" />
<text x="1125.73" y="719.5" ></text>
</g>
<g >
<title>std::sync::condvar::Condvar::wait::h7fe8ee56c75b3792 (1 samples, 0.12%)</title><rect x="130.5" y="645" width="1.4" height="15.0" fill="rgb(219,143,3)" rx="2" ry="2" />
<text x="133.52" y="655.5" ></text>
</g>
<g >
<title>z3::solver::_$LT$impl$u20$z3..Solver$GT$::check::hbf78416cda00d0a7 (2 samples, 0.24%)</title><rect x="866.3" y="789" width="2.8" height="15.0" fill="rgb(213,90,17)" rx="2" ry="2" />
<text x="869.27" y="799.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::next_function::hbef1985a853e1f1c (2 samples, 0.24%)</title><rect x="1162.0" y="773" width="2.8" height="15.0" fill="rgb(235,85,40)" rx="2" ry="2" />
<text x="1164.97" y="783.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (1 samples, 0.12%)</title><rect x="33.8" y="277" width="1.4" height="15.0" fill="rgb(250,158,15)" rx="2" ry="2" />
<text x="36.82" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="727.5" y="533" width="1.4" height="15.0" fill="rgb(231,139,17)" rx="2" ry="2" />
<text x="730.53" y="543.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (4 samples, 0.48%)</title><rect x="696.7" y="549" width="5.6" height="15.0" fill="rgb(213,0,31)" rx="2" ry="2" />
<text x="699.70" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.36%)</title><rect x="883.1" y="597" width="4.2" height="15.0" fill="rgb(205,150,35)" rx="2" ry="2" />
<text x="886.09" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::_$u7b$$u7b$closure$u7d$$u7d$::hbfd3e7573580e1aa (1 samples, 0.12%)</title><rect x="176.8" y="309" width="1.4" height="15.0" fill="rgb(214,49,4)" rx="2" ry="2" />
<text x="179.77" y="319.5" ></text>
</g>
<g >
<title>perf_event_mmap (2 samples, 0.24%)</title><rect x="263.7" y="597" width="2.8" height="15.0" fill="rgb(211,6,35)" rx="2" ry="2" />
<text x="266.66" y="607.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::ptr::h4bfcd7a481293198 (1 samples, 0.12%)</title><rect x="929.3" y="661" width="1.4" height="15.0" fill="rgb(251,92,44)" rx="2" ry="2" />
<text x="932.33" y="671.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::ha11646433e522d95 (5 samples, 0.59%)</title><rect x="193.6" y="501" width="7.0" height="15.0" fill="rgb(225,222,14)" rx="2" ry="2" />
<text x="196.59" y="511.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$parity_wasm..io..Write$GT$::write::hfcc8d197ef7c0ff8 (1 samples, 0.12%)</title><rect x="793.4" y="709" width="1.4" height="15.0" fill="rgb(211,14,52)" rx="2" ry="2" />
<text x="796.40" y="719.5" ></text>
</g>
<g >
<title>__munmap (1 samples, 0.12%)</title><rect x="237.0" y="485" width="1.4" height="15.0" fill="rgb(225,58,51)" rx="2" ry="2" />
<text x="240.03" y="495.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (1 samples, 0.12%)</title><rect x="1159.2" y="789" width="1.4" height="15.0" fill="rgb(249,77,53)" rx="2" ry="2" />
<text x="1162.17" y="799.5" ></text>
</g>
<g >
<title>mprotect_fixup (1 samples, 0.12%)</title><rect x="1178.8" y="901" width="1.4" height="15.0" fill="rgb(245,65,14)" rx="2" ry="2" />
<text x="1181.79" y="911.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1111.5" y="661" width="1.4" height="15.0" fill="rgb(209,160,30)" rx="2" ry="2" />
<text x="1114.52" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1156.4" y="741" width="1.4" height="15.0" fill="rgb(252,227,16)" rx="2" ry="2" />
<text x="1159.37" y="751.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (3 samples, 0.36%)</title><rect x="1185.8" y="1013" width="4.2" height="15.0" fill="rgb(214,8,24)" rx="2" ry="2" />
<text x="1188.80" y="1023.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h53419d31b59f2a8f (1 samples, 0.12%)</title><rect x="507.5" y="661" width="1.4" height="15.0" fill="rgb(236,222,20)" rx="2" ry="2" />
<text x="510.51" y="671.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h38fcbbd3bb01ab8f (1 samples, 0.12%)</title><rect x="260.9" y="645" width="1.4" height="15.0" fill="rgb(206,200,20)" rx="2" ry="2" />
<text x="263.86" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="242.6" y="565" width="1.4" height="15.0" fill="rgb(235,148,31)" rx="2" ry="2" />
<text x="245.64" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (11 samples, 1.31%)</title><rect x="11.4" y="885" width="15.4" height="15.0" fill="rgb(227,220,39)" rx="2" ry="2" />
<text x="14.40" y="895.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (2 samples, 0.24%)</title><rect x="1162.0" y="949" width="2.8" height="15.0" fill="rgb(210,209,24)" rx="2" ry="2" />
<text x="1164.97" y="959.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (5 samples, 0.59%)</title><rect x="817.2" y="549" width="7.0" height="15.0" fill="rgb(211,187,36)" rx="2" ry="2" />
<text x="820.22" y="559.5" ></text>
</g>
<g >
<title>[libz3.so.4] (2 samples, 0.24%)</title><rect x="866.3" y="757" width="2.8" height="15.0" fill="rgb(225,93,47)" rx="2" ry="2" />
<text x="869.27" y="767.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::hb75432d13434e0fa (2 samples, 0.24%)</title><rect x="504.7" y="645" width="2.8" height="15.0" fill="rgb(251,47,51)" rx="2" ry="2" />
<text x="507.70" y="655.5" ></text>
</g>
<g >
<title>mmput (1 samples, 0.12%)</title><rect x="1184.4" y="901" width="1.4" height="15.0" fill="rgb(215,1,36)" rx="2" ry="2" />
<text x="1187.39" y="911.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (2 samples, 0.24%)</title><rect x="632.2" y="613" width="2.8" height="15.0" fill="rgb(236,69,14)" rx="2" ry="2" />
<text x="635.23" y="623.5" ></text>
</g>
<g >
<title>rand::Rng::gen_range::h3b7924f33563bfff (1 samples, 0.12%)</title><rect x="1114.3" y="741" width="1.4" height="15.0" fill="rgb(225,217,27)" rx="2" ry="2" />
<text x="1117.32" y="751.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="845.2" y="581" width="1.5" height="15.0" fill="rgb(214,0,22)" rx="2" ry="2" />
<text x="848.25" y="591.5" ></text>
</g>
<g >
<title>_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked::h68f7713cf241b28f (1 samples, 0.12%)</title><rect x="15.6" y="693" width="1.4" height="15.0" fill="rgb(254,144,42)" rx="2" ry="2" />
<text x="18.61" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (7 samples, 0.83%)</title><rect x="755.6" y="629" width="9.8" height="15.0" fill="rgb(229,72,4)" rx="2" ry="2" />
<text x="758.56" y="639.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::HANDLE::__getit::hcf25f8eca80b27a3 (2 samples, 0.24%)</title><rect x="70.3" y="405" width="2.8" height="15.0" fill="rgb(244,46,37)" rx="2" ry="2" />
<text x="73.26" y="415.5" ></text>
</g>
<g >
<title>alloc::alloc::box_free::h287eebbad2cc4872 (1 samples, 0.12%)</title><rect x="252.4" y="677" width="1.4" height="15.0" fill="rgb(206,28,11)" rx="2" ry="2" />
<text x="255.45" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (1 samples, 0.12%)</title><rect x="14.2" y="869" width="1.4" height="15.0" fill="rgb(219,97,50)" rx="2" ry="2" />
<text x="17.20" y="879.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::hc45790cc0b58c614 (4 samples, 0.48%)</title><rect x="923.7" y="693" width="5.6" height="15.0" fill="rgb(217,107,33)" rx="2" ry="2" />
<text x="926.73" y="703.5" ></text>
</g>
<g >
<title>alloc::str::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$str$GT$::to_owned::h23e9c4901f0a32e7 (4 samples, 0.48%)</title><rect x="284.7" y="693" width="5.6" height="15.0" fill="rgb(228,128,9)" rx="2" ry="2" />
<text x="287.68" y="703.5" ></text>
</g>
<g >
<title>_$LT$core..result..Result$LT$T$C$E$GT$$u20$as$u20$core..ops..try..Try$GT$::into_result::h965d8587181016a2 (1 samples, 0.12%)</title><rect x="349.1" y="645" width="1.4" height="15.0" fill="rgb(250,36,48)" rx="2" ry="2" />
<text x="352.14" y="655.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$core..ops..index..Index$LT$I$GT$$u20$for$u20$$u5b$T$u5d$$GT$::index::h6821621d7261462c (1 samples, 0.12%)</title><rect x="15.6" y="741" width="1.4" height="15.0" fill="rgb(235,148,15)" rx="2" ry="2" />
<text x="18.61" y="751.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::_$u7b$$u7b$closure$u7d$$u7d$::hbf82656ced404904 (17 samples, 2.02%)</title><rect x="26.8" y="405" width="23.8" height="15.0" fill="rgb(242,87,38)" rx="2" ry="2" />
<text x="29.82" y="415.5" >w..</text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="1062.5" y="677" width="5.6" height="15.0" fill="rgb(235,222,6)" rx="2" ry="2" />
<text x="1065.47" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h5278c4d3e82c4cf7 (7 samples, 0.83%)</title><rect x="183.8" y="453" width="9.8" height="15.0" fill="rgb(245,216,4)" rx="2" ry="2" />
<text x="186.78" y="463.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (3 samples, 0.36%)</title><rect x="691.1" y="581" width="4.2" height="15.0" fill="rgb(208,48,47)" rx="2" ry="2" />
<text x="694.09" y="591.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (4 samples, 0.48%)</title><rect x="733.1" y="629" width="5.6" height="15.0" fill="rgb(238,112,53)" rx="2" ry="2" />
<text x="736.14" y="639.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (3 samples, 0.36%)</title><rect x="52.0" y="645" width="4.2" height="15.0" fill="rgb(247,179,4)" rx="2" ry="2" />
<text x="55.04" y="655.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (3 samples, 0.36%)</title><rect x="691.1" y="645" width="4.2" height="15.0" fill="rgb(205,121,17)" rx="2" ry="2" />
<text x="694.09" y="655.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.36%)</title><rect x="895.7" y="677" width="4.2" height="15.0" fill="rgb(206,164,46)" rx="2" ry="2" />
<text x="898.70" y="687.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_func_type::h62ba8a863e36034a (3 samples, 0.36%)</title><rect x="482.3" y="693" width="4.2" height="15.0" fill="rgb(227,61,2)" rx="2" ry="2" />
<text x="485.28" y="703.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (6 samples, 0.71%)</title><rect x="804.6" y="709" width="8.4" height="15.0" fill="rgb(208,181,22)" rx="2" ry="2" />
<text x="807.61" y="719.5" ></text>
</g>
<g >
<title>core::ptr::write::h246b5b4207707484 (1 samples, 0.12%)</title><rect x="151.5" y="37" width="1.4" height="15.0" fill="rgb(235,69,45)" rx="2" ry="2" />
<text x="154.54" y="47.5" ></text>
</g>
<g >
<title>_dl_relocate_object (1 samples, 0.12%)</title><rect x="1178.8" y="1013" width="1.4" height="15.0" fill="rgb(222,81,2)" rx="2" ry="2" />
<text x="1181.79" y="1023.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (3 samples, 0.36%)</title><rect x="478.1" y="645" width="4.2" height="15.0" fill="rgb(231,150,4)" rx="2" ry="2" />
<text x="481.08" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb5de91f7581704bf (3 samples, 0.36%)</title><rect x="508.9" y="533" width="4.2" height="15.0" fill="rgb(226,155,36)" rx="2" ry="2" />
<text x="511.91" y="543.5" ></text>
</g>
<g >
<title>_$LT$core..hash..sip..Sip13Rounds$u20$as$u20$core..hash..sip..Sip$GT$::d_rounds::h47a3deef46b7be99 (1 samples, 0.12%)</title><rect x="478.1" y="533" width="1.4" height="15.0" fill="rgb(218,57,28)" rx="2" ry="2" />
<text x="481.08" y="543.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (1 samples, 0.12%)</title><rect x="860.7" y="565" width="1.4" height="15.0" fill="rgb(247,68,31)" rx="2" ry="2" />
<text x="863.67" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (1 samples, 0.12%)</title><rect x="710.7" y="661" width="1.4" height="15.0" fill="rgb(253,132,54)" rx="2" ry="2" />
<text x="713.71" y="671.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$core..clone..Clone$GT$::clone::h5fda1a6efc282e6b (9 samples, 1.07%)</title><rect x="147.3" y="309" width="12.7" height="15.0" fill="rgb(221,2,7)" rx="2" ry="2" />
<text x="150.34" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.36%)</title><rect x="1185.8" y="965" width="4.2" height="15.0" fill="rgb(237,158,28)" rx="2" ry="2" />
<text x="1188.80" y="975.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$core..clone..Clone$GT$::clone::hb25bb2e17230d1c0 (7 samples, 0.83%)</title><rect x="150.1" y="293" width="9.9" height="15.0" fill="rgb(245,164,25)" rx="2" ry="2" />
<text x="153.14" y="303.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::signal_trap_handler::ha55e59a207213c20 (1 samples, 0.12%)</title><rect x="10.0" y="981" width="1.4" height="15.0" fill="rgb(226,62,12)" rx="2" ry="2" />
<text x="13.00" y="991.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::hdee2c09cf5196269 (23 samples, 2.73%)</title><rect x="144.5" y="517" width="32.3" height="15.0" fill="rgb(206,61,16)" rx="2" ry="2" />
<text x="147.54" y="527.5" >al..</text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="853.7" y="629" width="1.4" height="15.0" fill="rgb(214,196,51)" rx="2" ry="2" />
<text x="856.66" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h2213311ec68c093e (1 samples, 0.12%)</title><rect x="40.8" y="165" width="1.4" height="15.0" fill="rgb(207,28,14)" rx="2" ry="2" />
<text x="43.83" y="175.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (1 samples, 0.12%)</title><rect x="33.8" y="213" width="1.4" height="15.0" fill="rgb(250,150,33)" rx="2" ry="2" />
<text x="36.82" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="258.1" y="677" width="1.4" height="15.0" fill="rgb(236,15,16)" rx="2" ry="2" />
<text x="261.05" y="687.5" ></text>
</g>
<g >
<title>_int_free (8 samples, 0.95%)</title><rect x="556.6" y="709" width="11.2" height="15.0" fill="rgb(246,9,10)" rx="2" ry="2" />
<text x="559.56" y="719.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (176 samples, 20.90%)</title><rect x="280.5" y="741" width="246.6" height="15.0" fill="rgb(237,62,43)" rx="2" ry="2" />
<text x="283.48" y="751.5" >wasmer_runtime_core::codegen::va..</text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (3 samples, 0.36%)</title><rect x="883.1" y="613" width="4.2" height="15.0" fill="rgb(230,157,8)" rx="2" ry="2" />
<text x="886.09" y="623.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..ValueType$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h6cb2aea5af59559e (1 samples, 0.12%)</title><rect x="825.6" y="661" width="1.4" height="15.0" fill="rgb(250,165,11)" rx="2" ry="2" />
<text x="828.63" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (4 samples, 0.48%)</title><rect x="765.4" y="645" width="5.6" height="15.0" fill="rgb(211,138,1)" rx="2" ry="2" />
<text x="768.37" y="655.5" ></text>
</g>
<g >
<title>_start (715 samples, 84.92%)</title><rect x="134.7" y="997" width="1002.0" height="15.0" fill="rgb(228,92,14)" rx="2" ry="2" />
<text x="137.73" y="1007.5" >_start</text>
</g>
<g >
<title>core::ptr::swap_nonoverlapping_bytes::h922c030b6c86b291 (1 samples, 0.12%)</title><rect x="43.6" y="85" width="1.4" height="15.0" fill="rgb(225,144,16)" rx="2" ry="2" />
<text x="46.63" y="95.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (7 samples, 0.83%)</title><rect x="721.9" y="613" width="9.8" height="15.0" fill="rgb(218,9,31)" rx="2" ry="2" />
<text x="724.92" y="623.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$core..convert..Into$LT$U$GT$$GT$::into::h3f00b70a761ae256 (59 samples, 7.01%)</title><rect x="974.2" y="757" width="82.7" height="15.0" fill="rgb(228,48,5)" rx="2" ry="2" />
<text x="977.18" y="767.5" >_$LT$T$u2..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (6 samples, 0.71%)</title><rect x="211.8" y="437" width="8.4" height="15.0" fill="rgb(249,14,21)" rx="2" ry="2" />
<text x="214.81" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1f051ed901a4fd5a (1 samples, 0.12%)</title><rect x="242.6" y="645" width="1.4" height="15.0" fill="rgb(220,71,32)" rx="2" ry="2" />
<text x="245.64" y="655.5" ></text>
</g>
<g >
<title>rayon::iter::from_par_iter::collect_extended::h833a9ba3f6cf2125 (3 samples, 0.36%)</title><rect x="52.0" y="885" width="4.2" height="15.0" fill="rgb(215,208,9)" rx="2" ry="2" />
<text x="55.04" y="895.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (1 samples, 0.12%)</title><rect x="793.4" y="565" width="1.4" height="15.0" fill="rgb(211,125,8)" rx="2" ry="2" />
<text x="796.40" y="575.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Coloring::run::h3acbc7f1babdb6f6 (1 samples, 0.12%)</title><rect x="40.8" y="325" width="1.4" height="15.0" fill="rgb(247,87,45)" rx="2" ry="2" />
<text x="43.83" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..instructions..Opcode$u20$as$u20$core..hash..Hash$GT$::hash::hf7ac4461b9093cb8 (1 samples, 0.12%)</title><rect x="49.2" y="229" width="1.4" height="15.0" fill="rgb(242,186,47)" rx="2" ry="2" />
<text x="52.24" y="239.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h4cf40e6b33e56494 (1 samples, 0.12%)</title><rect x="260.9" y="533" width="1.4" height="15.0" fill="rgb(249,53,8)" rx="2" ry="2" />
<text x="263.86" y="543.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::he2e7e1f3d52ac97e (5 samples, 0.59%)</title><rect x="176.8" y="341" width="7.0" height="15.0" fill="rgb(233,172,54)" rx="2" ry="2" />
<text x="179.77" y="351.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::call::_$u7b$$u7b$closure$u7d$$u7d$::h5ff768cab88166be (1 samples, 0.12%)</title><rect x="176.8" y="325" width="1.4" height="15.0" fill="rgb(234,202,37)" rx="2" ry="2" />
<text x="179.77" y="335.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (2 samples, 0.24%)</title><rect x="490.7" y="597" width="2.8" height="15.0" fill="rgb(237,214,31)" rx="2" ry="2" />
<text x="493.69" y="607.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (1 samples, 0.12%)</title><rect x="713.5" y="677" width="1.4" height="15.0" fill="rgb(242,179,4)" rx="2" ry="2" />
<text x="716.52" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::reg::h35ffc605dd52c3ad (2 samples, 0.24%)</title><rect x="1139.5" y="789" width="2.9" height="15.0" fill="rgb(206,87,9)" rx="2" ry="2" />
<text x="1142.55" y="799.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (2 samples, 0.24%)</title><rect x="678.5" y="549" width="2.8" height="15.0" fill="rgb(253,75,24)" rx="2" ry="2" />
<text x="681.48" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (1 samples, 0.12%)</title><rect x="40.8" y="245" width="1.4" height="15.0" fill="rgb(215,209,34)" rx="2" ry="2" />
<text x="43.83" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="806.0" y="597" width="7.0" height="15.0" fill="rgb(218,45,53)" rx="2" ry="2" />
<text x="809.01" y="607.5" ></text>
</g>
<g >
<title>_int_free (2 samples, 0.24%)</title><rect x="501.9" y="549" width="2.8" height="15.0" fill="rgb(245,212,13)" rx="2" ry="2" />
<text x="504.90" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.59%)</title><rect x="401.0" y="533" width="7.0" height="15.0" fill="rgb(231,33,9)" rx="2" ry="2" />
<text x="404.00" y="543.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h93ef596713cf83ff (21 samples, 2.49%)</title><rect x="979.8" y="709" width="29.4" height="15.0" fill="rgb(217,174,21)" rx="2" ry="2" />
<text x="982.79" y="719.5" >al..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (2 samples, 0.24%)</title><rect x="890.1" y="741" width="2.8" height="15.0" fill="rgb(232,14,30)" rx="2" ry="2" />
<text x="893.10" y="751.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..plumbing..bridge..Callback$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..ProducerCallback$LT$I$GT$$GT$::callback::hf4ac68f147f82ab3 (18 samples, 2.14%)</title><rect x="26.8" y="693" width="25.2" height="15.0" fill="rgb(246,191,26)" rx="2" ry="2" />
<text x="29.82" y="703.5" >_..</text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (7 samples, 0.83%)</title><rect x="304.3" y="677" width="9.8" height="15.0" fill="rgb(234,122,30)" rx="2" ry="2" />
<text x="307.30" y="687.5" ></text>
</g>
<g >
<title>_$LT$core..ops..range..Range$LT$usize$GT$$u20$as$u20$core..slice..SliceIndex$LT$$u5b$T$u5d$$GT$$GT$::get_unchecked_mut::h99351c1c35cd925e (1 samples, 0.12%)</title><rect x="675.7" y="581" width="1.4" height="15.0" fill="rgb(246,130,49)" rx="2" ry="2" />
<text x="678.68" y="591.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$parity_wasm..io..Write$GT$::write::hfcc8d197ef7c0ff8 (1 samples, 0.12%)</title><rect x="846.7" y="693" width="1.4" height="15.0" fill="rgb(218,143,0)" rx="2" ry="2" />
<text x="849.65" y="703.5" ></text>
</g>
<g >
<title>_copy_to_user (1 samples, 0.12%)</title><rect x="1188.6" y="917" width="1.4" height="15.0" fill="rgb(254,161,26)" rx="2" ry="2" />
<text x="1191.60" y="927.5" ></text>
</g>
<g >
<title>parity_wasm::elements::module::Module::to_bytes::hf7eaeb7e90803675 (191 samples, 22.68%)</title><rect x="587.4" y="805" width="267.7" height="15.0" fill="rgb(224,19,50)" rx="2" ry="2" />
<text x="590.39" y="815.5" >parity_wasm::elements::module::Modu..</text>
</g>
<g >
<title>core::ptr::read::h4069e94c5bddc0d5 (1 samples, 0.12%)</title><rect x="595.8" y="741" width="1.4" height="15.0" fill="rgb(254,163,49)" rx="2" ry="2" />
<text x="598.80" y="751.5" ></text>
</g>
<g >
<title>_$LT$rayon..slice..Iter$LT$T$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h08ddd46ade302123 (18 samples, 2.14%)</title><rect x="26.8" y="741" width="25.2" height="15.0" fill="rgb(254,74,9)" rx="2" ry="2" />
<text x="29.82" y="751.5" >_..</text>
</g>
<g >
<title>__perf_addr_filters_adjust (1 samples, 0.12%)</title><rect x="263.7" y="565" width="1.4" height="15.0" fill="rgb(243,224,22)" rx="2" ry="2" />
<text x="266.66" y="575.5" ></text>
</g>
<g >
<title>_raw_spin_lock (1 samples, 0.12%)</title><rect x="267.9" y="581" width="1.4" height="15.0" fill="rgb(206,32,30)" rx="2" ry="2" />
<text x="270.86" y="591.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$alloc..borrow..ToOwned$u20$for$u20$$u5b$T$u5d$$GT$::to_owned::h322408253123f79d (4 samples, 0.48%)</title><rect x="284.7" y="677" width="5.6" height="15.0" fill="rgb(223,207,32)" rx="2" ry="2" />
<text x="287.68" y="687.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="256.7" y="581" width="1.4" height="15.0" fill="rgb(211,12,2)" rx="2" ry="2" />
<text x="259.65" y="591.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h335cce6095bbce1d (1 samples, 0.12%)</title><rect x="259.5" y="709" width="1.4" height="15.0" fill="rgb(235,59,25)" rx="2" ry="2" />
<text x="262.45" y="719.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..plumbing..bridge..Callback$LT$C$GT$$u20$as$u20$rayon..iter..plumbing..ProducerCallback$LT$I$GT$$GT$::callback::hf4ac68f147f82ab3 (3 samples, 0.36%)</title><rect x="52.0" y="677" width="4.2" height="15.0" fill="rgb(240,141,44)" rx="2" ry="2" />
<text x="55.04" y="687.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::hd57ea4f8793eaf15 (1 samples, 0.12%)</title><rect x="1164.8" y="693" width="1.4" height="15.0" fill="rgb(226,88,53)" rx="2" ry="2" />
<text x="1167.77" y="703.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::h29385fd261b02390 (1 samples, 0.12%)</title><rect x="14.2" y="709" width="1.4" height="15.0" fill="rgb(247,219,21)" rx="2" ry="2" />
<text x="17.20" y="719.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="888.7" y="661" width="1.4" height="15.0" fill="rgb(238,132,41)" rx="2" ry="2" />
<text x="891.69" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h9268934580f494e1 (1 samples, 0.12%)</title><rect x="1119.9" y="725" width="1.4" height="15.0" fill="rgb(207,34,23)" rx="2" ry="2" />
<text x="1122.93" y="735.5" ></text>
</g>
<g >
<title>perf_output_begin (1 samples, 0.12%)</title><rect x="1153.6" y="661" width="1.4" height="15.0" fill="rgb(226,139,44)" rx="2" ry="2" />
<text x="1156.56" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (7 samples, 0.83%)</title><rect x="721.9" y="645" width="9.8" height="15.0" fill="rgb(246,206,45)" rx="2" ry="2" />
<text x="724.92" y="655.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (1 samples, 0.12%)</title><rect x="29.6" y="261" width="1.4" height="15.0" fill="rgb(232,124,3)" rx="2" ry="2" />
<text x="32.62" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (6 samples, 0.71%)</title><rect x="939.1" y="661" width="8.5" height="15.0" fill="rgb(217,229,18)" rx="2" ry="2" />
<text x="942.14" y="671.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::h579dfd78d0fe6599 (58 samples, 6.89%)</title><rect x="138.9" y="693" width="81.3" height="15.0" fill="rgb(242,175,29)" rx="2" ry="2" />
<text x="141.93" y="703.5" >core::ite..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (4 samples, 0.48%)</title><rect x="794.8" y="645" width="5.6" height="15.0" fill="rgb(251,151,24)" rx="2" ry="2" />
<text x="797.80" y="655.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::declare_ebb_header_block::h26e9e9b0a35fd899 (1 samples, 0.12%)</title><rect x="1156.4" y="853" width="1.4" height="15.0" fill="rgb(206,113,17)" rx="2" ry="2" />
<text x="1159.37" y="863.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (1 samples, 0.12%)</title><rect x="1164.8" y="229" width="1.4" height="15.0" fill="rgb(214,11,29)" rx="2" ry="2" />
<text x="1167.77" y="239.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..ir..extfunc..Signature$u20$as$u20$core..clone..Clone$GT$::clone::h5b1b1a1d1b0fb7b4 (1 samples, 0.12%)</title><rect x="26.8" y="357" width="1.4" height="15.0" fill="rgb(244,22,1)" rx="2" ry="2" />
<text x="29.82" y="367.5" ></text>
</g>
<g >
<title>core::ops::function::Fn::call::hdc3966d5410532b3 (1 samples, 0.12%)</title><rect x="52.0" y="549" width="1.4" height="15.0" fill="rgb(242,28,25)" rx="2" ry="2" />
<text x="55.04" y="559.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hb67cbcd9330fef4b (1 samples, 0.12%)</title><rect x="256.7" y="725" width="1.4" height="15.0" fill="rgb(222,68,41)" rx="2" ry="2" />
<text x="259.65" y="735.5" ></text>
</g>
<g >
<title>__libc_calloc (1 samples, 0.12%)</title><rect x="262.3" y="597" width="1.4" height="15.0" fill="rgb(214,126,45)" rx="2" ry="2" />
<text x="265.26" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::he29a6e76bf9988d2 (2 samples, 0.24%)</title><rect x="490.7" y="661" width="2.8" height="15.0" fill="rgb(241,101,18)" rx="2" ry="2" />
<text x="493.69" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h9ad5d6388cc12026 (17 samples, 2.02%)</title><rect x="444.4" y="661" width="23.9" height="15.0" fill="rgb(211,186,18)" rx="2" ry="2" />
<text x="447.44" y="671.5" >_..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (4 samples, 0.48%)</title><rect x="765.4" y="661" width="5.6" height="15.0" fill="rgb(223,13,48)" rx="2" ry="2" />
<text x="768.37" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (1 samples, 0.12%)</title><rect x="825.6" y="597" width="1.4" height="15.0" fill="rgb(205,219,7)" rx="2" ry="2" />
<text x="828.63" y="607.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (11 samples, 1.31%)</title><rect x="616.8" y="613" width="15.4" height="15.0" fill="rgb(207,128,53)" rx="2" ry="2" />
<text x="619.82" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (5 samples, 0.59%)</title><rect x="738.7" y="661" width="7.0" height="15.0" fill="rgb(209,0,25)" rx="2" ry="2" />
<text x="741.74" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (8 samples, 0.95%)</title><rect x="200.6" y="181" width="11.2" height="15.0" fill="rgb(254,81,9)" rx="2" ry="2" />
<text x="203.59" y="191.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1 samples, 0.12%)</title><rect x="1157.8" y="853" width="1.4" height="15.0" fill="rgb(251,66,35)" rx="2" ry="2" />
<text x="1160.77" y="863.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hb5dfeae079d9e6ee (8 samples, 0.95%)</title><rect x="200.6" y="421" width="11.2" height="15.0" fill="rgb(252,114,37)" rx="2" ry="2" />
<text x="203.59" y="431.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="1055.5" y="629" width="1.4" height="15.0" fill="rgb(210,155,52)" rx="2" ry="2" />
<text x="1058.46" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h89bce0df63ae4f46 (1 samples, 0.12%)</title><rect x="38.0" y="181" width="1.4" height="15.0" fill="rgb(205,92,15)" rx="2" ry="2" />
<text x="41.03" y="191.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (6 samples, 0.71%)</title><rect x="906.9" y="645" width="8.4" height="15.0" fill="rgb(219,72,31)" rx="2" ry="2" />
<text x="909.91" y="655.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (1 samples, 0.12%)</title><rect x="133.3" y="917" width="1.4" height="15.0" fill="rgb(212,120,5)" rx="2" ry="2" />
<text x="136.33" y="927.5" ></text>
</g>
<g >
<title>up_read (1 samples, 0.12%)</title><rect x="1177.4" y="949" width="1.4" height="15.0" fill="rgb(218,137,33)" rx="2" ry="2" />
<text x="1180.39" y="959.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4da55a25adceb867 (2 samples, 0.24%)</title><rect x="1108.7" y="757" width="2.8" height="15.0" fill="rgb(241,187,14)" rx="2" ry="2" />
<text x="1111.72" y="767.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.95%)</title><rect x="200.6" y="149" width="11.2" height="15.0" fill="rgb(236,110,28)" rx="2" ry="2" />
<text x="203.59" y="159.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (1 samples, 0.12%)</title><rect x="1188.6" y="933" width="1.4" height="15.0" fill="rgb(220,89,40)" rx="2" ry="2" />
<text x="1191.60" y="943.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (3 samples, 0.36%)</title><rect x="266.5" y="709" width="4.2" height="15.0" fill="rgb(237,153,3)" rx="2" ry="2" />
<text x="269.46" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::emit_to_memory::h1f148d92b15f33f2 (3 samples, 0.36%)</title><rect x="1139.5" y="853" width="4.3" height="15.0" fill="rgb(242,191,50)" rx="2" ry="2" />
<text x="1142.55" y="863.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::regalloc::hfc5ad6c1ecfb5906 (5 samples, 0.59%)</title><rect x="39.4" y="357" width="7.0" height="15.0" fill="rgb(232,110,39)" rx="2" ry="2" />
<text x="42.43" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1 samples, 0.12%)</title><rect x="1145.2" y="661" width="1.4" height="15.0" fill="rgb(229,151,36)" rx="2" ry="2" />
<text x="1148.15" y="671.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h80ed4065cec94637 (6 samples, 0.71%)</title><rect x="211.8" y="485" width="8.4" height="15.0" fill="rgb(226,33,37)" rx="2" ry="2" />
<text x="214.81" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::clear::h06057bd8bc482230 (1 samples, 0.12%)</title><rect x="28.2" y="357" width="1.4" height="15.0" fill="rgb(205,115,36)" rx="2" ry="2" />
<text x="31.22" y="367.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..code..FunctionBuilder$LT$F$GT$$u20$as$u20$parity_wasm..builder..invoke..Invoke$LT$parity_wasm..elements..func..FuncBody$GT$$GT$::invoke::hb1cf0f06adfcc9fa (6 samples, 0.71%)</title><rect x="878.9" y="757" width="8.4" height="15.0" fill="rgb(249,166,49)" rx="2" ry="2" />
<text x="881.88" y="767.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (4 samples, 0.48%)</title><rect x="794.8" y="629" width="5.6" height="15.0" fill="rgb(241,94,40)" rx="2" ry="2" />
<text x="797.80" y="639.5" ></text>
</g>
<g >
<title>change_protection (1 samples, 0.12%)</title><rect x="267.9" y="597" width="1.4" height="15.0" fill="rgb(224,188,45)" rx="2" ry="2" />
<text x="270.86" y="607.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::fold::h31de4b853bc3d473 (3 samples, 0.36%)</title><rect x="150.1" y="133" width="4.2" height="15.0" fill="rgb(244,145,41)" rx="2" ry="2" />
<text x="153.14" y="143.5" ></text>
</g>
<g >
<title>__mprotect (1 samples, 0.12%)</title><rect x="1178.8" y="981" width="1.4" height="15.0" fill="rgb(244,133,40)" rx="2" ry="2" />
<text x="1181.79" y="991.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (2 samples, 0.24%)</title><rect x="1153.6" y="773" width="2.8" height="15.0" fill="rgb(237,182,2)" rx="2" ry="2" />
<text x="1156.56" y="783.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::try_fold::he3505b00773c765b (18 samples, 2.14%)</title><rect x="26.8" y="501" width="25.2" height="15.0" fill="rgb(206,41,45)" rx="2" ry="2" />
<text x="29.82" y="511.5" >_..</text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::hfe70ed3f423a623e (1 samples, 0.12%)</title><rect x="1164.8" y="949" width="1.4" height="15.0" fill="rgb(247,6,4)" rx="2" ry="2" />
<text x="1167.77" y="959.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.48%)</title><rect x="576.2" y="613" width="5.6" height="15.0" fill="rgb(253,28,49)" rx="2" ry="2" />
<text x="579.18" y="623.5" ></text>
</g>
<g >
<title>elf_machine_rela (1 samples, 0.12%)</title><rect x="1183.0" y="901" width="1.4" height="15.0" fill="rgb(247,39,32)" rx="2" ry="2" />
<text x="1185.99" y="911.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (1 samples, 0.12%)</title><rect x="18.4" y="757" width="1.4" height="15.0" fill="rgb(209,79,42)" rx="2" ry="2" />
<text x="21.41" y="767.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="1077.9" y="677" width="1.4" height="15.0" fill="rgb(209,212,45)" rx="2" ry="2" />
<text x="1080.89" y="687.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::position_to_section_end::h5dc1dd305b840c66 (6 samples, 0.71%)</title><rect x="304.3" y="661" width="8.4" height="15.0" fill="rgb(224,88,18)" rx="2" ry="2" />
<text x="307.30" y="671.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::next_function::hbef1985a853e1f1c (1 samples, 0.12%)</title><rect x="1156.4" y="885" width="1.4" height="15.0" fill="rgb(240,8,48)" rx="2" ry="2" />
<text x="1159.37" y="895.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (10 samples, 1.19%)</title><rect x="160.0" y="421" width="14.0" height="15.0" fill="rgb(226,51,38)" rx="2" ry="2" />
<text x="162.95" y="431.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (3 samples, 0.36%)</title><rect x="543.9" y="725" width="4.2" height="15.0" fill="rgb(241,161,12)" rx="2" ry="2" />
<text x="546.94" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (1 samples, 0.12%)</title><rect x="49.2" y="245" width="1.4" height="15.0" fill="rgb(213,172,18)" rx="2" ry="2" />
<text x="52.24" y="255.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (10 samples, 1.19%)</title><rect x="429.0" y="661" width="14.0" height="15.0" fill="rgb(218,77,16)" rx="2" ry="2" />
<text x="432.03" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::OpcodeConstraints::is_polymorphic::hc202f4a3234fe7e3 (1 samples, 0.12%)</title><rect x="32.4" y="261" width="1.4" height="15.0" fill="rgb(226,126,1)" rx="2" ry="2" />
<text x="35.42" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (4 samples, 0.48%)</title><rect x="748.6" y="613" width="5.6" height="15.0" fill="rgb(222,147,43)" rx="2" ry="2" />
<text x="751.55" y="623.5" ></text>
</g>
<g >
<title>rayon_core::registry::main_loop::h72a0a21a5d22980c (54 samples, 6.41%)</title><rect x="56.2" y="725" width="75.7" height="15.0" fill="rgb(249,201,25)" rx="2" ry="2" />
<text x="59.25" y="735.5" >rayon_co..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h944558584d274714 (3 samples, 0.36%)</title><rect x="883.1" y="693" width="4.2" height="15.0" fill="rgb(223,211,39)" rx="2" ry="2" />
<text x="886.09" y="703.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (1 samples, 0.12%)</title><rect x="1119.9" y="677" width="1.4" height="15.0" fill="rgb(238,227,5)" rx="2" ry="2" />
<text x="1122.93" y="687.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::call::_$u7b$$u7b$closure$u7d$$u7d$::h9b7a3e35dcd0fb28 (4 samples, 0.48%)</title><rect x="138.9" y="581" width="5.6" height="15.0" fill="rgb(243,164,6)" rx="2" ry="2" />
<text x="141.93" y="591.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::build::ha8d1f5ec74a7f537 (3 samples, 0.36%)</title><rect x="932.1" y="773" width="4.2" height="15.0" fill="rgb(238,96,18)" rx="2" ry="2" />
<text x="935.14" y="783.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::hf2b0ef99cef1d806 (5 samples, 0.59%)</title><rect x="401.0" y="613" width="7.0" height="15.0" fill="rgb(247,144,19)" rx="2" ry="2" />
<text x="404.00" y="623.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hfccf8a1e9c2168fb (2 samples, 0.24%)</title><rect x="678.5" y="661" width="2.8" height="15.0" fill="rgb(238,118,11)" rx="2" ry="2" />
<text x="681.48" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9 samples, 1.07%)</title><rect x="618.2" y="581" width="12.6" height="15.0" fill="rgb(224,51,1)" rx="2" ry="2" />
<text x="621.22" y="591.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (5 samples, 0.59%)</title><rect x="321.1" y="661" width="7.0" height="15.0" fill="rgb(209,78,15)" rx="2" ry="2" />
<text x="324.12" y="671.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::discovery_stack_push_successors_of::h1d35cd4c4d8172b7 (1 samples, 0.12%)</title><rect x="36.6" y="293" width="1.4" height="15.0" fill="rgb(234,207,50)" rx="2" ry="2" />
<text x="39.63" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::dce::h79fe4c0e32d92217 (1 samples, 0.12%)</title><rect x="1159.2" y="853" width="1.4" height="15.0" fill="rgb(217,75,44)" rx="2" ry="2" />
<text x="1162.17" y="863.5" ></text>
</g>
<g >
<title>__GI___libc_free (2 samples, 0.24%)</title><rect x="703.7" y="581" width="2.8" height="15.0" fill="rgb(207,30,13)" rx="2" ry="2" />
<text x="706.71" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (4 samples, 0.48%)</title><rect x="714.9" y="613" width="5.6" height="15.0" fill="rgb(247,97,6)" rx="2" ry="2" />
<text x="717.92" y="623.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportInternalBuilder$LT$F$GT$::func::hf72c20b844a68e8b (1 samples, 0.12%)</title><rect x="972.8" y="773" width="1.4" height="15.0" fill="rgb(222,78,38)" rx="2" ry="2" />
<text x="975.78" y="783.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (1 samples, 0.12%)</title><rect x="1136.7" y="869" width="1.4" height="15.0" fill="rgb(220,180,54)" rx="2" ry="2" />
<text x="1139.75" y="879.5" ></text>
</g>
<g >
<title>_$LT$alloc..boxed..Box$LT$$u5b$T$u5d$$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h1f7b02c61a5be24f (1 samples, 0.12%)</title><rect x="260.9" y="469" width="1.4" height="15.0" fill="rgb(231,58,3)" rx="2" ry="2" />
<text x="263.86" y="479.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hb4a449e1981e37ff (1 samples, 0.12%)</title><rect x="242.6" y="597" width="1.4" height="15.0" fill="rgb(247,216,14)" rx="2" ry="2" />
<text x="245.64" y="607.5" ></text>
</g>
<g >
<title>core::ptr::drop_in_place::h592ca176503daf9b (2 samples, 0.24%)</title><rect x="235.6" y="645" width="2.8" height="15.0" fill="rgb(218,80,32)" rx="2" ry="2" />
<text x="238.63" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (1 samples, 0.12%)</title><rect x="35.2" y="341" width="1.4" height="15.0" fill="rgb(229,213,26)" rx="2" ry="2" />
<text x="38.23" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.24%)</title><rect x="239.8" y="581" width="2.8" height="15.0" fill="rgb(206,121,11)" rx="2" ry="2" />
<text x="242.83" y="591.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_wrapped::h474ff170e8a7fe75 (65 samples, 7.72%)</title><rect x="300.1" y="693" width="91.1" height="15.0" fill="rgb(213,152,40)" rx="2" ry="2" />
<text x="303.10" y="703.5" >wasmparser..</text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::EncInfo::byte_size::hcdc99e1fcb989a58 (1 samples, 0.12%)</title><rect x="47.8" y="197" width="1.4" height="15.0" fill="rgb(248,47,3)" rx="2" ry="2" />
<text x="50.84" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..ops..deref..Deref$GT$::deref::hfd12a9fb08e87af9 (1 samples, 0.12%)</title><rect x="1115.7" y="725" width="1.4" height="15.0" fill="rgb(235,215,8)" rx="2" ry="2" />
<text x="1118.72" y="735.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..FoldFolder$LT$C$C$ID$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::complete::he0524d75261d7b9b (1 samples, 0.12%)</title><rect x="52.0" y="581" width="1.4" height="15.0" fill="rgb(247,185,29)" rx="2" ry="2" />
<text x="55.04" y="591.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::hbf722bcd6e7798ca (1 samples, 0.12%)</title><rect x="148.7" y="245" width="1.4" height="15.0" fill="rgb(218,151,3)" rx="2" ry="2" />
<text x="151.74" y="255.5" ></text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::hd559e7dc258d625c (54 samples, 6.41%)</title><rect x="144.5" y="581" width="75.7" height="15.0" fill="rgb(254,75,8)" rx="2" ry="2" />
<text x="147.54" y="591.5" >core::op..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h3c219d273facdac8 (5 samples, 0.59%)</title><rect x="408.0" y="661" width="7.0" height="15.0" fill="rgb(230,76,28)" rx="2" ry="2" />
<text x="411.00" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (1 samples, 0.12%)</title><rect x="1145.2" y="693" width="1.4" height="15.0" fill="rgb(211,111,6)" rx="2" ry="2" />
<text x="1148.15" y="703.5" ></text>
</g>
<g >
<title>do_mmap (1 samples, 0.12%)</title><rect x="1153.6" y="757" width="1.4" height="15.0" fill="rgb(237,13,25)" rx="2" ry="2" />
<text x="1156.56" y="767.5" ></text>
</g>
<g >
<title>do_syscall_64 (2 samples, 0.24%)</title><rect x="272.1" y="661" width="2.8" height="15.0" fill="rgb(251,110,38)" rx="2" ry="2" />
<text x="275.07" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h485cc29838317297 (1 samples, 0.12%)</title><rect x="888.7" y="693" width="1.4" height="15.0" fill="rgb(245,13,29)" rx="2" ry="2" />
<text x="891.69" y="703.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::as_ptr::hbf50dbfeac1f0d0b (1 samples, 0.12%)</title><rect x="929.3" y="677" width="1.4" height="15.0" fill="rgb(236,76,3)" rx="2" ry="2" />
<text x="932.33" y="687.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h157ed2724d53216d (7 samples, 0.83%)</title><rect x="183.8" y="469" width="9.8" height="15.0" fill="rgb(221,117,46)" rx="2" ry="2" />
<text x="186.78" y="479.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (2 samples, 0.24%)</title><rect x="1117.1" y="773" width="2.8" height="15.0" fill="rgb(239,199,26)" rx="2" ry="2" />
<text x="1120.13" y="783.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hb51d8ed967c35200 (4 samples, 0.48%)</title><rect x="178.2" y="197" width="5.6" height="15.0" fill="rgb(254,10,5)" rx="2" ry="2" />
<text x="181.17" y="207.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (7 samples, 0.83%)</title><rect x="755.6" y="645" width="9.8" height="15.0" fill="rgb(229,138,4)" rx="2" ry="2" />
<text x="758.56" y="655.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc17e95ce2ef0494c (4 samples, 0.48%)</title><rect x="794.8" y="693" width="5.6" height="15.0" fill="rgb(250,211,35)" rx="2" ry="2" />
<text x="797.80" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (4 samples, 0.48%)</title><rect x="570.6" y="533" width="5.6" height="15.0" fill="rgb(223,23,27)" rx="2" ry="2" />
<text x="573.57" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (7 samples, 0.83%)</title><rect x="183.8" y="437" width="9.8" height="15.0" fill="rgb(227,73,45)" rx="2" ry="2" />
<text x="186.78" y="447.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h7a94668a26cc04ab (1 samples, 0.12%)</title><rect x="710.7" y="677" width="1.4" height="15.0" fill="rgb(208,112,10)" rx="2" ry="2" />
<text x="713.71" y="687.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (2 samples, 0.24%)</title><rect x="43.6" y="325" width="2.8" height="15.0" fill="rgb(247,5,21)" rx="2" ry="2" />
<text x="46.63" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::h4e8639fa8333930c (12 samples, 1.43%)</title><rect x="160.0" y="453" width="16.8" height="15.0" fill="rgb(231,70,46)" rx="2" ry="2" />
<text x="162.95" y="463.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h6df41647b1ac8e65 (2 samples, 0.24%)</title><rect x="147.3" y="261" width="2.8" height="15.0" fill="rgb(237,162,35)" rx="2" ry="2" />
<text x="150.34" y="271.5" ></text>
</g>
<g >
<title>core::ops::function::FnMut::call_mut::h06203316764f6cf9 (4 samples, 0.48%)</title><rect x="178.2" y="325" width="5.6" height="15.0" fill="rgb(217,51,1)" rx="2" ry="2" />
<text x="181.17" y="335.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (1 samples, 0.12%)</title><rect x="133.3" y="933" width="1.4" height="15.0" fill="rgb(241,97,14)" rx="2" ry="2" />
<text x="136.33" y="943.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (14 samples, 1.66%)</title><rect x="657.5" y="629" width="19.6" height="15.0" fill="rgb(223,180,34)" rx="2" ry="2" />
<text x="660.46" y="639.5" ></text>
</g>
<g >
<title>get_signal (1 samples, 0.12%)</title><rect x="1184.4" y="949" width="1.4" height="15.0" fill="rgb(250,101,27)" rx="2" ry="2" />
<text x="1187.39" y="959.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (2 samples, 0.24%)</title><rect x="604.2" y="613" width="2.8" height="15.0" fill="rgb(211,127,18)" rx="2" ry="2" />
<text x="607.20" y="623.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (1 samples, 0.12%)</title><rect x="133.3" y="997" width="1.4" height="15.0" fill="rgb(218,150,10)" rx="2" ry="2" />
<text x="136.33" y="1007.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hb58a0473b5b0f80a (1 samples, 0.12%)</title><rect x="40.8" y="133" width="1.4" height="15.0" fill="rgb(221,88,29)" rx="2" ry="2" />
<text x="43.83" y="143.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (4 samples, 0.48%)</title><rect x="981.2" y="645" width="5.6" height="15.0" fill="rgb(224,148,10)" rx="2" ry="2" />
<text x="984.19" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (15 samples, 1.78%)</title><rect x="447.2" y="629" width="21.1" height="15.0" fill="rgb(227,189,54)" rx="2" ry="2" />
<text x="450.24" y="639.5" ></text>
</g>
<g >
<title>core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$u64$GT$::hash::hf5044865cb5f1ba2 (1 samples, 0.12%)</title><rect x="49.2" y="213" width="1.4" height="15.0" fill="rgb(233,214,51)" rx="2" ry="2" />
<text x="52.24" y="223.5" ></text>
</g>
<g >
<title>alloc::alloc::dealloc::h42667113f7f8e200 (3 samples, 0.36%)</title><rect x="508.9" y="469" width="4.2" height="15.0" fill="rgb(239,103,25)" rx="2" ry="2" />
<text x="511.91" y="479.5" ></text>
</g>
<g >
<title>__GI___exp (2 samples, 0.24%)</title><rect x="1133.9" y="789" width="2.8" height="15.0" fill="rgb(231,77,50)" rx="2" ry="2" />
<text x="1136.94" y="799.5" ></text>
</g>
<g >
<title>_$LT$cranelift_entity..map..SecondaryMap$LT$K$C$V$GT$$u20$as$u20$core..ops..index..IndexMut$LT$K$GT$$GT$::index_mut::hfe46e276e6686186 (1 samples, 0.12%)</title><rect x="1156.4" y="837" width="1.4" height="15.0" fill="rgb(206,222,18)" rx="2" ry="2" />
<text x="1159.37" y="847.5" ></text>
</g>
<g >
<title>crossbeam_epoch::atomic::Shared$LT$T$GT$::tag::he4746be307d34f12 (7 samples, 0.83%)</title><rect x="103.9" y="293" width="9.8" height="15.0" fill="rgb(207,5,49)" rx="2" ry="2" />
<text x="106.90" y="303.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h6411c4ea31a2ffea (1 samples, 0.12%)</title><rect x="38.0" y="165" width="1.4" height="15.0" fill="rgb(251,66,11)" rx="2" ry="2" />
<text x="41.03" y="175.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee3881c87900a473 (1 samples, 0.12%)</title><rect x="493.5" y="629" width="1.4" height="15.0" fill="rgb(238,228,14)" rx="2" ry="2" />
<text x="496.49" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hf8fad25ce05c6de4 (5 samples, 0.59%)</title><rect x="176.8" y="453" width="7.0" height="15.0" fill="rgb(221,120,40)" rx="2" ry="2" />
<text x="179.77" y="463.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::get::ha0991e47a4480c24 (3 samples, 0.36%)</title><rect x="478.1" y="629" width="4.2" height="15.0" fill="rgb(212,78,10)" rx="2" ry="2" />
<text x="481.08" y="639.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..FunctionType$u20$as$u20$core..clone..Clone$GT$::clone::hbe1e5d6f2746011c (8 samples, 0.95%)</title><rect x="200.6" y="293" width="11.2" height="15.0" fill="rgb(209,13,20)" rx="2" ry="2" />
<text x="203.59" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (1 samples, 0.12%)</title><rect x="26.8" y="213" width="1.4" height="15.0" fill="rgb(215,90,5)" rx="2" ry="2" />
<text x="29.82" y="223.5" ></text>
</g>
<g >
<title>std::io::impls::_$LT$impl$u20$std..io..Write$u20$for$u20$alloc..vec..Vec$LT$u8$GT$$GT$::write_all::h10a6238cd3a5773f (14 samples, 1.66%)</title><rect x="615.4" y="709" width="19.6" height="15.0" fill="rgb(238,188,11)" rx="2" ry="2" />
<text x="618.42" y="719.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::resize::h68c1c816968d170d (1 samples, 0.12%)</title><rect x="43.6" y="149" width="1.4" height="15.0" fill="rgb(245,107,51)" rx="2" ry="2" />
<text x="46.63" y="159.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::Producer::fold_with::h97a9f6e1edeed240 (1 samples, 0.12%)</title><rect x="54.8" y="629" width="1.4" height="15.0" fill="rgb(227,175,13)" rx="2" ry="2" />
<text x="57.85" y="639.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (1 samples, 0.12%)</title><rect x="32.4" y="341" width="1.4" height="15.0" fill="rgb(218,66,16)" rx="2" ry="2" />
<text x="35.42" y="351.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (1 samples, 0.12%)</title><rect x="825.6" y="629" width="1.4" height="15.0" fill="rgb(205,86,33)" rx="2" ry="2" />
<text x="828.63" y="639.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..Fold$LT$I$C$ID$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h4f82d0cf6a1d5b5e (3 samples, 0.36%)</title><rect x="52.0" y="789" width="4.2" height="15.0" fill="rgb(236,55,27)" rx="2" ry="2" />
<text x="55.04" y="799.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::visit_ebb_header::h8064795cbf4485f6 (1 samples, 0.12%)</title><rect x="1166.2" y="805" width="1.4" height="15.0" fill="rgb(229,58,21)" rx="2" ry="2" />
<text x="1169.18" y="815.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (3 samples, 0.36%)</title><rect x="52.0" y="965" width="4.2" height="15.0" fill="rgb(222,160,25)" rx="2" ry="2" />
<text x="55.04" y="975.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2 samples, 0.24%)</title><rect x="968.6" y="629" width="2.8" height="15.0" fill="rgb(208,53,1)" rx="2" ry="2" />
<text x="971.57" y="639.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (6 samples, 0.71%)</title><rect x="817.2" y="629" width="8.4" height="15.0" fill="rgb(236,84,20)" rx="2" ry="2" />
<text x="820.22" y="639.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (18 samples, 2.14%)</title><rect x="26.8" y="789" width="25.2" height="15.0" fill="rgb(254,96,1)" rx="2" ry="2" />
<text x="29.82" y="799.5" >_..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h1e5ad451b6bb5a1c (1 samples, 0.12%)</title><rect x="1164.8" y="293" width="1.4" height="15.0" fill="rgb(223,148,14)" rx="2" ry="2" />
<text x="1167.77" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (1 samples, 0.12%)</title><rect x="1159.2" y="837" width="1.4" height="15.0" fill="rgb(249,141,47)" rx="2" ry="2" />
<text x="1162.17" y="847.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (1 samples, 0.12%)</title><rect x="15.6" y="789" width="1.4" height="15.0" fill="rgb(231,223,50)" rx="2" ry="2" />
<text x="18.61" y="799.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3 samples, 0.36%)</title><rect x="841.0" y="597" width="4.2" height="15.0" fill="rgb(249,104,48)" rx="2" ry="2" />
<text x="844.05" y="607.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (1 samples, 0.12%)</title><rect x="133.3" y="837" width="1.4" height="15.0" fill="rgb(236,25,41)" rx="2" ry="2" />
<text x="136.33" y="847.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::inst_args::h152c3178006f4dc9 (1 samples, 0.12%)</title><rect x="17.0" y="821" width="1.4" height="15.0" fill="rgb(235,31,6)" rx="2" ry="2" />
<text x="20.01" y="831.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="710.7" y="613" width="1.4" height="15.0" fill="rgb(215,133,39)" rx="2" ry="2" />
<text x="713.71" y="623.5" ></text>
</g>
<g >
<title>_$LT$alloc..raw_vec..RawVec$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h370d58ac748f9e1d (3 samples, 0.36%)</title><rect x="549.5" y="773" width="4.3" height="15.0" fill="rgb(240,32,5)" rx="2" ry="2" />
<text x="552.55" y="783.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (7 samples, 0.83%)</title><rect x="721.9" y="629" width="9.8" height="15.0" fill="rgb(237,222,14)" rx="2" ry="2" />
<text x="724.92" y="639.5" ></text>
</g>
<g >
<title>_$LT$rocinante..stoke..whitelist..WhitelistedInstruction$u20$as$u20$core..convert..Into$LT$parity_wasm..elements..ops..Instruction$GT$$GT$::into::h5f1dadaada7ba2b4 (2 samples, 0.24%)</title><rect x="1117.1" y="757" width="2.8" height="15.0" fill="rgb(212,94,5)" rx="2" ry="2" />
<text x="1120.13" y="767.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1 samples, 0.12%)</title><rect x="130.5" y="581" width="1.4" height="15.0" fill="rgb(215,57,27)" rx="2" ry="2" />
<text x="133.52" y="591.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..FilterMap$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::hb1e4ba75de543cf0 (45 samples, 5.34%)</title><rect x="56.2" y="629" width="63.1" height="15.0" fill="rgb(228,27,20)" rx="2" ry="2" />
<text x="59.25" y="639.5" >_$LT$c..</text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="14.2" y="629" width="1.4" height="15.0" fill="rgb(209,102,13)" rx="2" ry="2" />
<text x="17.20" y="639.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::with_handle::h3bcab61c99ca1a36 (2 samples, 0.24%)</title><rect x="61.9" y="437" width="2.8" height="15.0" fill="rgb(245,34,28)" rx="2" ry="2" />
<text x="64.85" y="447.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (2 samples, 0.24%)</title><rect x="678.5" y="533" width="2.8" height="15.0" fill="rgb(237,204,44)" rx="2" ry="2" />
<text x="681.48" y="543.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h365a4956706fb90b (67 samples, 7.96%)</title><rect x="137.5" y="789" width="93.9" height="15.0" fill="rgb(222,27,10)" rx="2" ry="2" />
<text x="140.53" y="799.5" >_$LT$alloc...</text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="445.8" y="645" width="1.4" height="15.0" fill="rgb(216,30,9)" rx="2" ry="2" />
<text x="448.84" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_call_abi::hfe91bd1ce81b1bda (1 samples, 0.12%)</title><rect x="12.8" y="821" width="1.4" height="15.0" fill="rgb(226,127,19)" rx="2" ry="2" />
<text x="15.80" y="831.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::for_each::hdfae5276e6378f7a (8 samples, 0.95%)</title><rect x="200.6" y="437" width="11.2" height="15.0" fill="rgb(231,50,49)" rx="2" ry="2" />
<text x="203.59" y="447.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::hd992d75b05e204e4 (1 samples, 0.12%)</title><rect x="1164.8" y="309" width="1.4" height="15.0" fill="rgb(210,205,51)" rx="2" ry="2" />
<text x="1167.77" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h1a56249d6b059ecc (3 samples, 0.36%)</title><rect x="508.9" y="549" width="4.2" height="15.0" fill="rgb(230,12,10)" rx="2" ry="2" />
<text x="511.91" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 1.43%)</title><rect x="447.2" y="565" width="16.9" height="15.0" fill="rgb(238,229,24)" rx="2" ry="2" />
<text x="450.24" y="575.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="710.7" y="597" width="1.4" height="15.0" fill="rgb(251,76,49)" rx="2" ry="2" />
<text x="713.71" y="607.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::new::hf0442d05d9065032 (1 samples, 0.12%)</title><rect x="389.8" y="645" width="1.4" height="15.0" fill="rgb(230,106,40)" rx="2" ry="2" />
<text x="392.79" y="655.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (2 samples, 0.24%)</title><rect x="11.4" y="853" width="2.8" height="15.0" fill="rgb(226,216,8)" rx="2" ry="2" />
<text x="14.40" y="863.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_with::ha333629c74cf0349 (1 samples, 0.12%)</title><rect x="1145.2" y="757" width="1.4" height="15.0" fill="rgb(251,209,9)" rx="2" ry="2" />
<text x="1148.15" y="767.5" ></text>
</g>
<g >
<title>cranelift_codegen::timing::loop_analysis::haf8b9e8bc2f9bb74 (1 samples, 0.12%)</title><rect x="31.0" y="325" width="1.4" height="15.0" fill="rgb(247,91,52)" rx="2" ry="2" />
<text x="34.02" y="335.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::export::h45c432c055497ceb (4 samples, 0.48%)</title><rect x="1056.9" y="773" width="5.6" height="15.0" fill="rgb(215,225,19)" rx="2" ry="2" />
<text x="1059.86" y="783.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="1055.5" y="597" width="1.4" height="15.0" fill="rgb(235,175,37)" rx="2" ry="2" />
<text x="1058.46" y="607.5" ></text>
</g>
<g >
<title>__rdl_realloc (1 samples, 0.12%)</title><rect x="728.9" y="549" width="1.4" height="15.0" fill="rgb(218,100,33)" rx="2" ry="2" />
<text x="731.93" y="559.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="745.7" y="597" width="1.4" height="15.0" fill="rgb(242,199,11)" rx="2" ry="2" />
<text x="748.75" y="607.5" ></text>
</g>
<g >
<title>rayon::iter::extend::collect::h3ca5cf21a6ef6fc7 (18 samples, 2.14%)</title><rect x="26.8" y="869" width="25.2" height="15.0" fill="rgb(244,182,21)" rx="2" ry="2" />
<text x="29.82" y="879.5" >r..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::he47ef2c016165dfd (5 samples, 0.59%)</title><rect x="490.7" y="693" width="7.0" height="15.0" fill="rgb(237,120,12)" rx="2" ry="2" />
<text x="493.69" y="703.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (5 samples, 0.59%)</title><rect x="416.4" y="629" width="7.0" height="15.0" fill="rgb(221,129,47)" rx="2" ry="2" />
<text x="419.41" y="639.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (1 samples, 0.12%)</title><rect x="1143.8" y="645" width="1.4" height="15.0" fill="rgb(227,229,37)" rx="2" ry="2" />
<text x="1146.75" y="655.5" ></text>
</g>
<g >
<title>core::core_arch::x86::avx2::_mm256_xor_si256::h6152607e2bad4993 (1 samples, 0.12%)</title><rect x="860.7" y="469" width="1.4" height="15.0" fill="rgb(228,182,35)" rx="2" ry="2" />
<text x="863.67" y="479.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h90e65d88636e5868 (4 samples, 0.48%)</title><rect x="839.6" y="645" width="5.6" height="15.0" fill="rgb(242,171,51)" rx="2" ry="2" />
<text x="842.64" y="655.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="916.7" y="629" width="2.8" height="15.0" fill="rgb(212,111,36)" rx="2" ry="2" />
<text x="919.72" y="639.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::realloc::hcd83f00949ef61b7 (16 samples, 1.90%)</title><rect x="986.8" y="661" width="22.4" height="15.0" fill="rgb(212,130,0)" rx="2" ry="2" />
<text x="989.79" y="671.5" >_..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::dealloc::he85cee57277ad8fe (1 samples, 0.12%)</title><rect x="53.4" y="517" width="1.4" height="15.0" fill="rgb(228,33,15)" rx="2" ry="2" />
<text x="56.44" y="527.5" ></text>
</g>
<g >
<title>alloc::alloc::box_free::h3f6d521b743d9c6b (2 samples, 0.24%)</title><rect x="309.9" y="597" width="2.8" height="15.0" fill="rgb(244,41,46)" rx="2" ry="2" />
<text x="312.90" y="607.5" ></text>
</g>
<g >
<title>do_signal (1 samples, 0.12%)</title><rect x="130.5" y="533" width="1.4" height="15.0" fill="rgb(243,42,18)" rx="2" ry="2" />
<text x="133.52" y="543.5" ></text>
</g>
<g >
<title>__GI___mprotect (5 samples, 0.59%)</title><rect x="1146.6" y="853" width="7.0" height="15.0" fill="rgb(237,174,41)" rx="2" ry="2" />
<text x="1149.56" y="863.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::ModuleBuilder$LT$F$GT$::push_function::h7554dfb48b7714e9 (19 samples, 2.26%)</title><rect x="904.1" y="741" width="26.6" height="15.0" fill="rgb(235,98,6)" rx="2" ry="2" />
<text x="907.11" y="751.5" >p..</text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (1 samples, 0.12%)</title><rect x="26.8" y="245" width="1.4" height="15.0" fill="rgb(205,226,30)" rx="2" ry="2" />
<text x="29.82" y="255.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_export_entry::hf3747c7326593aeb (3 samples, 0.36%)</title><rect x="478.1" y="693" width="4.2" height="15.0" fill="rgb(235,82,10)" rx="2" ry="2" />
<text x="481.08" y="703.5" ></text>
</g>
<g >
<title>do_munmap (2 samples, 0.24%)</title><rect x="239.8" y="533" width="2.8" height="15.0" fill="rgb(238,37,14)" rx="2" ry="2" />
<text x="242.83" y="543.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1 samples, 0.12%)</title><rect x="1166.2" y="981" width="1.4" height="15.0" fill="rgb(242,180,39)" rx="2" ry="2" />
<text x="1169.18" y="991.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::push::h89db889745348b31 (7 samples, 0.83%)</title><rect x="950.4" y="725" width="9.8" height="15.0" fill="rgb(245,229,2)" rx="2" ry="2" />
<text x="953.36" y="735.5" ></text>
</g>
<g >
<title>sys_mprotect (2 samples, 0.24%)</title><rect x="267.9" y="645" width="2.8" height="15.0" fill="rgb(248,119,31)" rx="2" ry="2" />
<text x="270.86" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve_internal::hcf3d786abf97b98e (1 samples, 0.12%)</title><rect x="1164.8" y="261" width="1.4" height="15.0" fill="rgb(207,67,7)" rx="2" ry="2" />
<text x="1167.77" y="271.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::ha30f67eb2d5591bc (7 samples, 0.83%)</title><rect x="950.4" y="709" width="9.8" height="15.0" fill="rgb(214,146,36)" rx="2" ry="2" />
<text x="953.36" y="719.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::dealloc_buffer::h84c21c5945b333e3 (4 samples, 0.48%)</title><rect x="794.8" y="661" width="5.6" height="15.0" fill="rgb(248,217,16)" rx="2" ry="2" />
<text x="797.80" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h01793e171da5d8f3 (1 samples, 0.12%)</title><rect x="1145.2" y="725" width="1.4" height="15.0" fill="rgb(219,178,2)" rx="2" ry="2" />
<text x="1148.15" y="735.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::is_empty_singleton::hbf06c6b4f364cab6 (1 samples, 0.12%)</title><rect x="1163.4" y="613" width="1.4" height="15.0" fill="rgb(216,88,43)" rx="2" ry="2" />
<text x="1166.37" y="623.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (1 samples, 0.12%)</title><rect x="686.9" y="565" width="1.4" height="15.0" fill="rgb(240,27,18)" rx="2" ry="2" />
<text x="689.89" y="575.5" ></text>
</g>
<g >
<title>rand::Rng::gen::h504438ad48295b1b (5 samples, 0.59%)</title><rect x="855.1" y="805" width="7.0" height="15.0" fill="rgb(248,75,4)" rx="2" ry="2" />
<text x="858.06" y="815.5" ></text>
</g>
<g >
<title>sys_mprotect (1 samples, 0.12%)</title><rect x="1178.8" y="933" width="1.4" height="15.0" fill="rgb(242,116,7)" rx="2" ry="2" />
<text x="1181.79" y="943.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::wait_until_cold::_$u7b$$u7b$closure$u7d$$u7d$::hfc619a60c016c236 (45 samples, 5.34%)</title><rect x="56.2" y="661" width="63.1" height="15.0" fill="rgb(254,141,14)" rx="2" ry="2" />
<text x="59.25" y="671.5" >rayon_..</text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::leaf_pos::h68bb3ef1a4910217 (1 samples, 0.12%)</title><rect x="36.6" y="245" width="1.4" height="15.0" fill="rgb(205,73,4)" rx="2" ry="2" />
<text x="39.63" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="218.8" y="389" width="1.4" height="15.0" fill="rgb(217,150,38)" rx="2" ry="2" />
<text x="221.81" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::visit_ebb::hfbb99e781486252b (2 samples, 0.24%)</title><rect x="43.6" y="293" width="2.8" height="15.0" fill="rgb(242,209,52)" rx="2" ry="2" />
<text x="46.63" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::redundant_reload_remover::h3b19c7f5183108c1 (2 samples, 0.24%)</title><rect x="36.6" y="357" width="2.8" height="15.0" fill="rgb(231,41,16)" rx="2" ry="2" />
<text x="39.63" y="367.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (5 samples, 0.59%)</title><rect x="416.4" y="613" width="7.0" height="15.0" fill="rgb(209,191,37)" rx="2" ry="2" />
<text x="419.41" y="623.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1 samples, 0.12%)</title><rect x="1164.8" y="389" width="1.4" height="15.0" fill="rgb(223,204,21)" rx="2" ry="2" />
<text x="1167.77" y="399.5" ></text>
</g>
<g >
<title>_$LT$rayon_core..registry..DefaultSpawn$u20$as$u20$rayon_core..registry..ThreadSpawn$GT$::spawn::_$u7b$$u7b$closure$u7d$$u7d$::h7c1db058f3db78b5 (54 samples, 6.41%)</title><rect x="56.2" y="757" width="75.7" height="15.0" fill="rgb(248,58,48)" rx="2" ry="2" />
<text x="59.25" y="767.5" >_$LT$ray..</text>
</g>
<g >
<title>_int_malloc (4 samples, 0.48%)</title><rect x="402.4" y="517" width="5.6" height="15.0" fill="rgb(221,56,39)" rx="2" ry="2" />
<text x="405.40" y="527.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..scopeguard..ScopeGuard$LT$T$C$F$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h6d7c430f3ab5f821 (1 samples, 0.12%)</title><rect x="1163.4" y="661" width="1.4" height="15.0" fill="rgb(235,86,11)" rx="2" ry="2" />
<text x="1166.37" y="671.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.24%)</title><rect x="272.1" y="677" width="2.8" height="15.0" fill="rgb(206,195,45)" rx="2" ry="2" />
<text x="275.07" y="687.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::reserve::h6507a92d246332a3 (1 samples, 0.12%)</title><rect x="825.6" y="581" width="1.4" height="15.0" fill="rgb(222,166,22)" rx="2" ry="2" />
<text x="828.63" y="591.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1 samples, 0.12%)</title><rect x="615.4" y="661" width="1.4" height="15.0" fill="rgb(226,80,32)" rx="2" ry="2" />
<text x="618.42" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::h0534366145995b31 (4 samples, 0.48%)</title><rect x="284.7" y="613" width="5.6" height="15.0" fill="rgb(222,145,52)" rx="2" ry="2" />
<text x="287.68" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc6d82cbb8afffde2 (1 samples, 0.12%)</title><rect x="710.7" y="709" width="1.4" height="15.0" fill="rgb(206,137,20)" rx="2" ry="2" />
<text x="713.71" y="719.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::_$LT$impl$u20$parity_wasm..elements..Serialize$u20$for$u20$alloc..string..String$GT$::serialize::hbcf4284c2e1d5750 (17 samples, 2.02%)</title><rect x="721.9" y="693" width="23.8" height="15.0" fill="rgb(229,189,42)" rx="2" ry="2" />
<text x="724.92" y="703.5" >p..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (5 samples, 0.59%)</title><rect x="714.9" y="661" width="7.0" height="15.0" fill="rgb(245,215,8)" rx="2" ry="2" />
<text x="717.92" y="671.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (5 samples, 0.59%)</title><rect x="831.2" y="629" width="7.0" height="15.0" fill="rgb(220,164,18)" rx="2" ry="2" />
<text x="834.24" y="639.5" ></text>
</g>
<g >
<title>alloc::alloc::realloc::h3f21532e792f0ab0 (19 samples, 2.26%)</title><rect x="1079.3" y="693" width="26.6" height="15.0" fill="rgb(224,170,44)" rx="2" ry="2" />
<text x="1082.29" y="703.5" >a..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint7$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h578fe398302931fa (5 samples, 0.59%)</title><rect x="714.9" y="677" width="7.0" height="15.0" fill="rgb(222,76,17)" rx="2" ry="2" />
<text x="717.92" y="687.5" ></text>
</g>
<g >
<title>try_charge (1 samples, 0.12%)</title><rect x="864.9" y="645" width="1.4" height="15.0" fill="rgb(254,180,53)" rx="2" ry="2" />
<text x="867.87" y="655.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hdd14d76e5467070d (2 samples, 0.24%)</title><rect x="1131.1" y="709" width="2.8" height="15.0" fill="rgb(222,153,9)" rx="2" ry="2" />
<text x="1134.14" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::shuffle_inputs::h3dd9d7e34f59fafc (1 samples, 0.12%)</title><rect x="40.8" y="261" width="1.4" height="15.0" fill="rgb(218,65,35)" rx="2" ry="2" />
<text x="43.83" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$I$GT$$GT$::spec_extend::hb2bbfcdee389be27 (5 samples, 0.59%)</title><rect x="176.8" y="469" width="7.0" height="15.0" fill="rgb(210,156,14)" rx="2" ry="2" />
<text x="179.77" y="479.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (1 samples, 0.12%)</title><rect x="860.7" y="549" width="1.4" height="15.0" fill="rgb(252,172,30)" rx="2" ry="2" />
<text x="863.67" y="559.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h345e4e91cc5fe1aa (58 samples, 6.89%)</title><rect x="138.9" y="741" width="81.3" height="15.0" fill="rgb(246,172,22)" rx="2" ry="2" />
<text x="141.93" y="751.5" >alloc::ve..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarUint32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1f5eb1f003a6381f (6 samples, 0.71%)</title><rect x="817.2" y="661" width="8.4" height="15.0" fill="rgb(229,215,29)" rx="2" ry="2" />
<text x="820.22" y="671.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (5 samples, 0.59%)</title><rect x="468.3" y="645" width="7.0" height="15.0" fill="rgb(234,134,23)" rx="2" ry="2" />
<text x="471.27" y="655.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$parity_wasm..io..Write$GT$::write::hfcc8d197ef7c0ff8 (14 samples, 1.66%)</title><rect x="615.4" y="725" width="19.6" height="15.0" fill="rgb(225,213,38)" rx="2" ry="2" />
<text x="618.42" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (1 samples, 0.12%)</title><rect x="47.8" y="341" width="1.4" height="15.0" fill="rgb(234,134,16)" rx="2" ry="2" />
<text x="50.84" y="351.5" ></text>
</g>
<g >
<title>rayon::iter::ParallelIterator::collect::h5cb93bb22494d324 (3 samples, 0.36%)</title><rect x="52.0" y="949" width="4.2" height="15.0" fill="rgb(235,29,37)" rx="2" ry="2" />
<text x="55.04" y="959.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.12%)</title><rect x="33.8" y="197" width="1.4" height="15.0" fill="rgb(245,139,17)" rx="2" ry="2" />
<text x="36.82" y="207.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h95f90c81e7a80323 (3 samples, 0.36%)</title><rect x="500.5" y="613" width="4.2" height="15.0" fill="rgb(251,171,20)" rx="2" ry="2" />
<text x="503.50" y="623.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (1 samples, 0.12%)</title><rect x="1136.7" y="853" width="1.4" height="15.0" fill="rgb(219,95,12)" rx="2" ry="2" />
<text x="1139.75" y="863.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (4 samples, 0.48%)</title><rect x="409.4" y="629" width="5.6" height="15.0" fill="rgb(243,89,44)" rx="2" ry="2" />
<text x="412.41" y="639.5" ></text>
</g>
<g >
<title>perf_iterate_sb (2 samples, 0.24%)</title><rect x="272.1" y="549" width="2.8" height="15.0" fill="rgb(239,37,35)" rx="2" ry="2" />
<text x="275.07" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.36%)</title><rect x="500.5" y="565" width="4.2" height="15.0" fill="rgb(237,120,39)" rx="2" ry="2" />
<text x="503.50" y="575.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.83%)</title><rect x="1167.6" y="997" width="9.8" height="15.0" fill="rgb(219,127,16)" rx="2" ry="2" />
<text x="1170.58" y="1007.5" ></text>
</g>
<g >
<title>alloc::alloc::box_free::hd59ec360321c9737 (1 samples, 0.12%)</title><rect x="235.6" y="613" width="1.4" height="15.0" fill="rgb(247,77,13)" rx="2" ry="2" />
<text x="238.63" y="623.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Map$LT$I$C$F$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h053c4e0e67e6e8b2 (2 samples, 0.24%)</title><rect x="21.2" y="789" width="2.8" height="15.0" fill="rgb(235,217,35)" rx="2" ry="2" />
<text x="24.21" y="799.5" ></text>
</g>
<g >
<title>rayon_core::registry::ThreadBuilder::run::h8d06e03c16a2976b (54 samples, 6.41%)</title><rect x="56.2" y="741" width="75.7" height="15.0" fill="rgb(228,48,20)" rx="2" ry="2" />
<text x="59.25" y="751.5" >rayon_co..</text>
</g>
<g >
<title>irq_exit (1 samples, 0.12%)</title><rect x="793.4" y="581" width="1.4" height="15.0" fill="rgb(239,202,23)" rx="2" ry="2" />
<text x="796.40" y="591.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::amortized_new_size::h0b6e5bbe2be9b343 (1 samples, 0.12%)</title><rect x="730.3" y="581" width="1.4" height="15.0" fill="rgb(243,124,34)" rx="2" ry="2" />
<text x="733.33" y="591.5" ></text>
</g>
<g >
<title>_int_realloc (1 samples, 0.12%)</title><rect x="700.9" y="517" width="1.4" height="15.0" fill="rgb(219,57,35)" rx="2" ry="2" />
<text x="703.90" y="527.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::_$u7b$$u7b$closure$u7d$$u7d$::hf4bada587247f390 (1 samples, 0.12%)</title><rect x="151.5" y="53" width="1.4" height="15.0" fill="rgb(228,49,31)" rx="2" ry="2" />
<text x="154.54" y="63.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::licm::h79ab553c4f0bced2 (1 samples, 0.12%)</title><rect x="33.8" y="357" width="1.4" height="15.0" fill="rgb(254,61,2)" rx="2" ry="2" />
<text x="36.82" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::clear::h05970a69149e154e (1 samples, 0.12%)</title><rect x="1163.4" y="693" width="1.4" height="15.0" fill="rgb(233,129,3)" rx="2" ry="2" />
<text x="1166.37" y="703.5" ></text>
</g>
<g >
<title>core::option::Option$LT$T$GT$::as_ref::h8c952bbf1be6a930 (1 samples, 0.12%)</title><rect x="344.9" y="661" width="1.4" height="15.0" fill="rgb(227,44,32)" rx="2" ry="2" />
<text x="347.94" y="671.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.48%)</title><rect x="167.0" y="389" width="5.6" height="15.0" fill="rgb(212,182,49)" rx="2" ry="2" />
<text x="169.96" y="399.5" ></text>
</g>
<g >
<title>core::iter::adapters::map_fold::_$u7b$$u7b$closure$u7d$$u7d$::h5a55d9238bbbd0b1 (2 samples, 0.24%)</title><rect x="151.5" y="85" width="2.8" height="15.0" fill="rgb(218,129,26)" rx="2" ry="2" />
<text x="154.54" y="95.5" ></text>
</g>
<g >
<title>sys_clone (7 samples, 0.83%)</title><rect x="1167.6" y="965" width="9.8" height="15.0" fill="rgb(249,196,23)" rx="2" ry="2" />
<text x="1170.58" y="975.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::process_begin_section::h7080e929563a9e6b (1 samples, 0.12%)</title><rect x="486.5" y="693" width="1.4" height="15.0" fill="rgb(225,49,41)" rx="2" ry="2" />
<text x="489.48" y="703.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h070f084bdf923dd1 (3 samples, 0.36%)</title><rect x="827.0" y="661" width="4.2" height="15.0" fill="rgb(245,205,53)" rx="2" ry="2" />
<text x="830.03" y="671.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (1 samples, 0.12%)</title><rect x="1150.8" y="741" width="1.4" height="15.0" fill="rgb(214,188,53)" rx="2" ry="2" />
<text x="1153.76" y="751.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..Type$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1038c9c3f65f373e (23 samples, 2.73%)</title><rect x="813.0" y="709" width="32.2" height="15.0" fill="rgb(251,155,9)" rx="2" ry="2" />
<text x="816.02" y="719.5" >_$..</text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (18 samples, 2.14%)</title><rect x="26.8" y="661" width="25.2" height="15.0" fill="rgb(211,32,42)" rx="2" ry="2" />
<text x="29.82" y="671.5" >r..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedListWriter$LT$I$C$T$GT$$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h5603426d24cd66e0 (15 samples, 1.78%)</title><rect x="771.0" y="725" width="21.0" height="15.0" fill="rgb(229,121,12)" rx="2" ry="2" />
<text x="773.97" y="735.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::spill_call_arguments::h7c8569664b42f645 (1 samples, 0.12%)</title><rect x="12.8" y="805" width="1.4" height="15.0" fill="rgb(207,198,28)" rx="2" ry="2" />
<text x="15.80" y="815.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (4 samples, 0.48%)</title><rect x="733.1" y="661" width="5.6" height="15.0" fill="rgb(244,79,12)" rx="2" ry="2" />
<text x="736.14" y="671.5" ></text>
</g>
<g >
<title>core::hash::impls::_$LT$impl$u20$core..hash..Hash$u20$for$u20$str$GT$::hash::h34c0559131ca6fcb (1 samples, 0.12%)</title><rect x="479.5" y="581" width="1.4" height="15.0" fill="rgb(225,98,6)" rx="2" ry="2" />
<text x="482.48" y="591.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::_$LT$impl$u20$rand..distributions..Distribution$LT$rocinante..stoke..transform..Transform$GT$$u20$for$u20$rand..distributions..Standard$GT$::sample::h28e691fa9c3e419a (5 samples, 0.59%)</title><rect x="855.1" y="789" width="7.0" height="15.0" fill="rgb(230,37,23)" rx="2" ry="2" />
<text x="858.06" y="799.5" ></text>
</g>
<g >
<title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h68a6f528c140c0fd (55 samples, 6.53%)</title><rect x="56.2" y="901" width="77.1" height="15.0" fill="rgb(247,187,37)" rx="2" ry="2" />
<text x="59.25" y="911.5" >core::op..</text>
</g>
<g >
<title>__rdl_alloc (1 samples, 0.12%)</title><rect x="946.2" y="629" width="1.4" height="15.0" fill="rgb(242,0,35)" rx="2" ry="2" />
<text x="949.15" y="639.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2 samples, 0.24%)</title><rect x="239.8" y="597" width="2.8" height="15.0" fill="rgb(228,60,30)" rx="2" ry="2" />
<text x="242.83" y="607.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h6caaba4120224c5f (5 samples, 0.59%)</title><rect x="490.7" y="709" width="7.0" height="15.0" fill="rgb(206,26,11)" rx="2" ry="2" />
<text x="493.69" y="719.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::try_fold::h011a45fd973f253b (1 samples, 0.12%)</title><rect x="1164.8" y="485" width="1.4" height="15.0" fill="rgb(237,36,41)" rx="2" ry="2" />
<text x="1167.77" y="495.5" ></text>
</g>
<g >
<title>[[vdso]] (1 samples, 0.12%)</title><rect x="31.0" y="213" width="1.4" height="15.0" fill="rgb(248,103,7)" rx="2" ry="2" />
<text x="34.02" y="223.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h344fecc530e670c4 (7 samples, 0.83%)</title><rect x="755.6" y="661" width="9.8" height="15.0" fill="rgb(212,49,2)" rx="2" ry="2" />
<text x="758.56" y="671.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2 samples, 0.24%)</title><rect x="1131.1" y="645" width="2.8" height="15.0" fill="rgb(251,107,25)" rx="2" ry="2" />
<text x="1134.14" y="655.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..CountedWriter$LT$W$GT$$u20$as$u20$parity_wasm..io..Write$GT$::write::h464395a4f3f171d3 (6 samples, 0.71%)</title><rect x="804.6" y="693" width="8.4" height="15.0" fill="rgb(207,172,47)" rx="2" ry="2" />
<text x="807.61" y="703.5" ></text>
</g>
<g >
<title>_int_malloc (1 samples, 0.12%)</title><rect x="1143.8" y="597" width="1.4" height="15.0" fill="rgb(226,152,4)" rx="2" ry="2" />
<text x="1146.75" y="607.5" ></text>
</g>
<g >
<title>vma_merge (1 samples, 0.12%)</title><rect x="269.3" y="597" width="1.4" height="15.0" fill="rgb(250,52,48)" rx="2" ry="2" />
<text x="272.26" y="607.5" ></text>
</g>
<g >
<title>__GI___libc_free (1 samples, 0.12%)</title><rect x="493.5" y="501" width="1.4" height="15.0" fill="rgb(231,94,37)" rx="2" ry="2" />
<text x="496.49" y="511.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hc24a2d55e4fad70f (1 samples, 0.12%)</title><rect x="252.4" y="709" width="1.4" height="15.0" fill="rgb(233,35,46)" rx="2" ry="2" />
<text x="255.45" y="719.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (1 samples, 0.12%)</title><rect x="33.8" y="325" width="1.4" height="15.0" fill="rgb(243,72,32)" rx="2" ry="2" />
<text x="36.82" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..Type$u20$as$u20$core..clone..Clone$GT$::clone::hdaab7e6c844122dc (8 samples, 0.95%)</title><rect x="200.6" y="309" width="11.2" height="15.0" fill="rgb(239,147,27)" rx="2" ry="2" />
<text x="203.59" y="319.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..fold..Fold$LT$I$C$ID$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h4f82d0cf6a1d5b5e (1 samples, 0.12%)</title><rect x="1164.8" y="821" width="1.4" height="15.0" fill="rgb(222,215,13)" rx="2" ry="2" />
<text x="1167.77" y="831.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..Map$LT$I$C$F$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h27c57577c909f566 (1 samples, 0.12%)</title><rect x="1164.8" y="789" width="1.4" height="15.0" fill="rgb(250,150,10)" rx="2" ry="2" />
<text x="1167.77" y="799.5" ></text>
</g>
<g >
<title>_int_free (1 samples, 0.12%)</title><rect x="583.2" y="677" width="1.4" height="15.0" fill="rgb(246,125,31)" rx="2" ry="2" />
<text x="586.18" y="687.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h010a5395a2aefdc6 (7 samples, 0.83%)</title><rect x="150.1" y="261" width="9.9" height="15.0" fill="rgb(208,57,26)" rx="2" ry="2" />
<text x="153.14" y="271.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment