Skip to content

Instantly share code, notes, and snippets.

@taegyunkim
Last active February 17, 2020 16:33
Show Gist options
  • Save taegyunkim/3247966447e08324df049d02cbf22b80 to your computer and use it in GitHub Desktop.
Save taegyunkim/3247966447e08324df049d02cbf22b80 to your computer and use it in GitHub Desktop.
CPU time analysis for `cargo run --release ./examples/hackers_delight/p7.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="550" onload="init(evt)" viewBox="0 0 1200 550" 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="550.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="533" > </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="533" > </text>
<g id="frames">
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (4 samples, 0.01%)</title><rect x="18.1" y="261" width="0.1" height="15.0" fill="rgb(230,147,53)" rx="2" ry="2" />
<text x="21.05" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::spill_call_arguments::h7c8569664b42f645 (3 samples, 0.01%)</title><rect x="15.1" y="261" width="0.1" height="15.0" fill="rgb(225,33,43)" rx="2" ry="2" />
<text x="18.07" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (35 samples, 0.12%)</title><rect x="333.3" y="373" width="1.5" height="15.0" fill="rgb(205,99,36)" rx="2" ry="2" />
<text x="336.30" y="383.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (4 samples, 0.01%)</title><rect x="1087.2" y="165" width="0.2" height="15.0" fill="rgb(245,10,2)" rx="2" ry="2" />
<text x="1090.19" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (3 samples, 0.01%)</title><rect x="1185.8" y="293" width="0.2" height="15.0" fill="rgb(231,154,53)" rx="2" ry="2" />
<text x="1188.85" y="303.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..Section$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h99e337bc9a43ca35 (1,695 samples, 6.02%)</title><rect x="234.9" y="389" width="71.1" height="15.0" fill="rgb(244,188,49)" rx="2" ry="2" />
<text x="237.90" y="399.5" >_$LT$par..</text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.9971861265714738260 (11 samples, 0.04%)</title><rect x="1173.2" y="405" width="0.5" height="15.0" fill="rgb(253,127,47)" rx="2" ry="2" />
<text x="1176.23" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (6 samples, 0.02%)</title><rect x="35.5" y="229" width="0.2" height="15.0" fill="rgb(219,119,9)" rx="2" ry="2" />
<text x="38.49" y="239.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="62.6" y="165" width="0.2" height="15.0" fill="rgb(210,100,52)" rx="2" ry="2" />
<text x="65.62" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (6 samples, 0.02%)</title><rect x="27.3" y="229" width="0.3" height="15.0" fill="rgb(251,134,12)" rx="2" ry="2" />
<text x="30.32" y="239.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (16 samples, 0.06%)</title><rect x="1158.5" y="261" width="0.6" height="15.0" fill="rgb(213,82,5)" rx="2" ry="2" />
<text x="1161.47" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (12 samples, 0.04%)</title><rect x="25.9" y="245" width="0.5" height="15.0" fill="rgb(208,220,52)" rx="2" ry="2" />
<text x="28.89" y="255.5" ></text>
</g>
<g >
<title>__libc_siglongjmp (3 samples, 0.01%)</title><rect x="10.3" y="405" width="0.1" height="15.0" fill="rgb(250,95,25)" rx="2" ry="2" />
<text x="13.25" y="415.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1951080d9ca0b938 (1,853 samples, 6.58%)</title><rect x="231.8" y="405" width="77.7" height="15.0" fill="rgb(251,186,42)" rx="2" ry="2" />
<text x="234.80" y="415.5" >_$LT$par..</text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.1993498855596296840 (6 samples, 0.02%)</title><rect x="114.3" y="325" width="0.3" height="15.0" fill="rgb(242,225,21)" rx="2" ry="2" />
<text x="117.31" y="335.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 (439 samples, 1.56%)</title><rect x="110.5" y="357" width="18.4" height="15.0" fill="rgb(224,202,7)" rx="2" ry="2" />
<text x="113.50" y="367.5" ></text>
</g>
<g >
<title>schedule (3 samples, 0.01%)</title><rect x="49.5" y="197" width="0.1" height="15.0" fill="rgb(244,180,35)" rx="2" ry="2" />
<text x="52.45" y="207.5" ></text>
</g>
<g >
<title>get_mem_cgroup_from_mm (4 samples, 0.01%)</title><rect x="1159.7" y="261" width="0.2" height="15.0" fill="rgb(214,122,29)" rx="2" ry="2" />
<text x="1162.73" y="271.5" ></text>
</g>
<g >
<title>_int_free (6 samples, 0.02%)</title><rect x="63.0" y="149" width="0.3" height="15.0" fill="rgb(214,118,34)" rx="2" ry="2" />
<text x="66.04" y="159.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (17 samples, 0.06%)</title><rect x="61.0" y="165" width="0.7" height="15.0" fill="rgb(220,39,47)" rx="2" ry="2" />
<text x="63.98" y="175.5" ></text>
</g>
<g >
<title>crossbeam_deque::Stealer$LT$T$GT$::steal::h6b48c94d436504c3 (17 samples, 0.06%)</title><rect x="48.7" y="245" width="0.7" height="15.0" fill="rgb(231,32,32)" rx="2" ry="2" />
<text x="51.70" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (3 samples, 0.01%)</title><rect x="22.7" y="293" width="0.2" height="15.0" fill="rgb(218,14,1)" rx="2" ry="2" />
<text x="25.75" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="74.2" y="181" width="0.2" height="15.0" fill="rgb(220,109,37)" rx="2" ry="2" />
<text x="77.23" y="191.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (82 samples, 0.29%)</title><rect x="1180.3" y="421" width="3.5" height="15.0" fill="rgb(221,156,19)" rx="2" ry="2" />
<text x="1183.31" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (11 samples, 0.04%)</title><rect x="1142.2" y="245" width="0.5" height="15.0" fill="rgb(206,144,43)" rx="2" ry="2" />
<text x="1145.20" y="255.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (37 samples, 0.13%)</title><rect x="74.8" y="213" width="1.6" height="15.0" fill="rgb(206,147,23)" rx="2" ry="2" />
<text x="77.82" y="223.5" ></text>
</g>
<g >
<title>_int_free (60 samples, 0.21%)</title><rect x="367.5" y="341" width="2.5" height="15.0" fill="rgb(243,71,38)" rx="2" ry="2" />
<text x="370.51" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (27 samples, 0.10%)</title><rect x="1184.6" y="453" width="1.2" height="15.0" fill="rgb(254,110,26)" rx="2" ry="2" />
<text x="1187.63" y="463.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (4 samples, 0.01%)</title><rect x="10.8" y="453" width="0.2" height="15.0" fill="rgb(251,195,39)" rx="2" ry="2" />
<text x="13.84" y="463.5" ></text>
</g>
<g >
<title>_int_realloc (906 samples, 3.22%)</title><rect x="1104.8" y="341" width="38.0" height="15.0" fill="rgb(233,125,21)" rx="2" ry="2" />
<text x="1107.85" y="351.5" >_in..</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 (549 samples, 1.95%)</title><rect x="23.8" y="325" width="23.0" height="15.0" fill="rgb(216,41,18)" rx="2" ry="2" />
<text x="26.79" y="335.5" >_..</text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::unzip::h894cb0151c0f7fd8 (3 samples, 0.01%)</title><rect x="116.1" y="325" width="0.1" height="15.0" fill="rgb(225,140,14)" rx="2" ry="2" />
<text x="119.08" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (3 samples, 0.01%)</title><rect x="1186.3" y="309" width="0.1" height="15.0" fill="rgb(250,26,42)" rx="2" ry="2" />
<text x="1189.31" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::do_unwind::h30a2256d0dd1db30 (3 samples, 0.01%)</title><rect x="10.3" y="421" width="0.1" height="15.0" fill="rgb(244,7,46)" rx="2" ry="2" />
<text x="13.25" y="431.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (3 samples, 0.01%)</title><rect x="28.0" y="181" width="0.2" height="15.0" fill="rgb(247,186,6)" rx="2" ry="2" />
<text x="31.03" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="385.0" y="357" width="0.1" height="15.0" fill="rgb(251,4,19)" rx="2" ry="2" />
<text x="387.96" y="367.5" ></text>
</g>
<g >
<title>__vma_adjust (3 samples, 0.01%)</title><rect x="117.5" y="197" width="0.1" height="15.0" fill="rgb(205,73,23)" rx="2" ry="2" />
<text x="120.46" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_free (64 samples, 0.23%)</title><rect x="367.3" y="357" width="2.7" height="15.0" fill="rgb(221,193,14)" rx="2" ry="2" />
<text x="370.35" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (4 samples, 0.01%)</title><rect x="123.1" y="325" width="0.1" height="15.0" fill="rgb(226,107,30)" rx="2" ry="2" />
<text x="126.08" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (5 samples, 0.02%)</title><rect x="36.7" y="213" width="0.3" height="15.0" fill="rgb(232,187,51)" rx="2" ry="2" />
<text x="39.75" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (2,510 samples, 8.92%)</title><rect x="110.1" y="389" width="105.3" height="15.0" fill="rgb(246,177,10)" rx="2" ry="2" />
<text x="113.12" y="399.5" >wasmer_runti..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (202 samples, 0.72%)</title><rect x="36.2" y="245" width="8.4" height="15.0" fill="rgb(218,195,43)" rx="2" ry="2" />
<text x="39.16" y="255.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (6 samples, 0.02%)</title><rect x="305.7" y="357" width="0.3" height="15.0" fill="rgb(246,34,36)" rx="2" ry="2" />
<text x="308.71" y="367.5" ></text>
</g>
<g >
<title>_int_free (20 samples, 0.07%)</title><rect x="1175.2" y="373" width="0.9" height="15.0" fill="rgb(205,67,25)" rx="2" ry="2" />
<text x="1178.24" y="383.5" ></text>
</g>
<g >
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (3 samples, 0.01%)</title><rect x="204.3" y="325" width="0.1" height="15.0" fill="rgb(208,208,48)" rx="2" ry="2" />
<text x="207.29" y="335.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (4 samples, 0.01%)</title><rect x="49.6" y="437" width="0.1" height="15.0" fill="rgb(243,194,16)" rx="2" ry="2" />
<text x="52.58" y="447.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (4 samples, 0.01%)</title><rect x="25.6" y="261" width="0.1" height="15.0" fill="rgb(233,225,30)" rx="2" ry="2" />
<text x="28.56" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (9 samples, 0.03%)</title><rect x="43.8" y="213" width="0.3" height="15.0" fill="rgb(244,168,22)" rx="2" ry="2" />
<text x="46.75" y="223.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (3 samples, 0.01%)</title><rect x="60.9" y="149" width="0.1" height="15.0" fill="rgb(246,78,4)" rx="2" ry="2" />
<text x="63.86" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (4 samples, 0.01%)</title><rect x="30.6" y="181" width="0.2" height="15.0" fill="rgb(248,83,53)" rx="2" ry="2" />
<text x="33.63" y="191.5" ></text>
</g>
<g >
<title>perf_event_mmap (5 samples, 0.02%)</title><rect x="1087.2" y="197" width="0.2" height="15.0" fill="rgb(209,169,8)" rx="2" ry="2" />
<text x="1090.15" y="207.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (3 samples, 0.01%)</title><rect x="32.3" y="197" width="0.1" height="15.0" fill="rgb(232,59,1)" rx="2" ry="2" />
<text x="35.31" y="207.5" ></text>
</g>
<g >
<title>libc_feholdsetround_sse_ctx (3 samples, 0.01%)</title><rect x="224.7" y="389" width="0.1" height="15.0" fill="rgb(231,124,23)" rx="2" ry="2" />
<text x="227.67" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (7 samples, 0.02%)</title><rect x="60.4" y="165" width="0.3" height="15.0" fill="rgb(246,15,4)" rx="2" ry="2" />
<text x="63.40" y="175.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (13 samples, 0.05%)</title><rect x="369.4" y="181" width="0.5" height="15.0" fill="rgb(247,81,25)" rx="2" ry="2" />
<text x="372.40" y="191.5" ></text>
</g>
<g >
<title>_int_malloc (28 samples, 0.10%)</title><rect x="1170.0" y="357" width="1.1" height="15.0" fill="rgb(240,179,15)" rx="2" ry="2" />
<text x="1172.96" y="367.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (4 samples, 0.01%)</title><rect x="166.3" y="293" width="0.2" height="15.0" fill="rgb(211,216,7)" rx="2" ry="2" />
<text x="169.35" y="303.5" ></text>
</g>
<g >
<title>_int_free (10 samples, 0.04%)</title><rect x="63.3" y="149" width="0.4" height="15.0" fill="rgb(213,75,34)" rx="2" ry="2" />
<text x="66.29" y="159.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h047612b5d9b59568E.llvm.1312411216417185755 (113 samples, 0.40%)</title><rect x="219.1" y="421" width="4.7" height="15.0" fill="rgb(209,85,44)" rx="2" ry="2" />
<text x="222.09" y="431.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="120.5" y="277" width="0.1" height="15.0" fill="rgb(249,225,31)" rx="2" ry="2" />
<text x="123.52" y="287.5" ></text>
</g>
<g >
<title>z3::solver::_$LT$impl$u20$z3..Solver$GT$::check::hbf78416cda00d0a7 (18,355 samples, 65.22%)</title><rect x="391.7" y="405" width="769.5" height="15.0" fill="rgb(237,150,12)" rx="2" ry="2" />
<text x="394.66" y="415.5" >z3::solver::_$LT$impl$u20$z3..Solver$GT$::check::hbf78416cda00d0a7</text>
</g>
<g >
<title>perf_iterate_ctx (8 samples, 0.03%)</title><rect x="125.8" y="197" width="0.3" height="15.0" fill="rgb(229,30,50)" rx="2" ry="2" />
<text x="128.76" y="207.5" ></text>
</g>
<g >
<title>GOMP_critical_name_end (447 samples, 1.59%)</title><rect x="1019.1" y="357" width="18.7" height="15.0" fill="rgb(221,53,51)" rx="2" ry="2" />
<text x="1022.10" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.02%)</title><rect x="82.4" y="181" width="0.2" height="15.0" fill="rgb(230,212,10)" rx="2" ry="2" />
<text x="85.37" y="191.5" ></text>
</g>
<g >
<title>handle_mm_fault (9 samples, 0.03%)</title><rect x="1115.3" y="261" width="0.4" height="15.0" fill="rgb(210,227,28)" rx="2" ry="2" />
<text x="1118.33" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (3 samples, 0.01%)</title><rect x="47.6" y="309" width="0.1" height="15.0" fill="rgb(218,88,47)" rx="2" ry="2" />
<text x="50.61" y="319.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (6 samples, 0.02%)</title><rect x="108.8" y="197" width="0.3" height="15.0" fill="rgb(245,4,4)" rx="2" ry="2" />
<text x="111.82" y="207.5" ></text>
</g>
<g >
<title>_int_free (25 samples, 0.09%)</title><rect x="155.6" y="277" width="1.1" height="15.0" fill="rgb(230,95,48)" rx="2" ry="2" />
<text x="158.61" y="287.5" ></text>
</g>
<g >
<title>sysmalloc (10 samples, 0.04%)</title><rect x="1087.1" y="325" width="0.4" height="15.0" fill="rgb(211,172,24)" rx="2" ry="2" />
<text x="1090.07" y="335.5" ></text>
</g>
<g >
<title>std::basic_ios&lt;char, std::char_traits&lt;char&gt; &gt;::init(std::basic_streambuf&lt;char, std::char_traits&lt;char&gt; &gt;*) (3 samples, 0.01%)</title><rect x="1161.0" y="357" width="0.2" height="15.0" fill="rgb(223,202,14)" rx="2" ry="2" />
<text x="1164.03" y="367.5" ></text>
</g>
<g >
<title>handle_mm_fault (4 samples, 0.01%)</title><rect x="1145.6" y="293" width="0.2" height="15.0" fill="rgb(246,66,4)" rx="2" ry="2" />
<text x="1148.64" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (46 samples, 0.16%)</title><rect x="168.8" y="309" width="1.9" height="15.0" fill="rgb(238,137,30)" rx="2" ry="2" />
<text x="171.82" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="124.3" y="293" width="0.1" height="15.0" fill="rgb(227,73,17)" rx="2" ry="2" />
<text x="127.25" y="303.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (3 samples, 0.01%)</title><rect x="84.7" y="245" width="0.1" height="15.0" fill="rgb(218,29,0)" rx="2" ry="2" />
<text x="87.71" y="255.5" ></text>
</g>
<g >
<title>core::fmt::write::h1f444f4312eb6c27 (4 samples, 0.01%)</title><rect x="1180.1" y="325" width="0.2" height="15.0" fill="rgb(246,140,31)" rx="2" ry="2" />
<text x="1183.15" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hd388a75a7e96e17c (271 samples, 0.96%)</title><rect x="269.5" y="325" width="11.3" height="15.0" fill="rgb(211,22,17)" rx="2" ry="2" />
<text x="272.49" y="335.5" ></text>
</g>
<g >
<title>_start (834 samples, 2.96%)</title><rect x="49.9" y="453" width="35.0" height="15.0" fill="rgb(237,138,44)" rx="2" ry="2" />
<text x="52.91" y="463.5" >_s..</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (49 samples, 0.17%)</title><rect x="1187.9" y="421" width="2.1" height="15.0" fill="rgb(240,93,40)" rx="2" ry="2" />
<text x="1190.95" y="431.5" ></text>
</g>
<g >
<title>core::ops::function::FnOnce::call_once$u7b$$u7b$vtable.shim$u7d$$u7d$::h68a6f528c140c0fd (25 samples, 0.09%)</title><rect x="48.5" y="357" width="1.1" height="15.0" fill="rgb(238,207,37)" rx="2" ry="2" />
<text x="51.53" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (4 samples, 0.01%)</title><rect x="48.4" y="389" width="0.1" height="15.0" fill="rgb(235,64,40)" rx="2" ry="2" />
<text x="51.36" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (29 samples, 0.10%)</title><rect x="127.6" y="293" width="1.2" height="15.0" fill="rgb(228,54,48)" rx="2" ry="2" />
<text x="130.61" y="303.5" ></text>
</g>
<g >
<title>malloc_consolidate (15 samples, 0.05%)</title><rect x="111.9" y="277" width="0.6" height="15.0" fill="rgb(213,137,26)" rx="2" ry="2" />
<text x="114.88" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (7 samples, 0.02%)</title><rect x="1115.4" y="245" width="0.3" height="15.0" fill="rgb(225,163,12)" rx="2" ry="2" />
<text x="1118.37" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.02%)</title><rect x="41.3" y="165" width="0.2" height="15.0" fill="rgb(246,34,45)" rx="2" ry="2" />
<text x="44.32" y="175.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (8 samples, 0.03%)</title><rect x="107.6" y="197" width="0.4" height="15.0" fill="rgb(217,130,5)" rx="2" ry="2" />
<text x="110.65" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (27 samples, 0.10%)</title><rect x="1184.6" y="389" width="1.2" height="15.0" fill="rgb(213,69,42)" rx="2" ry="2" />
<text x="1187.63" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (24 samples, 0.09%)</title><rect x="31.6" y="245" width="1.0" height="15.0" fill="rgb(211,9,36)" rx="2" ry="2" />
<text x="34.63" y="255.5" ></text>
</g>
<g >
<title>sys_brk (6 samples, 0.02%)</title><rect x="1087.2" y="229" width="0.2" height="15.0" fill="rgb(211,42,8)" rx="2" ry="2" />
<text x="1090.15" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (16 samples, 0.06%)</title><rect x="111.8" y="293" width="0.7" height="15.0" fill="rgb(227,141,38)" rx="2" ry="2" />
<text x="114.84" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (3 samples, 0.01%)</title><rect x="40.1" y="213" width="0.2" height="15.0" fill="rgb(254,226,54)" rx="2" ry="2" />
<text x="43.15" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (3 samples, 0.01%)</title><rect x="1183.5" y="261" width="0.2" height="15.0" fill="rgb(212,155,1)" rx="2" ry="2" />
<text x="1186.54" y="271.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (4 samples, 0.01%)</title><rect x="52.9" y="197" width="0.2" height="15.0" fill="rgb(226,206,45)" rx="2" ry="2" />
<text x="55.89" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (4 samples, 0.01%)</title><rect x="124.2" y="309" width="0.2" height="15.0" fill="rgb(218,27,50)" rx="2" ry="2" />
<text x="127.21" y="319.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (174 samples, 0.62%)</title><rect x="55.3" y="181" width="7.3" height="15.0" fill="rgb(240,108,40)" rx="2" ry="2" />
<text x="58.32" y="191.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="31.0" y="149" width="0.1" height="15.0" fill="rgb(223,189,2)" rx="2" ry="2" />
<text x="33.96" y="159.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (833 samples, 2.96%)</title><rect x="50.0" y="277" width="34.9" height="15.0" fill="rgb(221,3,15)" rx="2" ry="2" />
<text x="52.96" y="287.5" >ro..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7f206f0262523e6d (6 samples, 0.02%)</title><rect x="206.1" y="293" width="0.3" height="15.0" fill="rgb(238,210,46)" rx="2" ry="2" />
<text x="209.14" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (17 samples, 0.06%)</title><rect x="342.5" y="389" width="0.7" height="15.0" fill="rgb(236,187,18)" rx="2" ry="2" />
<text x="345.48" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h9a9591bdce17bec5 (39 samples, 0.14%)</title><rect x="328.4" y="389" width="1.6" height="15.0" fill="rgb(228,24,42)" rx="2" ry="2" />
<text x="331.40" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (11 samples, 0.04%)</title><rect x="1184.8" y="325" width="0.5" height="15.0" fill="rgb(221,201,20)" rx="2" ry="2" />
<text x="1187.80" y="335.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (8 samples, 0.03%)</title><rect x="107.6" y="213" width="0.4" height="15.0" fill="rgb(224,178,37)" rx="2" ry="2" />
<text x="110.65" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (5 samples, 0.02%)</title><rect x="1182.3" y="309" width="0.2" height="15.0" fill="rgb(235,4,22)" rx="2" ry="2" />
<text x="1185.29" y="319.5" ></text>
</g>
<g >
<title>free@plt (3 samples, 0.01%)</title><rect x="84.9" y="453" width="0.1" height="15.0" fill="rgb(225,35,36)" rx="2" ry="2" />
<text x="87.92" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (18 samples, 0.06%)</title><rect x="1185.8" y="389" width="0.7" height="15.0" fill="rgb(244,137,20)" rx="2" ry="2" />
<text x="1188.77" y="399.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 (19 samples, 0.07%)</title><rect x="68.6" y="181" width="0.8" height="15.0" fill="rgb(236,187,9)" rx="2" ry="2" />
<text x="71.57" y="191.5" ></text>
</g>
<g >
<title>_ZN3std10sys_common9backtrace28__rust_begin_short_backtrace17ha8f073e9b0fe5d28E.llvm.8055091970093994922 (25 samples, 0.09%)</title><rect x="48.5" y="309" width="1.1" height="15.0" fill="rgb(214,194,44)" rx="2" ry="2" />
<text x="51.53" y="319.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="47.8" y="277" width="0.1" height="15.0" fill="rgb(207,51,30)" rx="2" ry="2" />
<text x="50.82" y="287.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (2,721 samples, 9.67%)</title><rect x="105.0" y="421" width="114.1" height="15.0" fill="rgb(237,73,25)" rx="2" ry="2" />
<text x="108.01" y="431.5" >_$LT$rocinante..</text>
</g>
<g >
<title>__GI___libc_realloc (10 samples, 0.04%)</title><rect x="72.6" y="133" width="0.4" height="15.0" fill="rgb(221,98,44)" rx="2" ry="2" />
<text x="75.56" y="143.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="76.4" y="213" width="0.1" height="15.0" fill="rgb(238,229,51)" rx="2" ry="2" />
<text x="79.37" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (51 samples, 0.18%)</title><rect x="172.2" y="325" width="2.1" height="15.0" fill="rgb(249,134,52)" rx="2" ry="2" />
<text x="175.17" y="335.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.01%)</title><rect x="116.5" y="277" width="0.1" height="15.0" fill="rgb(230,86,46)" rx="2" ry="2" />
<text x="119.50" y="287.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 (28 samples, 0.10%)</title><rect x="68.4" y="213" width="1.2" height="15.0" fill="rgb(215,79,5)" rx="2" ry="2" />
<text x="71.45" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (15 samples, 0.05%)</title><rect x="23.0" y="309" width="0.6" height="15.0" fill="rgb(253,179,10)" rx="2" ry="2" />
<text x="26.00" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (82 samples, 0.29%)</title><rect x="1180.3" y="357" width="3.5" height="15.0" fill="rgb(212,209,51)" rx="2" ry="2" />
<text x="1183.31" y="367.5" ></text>
</g>
<g >
<title>do_syscall_64 (32 samples, 0.11%)</title><rect x="112.8" y="277" width="1.3" height="15.0" fill="rgb(251,144,15)" rx="2" ry="2" />
<text x="115.81" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (58 samples, 0.21%)</title><rect x="99.8" y="373" width="2.4" height="15.0" fill="rgb(219,194,18)" rx="2" ry="2" />
<text x="102.81" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::new::h6b2b81b0d4ac791a (4 samples, 0.01%)</title><rect x="207.1" y="309" width="0.2" height="15.0" fill="rgb(242,33,39)" rx="2" ry="2" />
<text x="210.14" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (7 samples, 0.02%)</title><rect x="1184.3" y="245" width="0.3" height="15.0" fill="rgb(208,96,40)" rx="2" ry="2" />
<text x="1187.30" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (4 samples, 0.01%)</title><rect x="34.2" y="245" width="0.2" height="15.0" fill="rgb(251,65,32)" rx="2" ry="2" />
<text x="37.23" y="255.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (36 samples, 0.13%)</title><rect x="106.9" y="357" width="1.5" height="15.0" fill="rgb(222,143,15)" rx="2" ry="2" />
<text x="109.94" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (3 samples, 0.01%)</title><rect x="119.2" y="309" width="0.1" height="15.0" fill="rgb(251,5,24)" rx="2" ry="2" />
<text x="122.18" y="319.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (3 samples, 0.01%)</title><rect x="118.8" y="133" width="0.1" height="15.0" fill="rgb(219,216,18)" rx="2" ry="2" />
<text x="121.80" y="143.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (3 samples, 0.01%)</title><rect x="1145.7" y="261" width="0.1" height="15.0" fill="rgb(252,56,13)" rx="2" ry="2" />
<text x="1148.68" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (8 samples, 0.03%)</title><rect x="1185.4" y="325" width="0.4" height="15.0" fill="rgb(245,59,33)" rx="2" ry="2" />
<text x="1188.43" y="335.5" ></text>
</g>
<g >
<title>posix_cpu_clock_get_task (8 samples, 0.03%)</title><rect x="1187.0" y="373" width="0.4" height="15.0" fill="rgb(215,46,31)" rx="2" ry="2" />
<text x="1190.02" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (3 samples, 0.01%)</title><rect x="1182.7" y="293" width="0.1" height="15.0" fill="rgb(210,187,10)" rx="2" ry="2" />
<text x="1185.66" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="76.4" y="229" width="0.1" height="15.0" fill="rgb(217,93,26)" rx="2" ry="2" />
<text x="79.37" y="239.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (6 samples, 0.02%)</title><rect x="107.6" y="181" width="0.3" height="15.0" fill="rgb(254,3,6)" rx="2" ry="2" />
<text x="110.65" y="191.5" ></text>
</g>
<g >
<title>sys_brk (7 samples, 0.02%)</title><rect x="1070.3" y="229" width="0.3" height="15.0" fill="rgb(205,146,31)" rx="2" ry="2" />
<text x="1073.34" y="239.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (4 samples, 0.01%)</title><rect x="44.5" y="165" width="0.1" height="15.0" fill="rgb(252,216,20)" rx="2" ry="2" />
<text x="47.46" y="175.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 (25 samples, 0.09%)</title><rect x="48.5" y="373" width="1.1" height="15.0" fill="rgb(224,71,6)" rx="2" ry="2" />
<text x="51.53" y="383.5" ></text>
</g>
<g >
<title>release_pages (6 samples, 0.02%)</title><rect x="107.6" y="149" width="0.3" height="15.0" fill="rgb(213,20,41)" rx="2" ry="2" />
<text x="110.65" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.03%)</title><rect x="81.5" y="213" width="0.4" height="15.0" fill="rgb(234,209,43)" rx="2" ry="2" />
<text x="84.53" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (67 samples, 0.24%)</title><rect x="302.9" y="357" width="2.8" height="15.0" fill="rgb(234,112,46)" rx="2" ry="2" />
<text x="305.90" y="367.5" ></text>
</g>
<g >
<title>__GI___mprotect (33 samples, 0.12%)</title><rect x="112.8" y="309" width="1.3" height="15.0" fill="rgb(246,9,4)" rx="2" ry="2" />
<text x="115.76" y="319.5" ></text>
</g>
<g >
<title>_int_free (70 samples, 0.25%)</title><rect x="220.8" y="389" width="2.9" height="15.0" fill="rgb(220,26,27)" rx="2" ry="2" />
<text x="223.81" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (33 samples, 0.12%)</title><rect x="280.8" y="325" width="1.4" height="15.0" fill="rgb(240,21,48)" rx="2" ry="2" />
<text x="283.85" y="335.5" ></text>
</g>
<g >
<title>sys_mmap (28 samples, 0.10%)</title><rect x="127.6" y="261" width="1.2" height="15.0" fill="rgb(238,64,50)" rx="2" ry="2" />
<text x="130.65" y="271.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="110.6" y="325" width="0.2" height="15.0" fill="rgb(217,78,2)" rx="2" ry="2" />
<text x="113.63" y="335.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (3 samples, 0.01%)</title><rect x="1183.5" y="229" width="0.2" height="15.0" fill="rgb(212,135,4)" rx="2" ry="2" />
<text x="1186.54" y="239.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (16 samples, 0.06%)</title><rect x="108.5" y="341" width="0.7" height="15.0" fill="rgb(205,100,41)" rx="2" ry="2" />
<text x="111.49" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="54.6" y="117" width="0.3" height="15.0" fill="rgb(226,33,31)" rx="2" ry="2" />
<text x="57.61" y="127.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (4 samples, 0.01%)</title><rect x="65.8" y="245" width="0.2" height="15.0" fill="rgb(232,79,50)" rx="2" ry="2" />
<text x="68.85" y="255.5" ></text>
</g>
<g >
<title>operator delete(void*, std::nothrow_t const&amp;)@plt (3 samples, 0.01%)</title><rect x="85.6" y="453" width="0.1" height="15.0" fill="rgb(217,33,50)" rx="2" ry="2" />
<text x="88.55" y="463.5" ></text>
</g>
<g >
<title>systrim (15 samples, 0.05%)</title><rect x="369.4" y="325" width="0.6" height="15.0" fill="rgb(230,124,17)" rx="2" ry="2" />
<text x="372.40" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="36.6" y="197" width="0.1" height="15.0" fill="rgb(209,54,44)" rx="2" ry="2" />
<text x="39.62" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (15 samples, 0.05%)</title><rect x="15.2" y="293" width="0.7" height="15.0" fill="rgb(207,155,50)" rx="2" ry="2" />
<text x="18.24" y="303.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 (42 samples, 0.15%)</title><rect x="282.2" y="341" width="1.8" height="15.0" fill="rgb(224,140,45)" rx="2" ry="2" />
<text x="285.23" y="351.5" ></text>
</g>
<g >
<title>__lru_cache_add (5 samples, 0.02%)</title><rect x="1159.4" y="261" width="0.2" height="15.0" fill="rgb(224,165,52)" rx="2" ry="2" />
<text x="1162.35" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="77.0" y="229" width="0.3" height="15.0" fill="rgb(207,153,17)" rx="2" ry="2" />
<text x="80.04" y="239.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (3 samples, 0.01%)</title><rect x="73.0" y="149" width="0.1" height="15.0" fill="rgb(245,147,45)" rx="2" ry="2" />
<text x="76.02" y="159.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (8 samples, 0.03%)</title><rect x="62.1" y="149" width="0.3" height="15.0" fill="rgb(241,88,31)" rx="2" ry="2" />
<text x="65.07" y="159.5" ></text>
</g>
<g >
<title>sys_write (3 samples, 0.01%)</title><rect x="1180.1" y="85" width="0.2" height="15.0" fill="rgb(239,189,4)" rx="2" ry="2" />
<text x="1183.15" y="95.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 (10 samples, 0.04%)</title><rect x="1184.2" y="421" width="0.4" height="15.0" fill="rgb(216,32,30)" rx="2" ry="2" />
<text x="1187.21" y="431.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (3 samples, 0.01%)</title><rect x="1189.9" y="405" width="0.1" height="15.0" fill="rgb(252,205,0)" rx="2" ry="2" />
<text x="1192.87" y="415.5" ></text>
</g>
<g >
<title>__GI___default_morecore (6 samples, 0.02%)</title><rect x="1087.2" y="309" width="0.2" height="15.0" fill="rgb(238,8,46)" rx="2" ry="2" />
<text x="1090.15" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (18 samples, 0.06%)</title><rect x="30.8" y="197" width="0.8" height="15.0" fill="rgb(205,6,44)" rx="2" ry="2" />
<text x="33.80" y="207.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="239.7" y="357" width="0.1" height="15.0" fill="rgb(218,136,36)" rx="2" ry="2" />
<text x="242.72" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (18 samples, 0.06%)</title><rect x="1185.8" y="373" width="0.7" height="15.0" fill="rgb(235,171,44)" rx="2" ry="2" />
<text x="1188.77" y="383.5" ></text>
</g>
<g >
<title>alloc_pages_vma (17 samples, 0.06%)</title><rect x="1158.5" y="277" width="0.7" height="15.0" fill="rgb(217,171,38)" rx="2" ry="2" />
<text x="1161.47" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (3 samples, 0.01%)</title><rect x="29.5" y="133" width="0.1" height="15.0" fill="rgb(205,202,29)" rx="2" ry="2" />
<text x="32.45" y="143.5" ></text>
</g>
<g >
<title>_int_malloc (17 samples, 0.06%)</title><rect x="98.6" y="357" width="0.7" height="15.0" fill="rgb(238,107,35)" rx="2" ry="2" />
<text x="101.63" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (7 samples, 0.02%)</title><rect x="38.0" y="197" width="0.3" height="15.0" fill="rgb(227,177,8)" rx="2" ry="2" />
<text x="40.97" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (46 samples, 0.16%)</title><rect x="38.5" y="229" width="1.9" height="15.0" fill="rgb(239,29,19)" rx="2" ry="2" />
<text x="41.47" y="239.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (7 samples, 0.02%)</title><rect x="108.8" y="245" width="0.3" height="15.0" fill="rgb(227,218,31)" rx="2" ry="2" />
<text x="111.82" y="255.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (3 samples, 0.01%)</title><rect x="20.4" y="293" width="0.2" height="15.0" fill="rgb(253,21,13)" rx="2" ry="2" />
<text x="23.44" y="303.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (13 samples, 0.05%)</title><rect x="1168.9" y="357" width="0.5" height="15.0" fill="rgb(242,58,12)" rx="2" ry="2" />
<text x="1171.87" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (52 samples, 0.18%)</title><rect x="293.3" y="341" width="2.2" height="15.0" fill="rgb(214,80,51)" rx="2" ry="2" />
<text x="296.30" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="38.0" y="165" width="0.1" height="15.0" fill="rgb(251,198,14)" rx="2" ry="2" />
<text x="41.01" y="175.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (119 samples, 0.42%)</title><rect x="1173.9" y="405" width="5.0" height="15.0" fill="rgb(227,13,32)" rx="2" ry="2" />
<text x="1176.90" y="415.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::MiddlewareChain::run::hcbfec81dbf94244f (3 samples, 0.01%)</title><rect x="214.6" y="341" width="0.2" height="15.0" fill="rgb(247,110,19)" rx="2" ry="2" />
<text x="217.65" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="38.0" y="181" width="0.1" height="15.0" fill="rgb(224,189,51)" rx="2" ry="2" />
<text x="41.01" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="72.4" y="149" width="0.1" height="15.0" fill="rgb(244,9,14)" rx="2" ry="2" />
<text x="75.39" y="159.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hfcfcbc8f14d16298 (4 samples, 0.01%)</title><rect x="129.9" y="357" width="0.2" height="15.0" fill="rgb(209,55,11)" rx="2" ry="2" />
<text x="132.91" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="46.9" y="293" width="0.2" height="15.0" fill="rgb(210,141,47)" rx="2" ry="2" />
<text x="49.94" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h21c33b7e56b1167d (4 samples, 0.01%)</title><rect x="24.2" y="261" width="0.2" height="15.0" fill="rgb(227,151,11)" rx="2" ry="2" />
<text x="27.21" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="109.2" y="373" width="0.1" height="15.0" fill="rgb(205,191,26)" rx="2" ry="2" />
<text x="112.16" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (52 samples, 0.18%)</title><rect x="16.8" y="325" width="2.1" height="15.0" fill="rgb(210,195,23)" rx="2" ry="2" />
<text x="19.75" y="335.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (3 samples, 0.01%)</title><rect x="113.4" y="181" width="0.1" height="15.0" fill="rgb(205,135,50)" rx="2" ry="2" />
<text x="116.39" y="191.5" ></text>
</g>
<g >
<title>std::_Temporary_buffer&lt;std::pair&lt;unsigned int, unsigned int&gt;*, std::pair&lt;unsigned int, unsigned int&gt; &gt;::_Temporary_buffer(std::pair&lt;unsigned int, unsigned int&gt;*, std::pair&lt;unsigned int, unsigned int&gt;*) (3 samples, 0.01%)</title><rect x="1160.8" y="357" width="0.1" height="15.0" fill="rgb(243,76,36)" rx="2" ry="2" />
<text x="1163.78" y="367.5" ></text>
</g>
<g >
<title>parity_wasm::elements::section::ExportSection::entries::h7ccebe10244eb77e (3 samples, 0.01%)</title><rect x="331.4" y="389" width="0.1" height="15.0" fill="rgb(225,99,10)" rx="2" ry="2" />
<text x="334.41" y="399.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (4 samples, 0.01%)</title><rect x="52.9" y="229" width="0.2" height="15.0" fill="rgb(253,212,28)" rx="2" ry="2" />
<text x="55.89" y="239.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_wrlock (23 samples, 0.08%)</title><rect x="208.7" y="341" width="1.0" height="15.0" fill="rgb(209,49,30)" rx="2" ry="2" />
<text x="211.69" y="351.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (25 samples, 0.09%)</title><rect x="26.6" y="245" width="1.0" height="15.0" fill="rgb(240,202,21)" rx="2" ry="2" />
<text x="29.56" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (4 samples, 0.01%)</title><rect x="49.6" y="325" width="0.1" height="15.0" fill="rgb(209,205,10)" rx="2" ry="2" />
<text x="52.58" y="335.5" ></text>
</g>
<g >
<title>__softirqentry_text_start (4 samples, 0.01%)</title><rect x="1150.3" y="309" width="0.2" height="15.0" fill="rgb(235,167,47)" rx="2" ry="2" />
<text x="1153.29" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="54.6" y="133" width="0.3" height="15.0" fill="rgb(224,109,45)" rx="2" ry="2" />
<text x="57.61" y="143.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (834 samples, 2.96%)</title><rect x="49.9" y="341" width="35.0" height="15.0" fill="rgb(222,88,3)" rx="2" ry="2" />
<text x="52.91" y="351.5" >st..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (4 samples, 0.01%)</title><rect x="43.6" y="197" width="0.2" height="15.0" fill="rgb(249,217,25)" rx="2" ry="2" />
<text x="46.58" y="207.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 (223 samples, 0.79%)</title><rect x="243.1" y="373" width="9.3" height="15.0" fill="rgb(242,73,48)" rx="2" ry="2" />
<text x="246.07" y="383.5" ></text>
</g>
<g >
<title>apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1150.3" y="357" width="0.2" height="15.0" fill="rgb(217,45,18)" rx="2" ry="2" />
<text x="1153.29" y="367.5" ></text>
</g>
<g >
<title>do_page_fault (15 samples, 0.05%)</title><rect x="1115.1" y="293" width="0.6" height="15.0" fill="rgb(217,165,11)" rx="2" ry="2" />
<text x="1118.08" y="303.5" ></text>
</g>
<g >
<title>__vma_adjust (5 samples, 0.02%)</title><rect x="113.9" y="197" width="0.2" height="15.0" fill="rgb(215,44,25)" rx="2" ry="2" />
<text x="116.85" y="207.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (4 samples, 0.01%)</title><rect x="62.5" y="165" width="0.1" height="15.0" fill="rgb(252,16,32)" rx="2" ry="2" />
<text x="65.45" y="175.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (17 samples, 0.06%)</title><rect x="108.4" y="389" width="0.8" height="15.0" fill="rgb(210,48,2)" rx="2" ry="2" />
<text x="111.45" y="399.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::field::hfe273cdc0de5f043 (11 samples, 0.04%)</title><rect x="79.1" y="245" width="0.4" height="15.0" fill="rgb(241,85,29)" rx="2" ry="2" />
<text x="82.05" y="255.5" ></text>
</g>
<g >
<title>__mmap (32 samples, 0.11%)</title><rect x="127.5" y="309" width="1.3" height="15.0" fill="rgb(233,125,0)" rx="2" ry="2" />
<text x="130.48" y="319.5" ></text>
</g>
<g >
<title>mmap_region (16 samples, 0.06%)</title><rect x="128.1" y="197" width="0.6" height="15.0" fill="rgb(233,53,22)" rx="2" ry="2" />
<text x="131.07" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (224 samples, 0.80%)</title><rect x="14.4" y="373" width="9.4" height="15.0" fill="rgb(208,179,14)" rx="2" ry="2" />
<text x="17.40" y="383.5" ></text>
</g>
<g >
<title>strcmp@plt (9 samples, 0.03%)</title><rect x="1183.8" y="453" width="0.4" height="15.0" fill="rgb(234,215,2)" rx="2" ry="2" />
<text x="1186.84" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (116 samples, 0.41%)</title><rect x="1151.1" y="325" width="4.9" height="15.0" fill="rgb(214,115,33)" rx="2" ry="2" />
<text x="1154.13" y="335.5" ></text>
</g>
<g >
<title>__rdl_realloc (6 samples, 0.02%)</title><rect x="288.4" y="309" width="0.2" height="15.0" fill="rgb(235,227,14)" rx="2" ry="2" />
<text x="291.35" y="319.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 (10 samples, 0.04%)</title><rect x="1184.2" y="389" width="0.4" height="15.0" fill="rgb(246,147,14)" rx="2" ry="2" />
<text x="1187.21" y="399.5" ></text>
</g>
<g >
<title>irq_exit (4 samples, 0.01%)</title><rect x="1150.3" y="325" width="0.2" height="15.0" fill="rgb(248,4,49)" rx="2" ry="2" />
<text x="1153.29" y="335.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (14 samples, 0.05%)</title><rect x="61.1" y="149" width="0.6" height="15.0" fill="rgb(230,59,10)" rx="2" ry="2" />
<text x="64.11" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (12 samples, 0.04%)</title><rect x="33.6" y="213" width="0.5" height="15.0" fill="rgb(223,47,6)" rx="2" ry="2" />
<text x="36.61" y="223.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::he8e4968d40742750 (24 samples, 0.09%)</title><rect x="83.8" y="261" width="1.0" height="15.0" fill="rgb(236,42,51)" rx="2" ry="2" />
<text x="86.83" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (7 samples, 0.02%)</title><rect x="61.8" y="149" width="0.3" height="15.0" fill="rgb(238,13,31)" rx="2" ry="2" />
<text x="64.78" y="159.5" ></text>
</g>
<g >
<title>_$LT$std..io..buffered..LineWriter$LT$W$GT$$u20$as$u20$std..io..Write$GT$::flush::h99baefcd21f53cbc (3 samples, 0.01%)</title><rect x="1180.1" y="245" width="0.2" height="15.0" fill="rgb(219,190,30)" rx="2" ry="2" />
<text x="1183.15" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="120.4" y="293" width="0.2" height="15.0" fill="rgb(242,207,24)" rx="2" ry="2" />
<text x="123.44" y="303.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (20 samples, 0.07%)</title><rect x="175.6" y="309" width="0.8" height="15.0" fill="rgb(206,164,17)" rx="2" ry="2" />
<text x="178.57" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (69 samples, 0.25%)</title><rect x="124.5" y="277" width="2.9" height="15.0" fill="rgb(254,130,1)" rx="2" ry="2" />
<text x="127.50" y="287.5" ></text>
</g>
<g >
<title>__rdl_realloc (5 samples, 0.02%)</title><rect x="295.5" y="357" width="0.2" height="15.0" fill="rgb(218,71,12)" rx="2" ry="2" />
<text x="298.48" y="367.5" ></text>
</g>
<g >
<title>GOMP_critical_name_start (4 samples, 0.01%)</title><rect x="367.2" y="357" width="0.1" height="15.0" fill="rgb(225,157,38)" rx="2" ry="2" />
<text x="370.18" y="367.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::code_translator::translate_operator::hf206f87e46803014 (3 samples, 0.01%)</title><rect x="214.6" y="309" width="0.2" height="15.0" fill="rgb(238,184,48)" rx="2" ry="2" />
<text x="217.65" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="38.1" y="181" width="0.2" height="15.0" fill="rgb(247,99,48)" rx="2" ry="2" />
<text x="41.13" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (7 samples, 0.02%)</title><rect x="182.0" y="309" width="0.3" height="15.0" fill="rgb(207,1,36)" rx="2" ry="2" />
<text x="185.03" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (18 samples, 0.06%)</title><rect x="308.6" y="373" width="0.8" height="15.0" fill="rgb(206,135,10)" rx="2" ry="2" />
<text x="311.65" y="383.5" ></text>
</g>
<g >
<title>change_protection_range (8 samples, 0.03%)</title><rect x="125.2" y="197" width="0.4" height="15.0" fill="rgb(208,61,10)" rx="2" ry="2" />
<text x="128.22" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (17 samples, 0.06%)</title><rect x="365.0" y="373" width="0.8" height="15.0" fill="rgb(226,52,8)" rx="2" ry="2" />
<text x="368.04" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (5 samples, 0.02%)</title><rect x="41.1" y="181" width="0.2" height="15.0" fill="rgb(227,153,44)" rx="2" ry="2" />
<text x="44.07" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (27 samples, 0.10%)</title><rect x="1184.6" y="373" width="1.2" height="15.0" fill="rgb(229,194,20)" rx="2" ry="2" />
<text x="1187.63" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (13 samples, 0.05%)</title><rect x="330.8" y="357" width="0.6" height="15.0" fill="rgb(228,101,5)" rx="2" ry="2" />
<text x="333.83" y="367.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (14 samples, 0.05%)</title><rect x="57.1" y="149" width="0.6" height="15.0" fill="rgb(220,11,39)" rx="2" ry="2" />
<text x="60.08" y="159.5" ></text>
</g>
<g >
<title>__rust_alloc (3 samples, 0.01%)</title><rect x="24.9" y="245" width="0.1" height="15.0" fill="rgb(223,16,46)" rx="2" ry="2" />
<text x="27.88" y="255.5" ></text>
</g>
<g >
<title>__do_page_fault (15 samples, 0.05%)</title><rect x="1115.1" y="277" width="0.6" height="15.0" fill="rgb(235,111,33)" rx="2" ry="2" />
<text x="1118.08" y="287.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (15 samples, 0.05%)</title><rect x="369.4" y="261" width="0.6" height="15.0" fill="rgb(245,127,22)" rx="2" ry="2" />
<text x="372.40" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (18 samples, 0.06%)</title><rect x="92.4" y="325" width="0.8" height="15.0" fill="rgb(223,130,53)" rx="2" ry="2" />
<text x="95.43" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.04%)</title><rect x="173.6" y="293" width="0.5" height="15.0" fill="rgb(245,215,53)" rx="2" ry="2" />
<text x="176.60" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 0.11%)</title><rect x="314.6" y="405" width="1.3" height="15.0" fill="rgb(233,58,14)" rx="2" ry="2" />
<text x="317.64" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (7 samples, 0.02%)</title><rect x="249.2" y="293" width="0.3" height="15.0" fill="rgb(254,134,4)" rx="2" ry="2" />
<text x="252.19" y="303.5" ></text>
</g>
<g >
<title>__clone (25 samples, 0.09%)</title><rect x="48.5" y="453" width="1.1" height="15.0" fill="rgb(239,217,49)" rx="2" ry="2" />
<text x="51.53" y="463.5" ></text>
</g>
<g >
<title>__libc_start_main (834 samples, 2.96%)</title><rect x="49.9" y="437" width="35.0" height="15.0" fill="rgb(250,213,32)" rx="2" ry="2" />
<text x="52.91" y="447.5" >__..</text>
</g>
<g >
<title>perf_iterate_ctx (3 samples, 0.01%)</title><rect x="113.4" y="197" width="0.1" height="15.0" fill="rgb(234,64,29)" rx="2" ry="2" />
<text x="116.39" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (4 samples, 0.01%)</title><rect x="49.6" y="293" width="0.1" height="15.0" fill="rgb(254,172,14)" rx="2" ry="2" />
<text x="52.58" y="303.5" ></text>
</g>
<g >
<title>alloc_perturb (3 samples, 0.01%)</title><rect x="170.6" y="293" width="0.1" height="15.0" fill="rgb(224,127,15)" rx="2" ry="2" />
<text x="173.62" y="303.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (3 samples, 0.01%)</title><rect x="127.8" y="181" width="0.1" height="15.0" fill="rgb(238,56,44)" rx="2" ry="2" />
<text x="130.82" y="191.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (6 samples, 0.02%)</title><rect x="295.7" y="373" width="0.2" height="15.0" fill="rgb(252,143,54)" rx="2" ry="2" />
<text x="298.69" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (175 samples, 0.62%)</title><rect x="273.1" y="309" width="7.4" height="15.0" fill="rgb(213,130,52)" rx="2" ry="2" />
<text x="276.14" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (66 samples, 0.23%)</title><rect x="246.9" y="325" width="2.8" height="15.0" fill="rgb(223,135,19)" rx="2" ry="2" />
<text x="249.89" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (3 samples, 0.01%)</title><rect x="24.4" y="261" width="0.1" height="15.0" fill="rgb(205,215,30)" rx="2" ry="2" />
<text x="27.38" y="271.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="111.4" y="309" width="0.1" height="15.0" fill="rgb(242,120,7)" rx="2" ry="2" />
<text x="114.38" y="319.5" ></text>
</g>
<g >
<title>[perf-38152.map] (22 samples, 0.08%)</title><rect x="10.1" y="469" width="0.9" height="15.0" fill="rgb(253,61,41)" rx="2" ry="2" />
<text x="13.08" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (100 samples, 0.36%)</title><rect x="166.6" y="325" width="4.1" height="15.0" fill="rgb(237,98,21)" rx="2" ry="2" />
<text x="169.56" y="335.5" ></text>
</g>
<g >
<title>operator delete(void*)@plt (4 samples, 0.01%)</title><rect x="85.4" y="453" width="0.2" height="15.0" fill="rgb(240,158,37)" rx="2" ry="2" />
<text x="88.39" y="463.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (67 samples, 0.24%)</title><rect x="153.9" y="309" width="2.8" height="15.0" fill="rgb(245,116,0)" rx="2" ry="2" />
<text x="156.89" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (3 samples, 0.01%)</title><rect x="34.7" y="229" width="0.1" height="15.0" fill="rgb(240,70,39)" rx="2" ry="2" />
<text x="37.65" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="37.7" y="165" width="0.2" height="15.0" fill="rgb(207,124,52)" rx="2" ry="2" />
<text x="40.71" y="175.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (3 samples, 0.01%)</title><rect x="36.6" y="213" width="0.1" height="15.0" fill="rgb(245,203,16)" rx="2" ry="2" />
<text x="39.62" y="223.5" ></text>
</g>
<g >
<title>_int_free (23 samples, 0.08%)</title><rect x="360.7" y="341" width="1.0" height="15.0" fill="rgb(233,46,15)" rx="2" ry="2" />
<text x="363.72" y="351.5" ></text>
</g>
<g >
<title>__rust_realloc (4 samples, 0.01%)</title><rect x="280.3" y="293" width="0.2" height="15.0" fill="rgb(241,109,5)" rx="2" ry="2" />
<text x="283.30" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (75 samples, 0.27%)</title><rect x="1163.6" y="389" width="3.2" height="15.0" fill="rgb(219,19,12)" rx="2" ry="2" />
<text x="1166.63" y="399.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (17 samples, 0.06%)</title><rect x="108.4" y="373" width="0.8" height="15.0" fill="rgb(230,164,33)" rx="2" ry="2" />
<text x="111.45" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (5 samples, 0.02%)</title><rect x="1181.2" y="277" width="0.2" height="15.0" fill="rgb(234,177,11)" rx="2" ry="2" />
<text x="1184.20" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (19 samples, 0.07%)</title><rect x="272.3" y="309" width="0.8" height="15.0" fill="rgb(246,201,35)" rx="2" ry="2" />
<text x="275.34" y="319.5" ></text>
</g>
<g >
<title>Z3_solver_assert (514 samples, 1.83%)</title><rect x="370.1" y="389" width="21.6" height="15.0" fill="rgb(209,145,50)" rx="2" ry="2" />
<text x="373.11" y="399.5" >Z..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h9a9591bdce17bec5 (3 samples, 0.01%)</title><rect x="78.3" y="229" width="0.1" height="15.0" fill="rgb(249,7,7)" rx="2" ry="2" />
<text x="81.30" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (4 samples, 0.01%)</title><rect x="54.4" y="165" width="0.2" height="15.0" fill="rgb(211,182,24)" rx="2" ry="2" />
<text x="57.40" y="175.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (5 samples, 0.02%)</title><rect x="52.8" y="245" width="0.3" height="15.0" fill="rgb(232,148,47)" rx="2" ry="2" />
<text x="55.85" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (31 samples, 0.11%)</title><rect x="193.9" y="325" width="1.3" height="15.0" fill="rgb(237,88,40)" rx="2" ry="2" />
<text x="196.85" y="335.5" ></text>
</g>
<g >
<title>_int_free (18 samples, 0.06%)</title><rect x="131.2" y="309" width="0.8" height="15.0" fill="rgb(235,17,53)" rx="2" ry="2" />
<text x="134.21" y="319.5" ></text>
</g>
<g >
<title>change_protection_range (3 samples, 0.01%)</title><rect x="117.0" y="197" width="0.1" height="15.0" fill="rgb(205,52,37)" rx="2" ry="2" />
<text x="120.00" y="207.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (10 samples, 0.04%)</title><rect x="214.9" y="373" width="0.4" height="15.0" fill="rgb(237,171,18)" rx="2" ry="2" />
<text x="217.90" y="383.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_params::hc949b3cf879ad282 (9 samples, 0.03%)</title><rect x="78.6" y="245" width="0.4" height="15.0" fill="rgb(214,71,44)" rx="2" ry="2" />
<text x="81.59" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="114.4" y="309" width="0.1" height="15.0" fill="rgb(218,24,4)" rx="2" ry="2" />
<text x="117.36" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h52417e3a50e4e754 (4 samples, 0.01%)</title><rect x="122.9" y="277" width="0.2" height="15.0" fill="rgb(226,109,11)" rx="2" ry="2" />
<text x="125.91" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (28 samples, 0.10%)</title><rect x="335.3" y="389" width="1.2" height="15.0" fill="rgb(211,86,43)" rx="2" ry="2" />
<text x="338.31" y="399.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (60 samples, 0.21%)</title><rect x="124.8" y="245" width="2.6" height="15.0" fill="rgb(246,227,23)" rx="2" ry="2" />
<text x="127.84" y="255.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (17 samples, 0.06%)</title><rect x="61.7" y="165" width="0.7" height="15.0" fill="rgb(235,203,9)" rx="2" ry="2" />
<text x="64.70" y="175.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hed7bc371c65279af (3 samples, 0.01%)</title><rect x="25.1" y="261" width="0.2" height="15.0" fill="rgb(215,168,27)" rx="2" ry="2" />
<text x="28.14" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (52 samples, 0.18%)</title><rect x="1153.8" y="309" width="2.2" height="15.0" fill="rgb(243,140,43)" rx="2" ry="2" />
<text x="1156.82" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (15 samples, 0.05%)</title><rect x="15.2" y="325" width="0.7" height="15.0" fill="rgb(226,34,6)" rx="2" ry="2" />
<text x="18.24" y="335.5" ></text>
</g>
<g >
<title>unmap_vmas (3 samples, 0.01%)</title><rect x="108.0" y="213" width="0.2" height="15.0" fill="rgb(247,103,8)" rx="2" ry="2" />
<text x="111.03" y="223.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 (9 samples, 0.03%)</title><rect x="69.8" y="181" width="0.4" height="15.0" fill="rgb(248,165,17)" rx="2" ry="2" />
<text x="72.79" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (12 samples, 0.04%)</title><rect x="72.5" y="149" width="0.5" height="15.0" fill="rgb(211,175,28)" rx="2" ry="2" />
<text x="75.51" y="159.5" ></text>
</g>
<g >
<title>__munmap (17 samples, 0.06%)</title><rect x="108.4" y="357" width="0.8" height="15.0" fill="rgb(240,66,5)" rx="2" ry="2" />
<text x="111.45" y="367.5" ></text>
</g>
<g >
<title>__tls_get_addr@plt (4 samples, 0.01%)</title><rect x="49.7" y="453" width="0.2" height="15.0" fill="rgb(221,155,47)" rx="2" ry="2" />
<text x="52.75" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (18 samples, 0.06%)</title><rect x="244.7" y="325" width="0.7" height="15.0" fill="rgb(240,105,25)" rx="2" ry="2" />
<text x="247.67" y="335.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (224 samples, 0.80%)</title><rect x="14.4" y="453" width="9.4" height="15.0" fill="rgb(210,59,22)" rx="2" ry="2" />
<text x="17.40" y="463.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (684 samples, 2.43%)</title><rect x="137.8" y="325" width="28.7" height="15.0" fill="rgb(206,84,37)" rx="2" ry="2" />
<text x="140.84" y="335.5" >_$..</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h4122676c740e9bd3 (6 samples, 0.02%)</title><rect x="150.7" y="293" width="0.3" height="15.0" fill="rgb(216,192,32)" rx="2" ry="2" />
<text x="153.71" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (3 samples, 0.01%)</title><rect x="78.8" y="229" width="0.2" height="15.0" fill="rgb(236,117,42)" rx="2" ry="2" />
<text x="81.84" y="239.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (21 samples, 0.07%)</title><rect x="223.9" y="405" width="0.9" height="15.0" fill="rgb(219,135,54)" rx="2" ry="2" />
<text x="226.91" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (10 samples, 0.04%)</title><rect x="70.2" y="165" width="0.4" height="15.0" fill="rgb(224,159,48)" rx="2" ry="2" />
<text x="73.21" y="175.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h0234124bad11f8db (98 samples, 0.35%)</title><rect x="89.1" y="373" width="4.1" height="15.0" fill="rgb(247,167,52)" rx="2" ry="2" />
<text x="92.07" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (30 samples, 0.11%)</title><rect x="330.1" y="373" width="1.3" height="15.0" fill="rgb(251,30,47)" rx="2" ry="2" />
<text x="333.11" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (7 samples, 0.02%)</title><rect x="1183.1" y="309" width="0.3" height="15.0" fill="rgb(220,106,15)" rx="2" ry="2" />
<text x="1186.12" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (3 samples, 0.01%)</title><rect x="36.8" y="197" width="0.1" height="15.0" fill="rgb(240,222,19)" rx="2" ry="2" />
<text x="39.79" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (15 samples, 0.05%)</title><rect x="123.8" y="325" width="0.7" height="15.0" fill="rgb(217,27,44)" rx="2" ry="2" />
<text x="126.83" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="83.1" y="213" width="0.2" height="15.0" fill="rgb(211,4,41)" rx="2" ry="2" />
<text x="86.08" y="223.5" ></text>
</g>
<g >
<title>__do_page_fault (15 samples, 0.05%)</title><rect x="119.7" y="277" width="0.6" height="15.0" fill="rgb(220,119,53)" rx="2" ry="2" />
<text x="122.68" y="287.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="385.0" y="341" width="0.1" height="15.0" fill="rgb(217,227,43)" rx="2" ry="2" />
<text x="387.96" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (1,772 samples, 6.30%)</title><rect x="130.1" y="357" width="74.3" height="15.0" fill="rgb(239,25,31)" rx="2" ry="2" />
<text x="133.12" y="367.5" >wasmer_r..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (4 samples, 0.01%)</title><rect x="52.9" y="213" width="0.2" height="15.0" fill="rgb(214,25,42)" rx="2" ry="2" />
<text x="55.89" y="223.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (6 samples, 0.02%)</title><rect x="63.0" y="181" width="0.3" height="15.0" fill="rgb(219,44,8)" rx="2" ry="2" />
<text x="66.04" y="191.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (5 samples, 0.02%)</title><rect x="125.6" y="197" width="0.2" height="15.0" fill="rgb(222,101,39)" rx="2" ry="2" />
<text x="128.55" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="55.2" y="165" width="0.1" height="15.0" fill="rgb(248,64,22)" rx="2" ry="2" />
<text x="58.20" y="175.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (60 samples, 0.21%)</title><rect x="307.0" y="389" width="2.5" height="15.0" fill="rgb(206,113,32)" rx="2" ry="2" />
<text x="309.97" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (5 samples, 0.02%)</title><rect x="309.2" y="357" width="0.2" height="15.0" fill="rgb(214,18,28)" rx="2" ry="2" />
<text x="312.19" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (110 samples, 0.39%)</title><rect x="19.1" y="325" width="4.6" height="15.0" fill="rgb(215,127,16)" rx="2" ry="2" />
<text x="22.10" y="335.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (5 samples, 0.02%)</title><rect x="32.2" y="213" width="0.2" height="15.0" fill="rgb(217,168,40)" rx="2" ry="2" />
<text x="35.22" y="223.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (5 samples, 0.02%)</title><rect x="35.5" y="213" width="0.2" height="15.0" fill="rgb(208,62,47)" rx="2" ry="2" />
<text x="38.49" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (63 samples, 0.22%)</title><rect x="285.7" y="309" width="2.7" height="15.0" fill="rgb(236,169,27)" rx="2" ry="2" />
<text x="288.71" y="319.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (8 samples, 0.03%)</title><rect x="58.4" y="149" width="0.3" height="15.0" fill="rgb(217,37,4)" rx="2" ry="2" />
<text x="61.38" y="159.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (4 samples, 0.01%)</title><rect x="49.6" y="453" width="0.1" height="15.0" fill="rgb(216,70,6)" rx="2" ry="2" />
<text x="52.58" y="463.5" ></text>
</g>
<g >
<title>__rdl_alloc (3 samples, 0.01%)</title><rect x="102.3" y="373" width="0.1" height="15.0" fill="rgb(237,122,38)" rx="2" ry="2" />
<text x="105.32" y="383.5" ></text>
</g>
<g >
<title>__split_vma (10 samples, 0.04%)</title><rect x="126.8" y="197" width="0.4" height="15.0" fill="rgb(228,120,10)" rx="2" ry="2" />
<text x="129.77" y="207.5" ></text>
</g>
<g >
<title>__libc_calloc (6 samples, 0.02%)</title><rect x="53.5" y="149" width="0.2" height="15.0" fill="rgb(231,25,23)" rx="2" ry="2" />
<text x="56.48" y="159.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (10 samples, 0.04%)</title><rect x="50.6" y="197" width="0.4" height="15.0" fill="rgb(233,226,2)" rx="2" ry="2" />
<text x="53.59" y="207.5" ></text>
</g>
<g >
<title>__sigjmp_save (5 samples, 0.02%)</title><rect x="65.6" y="149" width="0.2" height="15.0" fill="rgb(205,197,33)" rx="2" ry="2" />
<text x="68.64" y="159.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="52.7" y="229" width="0.1" height="15.0" fill="rgb(224,40,43)" rx="2" ry="2" />
<text x="55.68" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="69.8" y="165" width="0.1" height="15.0" fill="rgb(233,73,49)" rx="2" ry="2" />
<text x="72.79" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (34 samples, 0.12%)</title><rect x="30.2" y="213" width="1.4" height="15.0" fill="rgb(221,215,24)" rx="2" ry="2" />
<text x="33.17" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3 samples, 0.01%)</title><rect x="68.3" y="197" width="0.1" height="15.0" fill="rgb(238,224,49)" rx="2" ry="2" />
<text x="71.32" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (296 samples, 1.05%)</title><rect x="53.1" y="245" width="12.4" height="15.0" fill="rgb(230,28,53)" rx="2" ry="2" />
<text x="56.06" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="189.4" y="277" width="0.1" height="15.0" fill="rgb(209,49,20)" rx="2" ry="2" />
<text x="192.36" y="287.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (5 samples, 0.02%)</title><rect x="84.4" y="229" width="0.2" height="15.0" fill="rgb(221,103,41)" rx="2" ry="2" />
<text x="87.42" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (4 samples, 0.01%)</title><rect x="174.1" y="293" width="0.2" height="15.0" fill="rgb(214,59,42)" rx="2" ry="2" />
<text x="177.10" y="303.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (43 samples, 0.15%)</title><rect x="174.6" y="325" width="1.8" height="15.0" fill="rgb(207,166,52)" rx="2" ry="2" />
<text x="177.61" y="335.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (28 samples, 0.10%)</title><rect x="216.7" y="341" width="1.1" height="15.0" fill="rgb(227,216,20)" rx="2" ry="2" />
<text x="219.66" y="351.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::build::h02095bd4d5c8c197 (83 samples, 0.29%)</title><rect x="334.9" y="405" width="3.4" height="15.0" fill="rgb(227,71,12)" rx="2" ry="2" />
<text x="337.85" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (3 samples, 0.01%)</title><rect x="195.2" y="325" width="0.1" height="15.0" fill="rgb(215,185,25)" rx="2" ry="2" />
<text x="198.19" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_udivrem::hb314bb4ccef9e2c5 (5 samples, 0.02%)</title><rect x="29.4" y="181" width="0.2" height="15.0" fill="rgb(219,125,24)" rx="2" ry="2" />
<text x="32.41" y="191.5" ></text>
</g>
<g >
<title>posix_cpu_clock_get (8 samples, 0.03%)</title><rect x="1187.0" y="389" width="0.4" height="15.0" fill="rgb(205,7,5)" rx="2" ry="2" />
<text x="1190.02" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (7 samples, 0.02%)</title><rect x="272.0" y="293" width="0.3" height="15.0" fill="rgb(235,198,22)" rx="2" ry="2" />
<text x="275.05" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (34 samples, 0.12%)</title><rect x="179.4" y="261" width="1.4" height="15.0" fill="rgb(205,207,12)" rx="2" ry="2" />
<text x="182.39" y="271.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h8f5edcc205986b39E.llvm.4989837014162833530 (16 samples, 0.06%)</title><rect x="47.4" y="325" width="0.6" height="15.0" fill="rgb(223,2,28)" rx="2" ry="2" />
<text x="50.36" y="335.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (7 samples, 0.02%)</title><rect x="115.4" y="213" width="0.3" height="15.0" fill="rgb(224,158,25)" rx="2" ry="2" />
<text x="118.45" y="223.5" ></text>
</g>
<g >
<title>__libc_calloc (17 samples, 0.06%)</title><rect x="111.8" y="309" width="0.7" height="15.0" fill="rgb(210,99,19)" rx="2" ry="2" />
<text x="114.80" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="111.6" y="325" width="0.2" height="15.0" fill="rgb(250,139,51)" rx="2" ry="2" />
<text x="114.63" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (265 samples, 0.94%)</title><rect x="343.2" y="389" width="11.1" height="15.0" fill="rgb(211,1,31)" rx="2" ry="2" />
<text x="346.20" y="399.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 (82 samples, 0.29%)</title><rect x="71.0" y="213" width="3.4" height="15.0" fill="rgb(225,210,43)" rx="2" ry="2" />
<text x="74.00" y="223.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (9 samples, 0.03%)</title><rect x="280.5" y="309" width="0.3" height="15.0" fill="rgb(217,98,10)" rx="2" ry="2" />
<text x="283.47" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (33 samples, 0.12%)</title><rect x="313.3" y="405" width="1.3" height="15.0" fill="rgb(247,51,40)" rx="2" ry="2" />
<text x="316.26" y="415.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h946791f777187d09 (74 samples, 0.26%)</title><rect x="99.3" y="389" width="3.1" height="15.0" fill="rgb(211,20,38)" rx="2" ry="2" />
<text x="102.35" y="399.5" ></text>
</g>
<g >
<title>operator delete(void*, std::nothrow_t const&amp;) (5 samples, 0.02%)</title><rect x="1150.5" y="357" width="0.3" height="15.0" fill="rgb(216,42,4)" rx="2" ry="2" />
<text x="1153.55" y="367.5" ></text>
</g>
<g >
<title>__rdl_alloc (4 samples, 0.01%)</title><rect x="174.1" y="309" width="0.2" height="15.0" fill="rgb(213,116,23)" rx="2" ry="2" />
<text x="177.10" y="319.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h047612b5d9b59568E.llvm.1312411216417185755 (16 samples, 0.06%)</title><rect x="66.0" y="261" width="0.7" height="15.0" fill="rgb(227,19,44)" rx="2" ry="2" />
<text x="69.01" y="271.5" ></text>
</g>
<g >
<title>vm_munmap (14 samples, 0.05%)</title><rect x="108.6" y="293" width="0.6" height="15.0" fill="rgb(227,185,18)" rx="2" ry="2" />
<text x="111.57" y="303.5" ></text>
</g>
<g >
<title>[unknown] (28,037 samples, 99.62%)</title><rect x="11.0" y="469" width="1175.5" height="15.0" fill="rgb(238,227,46)" rx="2" ry="2" />
<text x="14.01" y="479.5" >[unknown]</text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (27 samples, 0.10%)</title><rect x="1184.6" y="437" width="1.2" height="15.0" fill="rgb(223,117,39)" rx="2" ry="2" />
<text x="1187.63" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (65 samples, 0.23%)</title><rect x="148.0" y="293" width="2.7" height="15.0" fill="rgb(222,176,4)" rx="2" ry="2" />
<text x="150.98" y="303.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (175 samples, 0.62%)</title><rect x="181.1" y="325" width="7.3" height="15.0" fill="rgb(234,29,30)" rx="2" ry="2" />
<text x="184.11" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (14 samples, 0.05%)</title><rect x="337.6" y="357" width="0.6" height="15.0" fill="rgb(219,60,41)" rx="2" ry="2" />
<text x="340.58" y="367.5" ></text>
</g>
<g >
<title>__sigjmp_save (27 samples, 0.10%)</title><rect x="216.7" y="309" width="1.1" height="15.0" fill="rgb(249,43,14)" rx="2" ry="2" />
<text x="219.70" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (3 samples, 0.01%)</title><rect x="1186.3" y="341" width="0.1" height="15.0" fill="rgb(251,83,9)" rx="2" ry="2" />
<text x="1189.31" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (16 samples, 0.06%)</title><rect x="66.8" y="261" width="0.7" height="15.0" fill="rgb(212,90,13)" rx="2" ry="2" />
<text x="69.81" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="51.7" y="197" width="0.2" height="15.0" fill="rgb(206,109,27)" rx="2" ry="2" />
<text x="54.72" y="207.5" ></text>
</g>
<g >
<title>malloc@plt (5 samples, 0.02%)</title><rect x="85.0" y="453" width="0.3" height="15.0" fill="rgb(217,210,42)" rx="2" ry="2" />
<text x="88.05" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (4 samples, 0.01%)</title><rect x="48.4" y="405" width="0.1" height="15.0" fill="rgb(223,56,5)" rx="2" ry="2" />
<text x="51.36" y="415.5" ></text>
</g>
<g >
<title>perf_iterate_sb (11 samples, 0.04%)</title><rect x="126.1" y="197" width="0.5" height="15.0" fill="rgb(241,92,3)" rx="2" ry="2" />
<text x="129.10" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.03%)</title><rect x="50.7" y="181" width="0.3" height="15.0" fill="rgb(249,24,26)" rx="2" ry="2" />
<text x="53.67" y="191.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 (3 samples, 0.01%)</title><rect x="44.0" y="197" width="0.1" height="15.0" fill="rgb(228,68,41)" rx="2" ry="2" />
<text x="47.00" y="207.5" ></text>
</g>
<g >
<title>anon_vma_clone (3 samples, 0.01%)</title><rect x="127.0" y="181" width="0.1" height="15.0" fill="rgb(208,152,35)" rx="2" ry="2" />
<text x="129.98" y="191.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::InitExpr::empty::h4234cbdd8d47781d (4 samples, 0.01%)</title><rect x="82.7" y="245" width="0.1" height="15.0" fill="rgb(244,204,17)" rx="2" ry="2" />
<text x="85.66" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (18 samples, 0.06%)</title><rect x="261.9" y="325" width="0.8" height="15.0" fill="rgb(235,138,27)" rx="2" ry="2" />
<text x="264.94" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (11 samples, 0.04%)</title><rect x="14.4" y="293" width="0.5" height="15.0" fill="rgb(247,222,37)" rx="2" ry="2" />
<text x="17.44" y="303.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (834 samples, 2.96%)</title><rect x="49.9" y="325" width="35.0" height="15.0" fill="rgb(252,81,17)" rx="2" ry="2" />
<text x="52.91" y="335.5" >st..</text>
</g>
<g >
<title>sys_munmap (14 samples, 0.05%)</title><rect x="108.6" y="309" width="0.6" height="15.0" fill="rgb(231,168,14)" rx="2" ry="2" />
<text x="111.57" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="52.9" y="149" width="0.2" height="15.0" fill="rgb(220,32,54)" rx="2" ry="2" />
<text x="55.89" y="159.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (8 samples, 0.03%)</title><rect x="109.8" y="389" width="0.3" height="15.0" fill="rgb(243,126,12)" rx="2" ry="2" />
<text x="112.79" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="53.1" y="229" width="0.1" height="15.0" fill="rgb(208,205,42)" rx="2" ry="2" />
<text x="56.10" y="239.5" ></text>
</g>
<g >
<title>_$LT$rocinante..stoke..whitelist..WhitelistedInstruction$u20$as$u20$core..convert..From$LT$parity_wasm..elements..ops..Instruction$GT$$GT$::from::hd6d9589fbd581344 (6 samples, 0.02%)</title><rect x="1173.0" y="405" width="0.2" height="15.0" fill="rgb(222,39,46)" rx="2" ry="2" />
<text x="1175.98" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (28 samples, 0.10%)</title><rect x="117.9" y="293" width="1.2" height="15.0" fill="rgb(252,175,20)" rx="2" ry="2" />
<text x="120.88" y="303.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (6 samples, 0.02%)</title><rect x="58.5" y="133" width="0.2" height="15.0" fill="rgb(243,7,53)" rx="2" ry="2" />
<text x="61.47" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (10 samples, 0.04%)</title><rect x="46.2" y="245" width="0.4" height="15.0" fill="rgb(226,208,13)" rx="2" ry="2" />
<text x="49.23" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (14 samples, 0.05%)</title><rect x="35.2" y="245" width="0.6" height="15.0" fill="rgb(238,17,38)" rx="2" ry="2" />
<text x="38.20" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..clone..Clone$GT$::clone::hfb3085804dd270db (30 samples, 0.11%)</title><rect x="94.9" y="373" width="1.3" height="15.0" fill="rgb(221,162,24)" rx="2" ry="2" />
<text x="97.90" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (60 samples, 0.21%)</title><rect x="27.6" y="245" width="2.5" height="15.0" fill="rgb(237,146,19)" rx="2" ry="2" />
<text x="30.61" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (23 samples, 0.08%)</title><rect x="1175.1" y="389" width="1.0" height="15.0" fill="rgb(223,209,5)" rx="2" ry="2" />
<text x="1178.12" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.11%)</title><rect x="107.0" y="309" width="1.4" height="15.0" fill="rgb(217,1,0)" rx="2" ry="2" />
<text x="110.02" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (70 samples, 0.25%)</title><rect x="124.5" y="293" width="2.9" height="15.0" fill="rgb(223,77,52)" rx="2" ry="2" />
<text x="127.50" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.04%)</title><rect x="305.2" y="309" width="0.4" height="15.0" fill="rgb(254,69,22)" rx="2" ry="2" />
<text x="308.21" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="114.6" y="325" width="0.1" height="15.0" fill="rgb(229,174,18)" rx="2" ry="2" />
<text x="117.57" y="335.5" ></text>
</g>
<g >
<title>__rdl_realloc (21 samples, 0.07%)</title><rect x="279.4" y="293" width="0.9" height="15.0" fill="rgb(236,40,49)" rx="2" ry="2" />
<text x="282.42" y="303.5" ></text>
</g>
<g >
<title>release_pages (4 samples, 0.01%)</title><rect x="1070.4" y="117" width="0.1" height="15.0" fill="rgb(210,188,36)" rx="2" ry="2" />
<text x="1073.38" y="127.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (3 samples, 0.01%)</title><rect x="16.5" y="293" width="0.1" height="15.0" fill="rgb(222,47,1)" rx="2" ry="2" />
<text x="19.46" y="303.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (7 samples, 0.02%)</title><rect x="53.5" y="165" width="0.3" height="15.0" fill="rgb(205,170,40)" rx="2" ry="2" />
<text x="56.48" y="175.5" ></text>
</g>
<g >
<title>clear_page_erms (3 samples, 0.01%)</title><rect x="1086.8" y="213" width="0.1" height="15.0" fill="rgb(221,166,51)" rx="2" ry="2" />
<text x="1089.78" y="223.5" ></text>
</g>
<g >
<title>split_vma (10 samples, 0.04%)</title><rect x="126.8" y="213" width="0.4" height="15.0" fill="rgb(217,176,20)" rx="2" ry="2" />
<text x="129.77" y="223.5" ></text>
</g>
<g >
<title>__GI___default_morecore (7 samples, 0.02%)</title><rect x="1070.3" y="309" width="0.3" height="15.0" fill="rgb(218,72,18)" rx="2" ry="2" />
<text x="1073.34" y="319.5" ></text>
</g>
<g >
<title>unmap_region (14 samples, 0.05%)</title><rect x="107.6" y="229" width="0.6" height="15.0" fill="rgb(232,137,21)" rx="2" ry="2" />
<text x="110.56" y="239.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (4 samples, 0.01%)</title><rect x="208.3" y="309" width="0.1" height="15.0" fill="rgb(232,70,39)" rx="2" ry="2" />
<text x="211.27" y="319.5" ></text>
</g>
<g >
<title>sys_munmap (31 samples, 0.11%)</title><rect x="107.1" y="277" width="1.3" height="15.0" fill="rgb(244,215,10)" rx="2" ry="2" />
<text x="110.06" y="287.5" ></text>
</g>
<g >
<title>__rdl_realloc (3 samples, 0.01%)</title><rect x="1171.1" y="389" width="0.2" height="15.0" fill="rgb(247,33,41)" rx="2" ry="2" />
<text x="1174.13" y="399.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 (560 samples, 1.99%)</title><rect x="23.8" y="405" width="23.5" height="15.0" fill="rgb(216,66,16)" rx="2" ry="2" />
<text x="26.79" y="415.5" >r..</text>
</g>
<g >
<title>mprotect_fixup (5 samples, 0.02%)</title><rect x="53.8" y="69" width="0.2" height="15.0" fill="rgb(208,198,27)" rx="2" ry="2" />
<text x="56.77" y="79.5" ></text>
</g>
<g >
<title>systrim (7 samples, 0.02%)</title><rect x="1070.3" y="325" width="0.3" height="15.0" fill="rgb(252,129,1)" rx="2" ry="2" />
<text x="1073.34" y="335.5" ></text>
</g>
<g >
<title>_do_fork (7 samples, 0.02%)</title><rect x="1186.5" y="405" width="0.3" height="15.0" fill="rgb(249,227,2)" rx="2" ry="2" />
<text x="1189.52" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (10 samples, 0.04%)</title><rect x="1186.9" y="453" width="0.5" height="15.0" fill="rgb(250,157,52)" rx="2" ry="2" />
<text x="1189.94" y="463.5" ></text>
</g>
<g >
<title>__rust_dealloc (3 samples, 0.01%)</title><rect x="195.4" y="341" width="0.1" height="15.0" fill="rgb(239,45,30)" rx="2" ry="2" />
<text x="198.36" y="351.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (3 samples, 0.01%)</title><rect x="159.1" y="293" width="0.2" height="15.0" fill="rgb(216,74,17)" rx="2" ry="2" />
<text x="162.14" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (23 samples, 0.08%)</title><rect x="121.3" y="309" width="0.9" height="15.0" fill="rgb(216,17,41)" rx="2" ry="2" />
<text x="124.27" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (11 samples, 0.04%)</title><rect x="73.6" y="149" width="0.5" height="15.0" fill="rgb(211,147,32)" rx="2" ry="2" />
<text x="76.60" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (10 samples, 0.04%)</title><rect x="1184.2" y="277" width="0.4" height="15.0" fill="rgb(241,225,23)" rx="2" ry="2" />
<text x="1187.21" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::split::simplify_branch_arguments::hc015be84b07814bd (3 samples, 0.01%)</title><rect x="29.9" y="197" width="0.1" height="15.0" fill="rgb(221,160,31)" rx="2" ry="2" />
<text x="32.87" y="207.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 (10 samples, 0.04%)</title><rect x="1184.2" y="309" width="0.4" height="15.0" fill="rgb(249,183,41)" rx="2" ry="2" />
<text x="1187.21" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="79.9" y="229" width="0.2" height="15.0" fill="rgb(230,4,30)" rx="2" ry="2" />
<text x="82.93" y="239.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd92c812f09fe4460 (3 samples, 0.01%)</title><rect x="204.5" y="309" width="0.2" height="15.0" fill="rgb(215,199,41)" rx="2" ry="2" />
<text x="207.54" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="78.6" y="229" width="0.2" height="15.0" fill="rgb(209,174,20)" rx="2" ry="2" />
<text x="81.63" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (247 samples, 0.88%)</title><rect x="344.0" y="373" width="10.3" height="15.0" fill="rgb(245,7,6)" rx="2" ry="2" />
<text x="346.95" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="31.0" y="165" width="0.1" height="15.0" fill="rgb(236,41,48)" rx="2" ry="2" />
<text x="33.96" y="175.5" ></text>
</g>
<g >
<title>unmap_region (15 samples, 0.05%)</title><rect x="369.4" y="197" width="0.6" height="15.0" fill="rgb(233,109,17)" rx="2" ry="2" />
<text x="372.40" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (8 samples, 0.03%)</title><rect x="74.4" y="213" width="0.4" height="15.0" fill="rgb(236,66,35)" rx="2" ry="2" />
<text x="77.44" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (3 samples, 0.01%)</title><rect x="1185.8" y="277" width="0.2" height="15.0" fill="rgb(238,67,19)" rx="2" ry="2" />
<text x="1188.85" y="287.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (6 samples, 0.02%)</title><rect x="60.7" y="165" width="0.3" height="15.0" fill="rgb(240,101,25)" rx="2" ry="2" />
<text x="63.73" y="175.5" ></text>
</g>
<g >
<title>page_fault (114 samples, 0.41%)</title><rect x="1156.0" y="357" width="4.8" height="15.0" fill="rgb(231,3,29)" rx="2" ry="2" />
<text x="1159.00" y="367.5" ></text>
</g>
<g >
<title>__GI___mprotect (71 samples, 0.25%)</title><rect x="124.5" y="309" width="2.9" height="15.0" fill="rgb(222,72,50)" rx="2" ry="2" />
<text x="127.46" y="319.5" ></text>
</g>
<g >
<title>__rust_dealloc (3 samples, 0.01%)</title><rect x="285.4" y="325" width="0.1" height="15.0" fill="rgb(240,202,40)" rx="2" ry="2" />
<text x="288.38" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (28 samples, 0.10%)</title><rect x="101.1" y="357" width="1.1" height="15.0" fill="rgb(244,33,37)" rx="2" ry="2" />
<text x="104.07" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (5 samples, 0.02%)</title><rect x="205.9" y="309" width="0.2" height="15.0" fill="rgb(225,149,3)" rx="2" ry="2" />
<text x="208.88" 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 (543 samples, 1.93%)</title><rect x="24.0" y="293" width="22.8" height="15.0" fill="rgb(237,153,49)" rx="2" ry="2" />
<text x="27.05" y="303.5" >c..</text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (9 samples, 0.03%)</title><rect x="177.1" y="293" width="0.4" height="15.0" fill="rgb(224,15,35)" rx="2" ry="2" />
<text x="180.12" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc01085cdf6cb9abc (33 samples, 0.12%)</title><rect x="330.0" y="389" width="1.4" height="15.0" fill="rgb(225,114,19)" rx="2" ry="2" />
<text x="333.03" y="399.5" ></text>
</g>
<g >
<title>_$LT$std..io..stdio..Stdout$u20$as$u20$std..io..Write$GT$::write_fmt::he59a9f1c488d4771 (5 samples, 0.02%)</title><rect x="1180.1" y="357" width="0.2" height="15.0" fill="rgb(233,180,48)" rx="2" ry="2" />
<text x="1183.11" y="367.5" ></text>
</g>
<g >
<title>alloc_pages_vma (3 samples, 0.01%)</title><rect x="1115.4" y="229" width="0.1" height="15.0" fill="rgb(214,135,9)" rx="2" ry="2" />
<text x="1118.37" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h3e1607d9587d426d (24 samples, 0.09%)</title><rect x="82.8" y="261" width="1.0" height="15.0" fill="rgb(218,73,41)" rx="2" ry="2" />
<text x="85.83" y="271.5" ></text>
</g>
<g >
<title>__GI___tls_get_addr (47 samples, 0.17%)</title><rect x="1142.8" y="357" width="2.0" height="15.0" fill="rgb(243,113,34)" rx="2" ry="2" />
<text x="1145.83" y="367.5" ></text>
</g>
<g >
<title>operator new(unsigned long) (120 samples, 0.43%)</title><rect x="1151.0" y="341" width="5.0" height="15.0" fill="rgb(238,131,12)" rx="2" ry="2" />
<text x="1153.97" y="351.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned (29 samples, 0.10%)</title><rect x="1145.8" y="357" width="1.2" height="15.0" fill="rgb(241,188,9)" rx="2" ry="2" />
<text x="1148.81" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (9 samples, 0.03%)</title><rect x="28.6" y="197" width="0.4" height="15.0" fill="rgb(237,36,5)" rx="2" ry="2" />
<text x="31.62" y="207.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (834 samples, 2.96%)</title><rect x="49.9" y="405" width="35.0" height="15.0" fill="rgb(249,185,27)" rx="2" ry="2" />
<text x="52.91" y="415.5" >st..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (80 samples, 0.28%)</title><rect x="1180.3" y="341" width="3.4" height="15.0" fill="rgb(246,99,2)" rx="2" ry="2" />
<text x="1183.31" y="351.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..cmp..PartialEq$GT$::ne::he4ad3ed04bed2102 (3 samples, 0.01%)</title><rect x="1172.9" y="405" width="0.1" height="15.0" fill="rgb(245,55,14)" rx="2" ry="2" />
<text x="1175.85" y="415.5" ></text>
</g>
<g >
<title>__munmap (4 samples, 0.01%)</title><rect x="52.9" y="165" width="0.2" height="15.0" fill="rgb(245,41,3)" rx="2" ry="2" />
<text x="55.89" y="175.5" ></text>
</g>
<g >
<title>do_munmap (15 samples, 0.05%)</title><rect x="369.4" y="213" width="0.6" height="15.0" fill="rgb(236,44,14)" rx="2" ry="2" />
<text x="372.40" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (3 samples, 0.01%)</title><rect x="1185.8" y="325" width="0.2" height="15.0" fill="rgb(226,113,41)" rx="2" ry="2" />
<text x="1188.85" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5fc94b05e4d4a2c3 (3 samples, 0.01%)</title><rect x="24.5" y="261" width="0.1" height="15.0" fill="rgb(229,206,30)" rx="2" ry="2" />
<text x="27.51" y="271.5" ></text>
</g>
<g >
<title>thread_group_cputime (8 samples, 0.03%)</title><rect x="1187.0" y="357" width="0.4" height="15.0" fill="rgb(240,210,34)" rx="2" ry="2" />
<text x="1190.02" y="367.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 (224 samples, 0.80%)</title><rect x="14.4" y="405" width="9.4" height="15.0" fill="rgb(209,7,19)" rx="2" ry="2" />
<text x="17.40" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (13 samples, 0.05%)</title><rect x="34.4" y="245" width="0.5" height="15.0" fill="rgb(249,57,1)" rx="2" ry="2" />
<text x="37.40" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (52 samples, 0.18%)</title><rect x="215.7" y="389" width="2.2" height="15.0" fill="rgb(239,161,15)" rx="2" ry="2" />
<text x="218.69" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (12 samples, 0.04%)</title><rect x="59.8" y="165" width="0.5" height="15.0" fill="rgb(205,16,33)" rx="2" ry="2" />
<text x="62.77" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (3 samples, 0.01%)</title><rect x="34.8" y="229" width="0.1" height="15.0" fill="rgb(238,40,13)" rx="2" ry="2" />
<text x="37.82" y="239.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h09b423cadf0da692 (52 samples, 0.18%)</title><rect x="71.1" y="181" width="2.2" height="15.0" fill="rgb(250,102,28)" rx="2" ry="2" />
<text x="74.13" y="191.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (30 samples, 0.11%)</title><rect x="154.2" y="293" width="1.2" height="15.0" fill="rgb(218,168,43)" rx="2" ry="2" />
<text x="157.19" y="303.5" ></text>
</g>
<g >
<title>sys_clone (7 samples, 0.02%)</title><rect x="1186.5" y="421" width="0.3" height="15.0" fill="rgb(225,88,48)" rx="2" ry="2" />
<text x="1189.52" y="431.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (25 samples, 0.09%)</title><rect x="118.0" y="245" width="1.1" height="15.0" fill="rgb(221,66,19)" rx="2" ry="2" />
<text x="121.00" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="84.5" y="213" width="0.1" height="15.0" fill="rgb(212,104,2)" rx="2" ry="2" />
<text x="87.46" y="223.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4 samples, 0.01%)</title><rect x="1086.8" y="229" width="0.1" height="15.0" fill="rgb(231,184,47)" rx="2" ry="2" />
<text x="1089.78" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (44 samples, 0.16%)</title><rect x="361.7" y="341" width="1.8" height="15.0" fill="rgb(242,130,43)" rx="2" ry="2" />
<text x="364.69" y="351.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (5 samples, 0.02%)</title><rect x="1178.7" y="357" width="0.2" height="15.0" fill="rgb(247,113,2)" rx="2" ry="2" />
<text x="1181.68" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hb51d8ed967c35200 (27 samples, 0.10%)</title><rect x="95.0" y="277" width="1.2" height="15.0" fill="rgb(215,134,46)" rx="2" ry="2" />
<text x="98.03" y="287.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 (289 samples, 1.03%)</title><rect x="53.2" y="213" width="12.1" height="15.0" fill="rgb(219,107,3)" rx="2" ry="2" />
<text x="56.23" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (3 samples, 0.01%)</title><rect x="19.2" y="293" width="0.1" height="15.0" fill="rgb(235,131,37)" rx="2" ry="2" />
<text x="22.22" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (23 samples, 0.08%)</title><rect x="259.8" y="357" width="1.0" height="15.0" fill="rgb(240,51,22)" rx="2" ry="2" />
<text x="262.80" y="367.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 (549 samples, 1.95%)</title><rect x="23.8" y="309" width="23.0" height="15.0" fill="rgb(249,82,4)" rx="2" ry="2" />
<text x="26.79" y="319.5" >_..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h192c5818fa53fe5a (3 samples, 0.01%)</title><rect x="109.2" y="389" width="0.1" height="15.0" fill="rgb(220,148,14)" rx="2" ry="2" />
<text x="112.16" y="399.5" ></text>
</g>
<g >
<title>__handle_mm_fault (4 samples, 0.01%)</title><rect x="1145.6" y="277" width="0.2" height="15.0" fill="rgb(209,144,31)" rx="2" ry="2" />
<text x="1148.64" y="287.5" ></text>
</g>
<g >
<title>__mmap (29 samples, 0.10%)</title><rect x="117.8" y="309" width="1.3" height="15.0" fill="rgb(242,46,12)" rx="2" ry="2" />
<text x="120.84" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::find::h8895455c5ba49bed (4 samples, 0.01%)</title><rect x="38.3" y="197" width="0.1" height="15.0" fill="rgb(242,104,47)" rx="2" ry="2" />
<text x="41.26" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (7 samples, 0.02%)</title><rect x="28.2" y="181" width="0.2" height="15.0" fill="rgb(245,13,28)" rx="2" ry="2" />
<text x="31.15" y="191.5" ></text>
</g>
<g >
<title>Z3_solver_check (18,355 samples, 65.22%)</title><rect x="391.7" y="389" width="769.5" height="15.0" fill="rgb(208,38,12)" rx="2" ry="2" />
<text x="394.66" y="399.5" >Z3_solver_check</text>
</g>
<g >
<title>__munmap (34 samples, 0.12%)</title><rect x="106.9" y="325" width="1.5" height="15.0" fill="rgb(230,134,33)" rx="2" ry="2" />
<text x="109.94" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (5 samples, 0.02%)</title><rect x="35.8" y="245" width="0.2" height="15.0" fill="rgb(253,17,28)" rx="2" ry="2" />
<text x="38.79" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (32 samples, 0.11%)</title><rect x="328.6" y="373" width="1.3" height="15.0" fill="rgb(226,68,19)" rx="2" ry="2" />
<text x="331.61" y="383.5" ></text>
</g>
<g >
<title>rocinante (28,144 samples, 100.00%)</title><rect x="10.0" y="485" width="1180.0" height="15.0" fill="rgb(247,56,17)" rx="2" ry="2" />
<text x="13.00" y="495.5" >rocinante</text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1187.6" y="469" width="0.3" height="15.0" fill="rgb(247,175,47)" rx="2" ry="2" />
<text x="1190.61" y="479.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (4 samples, 0.01%)</title><rect x="49.6" y="389" width="0.1" height="15.0" fill="rgb(210,199,7)" rx="2" ry="2" />
<text x="52.58" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (6 samples, 0.02%)</title><rect x="63.0" y="165" width="0.3" height="15.0" fill="rgb(245,26,39)" rx="2" ry="2" />
<text x="66.04" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="58.0" y="117" width="0.2" height="15.0" fill="rgb(243,148,22)" rx="2" ry="2" />
<text x="61.05" y="127.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1186.5" y="437" width="0.3" height="15.0" fill="rgb(208,115,45)" rx="2" ry="2" />
<text x="1189.52" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (8 samples, 0.03%)</title><rect x="14.9" y="293" width="0.3" height="15.0" fill="rgb(208,97,49)" rx="2" ry="2" />
<text x="17.91" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h365a4956706fb90b (426 samples, 1.51%)</title><rect x="87.1" y="421" width="17.9" height="15.0" fill="rgb(236,177,33)" rx="2" ry="2" />
<text x="90.10" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (224 samples, 0.80%)</title><rect x="14.4" y="437" width="9.4" height="15.0" fill="rgb(240,19,37)" rx="2" ry="2" />
<text x="17.40" y="447.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (834 samples, 2.96%)</title><rect x="49.9" y="309" width="35.0" height="15.0" fill="rgb(239,154,43)" rx="2" ry="2" />
<text x="52.91" y="319.5" >st..</text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (10 samples, 0.04%)</title><rect x="29.0" y="181" width="0.4" height="15.0" fill="rgb(223,116,28)" rx="2" ry="2" />
<text x="31.99" y="191.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hf5842b6c96e0c047 (16 samples, 0.06%)</title><rect x="73.4" y="181" width="0.7" height="15.0" fill="rgb(221,125,11)" rx="2" ry="2" />
<text x="76.44" y="191.5" ></text>
</g>
<g >
<title>cranelift_entity::list::ListPool$LT$T$GT$::alloc::hf8b79c8ce8fc5d1f (5 samples, 0.02%)</title><rect x="122.9" y="293" width="0.2" height="15.0" fill="rgb(233,68,27)" rx="2" ry="2" />
<text x="125.87" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (30 samples, 0.11%)</title><rect x="304.4" y="325" width="1.2" height="15.0" fill="rgb(219,47,35)" rx="2" ry="2" />
<text x="307.37" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (66 samples, 0.23%)</title><rect x="90.4" y="357" width="2.8" height="15.0" fill="rgb(244,42,31)" rx="2" ry="2" />
<text x="93.42" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (8 samples, 0.03%)</title><rect x="37.6" y="213" width="0.3" height="15.0" fill="rgb(239,164,38)" rx="2" ry="2" />
<text x="40.59" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (4 samples, 0.01%)</title><rect x="1183.5" y="309" width="0.2" height="15.0" fill="rgb(218,61,46)" rx="2" ry="2" />
<text x="1186.50" y="319.5" ></text>
</g>
<g >
<title>__sigprocmask (4 samples, 0.01%)</title><rect x="65.7" y="133" width="0.1" height="15.0" fill="rgb(223,45,39)" rx="2" ry="2" />
<text x="68.68" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="82.7" y="229" width="0.1" height="15.0" fill="rgb(229,107,10)" rx="2" ry="2" />
<text x="85.66" y="239.5" ></text>
</g>
<g >
<title>start_thread (25 samples, 0.09%)</title><rect x="48.5" y="437" width="1.1" height="15.0" fill="rgb(205,134,50)" rx="2" ry="2" />
<text x="51.53" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (54 samples, 0.19%)</title><rect x="354.9" y="373" width="2.2" height="15.0" fill="rgb(233,36,38)" rx="2" ry="2" />
<text x="357.85" y="383.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (8 samples, 0.03%)</title><rect x="231.1" y="421" width="0.3" height="15.0" fill="rgb(241,54,31)" rx="2" ry="2" />
<text x="234.08" y="431.5" ></text>
</g>
<g >
<title>handle_mm_fault (15 samples, 0.05%)</title><rect x="1142.2" y="261" width="0.6" height="15.0" fill="rgb(213,12,2)" rx="2" ry="2" />
<text x="1145.16" y="271.5" ></text>
</g>
<g >
<title>mprotect_fixup (54 samples, 0.19%)</title><rect x="125.0" y="229" width="2.3" height="15.0" fill="rgb(241,77,24)" rx="2" ry="2" />
<text x="128.05" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.04%)</title><rect x="97.2" y="357" width="0.5" height="15.0" fill="rgb(207,109,36)" rx="2" ry="2" />
<text x="100.21" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (100 samples, 0.36%)</title><rect x="359.3" y="357" width="4.2" height="15.0" fill="rgb(242,7,36)" rx="2" ry="2" />
<text x="362.34" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (5 samples, 0.02%)</title><rect x="122.2" y="309" width="0.2" height="15.0" fill="rgb(254,34,39)" rx="2" ry="2" />
<text x="125.24" y="319.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (34 samples, 0.12%)</title><rect x="1162.2" y="389" width="1.4" height="15.0" fill="rgb(235,78,20)" rx="2" ry="2" />
<text x="1165.20" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (35 samples, 0.12%)</title><rect x="289.7" y="357" width="1.4" height="15.0" fill="rgb(207,116,9)" rx="2" ry="2" />
<text x="292.65" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (19 samples, 0.07%)</title><rect x="14.4" y="325" width="0.8" height="15.0" fill="rgb(210,141,42)" rx="2" ry="2" />
<text x="17.44" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (38 samples, 0.14%)</title><rect x="44.6" y="245" width="1.6" height="15.0" fill="rgb(248,192,14)" rx="2" ry="2" />
<text x="47.63" y="255.5" ></text>
</g>
<g >
<title>__vm_enough_memory (3 samples, 0.01%)</title><rect x="126.6" y="197" width="0.1" height="15.0" fill="rgb(229,125,6)" rx="2" ry="2" />
<text x="129.60" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (31 samples, 0.11%)</title><rect x="386.1" y="341" width="1.3" height="15.0" fill="rgb(248,24,34)" rx="2" ry="2" />
<text x="389.09" y="351.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h5580f8e1cb59a4c0 (362 samples, 1.29%)</title><rect x="87.3" y="405" width="15.1" height="15.0" fill="rgb(224,167,11)" rx="2" ry="2" />
<text x="90.27" y="415.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (4 samples, 0.01%)</title><rect x="1070.4" y="149" width="0.1" height="15.0" fill="rgb(253,132,2)" rx="2" ry="2" />
<text x="1073.38" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (44 samples, 0.16%)</title><rect x="91.3" y="341" width="1.9" height="15.0" fill="rgb(219,105,22)" rx="2" ry="2" />
<text x="94.34" y="351.5" ></text>
</g>
<g >
<title>__do_page_fault (10 samples, 0.04%)</title><rect x="1086.6" y="293" width="0.5" height="15.0" fill="rgb(224,103,30)" rx="2" ry="2" />
<text x="1089.65" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (3 samples, 0.01%)</title><rect x="1184.9" y="277" width="0.1" height="15.0" fill="rgb(213,177,40)" rx="2" ry="2" />
<text x="1187.88" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (26 samples, 0.09%)</title><rect x="149.6" y="277" width="1.1" height="15.0" fill="rgb(239,46,41)" rx="2" ry="2" />
<text x="152.62" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (28 samples, 0.10%)</title><rect x="117.9" y="277" width="1.2" height="15.0" fill="rgb(217,202,34)" rx="2" ry="2" />
<text x="120.88" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (53 samples, 0.19%)</title><rect x="192.9" y="341" width="2.3" height="15.0" fill="rgb(250,94,21)" rx="2" ry="2" />
<text x="195.93" y="351.5" ></text>
</g>
<g >
<title>[libgcc_s.so.1] (3 samples, 0.01%)</title><rect x="1145.0" y="325" width="0.1" height="15.0" fill="rgb(210,140,34)" rx="2" ry="2" />
<text x="1147.97" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0206dbe7b12f9d0 (72 samples, 0.26%)</title><rect x="71.1" y="197" width="3.0" height="15.0" fill="rgb(250,54,38)" rx="2" ry="2" />
<text x="74.09" y="207.5" ></text>
</g>
<g >
<title>__cxa_throw (4 samples, 0.01%)</title><rect x="1145.0" y="357" width="0.1" height="15.0" fill="rgb(231,116,10)" rx="2" ry="2" />
<text x="1147.97" y="367.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (4 samples, 0.01%)</title><rect x="27.4" y="213" width="0.2" height="15.0" fill="rgb(230,188,37)" rx="2" ry="2" />
<text x="30.40" y="223.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h6f689c5462342c94 (6 samples, 0.02%)</title><rect x="204.5" y="325" width="0.3" height="15.0" fill="rgb(239,83,3)" rx="2" ry="2" />
<text x="207.50" y="335.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (75 samples, 0.27%)</title><rect x="198.3" y="341" width="3.2" height="15.0" fill="rgb(219,65,46)" rx="2" ry="2" />
<text x="201.34" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (19 samples, 0.07%)</title><rect x="116.9" y="277" width="0.8" height="15.0" fill="rgb(228,152,48)" rx="2" ry="2" />
<text x="119.91" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="58.2" y="133" width="0.2" height="15.0" fill="rgb(230,75,32)" rx="2" ry="2" />
<text x="61.22" y="143.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (4 samples, 0.01%)</title><rect x="64.2" y="181" width="0.2" height="15.0" fill="rgb(236,220,5)" rx="2" ry="2" />
<text x="67.21" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="209.7" y="325" width="0.1" height="15.0" fill="rgb(211,200,36)" rx="2" ry="2" />
<text x="212.66" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (10 samples, 0.04%)</title><rect x="1181.1" y="309" width="0.4" height="15.0" fill="rgb(249,135,34)" rx="2" ry="2" />
<text x="1184.11" y="319.5" ></text>
</g>
<g >
<title>_int_free (20 samples, 0.07%)</title><rect x="294.1" y="325" width="0.8" height="15.0" fill="rgb(251,165,23)" rx="2" ry="2" />
<text x="297.06" y="335.5" ></text>
</g>
<g >
<title>_int_free (11 samples, 0.04%)</title><rect x="66.2" y="229" width="0.4" height="15.0" fill="rgb(233,83,54)" rx="2" ry="2" />
<text x="69.18" y="239.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (19 samples, 0.07%)</title><rect x="58.8" y="149" width="0.8" height="15.0" fill="rgb(251,196,37)" rx="2" ry="2" />
<text x="61.76" y="159.5" ></text>
</g>
<g >
<title>_Unwind_RaiseException (4 samples, 0.01%)</title><rect x="1145.0" y="341" width="0.1" height="15.0" fill="rgb(219,177,44)" rx="2" ry="2" />
<text x="1147.97" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_params::h07f799cc3d985229 (7 samples, 0.02%)</title><rect x="205.8" y="325" width="0.3" height="15.0" fill="rgb(250,21,10)" rx="2" ry="2" />
<text x="208.80" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="50.8" y="165" width="0.2" height="15.0" fill="rgb(207,217,4)" rx="2" ry="2" />
<text x="53.80" y="175.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (28 samples, 0.10%)</title><rect x="130.8" y="341" width="1.2" height="15.0" fill="rgb(224,45,6)" rx="2" ry="2" />
<text x="133.83" y="351.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (120 samples, 0.43%)</title><rect x="1110.7" y="325" width="5.0" height="15.0" fill="rgb(226,42,33)" rx="2" ry="2" />
<text x="1113.67" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (20 samples, 0.07%)</title><rect x="255.9" y="309" width="0.8" height="15.0" fill="rgb(221,208,40)" rx="2" ry="2" />
<text x="258.86" y="319.5" ></text>
</g>
<g >
<title>rocinante::parity_wasm_utils::build_module::h3459cb68f5b7661d (1,346 samples, 4.78%)</title><rect x="309.5" y="421" width="56.4" height="15.0" fill="rgb(253,1,48)" rx="2" ry="2" />
<text x="312.49" y="431.5" >rocin..</text>
</g>
<g >
<title>__GI___mprotect (20 samples, 0.07%)</title><rect x="116.9" y="309" width="0.8" height="15.0" fill="rgb(250,110,46)" rx="2" ry="2" />
<text x="119.87" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (32 samples, 0.11%)</title><rect x="251.0" y="341" width="1.3" height="15.0" fill="rgb(221,196,33)" rx="2" ry="2" />
<text x="254.00" y="351.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 (101 samples, 0.36%)</title><rect x="245.6" y="341" width="4.2" height="15.0" fill="rgb(224,132,28)" rx="2" ry="2" />
<text x="248.59" y="351.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 (14 samples, 0.05%)</title><rect x="17.1" y="293" width="0.6" height="15.0" fill="rgb(230,189,44)" rx="2" ry="2" />
<text x="20.13" y="303.5" ></text>
</g>
<g >
<title>page_fault (23 samples, 0.08%)</title><rect x="1141.8" y="309" width="1.0" height="15.0" fill="rgb(220,180,32)" rx="2" ry="2" />
<text x="1144.83" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (6 samples, 0.02%)</title><rect x="218.5" y="341" width="0.2" height="15.0" fill="rgb(211,108,29)" rx="2" ry="2" />
<text x="221.46" y="351.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::func_translator::FuncTranslator::new::hf4c7c586c59a333c (7 samples, 0.02%)</title><rect x="207.0" y="325" width="0.3" height="15.0" fill="rgb(222,121,5)" rx="2" ry="2" />
<text x="210.02" y="335.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 (4 samples, 0.01%)</title><rect x="49.6" y="277" width="0.1" height="15.0" fill="rgb(241,130,48)" rx="2" ry="2" />
<text x="52.58" y="287.5" ></text>
</g>
<g >
<title>unmap_region (6 samples, 0.02%)</title><rect x="1070.4" y="197" width="0.2" height="15.0" fill="rgb(250,26,10)" rx="2" ry="2" />
<text x="1073.38" y="207.5" ></text>
</g>
<g >
<title>do_divide_error (11 samples, 0.04%)</title><rect x="10.4" y="437" width="0.4" height="15.0" fill="rgb(250,31,38)" rx="2" ry="2" />
<text x="13.38" y="447.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (26 samples, 0.09%)</title><rect x="207.5" y="341" width="1.1" height="15.0" fill="rgb(238,15,52)" rx="2" ry="2" />
<text x="210.52" y="351.5" ></text>
</g>
<g >
<title>rocinante::solver::z3::Z3Solver::verify::ha247dd2077cd2fca (18,969 samples, 67.40%)</title><rect x="365.9" y="421" width="795.3" height="15.0" fill="rgb(215,140,46)" rx="2" ry="2" />
<text x="368.92" y="431.5" >rocinante::solver::z3::Z3Solver::verify::ha247dd2077cd2fca</text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (12 samples, 0.04%)</title><rect x="57.9" y="149" width="0.5" height="15.0" fill="rgb(216,90,13)" rx="2" ry="2" />
<text x="60.88" y="159.5" ></text>
</g>
<g >
<title>_int_free (60 samples, 0.21%)</title><rect x="199.0" y="309" width="2.5" height="15.0" fill="rgb(212,85,18)" rx="2" ry="2" />
<text x="201.97" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.05%)</title><rect x="83.3" y="229" width="0.5" height="15.0" fill="rgb(216,179,35)" rx="2" ry="2" />
<text x="86.29" y="239.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h5580f8e1cb59a4c0 (48 samples, 0.17%)</title><rect x="50.3" y="245" width="2.0" height="15.0" fill="rgb(224,192,44)" rx="2" ry="2" />
<text x="53.29" y="255.5" ></text>
</g>
<g >
<title>mprotect_fixup (3 samples, 0.01%)</title><rect x="54.4" y="69" width="0.1" height="15.0" fill="rgb(208,11,23)" rx="2" ry="2" />
<text x="57.40" y="79.5" ></text>
</g>
<g >
<title>__memset_avx2 (19 samples, 0.07%)</title><rect x="119.5" y="325" width="0.8" height="15.0" fill="rgb(246,178,7)" rx="2" ry="2" />
<text x="122.51" y="335.5" ></text>
</g>
<g >
<title>_$LT$std..io..buffered..LineWriter$LT$W$GT$$u20$as$u20$std..io..Write$GT$::write::h599d9a472a2f8fdb (4 samples, 0.01%)</title><rect x="1180.1" y="261" width="0.2" height="15.0" fill="rgb(252,27,44)" rx="2" ry="2" />
<text x="1183.15" y="271.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (12 samples, 0.04%)</title><rect x="41.0" y="197" width="0.5" height="15.0" fill="rgb(242,71,37)" rx="2" ry="2" />
<text x="44.03" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (74 samples, 0.26%)</title><rect x="239.9" y="357" width="3.1" height="15.0" fill="rgb(214,18,25)" rx="2" ry="2" />
<text x="242.93" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha22fe22c40adc3f7 (28 samples, 0.10%)</title><rect x="81.5" y="229" width="1.2" height="15.0" fill="rgb(208,53,47)" rx="2" ry="2" />
<text x="84.49" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.03%)</title><rect x="51.9" y="213" width="0.4" height="15.0" fill="rgb(240,125,44)" rx="2" ry="2" />
<text x="54.93" y="223.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (4 samples, 0.01%)</title><rect x="26.8" y="229" width="0.2" height="15.0" fill="rgb(227,150,47)" rx="2" ry="2" />
<text x="29.81" y="239.5" ></text>
</g>
<g >
<title>z3::solver::_$LT$impl$u20$z3..Solver$GT$::assert::hbde8231969432c87 (514 samples, 1.83%)</title><rect x="370.1" y="405" width="21.6" height="15.0" fill="rgb(210,188,15)" rx="2" ry="2" />
<text x="373.11" y="415.5" >z..</text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::h81ec02567a29dd60 (6 samples, 0.02%)</title><rect x="215.9" y="373" width="0.2" height="15.0" fill="rgb(221,143,28)" rx="2" ry="2" />
<text x="218.86" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (18 samples, 0.06%)</title><rect x="1185.8" y="405" width="0.7" height="15.0" fill="rgb(211,7,33)" rx="2" ry="2" />
<text x="1188.77" y="415.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="69.8" y="149" width="0.1" height="15.0" fill="rgb(246,115,8)" rx="2" ry="2" />
<text x="72.79" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_free (20 samples, 0.07%)</title><rect x="245.9" y="325" width="0.8" height="15.0" fill="rgb(239,28,21)" rx="2" ry="2" />
<text x="248.88" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (21 samples, 0.07%)</title><rect x="15.9" y="325" width="0.9" height="15.0" fill="rgb(245,123,35)" rx="2" ry="2" />
<text x="18.87" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..ExportEntry$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h4be7f1d73b60ccfe (22 samples, 0.08%)</title><rect x="68.4" y="197" width="1.0" height="15.0" fill="rgb(205,70,20)" rx="2" ry="2" />
<text x="71.45" y="207.5" ></text>
</g>
<g >
<title>perf_iterate_sb (5 samples, 0.02%)</title><rect x="113.5" y="197" width="0.2" height="15.0" fill="rgb(207,161,30)" rx="2" ry="2" />
<text x="116.52" y="207.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (5 samples, 0.02%)</title><rect x="128.5" y="133" width="0.2" height="15.0" fill="rgb(235,195,34)" rx="2" ry="2" />
<text x="131.49" y="143.5" ></text>
</g>
<g >
<title>__rdl_alloc (4 samples, 0.01%)</title><rect x="1178.5" y="373" width="0.1" height="15.0" fill="rgb(216,89,32)" rx="2" ry="2" />
<text x="1181.47" y="383.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="68.7" y="149" width="0.1" height="15.0" fill="rgb(205,155,33)" rx="2" ry="2" />
<text x="71.66" y="159.5" ></text>
</g>
<g >
<title>_int_malloc (23 samples, 0.08%)</title><rect x="312.3" y="373" width="0.9" height="15.0" fill="rgb(216,199,33)" rx="2" ry="2" />
<text x="315.25" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (15 samples, 0.05%)</title><rect x="15.2" y="309" width="0.7" height="15.0" fill="rgb(246,120,45)" rx="2" ry="2" />
<text x="18.24" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (102 samples, 0.36%)</title><rect x="291.4" y="373" width="4.3" height="15.0" fill="rgb(235,6,19)" rx="2" ry="2" />
<text x="294.42" y="383.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (159 samples, 0.56%)</title><rect x="315.9" y="405" width="6.7" height="15.0" fill="rgb(224,71,18)" rx="2" ry="2" />
<text x="318.94" y="415.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,493 samples, 8.86%)</title><rect x="110.3" y="373" width="104.6" height="15.0" fill="rgb(211,224,40)" rx="2" ry="2" />
<text x="113.33" y="383.5" >_$LT$wasmer_..</text>
</g>
<g >
<title>do_syscall_64 (15 samples, 0.05%)</title><rect x="369.4" y="245" width="0.6" height="15.0" fill="rgb(205,215,42)" rx="2" ry="2" />
<text x="372.40" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="83.7" y="197" width="0.1" height="15.0" fill="rgb(211,137,26)" rx="2" ry="2" />
<text x="86.67" y="207.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_function_body::hcb187222237f62c7 (18 samples, 0.06%)</title><rect x="158.7" y="309" width="0.7" height="15.0" fill="rgb(211,128,30)" rx="2" ry="2" />
<text x="161.67" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (4 samples, 0.01%)</title><rect x="29.6" y="181" width="0.2" height="15.0" fill="rgb(250,188,22)" rx="2" ry="2" />
<text x="32.62" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (6 samples, 0.02%)</title><rect x="35.2" y="229" width="0.3" height="15.0" fill="rgb(253,51,43)" rx="2" ry="2" />
<text x="38.24" y="239.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 (26 samples, 0.09%)</title><rect x="47.3" y="405" width="1.1" height="15.0" fill="rgb(249,145,44)" rx="2" ry="2" />
<text x="50.27" y="415.5" ></text>
</g>
<g >
<title>std::io::stdio::_print::hb57ef42b29f9a20a (6 samples, 0.02%)</title><rect x="1180.1" y="421" width="0.2" height="15.0" fill="rgb(253,93,20)" rx="2" ry="2" />
<text x="1183.06" y="431.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (8 samples, 0.03%)</title><rect x="129.5" y="357" width="0.3" height="15.0" fill="rgb(248,105,3)" rx="2" ry="2" />
<text x="132.49" y="367.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (13 samples, 0.05%)</title><rect x="53.4" y="181" width="0.6" height="15.0" fill="rgb(237,142,29)" rx="2" ry="2" />
<text x="56.44" y="191.5" ></text>
</g>
<g >
<title>try_charge (4 samples, 0.01%)</title><rect x="1142.5" y="213" width="0.2" height="15.0" fill="rgb(221,51,54)" rx="2" ry="2" />
<text x="1145.50" y="223.5" ></text>
</g>
<g >
<title>do_munmap (3 samples, 0.01%)</title><rect x="52.9" y="85" width="0.2" height="15.0" fill="rgb(246,56,33)" rx="2" ry="2" />
<text x="55.93" y="95.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (84 samples, 0.30%)</title><rect x="184.8" y="293" width="3.5" height="15.0" fill="rgb(218,72,14)" rx="2" ry="2" />
<text x="187.79" y="303.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (560 samples, 1.99%)</title><rect x="23.8" y="357" width="23.5" height="15.0" fill="rgb(250,154,47)" rx="2" ry="2" />
<text x="26.79" y="367.5" >r..</text>
</g>
<g >
<title>[libz3.so.4] (38 samples, 0.14%)</title><rect x="12.8" y="453" width="1.6" height="15.0" fill="rgb(220,12,26)" rx="2" ry="2" />
<text x="15.81" y="463.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 (30 samples, 0.11%)</title><rect x="47.3" y="453" width="1.2" height="15.0" fill="rgb(220,195,15)" rx="2" ry="2" />
<text x="50.27" y="463.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (3 samples, 0.01%)</title><rect x="26.9" y="213" width="0.1" height="15.0" fill="rgb(249,94,49)" rx="2" ry="2" />
<text x="29.85" y="223.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (28 samples, 0.10%)</title><rect x="127.6" y="229" width="1.2" height="15.0" fill="rgb(235,89,45)" rx="2" ry="2" />
<text x="130.65" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="250.7" y="357" width="0.1" height="15.0" fill="rgb(239,193,35)" rx="2" ry="2" />
<text x="253.66" y="367.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha4062a2c7a6e2cb5E.llvm.16938716460618634628 (9 samples, 0.03%)</title><rect x="45.8" y="213" width="0.4" height="15.0" fill="rgb(240,147,42)" rx="2" ry="2" />
<text x="48.81" y="223.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (9 samples, 0.03%)</title><rect x="61.3" y="133" width="0.4" height="15.0" fill="rgb(254,42,8)" rx="2" ry="2" />
<text x="64.32" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (6 samples, 0.02%)</title><rect x="43.2" y="213" width="0.3" height="15.0" fill="rgb(237,79,22)" rx="2" ry="2" />
<text x="46.21" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (3 samples, 0.01%)</title><rect x="19.2" y="309" width="0.1" height="15.0" fill="rgb(239,41,39)" rx="2" ry="2" />
<text x="22.22" y="319.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 (40 samples, 0.14%)</title><rect x="53.3" y="197" width="1.6" height="15.0" fill="rgb(246,211,50)" rx="2" ry="2" />
<text x="56.27" y="207.5" ></text>
</g>
<g >
<title>malloc_consolidate (48 samples, 0.17%)</title><rect x="1139.6" y="309" width="2.1" height="15.0" fill="rgb(240,184,28)" rx="2" ry="2" />
<text x="1142.65" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (3 samples, 0.01%)</title><rect x="259.7" y="309" width="0.1" height="15.0" fill="rgb(225,98,36)" rx="2" ry="2" />
<text x="262.68" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (66 samples, 0.23%)</title><rect x="1168.4" y="373" width="2.7" height="15.0" fill="rgb(215,226,34)" rx="2" ry="2" />
<text x="1171.37" y="383.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 (13 samples, 0.05%)</title><rect x="45.7" y="229" width="0.5" height="15.0" fill="rgb(209,39,5)" rx="2" ry="2" />
<text x="48.68" y="239.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (11 samples, 0.04%)</title><rect x="165.5" y="261" width="0.5" height="15.0" fill="rgb(209,83,53)" rx="2" ry="2" />
<text x="168.51" y="271.5" ></text>
</g>
<g >
<title>__GI_strlen (12 samples, 0.04%)</title><rect x="387.7" y="357" width="0.5" height="15.0" fill="rgb(219,5,18)" rx="2" ry="2" />
<text x="390.72" y="367.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (112 samples, 0.40%)</title><rect x="176.4" y="325" width="4.7" height="15.0" fill="rgb(221,115,5)" rx="2" ry="2" />
<text x="179.41" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (8 samples, 0.03%)</title><rect x="1184.8" y="309" width="0.3" height="15.0" fill="rgb(209,87,30)" rx="2" ry="2" />
<text x="1187.80" y="319.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::collect::h1f2b29105d9f9b2d (4 samples, 0.01%)</title><rect x="49.2" y="213" width="0.2" height="15.0" fill="rgb(248,79,18)" rx="2" ry="2" />
<text x="52.24" y="223.5" ></text>
</g>
<g >
<title>malloc_consolidate (26 samples, 0.09%)</title><rect x="1085.5" y="325" width="1.1" height="15.0" fill="rgb(245,23,7)" rx="2" ry="2" />
<text x="1088.48" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (13 samples, 0.05%)</title><rect x="95.5" y="213" width="0.6" height="15.0" fill="rgb(217,180,36)" rx="2" ry="2" />
<text x="98.53" y="223.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (21 samples, 0.07%)</title><rect x="64.4" y="165" width="0.9" height="15.0" fill="rgb(238,72,49)" rx="2" ry="2" />
<text x="67.42" y="175.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (49 samples, 0.17%)</title><rect x="1187.9" y="469" width="2.1" height="15.0" fill="rgb(232,139,31)" rx="2" ry="2" />
<text x="1190.95" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="77.0" y="245" width="0.3" height="15.0" fill="rgb(232,81,20)" rx="2" ry="2" />
<text x="79.96" y="255.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_params::hc949b3cf879ad282 (77 samples, 0.27%)</title><rect x="331.6" y="405" width="3.3" height="15.0" fill="rgb(208,105,3)" rx="2" ry="2" />
<text x="334.62" y="415.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$alloc..borrow..ToOwned$GT$::to_owned::h243a230274a8a4d9 (29 samples, 0.10%)</title><rect x="24.1" y="277" width="1.2" height="15.0" fill="rgb(238,108,0)" rx="2" ry="2" />
<text x="27.13" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (7 samples, 0.02%)</title><rect x="1070.3" y="245" width="0.3" height="15.0" fill="rgb(243,117,32)" rx="2" ry="2" />
<text x="1073.34" y="255.5" ></text>
</g>
<g >
<title>_int_free (30 samples, 0.11%)</title><rect x="238.5" y="341" width="1.2" height="15.0" fill="rgb(250,191,47)" rx="2" ry="2" />
<text x="241.46" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="57.3" y="117" width="0.2" height="15.0" fill="rgb(209,73,0)" rx="2" ry="2" />
<text x="60.34" y="127.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (9 samples, 0.03%)</title><rect x="1181.7" y="261" width="0.4" height="15.0" fill="rgb(222,167,47)" rx="2" ry="2" />
<text x="1184.74" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (17 samples, 0.06%)</title><rect x="323.2" y="389" width="0.7" height="15.0" fill="rgb(244,7,9)" rx="2" ry="2" />
<text x="326.15" y="399.5" ></text>
</g>
<g >
<title>perf_event_mmap (7 samples, 0.02%)</title><rect x="117.1" y="213" width="0.3" height="15.0" fill="rgb(235,7,42)" rx="2" ry="2" />
<text x="120.12" y="223.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (75 samples, 0.27%)</title><rect x="178.0" y="293" width="3.1" height="15.0" fill="rgb(207,7,26)" rx="2" ry="2" />
<text x="180.96" y="303.5" ></text>
</g>
<g >
<title>divide_error (11 samples, 0.04%)</title><rect x="10.4" y="453" width="0.4" height="15.0" fill="rgb(236,108,50)" rx="2" ry="2" />
<text x="13.38" y="463.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (3 samples, 0.01%)</title><rect x="31.0" y="181" width="0.1" height="15.0" fill="rgb(245,181,18)" rx="2" ry="2" />
<text x="33.96" y="191.5" ></text>
</g>
<g >
<title>do_syscall_64 (32 samples, 0.11%)</title><rect x="107.0" y="293" width="1.4" height="15.0" fill="rgb(252,72,30)" rx="2" ry="2" />
<text x="110.02" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (55 samples, 0.20%)</title><rect x="215.6" y="405" width="2.3" height="15.0" fill="rgb(247,191,9)" rx="2" ry="2" />
<text x="218.57" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (486 samples, 1.73%)</title><rect x="26.4" y="261" width="20.4" height="15.0" fill="rgb(245,197,33)" rx="2" ry="2" />
<text x="29.39" y="271.5" ></text>
</g>
<g >
<title>parity_wasm::elements::export_entry::ExportEntry::new::h2b1d2cd4dda01b6d (3 samples, 0.01%)</title><rect x="338.2" y="389" width="0.1" height="15.0" fill="rgb(218,69,11)" rx="2" ry="2" />
<text x="341.16" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.04%)</title><rect x="171.6" y="293" width="0.5" height="15.0" fill="rgb(205,97,42)" rx="2" ry="2" />
<text x="174.59" y="303.5" ></text>
</g>
<g >
<title>do_error_trap.part.9 (11 samples, 0.04%)</title><rect x="10.4" y="405" width="0.4" height="15.0" fill="rgb(242,15,5)" rx="2" ry="2" />
<text x="13.38" y="415.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0206dbe7b12f9d0 (597 samples, 2.12%)</title><rect x="263.6" y="357" width="25.0" height="15.0" fill="rgb(209,195,2)" rx="2" ry="2" />
<text x="266.62" y="367.5" >_..</text>
</g>
<g >
<title>page_fault (15 samples, 0.05%)</title><rect x="1115.1" y="309" width="0.6" height="15.0" fill="rgb(210,97,33)" rx="2" ry="2" />
<text x="1118.08" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8 samples, 0.03%)</title><rect x="74.4" y="197" width="0.4" height="15.0" fill="rgb(209,218,29)" rx="2" ry="2" />
<text x="77.44" y="207.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="80.0" y="213" width="0.1" height="15.0" fill="rgb(248,196,53)" rx="2" ry="2" />
<text x="83.02" y="223.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 (20 samples, 0.07%)</title><rect x="48.6" y="261" width="0.8" height="15.0" fill="rgb(228,189,9)" rx="2" ry="2" />
<text x="51.57" y="271.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 (560 samples, 1.99%)</title><rect x="23.8" y="453" width="23.5" height="15.0" fill="rgb(247,147,34)" rx="2" ry="2" />
<text x="26.79" y="463.5" >_..</text>
</g>
<g >
<title>do_mprotect_pkey (5 samples, 0.02%)</title><rect x="53.8" y="85" width="0.2" height="15.0" fill="rgb(216,184,30)" rx="2" ry="2" />
<text x="56.77" y="95.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (9 samples, 0.03%)</title><rect x="36.6" y="229" width="0.4" height="15.0" fill="rgb(242,177,52)" rx="2" ry="2" />
<text x="39.58" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="76.7" y="213" width="0.1" height="15.0" fill="rgb(233,81,17)" rx="2" ry="2" />
<text x="79.66" y="223.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (3 samples, 0.01%)</title><rect x="113.3" y="197" width="0.1" height="15.0" fill="rgb(218,126,25)" rx="2" ry="2" />
<text x="116.27" y="207.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (12 samples, 0.04%)</title><rect x="146.2" y="309" width="0.5" height="15.0" fill="rgb(210,128,36)" rx="2" ry="2" />
<text x="149.22" y="319.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h1ce3360cecae11fd (7 samples, 0.02%)</title><rect x="146.7" y="309" width="0.3" height="15.0" fill="rgb(213,93,37)" rx="2" ry="2" />
<text x="149.72" y="319.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 (72 samples, 0.26%)</title><rect x="204.5" y="341" width="3.0" height="15.0" fill="rgb(222,56,40)" rx="2" ry="2" />
<text x="207.50" y="351.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (7 samples, 0.02%)</title><rect x="231.1" y="405" width="0.3" height="15.0" fill="rgb(252,123,34)" rx="2" ry="2" />
<text x="234.12" y="415.5" ></text>
</g>
<g >
<title>perf_event_init_task (6 samples, 0.02%)</title><rect x="1186.6" y="373" width="0.2" height="15.0" fill="rgb(230,179,3)" rx="2" ry="2" />
<text x="1189.56" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (52 samples, 0.18%)</title><rect x="16.8" y="309" width="2.1" height="15.0" fill="rgb(205,67,50)" rx="2" ry="2" />
<text x="19.75" y="319.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (27 samples, 0.10%)</title><rect x="152.8" y="309" width="1.1" height="15.0" fill="rgb(238,170,21)" rx="2" ry="2" />
<text x="155.76" y="319.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 (10 samples, 0.04%)</title><rect x="1184.2" y="437" width="0.4" height="15.0" fill="rgb(248,141,34)" rx="2" ry="2" />
<text x="1187.21" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="60.5" y="149" width="0.2" height="15.0" fill="rgb(209,215,8)" rx="2" ry="2" />
<text x="63.48" y="159.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (8 samples, 0.03%)</title><rect x="125.8" y="181" width="0.3" height="15.0" fill="rgb(228,166,29)" rx="2" ry="2" />
<text x="128.76" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="64.0" y="165" width="0.1" height="15.0" fill="rgb(233,169,38)" rx="2" ry="2" />
<text x="66.96" y="175.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (3 samples, 0.01%)</title><rect x="1186.3" y="293" width="0.1" height="15.0" fill="rgb(232,31,11)" rx="2" ry="2" />
<text x="1189.31" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (38 samples, 0.14%)</title><rect x="32.6" y="245" width="1.6" height="15.0" fill="rgb(220,84,39)" rx="2" ry="2" />
<text x="35.64" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (39 samples, 0.14%)</title><rect x="261.1" y="341" width="1.6" height="15.0" fill="rgb(209,177,11)" rx="2" ry="2" />
<text x="264.06" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (11 samples, 0.04%)</title><rect x="126.1" y="181" width="0.5" height="15.0" fill="rgb(241,67,47)" rx="2" ry="2" />
<text x="129.10" y="191.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (13 samples, 0.05%)</title><rect x="369.4" y="133" width="0.5" height="15.0" fill="rgb(236,142,20)" rx="2" ry="2" />
<text x="372.40" y="143.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (6 samples, 0.02%)</title><rect x="39.3" y="213" width="0.2" height="15.0" fill="rgb(250,178,45)" rx="2" ry="2" />
<text x="42.27" y="223.5" ></text>
</g>
<g >
<title>GOMP_critical_name_end (4 samples, 0.01%)</title><rect x="367.0" y="357" width="0.2" height="15.0" fill="rgb(208,143,37)" rx="2" ry="2" />
<text x="370.01" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="111.3" y="325" width="0.2" height="15.0" fill="rgb(242,207,21)" rx="2" ry="2" />
<text x="114.34" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6 samples, 0.02%)</title><rect x="74.2" y="197" width="0.2" height="15.0" fill="rgb(239,224,37)" rx="2" ry="2" />
<text x="77.19" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1186.5" y="453" width="0.3" height="15.0" fill="rgb(220,39,32)" rx="2" ry="2" />
<text x="1189.52" y="463.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..ExportEntry$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h4be7f1d73b60ccfe (145 samples, 0.52%)</title><rect x="243.7" y="357" width="6.1" height="15.0" fill="rgb(225,20,35)" rx="2" ry="2" />
<text x="246.74" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (5 samples, 0.02%)</title><rect x="39.6" y="213" width="0.2" height="15.0" fill="rgb(227,179,1)" rx="2" ry="2" />
<text x="42.60" y="223.5" ></text>
</g>
<g >
<title>_ZN77_$LT$cranelift_codegen..simple_gvn..HashKey$u20$as$u20$core..clone..Clone$GT$5clone17hdd8a04f286b7e1acE.llvm.9287824473182564923 (3 samples, 0.01%)</title><rect x="45.1" y="229" width="0.1" height="15.0" fill="rgb(233,132,48)" rx="2" ry="2" />
<text x="48.05" y="239.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (100 samples, 0.36%)</title><rect x="147.3" y="309" width="4.2" height="15.0" fill="rgb(228,118,16)" rx="2" ry="2" />
<text x="150.31" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (30 samples, 0.11%)</title><rect x="170.9" y="325" width="1.3" height="15.0" fill="rgb(246,49,20)" rx="2" ry="2" />
<text x="173.92" y="335.5" ></text>
</g>
<g >
<title>_int_free (21 samples, 0.07%)</title><rect x="288.7" y="341" width="0.9" height="15.0" fill="rgb(210,209,19)" rx="2" ry="2" />
<text x="291.73" y="351.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::he8e4968d40742750 (197 samples, 0.70%)</title><rect x="1171.6" y="421" width="8.2" height="15.0" fill="rgb(231,203,41)" rx="2" ry="2" />
<text x="1174.55" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (16 samples, 0.06%)</title><rect x="339.5" y="373" width="0.6" height="15.0" fill="rgb(249,222,18)" rx="2" ry="2" />
<text x="342.46" y="383.5" ></text>
</g>
<g >
<title>_raw_spin_lock (15 samples, 0.05%)</title><rect x="1160.1" y="293" width="0.6" height="15.0" fill="rgb(213,114,38)" rx="2" ry="2" />
<text x="1163.06" y="303.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="387.5" y="325" width="0.2" height="15.0" fill="rgb(229,43,3)" rx="2" ry="2" />
<text x="390.51" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01c6f1483464e918 (21 samples, 0.07%)</title><rect x="50.5" y="229" width="0.8" height="15.0" fill="rgb(209,39,3)" rx="2" ry="2" />
<text x="53.46" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (60 samples, 0.21%)</title><rect x="27.6" y="229" width="2.5" height="15.0" fill="rgb(244,116,27)" rx="2" ry="2" />
<text x="30.61" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (30 samples, 0.11%)</title><rect x="93.2" y="373" width="1.2" height="15.0" fill="rgb(228,196,43)" rx="2" ry="2" />
<text x="96.18" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (38 samples, 0.14%)</title><rect x="250.8" y="357" width="1.6" height="15.0" fill="rgb(242,214,44)" rx="2" ry="2" />
<text x="253.83" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (17 samples, 0.06%)</title><rect x="1185.8" y="357" width="0.7" height="15.0" fill="rgb(228,58,8)" rx="2" ry="2" />
<text x="1188.81" y="367.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (3 samples, 0.01%)</title><rect x="16.5" y="261" width="0.1" height="15.0" fill="rgb(219,110,34)" rx="2" ry="2" />
<text x="19.46" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (25 samples, 0.09%)</title><rect x="171.0" y="309" width="1.1" height="15.0" fill="rgb(238,147,1)" rx="2" ry="2" />
<text x="174.04" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::WhitelistedInstruction::sample::h9a59cbfed31487a4 (5 samples, 0.02%)</title><rect x="1178.9" y="405" width="0.2" height="15.0" fill="rgb(205,66,40)" rx="2" ry="2" />
<text x="1181.89" y="415.5" ></text>
</g>
<g >
<title>mprotect_fixup (26 samples, 0.09%)</title><rect x="113.1" y="229" width="1.0" height="15.0" fill="rgb(241,102,32)" rx="2" ry="2" />
<text x="116.06" y="239.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (6 samples, 0.02%)</title><rect x="116.4" y="293" width="0.2" height="15.0" fill="rgb(232,122,33)" rx="2" ry="2" />
<text x="119.37" y="303.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (17 samples, 0.06%)</title><rect x="1180.4" y="309" width="0.7" height="15.0" fill="rgb(217,70,5)" rx="2" ry="2" />
<text x="1183.40" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (5 samples, 0.02%)</title><rect x="1182.6" y="309" width="0.2" height="15.0" fill="rgb(245,61,19)" rx="2" ry="2" />
<text x="1185.58" y="319.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (3 samples, 0.01%)</title><rect x="83.5" y="197" width="0.2" height="15.0" fill="rgb(212,61,20)" rx="2" ry="2" />
<text x="86.54" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (31 samples, 0.11%)</title><rect x="121.2" y="325" width="1.3" height="15.0" fill="rgb(226,154,52)" rx="2" ry="2" />
<text x="124.23" y="335.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (3 samples, 0.01%)</title><rect x="16.5" y="277" width="0.1" height="15.0" fill="rgb(243,177,54)" rx="2" ry="2" />
<text x="19.46" y="287.5" ></text>
</g>
<g >
<title>__vma_adjust (3 samples, 0.01%)</title><rect x="127.2" y="197" width="0.1" height="15.0" fill="rgb(236,190,37)" rx="2" ry="2" />
<text x="130.19" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (4 samples, 0.01%)</title><rect x="288.4" y="293" width="0.2" height="15.0" fill="rgb(212,188,7)" rx="2" ry="2" />
<text x="291.44" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (217 samples, 0.77%)</title><rect x="55.0" y="197" width="9.1" height="15.0" fill="rgb(223,31,0)" rx="2" ry="2" />
<text x="57.99" y="207.5" ></text>
</g>
<g >
<title>__GI___mprotect (4 samples, 0.01%)</title><rect x="54.4" y="149" width="0.2" height="15.0" fill="rgb(234,121,21)" rx="2" ry="2" />
<text x="57.40" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (10 samples, 0.04%)</title><rect x="1184.2" y="293" width="0.4" height="15.0" fill="rgb(238,79,24)" rx="2" ry="2" />
<text x="1187.21" y="303.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 (10 samples, 0.04%)</title><rect x="1184.2" y="357" width="0.4" height="15.0" fill="rgb(223,167,0)" rx="2" ry="2" />
<text x="1187.21" y="367.5" ></text>
</g>
<g >
<title>__GI_strlen (4 samples, 0.01%)</title><rect x="1144.8" y="357" width="0.2" height="15.0" fill="rgb(218,27,3)" rx="2" ry="2" />
<text x="1147.80" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (6 samples, 0.02%)</title><rect x="387.4" y="357" width="0.3" height="15.0" fill="rgb(211,171,22)" rx="2" ry="2" />
<text x="390.43" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (98 samples, 0.35%)</title><rect x="1167.0" y="389" width="4.1" height="15.0" fill="rgb(217,49,13)" rx="2" ry="2" />
<text x="1170.02" y="399.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, 0.06%)</title><rect x="1185.8" y="421" width="0.7" height="15.0" fill="rgb(229,123,26)" rx="2" ry="2" />
<text x="1188.77" y="431.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (67 samples, 0.24%)</title><rect x="195.5" y="341" width="2.8" height="15.0" fill="rgb(235,173,23)" rx="2" ry="2" />
<text x="198.53" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.04%)</title><rect x="290.6" y="325" width="0.4" height="15.0" fill="rgb(227,45,35)" rx="2" ry="2" />
<text x="293.58" y="335.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (5 samples, 0.02%)</title><rect x="1142.5" y="229" width="0.2" height="15.0" fill="rgb(236,115,44)" rx="2" ry="2" />
<text x="1145.45" y="239.5" ></text>
</g>
<g >
<title>remove_vma (3 samples, 0.01%)</title><rect x="108.7" y="261" width="0.1" height="15.0" fill="rgb(242,149,2)" rx="2" ry="2" />
<text x="111.65" y="271.5" ></text>
</g>
<g >
<title>GOMP_critical_name_end (49 samples, 0.17%)</title><rect x="380.6" y="357" width="2.0" height="15.0" fill="rgb(207,56,22)" rx="2" ry="2" />
<text x="383.59" y="367.5" ></text>
</g>
<g >
<title>_ZN3std4sync6rwlock15RwLock$LT$T$GT$4read17h11453e6976358159E.llvm.1752998059772103100 (13 samples, 0.05%)</title><rect x="204.8" y="325" width="0.5" height="15.0" fill="rgb(243,49,41)" rx="2" ry="2" />
<text x="207.75" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (32 samples, 0.11%)</title><rect x="112.8" y="293" width="1.3" height="15.0" fill="rgb(209,100,2)" rx="2" ry="2" />
<text x="115.81" y="303.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (834 samples, 2.96%)</title><rect x="49.9" y="389" width="35.0" height="15.0" fill="rgb(226,13,48)" rx="2" ry="2" />
<text x="52.91" y="399.5" >st..</text>
</g>
<g >
<title>_int_realloc (13 samples, 0.05%)</title><rect x="82.1" y="197" width="0.5" height="15.0" fill="rgb(247,130,5)" rx="2" ry="2" />
<text x="85.07" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="111.1" y="325" width="0.1" height="15.0" fill="rgb(243,209,13)" rx="2" ry="2" />
<text x="114.09" y="335.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h38af3dc50e2ce193 (27 samples, 0.10%)</title><rect x="95.0" y="309" width="1.2" height="15.0" fill="rgb(254,221,5)" rx="2" ry="2" />
<text x="98.03" y="319.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 (4 samples, 0.01%)</title><rect x="49.6" y="309" width="0.1" height="15.0" fill="rgb(212,146,39)" rx="2" ry="2" />
<text x="52.58" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (30 samples, 0.11%)</title><rect x="21.7" y="309" width="1.3" height="15.0" fill="rgb(232,20,48)" rx="2" ry="2" />
<text x="24.74" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (11 samples, 0.04%)</title><rect x="66.2" y="245" width="0.4" height="15.0" fill="rgb(220,123,49)" rx="2" ry="2" />
<text x="69.18" y="255.5" ></text>
</g>
<g >
<title>_int_realloc (10 samples, 0.04%)</title><rect x="75.9" y="165" width="0.4" height="15.0" fill="rgb(210,13,46)" rx="2" ry="2" />
<text x="78.91" y="175.5" ></text>
</g>
<g >
<title>_int_free (29 samples, 0.10%)</title><rect x="313.4" y="389" width="1.2" height="15.0" fill="rgb(248,158,18)" rx="2" ry="2" />
<text x="316.43" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 0.11%)</title><rect x="80.1" y="229" width="1.3" height="15.0" fill="rgb(251,71,5)" rx="2" ry="2" />
<text x="83.14" y="239.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (10 samples, 0.04%)</title><rect x="1184.2" y="373" width="0.4" height="15.0" fill="rgb(237,16,22)" rx="2" ry="2" />
<text x="1187.21" y="383.5" ></text>
</g>
<g >
<title>__GI___exp (3 samples, 0.01%)</title><rect x="66.7" y="261" width="0.1" height="15.0" fill="rgb(252,87,52)" rx="2" ry="2" />
<text x="69.69" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.05%)</title><rect x="75.8" y="181" width="0.5" height="15.0" fill="rgb(251,136,27)" rx="2" ry="2" />
<text x="78.78" y="191.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (29 samples, 0.10%)</title><rect x="189.6" y="325" width="1.2" height="15.0" fill="rgb(217,43,1)" rx="2" ry="2" />
<text x="192.57" y="335.5" ></text>
</g>
<g >
<title>__sigprocmask (27 samples, 0.10%)</title><rect x="216.7" y="293" width="1.1" height="15.0" fill="rgb(250,47,46)" rx="2" ry="2" />
<text x="219.70" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (4 samples, 0.01%)</title><rect x="387.5" y="341" width="0.2" height="15.0" fill="rgb(242,114,54)" rx="2" ry="2" />
<text x="390.51" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (3 samples, 0.01%)</title><rect x="64.2" y="165" width="0.1" height="15.0" fill="rgb(232,226,14)" rx="2" ry="2" />
<text x="67.21" y="175.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (3 samples, 0.01%)</title><rect x="157.2" y="293" width="0.1" height="15.0" fill="rgb(207,203,41)" rx="2" ry="2" />
<text x="160.16" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (4 samples, 0.01%)</title><rect x="29.6" y="149" width="0.2" height="15.0" fill="rgb(239,181,40)" rx="2" ry="2" />
<text x="32.62" y="159.5" ></text>
</g>
<g >
<title>sys_mprotect (5 samples, 0.02%)</title><rect x="53.8" y="101" width="0.2" height="15.0" fill="rgb(236,12,33)" rx="2" ry="2" />
<text x="56.77" y="111.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (4 samples, 0.01%)</title><rect x="1186.0" y="293" width="0.1" height="15.0" fill="rgb(244,26,16)" rx="2" ry="2" />
<text x="1188.97" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.02%)</title><rect x="52.1" y="197" width="0.2" height="15.0" fill="rgb(216,186,27)" rx="2" ry="2" />
<text x="55.05" y="207.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (3 samples, 0.01%)</title><rect x="29.7" y="133" width="0.1" height="15.0" fill="rgb(222,61,25)" rx="2" ry="2" />
<text x="32.66" y="143.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (239 samples, 0.85%)</title><rect x="295.9" y="373" width="10.1" height="15.0" fill="rgb(243,189,46)" rx="2" ry="2" />
<text x="298.94" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (249 samples, 0.88%)</title><rect x="204.4" y="357" width="10.5" height="15.0" fill="rgb(221,61,27)" rx="2" ry="2" />
<text x="207.42" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (3 samples, 0.01%)</title><rect x="1186.0" y="277" width="0.1" height="15.0" fill="rgb(228,124,3)" rx="2" ry="2" />
<text x="1189.02" y="287.5" ></text>
</g>
<g >
<title>__brk (6 samples, 0.02%)</title><rect x="1087.2" y="277" width="0.2" height="15.0" fill="rgb(211,161,10)" rx="2" ry="2" />
<text x="1090.15" y="287.5" ></text>
</g>
<g >
<title>do_page_fault (10 samples, 0.04%)</title><rect x="1086.6" y="309" width="0.5" height="15.0" fill="rgb(239,226,27)" rx="2" ry="2" />
<text x="1089.65" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (23 samples, 0.08%)</title><rect x="54.0" y="181" width="0.9" height="15.0" fill="rgb(214,80,52)" rx="2" ry="2" />
<text x="56.98" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (19 samples, 0.07%)</title><rect x="29.0" y="197" width="0.8" height="15.0" fill="rgb(221,53,52)" rx="2" ry="2" />
<text x="31.99" y="207.5" ></text>
</g>
<g >
<title>__strcmp_sse2_unaligned (79 samples, 0.28%)</title><rect x="388.3" y="357" width="3.3" height="15.0" fill="rgb(225,167,45)" rx="2" ry="2" />
<text x="391.27" y="367.5" ></text>
</g>
<g >
<title>_$LT$rocinante..stoke..whitelist..WhitelistedInstruction$u20$as$u20$core..convert..From$LT$parity_wasm..elements..ops..Instruction$GT$$GT$::from::hd6d9589fbd581344 (6 samples, 0.02%)</title><rect x="1179.5" y="389" width="0.2" height="15.0" fill="rgb(217,215,31)" rx="2" ry="2" />
<text x="1182.48" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (9 samples, 0.03%)</title><rect x="189.1" y="293" width="0.4" height="15.0" fill="rgb(239,182,22)" rx="2" ry="2" />
<text x="192.11" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (3 samples, 0.01%)</title><rect x="39.6" y="181" width="0.1" height="15.0" fill="rgb(211,193,10)" rx="2" ry="2" />
<text x="42.60" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (3 samples, 0.01%)</title><rect x="1181.2" y="261" width="0.2" height="15.0" fill="rgb(221,46,49)" rx="2" ry="2" />
<text x="1184.24" y="271.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (1,412 samples, 5.02%)</title><rect x="132.0" y="341" width="59.2" height="15.0" fill="rgb(205,198,26)" rx="2" ry="2" />
<text x="135.01" y="351.5" >_$LT$w..</text>
</g>
<g >
<title>perf_event_mmap (12 samples, 0.04%)</title><rect x="118.4" y="181" width="0.5" height="15.0" fill="rgb(212,185,54)" rx="2" ry="2" />
<text x="121.42" y="191.5" ></text>
</g>
<g >
<title>rayon_core::registry::ThreadBuilder::run::h8d06e03c16a2976b (25 samples, 0.09%)</title><rect x="48.5" y="293" width="1.1" height="15.0" fill="rgb(254,44,14)" rx="2" ry="2" />
<text x="51.53" y="303.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (6 samples, 0.02%)</title><rect x="1187.6" y="437" width="0.3" height="15.0" fill="rgb(236,39,3)" rx="2" ry="2" />
<text x="1190.61" y="447.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (4 samples, 0.01%)</title><rect x="249.7" y="325" width="0.1" height="15.0" fill="rgb(206,72,10)" rx="2" ry="2" />
<text x="252.66" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (27 samples, 0.10%)</title><rect x="216.7" y="325" width="1.1" height="15.0" fill="rgb(223,176,6)" rx="2" ry="2" />
<text x="219.70" y="335.5" ></text>
</g>
<g >
<title>__memset_avx2 (27 samples, 0.10%)</title><rect x="114.9" y="325" width="1.1" height="15.0" fill="rgb(225,26,20)" rx="2" ry="2" />
<text x="117.86" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (8 samples, 0.03%)</title><rect x="31.2" y="181" width="0.3" height="15.0" fill="rgb(241,166,48)" rx="2" ry="2" />
<text x="34.17" y="191.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (4 samples, 0.01%)</title><rect x="44.5" y="181" width="0.1" height="15.0" fill="rgb(211,92,47)" rx="2" ry="2" />
<text x="47.46" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (57 samples, 0.20%)</title><rect x="247.1" y="309" width="2.4" height="15.0" fill="rgb(242,15,37)" rx="2" ry="2" />
<text x="250.10" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="62.9" y="165" width="0.1" height="15.0" fill="rgb(220,191,15)" rx="2" ry="2" />
<text x="65.87" y="175.5" ></text>
</g>
<g >
<title>malloc_consolidate (6 samples, 0.02%)</title><rect x="1126.4" y="309" width="0.3" height="15.0" fill="rgb(210,183,33)" rx="2" ry="2" />
<text x="1129.44" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (29 samples, 0.10%)</title><rect x="127.6" y="277" width="1.2" height="15.0" fill="rgb(219,32,8)" rx="2" ry="2" />
<text x="130.61" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (8 samples, 0.03%)</title><rect x="76.5" y="229" width="0.3" height="15.0" fill="rgb(207,137,40)" rx="2" ry="2" />
<text x="79.50" y="239.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h3e1607d9587d426d (246 samples, 0.87%)</title><rect x="1161.2" y="421" width="10.4" height="15.0" fill="rgb(229,49,15)" rx="2" ry="2" />
<text x="1164.24" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::fd::FileDesc::write::hc5c11e325d6f7149 (3 samples, 0.01%)</title><rect x="1180.1" y="149" width="0.2" height="15.0" fill="rgb(208,165,18)" rx="2" ry="2" />
<text x="1183.15" y="159.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (26,101 samples, 92.74%)</title><rect x="86.0" y="437" width="1094.3" height="15.0" fill="rgb(217,122,49)" rx="2" ry="2" />
<text x="88.97" y="447.5" >rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9</text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="70.9" y="165" width="0.1" height="15.0" fill="rgb(215,225,33)" rx="2" ry="2" />
<text x="73.88" y="175.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 (560 samples, 1.99%)</title><rect x="23.8" y="421" width="23.5" height="15.0" fill="rgb(250,104,9)" rx="2" ry="2" />
<text x="26.79" y="431.5" >r..</text>
</g>
<g >
<title>do_munmap (27 samples, 0.10%)</title><rect x="107.1" y="245" width="1.1" height="15.0" fill="rgb(236,148,49)" rx="2" ry="2" />
<text x="110.10" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (3 samples, 0.01%)</title><rect x="20.8" y="293" width="0.1" height="15.0" fill="rgb(253,68,8)" rx="2" ry="2" />
<text x="23.82" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (8 samples, 0.03%)</title><rect x="65.5" y="229" width="0.3" height="15.0" fill="rgb(215,81,27)" rx="2" ry="2" />
<text x="68.51" y="239.5" ></text>
</g>
<g >
<title>_int_free (343 samples, 1.22%)</title><rect x="1056.3" y="341" width="14.3" height="15.0" fill="rgb(205,166,3)" rx="2" ry="2" />
<text x="1059.25" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (3 samples, 0.01%)</title><rect x="1186.3" y="325" width="0.1" height="15.0" fill="rgb(238,126,15)" rx="2" ry="2" />
<text x="1189.31" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (560 samples, 1.99%)</title><rect x="23.8" y="437" width="23.5" height="15.0" fill="rgb(226,80,20)" rx="2" ry="2" />
<text x="26.79" y="447.5" >w..</text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (9 samples, 0.03%)</title><rect x="54.6" y="165" width="0.3" height="15.0" fill="rgb(222,40,50)" rx="2" ry="2" />
<text x="57.57" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (59 samples, 0.21%)</title><rect x="102.4" y="405" width="2.5" height="15.0" fill="rgb(218,83,54)" rx="2" ry="2" />
<text x="105.45" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (3 samples, 0.01%)</title><rect x="14.7" y="261" width="0.1" height="15.0" fill="rgb(218,64,7)" rx="2" ry="2" />
<text x="17.65" y="271.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (26 samples, 0.09%)</title><rect x="47.3" y="341" width="1.1" height="15.0" fill="rgb(245,106,46)" rx="2" ry="2" />
<text x="50.27" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (39 samples, 0.14%)</title><rect x="336.5" y="373" width="1.7" height="15.0" fill="rgb(253,127,4)" rx="2" ry="2" />
<text x="339.53" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="45.2" y="229" width="0.1" height="15.0" fill="rgb(207,91,16)" rx="2" ry="2" />
<text x="48.18" y="239.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (3 samples, 0.01%)</title><rect x="18.1" y="245" width="0.1" height="15.0" fill="rgb(252,205,39)" rx="2" ry="2" />
<text x="21.09" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (28 samples, 0.10%)</title><rect x="40.4" y="229" width="1.2" height="15.0" fill="rgb(220,42,18)" rx="2" ry="2" />
<text x="43.44" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="18.2" y="293" width="0.2" height="15.0" fill="rgb(206,107,14)" rx="2" ry="2" />
<text x="21.22" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (6 samples, 0.02%)</title><rect x="41.3" y="181" width="0.2" height="15.0" fill="rgb(238,165,50)" rx="2" ry="2" />
<text x="44.28" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (23 samples, 0.08%)</title><rect x="255.8" y="325" width="0.9" height="15.0" fill="rgb(249,50,52)" rx="2" ry="2" />
<text x="258.78" y="335.5" ></text>
</g>
<g >
<title>vma_merge (5 samples, 0.02%)</title><rect x="117.5" y="213" width="0.2" height="15.0" fill="rgb(207,78,32)" rx="2" ry="2" />
<text x="120.46" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (5 samples, 0.02%)</title><rect x="65.6" y="197" width="0.2" height="15.0" fill="rgb(216,196,0)" rx="2" ry="2" />
<text x="68.64" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::LocalBacking::new::h9729591e2bf3454e (16 samples, 0.06%)</title><rect x="218.3" y="373" width="0.7" height="15.0" fill="rgb(220,165,43)" rx="2" ry="2" />
<text x="221.34" y="383.5" ></text>
</g>
<g >
<title>get_page_from_freelist (3 samples, 0.01%)</title><rect x="115.6" y="197" width="0.1" height="15.0" fill="rgb(244,80,46)" rx="2" ry="2" />
<text x="118.61" y="207.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (7 samples, 0.02%)</title><rect x="63.8" y="181" width="0.3" height="15.0" fill="rgb(224,150,35)" rx="2" ry="2" />
<text x="66.79" y="191.5" ></text>
</g>
<g >
<title>do_syscall_64 (16 samples, 0.06%)</title><rect x="108.5" y="325" width="0.7" height="15.0" fill="rgb(224,207,22)" rx="2" ry="2" />
<text x="111.49" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="260.8" y="357" width="0.1" height="15.0" fill="rgb(232,17,3)" rx="2" ry="2" />
<text x="263.77" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (12 samples, 0.04%)</title><rect x="279.8" y="277" width="0.5" height="15.0" fill="rgb(247,49,19)" rx="2" ry="2" />
<text x="282.80" y="287.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hd388a75a7e96e17c (32 samples, 0.11%)</title><rect x="71.8" y="165" width="1.3" height="15.0" fill="rgb(228,33,4)" rx="2" ry="2" />
<text x="74.80" y="175.5" ></text>
</g>
<g >
<title>do_page_fault (5 samples, 0.02%)</title><rect x="1145.6" y="325" width="0.2" height="15.0" fill="rgb(248,93,29)" rx="2" ry="2" />
<text x="1148.60" y="335.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::build::hfed3c1d7c10ae131 (167 samples, 0.59%)</title><rect x="324.6" y="405" width="7.0" height="15.0" fill="rgb(253,177,9)" rx="2" ry="2" />
<text x="327.62" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (23 samples, 0.08%)</title><rect x="333.8" y="357" width="1.0" height="15.0" fill="rgb(248,190,29)" rx="2" ry="2" />
<text x="336.80" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (18 samples, 0.06%)</title><rect x="283.2" y="293" width="0.7" height="15.0" fill="rgb(252,23,9)" rx="2" ry="2" />
<text x="286.16" y="303.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (4 samples, 0.01%)</title><rect x="35.0" y="229" width="0.2" height="15.0" fill="rgb(243,174,49)" rx="2" ry="2" />
<text x="37.99" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (6 samples, 0.02%)</title><rect x="43.5" y="213" width="0.3" height="15.0" fill="rgb(226,95,34)" rx="2" ry="2" />
<text x="46.50" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="76.2" y="149" width="0.1" height="15.0" fill="rgb(234,24,48)" rx="2" ry="2" />
<text x="79.16" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_free (20 samples, 0.07%)</title><rect x="154.6" y="277" width="0.8" height="15.0" fill="rgb(217,75,26)" rx="2" ry="2" />
<text x="157.57" y="287.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (14 samples, 0.05%)</title><rect x="90.8" y="341" width="0.5" height="15.0" fill="rgb(225,217,11)" rx="2" ry="2" />
<text x="93.75" y="351.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (21 samples, 0.07%)</title><rect x="64.4" y="181" width="0.9" height="15.0" fill="rgb(240,92,21)" rx="2" ry="2" />
<text x="67.42" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::discovery_stack_push_successors_of::h1d35cd4c4d8172b7 (4 samples, 0.01%)</title><rect x="27.1" y="229" width="0.2" height="15.0" fill="rgb(225,125,11)" rx="2" ry="2" />
<text x="30.15" y="239.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hf5842b6c96e0c047 (111 samples, 0.39%)</title><rect x="284.0" y="341" width="4.6" height="15.0" fill="rgb(236,163,20)" rx="2" ry="2" />
<text x="286.99" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (55 samples, 0.20%)</title><rect x="178.5" y="277" width="2.3" height="15.0" fill="rgb(236,222,36)" rx="2" ry="2" />
<text x="181.51" y="287.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (62 samples, 0.22%)</title><rect x="106.7" y="405" width="2.6" height="15.0" fill="rgb(246,20,8)" rx="2" ry="2" />
<text x="109.73" y="415.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (4 samples, 0.01%)</title><rect x="49.6" y="357" width="0.1" height="15.0" fill="rgb(219,17,5)" rx="2" ry="2" />
<text x="52.58" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (3 samples, 0.01%)</title><rect x="44.9" y="229" width="0.2" height="15.0" fill="rgb(246,181,45)" rx="2" ry="2" />
<text x="47.93" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (7 samples, 0.02%)</title><rect x="21.4" y="293" width="0.3" height="15.0" fill="rgb(215,196,38)" rx="2" ry="2" />
<text x="24.40" y="303.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarInt32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h47cdb50632b40fb0 (9 samples, 0.03%)</title><rect x="272.0" y="309" width="0.3" height="15.0" fill="rgb(248,153,28)" rx="2" ry="2" />
<text x="274.96" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc01085cdf6cb9abc (4 samples, 0.01%)</title><rect x="78.4" y="229" width="0.2" height="15.0" fill="rgb(213,24,51)" rx="2" ry="2" />
<text x="81.43" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (40 samples, 0.14%)</title><rect x="19.5" y="309" width="1.7" height="15.0" fill="rgb(243,50,52)" rx="2" ry="2" />
<text x="22.52" y="319.5" ></text>
</g>
<g >
<title>__rdl_realloc (5 samples, 0.02%)</title><rect x="259.6" y="325" width="0.2" height="15.0" fill="rgb(224,18,31)" rx="2" ry="2" />
<text x="262.59" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (18 samples, 0.06%)</title><rect x="1185.8" y="453" width="0.7" height="15.0" fill="rgb(249,211,1)" rx="2" ry="2" />
<text x="1188.77" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (25 samples, 0.09%)</title><rect x="1184.7" y="341" width="1.1" height="15.0" fill="rgb(222,69,53)" rx="2" ry="2" />
<text x="1187.72" y="351.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="49.5" y="229" width="0.1" height="15.0" fill="rgb(251,2,41)" rx="2" ry="2" />
<text x="52.45" y="239.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (156 samples, 0.55%)</title><rect x="159.4" y="309" width="6.6" height="15.0" fill="rgb(209,145,12)" rx="2" ry="2" />
<text x="162.43" y="319.5" ></text>
</g>
<g >
<title>_$LT$std..io..buffered..BufWriter$LT$W$GT$$u20$as$u20$std..io..Write$GT$::flush::he10aaec6d477828c (3 samples, 0.01%)</title><rect x="1180.1" y="229" width="0.2" height="15.0" fill="rgb(235,222,15)" rx="2" ry="2" />
<text x="1183.15" y="239.5" ></text>
</g>
<g >
<title>perf_event_alloc (5 samples, 0.02%)</title><rect x="1186.6" y="325" width="0.2" height="15.0" fill="rgb(253,161,19)" rx="2" ry="2" />
<text x="1189.60" y="335.5" ></text>
</g>
<g >
<title>__GI___default_morecore (15 samples, 0.05%)</title><rect x="369.4" y="309" width="0.6" height="15.0" fill="rgb(238,39,44)" rx="2" ry="2" />
<text x="372.40" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (8 samples, 0.03%)</title><rect x="65.5" y="245" width="0.3" height="15.0" fill="rgb(219,171,37)" rx="2" ry="2" />
<text x="68.51" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (3 samples, 0.01%)</title><rect x="1185.6" y="309" width="0.1" height="15.0" fill="rgb(233,191,45)" rx="2" ry="2" />
<text x="1188.56" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (33 samples, 0.12%)</title><rect x="127.5" y="325" width="1.4" height="15.0" fill="rgb(251,118,3)" rx="2" ry="2" />
<text x="130.48" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (4 samples, 0.01%)</title><rect x="49.6" y="373" width="0.1" height="15.0" fill="rgb(231,193,1)" rx="2" ry="2" />
<text x="52.58" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (30 samples, 0.11%)</title><rect x="64.1" y="197" width="1.2" height="15.0" fill="rgb(241,96,28)" rx="2" ry="2" />
<text x="67.09" y="207.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="1185.8" y="245" width="0.2" height="15.0" fill="rgb(231,14,53)" rx="2" ry="2" />
<text x="1188.85" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (224 samples, 0.80%)</title><rect x="14.4" y="421" width="9.4" height="15.0" fill="rgb(208,96,19)" rx="2" ry="2" />
<text x="17.40" y="431.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h7f13566add47f7e2 (3 samples, 0.01%)</title><rect x="215.9" y="357" width="0.2" height="15.0" fill="rgb(242,116,53)" rx="2" ry="2" />
<text x="218.95" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (122 samples, 0.43%)</title><rect x="274.3" y="293" width="5.1" height="15.0" fill="rgb(234,86,41)" rx="2" ry="2" />
<text x="277.31" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (3 samples, 0.01%)</title><rect x="29.1" y="165" width="0.1" height="15.0" fill="rgb(235,16,47)" rx="2" ry="2" />
<text x="32.08" y="175.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h3b7b875a11d2ba0c (6 samples, 0.02%)</title><rect x="122.8" y="309" width="0.3" height="15.0" fill="rgb(249,110,1)" rx="2" ry="2" />
<text x="125.83" y="319.5" ></text>
</g>
<g >
<title>sys_mprotect (28 samples, 0.10%)</title><rect x="113.0" y="261" width="1.1" height="15.0" fill="rgb(233,22,21)" rx="2" ry="2" />
<text x="115.97" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="84.3" y="229" width="0.1" height="15.0" fill="rgb(233,50,41)" rx="2" ry="2" />
<text x="87.30" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (55 samples, 0.20%)</title><rect x="182.3" y="309" width="2.3" height="15.0" fill="rgb(229,51,16)" rx="2" ry="2" />
<text x="185.32" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (5 samples, 0.02%)</title><rect x="18.6" y="293" width="0.2" height="15.0" fill="rgb(227,199,15)" rx="2" ry="2" />
<text x="21.60" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (3 samples, 0.01%)</title><rect x="1182.2" y="309" width="0.1" height="15.0" fill="rgb(205,140,23)" rx="2" ry="2" />
<text x="1185.16" y="319.5" ></text>
</g>
<g >
<title>core::str::from_utf8::h5960e424c2aef74c (12 samples, 0.04%)</title><rect x="158.0" y="261" width="0.5" height="15.0" fill="rgb(226,135,32)" rx="2" ry="2" />
<text x="161.00" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (47 samples, 0.17%)</title><rect x="186.3" y="277" width="2.0" height="15.0" fill="rgb(245,191,4)" rx="2" ry="2" />
<text x="189.35" y="287.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1951080d9ca0b938 (221 samples, 0.79%)</title><rect x="67.6" y="245" width="9.2" height="15.0" fill="rgb(231,124,30)" rx="2" ry="2" />
<text x="70.57" y="255.5" ></text>
</g>
<g >
<title>_int_free (13 samples, 0.05%)</title><rect x="1169.4" y="357" width="0.6" height="15.0" fill="rgb(254,165,43)" rx="2" ry="2" />
<text x="1172.41" y="367.5" ></text>
</g>
<g >
<title>do_error_trap (11 samples, 0.04%)</title><rect x="10.4" y="421" width="0.4" height="15.0" fill="rgb(207,158,3)" rx="2" ry="2" />
<text x="13.38" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (24 samples, 0.09%)</title><rect x="1177.5" y="357" width="1.0" height="15.0" fill="rgb(210,52,53)" rx="2" ry="2" />
<text x="1180.46" y="367.5" ></text>
</g>
<g >
<title>crossbeam_epoch::default::pin::hb4a29c3259df6262 (12 samples, 0.04%)</title><rect x="48.9" y="229" width="0.5" height="15.0" fill="rgb(237,143,52)" rx="2" ry="2" />
<text x="51.91" y="239.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (112 samples, 0.40%)</title><rect x="161.3" y="293" width="4.7" height="15.0" fill="rgb(250,189,41)" rx="2" ry="2" />
<text x="164.27" y="303.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (4 samples, 0.01%)</title><rect x="52.9" y="181" width="0.2" height="15.0" fill="rgb(228,85,0)" rx="2" ry="2" />
<text x="55.89" y="191.5" ></text>
</g>
<g >
<title>__brk (15 samples, 0.05%)</title><rect x="369.4" y="277" width="0.6" height="15.0" fill="rgb(224,101,40)" rx="2" ry="2" />
<text x="372.40" y="287.5" ></text>
</g>
<g >
<title>malloc_printerr (4 samples, 0.01%)</title><rect x="1141.7" y="309" width="0.1" height="15.0" fill="rgb(248,41,6)" rx="2" ry="2" />
<text x="1144.66" y="319.5" ></text>
</g>
<g >
<title>rayon_core::registry::WorkerThread::wait_until_cold::h7fe04d79d0f90279 (25 samples, 0.09%)</title><rect x="48.5" y="277" width="1.1" height="15.0" fill="rgb(224,149,25)" rx="2" ry="2" />
<text x="51.53" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (57 samples, 0.20%)</title><rect x="257.2" y="325" width="2.4" height="15.0" fill="rgb(235,79,42)" rx="2" ry="2" />
<text x="260.20" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (10 samples, 0.04%)</title><rect x="206.1" y="325" width="0.4" height="15.0" fill="rgb(254,144,39)" rx="2" ry="2" />
<text x="209.09" y="335.5" ></text>
</g>
<g >
<title>perf_event_mmap (11 samples, 0.04%)</title><rect x="113.3" y="213" width="0.4" height="15.0" fill="rgb(253,137,22)" rx="2" ry="2" />
<text x="116.27" y="223.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h7c0b96f23ce547fa (3 samples, 0.01%)</title><rect x="111.1" y="341" width="0.1" height="15.0" fill="rgb(242,212,13)" rx="2" ry="2" />
<text x="114.09" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (17 samples, 0.06%)</title><rect x="326.1" y="389" width="0.7" height="15.0" fill="rgb(246,11,44)" rx="2" ry="2" />
<text x="329.09" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (6 samples, 0.02%)</title><rect x="1087.2" y="261" width="0.2" height="15.0" fill="rgb(233,176,41)" rx="2" ry="2" />
<text x="1090.15" y="271.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 (10 samples, 0.04%)</title><rect x="1184.2" y="341" width="0.4" height="15.0" fill="rgb(241,36,26)" rx="2" ry="2" />
<text x="1187.21" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (7 samples, 0.02%)</title><rect x="17.3" y="277" width="0.3" height="15.0" fill="rgb(239,122,45)" rx="2" ry="2" />
<text x="20.34" y="287.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (13 samples, 0.05%)</title><rect x="151.0" y="293" width="0.5" height="15.0" fill="rgb(230,18,51)" rx="2" ry="2" />
<text x="153.96" y="303.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (28 samples, 0.10%)</title><rect x="113.0" y="245" width="1.1" height="15.0" fill="rgb(208,4,23)" rx="2" ry="2" />
<text x="115.97" y="255.5" ></text>
</g>
<g >
<title>GOMP_critical_name_start@plt (20 samples, 0.07%)</title><rect x="12.0" y="453" width="0.8" height="15.0" fill="rgb(236,47,53)" rx="2" ry="2" />
<text x="14.97" y="463.5" ></text>
</g>
<g >
<title>do_trap (5 samples, 0.02%)</title><rect x="10.6" y="389" width="0.2" height="15.0" fill="rgb(221,85,7)" rx="2" ry="2" />
<text x="13.63" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (222 samples, 0.79%)</title><rect x="14.4" y="357" width="9.3" height="15.0" fill="rgb(235,58,37)" rx="2" ry="2" />
<text x="17.40" y="367.5" ></text>
</g>
<g >
<title>_$LT$std..io..stdio..Maybe$LT$W$GT$$u20$as$u20$std..io..Write$GT$::write::h1a15d6e7815780af (3 samples, 0.01%)</title><rect x="1180.1" y="197" width="0.2" height="15.0" fill="rgb(225,113,48)" rx="2" ry="2" />
<text x="1183.15" y="207.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::module::h7f1260318b47d742 (7 samples, 0.02%)</title><rect x="363.9" y="405" width="0.3" height="15.0" fill="rgb(209,8,42)" rx="2" ry="2" />
<text x="366.95" y="415.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="75.6" y="197" width="0.1" height="15.0" fill="rgb(239,206,28)" rx="2" ry="2" />
<text x="78.57" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (35 samples, 0.12%)</title><rect x="28.5" y="213" width="1.5" height="15.0" fill="rgb(246,201,9)" rx="2" ry="2" />
<text x="31.53" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="216.4" y="341" width="0.3" height="15.0" fill="rgb(212,54,54)" rx="2" ry="2" />
<text x="219.45" y="351.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (4 samples, 0.01%)</title><rect x="10.8" y="437" width="0.2" height="15.0" fill="rgb(228,80,42)" rx="2" ry="2" />
<text x="13.84" y="447.5" ></text>
</g>
<g >
<title>do_page_fault (15 samples, 0.05%)</title><rect x="119.7" y="293" width="0.6" height="15.0" fill="rgb(210,129,18)" rx="2" ry="2" />
<text x="122.68" y="303.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="246.7" y="325" width="0.2" height="15.0" fill="rgb(241,43,16)" rx="2" ry="2" />
<text x="249.72" y="335.5" ></text>
</g>
<g >
<title>clear_page_erms (9 samples, 0.03%)</title><rect x="1158.6" y="245" width="0.3" height="15.0" fill="rgb(231,19,6)" rx="2" ry="2" />
<text x="1161.55" y="255.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (4 samples, 0.01%)</title><rect x="15.5" y="261" width="0.2" height="15.0" fill="rgb(216,215,35)" rx="2" ry="2" />
<text x="18.49" y="271.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (834 samples, 2.96%)</title><rect x="49.9" y="373" width="35.0" height="15.0" fill="rgb(213,123,52)" rx="2" ry="2" />
<text x="52.91" y="383.5" >st..</text>
</g>
<g >
<title>_int_free (11 samples, 0.04%)</title><rect x="75.1" y="181" width="0.5" height="15.0" fill="rgb(221,134,53)" rx="2" ry="2" />
<text x="78.11" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (153 samples, 0.54%)</title><rect x="357.1" y="373" width="6.4" height="15.0" fill="rgb(230,120,30)" rx="2" ry="2" />
<text x="360.12" y="383.5" ></text>
</g>
<g >
<title>handle_mm_fault (15 samples, 0.05%)</title><rect x="115.4" y="261" width="0.6" height="15.0" fill="rgb(251,58,48)" rx="2" ry="2" />
<text x="118.36" y="271.5" ></text>
</g>
<g >
<title>get_signal (6 samples, 0.02%)</title><rect x="1187.6" y="405" width="0.3" height="15.0" fill="rgb(217,202,13)" rx="2" ry="2" />
<text x="1190.61" y="415.5" ></text>
</g>
<g >
<title>realloc@plt (4 samples, 0.01%)</title><rect x="85.8" y="453" width="0.2" height="15.0" fill="rgb(252,150,37)" rx="2" ry="2" />
<text x="88.80" y="463.5" ></text>
</g>
<g >
<title>handle_mm_fault (8 samples, 0.03%)</title><rect x="120.0" y="261" width="0.3" height="15.0" fill="rgb(224,5,13)" rx="2" ry="2" />
<text x="122.98" y="271.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (13 samples, 0.05%)</title><rect x="128.2" y="149" width="0.5" height="15.0" fill="rgb(244,15,44)" rx="2" ry="2" />
<text x="131.15" y="159.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (3 samples, 0.01%)</title><rect x="57.7" y="149" width="0.1" height="15.0" fill="rgb(223,161,34)" rx="2" ry="2" />
<text x="60.67" y="159.5" ></text>
</g>
<g >
<title>_int_free (14 samples, 0.05%)</title><rect x="323.3" y="373" width="0.6" height="15.0" fill="rgb(223,138,53)" rx="2" ry="2" />
<text x="326.28" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="69.4" y="197" width="0.1" height="15.0" fill="rgb(242,137,26)" rx="2" ry="2" />
<text x="72.37" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::from_iter::h08b8b6ec5bae7de5 (8 samples, 0.03%)</title><rect x="218.4" y="357" width="0.3" height="15.0" fill="rgb(252,212,8)" rx="2" ry="2" />
<text x="221.38" y="367.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (3 samples, 0.01%)</title><rect x="126.4" y="165" width="0.2" height="15.0" fill="rgb(236,15,7)" rx="2" ry="2" />
<text x="129.43" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (4 samples, 0.01%)</title><rect x="42.0" y="213" width="0.2" height="15.0" fill="rgb(212,42,11)" rx="2" ry="2" />
<text x="44.99" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (3 samples, 0.01%)</title><rect x="30.4" y="197" width="0.1" height="15.0" fill="rgb(217,150,25)" rx="2" ry="2" />
<text x="33.42" y="207.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 (27 samples, 0.10%)</title><rect x="1184.6" y="421" width="1.2" height="15.0" fill="rgb(251,13,29)" rx="2" ry="2" />
<text x="1187.63" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3 samples, 0.01%)</title><rect x="69.5" y="197" width="0.1" height="15.0" fill="rgb(249,174,43)" rx="2" ry="2" />
<text x="72.49" y="207.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 (224 samples, 0.80%)</title><rect x="14.4" y="389" width="9.4" height="15.0" fill="rgb(243,13,27)" rx="2" ry="2" />
<text x="17.40" y="399.5" ></text>
</g>
<g >
<title>do_group_exit (6 samples, 0.02%)</title><rect x="1187.6" y="389" width="0.3" height="15.0" fill="rgb(233,53,26)" rx="2" ry="2" />
<text x="1190.61" y="399.5" ></text>
</g>
<g >
<title>do_wp_page (3 samples, 0.01%)</title><rect x="1159.2" y="277" width="0.1" height="15.0" fill="rgb(247,93,30)" rx="2" ry="2" />
<text x="1162.18" y="287.5" ></text>
</g>
<g >
<title>std::io::stdio::print_to::h5a67c3065be3341e (5 samples, 0.02%)</title><rect x="1180.1" y="405" width="0.2" height="15.0" fill="rgb(212,9,41)" rx="2" ry="2" />
<text x="1183.11" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (4 samples, 0.01%)</title><rect x="19.3" y="309" width="0.2" height="15.0" fill="rgb(224,194,9)" rx="2" ry="2" />
<text x="22.35" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (6 samples, 0.02%)</title><rect x="1182.9" y="309" width="0.2" height="15.0" fill="rgb(248,115,11)" rx="2" ry="2" />
<text x="1185.87" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (4 samples, 0.01%)</title><rect x="73.1" y="165" width="0.2" height="15.0" fill="rgb(237,48,0)" rx="2" ry="2" />
<text x="76.14" y="175.5" ></text>
</g>
<g >
<title>__strcmp_sse2_unaligned (78 samples, 0.28%)</title><rect x="1147.0" y="357" width="3.3" height="15.0" fill="rgb(244,57,45)" rx="2" ry="2" />
<text x="1150.02" y="367.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (91 samples, 0.32%)</title><rect x="56.0" y="165" width="3.8" height="15.0" fill="rgb(235,34,22)" rx="2" ry="2" />
<text x="58.95" y="175.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 (549 samples, 1.95%)</title><rect x="23.8" y="341" width="23.0" height="15.0" fill="rgb(217,173,50)" rx="2" ry="2" />
<text x="26.79" y="351.5" >_..</text>
</g>
<g >
<title>do_mprotect_pkey (3 samples, 0.01%)</title><rect x="54.4" y="85" width="0.1" height="15.0" fill="rgb(246,25,27)" rx="2" ry="2" />
<text x="57.40" y="95.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 (26 samples, 0.09%)</title><rect x="47.3" y="357" width="1.1" height="15.0" fill="rgb(229,77,37)" rx="2" ry="2" />
<text x="50.27" y="367.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hc479d58701aa8fb7 (4 samples, 0.01%)</title><rect x="24.8" y="261" width="0.2" height="15.0" fill="rgb(241,227,53)" rx="2" ry="2" />
<text x="27.84" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (56 samples, 0.20%)</title><rect x="385.1" y="357" width="2.3" height="15.0" fill="rgb(230,68,47)" rx="2" ry="2" />
<text x="388.08" y="367.5" ></text>
</g>
<g >
<title>_int_free (22 samples, 0.08%)</title><rect x="306.0" y="373" width="0.9" height="15.0" fill="rgb(247,171,54)" rx="2" ry="2" />
<text x="309.01" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (53 samples, 0.19%)</title><rect x="311.0" y="389" width="2.2" height="15.0" fill="rgb(254,98,41)" rx="2" ry="2" />
<text x="314.00" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7 samples, 0.02%)</title><rect x="62.1" y="133" width="0.3" height="15.0" fill="rgb(212,7,22)" rx="2" ry="2" />
<text x="65.12" y="143.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (69 samples, 0.25%)</title><rect x="201.5" y="341" width="2.9" height="15.0" fill="rgb(254,227,16)" rx="2" ry="2" />
<text x="204.52" y="351.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..code..FunctionDefinition$u20$as$u20$core..default..Default$GT$::default::h6149cbf8db633453 (63 samples, 0.22%)</title><rect x="310.6" y="405" width="2.7" height="15.0" fill="rgb(220,115,1)" rx="2" ry="2" />
<text x="313.62" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (23 samples, 0.08%)</title><rect x="331.9" y="389" width="0.9" height="15.0" fill="rgb(217,211,47)" rx="2" ry="2" />
<text x="334.88" y="399.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (14 samples, 0.05%)</title><rect x="59.0" y="133" width="0.6" height="15.0" fill="rgb(246,114,2)" rx="2" ry="2" />
<text x="61.97" y="143.5" ></text>
</g>
<g >
<title>all (28,144 samples, 100%)</title><rect x="10.0" y="501" width="1180.0" height="15.0" fill="rgb(238,59,30)" rx="2" ry="2" />
<text x="13.00" y="511.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (7 samples, 0.02%)</title><rect x="1070.3" y="261" width="0.3" height="15.0" fill="rgb(249,153,25)" rx="2" ry="2" />
<text x="1073.34" y="271.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (834 samples, 2.96%)</title><rect x="49.9" y="293" width="35.0" height="15.0" fill="rgb(223,170,46)" rx="2" ry="2" />
<text x="52.91" y="303.5" >ro..</text>
</g>
<g >
<title>perf_iterate_sb (4 samples, 0.01%)</title><rect x="1087.2" y="181" width="0.2" height="15.0" fill="rgb(222,106,26)" rx="2" ry="2" />
<text x="1090.19" y="191.5" ></text>
</g>
<g >
<title>_int_free (32 samples, 0.11%)</title><rect x="280.9" y="309" width="1.3" height="15.0" fill="rgb(214,188,32)" rx="2" ry="2" />
<text x="283.89" y="319.5" ></text>
</g>
<g >
<title>sys_mprotect (4 samples, 0.01%)</title><rect x="54.4" y="101" width="0.2" height="15.0" fill="rgb(231,179,11)" rx="2" ry="2" />
<text x="57.40" y="111.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (6 samples, 0.02%)</title><rect x="128.9" y="325" width="0.3" height="15.0" fill="rgb(241,152,48)" rx="2" ry="2" />
<text x="131.91" y="335.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (321 samples, 1.14%)</title><rect x="52.6" y="261" width="13.4" height="15.0" fill="rgb(224,164,36)" rx="2" ry="2" />
<text x="55.56" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="47.4" y="309" width="0.2" height="15.0" fill="rgb(230,28,8)" rx="2" ry="2" />
<text x="50.40" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (4 samples, 0.01%)</title><rect x="36.0" y="245" width="0.2" height="15.0" fill="rgb(246,44,35)" rx="2" ry="2" />
<text x="38.99" y="255.5" ></text>
</g>
<g >
<title>__sigjmp_save (49 samples, 0.17%)</title><rect x="1187.9" y="453" width="2.1" height="15.0" fill="rgb(222,47,10)" rx="2" ry="2" />
<text x="1190.95" y="463.5" ></text>
</g>
<g >
<title>_int_free (5 samples, 0.02%)</title><rect x="120.9" y="277" width="0.2" height="15.0" fill="rgb(217,41,46)" rx="2" ry="2" />
<text x="123.90" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (24 samples, 0.09%)</title><rect x="111.8" y="325" width="1.0" height="15.0" fill="rgb(214,77,51)" rx="2" ry="2" />
<text x="114.76" y="335.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 (25 samples, 0.09%)</title><rect x="48.5" y="389" width="1.1" height="15.0" fill="rgb(233,181,39)" rx="2" ry="2" />
<text x="51.53" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (3 samples, 0.01%)</title><rect x="44.9" y="213" width="0.2" height="15.0" fill="rgb(229,71,1)" rx="2" ry="2" />
<text x="47.93" y="223.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (11 samples, 0.04%)</title><rect x="118.5" y="149" width="0.4" height="15.0" fill="rgb(238,67,26)" rx="2" ry="2" />
<text x="121.47" y="159.5" ></text>
</g>
<g >
<title>perf_event_mmap (24 samples, 0.09%)</title><rect x="125.6" y="213" width="1.0" height="15.0" fill="rgb(248,124,39)" rx="2" ry="2" />
<text x="128.55" y="223.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (15 samples, 0.05%)</title><rect x="77.3" y="245" width="0.6" height="15.0" fill="rgb(232,176,51)" rx="2" ry="2" />
<text x="80.25" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (13 samples, 0.05%)</title><rect x="83.3" y="245" width="0.5" height="15.0" fill="rgb(206,32,19)" rx="2" ry="2" />
<text x="86.29" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (14 samples, 0.05%)</title><rect x="68.8" y="165" width="0.6" height="15.0" fill="rgb(223,190,28)" rx="2" ry="2" />
<text x="71.78" y="175.5" ></text>
</g>
<g >
<title>change_protection (10 samples, 0.04%)</title><rect x="125.1" y="213" width="0.5" height="15.0" fill="rgb(223,180,29)" rx="2" ry="2" />
<text x="128.13" y="223.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (52 samples, 0.18%)</title><rect x="202.1" y="325" width="2.2" height="15.0" fill="rgb(213,10,23)" rx="2" ry="2" />
<text x="205.11" y="335.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (6 samples, 0.02%)</title><rect x="58.0" y="133" width="0.2" height="15.0" fill="rgb(229,115,26)" rx="2" ry="2" />
<text x="60.96" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (21 samples, 0.07%)</title><rect x="15.9" y="309" width="0.9" height="15.0" fill="rgb(249,224,3)" rx="2" ry="2" />
<text x="18.87" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.02%)</title><rect x="329.7" y="357" width="0.2" height="15.0" fill="rgb(232,221,48)" rx="2" ry="2" />
<text x="332.70" y="367.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h0be6351f64f96a69 (28 samples, 0.10%)</title><rect x="95.0" y="325" width="1.2" height="15.0" fill="rgb(245,84,39)" rx="2" ry="2" />
<text x="97.99" y="335.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 (16 samples, 0.06%)</title><rect x="116.2" y="325" width="0.7" height="15.0" fill="rgb(237,67,11)" rx="2" ry="2" />
<text x="119.20" y="335.5" ></text>
</g>
<g >
<title>alloc_pages_vma (7 samples, 0.02%)</title><rect x="115.4" y="229" width="0.3" height="15.0" fill="rgb(251,185,54)" rx="2" ry="2" />
<text x="118.45" y="239.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 (5 samples, 0.02%)</title><rect x="32.9" y="213" width="0.2" height="15.0" fill="rgb(216,17,51)" rx="2" ry="2" />
<text x="35.93" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="206.8" y="293" width="0.2" height="15.0" fill="rgb(217,217,43)" rx="2" ry="2" />
<text x="209.85" y="303.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="58.2" y="117" width="0.2" height="15.0" fill="rgb(213,70,27)" rx="2" ry="2" />
<text x="61.22" y="127.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="106.7" y="389" width="0.2" height="15.0" fill="rgb(224,57,37)" rx="2" ry="2" />
<text x="109.73" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.04%)</title><rect x="327.9" y="357" width="0.5" height="15.0" fill="rgb(240,225,16)" rx="2" ry="2" />
<text x="330.85" y="367.5" ></text>
</g>
<g >
<title>mprotect_fixup (16 samples, 0.06%)</title><rect x="117.0" y="229" width="0.7" height="15.0" fill="rgb(238,80,3)" rx="2" ry="2" />
<text x="120.00" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (11 samples, 0.04%)</title><rect x="259.1" y="309" width="0.5" height="15.0" fill="rgb(240,63,3)" rx="2" ry="2" />
<text x="262.13" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (3 samples, 0.01%)</title><rect x="206.5" y="325" width="0.1" height="15.0" fill="rgb(247,63,52)" rx="2" ry="2" />
<text x="209.51" y="335.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (3 samples, 0.01%)</title><rect x="28.3" y="165" width="0.1" height="15.0" fill="rgb(252,131,50)" rx="2" ry="2" />
<text x="31.32" y="175.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 (18 samples, 0.06%)</title><rect x="1185.8" y="437" width="0.7" height="15.0" fill="rgb(207,50,0)" rx="2" ry="2" />
<text x="1188.77" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (36 samples, 0.13%)</title><rect x="37.0" y="229" width="1.5" height="15.0" fill="rgb(234,97,17)" rx="2" ry="2" />
<text x="39.96" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (3 samples, 0.01%)</title><rect x="206.8" y="309" width="0.2" height="15.0" fill="rgb(227,95,47)" rx="2" ry="2" />
<text x="209.85" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (40 samples, 0.14%)</title><rect x="172.4" y="309" width="1.7" height="15.0" fill="rgb(214,101,45)" rx="2" ry="2" />
<text x="175.43" y="319.5" ></text>
</g>
<g >
<title>unmapped_area_topdown (3 samples, 0.01%)</title><rect x="127.8" y="165" width="0.1" height="15.0" fill="rgb(213,61,42)" rx="2" ry="2" />
<text x="130.82" y="175.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h7228d91f2d6ded07 (77 samples, 0.27%)</title><rect x="94.5" y="389" width="3.2" height="15.0" fill="rgb(211,200,21)" rx="2" ry="2" />
<text x="97.48" y="399.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (13 samples, 0.05%)</title><rect x="369.4" y="149" width="0.5" height="15.0" fill="rgb(209,11,27)" rx="2" ry="2" />
<text x="372.40" y="159.5" ></text>
</g>
<g >
<title>GOMP_critical_name_end@plt (23 samples, 0.08%)</title><rect x="11.0" y="453" width="1.0" height="15.0" fill="rgb(240,14,50)" rx="2" ry="2" />
<text x="14.01" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="61.9" y="117" width="0.2" height="15.0" fill="rgb(236,65,17)" rx="2" ry="2" />
<text x="64.91" y="127.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (4 samples, 0.01%)</title><rect x="1185.3" y="309" width="0.1" height="15.0" fill="rgb(234,115,8)" rx="2" ry="2" />
<text x="1188.26" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (57 samples, 0.20%)</title><rect x="195.8" y="325" width="2.4" height="15.0" fill="rgb(253,150,52)" rx="2" ry="2" />
<text x="198.82" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (36 samples, 0.13%)</title><rect x="30.1" y="229" width="1.5" height="15.0" fill="rgb(240,213,21)" rx="2" ry="2" />
<text x="33.13" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (23 samples, 0.08%)</title><rect x="306.0" y="389" width="0.9" height="15.0" fill="rgb(217,209,43)" rx="2" ry="2" />
<text x="308.96" y="399.5" ></text>
</g>
<g >
<title>do_mmap (26 samples, 0.09%)</title><rect x="127.6" y="213" width="1.1" height="15.0" fill="rgb(239,185,29)" rx="2" ry="2" />
<text x="130.65" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (10 samples, 0.04%)</title><rect x="1181.1" y="293" width="0.4" height="15.0" fill="rgb(254,185,22)" rx="2" ry="2" />
<text x="1184.11" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (22 samples, 0.08%)</title><rect x="116.9" y="325" width="0.9" height="15.0" fill="rgb(246,107,46)" rx="2" ry="2" />
<text x="119.87" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="83.1" y="229" width="0.2" height="15.0" fill="rgb(216,161,4)" rx="2" ry="2" />
<text x="86.08" y="239.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (3 samples, 0.01%)</title><rect x="66.7" y="245" width="0.1" height="15.0" fill="rgb(210,176,52)" rx="2" ry="2" />
<text x="69.69" y="255.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (7 samples, 0.02%)</title><rect x="161.0" y="293" width="0.3" height="15.0" fill="rgb(253,20,49)" rx="2" ry="2" />
<text x="163.98" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.02%)</title><rect x="52.3" y="245" width="0.3" height="15.0" fill="rgb(227,91,13)" rx="2" ry="2" />
<text x="55.30" y="255.5" ></text>
</g>
<g >
<title>sys_clock_gettime (8 samples, 0.03%)</title><rect x="1187.0" y="421" width="0.4" height="15.0" fill="rgb(214,139,35)" rx="2" ry="2" />
<text x="1190.02" y="431.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (13 samples, 0.05%)</title><rect x="166.0" y="309" width="0.5" height="15.0" fill="rgb(232,130,46)" rx="2" ry="2" />
<text x="168.97" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (3 samples, 0.01%)</title><rect x="23.4" y="293" width="0.1" height="15.0" fill="rgb(241,159,31)" rx="2" ry="2" />
<text x="26.42" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (30 samples, 0.11%)</title><rect x="151.5" y="309" width="1.3" height="15.0" fill="rgb(221,157,17)" rx="2" ry="2" />
<text x="154.50" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (22 samples, 0.08%)</title><rect x="131.0" y="325" width="1.0" height="15.0" fill="rgb(238,200,29)" rx="2" ry="2" />
<text x="134.04" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="60.1" y="149" width="0.2" height="15.0" fill="rgb(234,142,0)" rx="2" ry="2" />
<text x="63.14" y="159.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (6 samples, 0.02%)</title><rect x="1178.6" y="373" width="0.3" height="15.0" fill="rgb(219,192,24)" rx="2" ry="2" />
<text x="1181.64" y="383.5" ></text>
</g>
<g >
<title>__rdl_realloc (3 samples, 0.01%)</title><rect x="249.5" y="309" width="0.1" height="15.0" fill="rgb(241,167,16)" rx="2" ry="2" />
<text x="252.49" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (3 samples, 0.01%)</title><rect x="18.7" y="277" width="0.1" height="15.0" fill="rgb(246,6,30)" rx="2" ry="2" />
<text x="21.68" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (79 samples, 0.28%)</title><rect x="1180.4" y="325" width="3.3" height="15.0" fill="rgb(249,205,26)" rx="2" ry="2" />
<text x="1183.36" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (28 samples, 0.10%)</title><rect x="289.9" y="341" width="1.1" height="15.0" fill="rgb(211,187,21)" rx="2" ry="2" />
<text x="292.86" y="351.5" ></text>
</g>
<g >
<title>std::sync::mutex::Mutex$LT$T$GT$::new::hf2c0b119dbf955ad (4 samples, 0.01%)</title><rect x="116.7" y="309" width="0.2" height="15.0" fill="rgb(245,103,51)" rx="2" ry="2" />
<text x="119.70" y="319.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 (10 samples, 0.04%)</title><rect x="116.3" y="309" width="0.4" height="15.0" fill="rgb(239,18,22)" rx="2" ry="2" />
<text x="119.29" y="319.5" ></text>
</g>
<g >
<title>release_pages (4 samples, 0.01%)</title><rect x="108.9" y="181" width="0.2" height="15.0" fill="rgb(229,220,51)" rx="2" ry="2" />
<text x="111.91" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 0.11%)</title><rect x="364.5" y="389" width="1.3" height="15.0" fill="rgb(218,111,19)" rx="2" ry="2" />
<text x="367.45" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (8 samples, 0.03%)</title><rect x="1184.3" y="261" width="0.3" height="15.0" fill="rgb(231,167,1)" rx="2" ry="2" />
<text x="1187.30" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (3 samples, 0.01%)</title><rect x="19.0" y="309" width="0.1" height="15.0" fill="rgb(244,207,15)" rx="2" ry="2" />
<text x="21.97" y="319.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd0c3d21be1c02339 (3 samples, 0.01%)</title><rect x="25.0" y="261" width="0.1" height="15.0" fill="rgb(218,193,31)" rx="2" ry="2" />
<text x="28.01" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="120.0" y="245" width="0.3" height="15.0" fill="rgb(221,170,27)" rx="2" ry="2" />
<text x="122.98" y="255.5" ></text>
</g>
<g >
<title>_int_free (17 samples, 0.06%)</title><rect x="284.6" y="309" width="0.7" height="15.0" fill="rgb(243,100,48)" rx="2" ry="2" />
<text x="287.62" y="319.5" ></text>
</g>
<g >
<title>get_unmapped_area (6 samples, 0.02%)</title><rect x="127.8" y="197" width="0.3" height="15.0" fill="rgb(254,113,48)" rx="2" ry="2" />
<text x="130.82" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (13 samples, 0.05%)</title><rect x="41.6" y="229" width="0.6" height="15.0" fill="rgb(245,110,22)" rx="2" ry="2" />
<text x="44.61" y="239.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 (681 samples, 2.42%)</title><rect x="262.7" y="373" width="28.6" height="15.0" fill="rgb(244,51,17)" rx="2" ry="2" />
<text x="265.74" y="383.5" >_$..</text>
</g>
<g >
<title>sys_mprotect (17 samples, 0.06%)</title><rect x="117.0" y="261" width="0.7" height="15.0" fill="rgb(225,211,27)" rx="2" ry="2" />
<text x="120.00" y="271.5" ></text>
</g>
<g >
<title>malloc_consolidate (25 samples, 0.09%)</title><rect x="80.4" y="197" width="1.0" height="15.0" fill="rgb(223,178,10)" rx="2" ry="2" />
<text x="83.35" y="207.5" ></text>
</g>
<g >
<title>perf_iterate_sb (11 samples, 0.04%)</title><rect x="118.5" y="165" width="0.4" height="15.0" fill="rgb(213,132,44)" rx="2" ry="2" />
<text x="121.47" y="175.5" ></text>
</g>
<g >
<title>_int_free (80 samples, 0.28%)</title><rect x="298.8" y="341" width="3.3" height="15.0" fill="rgb(210,148,47)" rx="2" ry="2" />
<text x="301.75" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (18 samples, 0.06%)</title><rect x="302.1" y="357" width="0.8" height="15.0" fill="rgb(249,11,18)" rx="2" ry="2" />
<text x="305.11" y="367.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (38 samples, 0.14%)</title><rect x="106.9" y="389" width="1.5" height="15.0" fill="rgb(219,225,43)" rx="2" ry="2" />
<text x="109.85" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (6 samples, 0.02%)</title><rect x="34.9" y="245" width="0.3" height="15.0" fill="rgb(240,114,3)" rx="2" ry="2" />
<text x="37.95" y="255.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (4 samples, 0.01%)</title><rect x="291.1" y="357" width="0.2" height="15.0" fill="rgb(235,75,23)" rx="2" ry="2" />
<text x="294.12" y="367.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::InitExpr::empty::h4234cbdd8d47781d (32 samples, 0.11%)</title><rect x="364.5" y="405" width="1.3" height="15.0" fill="rgb(228,186,19)" rx="2" ry="2" />
<text x="367.45" y="415.5" ></text>
</g>
<g >
<title>release_pages (13 samples, 0.05%)</title><rect x="369.4" y="117" width="0.5" height="15.0" fill="rgb(208,110,24)" rx="2" ry="2" />
<text x="372.40" y="127.5" ></text>
</g>
<g >
<title>do_page_fault (23 samples, 0.08%)</title><rect x="115.0" y="293" width="1.0" height="15.0" fill="rgb(225,97,49)" rx="2" ry="2" />
<text x="118.03" y="303.5" ></text>
</g>
<g >
<title>__brk (7 samples, 0.02%)</title><rect x="1070.3" y="277" width="0.3" height="15.0" fill="rgb(233,27,21)" rx="2" ry="2" />
<text x="1073.34" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (6 samples, 0.02%)</title><rect x="37.3" y="213" width="0.2" height="15.0" fill="rgb(205,124,43)" rx="2" ry="2" />
<text x="40.29" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (16 samples, 0.06%)</title><rect x="25.7" y="261" width="0.7" height="15.0" fill="rgb(252,140,4)" rx="2" ry="2" />
<text x="28.72" y="271.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hb206b25879ccd1daE.llvm.1312411216417185755 (6 samples, 0.02%)</title><rect x="220.0" y="405" width="0.3" height="15.0" fill="rgb(247,143,14)" rx="2" ry="2" />
<text x="223.01" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (11 samples, 0.04%)</title><rect x="315.5" y="389" width="0.4" height="15.0" fill="rgb(249,102,11)" rx="2" ry="2" />
<text x="318.48" y="399.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4 samples, 0.01%)</title><rect x="1086.8" y="245" width="0.1" height="15.0" fill="rgb(244,189,11)" rx="2" ry="2" />
<text x="1089.78" y="255.5" ></text>
</g>
<g >
<title>force_sig_info (3 samples, 0.01%)</title><rect x="10.7" y="373" width="0.1" height="15.0" fill="rgb(247,42,17)" rx="2" ry="2" />
<text x="13.71" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (13 samples, 0.05%)</title><rect x="21.2" y="309" width="0.5" height="15.0" fill="rgb(236,42,41)" rx="2" ry="2" />
<text x="24.19" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="41.2" y="149" width="0.1" height="15.0" fill="rgb(230,35,3)" rx="2" ry="2" />
<text x="44.15" y="159.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01c6f1483464e918 (133 samples, 0.47%)</title><rect x="88.9" y="389" width="5.6" height="15.0" fill="rgb(220,165,31)" rx="2" ry="2" />
<text x="91.91" y="399.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..Type$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1038c9c3f65f373e (142 samples, 0.50%)</title><rect x="253.8" y="357" width="6.0" height="15.0" fill="rgb(212,111,12)" rx="2" ry="2" />
<text x="256.85" y="367.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (7 samples, 0.02%)</title><rect x="54.6" y="69" width="0.3" height="15.0" fill="rgb(222,4,31)" rx="2" ry="2" />
<text x="57.61" y="79.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (8 samples, 0.03%)</title><rect x="51.0" y="213" width="0.3" height="15.0" fill="rgb(227,103,33)" rx="2" ry="2" />
<text x="54.00" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (82 samples, 0.29%)</title><rect x="1180.3" y="405" width="3.5" height="15.0" fill="rgb(234,40,32)" rx="2" ry="2" />
<text x="1183.31" y="415.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 (75 samples, 0.27%)</title><rect x="79.5" y="245" width="3.2" height="15.0" fill="rgb(227,208,28)" rx="2" ry="2" />
<text x="82.52" y="255.5" ></text>
</g>
<g >
<title>do_page_fault (23 samples, 0.08%)</title><rect x="1141.8" y="293" width="1.0" height="15.0" fill="rgb(207,74,3)" rx="2" ry="2" />
<text x="1144.83" y="303.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="47.4" y="293" width="0.2" height="15.0" fill="rgb(254,49,17)" rx="2" ry="2" />
<text x="50.44" y="303.5" ></text>
</g>
<g >
<title>__GI___exp (22 samples, 0.08%)</title><rect x="223.9" y="421" width="0.9" height="15.0" fill="rgb(224,149,26)" rx="2" ry="2" />
<text x="226.87" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (43 samples, 0.15%)</title><rect x="260.9" y="357" width="1.8" height="15.0" fill="rgb(222,176,15)" rx="2" ry="2" />
<text x="263.89" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (20 samples, 0.07%)</title><rect x="284.5" y="325" width="0.8" height="15.0" fill="rgb(246,224,6)" rx="2" ry="2" />
<text x="287.50" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (10 samples, 0.04%)</title><rect x="1186.9" y="437" width="0.5" height="15.0" fill="rgb(205,92,14)" rx="2" ry="2" />
<text x="1189.94" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (5 samples, 0.02%)</title><rect x="37.7" y="197" width="0.2" height="15.0" fill="rgb(239,37,33)" rx="2" ry="2" />
<text x="40.67" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.02%)</title><rect x="51.6" y="213" width="0.3" height="15.0" fill="rgb(223,205,7)" rx="2" ry="2" />
<text x="54.63" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="51.4" y="213" width="0.1" height="15.0" fill="rgb(235,66,0)" rx="2" ry="2" />
<text x="54.38" y="223.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 (560 samples, 1.99%)</title><rect x="340.5" y="405" width="23.4" height="15.0" fill="rgb(210,153,6)" rx="2" ry="2" />
<text x="343.47" y="415.5" >p..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (27 samples, 0.10%)</title><rect x="1184.6" y="357" width="1.2" height="15.0" fill="rgb(222,213,33)" rx="2" ry="2" />
<text x="1187.63" y="367.5" ></text>
</g>
<g >
<title>change_protection (3 samples, 0.01%)</title><rect x="117.0" y="213" width="0.1" height="15.0" fill="rgb(243,51,40)" rx="2" ry="2" />
<text x="120.00" y="223.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (7 samples, 0.02%)</title><rect x="108.8" y="229" width="0.3" height="15.0" fill="rgb(235,11,6)" rx="2" ry="2" />
<text x="111.82" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (24 samples, 0.09%)</title><rect x="241.9" y="341" width="1.0" height="15.0" fill="rgb(249,82,52)" rx="2" ry="2" />
<text x="244.94" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (3 samples, 0.01%)</title><rect x="47.1" y="325" width="0.2" height="15.0" fill="rgb(223,6,27)" rx="2" ry="2" />
<text x="50.15" y="335.5" ></text>
</g>
<g >
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (3 samples, 0.01%)</title><rect x="1184.3" y="229" width="0.1" height="15.0" fill="rgb(254,184,47)" rx="2" ry="2" />
<text x="1187.30" y="239.5" ></text>
</g>
<g >
<title>_$LT$std..io..stdio..StdoutRaw$u20$as$u20$std..io..Write$GT$::write::h7dee2ea0992b2f6c (3 samples, 0.01%)</title><rect x="1180.1" y="181" width="0.2" height="15.0" fill="rgb(209,217,53)" rx="2" ry="2" />
<text x="1183.15" y="191.5" ></text>
</g>
<g >
<title>__GI___sched_yield (4 samples, 0.01%)</title><rect x="49.4" y="261" width="0.2" height="15.0" fill="rgb(218,32,5)" rx="2" ry="2" />
<text x="52.41" y="271.5" ></text>
</g>
<g >
<title>[libz3.so.4] (96 samples, 0.34%)</title><rect x="366.0" y="373" width="4.1" height="15.0" fill="rgb(248,212,28)" rx="2" ry="2" />
<text x="369.05" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="60.6" y="133" width="0.1" height="15.0" fill="rgb(244,34,51)" rx="2" ry="2" />
<text x="63.56" y="143.5" ></text>
</g>
<g >
<title>std::io::stdio::print_to::_$u7b$$u7b$closure$u7d$$u7d$::hd2e8831e8e9e4618 (5 samples, 0.02%)</title><rect x="1180.1" y="373" width="0.2" height="15.0" fill="rgb(210,85,18)" rx="2" ry="2" />
<text x="1183.11" y="383.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (10 samples, 0.04%)</title><rect x="1184.2" y="405" width="0.4" height="15.0" fill="rgb(224,119,48)" rx="2" ry="2" />
<text x="1187.21" y="415.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (5 samples, 0.02%)</title><rect x="65.6" y="165" width="0.2" height="15.0" fill="rgb(206,122,45)" rx="2" ry="2" />
<text x="68.64" y="175.5" ></text>
</g>
<g >
<title>do_mmap (21 samples, 0.07%)</title><rect x="118.2" y="213" width="0.9" height="15.0" fill="rgb(249,141,15)" rx="2" ry="2" />
<text x="121.17" y="223.5" ></text>
</g>
<g >
<title>__mmap (8 samples, 0.03%)</title><rect x="54.6" y="149" width="0.3" height="15.0" fill="rgb(218,4,23)" rx="2" ry="2" />
<text x="57.57" y="159.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_value_types::h852fc8c2d0e6778a (10 samples, 0.04%)</title><rect x="190.8" y="325" width="0.4" height="15.0" fill="rgb(250,189,2)" rx="2" ry="2" />
<text x="193.79" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="255.6" y="325" width="0.2" height="15.0" fill="rgb(252,89,38)" rx="2" ry="2" />
<text x="258.61" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (4 samples, 0.01%)</title><rect x="29.5" y="165" width="0.1" height="15.0" fill="rgb(209,87,54)" rx="2" ry="2" />
<text x="32.45" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_free (149 samples, 0.53%)</title><rect x="224.8" y="421" width="6.2" height="15.0" fill="rgb(238,57,48)" rx="2" ry="2" />
<text x="227.79" y="431.5" ></text>
</g>
<g >
<title>__handle_mm_fault (42 samples, 0.15%)</title><rect x="1158.3" y="293" width="1.8" height="15.0" fill="rgb(236,71,35)" rx="2" ry="2" />
<text x="1161.30" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="78.8" y="213" width="0.2" height="15.0" fill="rgb(229,166,49)" rx="2" ry="2" />
<text x="81.84" y="223.5" ></text>
</g>
<g >
<title>free_unref_page_list (10 samples, 0.04%)</title><rect x="369.5" y="101" width="0.4" height="15.0" fill="rgb(242,20,17)" rx="2" ry="2" />
<text x="372.48" y="111.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.02%)</title><rect x="61.8" y="133" width="0.3" height="15.0" fill="rgb(251,80,14)" rx="2" ry="2" />
<text x="64.82" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_free (83 samples, 0.29%)</title><rect x="220.3" y="405" width="3.4" height="15.0" fill="rgb(219,188,24)" rx="2" ry="2" />
<text x="223.27" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (24 samples, 0.09%)</title><rect x="105.6" y="405" width="1.0" height="15.0" fill="rgb(223,23,3)" rx="2" ry="2" />
<text x="108.64" y="415.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (4 samples, 0.01%)</title><rect x="18.1" y="293" width="0.1" height="15.0" fill="rgb(218,47,7)" rx="2" ry="2" />
<text x="21.05" y="303.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (4 samples, 0.01%)</title><rect x="1070.4" y="165" width="0.1" height="15.0" fill="rgb(251,193,39)" rx="2" ry="2" />
<text x="1073.38" y="175.5" ></text>
</g>
<g >
<title>_int_free (17 samples, 0.06%)</title><rect x="246.0" y="309" width="0.7" height="15.0" fill="rgb(242,158,11)" rx="2" ry="2" />
<text x="249.01" 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 (3 samples, 0.01%)</title><rect x="119.2" y="325" width="0.1" height="15.0" fill="rgb(245,220,3)" rx="2" ry="2" />
<text x="122.18" y="335.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (4 samples, 0.01%)</title><rect x="10.2" y="453" width="0.2" height="15.0" fill="rgb(212,10,34)" rx="2" ry="2" />
<text x="13.21" y="463.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$::new::hdd218dfdff200fb3 (11 samples, 0.04%)</title><rect x="128.9" y="357" width="0.5" height="15.0" fill="rgb(220,179,51)" rx="2" ry="2" />
<text x="131.91" y="367.5" ></text>
</g>
<g >
<title>crossbeam_epoch::internal::Global::try_advance::hdfa3562e1e5e830a (4 samples, 0.01%)</title><rect x="49.2" y="197" width="0.2" height="15.0" fill="rgb(209,12,25)" rx="2" ry="2" />
<text x="52.24" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (74 samples, 0.26%)</title><rect x="285.5" y="325" width="3.1" height="15.0" fill="rgb(235,39,27)" rx="2" ry="2" />
<text x="288.50" y="335.5" ></text>
</g>
<g >
<title>_int_free (16 samples, 0.06%)</title><rect x="304.5" y="309" width="0.7" height="15.0" fill="rgb(228,44,53)" rx="2" ry="2" />
<text x="307.54" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5799aea0ed87e892 (38 samples, 0.14%)</title><rect x="326.8" y="389" width="1.6" height="15.0" fill="rgb(239,77,8)" rx="2" ry="2" />
<text x="329.80" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="37.7" y="181" width="0.2" height="15.0" fill="rgb(219,7,1)" rx="2" ry="2" />
<text x="40.67" y="191.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="78.7" y="213" width="0.1" height="15.0" fill="rgb(253,107,35)" rx="2" ry="2" />
<text x="81.68" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (90 samples, 0.32%)</title><rect x="184.6" y="309" width="3.8" height="15.0" fill="rgb(250,21,51)" rx="2" ry="2" />
<text x="187.63" y="319.5" ></text>
</g>
<g >
<title>_int_free (14 samples, 0.05%)</title><rect x="154.8" y="261" width="0.6" height="15.0" fill="rgb(246,170,43)" rx="2" ry="2" />
<text x="157.82" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (5 samples, 0.02%)</title><rect x="37.3" y="197" width="0.2" height="15.0" fill="rgb(254,87,17)" rx="2" ry="2" />
<text x="40.34" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (36 samples, 0.13%)</title><rect x="96.2" y="373" width="1.5" height="15.0" fill="rgb(217,84,48)" rx="2" ry="2" />
<text x="99.16" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (292 samples, 1.04%)</title><rect x="53.2" y="229" width="12.3" height="15.0" fill="rgb(240,111,12)" rx="2" ry="2" />
<text x="56.23" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (18 samples, 0.06%)</title><rect x="323.9" y="389" width="0.7" height="15.0" fill="rgb(226,219,5)" rx="2" ry="2" />
<text x="326.87" y="399.5" ></text>
</g>
<g >
<title>do_brk_flags (6 samples, 0.02%)</title><rect x="1087.2" y="213" width="0.2" height="15.0" fill="rgb(230,131,0)" rx="2" ry="2" />
<text x="1090.15" y="223.5" ></text>
</g>
<g >
<title>sys_brk (15 samples, 0.05%)</title><rect x="369.4" y="229" width="0.6" height="15.0" fill="rgb(233,190,30)" rx="2" ry="2" />
<text x="372.40" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (15 samples, 0.05%)</title><rect x="241.3" y="325" width="0.6" height="15.0" fill="rgb(250,69,10)" rx="2" ry="2" />
<text x="244.31" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::undo::h6a1e65478f3726a7 (6 samples, 0.02%)</title><rect x="1179.8" y="421" width="0.3" height="15.0" fill="rgb(243,146,28)" rx="2" ry="2" />
<text x="1182.81" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6 samples, 0.02%)</title><rect x="70.8" y="197" width="0.2" height="15.0" fill="rgb(216,174,26)" rx="2" ry="2" />
<text x="73.75" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_free (15 samples, 0.05%)</title><rect x="74.9" y="197" width="0.7" height="15.0" fill="rgb(219,136,35)" rx="2" ry="2" />
<text x="77.95" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (6 samples, 0.02%)</title><rect x="53.5" y="133" width="0.2" height="15.0" fill="rgb(254,179,36)" rx="2" ry="2" />
<text x="56.48" y="143.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (27 samples, 0.10%)</title><rect x="218.0" y="389" width="1.1" height="15.0" fill="rgb(247,217,21)" rx="2" ry="2" />
<text x="220.96" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (12 samples, 0.04%)</title><rect x="189.0" y="309" width="0.5" height="15.0" fill="rgb(209,80,39)" rx="2" ry="2" />
<text x="192.03" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="62.6" y="181" width="0.2" height="15.0" fill="rgb(237,157,8)" rx="2" ry="2" />
<text x="65.62" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_free (7 samples, 0.02%)</title><rect x="110.5" y="341" width="0.3" height="15.0" fill="rgb(211,24,5)" rx="2" ry="2" />
<text x="113.54" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (3 samples, 0.01%)</title><rect x="206.4" y="293" width="0.1" height="15.0" fill="rgb(227,151,16)" rx="2" ry="2" />
<text x="209.39" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (6 samples, 0.02%)</title><rect x="30.5" y="197" width="0.3" height="15.0" fill="rgb(239,105,20)" rx="2" ry="2" />
<text x="33.54" y="207.5" ></text>
</g>
<g >
<title>_int_free (14 samples, 0.05%)</title><rect x="66.9" y="245" width="0.6" height="15.0" fill="rgb(254,17,48)" rx="2" ry="2" />
<text x="69.90" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (6 samples, 0.02%)</title><rect x="44.4" y="213" width="0.2" height="15.0" fill="rgb(241,47,23)" rx="2" ry="2" />
<text x="47.38" y="223.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (8 samples, 0.03%)</title><rect x="120.9" y="309" width="0.3" height="15.0" fill="rgb(214,152,54)" rx="2" ry="2" />
<text x="123.86" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (9 samples, 0.03%)</title><rect x="1185.8" y="341" width="0.4" height="15.0" fill="rgb(229,53,14)" rx="2" ry="2" />
<text x="1188.85" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (18 samples, 0.06%)</title><rect x="120.4" y="325" width="0.8" height="15.0" fill="rgb(209,207,15)" rx="2" ry="2" />
<text x="123.44" y="335.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::h5603426d24cd66e0 (7 samples, 0.02%)</title><rect x="68.2" y="213" width="0.2" height="15.0" fill="rgb(247,15,4)" rx="2" ry="2" />
<text x="71.15" y="223.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (83 samples, 0.29%)</title><rect x="162.5" y="277" width="3.5" height="15.0" fill="rgb(240,216,36)" rx="2" ry="2" />
<text x="165.49" y="287.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1187.6" y="453" width="0.3" height="15.0" fill="rgb(226,107,34)" rx="2" ry="2" />
<text x="1190.61" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.02%)</title><rect x="57.2" y="133" width="0.3" height="15.0" fill="rgb(214,30,51)" rx="2" ry="2" />
<text x="60.21" y="143.5" ></text>
</g>
<g >
<title>sys_mprotect (61 samples, 0.22%)</title><rect x="124.8" y="261" width="2.6" height="15.0" fill="rgb(252,79,7)" rx="2" ry="2" />
<text x="127.84" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (27 samples, 0.10%)</title><rect x="95.0" y="261" width="1.2" height="15.0" fill="rgb(245,31,23)" rx="2" ry="2" />
<text x="98.03" y="271.5" ></text>
</g>
<g >
<title>malloc_consolidate (200 samples, 0.71%)</title><rect x="345.9" y="357" width="8.4" height="15.0" fill="rgb(243,93,19)" rx="2" ry="2" />
<text x="348.92" y="367.5" ></text>
</g>
<g >
<title>parity_wasm::elements::module::Module::to_bytes::hf7eaeb7e90803675 (1,862 samples, 6.62%)</title><rect x="231.4" y="421" width="78.1" height="15.0" fill="rgb(232,199,6)" rx="2" ry="2" />
<text x="234.42" y="431.5" >parity_wa..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (25 samples, 0.09%)</title><rect x="282.9" y="325" width="1.1" height="15.0" fill="rgb(220,61,19)" rx="2" ry="2" />
<text x="285.90" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (4 samples, 0.01%)</title><rect x="1186.0" y="325" width="0.1" height="15.0" fill="rgb(221,113,43)" rx="2" ry="2" />
<text x="1188.97" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (4 samples, 0.01%)</title><rect x="74.3" y="165" width="0.1" height="15.0" fill="rgb(229,70,16)" rx="2" ry="2" />
<text x="77.27" y="175.5" ></text>
</g>
<g >
<title>malloc_consolidate (40 samples, 0.14%)</title><rect x="1068.7" y="325" width="1.6" height="15.0" fill="rgb(209,164,32)" rx="2" ry="2" />
<text x="1071.66" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (5 samples, 0.02%)</title><rect x="15.3" y="277" width="0.2" height="15.0" fill="rgb(227,37,22)" rx="2" ry="2" />
<text x="18.28" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (63 samples, 0.22%)</title><rect x="111.5" y="341" width="2.6" height="15.0" fill="rgb(221,85,2)" rx="2" ry="2" />
<text x="114.51" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (3 samples, 0.01%)</title><rect x="30.2" y="197" width="0.1" height="15.0" fill="rgb(246,83,38)" rx="2" ry="2" />
<text x="33.21" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (3 samples, 0.01%)</title><rect x="34.1" y="213" width="0.1" height="15.0" fill="rgb(242,60,27)" rx="2" ry="2" />
<text x="37.11" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (5 samples, 0.02%)</title><rect x="53.8" y="165" width="0.2" height="15.0" fill="rgb(246,228,36)" rx="2" ry="2" />
<text x="56.77" y="175.5" ></text>
</g>
<g >
<title>__handle_mm_fault (14 samples, 0.05%)</title><rect x="115.4" y="245" width="0.6" height="15.0" fill="rgb(207,1,24)" rx="2" ry="2" />
<text x="118.36" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6 samples, 0.02%)</title><rect x="70.8" y="181" width="0.2" height="15.0" fill="rgb(254,108,20)" rx="2" ry="2" />
<text x="73.75" y="191.5" ></text>
</g>
<g >
<title>_int_free (262 samples, 0.93%)</title><rect x="1115.7" y="325" width="11.0" height="15.0" fill="rgb(228,179,18)" rx="2" ry="2" />
<text x="1118.70" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="1180.1" y="117" width="0.2" height="15.0" fill="rgb(252,7,38)" rx="2" ry="2" />
<text x="1183.15" y="127.5" ></text>
</g>
<g >
<title>perf_event_mmap (15 samples, 0.05%)</title><rect x="128.1" y="181" width="0.6" height="15.0" fill="rgb(226,69,21)" rx="2" ry="2" />
<text x="131.07" y="191.5" ></text>
</g>
<g >
<title>mmap_region (5 samples, 0.02%)</title><rect x="54.7" y="37" width="0.2" height="15.0" fill="rgb(252,46,31)" rx="2" ry="2" />
<text x="57.69" y="47.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="106.7" y="373" width="0.2" height="15.0" fill="rgb(239,207,10)" rx="2" ry="2" />
<text x="109.73" y="383.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (4 samples, 0.01%)</title><rect x="1070.4" y="181" width="0.1" height="15.0" fill="rgb(247,204,52)" rx="2" ry="2" />
<text x="1073.38" y="191.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (25 samples, 0.09%)</title><rect x="48.5" y="341" width="1.1" height="15.0" fill="rgb(245,65,5)" rx="2" ry="2" />
<text x="51.53" y="351.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 (26 samples, 0.09%)</title><rect x="47.3" y="389" width="1.1" height="15.0" fill="rgb(252,208,9)" rx="2" ry="2" />
<text x="50.27" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::scoped_hash_map::ScopedHashMap$LT$K$C$V$GT$::decrement_depth::hf6d6ab0429c2a14c (3 samples, 0.01%)</title><rect x="45.6" y="229" width="0.1" height="15.0" fill="rgb(226,134,2)" rx="2" ry="2" />
<text x="48.55" y="239.5" ></text>
</g>
<g >
<title>do_syscall_64 (5 samples, 0.02%)</title><rect x="53.8" y="117" width="0.2" height="15.0" fill="rgb(227,217,50)" rx="2" ry="2" />
<text x="56.77" y="127.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (6 samples, 0.02%)</title><rect x="44.4" y="197" width="0.2" height="15.0" fill="rgb(246,59,9)" rx="2" ry="2" />
<text x="47.38" y="207.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="52.9" y="133" width="0.2" height="15.0" fill="rgb(243,108,15)" rx="2" ry="2" />
<text x="55.89" y="143.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (26,101 samples, 92.74%)</title><rect x="86.0" y="453" width="1094.3" height="15.0" fill="rgb(217,79,30)" rx="2" ry="2" />
<text x="88.97" y="463.5" >rocinante::main::h69eb7648725adb6f</text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (3 samples, 0.01%)</title><rect x="1183.5" y="277" width="0.2" height="15.0" fill="rgb(212,14,9)" rx="2" ry="2" />
<text x="1186.54" y="287.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (114 samples, 0.41%)</title><rect x="209.9" y="341" width="4.7" height="15.0" fill="rgb(222,187,8)" rx="2" ry="2" />
<text x="212.87" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (25 samples, 0.09%)</title><rect x="95.0" y="229" width="1.1" height="15.0" fill="rgb(220,164,12)" rx="2" ry="2" />
<text x="98.03" y="239.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (3 samples, 0.01%)</title><rect x="1180.1" y="133" width="0.2" height="15.0" fill="rgb(235,128,6)" rx="2" ry="2" />
<text x="1183.15" y="143.5" ></text>
</g>
<g >
<title>vfs_write (3 samples, 0.01%)</title><rect x="1180.1" y="69" width="0.2" height="15.0" fill="rgb(231,7,7)" rx="2" ry="2" />
<text x="1183.15" y="79.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (11 samples, 0.04%)</title><rect x="70.2" y="181" width="0.4" height="15.0" fill="rgb(209,155,32)" rx="2" ry="2" />
<text x="73.17" y="191.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="73.1" y="149" width="0.2" height="15.0" fill="rgb(216,156,42)" rx="2" ry="2" />
<text x="76.14" y="159.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (3 samples, 0.01%)</title><rect x="14.8" y="277" width="0.1" height="15.0" fill="rgb(237,37,25)" rx="2" ry="2" />
<text x="17.78" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (3 samples, 0.01%)</title><rect x="205.7" y="325" width="0.1" height="15.0" fill="rgb(249,145,35)" rx="2" ry="2" />
<text x="208.67" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (2,527 samples, 8.98%)</title><rect x="109.4" y="405" width="106.0" height="15.0" fill="rgb(213,217,28)" rx="2" ry="2" />
<text x="112.41" y="415.5" >wasmer_runti..</text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (3 samples, 0.01%)</title><rect x="40.1" y="197" width="0.2" height="15.0" fill="rgb(206,99,54)" rx="2" ry="2" />
<text x="43.15" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (5 samples, 0.02%)</title><rect x="18.4" y="293" width="0.2" height="15.0" fill="rgb(229,29,5)" rx="2" ry="2" />
<text x="21.39" y="303.5" ></text>
</g>
<g >
<title>__do_page_fault (22 samples, 0.08%)</title><rect x="115.1" y="277" width="0.9" height="15.0" fill="rgb(205,144,30)" rx="2" ry="2" />
<text x="118.07" y="287.5" ></text>
</g>
<g >
<title>_int_free (37 samples, 0.13%)</title><rect x="191.4" y="325" width="1.5" height="15.0" fill="rgb(226,3,25)" rx="2" ry="2" />
<text x="194.38" y="335.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (86 samples, 0.31%)</title><rect x="177.5" y="309" width="3.6" height="15.0" fill="rgb(237,202,5)" rx="2" ry="2" />
<text x="180.50" y="319.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="76.0" y="149" width="0.2" height="15.0" fill="rgb(215,97,37)" rx="2" ry="2" />
<text x="78.99" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_free (41 samples, 0.15%)</title><rect x="191.2" y="341" width="1.7" height="15.0" fill="rgb(210,217,15)" rx="2" ry="2" />
<text x="194.21" y="351.5" ></text>
</g>
<g >
<title>__GI___sbrk (15 samples, 0.05%)</title><rect x="369.4" y="293" width="0.6" height="15.0" fill="rgb(248,20,8)" rx="2" ry="2" />
<text x="372.40" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h82a7dc3569650ef1 (8 samples, 0.03%)</title><rect x="51.5" y="229" width="0.4" height="15.0" fill="rgb(236,6,1)" rx="2" ry="2" />
<text x="54.55" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (36 samples, 0.13%)</title><rect x="30.1" y="245" width="1.5" height="15.0" fill="rgb(238,32,21)" rx="2" ry="2" />
<text x="33.13" y="255.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (17 samples, 0.06%)</title><rect x="1179.1" y="405" width="0.7" height="15.0" fill="rgb(243,171,45)" rx="2" ry="2" />
<text x="1182.10" y="415.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 (82 samples, 0.29%)</title><rect x="1180.3" y="373" width="3.5" height="15.0" fill="rgb(235,161,13)" rx="2" ry="2" />
<text x="1183.31" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (42 samples, 0.15%)</title><rect x="1176.7" y="373" width="1.8" height="15.0" fill="rgb(249,130,46)" rx="2" ry="2" />
<text x="1179.71" y="383.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (27 samples, 0.10%)</title><rect x="188.4" y="325" width="1.2" height="15.0" fill="rgb(231,187,18)" rx="2" ry="2" />
<text x="191.44" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (29 samples, 0.10%)</title><rect x="80.2" y="213" width="1.2" height="15.0" fill="rgb(217,20,17)" rx="2" ry="2" />
<text x="83.23" y="223.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (4 samples, 0.01%)</title><rect x="48.4" y="421" width="0.1" height="15.0" fill="rgb(233,77,16)" rx="2" ry="2" />
<text x="51.36" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (5 samples, 0.02%)</title><rect x="20.6" y="293" width="0.2" height="15.0" fill="rgb(254,175,24)" rx="2" ry="2" />
<text x="23.57" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="52.6" y="245" width="0.2" height="15.0" fill="rgb(238,205,8)" rx="2" ry="2" />
<text x="55.64" y="255.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.02%)</title><rect x="74.5" y="181" width="0.3" height="15.0" fill="rgb(224,89,31)" rx="2" ry="2" />
<text x="77.53" y="191.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="110.9" y="341" width="0.1" height="15.0" fill="rgb(231,124,12)" rx="2" ry="2" />
<text x="113.92" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (9 samples, 0.03%)</title><rect x="332.8" y="389" width="0.4" height="15.0" fill="rgb(251,80,17)" rx="2" ry="2" />
<text x="335.84" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (33 samples, 0.12%)</title><rect x="112.8" y="325" width="1.3" height="15.0" fill="rgb(227,51,32)" rx="2" ry="2" />
<text x="115.76" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (10 samples, 0.04%)</title><rect x="1184.2" y="453" width="0.4" height="15.0" fill="rgb(206,127,34)" rx="2" ry="2" />
<text x="1187.21" y="463.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (11 samples, 0.04%)</title><rect x="1159.6" y="277" width="0.5" height="15.0" fill="rgb(220,67,28)" rx="2" ry="2" />
<text x="1162.60" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (88 samples, 0.31%)</title><rect x="291.8" y="357" width="3.7" height="15.0" fill="rgb(253,203,47)" rx="2" ry="2" />
<text x="294.79" y="367.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (5 samples, 0.02%)</title><rect x="53.8" y="133" width="0.2" height="15.0" fill="rgb(247,174,37)" rx="2" ry="2" />
<text x="56.77" y="143.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (4 samples, 0.01%)</title><rect x="1185.3" y="293" width="0.1" height="15.0" fill="rgb(230,6,32)" rx="2" ry="2" />
<text x="1188.26" y="303.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::h5603426d24cd66e0 (128 samples, 0.45%)</title><rect x="237.7" y="373" width="5.4" height="15.0" fill="rgb(225,221,3)" rx="2" ry="2" />
<text x="240.71" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_fork_frontend..frontend..FuncInstBuilder$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h31ca9581c4035409 (3 samples, 0.01%)</title><rect x="214.6" y="293" width="0.2" height="15.0" fill="rgb(205,144,14)" rx="2" ry="2" />
<text x="217.65" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (21 samples, 0.07%)</title><rect x="121.4" y="293" width="0.8" height="15.0" fill="rgb(241,38,0)" rx="2" ry="2" />
<text x="124.36" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (19 samples, 0.07%)</title><rect x="14.4" y="309" width="0.8" height="15.0" fill="rgb(215,161,35)" rx="2" ry="2" />
<text x="17.44" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (19 samples, 0.07%)</title><rect x="116.9" y="293" width="0.8" height="15.0" fill="rgb(212,195,46)" rx="2" ry="2" />
<text x="119.91" y="303.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::new::hbb62ff20d783c9ba (5 samples, 0.02%)</title><rect x="209.7" y="341" width="0.2" height="15.0" fill="rgb(250,211,7)" rx="2" ry="2" />
<text x="212.66" y="351.5" ></text>
</g>
<g >
<title>wp_page_copy (3 samples, 0.01%)</title><rect x="1159.2" y="261" width="0.1" height="15.0" fill="rgb(213,113,32)" rx="2" ry="2" />
<text x="1162.18" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::declare_ebb_header_block::h26e9e9b0a35fd899 (9 samples, 0.03%)</title><rect x="206.1" y="309" width="0.4" height="15.0" fill="rgb(236,171,35)" rx="2" ry="2" />
<text x="209.14" y="319.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::build::h43b3778966365e6f (6 samples, 0.02%)</title><rect x="77.9" y="245" width="0.2" height="15.0" fill="rgb(239,68,46)" rx="2" ry="2" />
<text x="80.88" y="255.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (4 samples, 0.01%)</title><rect x="49.6" y="421" width="0.1" height="15.0" fill="rgb(233,154,9)" rx="2" ry="2" />
<text x="52.58" y="431.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (10 samples, 0.04%)</title><rect x="1186.9" y="469" width="0.5" height="15.0" fill="rgb(210,113,53)" rx="2" ry="2" />
<text x="1189.94" y="479.5" ></text>
</g>
<g >
<title>page_fault (5 samples, 0.02%)</title><rect x="1145.6" y="341" width="0.2" height="15.0" fill="rgb(226,79,15)" rx="2" ry="2" />
<text x="1148.60" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc01085cdf6cb9abc (40 samples, 0.14%)</title><rect x="336.5" y="389" width="1.7" height="15.0" fill="rgb(214,71,26)" rx="2" ry="2" />
<text x="339.49" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.02%)</title><rect x="340.1" y="389" width="0.2" height="15.0" fill="rgb(227,66,7)" rx="2" ry="2" />
<text x="343.14" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (6 samples, 0.02%)</title><rect x="48.0" y="325" width="0.3" height="15.0" fill="rgb(206,200,54)" rx="2" ry="2" />
<text x="51.03" y="335.5" ></text>
</g>
<g >
<title>__GI___sbrk (7 samples, 0.02%)</title><rect x="1070.3" y="293" width="0.3" height="15.0" fill="rgb(211,195,20)" rx="2" ry="2" />
<text x="1073.34" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (42 samples, 0.15%)</title><rect x="216.1" y="373" width="1.8" height="15.0" fill="rgb(251,104,40)" rx="2" ry="2" />
<text x="219.11" y="383.5" ></text>
</g>
<g >
<title>sys_mmap (25 samples, 0.09%)</title><rect x="118.0" y="261" width="1.1" height="15.0" fill="rgb(221,43,46)" rx="2" ry="2" />
<text x="121.00" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (508 samples, 1.81%)</title><rect x="25.5" y="277" width="21.3" height="15.0" fill="rgb(205,9,36)" rx="2" ry="2" />
<text x="28.51" y="287.5" >c..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (222 samples, 0.79%)</title><rect x="14.4" y="341" width="9.3" height="15.0" fill="rgb(247,22,35)" rx="2" ry="2" />
<text x="17.40" y="351.5" ></text>
</g>
<g >
<title>std::io::Write::write_all::h4c5e62f1152d10b3 (4 samples, 0.01%)</title><rect x="1180.1" y="293" width="0.2" height="15.0" fill="rgb(244,104,26)" rx="2" ry="2" />
<text x="1183.15" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (9 samples, 0.03%)</title><rect x="15.5" y="277" width="0.4" height="15.0" fill="rgb(245,130,1)" rx="2" ry="2" />
<text x="18.49" y="287.5" ></text>
</g>
<g >
<title>free_perturb (6 samples, 0.02%)</title><rect x="1126.2" y="309" width="0.2" height="15.0" fill="rgb(211,39,32)" rx="2" ry="2" />
<text x="1129.19" y="319.5" ></text>
</g>
<g >
<title>handle_mm_fault (60 samples, 0.21%)</title><rect x="1158.2" y="309" width="2.5" height="15.0" fill="rgb(212,63,0)" rx="2" ry="2" />
<text x="1161.22" y="319.5" ></text>
</g>
<g >
<title>_int_free (18 samples, 0.06%)</title><rect x="249.9" y="341" width="0.8" height="15.0" fill="rgb(248,65,7)" rx="2" ry="2" />
<text x="252.91" y="351.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (9 samples, 0.03%)</title><rect x="360.3" y="341" width="0.4" height="15.0" fill="rgb(232,141,1)" rx="2" ry="2" />
<text x="363.34" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (87 samples, 0.31%)</title><rect x="298.5" y="357" width="3.6" height="15.0" fill="rgb(208,167,31)" rx="2" ry="2" />
<text x="301.46" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (25 samples, 0.09%)</title><rect x="244.5" y="341" width="1.0" height="15.0" fill="rgb(210,12,21)" rx="2" ry="2" />
<text x="247.46" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (23 samples, 0.08%)</title><rect x="31.7" y="229" width="0.9" height="15.0" fill="rgb(234,198,33)" rx="2" ry="2" />
<text x="34.68" y="239.5" ></text>
</g>
<g >
<title>[libz3.so.4] (514 samples, 1.83%)</title><rect x="370.1" y="373" width="21.6" height="15.0" fill="rgb(246,125,17)" rx="2" ry="2" />
<text x="373.11" y="383.5" >[..</text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h09b423cadf0da692 (436 samples, 1.55%)</title><rect x="264.0" y="341" width="18.2" height="15.0" fill="rgb(210,66,50)" rx="2" ry="2" />
<text x="266.95" y="351.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (13 samples, 0.05%)</title><rect x="369.4" y="165" width="0.5" height="15.0" fill="rgb(253,216,12)" rx="2" ry="2" />
<text x="372.40" y="175.5" ></text>
</g>
<g >
<title>_int_malloc (12 samples, 0.04%)</title><rect x="251.8" y="325" width="0.5" height="15.0" fill="rgb(218,80,6)" rx="2" ry="2" />
<text x="254.84" y="335.5" ></text>
</g>
<g >
<title>process_cpu_clock_get (8 samples, 0.03%)</title><rect x="1187.0" y="405" width="0.4" height="15.0" fill="rgb(251,217,8)" rx="2" ry="2" />
<text x="1190.02" y="415.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (3 samples, 0.01%)</title><rect x="1183.5" y="293" width="0.2" height="15.0" fill="rgb(215,96,50)" rx="2" ry="2" />
<text x="1186.54" y="303.5" ></text>
</g>
<g >
<title>__do_page_fault (114 samples, 0.41%)</title><rect x="1156.0" y="325" width="4.8" height="15.0" fill="rgb(211,62,45)" rx="2" ry="2" />
<text x="1159.00" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="61.4" y="117" width="0.3" height="15.0" fill="rgb(242,74,16)" rx="2" ry="2" />
<text x="64.44" y="127.5" ></text>
</g>
<g >
<title>_int_free (136 samples, 0.48%)</title><rect x="225.3" y="405" width="5.7" height="15.0" fill="rgb(242,10,47)" rx="2" ry="2" />
<text x="228.34" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (9 samples, 0.03%)</title><rect x="83.5" y="213" width="0.3" height="15.0" fill="rgb(232,163,12)" rx="2" ry="2" />
<text x="86.46" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::import::ImportObject::new::hbf222489b0e5ea45 (5 samples, 0.02%)</title><rect x="215.4" y="405" width="0.2" height="15.0" fill="rgb(221,27,14)" rx="2" ry="2" />
<text x="218.36" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (6 samples, 0.02%)</title><rect x="288.1" y="293" width="0.3" height="15.0" fill="rgb(228,210,38)" rx="2" ry="2" />
<text x="291.10" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (36 samples, 0.13%)</title><rect x="103.4" y="389" width="1.5" height="15.0" fill="rgb(237,226,6)" rx="2" ry="2" />
<text x="106.41" y="399.5" ></text>
</g>
<g >
<title>lru_cache_add_active_or_unevictable (6 samples, 0.02%)</title><rect x="1159.3" y="277" width="0.3" height="15.0" fill="rgb(205,91,3)" rx="2" ry="2" />
<text x="1162.31" y="287.5" ></text>
</g>
<g >
<title>copy_process.part.35 (7 samples, 0.02%)</title><rect x="1186.5" y="389" width="0.3" height="15.0" fill="rgb(230,209,36)" rx="2" ry="2" />
<text x="1189.52" y="399.5" ></text>
</g>
<g >
<title>__sigprocmask (49 samples, 0.17%)</title><rect x="1187.9" y="437" width="2.1" height="15.0" fill="rgb(254,220,37)" rx="2" ry="2" />
<text x="1190.95" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (4 samples, 0.01%)</title><rect x="28.8" y="181" width="0.2" height="15.0" fill="rgb(253,210,31)" rx="2" ry="2" />
<text x="31.83" y="191.5" ></text>
</g>
<g >
<title>GOMP_critical_name_start (54 samples, 0.19%)</title><rect x="382.6" y="357" width="2.3" height="15.0" fill="rgb(231,155,40)" rx="2" ry="2" />
<text x="385.65" y="367.5" ></text>
</g>
<g >
<title>do_munmap (7 samples, 0.02%)</title><rect x="1070.3" y="213" width="0.3" height="15.0" fill="rgb(252,47,11)" rx="2" ry="2" />
<text x="1073.34" y="223.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (3 samples, 0.01%)</title><rect x="1185.8" y="309" width="0.2" height="15.0" fill="rgb(212,133,34)" rx="2" ry="2" />
<text x="1188.85" y="319.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (4 samples, 0.01%)</title><rect x="158.5" y="277" width="0.2" height="15.0" fill="rgb(205,115,31)" rx="2" ry="2" />
<text x="161.51" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (3 samples, 0.01%)</title><rect x="41.4" y="149" width="0.1" height="15.0" fill="rgb(237,209,25)" rx="2" ry="2" />
<text x="44.40" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (13 samples, 0.05%)</title><rect x="68.8" y="149" width="0.5" height="15.0" fill="rgb(243,26,33)" rx="2" ry="2" />
<text x="71.78" y="159.5" ></text>
</g>
<g >
<title>sys_mmap (7 samples, 0.02%)</title><rect x="54.6" y="101" width="0.3" height="15.0" fill="rgb(231,110,23)" rx="2" ry="2" />
<text x="57.61" y="111.5" ></text>
</g>
<g >
<title>_int_free (53 samples, 0.19%)</title><rect x="196.0" y="309" width="2.2" height="15.0" fill="rgb(214,117,43)" rx="2" ry="2" />
<text x="198.99" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha22fe22c40adc3f7 (226 samples, 0.80%)</title><rect x="354.5" y="389" width="9.4" height="15.0" fill="rgb(231,194,36)" rx="2" ry="2" />
<text x="357.47" y="399.5" ></text>
</g>
<g >
<title>__GI___mprotect (5 samples, 0.02%)</title><rect x="53.8" y="149" width="0.2" height="15.0" fill="rgb(229,133,50)" rx="2" ry="2" />
<text x="56.77" y="159.5" ></text>
</g>
<g >
<title>_int_malloc (244 samples, 0.87%)</title><rect x="1077.3" y="341" width="10.2" height="15.0" fill="rgb(236,54,12)" rx="2" ry="2" />
<text x="1080.26" y="351.5" ></text>
</g>
<g >
<title>sys_sched_yield (3 samples, 0.01%)</title><rect x="49.5" y="213" width="0.1" height="15.0" fill="rgb(251,165,25)" rx="2" ry="2" />
<text x="52.45" y="223.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 (3 samples, 0.01%)</title><rect x="29.5" y="149" width="0.1" height="15.0" fill="rgb(219,74,4)" rx="2" ry="2" />
<text x="32.45" y="159.5" ></text>
</g>
<g >
<title>vma_merge (3 samples, 0.01%)</title><rect x="127.2" y="213" width="0.1" height="15.0" fill="rgb(212,128,35)" rx="2" ry="2" />
<text x="130.19" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (32 samples, 0.11%)</title><rect x="327.0" y="373" width="1.4" height="15.0" fill="rgb(253,212,13)" rx="2" ry="2" />
<text x="330.01" y="383.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (3 samples, 0.01%)</title><rect x="1115.4" y="213" width="0.1" height="15.0" fill="rgb(219,106,19)" rx="2" ry="2" />
<text x="1118.37" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="1182.7" y="261" width="0.1" height="15.0" fill="rgb(210,157,4)" rx="2" ry="2" />
<text x="1185.66" y="271.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (5 samples, 0.02%)</title><rect x="1159.4" y="245" width="0.2" height="15.0" fill="rgb(240,223,53)" rx="2" ry="2" />
<text x="1162.35" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="218.0" y="373" width="0.1" height="15.0" fill="rgb(214,203,54)" rx="2" ry="2" />
<text x="221.00" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (27 samples, 0.10%)</title><rect x="356.0" y="357" width="1.1" height="15.0" fill="rgb(211,22,9)" rx="2" ry="2" />
<text x="358.98" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hd8a910271e6e0356 (27 samples, 0.10%)</title><rect x="95.0" y="293" width="1.2" height="15.0" fill="rgb(227,177,41)" rx="2" ry="2" />
<text x="98.03" y="303.5" ></text>
</g>
<g >
<title>smp_apic_timer_interrupt (4 samples, 0.01%)</title><rect x="1150.3" y="341" width="0.2" height="15.0" fill="rgb(216,79,42)" rx="2" ry="2" />
<text x="1153.29" y="351.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (47 samples, 0.17%)</title><rect x="156.7" y="309" width="2.0" height="15.0" fill="rgb(242,40,47)" rx="2" ry="2" />
<text x="159.70" y="319.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf37548cb648950a4 (7 samples, 0.02%)</title><rect x="263.3" y="357" width="0.3" height="15.0" fill="rgb(227,24,16)" rx="2" ry="2" />
<text x="266.32" y="367.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="45.2" y="213" width="0.1" height="15.0" fill="rgb(207,101,10)" rx="2" ry="2" />
<text x="48.18" y="223.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, 0.12%)</title><rect x="69.6" y="213" width="1.4" height="15.0" fill="rgb(224,137,14)" rx="2" ry="2" />
<text x="72.62" y="223.5" ></text>
</g>
<g >
<title>_int_free (4 samples, 0.01%)</title><rect x="114.4" y="293" width="0.1" height="15.0" fill="rgb(227,52,32)" rx="2" ry="2" />
<text x="117.36" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5 samples, 0.02%)</title><rect x="62.8" y="181" width="0.2" height="15.0" fill="rgb(211,63,54)" rx="2" ry="2" />
<text x="65.83" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (7 samples, 0.02%)</title><rect x="14.5" y="277" width="0.3" height="15.0" fill="rgb(221,18,10)" rx="2" ry="2" />
<text x="17.49" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (14 samples, 0.05%)</title><rect x="294.9" y="325" width="0.6" height="15.0" fill="rgb(221,37,33)" rx="2" ry="2" />
<text x="297.90" y="335.5" ></text>
</g>
<g >
<title>std::sys_common::thread::start_thread::h761ac6d57710d65d (25 samples, 0.09%)</title><rect x="48.5" y="405" width="1.1" height="15.0" fill="rgb(228,184,24)" rx="2" ry="2" />
<text x="51.53" y="415.5" ></text>
</g>
<g >
<title>do_signal (4 samples, 0.01%)</title><rect x="10.8" y="405" width="0.2" height="15.0" fill="rgb(247,145,31)" rx="2" ry="2" />
<text x="13.84" y="415.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (4 samples, 0.01%)</title><rect x="1070.4" y="133" width="0.1" height="15.0" fill="rgb(216,20,0)" rx="2" ry="2" />
<text x="1073.38" y="143.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::build::hfed3c1d7c10ae131 (11 samples, 0.04%)</title><rect x="78.1" y="245" width="0.5" height="15.0" fill="rgb(240,90,18)" rx="2" ry="2" />
<text x="81.13" y="255.5" ></text>
</g>
<g >
<title>_$LT$std..io..stdio..StdoutLock$u20$as$u20$std..io..Write$GT$::write::h9832bdaa821d7a14 (4 samples, 0.01%)</title><rect x="1180.1" y="277" width="0.2" height="15.0" fill="rgb(207,21,22)" rx="2" ry="2" />
<text x="1183.15" y="287.5" ></text>
</g>
<g >
<title>Z3_solver_dec_ref (96 samples, 0.34%)</title><rect x="366.0" y="389" width="4.1" height="15.0" fill="rgb(221,116,13)" rx="2" ry="2" />
<text x="369.05" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (16 samples, 0.06%)</title><rect x="27.9" y="213" width="0.6" height="15.0" fill="rgb(213,112,3)" rx="2" ry="2" />
<text x="30.86" y="223.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (5 samples, 0.02%)</title><rect x="39.6" y="197" width="0.2" height="15.0" fill="rgb(206,173,21)" rx="2" ry="2" />
<text x="42.60" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (402 samples, 1.43%)</title><rect x="1070.6" y="357" width="16.9" height="15.0" fill="rgb(240,184,28)" rx="2" ry="2" />
<text x="1073.63" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (4 samples, 0.01%)</title><rect x="17.8" y="293" width="0.2" height="15.0" fill="rgb(229,83,23)" rx="2" ry="2" />
<text x="20.80" y="303.5" ></text>
</g>
<g >
<title>alloc_pages_vma (4 samples, 0.01%)</title><rect x="1142.2" y="229" width="0.2" height="15.0" fill="rgb(241,14,13)" rx="2" ry="2" />
<text x="1145.20" y="239.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="55.2" y="149" width="0.1" height="15.0" fill="rgb(241,224,17)" rx="2" ry="2" />
<text x="58.20" y="159.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h946791f777187d09 (10 samples, 0.04%)</title><rect x="51.9" y="229" width="0.4" height="15.0" fill="rgb(222,36,31)" rx="2" ry="2" />
<text x="54.89" y="239.5" ></text>
</g>
<g >
<title>z3::solver::_$LT$impl$u20$core..ops..drop..Drop$u20$for$u20$z3..Solver$GT$::drop::h3f5e5e2331d67ebb (97 samples, 0.34%)</title><rect x="366.0" y="405" width="4.1" height="15.0" fill="rgb(217,175,49)" rx="2" ry="2" />
<text x="369.05" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (39 samples, 0.14%)</title><rect x="333.2" y="389" width="1.7" height="15.0" fill="rgb(227,138,23)" rx="2" ry="2" />
<text x="336.22" y="399.5" ></text>
</g>
<g >
<title>sys_munmap (3 samples, 0.01%)</title><rect x="52.9" y="117" width="0.2" height="15.0" fill="rgb(225,110,24)" rx="2" ry="2" />
<text x="55.93" y="127.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (4 samples, 0.01%)</title><rect x="1142.2" y="213" width="0.2" height="15.0" fill="rgb(244,37,42)" rx="2" ry="2" />
<text x="1145.20" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="79.1" y="229" width="0.2" height="15.0" fill="rgb(225,65,42)" rx="2" ry="2" />
<text x="82.14" y="239.5" ></text>
</g>
<g >
<title>_int_free (15 samples, 0.05%)</title><rect x="255.0" y="309" width="0.6" height="15.0" fill="rgb(243,167,50)" rx="2" ry="2" />
<text x="257.98" y="319.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (3 samples, 0.01%)</title><rect x="1183.5" y="245" width="0.2" height="15.0" fill="rgb(246,125,5)" rx="2" ry="2" />
<text x="1186.54" y="255.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 (246 samples, 0.87%)</title><rect x="252.4" y="373" width="10.3" height="15.0" fill="rgb(229,205,48)" rx="2" ry="2" />
<text x="255.42" y="383.5" ></text>
</g>
<g >
<title>_int_free (23 samples, 0.08%)</title><rect x="105.7" y="389" width="0.9" height="15.0" fill="rgb(238,19,47)" rx="2" ry="2" />
<text x="108.68" y="399.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 (3 samples, 0.01%)</title><rect x="49.3" y="181" width="0.1" height="15.0" fill="rgb(251,50,28)" rx="2" ry="2" />
<text x="52.29" y="191.5" ></text>
</g>
<g >
<title>_int_realloc (25 samples, 0.09%)</title><rect x="278.4" y="277" width="1.0" height="15.0" fill="rgb(239,74,28)" rx="2" ry="2" />
<text x="281.38" y="287.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (15 samples, 0.05%)</title><rect x="1181.5" y="293" width="0.7" height="15.0" fill="rgb(205,152,3)" rx="2" ry="2" />
<text x="1184.53" y="303.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (83 samples, 0.29%)</title><rect x="1180.3" y="453" width="3.5" height="15.0" fill="rgb(244,38,39)" rx="2" ry="2" />
<text x="1183.31" y="463.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (5 samples, 0.02%)</title><rect x="113.5" y="181" width="0.2" height="15.0" fill="rgb(239,165,42)" rx="2" ry="2" />
<text x="116.52" y="191.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (4 samples, 0.01%)</title><rect x="10.8" y="421" width="0.2" height="15.0" fill="rgb(230,127,49)" rx="2" ry="2" />
<text x="13.84" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (71 samples, 0.25%)</title><rect x="256.8" y="341" width="3.0" height="15.0" fill="rgb(219,61,25)" rx="2" ry="2" />
<text x="259.83" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (3 samples, 0.01%)</title><rect x="22.4" y="293" width="0.1" height="15.0" fill="rgb(247,117,53)" rx="2" ry="2" />
<text x="25.41" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (46 samples, 0.16%)</title><rect x="1187.9" y="405" width="2.0" height="15.0" fill="rgb(213,74,51)" rx="2" ry="2" />
<text x="1190.95" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (10 samples, 0.04%)</title><rect x="308.2" y="357" width="0.4" height="15.0" fill="rgb(222,199,21)" rx="2" ry="2" />
<text x="311.23" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (5 samples, 0.02%)</title><rect x="47.7" y="293" width="0.2" height="15.0" fill="rgb(206,138,39)" rx="2" ry="2" />
<text x="50.73" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4 samples, 0.01%)</title><rect x="78.4" y="213" width="0.2" height="15.0" fill="rgb(230,65,48)" rx="2" ry="2" />
<text x="81.43" y="223.5" ></text>
</g>
<g >
<title>__vma_adjust (5 samples, 0.02%)</title><rect x="126.8" y="181" width="0.2" height="15.0" fill="rgb(234,15,31)" rx="2" ry="2" />
<text x="129.77" y="191.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (17 samples, 0.06%)</title><rect x="207.7" y="325" width="0.7" height="15.0" fill="rgb(221,14,52)" rx="2" ry="2" />
<text x="210.73" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (4 samples, 0.01%)</title><rect x="49.6" y="405" width="0.1" height="15.0" fill="rgb(247,61,12)" rx="2" ry="2" />
<text x="52.58" y="415.5" ></text>
</g>
<g >
<title>vm_munmap (30 samples, 0.11%)</title><rect x="107.1" y="261" width="1.3" height="15.0" fill="rgb(239,79,51)" rx="2" ry="2" />
<text x="110.10" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (16 samples, 0.06%)</title><rect x="1145.1" y="357" width="0.7" height="15.0" fill="rgb(254,125,41)" rx="2" ry="2" />
<text x="1148.14" y="367.5" ></text>
</g>
<g >
<title>main (834 samples, 2.96%)</title><rect x="49.9" y="421" width="35.0" height="15.0" fill="rgb(210,162,23)" rx="2" ry="2" />
<text x="52.91" y="431.5" >main</text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (26 samples, 0.09%)</title><rect x="47.3" y="421" width="1.1" height="15.0" fill="rgb(216,203,7)" rx="2" ry="2" />
<text x="50.27" y="431.5" ></text>
</g>
<g >
<title>GOMP_critical_name_start (390 samples, 1.39%)</title><rect x="1037.8" y="357" width="16.4" height="15.0" fill="rgb(216,226,18)" rx="2" ry="2" />
<text x="1040.85" y="367.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (24 samples, 0.09%)</title><rect x="118.0" y="229" width="1.1" height="15.0" fill="rgb(245,198,20)" rx="2" ry="2" />
<text x="121.05" y="239.5" ></text>
</g>
<g >
<title>[libz3.so.4] (18,354 samples, 65.21%)</title><rect x="391.7" y="373" width="769.5" height="15.0" fill="rgb(224,181,0)" rx="2" ry="2" />
<text x="394.71" y="383.5" >[libz3.so.4]</text>
</g>
<g >
<title>_$LT$std..sys..unix..stdio..Stdout$u20$as$u20$std..io..Write$GT$::write::h29e0b83a24fe7495 (3 samples, 0.01%)</title><rect x="1180.1" y="165" width="0.2" height="15.0" fill="rgb(241,42,27)" rx="2" ry="2" />
<text x="1183.15" y="175.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4 samples, 0.01%)</title><rect x="79.3" y="229" width="0.2" height="15.0" fill="rgb(247,15,1)" rx="2" ry="2" />
<text x="82.31" y="239.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.01%)</title><rect x="73.3" y="181" width="0.1" height="15.0" fill="rgb(209,118,43)" rx="2" ry="2" />
<text x="76.31" y="191.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (4 samples, 0.01%)</title><rect x="123.9" y="309" width="0.2" height="15.0" fill="rgb(207,110,0)" rx="2" ry="2" />
<text x="126.92" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (235 samples, 0.83%)</title><rect x="119.1" y="341" width="9.8" height="15.0" fill="rgb(224,117,17)" rx="2" ry="2" />
<text x="122.05" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (54 samples, 0.19%)</title><rect x="303.4" y="341" width="2.2" height="15.0" fill="rgb(227,189,51)" rx="2" ry="2" />
<text x="306.36" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h82a7dc3569650ef1 (39 samples, 0.14%)</title><rect x="97.7" y="389" width="1.6" height="15.0" fill="rgb(224,170,3)" rx="2" ry="2" />
<text x="100.71" y="399.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (5 samples, 0.02%)</title><rect x="364.2" y="405" width="0.3" height="15.0" fill="rgb(233,70,52)" rx="2" ry="2" />
<text x="367.24" y="415.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (82 samples, 0.29%)</title><rect x="1180.3" y="437" width="3.5" height="15.0" fill="rgb(222,77,51)" rx="2" ry="2" />
<text x="1183.31" y="447.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (8 samples, 0.03%)</title><rect x="125.2" y="181" width="0.4" height="15.0" fill="rgb(246,159,39)" rx="2" ry="2" />
<text x="128.22" y="191.5" ></text>
</g>
<g >
<title>inherit_task_group.isra.100.part.101 (6 samples, 0.02%)</title><rect x="1186.6" y="357" width="0.2" height="15.0" fill="rgb(233,91,17)" rx="2" ry="2" />
<text x="1189.56" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::call_indirect::h1d38d2281f406238 (12 samples, 0.04%)</title><rect x="122.6" y="325" width="0.5" height="15.0" fill="rgb(227,2,11)" rx="2" ry="2" />
<text x="125.57" y="335.5" ></text>
</g>
<g >
<title>__GI___sbrk (6 samples, 0.02%)</title><rect x="1087.2" y="293" width="0.2" height="15.0" fill="rgb(206,46,27)" rx="2" ry="2" />
<text x="1090.15" y="303.5" ></text>
</g>
<g >
<title>do_mmap (7 samples, 0.02%)</title><rect x="54.6" y="53" width="0.3" height="15.0" fill="rgb(235,55,31)" rx="2" ry="2" />
<text x="57.61" y="63.5" ></text>
</g>
<g >
<title>change_protection_range (4 samples, 0.01%)</title><rect x="113.1" y="197" width="0.1" height="15.0" fill="rgb(253,1,16)" rx="2" ry="2" />
<text x="116.06" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (11 samples, 0.04%)</title><rect x="46.8" y="341" width="0.5" height="15.0" fill="rgb(247,88,3)" rx="2" ry="2" />
<text x="49.81" y="351.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (5 samples, 0.02%)</title><rect x="55.1" y="181" width="0.2" height="15.0" fill="rgb(250,203,17)" rx="2" ry="2" />
<text x="58.11" y="191.5" ></text>
</g>
<g >
<title>rocinante::parity_wasm_utils::build_module::h3459cb68f5b7661d (143 samples, 0.51%)</title><rect x="76.8" y="261" width="6.0" height="15.0" fill="rgb(214,191,53)" rx="2" ry="2" />
<text x="79.83" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (19 samples, 0.07%)</title><rect x="40.7" y="213" width="0.8" height="15.0" fill="rgb(237,166,38)" rx="2" ry="2" />
<text x="43.73" y="223.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3 samples, 0.01%)</title><rect x="49.5" y="245" width="0.1" height="15.0" fill="rgb(207,38,41)" rx="2" ry="2" />
<text x="52.45" y="255.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_list (4 samples, 0.01%)</title><rect x="107.7" y="133" width="0.2" height="15.0" fill="rgb(213,201,15)" rx="2" ry="2" />
<text x="110.73" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (1,320 samples, 4.69%)</title><rect x="1087.5" y="357" width="55.3" height="15.0" fill="rgb(206,33,11)" rx="2" ry="2" />
<text x="1090.49" y="367.5" >__GI_..</text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h7228d91f2d6ded07 (5 samples, 0.02%)</title><rect x="51.3" y="229" width="0.2" height="15.0" fill="rgb(208,83,35)" rx="2" ry="2" />
<text x="54.34" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (31 samples, 0.11%)</title><rect x="338.8" y="389" width="1.3" height="15.0" fill="rgb(236,102,12)" rx="2" ry="2" />
<text x="341.84" y="399.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (26 samples, 0.09%)</title><rect x="47.3" y="373" width="1.1" height="15.0" fill="rgb(215,95,52)" rx="2" ry="2" />
<text x="50.27" y="383.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::build::h43b3778966365e6f (42 samples, 0.15%)</title><rect x="322.9" y="405" width="1.7" height="15.0" fill="rgb(251,16,32)" rx="2" ry="2" />
<text x="325.86" y="415.5" ></text>
</g>
<g >
<title>_ZN19wasmer_clif_backend6signal4unix19signal_trap_handler17ha55e59a207213c20E.llvm.3171045979873438245 (4 samples, 0.01%)</title><rect x="10.2" y="437" width="0.2" height="15.0" fill="rgb(224,5,8)" rx="2" ry="2" />
<text x="13.21" y="447.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (11 samples, 0.04%)</title><rect x="82.8" y="245" width="0.5" height="15.0" fill="rgb(225,222,13)" rx="2" ry="2" />
<text x="85.83" y="255.5" ></text>
</g>
<g >
<title>_int_free (22 samples, 0.08%)</title><rect x="259.8" y="341" width="1.0" height="15.0" fill="rgb(230,121,23)" rx="2" ry="2" />
<text x="262.84" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand::hc4ef15636e9956ca (4 samples, 0.01%)</title><rect x="29.6" y="165" width="0.2" height="15.0" fill="rgb(237,1,15)" rx="2" ry="2" />
<text x="32.62" y="175.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::initialize::h647245500dff39f8 (5 samples, 0.02%)</title><rect x="207.3" y="325" width="0.2" height="15.0" fill="rgb(252,108,13)" rx="2" ry="2" />
<text x="210.31" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (20 samples, 0.07%)</title><rect x="249.8" y="357" width="0.9" height="15.0" fill="rgb(232,215,44)" rx="2" ry="2" />
<text x="252.82" y="367.5" ></text>
</g>
<g >
<title>unmap_single_vma (3 samples, 0.01%)</title><rect x="108.0" y="197" width="0.2" height="15.0" fill="rgb(214,24,50)" rx="2" ry="2" />
<text x="111.03" y="207.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_file_header::h1f914f45bc503d90 (7 samples, 0.02%)</title><rect x="147.0" y="309" width="0.3" height="15.0" fill="rgb(205,180,7)" rx="2" ry="2" />
<text x="150.02" y="319.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::field::hfe273cdc0de5f043 (51 samples, 0.18%)</title><rect x="338.3" y="405" width="2.2" height="15.0" fill="rgb(241,95,45)" rx="2" ry="2" />
<text x="341.33" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (17 samples, 0.06%)</title><rect x="81.9" y="213" width="0.7" height="15.0" fill="rgb(223,177,29)" rx="2" ry="2" />
<text x="84.91" y="223.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (3 samples, 0.01%)</title><rect x="57.5" y="133" width="0.2" height="15.0" fill="rgb(217,35,13)" rx="2" ry="2" />
<text x="60.55" y="143.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..FunctionCodeGenerator$LT$wasmer_clif_backend..code..CodegenError$GT$$GT$::feed_event::h6774bb08dca735f8 (3 samples, 0.01%)</title><rect x="214.6" y="325" width="0.2" height="15.0" fill="rgb(208,67,29)" rx="2" ry="2" />
<text x="217.65" y="335.5" ></text>
</g>
<g >
<title>do_syscall_64 (6 samples, 0.02%)</title><rect x="1087.2" y="245" width="0.2" height="15.0" fill="rgb(213,98,36)" rx="2" ry="2" />
<text x="1090.15" y="255.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..Section$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h99e337bc9a43ca35 (207 samples, 0.74%)</title><rect x="67.7" y="229" width="8.7" height="15.0" fill="rgb(235,221,44)" rx="2" ry="2" />
<text x="70.69" y="239.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (11 samples, 0.04%)</title><rect x="128.9" y="341" width="0.5" height="15.0" fill="rgb(228,87,3)" rx="2" ry="2" />
<text x="131.91" y="351.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 (27 samples, 0.10%)</title><rect x="1184.6" y="405" width="1.2" height="15.0" fill="rgb(215,160,37)" rx="2" ry="2" />
<text x="1187.63" y="415.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (4 samples, 0.01%)</title><rect x="59.6" y="133" width="0.2" height="15.0" fill="rgb(213,89,22)" rx="2" ry="2" />
<text x="62.60" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (5 samples, 0.02%)</title><rect x="20.9" y="293" width="0.3" height="15.0" fill="rgb(248,209,26)" rx="2" ry="2" />
<text x="23.94" y="303.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (33 samples, 0.12%)</title><rect x="157.3" y="293" width="1.4" height="15.0" fill="rgb(210,110,34)" rx="2" ry="2" />
<text x="160.29" y="303.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (5 samples, 0.02%)</title><rect x="205.3" y="325" width="0.2" height="15.0" fill="rgb(251,82,12)" rx="2" ry="2" />
<text x="208.34" y="335.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (5 samples, 0.02%)</title><rect x="31.2" y="165" width="0.2" height="15.0" fill="rgb(216,32,12)" rx="2" ry="2" />
<text x="34.22" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (3 samples, 0.01%)</title><rect x="124.1" y="309" width="0.1" height="15.0" fill="rgb(234,174,44)" rx="2" ry="2" />
<text x="127.08" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (51 samples, 0.18%)</title><rect x="182.4" y="293" width="2.2" height="15.0" fill="rgb(253,116,12)" rx="2" ry="2" />
<text x="185.45" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (7 samples, 0.02%)</title><rect x="47.7" y="309" width="0.3" height="15.0" fill="rgb(240,7,39)" rx="2" ry="2" />
<text x="50.73" y="319.5" ></text>
</g>
<g >
<title>malloc_consolidate (4 samples, 0.01%)</title><rect x="53.6" y="117" width="0.1" height="15.0" fill="rgb(252,52,15)" rx="2" ry="2" />
<text x="56.56" y="127.5" ></text>
</g>
<g >
<title>__rdl_alloc (3 samples, 0.01%)</title><rect x="195.2" y="341" width="0.1" height="15.0" fill="rgb(238,204,25)" rx="2" ry="2" />
<text x="198.19" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (385 samples, 1.37%)</title><rect x="1126.7" y="325" width="16.1" height="15.0" fill="rgb(232,121,5)" rx="2" ry="2" />
<text x="1129.69" y="335.5" ></text>
</g>
<g >
<title>do_exit (6 samples, 0.02%)</title><rect x="1187.6" y="373" width="0.3" height="15.0" fill="rgb(254,3,32)" rx="2" ry="2" />
<text x="1190.61" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (69 samples, 0.25%)</title><rect x="198.6" y="325" width="2.9" height="15.0" fill="rgb(245,43,3)" rx="2" ry="2" />
<text x="201.59" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbfb989f525a2d15c (6 samples, 0.02%)</title><rect x="216.4" y="357" width="0.3" height="15.0" fill="rgb(229,98,36)" rx="2" ry="2" />
<text x="219.41" y="367.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (3 samples, 0.01%)</title><rect x="43.3" y="197" width="0.1" height="15.0" fill="rgb(253,160,26)" rx="2" ry="2" />
<text x="46.29" y="207.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6 samples, 0.02%)</title><rect x="69.9" y="165" width="0.3" height="15.0" fill="rgb(239,35,23)" rx="2" ry="2" />
<text x="72.91" y="175.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (29 samples, 0.10%)</title><rect x="216.7" y="357" width="1.2" height="15.0" fill="rgb(250,106,41)" rx="2" ry="2" />
<text x="219.66" y="367.5" ></text>
</g>
<g >
<title>std::io::buffered::BufWriter$LT$W$GT$::flush_buf::hc63f8190702078e7 (3 samples, 0.01%)</title><rect x="1180.1" y="213" width="0.2" height="15.0" fill="rgb(254,21,46)" rx="2" ry="2" />
<text x="1183.15" y="223.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (30 samples, 0.11%)</title><rect x="117.8" y="325" width="1.3" height="15.0" fill="rgb(222,60,50)" rx="2" ry="2" />
<text x="120.79" y="335.5" ></text>
</g>
<g >
<title>_int_free (3 samples, 0.01%)</title><rect x="84.3" y="213" width="0.1" height="15.0" fill="rgb(213,36,19)" rx="2" ry="2" />
<text x="87.30" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (3 samples, 0.01%)</title><rect x="33.0" y="197" width="0.1" height="15.0" fill="rgb(238,63,17)" rx="2" ry="2" />
<text x="36.02" y="207.5" ></text>
</g>
<g >
<title>vm_munmap (3 samples, 0.01%)</title><rect x="52.9" y="101" width="0.2" height="15.0" fill="rgb(236,77,48)" rx="2" ry="2" />
<text x="55.93" y="111.5" ></text>
</g>
<g >
<title>_int_malloc (3 samples, 0.01%)</title><rect x="74.7" y="165" width="0.1" height="15.0" fill="rgb(224,1,3)" rx="2" ry="2" />
<text x="77.65" y="175.5" ></text>
</g>
<g >
<title>perf_iterate_sb (14 samples, 0.05%)</title><rect x="128.1" y="165" width="0.6" height="15.0" fill="rgb(253,27,35)" rx="2" ry="2" />
<text x="131.11" y="175.5" ></text>
</g>
<g >
<title>unmap_region (9 samples, 0.03%)</title><rect x="108.8" y="261" width="0.4" height="15.0" fill="rgb(231,109,14)" rx="2" ry="2" />
<text x="111.78" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (36 samples, 0.13%)</title><rect x="183.1" y="277" width="1.5" height="15.0" fill="rgb(210,66,1)" rx="2" ry="2" />
<text x="186.08" y="287.5" ></text>
</g>
<g >
<title>__handle_mm_fault (8 samples, 0.03%)</title><rect x="1086.7" y="261" width="0.3" height="15.0" fill="rgb(247,24,27)" rx="2" ry="2" />
<text x="1089.69" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::union::ha7e897024c5fb158 (12 samples, 0.04%)</title><rect x="37.9" y="213" width="0.5" height="15.0" fill="rgb(226,20,49)" rx="2" ry="2" />
<text x="40.92" y="223.5" ></text>
</g>
<g >
<title>_$LT$$RF$mut$u20$cranelift_codegen..cursor..EncCursor$u20$as$u20$cranelift_codegen..ir..builder..InstInserterBase$GT$::insert_built_inst::hbf5c6b2278487fe8 (7 samples, 0.02%)</title><rect x="1184.8" y="293" width="0.3" height="15.0" fill="rgb(222,168,1)" rx="2" ry="2" />
<text x="1187.80" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (14 samples, 0.05%)</title><rect x="73.5" y="165" width="0.6" height="15.0" fill="rgb(238,121,19)" rx="2" ry="2" />
<text x="76.52" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (3 samples, 0.01%)</title><rect x="39.9" y="213" width="0.1" height="15.0" fill="rgb(205,176,41)" rx="2" ry="2" />
<text x="42.89" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (53 samples, 0.19%)</title><rect x="42.2" y="229" width="2.2" height="15.0" fill="rgb(230,115,29)" rx="2" ry="2" />
<text x="45.16" y="239.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h133039c7e5ab2b87 (28 samples, 0.10%)</title><rect x="95.0" y="357" width="1.2" height="15.0" fill="rgb(252,34,50)" rx="2" ry="2" />
<text x="97.99" y="367.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h0c810357b190d293 (4 samples, 0.01%)</title><rect x="18.1" y="277" width="0.1" height="15.0" fill="rgb(225,78,6)" rx="2" ry="2" />
<text x="21.05" y="287.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (560 samples, 1.99%)</title><rect x="23.8" y="389" width="23.5" height="15.0" fill="rgb(210,131,4)" rx="2" ry="2" />
<text x="26.79" y="399.5" >_..</text>
</g>
<g >
<title>_$LT$std..io..Write..write_fmt..Adaptor$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$::write_str::h263885834cec872a (4 samples, 0.01%)</title><rect x="1180.1" y="309" width="0.2" height="15.0" fill="rgb(229,4,24)" rx="2" ry="2" />
<text x="1183.15" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4 samples, 0.01%)</title><rect x="54.4" y="133" width="0.2" height="15.0" fill="rgb(207,161,49)" rx="2" ry="2" />
<text x="57.40" y="143.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (5 samples, 0.02%)</title><rect x="82.9" y="229" width="0.2" height="15.0" fill="rgb(234,19,51)" rx="2" ry="2" />
<text x="85.87" y="239.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h91ab9e9284da52ab (3 samples, 0.01%)</title><rect x="174.4" y="325" width="0.2" height="15.0" fill="rgb(237,13,25)" rx="2" ry="2" />
<text x="177.44" y="335.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (10 samples, 0.04%)</title><rect x="63.3" y="181" width="0.4" height="15.0" fill="rgb(223,84,9)" rx="2" ry="2" />
<text x="66.29" y="191.5" ></text>
</g>
<g >
<title>page_fault (23 samples, 0.08%)</title><rect x="115.0" y="309" width="1.0" height="15.0" fill="rgb(233,178,9)" rx="2" ry="2" />
<text x="118.03" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (9 samples, 0.03%)</title><rect x="84.3" y="245" width="0.3" height="15.0" fill="rgb(212,115,30)" rx="2" ry="2" />
<text x="87.25" y="255.5" ></text>
</g>
<g >
<title>__schedule (3 samples, 0.01%)</title><rect x="49.5" y="181" width="0.1" height="15.0" fill="rgb(249,178,13)" rx="2" ry="2" />
<text x="52.45" y="191.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_equiv_local_idx::h095449e04ed3aa2c (5 samples, 0.02%)</title><rect x="1173.7" y="405" width="0.2" height="15.0" fill="rgb(222,125,6)" rx="2" ry="2" />
<text x="1176.69" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.02%)</title><rect x="70.0" y="149" width="0.2" height="15.0" fill="rgb(236,156,3)" rx="2" ry="2" />
<text x="72.96" y="159.5" ></text>
</g>
<g >
<title>_int_free (14 samples, 0.05%)</title><rect x="342.6" y="373" width="0.6" height="15.0" fill="rgb(239,180,52)" rx="2" ry="2" />
<text x="345.61" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (27 samples, 0.10%)</title><rect x="218.0" y="405" width="1.1" height="15.0" fill="rgb(233,88,5)" rx="2" ry="2" />
<text x="220.96" y="415.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::invoke::hf0f11602db5710f7 (5 samples, 0.02%)</title><rect x="65.6" y="181" width="0.2" height="15.0" fill="rgb(241,37,33)" rx="2" ry="2" />
<text x="68.64" y="191.5" ></text>
</g>
<g >
<title>__memset_sse2 (3 samples, 0.01%)</title><rect x="112.6" y="309" width="0.1" height="15.0" fill="rgb(213,208,44)" rx="2" ry="2" />
<text x="115.60" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::thread::Thread::new::thread_start::h61c012ef60f933c0 (25 samples, 0.09%)</title><rect x="48.5" y="421" width="1.1" height="15.0" fill="rgb(212,5,2)" rx="2" ry="2" />
<text x="51.53" y="431.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (834 samples, 2.96%)</title><rect x="49.9" y="357" width="35.0" height="15.0" fill="rgb(216,110,20)" rx="2" ry="2" />
<text x="52.91" y="367.5" >__..</text>
</g>
<g >
<title>rayon_core::current_num_threads::hd153282d6ebc6706 (3 samples, 0.01%)</title><rect x="116.5" y="261" width="0.1" height="15.0" fill="rgb(250,170,34)" rx="2" ry="2" />
<text x="119.50" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (8 samples, 0.03%)</title><rect x="46.8" y="325" width="0.3" height="15.0" fill="rgb(243,222,36)" rx="2" ry="2" />
<text x="49.81" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (38 samples, 0.14%)</title><rect x="32.6" y="229" width="1.6" height="15.0" fill="rgb(240,77,50)" rx="2" ry="2" />
<text x="35.64" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (9 samples, 0.03%)</title><rect x="1086.7" y="277" width="0.4" height="15.0" fill="rgb(247,187,51)" rx="2" ry="2" />
<text x="1089.69" y="287.5" ></text>
</g>
<g >
<title>core::str::run_utf8_validation::hcab5686003e72b95 (10 samples, 0.04%)</title><rect x="158.1" y="245" width="0.4" height="15.0" fill="rgb(229,143,42)" rx="2" ry="2" />
<text x="161.09" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (14 samples, 0.05%)</title><rect x="27.9" y="197" width="0.5" height="15.0" fill="rgb(233,217,36)" rx="2" ry="2" />
<text x="30.86" y="207.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::def_var::h67475927161b24eb (5 samples, 0.02%)</title><rect x="206.8" y="325" width="0.2" height="15.0" fill="rgb(240,76,17)" rx="2" ry="2" />
<text x="209.81" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (390 samples, 1.39%)</title><rect x="1054.3" y="357" width="16.3" height="15.0" fill="rgb(223,202,51)" rx="2" ry="2" />
<text x="1057.28" y="367.5" ></text>
</g>
<g >
<title>malloc_consolidate (16 samples, 0.06%)</title><rect x="368.7" y="325" width="0.7" height="15.0" fill="rgb(210,140,30)" rx="2" ry="2" />
<text x="371.73" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="52.3" y="229" width="0.3" height="15.0" fill="rgb(232,58,19)" rx="2" ry="2" />
<text x="55.35" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (46 samples, 0.16%)</title><rect x="240.0" y="341" width="1.9" height="15.0" fill="rgb(236,87,8)" rx="2" ry="2" />
<text x="243.01" y="351.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (15 samples, 0.05%)</title><rect x="157.9" y="277" width="0.6" height="15.0" fill="rgb(206,99,43)" rx="2" ry="2" />
<text x="160.88" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (5 samples, 0.02%)</title><rect x="62.2" y="117" width="0.2" height="15.0" fill="rgb(253,175,25)" rx="2" ry="2" />
<text x="65.20" y="127.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 (10 samples, 0.04%)</title><rect x="1184.2" y="325" width="0.4" height="15.0" fill="rgb(221,59,48)" rx="2" ry="2" />
<text x="1187.21" y="335.5" ></text>
</g>
<g >
<title>core::str::from_utf8::h5960e424c2aef74c (4 samples, 0.01%)</title><rect x="58.6" y="101" width="0.1" height="15.0" fill="rgb(208,192,32)" rx="2" ry="2" />
<text x="61.55" y="111.5" ></text>
</g>
<g >
<title>page_fault (15 samples, 0.05%)</title><rect x="119.7" y="309" width="0.6" height="15.0" fill="rgb(238,98,10)" rx="2" ry="2" />
<text x="122.68" y="319.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (6 samples, 0.02%)</title><rect x="107.6" y="165" width="0.3" height="15.0" fill="rgb(209,124,36)" rx="2" ry="2" />
<text x="110.65" y="175.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 (30 samples, 0.11%)</title><rect x="47.3" y="437" width="1.2" height="15.0" fill="rgb(219,63,31)" rx="2" ry="2" />
<text x="50.27" y="447.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf895bb87fb92c73b (5 samples, 0.02%)</title><rect x="111.3" y="341" width="0.2" height="15.0" fill="rgb(232,174,3)" rx="2" ry="2" />
<text x="114.30" y="351.5" ></text>
</g>
<g >
<title>mmap_region (17 samples, 0.06%)</title><rect x="118.3" y="197" width="0.7" height="15.0" fill="rgb(233,107,10)" rx="2" ry="2" />
<text x="121.26" y="207.5" ></text>
</g>
<g >
<title>page_fault (10 samples, 0.04%)</title><rect x="1086.6" y="325" width="0.5" height="15.0" fill="rgb(220,51,34)" rx="2" ry="2" />
<text x="1089.65" y="335.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (20 samples, 0.07%)</title><rect x="176.7" y="309" width="0.8" height="15.0" fill="rgb(218,125,49)" rx="2" ry="2" />
<text x="179.66" y="319.5" ></text>
</g>
<g >
<title>do_munmap (14 samples, 0.05%)</title><rect x="108.6" y="277" width="0.6" height="15.0" fill="rgb(217,64,43)" rx="2" ry="2" />
<text x="111.57" y="287.5" ></text>
</g>
<g >
<title>std::io::Write::write_fmt::he673337bbdfa2f51 (4 samples, 0.01%)</title><rect x="1180.1" y="341" width="0.2" height="15.0" fill="rgb(244,202,47)" rx="2" ry="2" />
<text x="1183.15" y="351.5" ></text>
</g>
<g >
<title>get_page_from_freelist (5 samples, 0.02%)</title><rect x="1158.9" y="245" width="0.2" height="15.0" fill="rgb(227,90,29)" rx="2" ry="2" />
<text x="1161.93" y="255.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (3 samples, 0.01%)</title><rect x="1171.3" y="405" width="0.2" height="15.0" fill="rgb(212,141,8)" rx="2" ry="2" />
<text x="1174.34" y="415.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (67 samples, 0.24%)</title><rect x="1176.1" y="389" width="2.8" height="15.0" fill="rgb(218,229,33)" rx="2" ry="2" />
<text x="1179.08" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="41.2" y="165" width="0.1" height="15.0" fill="rgb(252,41,14)" rx="2" ry="2" />
<text x="44.15" y="175.5" ></text>
</g>
<g >
<title>security_vm_enough_memory_mm (5 samples, 0.02%)</title><rect x="126.6" y="213" width="0.2" height="15.0" fill="rgb(220,40,6)" rx="2" ry="2" />
<text x="129.56" y="223.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (27 samples, 0.10%)</title><rect x="95.0" y="245" width="1.2" height="15.0" fill="rgb(207,180,16)" rx="2" ry="2" />
<text x="98.03" y="255.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (7 samples, 0.02%)</title><rect x="117.1" y="181" width="0.3" height="15.0" fill="rgb(225,216,25)" rx="2" ry="2" />
<text x="120.12" y="191.5" ></text>
</g>
<g >
<title>std::thread::local::LocalKey$LT$T$GT$::try_with::ha9cdb3bc516fd703 (5 samples, 0.02%)</title><rect x="1180.1" y="389" width="0.2" height="15.0" fill="rgb(239,171,39)" rx="2" ry="2" />
<text x="1183.11" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (34 samples, 0.12%)</title><rect x="307.2" y="373" width="1.4" height="15.0" fill="rgb(248,168,8)" rx="2" ry="2" />
<text x="310.22" y="383.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (4 samples, 0.01%)</title><rect x="159.3" y="293" width="0.1" height="15.0" fill="rgb(248,69,25)" rx="2" ry="2" />
<text x="162.26" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5 samples, 0.02%)</title><rect x="272.1" y="277" width="0.2" height="15.0" fill="rgb(220,141,25)" rx="2" ry="2" />
<text x="275.13" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (6 samples, 0.02%)</title><rect x="120.9" y="293" width="0.2" height="15.0" fill="rgb(231,39,5)" rx="2" ry="2" />
<text x="123.86" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (4 samples, 0.01%)</title><rect x="54.4" y="117" width="0.2" height="15.0" fill="rgb(233,16,21)" rx="2" ry="2" />
<text x="57.40" y="127.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h296f859ac637ecae (28 samples, 0.10%)</title><rect x="95.0" y="341" width="1.2" height="15.0" fill="rgb(253,170,13)" rx="2" ry="2" />
<text x="97.99" y="351.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 (58 samples, 0.21%)</title><rect x="254.4" y="341" width="2.4" height="15.0" fill="rgb(228,28,8)" rx="2" ry="2" />
<text x="257.39" y="351.5" ></text>
</g>
<g >
<title>try_charge (4 samples, 0.01%)</title><rect x="1159.9" y="261" width="0.2" height="15.0" fill="rgb(246,154,34)" rx="2" ry="2" />
<text x="1162.90" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (23 samples, 0.08%)</title><rect x="282.9" y="309" width="1.0" height="15.0" fill="rgb(238,129,14)" rx="2" ry="2" />
<text x="285.95" y="319.5" ></text>
</g>
<g >
<title>do_page_fault (114 samples, 0.41%)</title><rect x="1156.0" y="341" width="4.8" height="15.0" fill="rgb(244,157,34)" rx="2" ry="2" />
<text x="1159.00" y="351.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (116 samples, 0.41%)</title><rect x="1161.9" y="405" width="4.9" height="15.0" fill="rgb(252,164,49)" rx="2" ry="2" />
<text x="1164.91" y="415.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (3 samples, 0.01%)</title><rect x="26.9" y="197" width="0.1" height="15.0" fill="rgb(215,188,51)" rx="2" ry="2" />
<text x="29.85" y="207.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01f5ef0200a27f82 (7 samples, 0.02%)</title><rect x="90.1" y="357" width="0.3" height="15.0" fill="rgb(246,103,32)" rx="2" ry="2" />
<text x="93.12" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (23 samples, 0.08%)</title><rect x="288.6" y="357" width="1.0" height="15.0" fill="rgb(235,70,4)" rx="2" ry="2" />
<text x="291.65" y="367.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (114 samples, 0.41%)</title><rect x="209.9" y="325" width="4.7" height="15.0" fill="rgb(236,79,40)" rx="2" ry="2" />
<text x="212.87" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_call_abi::hfe91bd1ce81b1bda (5 samples, 0.02%)</title><rect x="15.0" y="277" width="0.2" height="15.0" fill="rgb(220,87,50)" rx="2" ry="2" />
<text x="17.99" y="287.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (13 samples, 0.05%)</title><rect x="59.0" y="117" width="0.6" height="15.0" fill="rgb(230,186,54)" rx="2" ry="2" />
<text x="62.01" y="127.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h365a4956706fb90b (54 samples, 0.19%)</title><rect x="50.3" y="261" width="2.3" height="15.0" fill="rgb(212,34,5)" rx="2" ry="2" />
<text x="53.29" y="271.5" ></text>
</g>
<g >
<title>__split_vma (6 samples, 0.02%)</title><rect x="107.1" y="229" width="0.3" height="15.0" fill="rgb(212,135,37)" rx="2" ry="2" />
<text x="110.15" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="123.0" y="261" width="0.1" height="15.0" fill="rgb(218,77,13)" rx="2" ry="2" />
<text x="125.95" y="271.5" ></text>
</g>
<g >
<title>malloc_printerr (3 samples, 0.01%)</title><rect x="387.2" y="325" width="0.1" height="15.0" fill="rgb(221,17,0)" rx="2" ry="2" />
<text x="390.22" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (6 samples, 0.02%)</title><rect x="44.4" y="229" width="0.2" height="15.0" fill="rgb(228,67,7)" rx="2" ry="2" />
<text x="47.38" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (4 samples, 0.01%)</title><rect x="1185.3" y="325" width="0.1" height="15.0" fill="rgb(249,32,36)" rx="2" ry="2" />
<text x="1188.26" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (3 samples, 0.01%)</title><rect x="46.9" y="309" width="0.2" height="15.0" fill="rgb(242,49,25)" rx="2" ry="2" />
<text x="49.94" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (72 samples, 0.26%)</title><rect x="124.5" y="325" width="3.0" height="15.0" fill="rgb(206,136,13)" rx="2" ry="2" />
<text x="127.46" y="335.5" ></text>
</g>
<g >
<title>inherit_event.isra.98 (6 samples, 0.02%)</title><rect x="1186.6" y="341" width="0.2" height="15.0" fill="rgb(207,215,29)" rx="2" ry="2" />
<text x="1189.56" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (53 samples, 0.19%)</title><rect x="1164.6" y="373" width="2.2" height="15.0" fill="rgb(242,45,52)" rx="2" ry="2" />
<text x="1167.55" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (32 samples, 0.11%)</title><rect x="98.0" y="373" width="1.3" height="15.0" fill="rgb(228,229,8)" rx="2" ry="2" />
<text x="101.01" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (9 samples, 0.03%)</title><rect x="94.1" y="357" width="0.3" height="15.0" fill="rgb(227,88,14)" rx="2" ry="2" />
<text x="97.06" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (3 samples, 0.01%)</title><rect x="68.7" y="165" width="0.1" height="15.0" fill="rgb(223,58,26)" rx="2" ry="2" />
<text x="71.66" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_free (16 samples, 0.06%)</title><rect x="254.9" y="325" width="0.7" height="15.0" fill="rgb(215,160,25)" rx="2" ry="2" />
<text x="257.94" y="335.5" ></text>
</g>
<g >
<title>vma_merge (8 samples, 0.03%)</title><rect x="113.7" y="213" width="0.4" height="15.0" fill="rgb(230,178,12)" rx="2" ry="2" />
<text x="116.73" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (4 samples, 0.01%)</title><rect x="1186.0" y="309" width="0.1" height="15.0" fill="rgb(221,8,32)" rx="2" ry="2" />
<text x="1188.97" y="319.5" ></text>
</g>
<g >
<title>_ZN3std9panicking3try7do_call17h7b956e322363fb07E.llvm.15827231380573383134 (25 samples, 0.09%)</title><rect x="48.5" y="325" width="1.1" height="15.0" fill="rgb(222,20,44)" rx="2" ry="2" />
<text x="51.53" y="335.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="291.3" y="373" width="0.1" height="15.0" fill="rgb(247,13,54)" rx="2" ry="2" />
<text x="294.29" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3 samples, 0.01%)</title><rect x="1182.7" y="277" width="0.1" height="15.0" fill="rgb(231,55,10)" rx="2" ry="2" />
<text x="1185.66" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (107 samples, 0.38%)</title><rect x="1166.8" y="405" width="4.5" height="15.0" fill="rgb(242,94,2)" rx="2" ry="2" />
<text x="1169.77" y="415.5" ></text>
</g>
<g >
<title>__lock_text_start (5 samples, 0.02%)</title><rect x="1159.4" y="229" width="0.2" height="15.0" fill="rgb(241,210,4)" rx="2" ry="2" />
<text x="1162.35" y="239.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (12 samples, 0.04%)</title><rect x="204.8" y="309" width="0.5" height="15.0" fill="rgb(234,176,38)" rx="2" ry="2" />
<text x="207.79" y="319.5" ></text>
</g>
<g >
<title>__do_page_fault (5 samples, 0.02%)</title><rect x="1145.6" y="309" width="0.2" height="15.0" fill="rgb(221,152,16)" rx="2" ry="2" />
<text x="1148.60" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (3 samples, 0.01%)</title><rect x="1180.1" y="101" width="0.2" height="15.0" fill="rgb(219,68,18)" rx="2" ry="2" />
<text x="1183.15" y="111.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (7 samples, 0.02%)</title><rect x="120.4" y="309" width="0.3" height="15.0" fill="rgb(245,179,26)" rx="2" ry="2" />
<text x="123.44" y="319.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (5 samples, 0.02%)</title><rect x="58.5" y="117" width="0.2" height="15.0" fill="rgb(231,197,28)" rx="2" ry="2" />
<text x="61.51" y="127.5" ></text>
</g>
<g >
<title>__rdl_realloc (6 samples, 0.02%)</title><rect x="363.6" y="373" width="0.3" height="15.0" fill="rgb(212,126,21)" rx="2" ry="2" />
<text x="366.61" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (34 samples, 0.12%)</title><rect x="238.3" y="357" width="1.4" height="15.0" fill="rgb(211,203,34)" rx="2" ry="2" />
<text x="241.29" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_sb (7 samples, 0.02%)</title><rect x="117.1" y="197" width="0.3" height="15.0" fill="rgb(207,129,5)" rx="2" ry="2" />
<text x="120.12" y="207.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 (560 samples, 1.99%)</title><rect x="23.8" y="373" width="23.5" height="15.0" fill="rgb(242,173,19)" rx="2" ry="2" />
<text x="26.79" y="383.5" >_..</text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h0234124bad11f8db (12 samples, 0.04%)</title><rect x="50.5" y="213" width="0.5" height="15.0" fill="rgb(242,1,9)" rx="2" ry="2" />
<text x="53.50" y="223.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (5 samples, 0.02%)</title><rect x="59.6" y="149" width="0.2" height="15.0" fill="rgb(219,215,50)" rx="2" ry="2" />
<text x="62.56" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (3 samples, 0.01%)</title><rect x="1185.8" y="261" width="0.2" height="15.0" fill="rgb(246,205,48)" rx="2" ry="2" />
<text x="1188.85" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (37 samples, 0.13%)</title><rect x="106.9" y="373" width="1.5" height="15.0" fill="rgb(239,5,29)" rx="2" ry="2" />
<text x="109.89" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (8 samples, 0.03%)</title><rect x="65.5" y="213" width="0.3" height="15.0" fill="rgb(240,50,17)" rx="2" ry="2" />
<text x="68.51" y="223.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (6 samples, 0.02%)</title><rect x="108.8" y="213" width="0.3" height="15.0" fill="rgb(252,70,38)" rx="2" ry="2" />
<text x="111.82" y="223.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..Type$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1038c9c3f65f373e (22 samples, 0.08%)</title><rect x="69.7" y="197" width="0.9" height="15.0" fill="rgb(214,66,46)" rx="2" ry="2" />
<text x="72.70" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (3 samples, 0.01%)</title><rect x="22.7" y="277" width="0.2" height="15.0" fill="rgb(241,142,36)" rx="2" ry="2" />
<text x="25.75" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (3 samples, 0.01%)</title><rect x="40.3" y="213" width="0.1" height="15.0" fill="rgb(249,33,20)" rx="2" ry="2" />
<text x="43.27" y="223.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (17 samples, 0.06%)</title><rect x="117.0" y="245" width="0.7" height="15.0" fill="rgb(215,166,10)" rx="2" ry="2" />
<text x="120.00" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (10 samples, 0.04%)</title><rect x="63.3" y="165" width="0.4" height="15.0" fill="rgb(237,131,32)" rx="2" ry="2" />
<text x="66.29" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (3 samples, 0.01%)</title><rect x="31.3" y="149" width="0.1" height="15.0" fill="rgb(239,161,0)" rx="2" ry="2" />
<text x="34.30" y="159.5" ></text>
</g>
<g >
<title>operator new(unsigned long, std::nothrow_t const&amp;) (125 samples, 0.44%)</title><rect x="1150.8" y="357" width="5.2" height="15.0" fill="rgb(254,175,49)" rx="2" ry="2" />
<text x="1153.76" y="367.5" ></text>
</g>
<g >
<title>change_protection (4 samples, 0.01%)</title><rect x="113.1" y="213" width="0.1" height="15.0" fill="rgb(223,96,4)" rx="2" ry="2" />
<text x="116.06" y="223.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (28 samples, 0.10%)</title><rect x="127.6" y="245" width="1.2" height="15.0" fill="rgb(236,118,23)" rx="2" ry="2" />
<text x="130.65" y="255.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (6 samples, 0.02%)</title><rect x="1189.6" y="389" width="0.3" height="15.0" fill="rgb(206,65,33)" rx="2" ry="2" />
<text x="1192.62" y="399.5" ></text>
</g>
<g >
<title>__clone (7 samples, 0.02%)</title><rect x="1186.5" y="469" width="0.3" height="15.0" fill="rgb(239,149,27)" rx="2" ry="2" />
<text x="1189.52" y="479.5" ></text>
</g>
<g >
<title>do_signal (6 samples, 0.02%)</title><rect x="1187.6" y="421" width="0.3" height="15.0" fill="rgb(249,92,11)" rx="2" ry="2" />
<text x="1190.61" y="431.5" ></text>
</g>
<g >
<title>_int_free (19 samples, 0.07%)</title><rect x="332.0" y="373" width="0.8" height="15.0" fill="rgb(254,178,32)" rx="2" ry="2" />
<text x="335.04" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (4 samples, 0.01%)</title><rect x="65.8" y="229" width="0.2" height="15.0" fill="rgb(225,34,11)" rx="2" ry="2" />
<text x="68.85" y="239.5" ></text>
</g>
<g >
<title>parity_wasm::elements::module::Module::to_bytes::hf7eaeb7e90803675 (223 samples, 0.79%)</title><rect x="67.5" y="261" width="9.3" height="15.0" fill="rgb(242,199,46)" rx="2" ry="2" />
<text x="70.48" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (29 samples, 0.10%)</title><rect x="155.4" y="293" width="1.3" height="15.0" fill="rgb(231,74,14)" rx="2" ry="2" />
<text x="158.45" y="303.5" ></text>
</g>
<g >
<title>__do_page_fault (23 samples, 0.08%)</title><rect x="1141.8" y="277" width="1.0" height="15.0" fill="rgb(217,102,10)" rx="2" ry="2" />
<text x="1144.83" y="287.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (34 samples, 0.12%)</title><rect x="106.9" y="341" width="1.5" height="15.0" fill="rgb(228,39,46)" rx="2" ry="2" />
<text x="109.94" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (3 samples, 0.01%)</title><rect x="218.1" y="373" width="0.2" height="15.0" fill="rgb(240,197,28)" rx="2" ry="2" />
<text x="221.13" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (15 samples, 0.05%)</title><rect x="75.7" y="197" width="0.6" height="15.0" fill="rgb(249,155,24)" rx="2" ry="2" />
<text x="78.70" y="207.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (4 samples, 0.01%)</title><rect x="49.6" y="341" width="0.1" height="15.0" fill="rgb(247,86,6)" rx="2" ry="2" />
<text x="52.58" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (4 samples, 0.01%)</title><rect x="18.9" y="325" width="0.2" height="15.0" fill="rgb(251,216,6)" rx="2" ry="2" />
<text x="21.93" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (13 samples, 0.05%)</title><rect x="1181.6" y="277" width="0.6" height="15.0" fill="rgb(250,170,24)" rx="2" ry="2" />
<text x="1184.61" y="287.5" ></text>
</g>
<g >
<title>__lock_text_start (3 samples, 0.01%)</title><rect x="10.7" y="357" width="0.1" height="15.0" fill="rgb(239,46,32)" rx="2" ry="2" />
<text x="13.71" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (15 samples, 0.05%)</title><rect x="1181.5" y="309" width="0.7" height="15.0" fill="rgb(247,78,6)" rx="2" ry="2" />
<text x="1184.53" y="319.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (7 samples, 0.02%)</title><rect x="54.6" y="85" width="0.3" height="15.0" fill="rgb(206,38,4)" rx="2" ry="2" />
<text x="57.61" y="95.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 (82 samples, 0.29%)</title><rect x="1180.3" y="389" width="3.5" height="15.0" fill="rgb(216,2,28)" rx="2" ry="2" />
<text x="1183.31" y="399.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (117 samples, 0.42%)</title><rect x="114.1" y="341" width="5.0" height="15.0" fill="rgb(253,59,52)" rx="2" ry="2" />
<text x="117.15" y="351.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment