Skip to content

Instantly share code, notes, and snippets.

@taegyunkim
Last active February 17, 2020 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save taegyunkim/794fe129ce07b66205d77a5957388a6b to your computer and use it in GitHub Desktop.
Save taegyunkim/794fe129ce07b66205d77a5957388a6b 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="646" onload="init(evt)" viewBox="0 0 1200 646" 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="646.0" fill="url(#background)" />
<text id="title" x="600.00" y="24" >Flame Graph</text>
<text id="details" x="10.00" y="629" > </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="629" > </text>
<g id="frames">
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (75 samples, 0.01%)</title><rect x="39.4" y="389" width="0.1" height="15.0" fill="rgb(231,217,25)" rx="2" ry="2" />
<text x="42.38" y="399.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (726 samples, 0.11%)</title><rect x="843.3" y="293" width="1.3" height="15.0" fill="rgb(238,201,29)" rx="2" ry="2" />
<text x="846.34" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h4e692177cbad22c9 (158 samples, 0.02%)</title><rect x="504.7" y="277" width="0.2" height="15.0" fill="rgb(216,28,37)" rx="2" ry="2" />
<text x="507.67" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (93 samples, 0.01%)</title><rect x="1174.7" y="469" width="0.1" height="15.0" fill="rgb(243,98,22)" rx="2" ry="2" />
<text x="1177.66" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (146 samples, 0.02%)</title><rect x="16.8" y="309" width="0.3" height="15.0" fill="rgb(205,87,19)" rx="2" ry="2" />
<text x="19.83" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (2,185 samples, 0.32%)</title><rect x="172.2" y="293" width="3.7" height="15.0" fill="rgb(208,147,15)" rx="2" ry="2" />
<text x="175.20" y="303.5" ></text>
</g>
<g >
<title>_int_free (1,654 samples, 0.24%)</title><rect x="633.9" y="245" width="2.8" height="15.0" fill="rgb(213,188,8)" rx="2" ry="2" />
<text x="636.90" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (116 samples, 0.02%)</title><rect x="69.2" y="309" width="0.2" height="15.0" fill="rgb(250,174,10)" rx="2" ry="2" />
<text x="72.25" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (135 samples, 0.02%)</title><rect x="164.4" y="309" width="0.2" height="15.0" fill="rgb(224,156,10)" rx="2" ry="2" />
<text x="167.39" y="319.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (483 samples, 0.07%)</title><rect x="197.4" y="117" width="0.8" height="15.0" fill="rgb(220,134,10)" rx="2" ry="2" />
<text x="200.36" y="127.5" ></text>
</g>
<g >
<title>do_divide_error (352 samples, 0.05%)</title><rect x="11.1" y="533" width="0.6" height="15.0" fill="rgb(233,193,54)" rx="2" ry="2" />
<text x="14.05" y="543.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (239 samples, 0.03%)</title><rect x="33.7" y="373" width="0.4" height="15.0" fill="rgb(217,146,50)" rx="2" ry="2" />
<text x="36.66" y="383.5" ></text>
</g>
<g >
<title>_int_free (1,628 samples, 0.24%)</title><rect x="783.3" y="277" width="2.8" height="15.0" fill="rgb(223,3,41)" rx="2" ry="2" />
<text x="786.29" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (701 samples, 0.10%)</title><rect x="52.6" y="293" width="1.2" height="15.0" fill="rgb(243,181,28)" rx="2" ry="2" />
<text x="55.61" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::pre_cmp_def::h23e7b9b8ee537cad (96 samples, 0.01%)</title><rect x="1177.2" y="309" width="0.2" height="15.0" fill="rgb(240,203,8)" rx="2" ry="2" />
<text x="1180.20" y="319.5" ></text>
</g>
<g >
<title>__memset_avx2 (223 samples, 0.03%)</title><rect x="410.1" y="213" width="0.4" height="15.0" fill="rgb(216,103,15)" rx="2" ry="2" />
<text x="413.15" y="223.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (163 samples, 0.02%)</title><rect x="1174.4" y="549" width="0.3" height="15.0" fill="rgb(235,143,10)" rx="2" ry="2" />
<text x="1177.38" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (139 samples, 0.02%)</title><rect x="54.0" y="261" width="0.3" height="15.0" fill="rgb(222,84,8)" rx="2" ry="2" />
<text x="57.05" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (79 samples, 0.01%)</title><rect x="49.1" y="293" width="0.2" height="15.0" fill="rgb(238,9,31)" rx="2" ry="2" />
<text x="52.13" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (62 samples, 0.01%)</title><rect x="73.1" y="277" width="0.1" height="15.0" fill="rgb(226,90,50)" rx="2" ry="2" />
<text x="76.06" y="287.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (143 samples, 0.02%)</title><rect x="23.0" y="389" width="0.2" height="15.0" fill="rgb(237,147,35)" rx="2" ry="2" />
<text x="25.98" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (60 samples, 0.01%)</title><rect x="25.9" y="373" width="0.1" height="15.0" fill="rgb(217,109,40)" rx="2" ry="2" />
<text x="28.85" y="383.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 (2,541 samples, 0.37%)</title><rect x="106.4" y="501" width="4.3" height="15.0" fill="rgb(224,176,30)" rx="2" ry="2" />
<text x="109.38" y="511.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (107 samples, 0.02%)</title><rect x="70.4" y="309" width="0.2" height="15.0" fill="rgb(242,173,53)" rx="2" ry="2" />
<text x="73.39" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (1,284 samples, 0.19%)</title><rect x="213.2" y="229" width="2.2" height="15.0" fill="rgb(228,106,0)" rx="2" ry="2" />
<text x="216.18" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (671 samples, 0.10%)</title><rect x="105.0" y="421" width="1.2" height="15.0" fill="rgb(205,91,53)" rx="2" ry="2" />
<text x="108.01" y="431.5" ></text>
</g>
<g >
<title>_int_realloc (109 samples, 0.02%)</title><rect x="1180.4" y="341" width="0.2" height="15.0" fill="rgb(237,83,32)" rx="2" ry="2" />
<text x="1183.43" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (182 samples, 0.03%)</title><rect x="105.8" y="405" width="0.4" height="15.0" fill="rgb(219,188,17)" rx="2" ry="2" />
<text x="108.85" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (304 samples, 0.04%)</title><rect x="51.4" y="277" width="0.6" height="15.0" fill="rgb(207,30,35)" rx="2" ry="2" />
<text x="54.43" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (64 samples, 0.01%)</title><rect x="50.3" y="293" width="0.2" height="15.0" fill="rgb(217,226,33)" rx="2" ry="2" />
<text x="53.35" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (73 samples, 0.01%)</title><rect x="84.3" y="309" width="0.1" height="15.0" fill="rgb(250,227,38)" rx="2" ry="2" />
<text x="87.26" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (1,116 samples, 0.16%)</title><rect x="53.8" y="293" width="1.9" height="15.0" fill="rgb(248,106,0)" rx="2" ry="2" />
<text x="56.81" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (85 samples, 0.01%)</title><rect x="59.6" y="245" width="0.1" height="15.0" fill="rgb(209,112,28)" rx="2" ry="2" />
<text x="62.60" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (130 samples, 0.02%)</title><rect x="1182.2" y="421" width="0.2" height="15.0" fill="rgb(222,210,54)" rx="2" ry="2" />
<text x="1185.20" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (74 samples, 0.01%)</title><rect x="1182.2" y="373" width="0.1" height="15.0" fill="rgb(210,154,39)" rx="2" ry="2" />
<text x="1185.20" y="383.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (16,049 samples, 2.33%)</title><rect x="12.2" y="549" width="27.4" height="15.0" fill="rgb(250,171,40)" rx="2" ry="2" />
<text x="15.17" y="559.5" >_..</text>
</g>
<g >
<title>arch_tlb_finish_mmu (591 samples, 0.09%)</title><rect x="201.1" y="165" width="1.0" height="15.0" fill="rgb(229,132,7)" rx="2" ry="2" />
<text x="204.07" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (185 samples, 0.03%)</title><rect x="1167.7" y="357" width="0.3" height="15.0" fill="rgb(230,60,41)" rx="2" ry="2" />
<text x="1170.70" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (82 samples, 0.01%)</title><rect x="1161.8" y="389" width="0.1" height="15.0" fill="rgb(248,0,43)" rx="2" ry="2" />
<text x="1164.78" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (1,161 samples, 0.17%)</title><rect x="789.7" y="261" width="2.0" height="15.0" fill="rgb(244,216,3)" rx="2" ry="2" />
<text x="792.73" y="271.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_type::h8a44a0e8de646649 (919 samples, 0.13%)</title><rect x="312.0" y="229" width="1.6" height="15.0" fill="rgb(244,188,9)" rx="2" ry="2" />
<text x="315.05" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (283 samples, 0.04%)</title><rect x="105.3" y="389" width="0.5" height="15.0" fill="rgb(242,6,23)" rx="2" ry="2" />
<text x="108.35" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (117 samples, 0.02%)</title><rect x="631.6" y="245" width="0.2" height="15.0" fill="rgb(254,81,4)" rx="2" ry="2" />
<text x="634.61" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (119 samples, 0.02%)</title><rect x="15.0" y="373" width="0.2" height="15.0" fill="rgb(213,2,18)" rx="2" ry="2" />
<text x="17.96" y="383.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (982 samples, 0.14%)</title><rect x="234.3" y="85" width="1.6" height="15.0" fill="rgb(210,32,54)" rx="2" ry="2" />
<text x="237.26" y="95.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (116 samples, 0.02%)</title><rect x="104.7" y="341" width="0.2" height="15.0" fill="rgb(238,115,39)" rx="2" ry="2" />
<text x="107.66" y="351.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (216 samples, 0.03%)</title><rect x="29.9" y="357" width="0.3" height="15.0" fill="rgb(207,55,48)" rx="2" ry="2" />
<text x="32.87" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (117 samples, 0.02%)</title><rect x="1184.2" y="405" width="0.2" height="15.0" fill="rgb(231,196,9)" rx="2" ry="2" />
<text x="1187.18" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (1,186 samples, 0.17%)</title><rect x="805.5" y="261" width="2.1" height="15.0" fill="rgb(205,115,54)" rx="2" ry="2" />
<text x="808.53" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3,240 samples, 0.47%)</title><rect x="786.4" y="293" width="5.5" height="15.0" fill="rgb(236,67,47)" rx="2" ry="2" />
<text x="789.38" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen_shared::constant_hash::simple_hash::h522b288b2afb6d20 (106 samples, 0.02%)</title><rect x="1145.1" y="373" width="0.2" height="15.0" fill="rgb(216,125,29)" rx="2" ry="2" />
<text x="1148.10" y="383.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (168 samples, 0.02%)</title><rect x="1163.0" y="357" width="0.3" height="15.0" fill="rgb(225,28,5)" rx="2" ry="2" />
<text x="1165.98" y="367.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (78 samples, 0.01%)</title><rect x="527.2" y="277" width="0.1" height="15.0" fill="rgb(246,126,21)" rx="2" ry="2" />
<text x="530.17" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (127 samples, 0.02%)</title><rect x="388.2" y="245" width="0.3" height="15.0" fill="rgb(240,126,24)" rx="2" ry="2" />
<text x="391.24" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (182 samples, 0.03%)</title><rect x="90.3" y="261" width="0.3" height="15.0" fill="rgb(221,0,49)" rx="2" ry="2" />
<text x="93.25" y="271.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h1ce3360cecae11fd (220 samples, 0.03%)</title><rect x="298.1" y="245" width="0.4" height="15.0" fill="rgb(213,13,13)" rx="2" ry="2" />
<text x="301.14" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (162 samples, 0.02%)</title><rect x="53.5" y="261" width="0.3" height="15.0" fill="rgb(242,44,40)" rx="2" ry="2" />
<text x="56.53" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,969 samples, 0.29%)</title><rect x="647.6" y="293" width="3.4" height="15.0" fill="rgb(208,188,44)" rx="2" ry="2" />
<text x="650.61" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (409 samples, 0.06%)</title><rect x="53.1" y="277" width="0.7" height="15.0" fill="rgb(209,149,40)" rx="2" ry="2" />
<text x="56.11" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (91 samples, 0.01%)</title><rect x="62.7" y="309" width="0.2" height="15.0" fill="rgb(226,162,34)" rx="2" ry="2" />
<text x="65.70" y="319.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::h698d2ed12909e0bd (82 samples, 0.01%)</title><rect x="496.8" y="277" width="0.1" height="15.0" fill="rgb(217,136,17)" rx="2" ry="2" />
<text x="499.80" y="287.5" ></text>
</g>
<g >
<title>do_trap (97 samples, 0.01%)</title><rect x="11.5" y="485" width="0.1" height="15.0" fill="rgb(243,178,8)" rx="2" ry="2" />
<text x="14.48" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (216 samples, 0.03%)</title><rect x="525.7" y="213" width="0.4" height="15.0" fill="rgb(224,218,24)" rx="2" ry="2" />
<text x="528.74" y="223.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (1,883 samples, 0.27%)</title><rect x="46.5" y="341" width="3.2" height="15.0" fill="rgb(213,136,7)" rx="2" ry="2" />
<text x="49.49" y="351.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (335 samples, 0.05%)</title><rect x="1123.1" y="293" width="0.6" height="15.0" fill="rgb(253,196,6)" rx="2" ry="2" />
<text x="1126.10" y="303.5" ></text>
</g>
<g >
<title>wasmparser::readers::export_section::ExportSectionReader::read::h3ee6d1ee74ae2753 (2,839 samples, 0.41%)</title><rect x="330.3" y="229" width="4.9" height="15.0" fill="rgb(219,152,16)" rx="2" ry="2" />
<text x="333.33" y="239.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h98f9fd73d14fd071 (6,510 samples, 0.94%)</title><rect x="473.3" y="277" width="11.1" height="15.0" fill="rgb(208,148,43)" rx="2" ry="2" />
<text x="476.27" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01f5ef0200a27f82 (772 samples, 0.11%)</title><rect x="128.4" y="293" width="1.3" height="15.0" fill="rgb(229,80,53)" rx="2" ry="2" />
<text x="131.38" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (78 samples, 0.01%)</title><rect x="43.6" y="357" width="0.2" height="15.0" fill="rgb(234,147,28)" rx="2" ry="2" />
<text x="46.64" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (9,583 samples, 1.39%)</title><rect x="734.7" y="229" width="16.4" height="15.0" fill="rgb(228,182,49)" rx="2" ry="2" />
<text x="737.74" y="239.5" ></text>
</g>
<g >
<title>__GI___sigsetjmp (61 samples, 0.01%)</title><rect x="534.1" y="245" width="0.1" height="15.0" fill="rgb(221,198,7)" rx="2" ry="2" />
<text x="537.05" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (68 samples, 0.01%)</title><rect x="1178.3" y="373" width="0.1" height="15.0" fill="rgb(221,65,29)" rx="2" ry="2" />
<text x="1181.31" y="383.5" ></text>
</g>
<g >
<title>__vma_adjust (177 samples, 0.03%)</title><rect x="220.1" y="133" width="0.3" height="15.0" fill="rgb(205,208,48)" rx="2" ry="2" />
<text x="223.13" y="143.5" ></text>
</g>
<g >
<title>rayon_core::current_num_threads::hd153282d6ebc6706 (146 samples, 0.02%)</title><rect x="227.4" y="197" width="0.2" height="15.0" fill="rgb(231,32,31)" rx="2" ry="2" />
<text x="230.37" y="207.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (20,749 samples, 3.01%)</title><rect x="1127.4" y="533" width="35.5" height="15.0" fill="rgb(250,170,18)" rx="2" ry="2" />
<text x="1130.44" y="543.5" >roc..</text>
</g>
<g >
<title>_int_malloc (1,211 samples, 0.18%)</title><rect x="952.6" y="293" width="2.0" height="15.0" fill="rgb(212,135,13)" rx="2" ry="2" />
<text x="955.57" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (89 samples, 0.01%)</title><rect x="43.5" y="357" width="0.1" height="15.0" fill="rgb(236,221,21)" rx="2" ry="2" />
<text x="46.47" y="367.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (170 samples, 0.02%)</title><rect x="61.7" y="309" width="0.3" height="15.0" fill="rgb(211,84,15)" rx="2" ry="2" />
<text x="64.73" y="319.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..primitives..VarInt32$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h47cdb50632b40fb0 (815 samples, 0.12%)</title><rect x="727.4" y="245" width="1.4" height="15.0" fill="rgb(221,55,41)" rx="2" ry="2" />
<text x="730.41" y="255.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (2,780 samples, 0.40%)</title><rect x="320.6" y="229" width="4.7" height="15.0" fill="rgb(207,52,28)" rx="2" ry="2" />
<text x="323.57" y="239.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (284 samples, 0.04%)</title><rect x="336.4" y="229" width="0.5" height="15.0" fill="rgb(238,124,40)" rx="2" ry="2" />
<text x="339.39" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (328 samples, 0.05%)</title><rect x="1134.4" y="373" width="0.6" height="15.0" fill="rgb(236,185,31)" rx="2" ry="2" />
<text x="1137.44" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (3,086 samples, 0.45%)</title><rect x="93.1" y="325" width="5.3" height="15.0" fill="rgb(229,32,4)" rx="2" ry="2" />
<text x="96.08" y="335.5" ></text>
</g>
<g >
<title>perf_iterate_sb (1,012 samples, 0.15%)</title><rect x="234.2" y="101" width="1.7" height="15.0" fill="rgb(252,106,6)" rx="2" ry="2" />
<text x="237.21" y="111.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::InitExpr::empty::h4234cbdd8d47781d (3,266 samples, 0.47%)</title><rect x="1058.7" y="341" width="5.5" height="15.0" fill="rgb(211,103,43)" rx="2" ry="2" />
<text x="1061.65" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (60 samples, 0.01%)</title><rect x="73.8" y="293" width="0.1" height="15.0" fill="rgb(238,176,42)" rx="2" ry="2" />
<text x="76.82" y="303.5" ></text>
</g>
<g >
<title>lru_add_drain_cpu (308 samples, 0.04%)</title><rect x="196.7" y="133" width="0.6" height="15.0" fill="rgb(209,92,28)" rx="2" ry="2" />
<text x="199.75" y="143.5" ></text>
</g>
<g >
<title>sys_mprotect (4,457 samples, 0.65%)</title><rect x="1147.3" y="357" width="7.7" height="15.0" fill="rgb(238,160,11)" rx="2" ry="2" />
<text x="1150.34" y="367.5" ></text>
</g>
<g >
<title>_int_free (2,110 samples, 0.31%)</title><rect x="190.1" y="325" width="3.6" height="15.0" fill="rgb(233,80,28)" rx="2" ry="2" />
<text x="193.11" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::undo::h6a1e65478f3726a7 (325 samples, 0.05%)</title><rect x="1126.9" y="357" width="0.5" height="15.0" fill="rgb(212,209,7)" rx="2" ry="2" />
<text x="1129.88" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (252 samples, 0.04%)</title><rect x="1129.3" y="421" width="0.5" height="15.0" fill="rgb(250,120,3)" rx="2" ry="2" />
<text x="1132.33" y="431.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1,192 samples, 0.17%)</title><rect x="829.8" y="293" width="2.1" height="15.0" fill="rgb(205,222,14)" rx="2" ry="2" />
<text x="832.81" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (14,282 samples, 2.07%)</title><rect x="1031.7" y="309" width="24.5" height="15.0" fill="rgb(246,184,29)" rx="2" ry="2" />
<text x="1034.73" y="319.5" >_..</text>
</g>
<g >
<title>__rdl_alloc (74 samples, 0.01%)</title><rect x="693.9" y="277" width="0.1" height="15.0" fill="rgb(214,218,46)" rx="2" ry="2" />
<text x="696.89" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (15,978 samples, 2.32%)</title><rect x="12.2" y="437" width="27.3" height="15.0" fill="rgb(221,121,20)" rx="2" ry="2" />
<text x="15.17" y="447.5" >c..</text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (79 samples, 0.01%)</title><rect x="78.5" y="293" width="0.1" height="15.0" fill="rgb(230,69,31)" rx="2" ry="2" />
<text x="81.49" y="303.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (186 samples, 0.03%)</title><rect x="1098.1" y="341" width="0.3" height="15.0" fill="rgb(222,27,40)" rx="2" ry="2" />
<text x="1101.06" y="351.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h157f2592beb19670 (1,024 samples, 0.15%)</title><rect x="101.2" y="325" width="1.8" height="15.0" fill="rgb(220,129,49)" rx="2" ry="2" />
<text x="104.21" y="335.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (78 samples, 0.01%)</title><rect x="69.3" y="245" width="0.1" height="15.0" fill="rgb(228,22,20)" rx="2" ry="2" />
<text x="72.31" y="255.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (160 samples, 0.02%)</title><rect x="83.6" y="309" width="0.2" height="15.0" fill="rgb(245,17,34)" rx="2" ry="2" />
<text x="86.56" y="319.5" ></text>
</g>
<g >
<title>unmapped_area_topdown (80 samples, 0.01%)</title><rect x="233.4" y="101" width="0.1" height="15.0" fill="rgb(238,76,17)" rx="2" ry="2" />
<text x="236.37" y="111.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (75 samples, 0.01%)</title><rect x="19.3" y="389" width="0.2" height="15.0" fill="rgb(243,16,41)" rx="2" ry="2" />
<text x="22.33" y="399.5" ></text>
</g>
<g >
<title>malloc_consolidate (1,085 samples, 0.16%)</title><rect x="213.5" y="213" width="1.9" height="15.0" fill="rgb(220,228,13)" rx="2" ry="2" />
<text x="216.52" y="223.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..sys..unix..memory..Memory$u20$as$u20$core..ops..drop..Drop$GT$::drop::h019b69b880433af9 (1,497 samples, 0.22%)</title><rect x="199.9" y="309" width="2.5" height="15.0" fill="rgb(223,68,19)" rx="2" ry="2" />
<text x="202.89" y="319.5" ></text>
</g>
<g >
<title>mmap_region (1,527 samples, 0.22%)</title><rect x="233.6" y="133" width="2.6" height="15.0" fill="rgb(218,110,27)" rx="2" ry="2" />
<text x="236.62" y="143.5" ></text>
</g>
<g >
<title>_int_free (1,739 samples, 0.25%)</title><rect x="666.4" y="245" width="3.0" height="15.0" fill="rgb(245,202,3)" rx="2" ry="2" />
<text x="669.43" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hc479d58701aa8fb7 (121 samples, 0.02%)</title><rect x="41.8" y="357" width="0.2" height="15.0" fill="rgb(246,177,39)" rx="2" ry="2" />
<text x="44.83" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (169 samples, 0.02%)</title><rect x="237.3" y="261" width="0.3" height="15.0" fill="rgb(213,130,51)" rx="2" ry="2" />
<text x="240.30" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::new::h6b2b81b0d4ac791a (151 samples, 0.02%)</title><rect x="1162.6" y="405" width="0.3" height="15.0" fill="rgb(219,111,2)" rx="2" ry="2" />
<text x="1165.63" y="415.5" ></text>
</g>
<g >
<title>__perf_event__output_id_sample (62 samples, 0.01%)</title><rect x="1152.4" y="245" width="0.1" height="15.0" fill="rgb(239,22,2)" rx="2" ry="2" />
<text x="1155.41" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (91 samples, 0.01%)</title><rect x="43.1" y="341" width="0.1" height="15.0" fill="rgb(231,43,24)" rx="2" ry="2" />
<text x="46.05" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (104 samples, 0.02%)</title><rect x="1180.0" y="405" width="0.2" height="15.0" fill="rgb(213,8,33)" rx="2" ry="2" />
<text x="1183.04" y="415.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h3b7b875a11d2ba0c (67 samples, 0.01%)</title><rect x="526.4" y="229" width="0.1" height="15.0" fill="rgb(218,71,53)" rx="2" ry="2" />
<text x="529.39" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (112 samples, 0.02%)</title><rect x="79.5" y="293" width="0.2" height="15.0" fill="rgb(228,43,3)" rx="2" ry="2" />
<text x="82.50" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (107 samples, 0.02%)</title><rect x="1184.2" y="389" width="0.2" height="15.0" fill="rgb(226,78,53)" rx="2" ry="2" />
<text x="1187.19" y="399.5" ></text>
</g>
<g >
<title>__memset_avx2 (1,535 samples, 0.22%)</title><rect x="1130.3" y="421" width="2.6" height="15.0" fill="rgb(219,5,15)" rx="2" ry="2" />
<text x="1133.26" y="431.5" ></text>
</g>
<g >
<title>get_sigframe.isra.13.constprop.14 (125 samples, 0.02%)</title><rect x="11.8" y="485" width="0.2" height="15.0" fill="rgb(211,157,51)" rx="2" ry="2" />
<text x="14.80" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::ifcmp_imm::h300e825ec84d98ef (78 samples, 0.01%)</title><rect x="54.3" y="261" width="0.2" height="15.0" fill="rgb(215,151,8)" rx="2" ry="2" />
<text x="57.35" y="271.5" ></text>
</g>
<g >
<title>_int_free (2,024 samples, 0.29%)</title><rect x="900.7" y="309" width="3.5" height="15.0" fill="rgb(251,193,27)" rx="2" ry="2" />
<text x="903.74" y="319.5" ></text>
</g>
<g >
<title>perf_event_mmap (1,538 samples, 0.22%)</title><rect x="217.4" y="149" width="2.6" height="15.0" fill="rgb(242,228,43)" rx="2" ry="2" />
<text x="220.40" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (424 samples, 0.06%)</title><rect x="1168.8" y="405" width="0.7" height="15.0" fill="rgb(227,1,11)" rx="2" ry="2" />
<text x="1171.76" y="415.5" ></text>
</g>
<g >
<title>__rust_dealloc (150 samples, 0.02%)</title><rect x="580.3" y="357" width="0.3" height="15.0" fill="rgb(240,120,10)" rx="2" ry="2" />
<text x="583.34" y="367.5" ></text>
</g>
<g >
<title>[libpthread-2.23.so] (428 samples, 0.06%)</title><rect x="10.3" y="549" width="0.8" height="15.0" fill="rgb(223,3,9)" rx="2" ry="2" />
<text x="13.32" y="559.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::hd3cdf3966e0187a9 (143 samples, 0.02%)</title><rect x="36.9" y="389" width="0.2" height="15.0" fill="rgb(206,117,3)" rx="2" ry="2" />
<text x="39.89" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (1,539 samples, 0.22%)</title><rect x="14.9" y="421" width="2.6" height="15.0" fill="rgb(228,142,45)" rx="2" ry="2" />
<text x="17.90" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (141 samples, 0.02%)</title><rect x="1180.6" y="373" width="0.3" height="15.0" fill="rgb(243,171,34)" rx="2" ry="2" />
<text x="1183.61" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (131 samples, 0.02%)</title><rect x="1182.9" y="405" width="0.2" height="15.0" fill="rgb(225,133,26)" rx="2" ry="2" />
<text x="1185.89" y="415.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..func..FuncBody$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::he0206dbe7b12f9d0 (49,558 samples, 7.18%)</title><rect x="698.1" y="293" width="84.8" height="15.0" fill="rgb(223,198,52)" rx="2" ry="2" />
<text x="701.13" y="303.5" >_$LT$pari..</text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hef6aaa8d561267ad (2,702 samples, 0.39%)</title><rect x="242.3" y="277" width="4.6" height="15.0" fill="rgb(217,91,46)" rx="2" ry="2" />
<text x="245.27" y="287.5" ></text>
</g>
<g >
<title>__rdl_realloc (146 samples, 0.02%)</title><rect x="621.5" y="277" width="0.2" height="15.0" fill="rgb(249,131,29)" rx="2" ry="2" />
<text x="624.45" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (9,133 samples, 1.32%)</title><rect x="1067.1" y="341" width="15.6" height="15.0" fill="rgb(237,221,39)" rx="2" ry="2" />
<text x="1070.07" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,972 samples, 0.43%)</title><rect x="956.5" y="325" width="5.1" height="15.0" fill="rgb(220,73,47)" rx="2" ry="2" />
<text x="959.53" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h365a4956706fb90b (40,410 samples, 5.86%)</title><rect x="117.7" y="357" width="69.1" height="15.0" fill="rgb(212,193,35)" rx="2" ry="2" />
<text x="120.72" y="367.5" >_$LT$al..</text>
</g>
<g >
<title>__rdl_alloc (72 samples, 0.01%)</title><rect x="381.5" y="245" width="0.2" height="15.0" fill="rgb(218,67,26)" rx="2" ry="2" />
<text x="384.53" y="255.5" ></text>
</g>
<g >
<title>find_vma (60 samples, 0.01%)</title><rect x="200.6" y="197" width="0.1" height="15.0" fill="rgb(215,76,13)" rx="2" ry="2" />
<text x="203.55" y="207.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (94 samples, 0.01%)</title><rect x="500.5" y="229" width="0.2" height="15.0" fill="rgb(224,71,33)" rx="2" ry="2" />
<text x="503.50" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,830 samples, 0.41%)</title><rect x="612.3" y="277" width="4.8" height="15.0" fill="rgb(217,179,28)" rx="2" ry="2" />
<text x="615.26" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (103 samples, 0.01%)</title><rect x="104.7" y="293" width="0.2" height="15.0" fill="rgb(227,157,39)" rx="2" ry="2" />
<text x="107.68" y="303.5" ></text>
</g>
<g >
<title>do_signal (282 samples, 0.04%)</title><rect x="11.7" y="501" width="0.5" height="15.0" fill="rgb(211,15,30)" rx="2" ry="2" />
<text x="14.67" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand_flags::hf22fb7652a0ec5c8 (185 samples, 0.03%)</title><rect x="55.4" y="277" width="0.3" height="15.0" fill="rgb(229,209,46)" rx="2" ry="2" />
<text x="58.40" y="287.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 (229 samples, 0.03%)</title><rect x="18.6" y="373" width="0.4" height="15.0" fill="rgb(251,124,53)" rx="2" ry="2" />
<text x="21.63" y="383.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::field::hfe273cdc0de5f043 (4,912 samples, 0.71%)</title><rect x="955.1" y="341" width="8.4" height="15.0" fill="rgb(235,118,15)" rx="2" ry="2" />
<text x="958.12" y="351.5" ></text>
</g>
<g >
<title>_int_free (3,021 samples, 0.44%)</title><rect x="1043.0" y="277" width="5.1" height="15.0" fill="rgb(231,170,25)" rx="2" ry="2" />
<text x="1045.97" 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 (3,065 samples, 0.44%)</title><rect x="194.5" y="277" width="5.2" height="15.0" fill="rgb(226,122,18)" rx="2" ry="2" />
<text x="197.49" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (59 samples, 0.01%)</title><rect x="1166.3" y="309" width="0.1" height="15.0" fill="rgb(216,130,37)" rx="2" ry="2" />
<text x="1169.32" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (227 samples, 0.03%)</title><rect x="111.0" y="469" width="0.4" height="15.0" fill="rgb(252,141,45)" rx="2" ry="2" />
<text x="113.97" y="479.5" ></text>
</g>
<g >
<title>_int_malloc (4,184 samples, 0.61%)</title><rect x="179.6" y="325" width="7.1" height="15.0" fill="rgb(226,33,13)" rx="2" ry="2" />
<text x="182.56" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (65 samples, 0.01%)</title><rect x="1141.6" y="341" width="0.1" height="15.0" fill="rgb(251,214,28)" rx="2" ry="2" />
<text x="1144.64" y="351.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_wrlock (1,468 samples, 0.21%)</title><rect x="502.0" y="277" width="2.5" height="15.0" fill="rgb(234,175,6)" rx="2" ry="2" />
<text x="505.01" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h9a9591bdce17bec5 (3,360 samples, 0.49%)</title><rect x="920.4" y="325" width="5.8" height="15.0" fill="rgb(214,73,52)" rx="2" ry="2" />
<text x="923.43" y="335.5" ></text>
</g>
<g >
<title>release_pages (441 samples, 0.06%)</title><rect x="197.4" y="85" width="0.8" height="15.0" fill="rgb(254,127,3)" rx="2" ry="2" />
<text x="200.42" y="95.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (69 samples, 0.01%)</title><rect x="39.5" y="437" width="0.1" height="15.0" fill="rgb(207,175,39)" rx="2" ry="2" />
<text x="42.51" y="447.5" ></text>
</g>
<g >
<title>_int_free (83 samples, 0.01%)</title><rect x="108.7" y="373" width="0.1" height="15.0" fill="rgb(229,53,48)" rx="2" ry="2" />
<text x="111.67" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (103 samples, 0.01%)</title><rect x="1141.6" y="357" width="0.1" height="15.0" fill="rgb(247,65,50)" rx="2" ry="2" />
<text x="1144.57" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (535 samples, 0.08%)</title><rect x="440.3" y="229" width="0.9" height="15.0" fill="rgb(236,103,18)" rx="2" ry="2" />
<text x="443.30" y="239.5" ></text>
</g>
<g >
<title>__mmap (2,499 samples, 0.36%)</title><rect x="232.3" y="245" width="4.3" height="15.0" fill="rgb(228,102,5)" rx="2" ry="2" />
<text x="235.30" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (83 samples, 0.01%)</title><rect x="50.3" y="309" width="0.2" height="15.0" fill="rgb(226,101,36)" rx="2" ry="2" />
<text x="53.31" y="319.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 (104 samples, 0.02%)</title><rect x="65.7" y="293" width="0.2" height="15.0" fill="rgb(209,66,35)" rx="2" ry="2" />
<text x="68.72" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::new::h18b3346fa2ea1088 (139 samples, 0.02%)</title><rect x="111.4" y="469" width="0.2" height="15.0" fill="rgb(246,127,11)" rx="2" ry="2" />
<text x="114.36" y="479.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (317 samples, 0.05%)</title><rect x="626.2" y="277" width="0.5" height="15.0" fill="rgb(253,3,53)" rx="2" ry="2" />
<text x="629.15" y="287.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (91 samples, 0.01%)</title><rect x="1165.1" y="341" width="0.2" height="15.0" fill="rgb(238,159,15)" rx="2" ry="2" />
<text x="1168.10" y="351.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (1,969 samples, 0.29%)</title><rect x="315.8" y="245" width="3.4" height="15.0" fill="rgb(223,41,9)" rx="2" ry="2" />
<text x="318.82" y="255.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (1,228 samples, 0.18%)</title><rect x="1174.8" y="437" width="2.1" height="15.0" fill="rgb(251,76,26)" rx="2" ry="2" />
<text x="1177.81" y="447.5" ></text>
</g>
<g >
<title>__rdl_alloc (65 samples, 0.01%)</title><rect x="954.6" y="309" width="0.2" height="15.0" fill="rgb(248,215,33)" rx="2" ry="2" />
<text x="957.64" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (293 samples, 0.04%)</title><rect x="16.6" y="357" width="0.5" height="15.0" fill="rgb(221,150,0)" rx="2" ry="2" />
<text x="19.59" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::overlaps_def::h922ef41f94ddfc58 (73 samples, 0.01%)</title><rect x="79.7" y="309" width="0.1" height="15.0" fill="rgb(242,55,49)" rx="2" ry="2" />
<text x="82.72" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (68 samples, 0.01%)</title><rect x="1167.6" y="341" width="0.1" height="15.0" fill="rgb(218,59,12)" rx="2" ry="2" />
<text x="1170.57" 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 (3,053 samples, 0.44%)</title><rect x="106.4" y="533" width="5.2" height="15.0" fill="rgb(241,9,19)" rx="2" ry="2" />
<text x="109.38" y="543.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (155 samples, 0.02%)</title><rect x="53.3" y="261" width="0.2" height="15.0" fill="rgb(223,203,32)" rx="2" ry="2" />
<text x="56.27" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (66 samples, 0.01%)</title><rect x="18.9" y="325" width="0.1" height="15.0" fill="rgb(209,163,10)" rx="2" ry="2" />
<text x="21.89" y="335.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h9f8df50b4f63ad32 (65 samples, 0.01%)</title><rect x="1144.2" y="421" width="0.1" height="15.0" fill="rgb(218,71,32)" rx="2" ry="2" />
<text x="1147.22" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (61 samples, 0.01%)</title><rect x="104.6" y="293" width="0.1" height="15.0" fill="rgb(226,185,41)" rx="2" ry="2" />
<text x="107.55" y="303.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (88 samples, 0.01%)</title><rect x="76.6" y="245" width="0.1" height="15.0" fill="rgb(236,19,31)" rx="2" ry="2" />
<text x="79.58" y="255.5" ></text>
</g>
<g >
<title>do_signal (70 samples, 0.01%)</title><rect x="10.5" y="469" width="0.2" height="15.0" fill="rgb(214,174,6)" rx="2" ry="2" />
<text x="13.54" y="479.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (79 samples, 0.01%)</title><rect x="26.9" y="405" width="0.1" height="15.0" fill="rgb(224,32,34)" rx="2" ry="2" />
<text x="29.87" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4,814 samples, 0.70%)</title><rect x="676.4" y="261" width="8.2" height="15.0" fill="rgb(232,84,19)" rx="2" ry="2" />
<text x="679.36" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (66 samples, 0.01%)</title><rect x="1144.0" y="405" width="0.1" height="15.0" fill="rgb(236,37,45)" rx="2" ry="2" />
<text x="1146.95" y="415.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::new::h767b5a62d9ac8288 (2,515 samples, 0.36%)</title><rect x="538.3" y="325" width="4.3" height="15.0" fill="rgb(208,93,12)" rx="2" ry="2" />
<text x="541.26" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (406 samples, 0.06%)</title><rect x="857.2" y="293" width="0.7" height="15.0" fill="rgb(228,204,40)" rx="2" ry="2" />
<text x="860.25" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (203 samples, 0.03%)</title><rect x="211.7" y="261" width="0.3" height="15.0" fill="rgb(244,218,26)" rx="2" ry="2" />
<text x="214.68" y="271.5" ></text>
</g>
<g >
<title>change_protection (392 samples, 0.06%)</title><rect x="216.7" y="149" width="0.7" height="15.0" fill="rgb(245,0,22)" rx="2" ry="2" />
<text x="219.72" y="159.5" ></text>
</g>
<g >
<title>__GI___exp (1,348 samples, 0.20%)</title><rect x="557.0" y="357" width="2.3" height="15.0" fill="rgb(216,213,45)" rx="2" ry="2" />
<text x="560.00" y="367.5" ></text>
</g>
<g >
<title>__rdl_alloc (71 samples, 0.01%)</title><rect x="1020.3" y="325" width="0.1" height="15.0" fill="rgb(235,178,32)" rx="2" ry="2" />
<text x="1023.28" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h362292f8e76d2258 (129 samples, 0.02%)</title><rect x="1104.7" y="325" width="0.2" height="15.0" fill="rgb(236,120,10)" rx="2" ry="2" />
<text x="1107.69" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (262 samples, 0.04%)</title><rect x="101.9" y="293" width="0.5" height="15.0" fill="rgb(211,57,2)" rx="2" ry="2" />
<text x="104.92" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4,892 samples, 0.71%)</title><rect x="773.5" y="245" width="8.3" height="15.0" fill="rgb(206,177,3)" rx="2" ry="2" />
<text x="776.46" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (81 samples, 0.01%)</title><rect x="101.8" y="293" width="0.1" height="15.0" fill="rgb(223,165,53)" rx="2" ry="2" />
<text x="104.78" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (84 samples, 0.01%)</title><rect x="88.1" y="309" width="0.1" height="15.0" fill="rgb(233,216,3)" rx="2" ry="2" />
<text x="91.07" y="319.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (176 samples, 0.03%)</title><rect x="1159.9" y="389" width="0.3" height="15.0" fill="rgb(206,39,41)" rx="2" ry="2" />
<text x="1162.93" y="399.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (298 samples, 0.04%)</title><rect x="11.7" y="533" width="0.5" height="15.0" fill="rgb(248,185,11)" rx="2" ry="2" />
<text x="14.65" y="543.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (216 samples, 0.03%)</title><rect x="1136.5" y="405" width="0.4" height="15.0" fill="rgb(230,169,4)" rx="2" ry="2" />
<text x="1139.52" y="415.5" ></text>
</g>
<g >
<title>__rdl_alloc (70 samples, 0.01%)</title><rect x="461.5" y="277" width="0.1" height="15.0" fill="rgb(247,68,27)" rx="2" ry="2" />
<text x="464.52" y="287.5" ></text>
</g>
<g >
<title>wasmparser::readers::code_section::FunctionBody::get_operators_reader::h331a49773c095d89 (936 samples, 0.14%)</title><rect x="360.1" y="245" width="1.6" height="15.0" fill="rgb(212,171,21)" rx="2" ry="2" />
<text x="363.12" y="255.5" ></text>
</g>
<g >
<title>__ieee754_exp_avx (1,156 samples, 0.17%)</title><rect x="557.3" y="341" width="2.0" height="15.0" fill="rgb(219,68,33)" rx="2" ry="2" />
<text x="560.32" y="351.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 (204 samples, 0.03%)</title><rect x="1183.7" y="389" width="0.4" height="15.0" fill="rgb(254,179,19)" rx="2" ry="2" />
<text x="1186.74" y="399.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (97 samples, 0.01%)</title><rect x="656.9" y="293" width="0.2" height="15.0" fill="rgb(213,229,22)" rx="2" ry="2" />
<text x="659.94" y="303.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (854 samples, 0.12%)</title><rect x="197.3" y="149" width="1.4" height="15.0" fill="rgb(208,201,28)" rx="2" ry="2" />
<text x="200.29" y="159.5" ></text>
</g>
<g >
<title>__rdl_alloc (158 samples, 0.02%)</title><rect x="438.0" y="229" width="0.3" height="15.0" fill="rgb(235,113,25)" rx="2" ry="2" />
<text x="441.02" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::replace_with_aliases::hf72d80b187eea82e (76 samples, 0.01%)</title><rect x="100.4" y="325" width="0.1" height="15.0" fill="rgb(239,155,51)" rx="2" ry="2" />
<text x="103.38" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (338 samples, 0.05%)</title><rect x="1144.7" y="389" width="0.6" height="15.0" fill="rgb(206,175,28)" rx="2" ry="2" />
<text x="1147.71" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (94 samples, 0.01%)</title><rect x="1181.0" y="373" width="0.2" height="15.0" fill="rgb(243,164,33)" rx="2" ry="2" />
<text x="1184.04" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (78 samples, 0.01%)</title><rect x="77.5" y="277" width="0.1" height="15.0" fill="rgb(248,63,20)" rx="2" ry="2" />
<text x="80.50" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc01085cdf6cb9abc (3,294 samples, 0.48%)</title><rect x="926.2" y="325" width="5.6" height="15.0" fill="rgb(243,90,10)" rx="2" ry="2" />
<text x="929.17" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (134 samples, 0.02%)</title><rect x="13.8" y="309" width="0.2" height="15.0" fill="rgb(233,84,53)" rx="2" ry="2" />
<text x="16.76" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (172 samples, 0.02%)</title><rect x="85.4" y="309" width="0.3" height="15.0" fill="rgb(209,173,45)" rx="2" ry="2" />
<text x="88.36" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (279 samples, 0.04%)</title><rect x="21.3" y="373" width="0.5" height="15.0" fill="rgb(232,211,48)" rx="2" ry="2" />
<text x="24.28" y="383.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instructions$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h09b423cadf0da692 (34,698 samples, 5.03%)</title><rect x="699.3" y="277" width="59.4" height="15.0" fill="rgb(224,90,7)" rx="2" ry="2" />
<text x="702.34" y="287.5" >_$LT$p..</text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (1,228 samples, 0.18%)</title><rect x="1174.8" y="405" width="2.1" height="15.0" fill="rgb(208,21,38)" rx="2" ry="2" />
<text x="1177.81" y="415.5" ></text>
</g>
<g >
<title>_int_free (136 samples, 0.02%)</title><rect x="211.8" y="245" width="0.2" height="15.0" fill="rgb(240,154,24)" rx="2" ry="2" />
<text x="214.80" y="255.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (310 samples, 0.04%)</title><rect x="209.5" y="277" width="0.6" height="15.0" fill="rgb(248,209,27)" rx="2" ry="2" />
<text x="212.52" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::h91c06dafab6b143d (107 samples, 0.02%)</title><rect x="221.1" y="261" width="0.2" height="15.0" fill="rgb(244,215,14)" rx="2" ry="2" />
<text x="224.10" y="271.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (1,005 samples, 0.15%)</title><rect x="580.6" y="357" width="1.7" height="15.0" fill="rgb(254,45,34)" rx="2" ry="2" />
<text x="583.60" y="367.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (114 samples, 0.02%)</title><rect x="761.0" y="261" width="0.2" height="15.0" fill="rgb(229,82,11)" rx="2" ry="2" />
<text x="764.03" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (264 samples, 0.04%)</title><rect x="1183.3" y="421" width="0.4" height="15.0" fill="rgb(228,23,2)" rx="2" ry="2" />
<text x="1186.29" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (3,535 samples, 0.51%)</title><rect x="1025.7" y="293" width="6.0" height="15.0" fill="rgb(219,42,35)" rx="2" ry="2" />
<text x="1028.69" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (92 samples, 0.01%)</title><rect x="86.4" y="277" width="0.2" height="15.0" fill="rgb(254,217,46)" rx="2" ry="2" />
<text x="89.43" y="287.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 (39,019 samples, 5.66%)</title><rect x="39.6" y="517" width="66.8" height="15.0" fill="rgb(216,35,44)" rx="2" ry="2" />
<text x="42.63" y="527.5" >rayon::..</text>
</g>
<g >
<title>__GI___libc_realloc (175 samples, 0.03%)</title><rect x="1180.3" y="357" width="0.3" height="15.0" fill="rgb(214,147,27)" rx="2" ry="2" />
<text x="1183.31" 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 (239 samples, 0.03%)</title><rect x="59.4" y="261" width="0.4" height="15.0" fill="rgb(242,47,3)" rx="2" ry="2" />
<text x="62.42" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (785 samples, 0.11%)</title><rect x="683.3" y="245" width="1.3" height="15.0" fill="rgb(219,27,23)" rx="2" ry="2" />
<text x="686.25" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (77 samples, 0.01%)</title><rect x="1166.3" y="357" width="0.1" height="15.0" fill="rgb(243,66,33)" rx="2" ry="2" />
<text x="1169.29" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (8,320 samples, 1.21%)</title><rect x="424.2" y="245" width="14.2" height="15.0" fill="rgb(248,11,27)" rx="2" ry="2" />
<text x="427.18" y="255.5" ></text>
</g>
<g >
<title>__do_page_fault (1,493 samples, 0.22%)</title><rect x="223.9" y="213" width="2.5" height="15.0" fill="rgb(254,40,24)" rx="2" ry="2" />
<text x="226.85" y="223.5" ></text>
</g>
<g >
<title>std::sync::mutex::Mutex$LT$T$GT$::new::hf2c0b119dbf955ad (200 samples, 0.03%)</title><rect x="227.9" y="245" width="0.4" height="15.0" fill="rgb(249,24,23)" rx="2" ry="2" />
<text x="230.93" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (93 samples, 0.01%)</title><rect x="1174.7" y="437" width="0.1" height="15.0" fill="rgb(248,75,18)" rx="2" ry="2" />
<text x="1177.66" y="447.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (2,096 samples, 0.30%)</title><rect x="233.0" y="181" width="3.5" height="15.0" fill="rgb(241,117,27)" rx="2" ry="2" />
<text x="235.96" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (951 samples, 0.14%)</title><rect x="12.4" y="389" width="1.7" height="15.0" fill="rgb(237,68,13)" rx="2" ry="2" />
<text x="15.43" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (81 samples, 0.01%)</title><rect x="65.9" y="309" width="0.2" height="15.0" fill="rgb(225,197,49)" rx="2" ry="2" />
<text x="68.94" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (78 samples, 0.01%)</title><rect x="74.1" y="325" width="0.2" height="15.0" fill="rgb(236,103,16)" rx="2" ry="2" />
<text x="77.12" y="335.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h7f13566add47f7e2 (246 samples, 0.04%)</title><rect x="531.1" y="293" width="0.4" height="15.0" fill="rgb(252,66,46)" rx="2" ry="2" />
<text x="534.06" y="303.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (16,049 samples, 2.33%)</title><rect x="12.2" y="469" width="27.4" height="15.0" fill="rgb(222,148,18)" rx="2" ry="2" />
<text x="15.17" y="479.5" >w..</text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (13,589 samples, 1.97%)</title><rect x="336.9" y="245" width="23.2" height="15.0" fill="rgb(229,107,36)" rx="2" ry="2" />
<text x="339.87" y="255.5" >w..</text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (297 samples, 0.04%)</title><rect x="1168.0" y="357" width="0.6" height="15.0" fill="rgb(230,92,16)" rx="2" ry="2" />
<text x="1171.05" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (124 samples, 0.02%)</title><rect x="85.4" y="293" width="0.3" height="15.0" fill="rgb(223,18,39)" rx="2" ry="2" />
<text x="88.45" y="303.5" ></text>
</g>
<g >
<title>clear_page_erms (66 samples, 0.01%)</title><rect x="1132.2" y="293" width="0.1" height="15.0" fill="rgb(254,11,21)" rx="2" ry="2" />
<text x="1135.21" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (219 samples, 0.03%)</title><rect x="14.1" y="373" width="0.3" height="15.0" fill="rgb(242,4,30)" rx="2" ry="2" />
<text x="17.06" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (3,450 samples, 0.50%)</title><rect x="370.0" y="245" width="5.9" height="15.0" fill="rgb(208,59,43)" rx="2" ry="2" />
<text x="372.97" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcd647565ba58b57f (175 samples, 0.03%)</title><rect x="45.2" y="309" width="0.3" height="15.0" fill="rgb(254,137,1)" rx="2" ry="2" />
<text x="48.23" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (122 samples, 0.02%)</title><rect x="504.7" y="261" width="0.2" height="15.0" fill="rgb(236,181,22)" rx="2" ry="2" />
<text x="507.71" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (159 samples, 0.02%)</title><rect x="1135.0" y="405" width="0.3" height="15.0" fill="rgb(253,18,5)" rx="2" ry="2" />
<text x="1138.02" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2,377 samples, 0.34%)</title><rect x="853.9" y="309" width="4.0" height="15.0" fill="rgb(218,66,31)" rx="2" ry="2" />
<text x="856.88" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::is_unreachable::h2598b0c09df43bc3 (63 samples, 0.01%)</title><rect x="497.5" y="261" width="0.1" height="15.0" fill="rgb(227,120,34)" rx="2" ry="2" />
<text x="500.46" y="271.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::to_func_body::h3e1607d9587d426d (19,971 samples, 2.90%)</title><rect x="1064.5" y="357" width="34.2" height="15.0" fill="rgb(224,167,51)" rx="2" ry="2" />
<text x="1067.53" y="367.5" >ro..</text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (125 samples, 0.02%)</title><rect x="45.6" y="325" width="0.2" height="15.0" fill="rgb(210,223,12)" rx="2" ry="2" />
<text x="48.56" 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 (105 samples, 0.02%)</title><rect x="45.6" y="309" width="0.2" height="15.0" fill="rgb(228,210,34)" rx="2" ry="2" />
<text x="48.59" y="319.5" ></text>
</g>
<g >
<title>__GI___mprotect (2,181 samples, 0.32%)</title><rect x="228.3" y="245" width="3.8" height="15.0" fill="rgb(232,131,17)" rx="2" ry="2" />
<text x="231.35" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (1,453 samples, 0.21%)</title><rect x="68.6" y="341" width="2.5" height="15.0" fill="rgb(205,131,16)" rx="2" ry="2" />
<text x="71.61" y="351.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (237 samples, 0.03%)</title><rect x="334.8" y="213" width="0.4" height="15.0" fill="rgb(238,27,15)" rx="2" ry="2" />
<text x="337.78" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (65 samples, 0.01%)</title><rect x="47.8" y="261" width="0.1" height="15.0" fill="rgb(210,184,22)" rx="2" ry="2" />
<text x="50.80" y="271.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 (186 samples, 0.03%)</title><rect x="1182.6" y="405" width="0.3" height="15.0" fill="rgb(245,68,32)" rx="2" ry="2" />
<text x="1185.58" y="415.5" ></text>
</g>
<g >
<title>copy_user_enhanced_fast_string (93 samples, 0.01%)</title><rect x="1189.3" y="469" width="0.1" height="15.0" fill="rgb(205,216,12)" rx="2" ry="2" />
<text x="1192.26" y="479.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (158 samples, 0.02%)</title><rect x="52.1" y="261" width="0.3" height="15.0" fill="rgb(218,81,15)" rx="2" ry="2" />
<text x="55.11" y="271.5" ></text>
</g>
<g >
<title>_$LT$T$u20$as$u20$alloc..borrow..ToOwned$GT$::to_owned::h243a230274a8a4d9 (1,533 samples, 0.22%)</title><rect x="40.1" y="373" width="2.6" height="15.0" fill="rgb(206,94,13)" rx="2" ry="2" />
<text x="43.06" y="383.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (5,483 samples, 0.79%)</title><rect x="319.2" y="245" width="9.4" height="15.0" fill="rgb(229,91,37)" rx="2" ry="2" />
<text x="322.19" y="255.5" ></text>
</g>
<g >
<title>__memset_sse2 (169 samples, 0.02%)</title><rect x="215.6" y="245" width="0.3" height="15.0" fill="rgb(230,164,0)" rx="2" ry="2" />
<text x="218.62" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (68 samples, 0.01%)</title><rect x="1183.0" y="357" width="0.1" height="15.0" fill="rgb(254,196,8)" rx="2" ry="2" />
<text x="1186.00" y="367.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (813 samples, 0.12%)</title><rect x="1176.9" y="469" width="1.4" height="15.0" fill="rgb(228,135,9)" rx="2" ry="2" />
<text x="1179.92" y="479.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (103 samples, 0.01%)</title><rect x="484.2" y="245" width="0.1" height="15.0" fill="rgb(241,50,54)" rx="2" ry="2" />
<text x="487.16" y="255.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (90 samples, 0.01%)</title><rect x="235.4" y="53" width="0.1" height="15.0" fill="rgb(253,67,13)" rx="2" ry="2" />
<text x="238.38" y="63.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (648 samples, 0.09%)</title><rect x="217.9" y="133" width="1.1" height="15.0" fill="rgb(217,23,44)" rx="2" ry="2" />
<text x="220.89" y="143.5" ></text>
</g>
<g >
<title>parity_wasm::elements::func::FuncBody::new::h9993762f12bb7897 (557 samples, 0.08%)</title><rect x="1057.7" y="341" width="1.0" height="15.0" fill="rgb(220,180,9)" rx="2" ry="2" />
<text x="1060.70" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (107 samples, 0.02%)</title><rect x="27.2" y="389" width="0.2" height="15.0" fill="rgb(246,90,45)" rx="2" ry="2" />
<text x="30.17" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (16,049 samples, 2.33%)</title><rect x="12.2" y="517" width="27.4" height="15.0" fill="rgb(236,1,10)" rx="2" ry="2" />
<text x="15.17" y="527.5" >w..</text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (133 samples, 0.02%)</title><rect x="88.3" y="309" width="0.2" height="15.0" fill="rgb(208,131,3)" rx="2" ry="2" />
<text x="91.25" y="319.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.10396957835513704427 (60 samples, 0.01%)</title><rect x="541.7" y="229" width="0.1" height="15.0" fill="rgb(217,118,51)" rx="2" ry="2" />
<text x="544.66" y="239.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (95 samples, 0.01%)</title><rect x="65.0" y="309" width="0.2" height="15.0" fill="rgb(216,159,23)" rx="2" ry="2" />
<text x="68.01" 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 (1,435 samples, 0.21%)</title><rect x="1182.2" y="517" width="2.5" height="15.0" fill="rgb(222,93,17)" rx="2" ry="2" />
<text x="1185.20" y="527.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (93 samples, 0.01%)</title><rect x="85.5" y="277" width="0.2" height="15.0" fill="rgb(233,34,31)" rx="2" ry="2" />
<text x="88.50" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,852 samples, 0.27%)</title><rect x="782.9" y="293" width="3.2" height="15.0" fill="rgb(227,11,48)" rx="2" ry="2" />
<text x="785.90" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (170 samples, 0.02%)</title><rect x="524.9" y="197" width="0.3" height="15.0" fill="rgb(207,215,16)" rx="2" ry="2" />
<text x="527.89" y="207.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (120 samples, 0.02%)</title><rect x="376.2" y="245" width="0.2" height="15.0" fill="rgb(223,81,39)" rx="2" ry="2" />
<text x="379.20" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (1,164 samples, 0.17%)</title><rect x="866.6" y="309" width="1.9" height="15.0" fill="rgb(207,80,16)" rx="2" ry="2" />
<text x="869.55" y="319.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 (6,927 samples, 1.00%)</title><rect x="663.5" y="277" width="11.9" height="15.0" fill="rgb(238,101,44)" rx="2" ry="2" />
<text x="666.53" y="287.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc6solver6Solver13find_solution17h23fb3e5d74fee50cE.llvm.529824060399144151 (217 samples, 0.03%)</title><rect x="29.3" y="389" width="0.4" height="15.0" fill="rgb(217,77,38)" rx="2" ry="2" />
<text x="32.33" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (20,749 samples, 3.01%)</title><rect x="1127.4" y="501" width="35.5" height="15.0" fill="rgb(247,139,19)" rx="2" ry="2" />
<text x="1130.44" y="511.5" >was..</text>
</g>
<g >
<title>__GI___libc_malloc (8,232 samples, 1.19%)</title><rect x="361.8" y="261" width="14.1" height="15.0" fill="rgb(205,43,8)" rx="2" ry="2" />
<text x="364.79" y="271.5" ></text>
</g>
<g >
<title>sys_mmap_pgoff (1,608 samples, 0.23%)</title><rect x="1155.9" y="341" width="2.7" height="15.0" fill="rgb(252,129,48)" rx="2" ry="2" />
<text x="1158.87" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (117 samples, 0.02%)</title><rect x="87.3" y="325" width="0.2" height="15.0" fill="rgb(221,155,29)" rx="2" ry="2" />
<text x="90.27" y="335.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (74 samples, 0.01%)</title><rect x="1182.2" y="389" width="0.1" height="15.0" fill="rgb(221,69,17)" rx="2" ry="2" />
<text x="1185.20" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (68 samples, 0.01%)</title><rect x="524.8" y="181" width="0.1" height="15.0" fill="rgb(243,18,27)" rx="2" ry="2" />
<text x="527.76" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (1,463 samples, 0.21%)</title><rect x="17.5" y="405" width="2.5" height="15.0" fill="rgb(253,60,27)" rx="2" ry="2" />
<text x="20.53" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (96 samples, 0.01%)</title><rect x="34.1" y="389" width="0.1" height="15.0" fill="rgb(225,128,53)" rx="2" ry="2" />
<text x="37.07" y="399.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (160 samples, 0.02%)</title><rect x="330.1" y="229" width="0.2" height="15.0" fill="rgb(218,112,42)" rx="2" ry="2" />
<text x="333.05" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (403 samples, 0.06%)</title><rect x="1139.8" y="405" width="0.7" height="15.0" fill="rgb(213,140,11)" rx="2" ry="2" />
<text x="1142.79" y="415.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h096927e62fedec5f (6,462 samples, 0.94%)</title><rect x="462.2" y="277" width="11.1" height="15.0" fill="rgb(218,218,24)" rx="2" ry="2" />
<text x="465.21" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,688 samples, 0.39%)</title><rect x="1109.0" y="325" width="4.6" height="15.0" fill="rgb(219,36,50)" rx="2" ry="2" />
<text x="1111.96" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (141 samples, 0.02%)</title><rect x="193.9" y="325" width="0.3" height="15.0" fill="rgb(238,164,40)" rx="2" ry="2" />
<text x="196.92" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (96 samples, 0.01%)</title><rect x="19.6" y="389" width="0.2" height="15.0" fill="rgb(215,189,53)" rx="2" ry="2" />
<text x="22.60" y="399.5" ></text>
</g>
<g >
<title>page_fault (1,504 samples, 0.22%)</title><rect x="223.9" y="245" width="2.5" height="15.0" fill="rgb(254,190,7)" rx="2" ry="2" />
<text x="226.85" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (259 samples, 0.04%)</title><rect x="1159.8" y="405" width="0.4" height="15.0" fill="rgb(240,42,45)" rx="2" ry="2" />
<text x="1162.79" y="415.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_list (124 samples, 0.02%)</title><rect x="201.3" y="101" width="0.2" height="15.0" fill="rgb(234,40,8)" rx="2" ry="2" />
<text x="204.33" y="111.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (177 samples, 0.03%)</title><rect x="1143.4" y="421" width="0.3" height="15.0" fill="rgb(209,188,47)" rx="2" ry="2" />
<text x="1146.36" y="431.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (128 samples, 0.02%)</title><rect x="233.8" y="117" width="0.2" height="15.0" fill="rgb(209,80,6)" rx="2" ry="2" />
<text x="236.83" y="127.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_trampoline::h81ec02567a29dd60 (556 samples, 0.08%)</title><rect x="530.6" y="309" width="0.9" height="15.0" fill="rgb(250,130,50)" rx="2" ry="2" />
<text x="533.59" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (3,129 samples, 0.45%)</title><rect x="938.0" y="325" width="5.4" height="15.0" fill="rgb(237,122,15)" rx="2" ry="2" />
<text x="941.04" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (92 samples, 0.01%)</title><rect x="76.6" y="261" width="0.1" height="15.0" fill="rgb(233,153,33)" rx="2" ry="2" />
<text x="79.57" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h7228d91f2d6ded07 (7,376 samples, 1.07%)</title><rect x="145.9" y="325" width="12.7" height="15.0" fill="rgb(215,152,39)" rx="2" ry="2" />
<text x="148.94" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,056 samples, 0.30%)</title><rect x="321.7" y="213" width="3.5" height="15.0" fill="rgb(245,173,41)" rx="2" ry="2" />
<text x="324.67" y="223.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 (216 samples, 0.03%)</title><rect x="97.6" y="293" width="0.3" height="15.0" fill="rgb(243,7,17)" rx="2" ry="2" />
<text x="100.56" y="303.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (66 samples, 0.01%)</title><rect x="727.8" y="229" width="0.1" height="15.0" fill="rgb(237,105,17)" rx="2" ry="2" />
<text x="730.79" y="239.5" ></text>
</g>
<g >
<title>_int_free (244 samples, 0.04%)</title><rect x="1133.9" y="373" width="0.4" height="15.0" fill="rgb(221,184,23)" rx="2" ry="2" />
<text x="1136.86" y="383.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1,074 samples, 0.16%)</title><rect x="111.6" y="437" width="1.9" height="15.0" fill="rgb(213,131,24)" rx="2" ry="2" />
<text x="114.63" y="447.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (459 samples, 0.07%)</title><rect x="197.4" y="101" width="0.8" height="15.0" fill="rgb(209,155,34)" rx="2" ry="2" />
<text x="200.39" y="111.5" ></text>
</g>
<g >
<title>__sigjmp_save (1,942 samples, 0.28%)</title><rect x="534.2" y="245" width="3.3" height="15.0" fill="rgb(208,184,21)" rx="2" ry="2" />
<text x="537.16" y="255.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::declare_ebb_header_block::h26e9e9b0a35fd899 (459 samples, 0.07%)</title><rect x="1161.0" y="405" width="0.7" height="15.0" fill="rgb(246,146,42)" rx="2" ry="2" />
<text x="1163.96" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3,166 samples, 0.46%)</title><rect x="761.2" y="261" width="5.4" height="15.0" fill="rgb(245,207,32)" rx="2" ry="2" />
<text x="764.23" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_1::hf4d83c62d16b3d32 (79 samples, 0.01%)</title><rect x="22.8" y="373" width="0.1" height="15.0" fill="rgb(210,8,42)" rx="2" ry="2" />
<text x="25.81" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (66 samples, 0.01%)</title><rect x="32.9" y="389" width="0.1" height="15.0" fill="rgb(253,202,38)" rx="2" ry="2" />
<text x="35.87" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5,944 samples, 0.86%)</title><rect x="176.6" y="341" width="10.1" height="15.0" fill="rgb(238,85,24)" rx="2" ry="2" />
<text x="179.55" 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$::new::hdd218dfdff200fb3 (819 samples, 0.12%)</title><rect x="236.6" y="293" width="1.4" height="15.0" fill="rgb(246,30,8)" rx="2" ry="2" />
<text x="239.60" y="303.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 (813 samples, 0.12%)</title><rect x="1176.9" y="421" width="1.4" height="15.0" fill="rgb(248,14,49)" rx="2" ry="2" />
<text x="1179.92" y="431.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (171 samples, 0.02%)</title><rect x="13.7" y="341" width="0.3" height="15.0" fill="rgb(245,35,7)" rx="2" ry="2" />
<text x="16.70" y="351.5" ></text>
</g>
<g >
<title>std::collections::hash::map::RandomState::new::KEYS::__getit::hc919284a97fb9164 (169 samples, 0.02%)</title><rect x="495.5" y="261" width="0.3" height="15.0" fill="rgb(212,96,48)" rx="2" ry="2" />
<text x="498.52" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (115 samples, 0.02%)</title><rect x="501.4" y="261" width="0.2" height="15.0" fill="rgb(250,186,11)" rx="2" ry="2" />
<text x="504.42" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (73 samples, 0.01%)</title><rect x="84.1" y="245" width="0.1" height="15.0" fill="rgb(217,227,24)" rx="2" ry="2" />
<text x="87.08" y="255.5" ></text>
</g>
<g >
<title>__rdl_realloc (378 samples, 0.05%)</title><rect x="1056.3" y="309" width="0.6" height="15.0" fill="rgb(220,45,29)" rx="2" ry="2" />
<text x="1059.29" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3,930 samples, 0.57%)</title><rect x="134.2" y="277" width="6.7" height="15.0" fill="rgb(253,68,1)" rx="2" ry="2" />
<text x="137.18" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (7,725 samples, 1.12%)</title><rect x="794.3" y="293" width="13.3" height="15.0" fill="rgb(219,127,33)" rx="2" ry="2" />
<text x="797.35" y="303.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::check_section_end::h80796459380c08b2 (160 samples, 0.02%)</title><rect x="499.1" y="245" width="0.3" height="15.0" fill="rgb(226,199,18)" rx="2" ry="2" />
<text x="502.08" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (155 samples, 0.02%)</title><rect x="1179.8" y="405" width="0.2" height="15.0" fill="rgb(241,41,47)" rx="2" ry="2" />
<text x="1182.78" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (64 samples, 0.01%)</title><rect x="1161.3" y="341" width="0.1" height="15.0" fill="rgb(244,67,35)" rx="2" ry="2" />
<text x="1164.33" y="351.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (187 samples, 0.03%)</title><rect x="47.6" y="325" width="0.3" height="15.0" fill="rgb(249,206,10)" rx="2" ry="2" />
<text x="50.62" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (510 samples, 0.07%)</title><rect x="210.2" y="245" width="0.9" height="15.0" fill="rgb(246,8,43)" rx="2" ry="2" />
<text x="213.23" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (98 samples, 0.01%)</title><rect x="1142.0" y="389" width="0.1" height="15.0" fill="rgb(224,170,53)" rx="2" ry="2" />
<text x="1144.96" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (75 samples, 0.01%)</title><rect x="1160.8" y="389" width="0.2" height="15.0" fill="rgb(213,157,26)" rx="2" ry="2" />
<text x="1163.83" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (8,158 samples, 1.18%)</title><rect x="1083.4" y="325" width="13.9" height="15.0" fill="rgb(252,16,11)" rx="2" ry="2" />
<text x="1086.38" 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 (2,318 samples, 0.34%)</title><rect x="533.6" y="277" width="3.9" height="15.0" fill="rgb(243,28,43)" rx="2" ry="2" />
<text x="536.55" y="287.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (376 samples, 0.05%)</title><rect x="235.3" y="69" width="0.6" height="15.0" fill="rgb(249,185,3)" rx="2" ry="2" />
<text x="238.25" y="79.5" ></text>
</g>
<g >
<title>_int_realloc (5,997 samples, 0.87%)</title><rect x="1087.1" y="309" width="10.2" height="15.0" fill="rgb(240,216,6)" rx="2" ry="2" />
<text x="1090.08" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (88 samples, 0.01%)</title><rect x="26.7" y="373" width="0.2" height="15.0" fill="rgb(232,111,49)" rx="2" ry="2" />
<text x="29.72" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (813 samples, 0.12%)</title><rect x="1176.9" y="549" width="1.4" height="15.0" fill="rgb(220,211,32)" rx="2" ry="2" />
<text x="1179.92" y="559.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 (59 samples, 0.01%)</title><rect x="12.2" y="389" width="0.1" height="15.0" fill="rgb(223,122,38)" rx="2" ry="2" />
<text x="15.17" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (759 samples, 0.11%)</title><rect x="440.2" y="245" width="1.3" height="15.0" fill="rgb(240,46,0)" rx="2" ry="2" />
<text x="443.20" y="255.5" ></text>
</g>
<g >
<title>__rust_realloc (64 samples, 0.01%)</title><rect x="647.1" y="245" width="0.2" height="15.0" fill="rgb(242,6,2)" rx="2" ry="2" />
<text x="650.14" y="255.5" ></text>
</g>
<g >
<title>indexmap::map::IndexMap$LT$K$C$V$C$S$GT$::get::hc0ee14fbd61fce30 (150 samples, 0.02%)</title><rect x="537.7" y="325" width="0.3" height="15.0" fill="rgb(210,146,54)" rx="2" ry="2" />
<text x="540.74" y="335.5" ></text>
</g>
<g >
<title>malloc_consolidate (352 samples, 0.05%)</title><rect x="210.5" y="229" width="0.6" height="15.0" fill="rgb(243,87,1)" rx="2" ry="2" />
<text x="213.49" y="239.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (90 samples, 0.01%)</title><rect x="500.7" y="261" width="0.1" height="15.0" fill="rgb(242,15,50)" rx="2" ry="2" />
<text x="503.66" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (60 samples, 0.01%)</title><rect x="97.3" y="277" width="0.1" height="15.0" fill="rgb(233,148,45)" rx="2" ry="2" />
<text x="100.27" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,871 samples, 0.27%)</title><rect x="607.7" y="293" width="3.2" height="15.0" fill="rgb(225,141,1)" rx="2" ry="2" />
<text x="610.73" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (71 samples, 0.01%)</title><rect x="67.1" y="309" width="0.1" height="15.0" fill="rgb(236,74,9)" rx="2" ry="2" />
<text x="70.09" y="319.5" ></text>
</g>
<g >
<title>__GI___mprotect (5,009 samples, 0.73%)</title><rect x="1146.4" y="405" width="8.6" height="15.0" fill="rgb(233,17,15)" rx="2" ry="2" />
<text x="1149.44" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (285 samples, 0.04%)</title><rect x="1178.3" y="405" width="0.5" height="15.0" fill="rgb(248,160,23)" rx="2" ry="2" />
<text x="1181.31" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (227 samples, 0.03%)</title><rect x="1181.5" y="405" width="0.4" height="15.0" fill="rgb(225,75,54)" rx="2" ry="2" />
<text x="1184.54" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (66 samples, 0.01%)</title><rect x="1160.5" y="325" width="0.1" height="15.0" fill="rgb(237,123,36)" rx="2" ry="2" />
<text x="1163.47" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (114 samples, 0.02%)</title><rect x="23.4" y="373" width="0.2" height="15.0" fill="rgb(245,40,51)" rx="2" ry="2" />
<text x="26.40" y="383.5" ></text>
</g>
<g >
<title>_start (592,735 samples, 85.93%)</title><rect x="113.5" y="549" width="1013.9" height="15.0" fill="rgb(221,44,52)" rx="2" ry="2" />
<text x="116.48" y="559.5" >_start</text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (2,248 samples, 0.33%)</title><rect x="533.7" y="261" width="3.8" height="15.0" fill="rgb(205,220,3)" rx="2" ry="2" />
<text x="536.67" y="271.5" ></text>
</g>
<g >
<title>malloc_printerr (63 samples, 0.01%)</title><rect x="1019.7" y="277" width="0.1" height="15.0" fill="rgb(244,119,38)" rx="2" ry="2" />
<text x="1022.73" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (66 samples, 0.01%)</title><rect x="1184.5" y="485" width="0.2" height="15.0" fill="rgb(252,17,34)" rx="2" ry="2" />
<text x="1187.54" y="495.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (1,228 samples, 0.18%)</title><rect x="1174.8" y="341" width="2.1" height="15.0" fill="rgb(218,209,38)" rx="2" ry="2" />
<text x="1177.81" y="351.5" ></text>
</g>
<g >
<title>__rust_alloc (69 samples, 0.01%)</title><rect x="438.3" y="229" width="0.1" height="15.0" fill="rgb(235,165,5)" rx="2" ry="2" />
<text x="441.29" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6,076 samples, 0.88%)</title><rect x="611.4" y="293" width="10.4" height="15.0" fill="rgb(253,142,16)" rx="2" ry="2" />
<text x="614.45" y="303.5" ></text>
</g>
<g >
<title>_int_free (1,509 samples, 0.22%)</title><rect x="1091.3" y="293" width="2.6" height="15.0" fill="rgb(232,106,24)" rx="2" ry="2" />
<text x="1094.30" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (371 samples, 0.05%)</title><rect x="70.0" y="325" width="0.6" height="15.0" fill="rgb(245,87,46)" rx="2" ry="2" />
<text x="72.97" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (181 samples, 0.03%)</title><rect x="501.3" y="277" width="0.3" height="15.0" fill="rgb(234,204,1)" rx="2" ry="2" />
<text x="504.30" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (66 samples, 0.01%)</title><rect x="1140.8" y="357" width="0.1" height="15.0" fill="rgb(231,165,24)" rx="2" ry="2" />
<text x="1143.82" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (643 samples, 0.09%)</title><rect x="53.9" y="277" width="1.1" height="15.0" fill="rgb(238,69,41)" rx="2" ry="2" />
<text x="56.90" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (121 samples, 0.02%)</title><rect x="538.0" y="325" width="0.2" height="15.0" fill="rgb(254,180,50)" rx="2" ry="2" />
<text x="541.00" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (196 samples, 0.03%)</title><rect x="684.8" y="245" width="0.3" height="15.0" fill="rgb(223,110,14)" rx="2" ry="2" />
<text x="687.78" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (293 samples, 0.04%)</title><rect x="58.0" y="277" width="0.5" height="15.0" fill="rgb(249,184,5)" rx="2" ry="2" />
<text x="60.99" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (6,567 samples, 0.95%)</title><rect x="1162.9" y="437" width="11.3" height="15.0" fill="rgb(247,174,50)" rx="2" ry="2" />
<text x="1165.93" y="447.5" ></text>
</g>
<g >
<title>_int_realloc (231 samples, 0.03%)</title><rect x="1183.3" y="357" width="0.4" height="15.0" fill="rgb(238,204,13)" rx="2" ry="2" />
<text x="1186.29" 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 (84 samples, 0.01%)</title><rect x="15.4" y="357" width="0.1" height="15.0" fill="rgb(207,210,19)" rx="2" ry="2" />
<text x="18.36" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (6,058 samples, 0.88%)</title><rect x="1072.2" y="325" width="10.4" height="15.0" fill="rgb(225,31,22)" rx="2" ry="2" />
<text x="1075.22" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (61 samples, 0.01%)</title><rect x="35.1" y="325" width="0.1" height="15.0" fill="rgb(221,117,6)" rx="2" ry="2" />
<text x="38.13" y="335.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (207,944 samples, 30.15%)</title><rect x="186.8" y="357" width="355.8" height="15.0" fill="rgb(210,13,48)" rx="2" ry="2" />
<text x="189.85" y="367.5" >_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$..</text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (1,228 samples, 0.18%)</title><rect x="1174.8" y="389" width="2.1" height="15.0" fill="rgb(252,123,53)" rx="2" ry="2" />
<text x="1177.81" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (76 samples, 0.01%)</title><rect x="1170.9" y="373" width="0.2" height="15.0" fill="rgb(242,138,36)" rx="2" ry="2" />
<text x="1173.94" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (550 samples, 0.08%)</title><rect x="210.2" y="261" width="0.9" height="15.0" fill="rgb(254,101,30)" rx="2" ry="2" />
<text x="213.16" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (84 samples, 0.01%)</title><rect x="109.8" y="389" width="0.2" height="15.0" fill="rgb(213,89,49)" rx="2" ry="2" />
<text x="112.83" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h81fdc17dfe3ce6d5 (74 samples, 0.01%)</title><rect x="204.3" y="309" width="0.1" height="15.0" fill="rgb(226,97,45)" rx="2" ry="2" />
<text x="207.27" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (64 samples, 0.01%)</title><rect x="529.2" y="325" width="0.1" height="15.0" fill="rgb(211,57,25)" rx="2" ry="2" />
<text x="532.23" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (198 samples, 0.03%)</title><rect x="1162.9" y="421" width="0.4" height="15.0" fill="rgb(221,72,46)" rx="2" ry="2" />
<text x="1165.93" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (2,440 samples, 0.35%)</title><rect x="457.0" y="261" width="4.2" height="15.0" fill="rgb(250,13,7)" rx="2" ry="2" />
<text x="460.04" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (148 samples, 0.02%)</title><rect x="40.7" y="357" width="0.3" height="15.0" fill="rgb(229,36,15)" rx="2" ry="2" />
<text x="43.73" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (63 samples, 0.01%)</title><rect x="1182.5" y="421" width="0.1" height="15.0" fill="rgb(248,166,9)" rx="2" ry="2" />
<text x="1185.47" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (165 samples, 0.02%)</title><rect x="1173.9" y="405" width="0.2" height="15.0" fill="rgb(233,172,34)" rx="2" ry="2" />
<text x="1176.86" y="415.5" ></text>
</g>
<g >
<title>_int_free (76 samples, 0.01%)</title><rect x="109.5" y="357" width="0.1" height="15.0" fill="rgb(236,57,1)" rx="2" ry="2" />
<text x="112.48" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (67 samples, 0.01%)</title><rect x="1169.8" y="357" width="0.1" height="15.0" fill="rgb(233,59,48)" rx="2" ry="2" />
<text x="1172.79" y="367.5" ></text>
</g>
<g >
<title>split_vma (488 samples, 0.07%)</title><rect x="1153.3" y="309" width="0.8" height="15.0" fill="rgb(251,73,10)" rx="2" ry="2" />
<text x="1156.31" y="319.5" ></text>
</g>
<g >
<title>__rdl_dealloc (85 samples, 0.01%)</title><rect x="556.7" y="341" width="0.1" height="15.0" fill="rgb(228,214,28)" rx="2" ry="2" />
<text x="559.67" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (75 samples, 0.01%)</title><rect x="1141.1" y="389" width="0.1" height="15.0" fill="rgb(238,121,10)" rx="2" ry="2" />
<text x="1144.07" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::dce::do_dce::h45d4354699d5d0cc (716 samples, 0.10%)</title><rect x="67.4" y="341" width="1.2" height="15.0" fill="rgb(242,61,25)" rx="2" ry="2" />
<text x="70.38" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (264 samples, 0.04%)</title><rect x="1183.3" y="437" width="0.4" height="15.0" fill="rgb(241,49,30)" rx="2" ry="2" />
<text x="1186.29" y="447.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (179 samples, 0.03%)</title><rect x="461.2" y="277" width="0.3" height="15.0" fill="rgb(215,70,38)" rx="2" ry="2" />
<text x="464.21" y="287.5" ></text>
</g>
<g >
<title>__rdl_alloc (79 samples, 0.01%)</title><rect x="164.6" y="309" width="0.2" height="15.0" fill="rgb(252,194,3)" rx="2" ry="2" />
<text x="167.62" y="319.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (154 samples, 0.02%)</title><rect x="525.4" y="165" width="0.3" height="15.0" fill="rgb(214,1,24)" rx="2" ry="2" />
<text x="528.41" y="175.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (589 samples, 0.09%)</title><rect x="1149.8" y="277" width="1.0" height="15.0" fill="rgb(236,12,31)" rx="2" ry="2" />
<text x="1152.83" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,954 samples, 0.28%)</title><rect x="666.1" y="261" width="3.3" height="15.0" fill="rgb(254,14,53)" rx="2" ry="2" />
<text x="669.06" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (798 samples, 0.12%)</title><rect x="105.0" y="437" width="1.4" height="15.0" fill="rgb(221,75,14)" rx="2" ry="2" />
<text x="108.01" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (134 samples, 0.02%)</title><rect x="69.5" y="309" width="0.2" height="15.0" fill="rgb(253,194,40)" rx="2" ry="2" />
<text x="72.50" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5333cea73f0fa9cd (565 samples, 0.08%)</title><rect x="210.2" y="277" width="0.9" height="15.0" fill="rgb(232,19,44)" rx="2" ry="2" />
<text x="213.16" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (1,463 samples, 0.21%)</title><rect x="17.5" y="421" width="2.5" height="15.0" fill="rgb(252,120,19)" rx="2" ry="2" />
<text x="20.53" y="431.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (65 samples, 0.01%)</title><rect x="1170.2" y="325" width="0.1" height="15.0" fill="rgb(216,62,6)" rx="2" ry="2" />
<text x="1173.21" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (65 samples, 0.01%)</title><rect x="1184.3" y="357" width="0.1" height="15.0" fill="rgb(221,33,34)" rx="2" ry="2" />
<text x="1187.26" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (948 samples, 0.14%)</title><rect x="58.6" y="293" width="1.6" height="15.0" fill="rgb(242,173,19)" rx="2" ry="2" />
<text x="61.59" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (101 samples, 0.01%)</title><rect x="525.5" y="133" width="0.2" height="15.0" fill="rgb(251,106,30)" rx="2" ry="2" />
<text x="528.49" y="143.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h46d48c74cb3cbfdc (162 samples, 0.02%)</title><rect x="1097.8" y="341" width="0.3" height="15.0" fill="rgb(244,100,35)" rx="2" ry="2" />
<text x="1100.78" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (613 samples, 0.09%)</title><rect x="1166.0" y="405" width="1.1" height="15.0" fill="rgb(230,21,28)" rx="2" ry="2" />
<text x="1169.03" y="415.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (102 samples, 0.01%)</title><rect x="80.5" y="293" width="0.2" height="15.0" fill="rgb(252,13,38)" rx="2" ry="2" />
<text x="83.50" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (95 samples, 0.01%)</title><rect x="70.9" y="293" width="0.2" height="15.0" fill="rgb(245,128,10)" rx="2" ry="2" />
<text x="73.93" y="303.5" ></text>
</g>
<g >
<title>main (592,735 samples, 85.93%)</title><rect x="113.5" y="517" width="1013.9" height="15.0" fill="rgb(246,119,40)" rx="2" ry="2" />
<text x="116.48" y="527.5" >main</text>
</g>
<g >
<title>__GI___libc_free (125 samples, 0.02%)</title><rect x="109.4" y="373" width="0.2" height="15.0" fill="rgb(225,52,20)" rx="2" ry="2" />
<text x="112.39" y="383.5" ></text>
</g>
<g >
<title>_int_free (1,835 samples, 0.27%)</title><rect x="322.0" y="197" width="3.2" height="15.0" fill="rgb(252,153,28)" rx="2" ry="2" />
<text x="325.05" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,816 samples, 0.41%)</title><rect x="761.7" y="245" width="4.8" height="15.0" fill="rgb(229,229,8)" rx="2" ry="2" />
<text x="764.68" y="255.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (65 samples, 0.01%)</title><rect x="38.5" y="389" width="0.1" height="15.0" fill="rgb(239,142,24)" rx="2" ry="2" />
<text x="41.50" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (72 samples, 0.01%)</title><rect x="1183.1" y="373" width="0.1" height="15.0" fill="rgb(239,164,51)" rx="2" ry="2" />
<text x="1186.12" y="383.5" ></text>
</g>
<g >
<title>_int_free (3,579 samples, 0.52%)</title><rect x="447.9" y="261" width="6.1" height="15.0" fill="rgb(252,36,17)" rx="2" ry="2" />
<text x="450.87" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (167 samples, 0.02%)</title><rect x="175.9" y="309" width="0.3" height="15.0" fill="rgb(226,145,6)" rx="2" ry="2" />
<text x="178.94" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (71 samples, 0.01%)</title><rect x="58.4" y="245" width="0.1" height="15.0" fill="rgb(241,145,41)" rx="2" ry="2" />
<text x="61.37" y="255.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (93 samples, 0.01%)</title><rect x="1174.7" y="517" width="0.1" height="15.0" fill="rgb(242,184,52)" rx="2" ry="2" />
<text x="1177.66" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (12,299 samples, 1.78%)</title><rect x="731.6" y="245" width="21.0" height="15.0" fill="rgb(207,198,21)" rx="2" ry="2" />
<text x="734.59" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (127 samples, 0.02%)</title><rect x="1159.6" y="421" width="0.2" height="15.0" fill="rgb(240,83,2)" rx="2" ry="2" />
<text x="1162.57" y="431.5" ></text>
</g>
<g >
<title>_int_free (156 samples, 0.02%)</title><rect x="222.5" y="245" width="0.3" height="15.0" fill="rgb(232,170,31)" rx="2" ry="2" />
<text x="225.49" y="255.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (92 samples, 0.01%)</title><rect x="1124.7" y="309" width="0.1" height="15.0" fill="rgb(226,60,46)" rx="2" ry="2" />
<text x="1127.67" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (60 samples, 0.01%)</title><rect x="74.2" y="309" width="0.1" height="15.0" fill="rgb(227,204,43)" rx="2" ry="2" />
<text x="77.15" y="319.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (91 samples, 0.01%)</title><rect x="65.7" y="277" width="0.2" height="15.0" fill="rgb(207,7,3)" rx="2" ry="2" />
<text x="68.74" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (77 samples, 0.01%)</title><rect x="1178.4" y="357" width="0.2" height="15.0" fill="rgb(209,164,50)" rx="2" ry="2" />
<text x="1181.42" y="367.5" ></text>
</g>
<g >
<title>_int_realloc (115 samples, 0.02%)</title><rect x="13.8" y="293" width="0.2" height="15.0" fill="rgb(206,191,35)" rx="2" ry="2" />
<text x="16.79" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (2,273 samples, 0.33%)</title><rect x="1178.3" y="533" width="3.9" height="15.0" fill="rgb(250,36,53)" rx="2" ry="2" />
<text x="1181.31" y="543.5" ></text>
</g>
<g >
<title>cranelift_bforest::map::Map$LT$K$C$V$GT$::insert::h73d5aa0753b93df7 (111 samples, 0.02%)</title><rect x="71.6" y="309" width="0.2" height="15.0" fill="rgb(225,101,50)" rx="2" ry="2" />
<text x="74.56" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (62 samples, 0.01%)</title><rect x="76.8" y="309" width="0.1" height="15.0" fill="rgb(208,184,54)" rx="2" ry="2" />
<text x="79.77" y="319.5" ></text>
</g>
<g >
<title>sys_mmap (2,102 samples, 0.30%)</title><rect x="233.0" y="197" width="3.6" height="15.0" fill="rgb(238,48,28)" rx="2" ry="2" />
<text x="235.96" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (217 samples, 0.03%)</title><rect x="1180.9" y="405" width="0.4" height="15.0" fill="rgb(239,135,44)" rx="2" ry="2" />
<text x="1183.90" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (73 samples, 0.01%)</title><rect x="1178.6" y="341" width="0.1" height="15.0" fill="rgb(251,157,45)" rx="2" ry="2" />
<text x="1181.60" y="351.5" ></text>
</g>
<g >
<title>_ZN19wasmer_clif_backend6signal4unix19signal_trap_handler17ha55e59a207213c20E.llvm.3171045979873438245 (428 samples, 0.06%)</title><rect x="10.3" y="533" width="0.8" height="15.0" fill="rgb(233,104,41)" rx="2" ry="2" />
<text x="13.32" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_free (378 samples, 0.05%)</title><rect x="1135.5" y="389" width="0.7" height="15.0" fill="rgb(251,195,33)" rx="2" ry="2" />
<text x="1138.52" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (333 samples, 0.05%)</title><rect x="1136.5" y="421" width="0.5" height="15.0" fill="rgb(226,190,51)" rx="2" ry="2" />
<text x="1139.47" y="431.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_fork_frontend..frontend..FuncInstBuilder$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h31ca9581c4035409 (178 samples, 0.03%)</title><rect x="497.0" y="261" width="0.3" height="15.0" fill="rgb(242,217,7)" rx="2" ry="2" />
<text x="499.98" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (231 samples, 0.03%)</title><rect x="1183.3" y="373" width="0.4" height="15.0" fill="rgb(232,152,53)" rx="2" ry="2" />
<text x="1186.29" y="383.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (5,860 samples, 0.85%)</title><rect x="350.1" y="213" width="10.0" height="15.0" fill="rgb(231,203,51)" rx="2" ry="2" />
<text x="353.09" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (176 samples, 0.03%)</title><rect x="580.0" y="341" width="0.3" height="15.0" fill="rgb(220,62,32)" rx="2" ry="2" />
<text x="583.04" y="351.5" ></text>
</g>
<g >
<title>_int_free (2,380 samples, 0.35%)</title><rect x="1109.5" y="309" width="4.1" height="15.0" fill="rgb(213,24,45)" rx="2" ry="2" />
<text x="1112.49" y="319.5" ></text>
</g>
<g >
<title>change_protection_range (385 samples, 0.06%)</title><rect x="216.7" y="133" width="0.7" height="15.0" fill="rgb(218,64,28)" rx="2" ry="2" />
<text x="219.73" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (248 samples, 0.04%)</title><rect x="86.2" y="309" width="0.4" height="15.0" fill="rgb(227,225,31)" rx="2" ry="2" />
<text x="89.16" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (1,260 samples, 0.18%)</title><rect x="156.2" y="293" width="2.1" height="15.0" fill="rgb(213,174,31)" rx="2" ry="2" />
<text x="159.17" y="303.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hecc58545c2033bf4 (351 samples, 0.05%)</title><rect x="203.9" y="341" width="0.6" height="15.0" fill="rgb(228,80,30)" rx="2" ry="2" />
<text x="206.89" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (756 samples, 0.11%)</title><rect x="780.5" y="229" width="1.3" height="15.0" fill="rgb(207,125,2)" rx="2" ry="2" />
<text x="783.54" y="239.5" ></text>
</g>
<g >
<title>_int_free (158 samples, 0.02%)</title><rect x="1129.5" y="405" width="0.3" height="15.0" fill="rgb(219,18,33)" rx="2" ry="2" />
<text x="1132.49" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4,222 samples, 0.61%)</title><rect x="454.0" y="277" width="7.2" height="15.0" fill="rgb(252,166,40)" rx="2" ry="2" />
<text x="456.99" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (146 samples, 0.02%)</title><rect x="899.0" y="341" width="0.2" height="15.0" fill="rgb(241,136,50)" rx="2" ry="2" />
<text x="901.98" y="351.5" ></text>
</g>
<g >
<title>__vma_adjust (283 samples, 0.04%)</title><rect x="1154.2" y="293" width="0.5" height="15.0" fill="rgb(231,60,27)" rx="2" ry="2" />
<text x="1157.22" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (87 samples, 0.01%)</title><rect x="1136.9" y="405" width="0.1" height="15.0" fill="rgb(237,100,0)" rx="2" ry="2" />
<text x="1139.89" y="415.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hed7bc371c65279af (88 samples, 0.01%)</title><rect x="42.3" y="357" width="0.1" height="15.0" fill="rgb(244,138,53)" rx="2" ry="2" />
<text x="45.30" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (147 samples, 0.02%)</title><rect x="1182.6" y="357" width="0.3" height="15.0" fill="rgb(209,31,0)" rx="2" ry="2" />
<text x="1185.64" y="367.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (708 samples, 0.10%)</title><rect x="205.1" y="325" width="1.2" height="15.0" fill="rgb(220,154,31)" rx="2" ry="2" />
<text x="208.13" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::add_kill::h253158fd0df01fa2 (69 samples, 0.01%)</title><rect x="86.0" y="309" width="0.1" height="15.0" fill="rgb(205,141,11)" rx="2" ry="2" />
<text x="89.00" y="319.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::extend_from_slice::h9bc27f369d7a715c (139 samples, 0.02%)</title><rect x="148.2" y="245" width="0.2" height="15.0" fill="rgb(228,14,45)" rx="2" ry="2" />
<text x="151.16" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h6f689c5462342c94 (212 samples, 0.03%)</title><rect x="1158.7" y="421" width="0.4" height="15.0" fill="rgb(234,191,32)" rx="2" ry="2" />
<text x="1161.73" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2,469 samples, 0.36%)</title><rect x="670.6" y="245" width="4.2" height="15.0" fill="rgb(213,129,17)" rx="2" ry="2" />
<text x="673.60" y="255.5" ></text>
</g>
<g >
<title>_int_free (2,154 samples, 0.31%)</title><rect x="754.9" y="245" width="3.6" height="15.0" fill="rgb(209,228,20)" rx="2" ry="2" />
<text x="757.86" y="255.5" ></text>
</g>
<g >
<title>__rdl_alloc (89 samples, 0.01%)</title><rect x="158.3" y="309" width="0.2" height="15.0" fill="rgb(208,20,27)" rx="2" ry="2" />
<text x="161.33" y="319.5" ></text>
</g>
<g >
<title>vma_merge (340 samples, 0.05%)</title><rect x="1154.2" y="309" width="0.6" height="15.0" fill="rgb(221,53,43)" rx="2" ry="2" />
<text x="1157.18" y="319.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (1,094 samples, 0.16%)</title><rect x="1041.1" y="277" width="1.9" height="15.0" fill="rgb(236,134,12)" rx="2" ry="2" />
<text x="1044.10" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (130 samples, 0.02%)</title><rect x="1182.2" y="405" width="0.2" height="15.0" fill="rgb(241,133,54)" rx="2" ry="2" />
<text x="1185.20" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (148 samples, 0.02%)</title><rect x="1140.9" y="405" width="0.3" height="15.0" fill="rgb(205,39,52)" rx="2" ry="2" />
<text x="1143.95" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (552 samples, 0.08%)</title><rect x="532.4" y="277" width="0.9" height="15.0" fill="rgb(228,148,34)" rx="2" ry="2" />
<text x="535.38" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (199 samples, 0.03%)</title><rect x="59.0" y="261" width="0.3" height="15.0" fill="rgb(223,68,3)" rx="2" ry="2" />
<text x="61.97" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (201 samples, 0.03%)</title><rect x="85.7" y="309" width="0.3" height="15.0" fill="rgb(249,49,30)" rx="2" ry="2" />
<text x="88.66" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (94 samples, 0.01%)</title><rect x="1181.0" y="357" width="0.2" height="15.0" fill="rgb(244,48,24)" rx="2" ry="2" />
<text x="1184.04" y="367.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (8,105 samples, 1.17%)</title><rect x="397.4" y="245" width="13.9" height="15.0" fill="rgb(235,223,10)" rx="2" ry="2" />
<text x="400.39" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (12,123 samples, 1.76%)</title><rect x="559.3" y="357" width="20.7" height="15.0" fill="rgb(207,33,41)" rx="2" ry="2" />
<text x="562.30" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (88 samples, 0.01%)</title><rect x="26.7" y="341" width="0.2" height="15.0" fill="rgb(216,142,48)" rx="2" ry="2" />
<text x="29.72" 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 (2,541 samples, 0.37%)</title><rect x="106.4" y="485" width="4.3" height="15.0" fill="rgb(247,112,53)" rx="2" ry="2" />
<text x="109.38" y="495.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (306 samples, 0.04%)</title><rect x="1157.7" y="229" width="0.5" height="15.0" fill="rgb(224,52,45)" rx="2" ry="2" />
<text x="1160.67" y="239.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 (162 samples, 0.02%)</title><rect x="47.7" y="309" width="0.2" height="15.0" fill="rgb(232,154,53)" rx="2" ry="2" />
<text x="50.66" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (64 samples, 0.01%)</title><rect x="49.5" y="277" width="0.1" height="15.0" fill="rgb(251,42,36)" rx="2" ry="2" />
<text x="52.51" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (60 samples, 0.01%)</title><rect x="76.6" y="229" width="0.1" height="15.0" fill="rgb(221,89,26)" rx="2" ry="2" />
<text x="79.63" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (71 samples, 0.01%)</title><rect x="106.5" y="405" width="0.1" height="15.0" fill="rgb(253,36,32)" rx="2" ry="2" />
<text x="109.49" 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 (67 samples, 0.01%)</title><rect x="424.0" y="213" width="0.1" height="15.0" fill="rgb(226,153,26)" rx="2" ry="2" />
<text x="427.00" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (73 samples, 0.01%)</title><rect x="92.0" y="293" width="0.1" height="15.0" fill="rgb(235,191,31)" rx="2" ry="2" />
<text x="95.02" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (93 samples, 0.01%)</title><rect x="1170.9" y="389" width="0.2" height="15.0" fill="rgb(219,107,33)" rx="2" ry="2" />
<text x="1173.91" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (83 samples, 0.01%)</title><rect x="46.4" y="341" width="0.1" height="15.0" fill="rgb(220,83,40)" rx="2" ry="2" />
<text x="49.35" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (74 samples, 0.01%)</title><rect x="26.9" y="389" width="0.1" height="15.0" fill="rgb(220,119,23)" rx="2" ry="2" />
<text x="29.88" y="399.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h56d8944c190ba4ca (3,325 samples, 0.48%)</title><rect x="194.2" y="325" width="5.7" height="15.0" fill="rgb(232,130,29)" rx="2" ry="2" />
<text x="197.17" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (92 samples, 0.01%)</title><rect x="76.6" y="277" width="0.1" height="15.0" fill="rgb(232,189,21)" rx="2" ry="2" />
<text x="79.57" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,862 samples, 0.41%)</title><rect x="786.8" y="277" width="4.9" height="15.0" fill="rgb(248,166,29)" rx="2" ry="2" />
<text x="789.82" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (77 samples, 0.01%)</title><rect x="497.2" y="245" width="0.1" height="15.0" fill="rgb(220,46,49)" rx="2" ry="2" />
<text x="500.15" y="255.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_func::hbdb643ef237f3ef3 (75 samples, 0.01%)</title><rect x="541.9" y="277" width="0.2" height="15.0" fill="rgb(244,106,51)" rx="2" ry="2" />
<text x="544.95" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (20,749 samples, 3.01%)</title><rect x="1127.4" y="485" width="35.5" height="15.0" fill="rgb(229,220,38)" rx="2" ry="2" />
<text x="1130.44" y="495.5" >was..</text>
</g>
<g >
<title>wasmer_runtime_core::codegen::MiddlewareChain::run::hcbfec81dbf94244f (1,785 samples, 0.26%)</title><rect x="523.9" y="277" width="3.1" height="15.0" fill="rgb(242,28,47)" rx="2" ry="2" />
<text x="526.95" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (60 samples, 0.01%)</title><rect x="1140.4" y="341" width="0.1" height="15.0" fill="rgb(238,88,17)" rx="2" ry="2" />
<text x="1143.38" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (354 samples, 0.05%)</title><rect x="236.7" y="261" width="0.6" height="15.0" fill="rgb(228,196,12)" rx="2" ry="2" />
<text x="239.70" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (399 samples, 0.06%)</title><rect x="31.7" y="389" width="0.6" height="15.0" fill="rgb(209,92,53)" rx="2" ry="2" />
<text x="34.65" y="399.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (6,692 samples, 0.97%)</title><rect x="1162.9" y="533" width="11.5" height="15.0" fill="rgb(251,44,43)" rx="2" ry="2" />
<text x="1165.93" y="543.5" ></text>
</g>
<g >
<title>__memcpy_sse2 (1,081 samples, 0.16%)</title><rect x="1089.4" y="293" width="1.9" height="15.0" fill="rgb(239,153,52)" rx="2" ry="2" />
<text x="1092.45" y="303.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (91 samples, 0.01%)</title><rect x="1156.4" y="277" width="0.2" height="15.0" fill="rgb(242,172,9)" rx="2" ry="2" />
<text x="1159.45" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (1,369 samples, 0.20%)</title><rect x="1182.2" y="485" width="2.3" height="15.0" fill="rgb(242,16,33)" rx="2" ry="2" />
<text x="1185.20" y="495.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_file_header::h1f914f45bc503d90 (563 samples, 0.08%)</title><rect x="298.5" y="245" width="1.0" height="15.0" fill="rgb(223,8,24)" rx="2" ry="2" />
<text x="301.51" y="255.5" ></text>
</g>
<g >
<title>std::sync::mutex::Mutex$LT$T$GT$::new::he5341902ede916cb (217 samples, 0.03%)</title><rect x="529.4" y="325" width="0.4" height="15.0" fill="rgb(242,210,24)" rx="2" ry="2" />
<text x="532.44" 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 (39,019 samples, 5.66%)</title><rect x="39.6" y="549" width="66.8" height="15.0" fill="rgb(216,145,12)" rx="2" ry="2" />
<text x="42.63" y="559.5" >_$LT$wa..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h90000ec143ceb992 (3,644 samples, 0.53%)</title><rect x="381.7" y="261" width="6.3" height="15.0" fill="rgb(235,86,21)" rx="2" ry="2" />
<text x="384.73" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (73 samples, 0.01%)</title><rect x="211.4" y="261" width="0.1" height="15.0" fill="rgb(251,109,17)" rx="2" ry="2" />
<text x="214.41" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (163 samples, 0.02%)</title><rect x="1174.4" y="405" width="0.3" height="15.0" fill="rgb(252,67,6)" rx="2" ry="2" />
<text x="1177.38" y="415.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 (38,221 samples, 5.54%)</title><rect x="39.6" y="437" width="65.4" height="15.0" fill="rgb(214,197,19)" rx="2" ry="2" />
<text x="42.63" y="447.5" >_$LT$ra..</text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (18,292 samples, 2.65%)</title><rect x="1127.4" y="437" width="31.3" height="15.0" fill="rgb(250,201,34)" rx="2" ry="2" />
<text x="1130.44" y="447.5" >wa..</text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (102 samples, 0.01%)</title><rect x="1179.3" y="373" width="0.1" height="15.0" fill="rgb(240,66,37)" rx="2" ry="2" />
<text x="1182.26" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (179 samples, 0.03%)</title><rect x="105.5" y="373" width="0.3" height="15.0" fill="rgb(238,121,30)" rx="2" ry="2" />
<text x="108.53" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (108 samples, 0.02%)</title><rect x="56.4" y="309" width="0.2" height="15.0" fill="rgb(254,130,7)" rx="2" ry="2" />
<text x="59.45" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (4,686 samples, 0.68%)</title><rect x="1048.1" y="277" width="8.1" height="15.0" fill="rgb(236,166,42)" rx="2" ry="2" />
<text x="1051.14" y="287.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 (794 samples, 0.12%)</title><rect x="226.9" y="261" width="1.4" height="15.0" fill="rgb(224,153,37)" rx="2" ry="2" />
<text x="229.91" y="271.5" ></text>
</g>
<g >
<title>__split_vma (472 samples, 0.07%)</title><rect x="1153.3" y="293" width="0.8" height="15.0" fill="rgb(239,152,41)" rx="2" ry="2" />
<text x="1156.31" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (396 samples, 0.06%)</title><rect x="674.2" y="229" width="0.6" height="15.0" fill="rgb(243,203,4)" rx="2" ry="2" />
<text x="677.15" y="239.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (262 samples, 0.04%)</title><rect x="610.9" y="293" width="0.5" height="15.0" fill="rgb(239,37,42)" rx="2" ry="2" />
<text x="613.93" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (816 samples, 0.12%)</title><rect x="1167.2" y="373" width="1.4" height="15.0" fill="rgb(245,90,45)" rx="2" ry="2" />
<text x="1170.25" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::finalize::h91eab78c48207186 (4,991 samples, 0.72%)</title><rect x="212.1" y="277" width="8.5" height="15.0" fill="rgb(212,216,13)" rx="2" ry="2" />
<text x="215.06" y="287.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (74 samples, 0.01%)</title><rect x="104.7" y="277" width="0.2" height="15.0" fill="rgb(223,219,16)" rx="2" ry="2" />
<text x="107.73" y="287.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha8dc20cee05f0e84E.llvm.16938716460618634628 (174 samples, 0.03%)</title><rect x="97.6" y="277" width="0.3" height="15.0" fill="rgb(233,174,42)" rx="2" ry="2" />
<text x="100.63" y="287.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17ha4062a2c7a6e2cb5E.llvm.16938716460618634628 (710 samples, 0.10%)</title><rect x="101.5" y="309" width="1.2" height="15.0" fill="rgb(234,68,11)" rx="2" ry="2" />
<text x="104.45" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (91 samples, 0.01%)</title><rect x="1176.1" y="309" width="0.2" height="15.0" fill="rgb(217,131,10)" rx="2" ry="2" />
<text x="1179.15" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (65 samples, 0.01%)</title><rect x="1140.4" y="357" width="0.1" height="15.0" fill="rgb(232,89,17)" rx="2" ry="2" />
<text x="1143.37" y="367.5" ></text>
</g>
<g >
<title>_int_free (6,862 samples, 0.99%)</title><rect x="818.1" y="277" width="11.7" height="15.0" fill="rgb(245,16,41)" rx="2" ry="2" />
<text x="821.07" y="287.5" ></text>
</g>
<g >
<title>__lock_text_start (159 samples, 0.02%)</title><rect x="196.8" y="101" width="0.3" height="15.0" fill="rgb(245,170,44)" rx="2" ry="2" />
<text x="199.84" y="111.5" ></text>
</g>
<g >
<title>unmapped_area_topdown (82 samples, 0.01%)</title><rect x="1156.1" y="261" width="0.2" height="15.0" fill="rgb(230,181,17)" rx="2" ry="2" />
<text x="1159.13" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::builder::he3e45f2b2c57aae6 (74 samples, 0.01%)</title><rect x="237.8" y="261" width="0.2" height="15.0" fill="rgb(227,49,9)" rx="2" ry="2" />
<text x="240.84" y="271.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 (16,049 samples, 2.33%)</title><rect x="12.2" y="501" width="27.4" height="15.0" fill="rgb(209,204,17)" rx="2" ry="2" />
<text x="15.17" y="511.5" >_..</text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (130 samples, 0.02%)</title><rect x="65.7" y="309" width="0.2" height="15.0" fill="rgb(215,20,2)" rx="2" ry="2" />
<text x="68.67" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (99 samples, 0.01%)</title><rect x="1183.1" y="421" width="0.2" height="15.0" fill="rgb(209,17,45)" rx="2" ry="2" />
<text x="1186.12" y="431.5" ></text>
</g>
<g >
<title>__libc_siglongjmp (211 samples, 0.03%)</title><rect x="10.7" y="501" width="0.3" height="15.0" fill="rgb(244,24,19)" rx="2" ry="2" />
<text x="13.68" y="511.5" ></text>
</g>
<g >
<title>std::thread::local::fast::Key$LT$T$GT$::get::h1843b0ce52f9035a (76 samples, 0.01%)</title><rect x="495.7" y="245" width="0.1" height="15.0" fill="rgb(233,206,28)" rx="2" ry="2" />
<text x="498.68" 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 (246 samples, 0.04%)</title><rect x="84.4" y="293" width="0.5" height="15.0" fill="rgb(223,195,46)" rx="2" ry="2" />
<text x="87.44" y="303.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (125 samples, 0.02%)</title><rect x="500.8" y="261" width="0.2" height="15.0" fill="rgb(216,50,11)" rx="2" ry="2" />
<text x="503.81" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (68 samples, 0.01%)</title><rect x="18.5" y="389" width="0.1" height="15.0" fill="rgb(210,213,51)" rx="2" ry="2" />
<text x="21.45" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (5,801 samples, 0.84%)</title><rect x="474.2" y="261" width="10.0" height="15.0" fill="rgb(229,187,54)" rx="2" ry="2" />
<text x="477.23" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (362 samples, 0.05%)</title><rect x="728.1" y="213" width="0.6" height="15.0" fill="rgb(225,89,53)" rx="2" ry="2" />
<text x="731.06" y="223.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (213 samples, 0.03%)</title><rect x="219.6" y="101" width="0.4" height="15.0" fill="rgb(240,15,17)" rx="2" ry="2" />
<text x="222.63" y="111.5" ></text>
</g>
<g >
<title>__rdl_realloc (316 samples, 0.05%)</title><rect x="807.6" y="293" width="0.5" height="15.0" fill="rgb(214,141,12)" rx="2" ry="2" />
<text x="810.56" y="303.5" ></text>
</g>
<g >
<title>__vma_adjust (174 samples, 0.03%)</title><rect x="195.4" y="149" width="0.3" height="15.0" fill="rgb(248,147,30)" rx="2" ry="2" />
<text x="198.36" y="159.5" ></text>
</g>
<g >
<title>core::ptr::align_offset::had9fe9d662c4839f (59 samples, 0.01%)</title><rect x="334.7" y="149" width="0.1" height="15.0" fill="rgb(226,96,15)" rx="2" ry="2" />
<text x="337.68" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_free (100 samples, 0.01%)</title><rect x="109.6" y="373" width="0.2" height="15.0" fill="rgb(252,36,26)" rx="2" ry="2" />
<text x="112.65" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (75 samples, 0.01%)</title><rect x="1160.8" y="405" width="0.2" height="15.0" fill="rgb(220,139,17)" rx="2" ry="2" />
<text x="1163.83" y="415.5" ></text>
</g>
<g >
<title>__rdl_dealloc (120 samples, 0.02%)</title><rect x="831.9" y="293" width="0.2" height="15.0" fill="rgb(243,97,37)" rx="2" ry="2" />
<text x="834.85" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4dff7b93bd7502e8 (103 samples, 0.01%)</title><rect x="212.2" y="261" width="0.1" height="15.0" fill="rgb(245,151,42)" rx="2" ry="2" />
<text x="215.17" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (194 samples, 0.03%)</title><rect x="782.6" y="261" width="0.3" height="15.0" fill="rgb(233,17,10)" rx="2" ry="2" />
<text x="785.57" y="271.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$17try_with_capacity17h973883eb89d53af0E.llvm.15158078102622578017 (195 samples, 0.03%)</title><rect x="1129.0" y="421" width="0.3" height="15.0" fill="rgb(217,21,29)" rx="2" ry="2" />
<text x="1132.00" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (97 samples, 0.01%)</title><rect x="1166.7" y="341" width="0.2" height="15.0" fill="rgb(219,25,1)" rx="2" ry="2" />
<text x="1169.69" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liverange::GenericLiveRange$LT$PO$GT$::extend_in_ebb::hbdb01049c0b9a2e0 (170 samples, 0.02%)</title><rect x="90.6" y="309" width="0.3" height="15.0" fill="rgb(207,52,2)" rx="2" ry="2" />
<text x="93.58" y="319.5" ></text>
</g>
<g >
<title>__sigprocmask (3,009 samples, 0.44%)</title><rect x="1184.8" y="533" width="5.2" height="15.0" fill="rgb(234,206,22)" rx="2" ry="2" />
<text x="1187.84" y="543.5" ></text>
</g>
<g >
<title>copy_user_generic_unrolled (185 samples, 0.03%)</title><rect x="1189.4" y="469" width="0.3" height="15.0" fill="rgb(227,56,52)" rx="2" ry="2" />
<text x="1192.42" y="479.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h01c6f1483464e918 (12,843 samples, 1.86%)</title><rect x="124.0" y="325" width="21.9" height="15.0" fill="rgb(215,155,52)" rx="2" ry="2" />
<text x="126.97" y="335.5" >_..</text>
</g>
<g >
<title>wasmer_runtime_core::module::Module::instantiate::h6d7aa260ea24db84 (2,547 samples, 0.37%)</title><rect x="538.2" y="341" width="4.4" height="15.0" fill="rgb(252,180,22)" rx="2" ry="2" />
<text x="541.21" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (320 samples, 0.05%)</title><rect x="669.4" y="261" width="0.5" height="15.0" fill="rgb(227,55,48)" rx="2" ry="2" />
<text x="672.40" y="271.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h192c5818fa53fe5a (376 samples, 0.05%)</title><rect x="202.4" y="325" width="0.7" height="15.0" fill="rgb(242,61,28)" rx="2" ry="2" />
<text x="205.45" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (83 samples, 0.01%)</title><rect x="1146.1" y="389" width="0.2" height="15.0" fill="rgb(209,67,38)" rx="2" ry="2" />
<text x="1149.13" y="399.5" ></text>
</g>
<g >
<title>perf_output_copy (83 samples, 0.01%)</title><rect x="1153.0" y="245" width="0.1" height="15.0" fill="rgb(235,154,46)" rx="2" ry="2" />
<text x="1155.99" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (3,829 samples, 0.56%)</title><rect x="49.8" y="325" width="6.5" height="15.0" fill="rgb(234,125,27)" rx="2" ry="2" />
<text x="52.79" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (1,529 samples, 0.22%)</title><rect x="748.5" y="213" width="2.6" height="15.0" fill="rgb(243,116,30)" rx="2" ry="2" />
<text x="751.52" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (79 samples, 0.01%)</title><rect x="96.5" y="277" width="0.1" height="15.0" fill="rgb(242,145,30)" rx="2" ry="2" />
<text x="99.48" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (82 samples, 0.01%)</title><rect x="1161.8" y="405" width="0.1" height="15.0" fill="rgb(231,153,28)" rx="2" ry="2" />
<text x="1164.78" y="415.5" ></text>
</g>
<g >
<title>release_pages (75 samples, 0.01%)</title><rect x="197.1" y="101" width="0.2" height="15.0" fill="rgb(222,201,38)" rx="2" ry="2" />
<text x="200.14" y="111.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,690 samples, 0.39%)</title><rect x="159.8" y="309" width="4.6" height="15.0" fill="rgb(212,209,17)" rx="2" ry="2" />
<text x="162.78" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (252 samples, 0.04%)</title><rect x="77.3" y="309" width="0.5" height="15.0" fill="rgb(209,148,13)" rx="2" ry="2" />
<text x="80.34" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (2,332 samples, 0.34%)</title><rect x="945.0" y="325" width="4.0" height="15.0" fill="rgb(218,217,17)" rx="2" ry="2" />
<text x="948.04" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (285 samples, 0.04%)</title><rect x="1178.3" y="437" width="0.5" height="15.0" fill="rgb(237,33,25)" rx="2" ry="2" />
<text x="1181.31" y="447.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::finalize::hd325a0bd00a62a99 (61 samples, 0.01%)</title><rect x="497.3" y="261" width="0.2" height="15.0" fill="rgb(206,15,9)" rx="2" ry="2" />
<text x="500.35" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (146 samples, 0.02%)</title><rect x="110.4" y="405" width="0.3" height="15.0" fill="rgb(217,43,26)" rx="2" ry="2" />
<text x="113.43" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (198 samples, 0.03%)</title><rect x="1162.9" y="405" width="0.4" height="15.0" fill="rgb(249,122,16)" rx="2" ry="2" />
<text x="1165.93" y="415.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (120 samples, 0.02%)</title><rect x="1160.0" y="373" width="0.2" height="15.0" fill="rgb(209,107,23)" rx="2" ry="2" />
<text x="1162.97" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (99 samples, 0.01%)</title><rect x="1169.9" y="389" width="0.2" height="15.0" fill="rgb(235,74,45)" rx="2" ry="2" />
<text x="1172.91" y="399.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 (364 samples, 0.05%)</title><rect x="1125.8" y="325" width="0.7" height="15.0" fill="rgb(211,122,47)" rx="2" ry="2" />
<text x="1128.83" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (220 samples, 0.03%)</title><rect x="92.5" y="309" width="0.3" height="15.0" fill="rgb(209,58,8)" rx="2" ry="2" />
<text x="95.47" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (62 samples, 0.01%)</title><rect x="73.1" y="293" width="0.1" height="15.0" fill="rgb(213,44,25)" rx="2" ry="2" />
<text x="76.06" y="303.5" ></text>
</g>
<g >
<title>_int_free (257 samples, 0.04%)</title><rect x="221.8" y="229" width="0.4" height="15.0" fill="rgb(234,83,13)" rx="2" ry="2" />
<text x="224.81" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (96 samples, 0.01%)</title><rect x="1143.0" y="405" width="0.2" height="15.0" fill="rgb(216,214,2)" rx="2" ry="2" />
<text x="1146.00" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (85 samples, 0.01%)</title><rect x="1143.5" y="389" width="0.1" height="15.0" fill="rgb(241,51,42)" rx="2" ry="2" />
<text x="1146.47" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (101 samples, 0.01%)</title><rect x="1142.5" y="357" width="0.2" height="15.0" fill="rgb(223,152,27)" rx="2" ry="2" />
<text x="1145.50" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (471 samples, 0.07%)</title><rect x="66.3" y="309" width="0.8" height="15.0" fill="rgb(236,39,13)" rx="2" ry="2" />
<text x="69.28" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_equiv_local_idx::h095449e04ed3aa2c (363 samples, 0.05%)</title><rect x="1104.3" y="341" width="0.6" height="15.0" fill="rgb(208,173,45)" rx="2" ry="2" />
<text x="1107.32" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (218 samples, 0.03%)</title><rect x="1183.7" y="421" width="0.4" height="15.0" fill="rgb(239,3,17)" rx="2" ry="2" />
<text x="1186.74" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (6,692 samples, 0.97%)</title><rect x="1162.9" y="517" width="11.5" height="15.0" fill="rgb(221,185,9)" rx="2" ry="2" />
<text x="1165.93" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (66 samples, 0.01%)</title><rect x="1179.4" y="373" width="0.1" height="15.0" fill="rgb(208,158,17)" rx="2" ry="2" />
<text x="1182.43" y="383.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (60 samples, 0.01%)</title><rect x="69.3" y="229" width="0.1" height="15.0" fill="rgb(241,102,50)" rx="2" ry="2" />
<text x="72.35" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h86648d6f1470c78b (3,061 samples, 0.44%)</title><rect x="376.5" y="261" width="5.2" height="15.0" fill="rgb(221,103,0)" rx="2" ry="2" />
<text x="379.49" 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$::next_function::hbef1985a853e1f1c (1,228 samples, 0.18%)</title><rect x="1174.8" y="325" width="2.1" height="15.0" fill="rgb(253,93,27)" rx="2" ry="2" />
<text x="1177.81" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (147 samples, 0.02%)</title><rect x="1182.6" y="389" width="0.3" height="15.0" fill="rgb(238,59,2)" rx="2" ry="2" />
<text x="1185.64" y="399.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 (81 samples, 0.01%)</title><rect x="106.6" y="421" width="0.2" height="15.0" fill="rgb(237,47,4)" rx="2" ry="2" />
<text x="109.62" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (97 samples, 0.01%)</title><rect x="56.9" y="293" width="0.1" height="15.0" fill="rgb(229,167,27)" rx="2" ry="2" />
<text x="59.87" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,848 samples, 0.27%)</title><rect x="633.6" y="261" width="3.1" height="15.0" fill="rgb(237,4,3)" rx="2" ry="2" />
<text x="636.57" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (164 samples, 0.02%)</title><rect x="1130.0" y="421" width="0.3" height="15.0" fill="rgb(233,37,2)" rx="2" ry="2" />
<text x="1132.98" y="431.5" ></text>
</g>
<g >
<title>__rdl_alloc (106 samples, 0.02%)</title><rect x="1122.8" y="309" width="0.2" height="15.0" fill="rgb(234,208,11)" rx="2" ry="2" />
<text x="1125.84" y="319.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (1,074 samples, 0.16%)</title><rect x="111.6" y="501" width="1.9" height="15.0" fill="rgb(240,21,17)" rx="2" ry="2" />
<text x="114.63" y="511.5" ></text>
</g>
<g >
<title>__rdl_realloc (305 samples, 0.04%)</title><rect x="684.6" y="261" width="0.5" height="15.0" fill="rgb(251,50,17)" rx="2" ry="2" />
<text x="687.60" y="271.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (59 samples, 0.01%)</title><rect x="12.2" y="373" width="0.1" height="15.0" fill="rgb(211,152,41)" rx="2" ry="2" />
<text x="15.17" y="383.5" ></text>
</g>
<g >
<title>do_page_fault (1,504 samples, 0.22%)</title><rect x="223.9" y="229" width="2.5" height="15.0" fill="rgb(239,63,10)" rx="2" ry="2" />
<text x="226.85" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (61 samples, 0.01%)</title><rect x="104.6" y="309" width="0.1" height="15.0" fill="rgb(238,93,29)" rx="2" ry="2" />
<text x="107.55" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (125 samples, 0.02%)</title><rect x="1129.8" y="421" width="0.2" height="15.0" fill="rgb(251,40,16)" rx="2" ry="2" />
<text x="1132.77" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (163 samples, 0.02%)</title><rect x="1174.4" y="437" width="0.3" height="15.0" fill="rgb(235,178,41)" rx="2" ry="2" />
<text x="1177.38" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_free (643 samples, 0.09%)</title><rect x="106.8" y="405" width="1.1" height="15.0" fill="rgb(236,155,37)" rx="2" ry="2" />
<text x="109.82" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (130 samples, 0.02%)</title><rect x="1182.2" y="437" width="0.2" height="15.0" fill="rgb(236,183,39)" rx="2" ry="2" />
<text x="1185.20" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_for_in_reg_0::h9614877b53180600 (113 samples, 0.02%)</title><rect x="22.6" y="373" width="0.2" height="15.0" fill="rgb(251,107,4)" rx="2" ry="2" />
<text x="25.62" y="383.5" ></text>
</g>
<g >
<title>_int_free (1,632 samples, 0.24%)</title><rect x="933.9" y="309" width="2.8" height="15.0" fill="rgb(229,168,51)" rx="2" ry="2" />
<text x="936.89" y="319.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (852 samples, 0.12%)</title><rect x="1133.6" y="405" width="1.4" height="15.0" fill="rgb(222,67,38)" rx="2" ry="2" />
<text x="1136.56" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (496 samples, 0.07%)</title><rect x="33.2" y="389" width="0.9" height="15.0" fill="rgb(210,107,8)" rx="2" ry="2" />
<text x="36.22" y="399.5" ></text>
</g>
<g >
<title>_$LT$alloc..string..String$u20$as$u20$core..clone..Clone$GT$::clone::hfb3085804dd270db (3,189 samples, 0.46%)</title><rect x="147.8" y="309" width="5.5" height="15.0" fill="rgb(233,223,19)" rx="2" ry="2" />
<text x="150.84" y="319.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (296 samples, 0.04%)</title><rect x="11.7" y="517" width="0.5" height="15.0" fill="rgb(240,40,54)" rx="2" ry="2" />
<text x="14.66" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (125 samples, 0.02%)</title><rect x="1176.9" y="341" width="0.2" height="15.0" fill="rgb(211,93,10)" rx="2" ry="2" />
<text x="1179.92" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::expand::hc4ef15636e9956ca (176 samples, 0.03%)</title><rect x="55.4" y="261" width="0.3" height="15.0" fill="rgb(225,155,6)" rx="2" ry="2" />
<text x="58.42" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (195 samples, 0.03%)</title><rect x="222.8" y="261" width="0.3" height="15.0" fill="rgb(226,122,0)" rx="2" ry="2" />
<text x="225.76" y="271.5" ></text>
</g>
<g >
<title>unmap_single_vma (111 samples, 0.02%)</title><rect x="202.1" y="165" width="0.2" height="15.0" fill="rgb(218,72,47)" rx="2" ry="2" />
<text x="205.12" y="175.5" ></text>
</g>
<g >
<title>sys_mmap (1,609 samples, 0.23%)</title><rect x="1155.9" y="357" width="2.7" height="15.0" fill="rgb(218,129,11)" rx="2" ry="2" />
<text x="1158.87" y="367.5" ></text>
</g>
<g >
<title>_ZN81_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$5write17hce30e4f96ad2e64eE.llvm.689856235829814499 (66 samples, 0.01%)</title><rect x="531.4" y="277" width="0.1" height="15.0" fill="rgb(251,136,54)" rx="2" ry="2" />
<text x="534.37" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (97 samples, 0.01%)</title><rect x="90.4" y="245" width="0.2" height="15.0" fill="rgb(219,76,9)" rx="2" ry="2" />
<text x="93.40" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::unreachable_code::eliminate_unreachable_code::he5a7c427cf1b37ff (188 samples, 0.03%)</title><rect x="104.3" y="341" width="0.4" height="15.0" fill="rgb(214,134,29)" rx="2" ry="2" />
<text x="107.34" y="351.5" ></text>
</g>
<g >
<title>__rdl_alloc (66 samples, 0.01%)</title><rect x="926.0" y="309" width="0.1" height="15.0" fill="rgb(220,9,17)" rx="2" ry="2" />
<text x="928.98" 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 (18,292 samples, 2.65%)</title><rect x="1127.4" y="453" width="31.3" height="15.0" fill="rgb(244,129,20)" rx="2" ry="2" />
<text x="1130.44" y="463.5" >_$..</text>
</g>
<g >
<title>__GI___libc_malloc (59 samples, 0.01%)</title><rect x="227.7" y="229" width="0.1" height="15.0" fill="rgb(239,161,41)" rx="2" ry="2" />
<text x="230.75" y="239.5" ></text>
</g>
<g >
<title>perf_event_mmap (929 samples, 0.13%)</title><rect x="1156.7" y="277" width="1.5" height="15.0" fill="rgb(233,108,39)" rx="2" ry="2" />
<text x="1159.65" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (76 samples, 0.01%)</title><rect x="1143.5" y="373" width="0.1" height="15.0" fill="rgb(220,1,39)" rx="2" ry="2" />
<text x="1146.47" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (224 samples, 0.03%)</title><rect x="79.3" y="309" width="0.4" height="15.0" fill="rgb(234,169,32)" rx="2" ry="2" />
<text x="82.34" 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 (163 samples, 0.02%)</title><rect x="1174.4" y="389" width="0.3" height="15.0" fill="rgb(251,225,46)" rx="2" ry="2" />
<text x="1177.38" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (111 samples, 0.02%)</title><rect x="1179.5" y="373" width="0.2" height="15.0" fill="rgb(218,115,2)" rx="2" ry="2" />
<text x="1182.54" y="383.5" ></text>
</g>
<g >
<title>_int_realloc (63 samples, 0.01%)</title><rect x="57.2" y="261" width="0.1" height="15.0" fill="rgb(251,104,40)" rx="2" ry="2" />
<text x="60.18" y="271.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (65 samples, 0.01%)</title><rect x="71.0" y="261" width="0.1" height="15.0" fill="rgb(222,58,46)" rx="2" ry="2" />
<text x="73.98" y="271.5" ></text>
</g>
<g >
<title>_int_free (1,623 samples, 0.24%)</title><rect x="685.5" y="277" width="2.8" height="15.0" fill="rgb(214,217,51)" rx="2" ry="2" />
<text x="688.53" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (3,322 samples, 0.48%)</title><rect x="837.3" y="261" width="5.7" height="15.0" fill="rgb(223,214,16)" rx="2" ry="2" />
<text x="840.31" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (102 samples, 0.01%)</title><rect x="49.0" y="293" width="0.1" height="15.0" fill="rgb(248,68,12)" rx="2" ry="2" />
<text x="51.95" y="303.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (264 samples, 0.04%)</title><rect x="1183.3" y="405" width="0.4" height="15.0" fill="rgb(243,64,6)" rx="2" ry="2" />
<text x="1186.29" y="415.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::next::h50188cd678c454ba (60 samples, 0.01%)</title><rect x="78.7" y="309" width="0.1" height="15.0" fill="rgb(247,139,25)" rx="2" ry="2" />
<text x="81.73" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (73 samples, 0.01%)</title><rect x="86.3" y="277" width="0.1" height="15.0" fill="rgb(214,149,31)" rx="2" ry="2" />
<text x="89.30" y="287.5" ></text>
</g>
<g >
<title>__memset_avx2 (80 samples, 0.01%)</title><rect x="542.1" y="293" width="0.1" height="15.0" fill="rgb(252,10,16)" rx="2" ry="2" />
<text x="545.08" y="303.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::reserve_rehash::h145328e315fce2fd (6,693 samples, 0.97%)</title><rect x="399.8" y="229" width="11.5" height="15.0" fill="rgb(245,31,50)" rx="2" ry="2" />
<text x="402.81" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (218 samples, 0.03%)</title><rect x="1183.7" y="405" width="0.4" height="15.0" fill="rgb(254,202,43)" rx="2" ry="2" />
<text x="1186.74" 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 (69 samples, 0.01%)</title><rect x="176.4" y="293" width="0.1" height="15.0" fill="rgb(220,44,42)" rx="2" ry="2" />
<text x="179.37" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (68 samples, 0.01%)</title><rect x="51.5" y="261" width="0.2" height="15.0" fill="rgb(206,109,5)" rx="2" ry="2" />
<text x="54.55" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (242 samples, 0.04%)</title><rect x="636.7" y="261" width="0.4" height="15.0" fill="rgb(231,109,9)" rx="2" ry="2" />
<text x="639.73" y="271.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 (54,713 samples, 7.93%)</title><rect x="963.5" y="341" width="93.6" height="15.0" fill="rgb(227,34,27)" rx="2" ry="2" />
<text x="966.52" y="351.5" >parity_wasm..</text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (2,698 samples, 0.39%)</title><rect x="216.0" y="261" width="4.6" height="15.0" fill="rgb(226,153,28)" rx="2" ry="2" />
<text x="218.98" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (136 samples, 0.02%)</title><rect x="688.3" y="293" width="0.2" height="15.0" fill="rgb(226,157,25)" rx="2" ry="2" />
<text x="691.31" y="303.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (495 samples, 0.07%)</title><rect x="1188.9" y="485" width="0.8" height="15.0" fill="rgb(211,40,52)" rx="2" ry="2" />
<text x="1191.89" y="495.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (6,692 samples, 0.97%)</title><rect x="1162.9" y="453" width="11.5" height="15.0" fill="rgb(243,140,20)" rx="2" ry="2" />
<text x="1165.93" y="463.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (313 samples, 0.05%)</title><rect x="201.5" y="149" width="0.6" height="15.0" fill="rgb(214,29,15)" rx="2" ry="2" />
<text x="204.55" y="159.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hee16df317d8edeaf (3,273 samples, 0.47%)</title><rect x="194.3" y="309" width="5.6" height="15.0" fill="rgb(217,164,15)" rx="2" ry="2" />
<text x="197.26" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (71 samples, 0.01%)</title><rect x="30.6" y="357" width="0.1" height="15.0" fill="rgb(218,168,22)" rx="2" ry="2" />
<text x="33.62" y="367.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..export_entry..ExportEntry$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h4be7f1d73b60ccfe (13,398 samples, 1.94%)</title><rect x="624.7" y="293" width="22.9" height="15.0" fill="rgb(233,15,46)" rx="2" ry="2" />
<text x="627.69" y="303.5" >_..</text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hcdd9925b441325fd (307 samples, 0.04%)</title><rect x="484.4" y="277" width="0.5" height="15.0" fill="rgb(251,208,54)" rx="2" ry="2" />
<text x="487.40" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (13,619 samples, 1.97%)</title><rect x="75.3" y="341" width="23.3" height="15.0" fill="rgb(236,135,30)" rx="2" ry="2" />
<text x="78.26" y="351.5" >c..</text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::allocatable_registers::h2ba12d186321dd42 (62 samples, 0.01%)</title><rect x="94.8" y="309" width="0.1" height="15.0" fill="rgb(249,135,27)" rx="2" ry="2" />
<text x="97.84" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h35e85fcd2e2f9b0d (8,818 samples, 1.28%)</title><rect x="1082.7" y="341" width="15.1" height="15.0" fill="rgb(250,139,52)" rx="2" ry="2" />
<text x="1085.69" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (1,000 samples, 0.14%)</title><rect x="692.2" y="261" width="1.7" height="15.0" fill="rgb(243,168,8)" rx="2" ry="2" />
<text x="695.18" y="271.5" ></text>
</g>
<g >
<title>clear_page_erms (63 samples, 0.01%)</title><rect x="225.4" y="133" width="0.1" height="15.0" fill="rgb(251,148,33)" rx="2" ry="2" />
<text x="228.39" y="143.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..cmp..PartialEq$GT$::ne::he4ad3ed04bed2102 (238 samples, 0.03%)</title><rect x="1102.4" y="341" width="0.4" height="15.0" fill="rgb(246,166,47)" rx="2" ry="2" />
<text x="1105.38" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (189 samples, 0.03%)</title><rect x="646.8" y="229" width="0.3" height="15.0" fill="rgb(209,66,29)" rx="2" ry="2" />
<text x="649.82" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_free (86 samples, 0.01%)</title><rect x="50.9" y="277" width="0.1" height="15.0" fill="rgb(214,165,1)" rx="2" ry="2" />
<text x="53.90" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (95 samples, 0.01%)</title><rect x="70.9" y="325" width="0.2" height="15.0" fill="rgb(238,134,2)" rx="2" ry="2" />
<text x="73.93" y="335.5" ></text>
</g>
<g >
<title>__rdl_dealloc (102 samples, 0.01%)</title><rect x="472.9" y="261" width="0.2" height="15.0" fill="rgb(247,122,27)" rx="2" ry="2" />
<text x="475.93" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (143 samples, 0.02%)</title><rect x="77.1" y="309" width="0.2" height="15.0" fill="rgb(210,69,48)" rx="2" ry="2" />
<text x="80.08" y="319.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (140 samples, 0.02%)</title><rect x="499.6" y="229" width="0.3" height="15.0" fill="rgb(216,57,36)" rx="2" ry="2" />
<text x="502.62" y="239.5" ></text>
</g>
<g >
<title>do_munmap (2,533 samples, 0.37%)</title><rect x="195.2" y="181" width="4.3" height="15.0" fill="rgb(252,206,47)" rx="2" ry="2" />
<text x="198.20" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h209de9d6031d8f72 (60 samples, 0.01%)</title><rect x="1142.4" y="357" width="0.1" height="15.0" fill="rgb(250,33,30)" rx="2" ry="2" />
<text x="1145.37" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (83 samples, 0.01%)</title><rect x="237.4" y="229" width="0.1" height="15.0" fill="rgb(231,14,31)" rx="2" ry="2" />
<text x="240.41" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (69 samples, 0.01%)</title><rect x="69.9" y="309" width="0.1" height="15.0" fill="rgb(205,48,47)" rx="2" ry="2" />
<text x="72.85" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha898170dd69782a8 (83 samples, 0.01%)</title><rect x="1177.6" y="309" width="0.2" height="15.0" fill="rgb(205,224,33)" rx="2" ry="2" />
<text x="1180.64" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (166 samples, 0.02%)</title><rect x="26.0" y="405" width="0.3" height="15.0" fill="rgb(226,195,27)" rx="2" ry="2" />
<text x="29.04" y="415.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (684 samples, 0.10%)</title><rect x="792.1" y="309" width="1.2" height="15.0" fill="rgb(248,155,24)" rx="2" ry="2" />
<text x="795.08" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (90 samples, 0.01%)</title><rect x="92.3" y="309" width="0.2" height="15.0" fill="rgb(228,186,35)" rx="2" ry="2" />
<text x="95.31" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::ImportBacking::new::he38382ce97a0802d (407 samples, 0.06%)</title><rect x="539.8" y="309" width="0.7" height="15.0" fill="rgb(230,46,46)" rx="2" ry="2" />
<text x="542.76" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (90 samples, 0.01%)</title><rect x="1160.4" y="357" width="0.2" height="15.0" fill="rgb(213,216,14)" rx="2" ry="2" />
<text x="1163.44" y="367.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (592,735 samples, 85.93%)</title><rect x="113.5" y="485" width="1013.9" height="15.0" fill="rgb(250,198,52)" rx="2" ry="2" />
<text x="116.48" y="495.5" >std::panic::catch_unwind::hd5e0a26424bd7f34</text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (1,074 samples, 0.16%)</title><rect x="111.6" y="517" width="1.9" height="15.0" fill="rgb(239,131,50)" rx="2" ry="2" />
<text x="114.63" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::spill_call_arguments::h7c8569664b42f645 (142 samples, 0.02%)</title><rect x="14.6" y="357" width="0.3" height="15.0" fill="rgb(250,202,1)" rx="2" ry="2" />
<text x="17.62" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (822 samples, 0.12%)</title><rect x="1156.8" y="245" width="1.4" height="15.0" fill="rgb(247,117,32)" rx="2" ry="2" />
<text x="1159.81" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (761 samples, 0.11%)</title><rect x="71.1" y="341" width="1.3" height="15.0" fill="rgb(226,212,10)" rx="2" ry="2" />
<text x="74.10" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,772 samples, 0.40%)</title><rect x="141.0" y="309" width="4.8" height="15.0" fill="rgb(246,79,28)" rx="2" ry="2" />
<text x="144.02" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (970 samples, 0.14%)</title><rect x="527.5" y="309" width="1.7" height="15.0" fill="rgb(221,15,38)" rx="2" ry="2" />
<text x="530.50" y="319.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (163 samples, 0.02%)</title><rect x="1174.4" y="501" width="0.3" height="15.0" fill="rgb(241,220,29)" rx="2" ry="2" />
<text x="1177.38" y="511.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::get_equiv_instr::h0d13bcc03db4a9ca (1,186 samples, 0.17%)</title><rect x="1124.8" y="341" width="2.1" height="15.0" fill="rgb(247,63,16)" rx="2" ry="2" />
<text x="1127.85" y="351.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (111 samples, 0.02%)</title><rect x="694.1" y="293" width="0.2" height="15.0" fill="rgb(222,155,8)" rx="2" ry="2" />
<text x="697.09" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (1,197 samples, 0.17%)</title><rect x="88.5" y="309" width="2.1" height="15.0" fill="rgb(237,71,41)" rx="2" ry="2" />
<text x="91.53" y="319.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::hd388a75a7e96e17c (21,021 samples, 3.05%)</title><rect x="718.4" y="261" width="36.0" height="15.0" fill="rgb(242,103,37)" rx="2" ry="2" />
<text x="721.45" y="271.5" >_$L..</text>
</g>
<g >
<title>__GI___libc_realloc (102 samples, 0.01%)</title><rect x="15.0" y="357" width="0.2" height="15.0" fill="rgb(218,12,24)" rx="2" ry="2" />
<text x="17.99" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (1,093 samples, 0.16%)</title><rect x="379.7" y="229" width="1.8" height="15.0" fill="rgb(232,6,39)" rx="2" ry="2" />
<text x="382.66" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (510 samples, 0.07%)</title><rect x="538.4" y="309" width="0.9" height="15.0" fill="rgb(219,129,45)" rx="2" ry="2" />
<text x="541.39" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (76 samples, 0.01%)</title><rect x="67.3" y="277" width="0.1" height="15.0" fill="rgb(213,126,52)" rx="2" ry="2" />
<text x="70.25" y="287.5" ></text>
</g>
<g >
<title>unmap_single_vma (331 samples, 0.05%)</title><rect x="198.9" y="133" width="0.6" height="15.0" fill="rgb(254,225,27)" rx="2" ry="2" />
<text x="201.90" y="143.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (59 samples, 0.01%)</title><rect x="1172.8" y="389" width="0.1" height="15.0" fill="rgb(219,108,15)" rx="2" ry="2" />
<text x="1175.85" y="399.5" ></text>
</g>
<g >
<title>[unknown] (685,412 samples, 99.36%)</title><rect x="12.2" y="565" width="1172.5" height="15.0" fill="rgb(241,146,14)" rx="2" ry="2" />
<text x="15.16" y="575.5" >[unknown]</text>
</g>
<g >
<title>do_page_fault (1,178 samples, 0.17%)</title><rect x="1130.9" y="389" width="2.0" height="15.0" fill="rgb(242,113,4)" rx="2" ry="2" />
<text x="1133.87" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (1,446 samples, 0.21%)</title><rect x="1137.3" y="405" width="2.5" height="15.0" fill="rgb(240,38,10)" rx="2" ry="2" />
<text x="1140.32" y="415.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (192 samples, 0.03%)</title><rect x="23.3" y="389" width="0.3" height="15.0" fill="rgb(240,106,21)" rx="2" ry="2" />
<text x="26.26" y="399.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 (93 samples, 0.01%)</title><rect x="1174.7" y="453" width="0.1" height="15.0" fill="rgb(226,28,2)" rx="2" ry="2" />
<text x="1177.66" y="463.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (6,692 samples, 0.97%)</title><rect x="1162.9" y="501" width="11.5" height="15.0" fill="rgb(214,21,37)" rx="2" ry="2" />
<text x="1165.93" y="511.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (120 samples, 0.02%)</title><rect x="26.7" y="389" width="0.2" height="15.0" fill="rgb(211,178,24)" rx="2" ry="2" />
<text x="29.67" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3,286 samples, 0.48%)</title><rect x="651.3" y="293" width="5.6" height="15.0" fill="rgb(223,95,8)" rx="2" ry="2" />
<text x="654.32" y="303.5" ></text>
</g>
<g >
<title>alloc::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::to_vec::h296f859ac637ecae (3,006 samples, 0.44%)</title><rect x="148.2" y="277" width="5.1" height="15.0" fill="rgb(254,19,38)" rx="2" ry="2" />
<text x="151.16" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (138 samples, 0.02%)</title><rect x="786.1" y="293" width="0.2" height="15.0" fill="rgb(231,155,52)" rx="2" ry="2" />
<text x="789.07" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (249 samples, 0.04%)</title><rect x="1184.1" y="437" width="0.4" height="15.0" fill="rgb(205,51,17)" rx="2" ry="2" />
<text x="1187.11" y="447.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (227 samples, 0.03%)</title><rect x="73.3" y="309" width="0.4" height="15.0" fill="rgb(221,9,22)" rx="2" ry="2" />
<text x="76.32" y="319.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h21c33b7e56b1167d (80 samples, 0.01%)</title><rect x="40.5" y="357" width="0.1" height="15.0" fill="rgb(211,73,10)" rx="2" ry="2" />
<text x="43.50" y="367.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (891 samples, 0.13%)</title><rect x="395.9" y="229" width="1.5" height="15.0" fill="rgb(247,109,43)" rx="2" ry="2" />
<text x="398.87" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (91 samples, 0.01%)</title><rect x="12.3" y="405" width="0.1" height="15.0" fill="rgb(250,12,24)" rx="2" ry="2" />
<text x="15.28" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (135 samples, 0.02%)</title><rect x="89.8" y="229" width="0.3" height="15.0" fill="rgb(239,215,0)" rx="2" ry="2" />
<text x="92.83" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (2,273 samples, 0.33%)</title><rect x="1178.3" y="469" width="3.9" height="15.0" fill="rgb(218,21,6)" rx="2" ry="2" />
<text x="1181.31" y="479.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (90 samples, 0.01%)</title><rect x="35.1" y="389" width="0.1" height="15.0" fill="rgb(251,127,26)" rx="2" ry="2" />
<text x="38.08" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (80 samples, 0.01%)</title><rect x="1170.2" y="357" width="0.1" height="15.0" fill="rgb(213,46,10)" rx="2" ry="2" />
<text x="1173.19" y="367.5" ></text>
</g>
<g >
<title>tlb_finish_mmu (601 samples, 0.09%)</title><rect x="201.1" y="181" width="1.0" height="15.0" fill="rgb(205,172,38)" rx="2" ry="2" />
<text x="204.07" y="191.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (345 samples, 0.05%)</title><rect x="1123.1" y="309" width="0.6" height="15.0" fill="rgb(250,199,46)" rx="2" ry="2" />
<text x="1126.09" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (198 samples, 0.03%)</title><rect x="1162.9" y="389" width="0.4" height="15.0" fill="rgb(245,115,37)" rx="2" ry="2" />
<text x="1165.93" y="399.5" ></text>
</g>
<g >
<title>_int_free (185 samples, 0.03%)</title><rect x="202.7" y="293" width="0.3" height="15.0" fill="rgb(238,17,6)" rx="2" ry="2" />
<text x="205.73" y="303.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (471 samples, 0.07%)</title><rect x="1152.4" y="261" width="0.8" height="15.0" fill="rgb(246,111,4)" rx="2" ry="2" />
<text x="1155.35" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (93 samples, 0.01%)</title><rect x="375.9" y="261" width="0.1" height="15.0" fill="rgb(250,227,22)" rx="2" ry="2" />
<text x="378.87" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (1,033 samples, 0.15%)</title><rect x="44.2" y="341" width="1.8" height="15.0" fill="rgb(208,68,10)" rx="2" ry="2" />
<text x="47.19" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbea2e111e8f00580 (161 samples, 0.02%)</title><rect x="1161.5" y="389" width="0.2" height="15.0" fill="rgb(208,161,8)" rx="2" ry="2" />
<text x="1164.47" y="399.5" ></text>
</g>
<g >
<title>_int_free (64 samples, 0.01%)</title><rect x="101.8" y="277" width="0.1" height="15.0" fill="rgb(209,16,2)" rx="2" ry="2" />
<text x="104.81" y="287.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (61 samples, 0.01%)</title><rect x="499.2" y="229" width="0.1" height="15.0" fill="rgb(246,147,44)" rx="2" ry="2" />
<text x="502.21" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (99 samples, 0.01%)</title><rect x="31.1" y="389" width="0.2" height="15.0" fill="rgb(240,131,2)" rx="2" ry="2" />
<text x="34.15" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (138 samples, 0.02%)</title><rect x="524.9" y="181" width="0.3" height="15.0" fill="rgb(238,42,5)" rx="2" ry="2" />
<text x="527.94" y="191.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (211 samples, 0.03%)</title><rect x="51.1" y="277" width="0.3" height="15.0" fill="rgb(227,116,34)" rx="2" ry="2" />
<text x="54.07" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (85 samples, 0.01%)</title><rect x="556.7" y="325" width="0.1" height="15.0" fill="rgb(225,60,35)" rx="2" ry="2" />
<text x="559.67" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (152 samples, 0.02%)</title><rect x="1133.3" y="405" width="0.2" height="15.0" fill="rgb(234,226,44)" rx="2" ry="2" />
<text x="1136.26" y="415.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h8f5edcc205986b39E.llvm.4989837014162833530 (1,883 samples, 0.27%)</title><rect x="106.8" y="421" width="3.2" height="15.0" fill="rgb(217,88,11)" rx="2" ry="2" />
<text x="109.75" y="431.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h3b7b875a11d2ba0c (284 samples, 0.04%)</title><rect x="1141.3" y="405" width="0.5" height="15.0" fill="rgb(229,42,44)" rx="2" ry="2" />
<text x="1144.35" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (103 samples, 0.01%)</title><rect x="98.4" y="293" width="0.2" height="15.0" fill="rgb(223,129,25)" rx="2" ry="2" />
<text x="101.38" y="303.5" ></text>
</g>
<g >
<title>__rdl_alloc (75 samples, 0.01%)</title><rect x="920.2" y="309" width="0.2" height="15.0" fill="rgb(245,118,12)" rx="2" ry="2" />
<text x="923.23" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (282 samples, 0.04%)</title><rect x="1159.1" y="389" width="0.5" height="15.0" fill="rgb(211,24,13)" rx="2" ry="2" />
<text x="1162.09" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (2,177 samples, 0.32%)</title><rect x="56.6" y="309" width="3.8" height="15.0" fill="rgb(220,32,30)" rx="2" ry="2" />
<text x="59.63" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (8,681 samples, 1.26%)</title><rect x="793.3" y="309" width="14.8" height="15.0" fill="rgb(241,35,13)" rx="2" ry="2" />
<text x="796.25" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (67 samples, 0.01%)</title><rect x="1145.6" y="357" width="0.1" height="15.0" fill="rgb(247,39,27)" rx="2" ry="2" />
<text x="1148.56" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (114 samples, 0.02%)</title><rect x="85.1" y="309" width="0.2" height="15.0" fill="rgb(250,1,18)" rx="2" ry="2" />
<text x="88.14" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (167 samples, 0.02%)</title><rect x="1133.2" y="421" width="0.3" height="15.0" fill="rgb(212,26,27)" rx="2" ry="2" />
<text x="1136.24" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (68 samples, 0.01%)</title><rect x="1170.3" y="373" width="0.2" height="15.0" fill="rgb(246,112,34)" rx="2" ry="2" />
<text x="1173.34" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (93 samples, 0.01%)</title><rect x="1104.5" y="325" width="0.2" height="15.0" fill="rgb(216,24,0)" rx="2" ry="2" />
<text x="1107.53" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (120 samples, 0.02%)</title><rect x="831.9" y="277" width="0.2" height="15.0" fill="rgb(232,98,11)" rx="2" ry="2" />
<text x="834.85" y="287.5" ></text>
</g>
<g >
<title>core::fmt::write::h1f444f4312eb6c27 (87 samples, 0.01%)</title><rect x="537.5" y="277" width="0.2" height="15.0" fill="rgb(217,25,32)" rx="2" ry="2" />
<text x="540.52" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (2,457 samples, 0.36%)</title><rect x="1158.7" y="453" width="4.2" height="15.0" fill="rgb(213,158,38)" rx="2" ry="2" />
<text x="1161.73" y="463.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::new::hf8cf84418abf20c9 (6,358 samples, 0.92%)</title><rect x="484.9" y="277" width="10.9" height="15.0" fill="rgb(216,208,22)" rx="2" ry="2" />
<text x="487.93" y="287.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 (120 samples, 0.02%)</title><rect x="58.0" y="261" width="0.2" height="15.0" fill="rgb(238,67,17)" rx="2" ry="2" />
<text x="61.03" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (66 samples, 0.01%)</title><rect x="1141.2" y="405" width="0.1" height="15.0" fill="rgb(247,217,12)" rx="2" ry="2" />
<text x="1144.20" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Context::spill_reg::hfd9fc3b6557c8c97 (156 samples, 0.02%)</title><rect x="1181.9" y="405" width="0.3" height="15.0" fill="rgb(242,191,1)" rx="2" ry="2" />
<text x="1184.93" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (69 samples, 0.01%)</title><rect x="1145.4" y="373" width="0.1" height="15.0" fill="rgb(251,196,18)" rx="2" ry="2" />
<text x="1148.37" y="383.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (218 samples, 0.03%)</title><rect x="1142.3" y="389" width="0.4" height="15.0" fill="rgb(214,155,33)" rx="2" ry="2" />
<text x="1145.33" y="399.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (1,113 samples, 0.16%)</title><rect x="1144.4" y="421" width="1.9" height="15.0" fill="rgb(244,179,51)" rx="2" ry="2" />
<text x="1147.40" y="431.5" ></text>
</g>
<g >
<title>_int_free (175 samples, 0.03%)</title><rect x="108.3" y="373" width="0.3" height="15.0" fill="rgb(208,89,48)" rx="2" ry="2" />
<text x="111.29" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5bb4661d248be310 (126 samples, 0.02%)</title><rect x="963.1" y="325" width="0.2" height="15.0" fill="rgb(220,93,28)" rx="2" ry="2" />
<text x="966.10" y="335.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (643 samples, 0.09%)</title><rect x="111.7" y="341" width="1.1" height="15.0" fill="rgb(241,97,17)" rx="2" ry="2" />
<text x="114.68" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1,553 samples, 0.23%)</title><rect x="912.2" y="325" width="2.7" height="15.0" fill="rgb(216,123,0)" rx="2" ry="2" />
<text x="915.24" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::codegen::validate_with_features::hca6a4340e6d214c2 (149,752 samples, 21.71%)</title><rect x="239.6" y="293" width="256.2" height="15.0" fill="rgb(235,176,34)" rx="2" ry="2" />
<text x="242.64" y="303.5" >wasmer_runtime_core::codegen::vali..</text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (77 samples, 0.01%)</title><rect x="75.0" y="325" width="0.2" height="15.0" fill="rgb(254,180,44)" rx="2" ry="2" />
<text x="78.04" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (79 samples, 0.01%)</title><rect x="65.5" y="309" width="0.2" height="15.0" fill="rgb(208,111,30)" rx="2" ry="2" />
<text x="68.54" y="319.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 (693 samples, 0.10%)</title><rect x="63.8" y="309" width="1.2" height="15.0" fill="rgb(251,214,32)" rx="2" ry="2" />
<text x="66.82" y="319.5" ></text>
</g>
<g >
<title>divide_error (352 samples, 0.05%)</title><rect x="11.1" y="549" width="0.6" height="15.0" fill="rgb(221,22,28)" rx="2" ry="2" />
<text x="14.05" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (86 samples, 0.01%)</title><rect x="22.4" y="357" width="0.2" height="15.0" fill="rgb(212,43,7)" rx="2" ry="2" />
<text x="25.44" 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 (117 samples, 0.02%)</title><rect x="15.6" y="341" width="0.2" height="15.0" fill="rgb(253,149,2)" rx="2" ry="2" />
<text x="18.59" y="351.5" ></text>
</g>
<g >
<title>_int_free (80 samples, 0.01%)</title><rect x="1183.3" y="341" width="0.1" height="15.0" fill="rgb(222,161,29)" rx="2" ry="2" />
<text x="1186.29" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3,018 samples, 0.44%)</title><rect x="626.7" y="277" width="5.2" height="15.0" fill="rgb(243,22,30)" rx="2" ry="2" />
<text x="629.69" y="287.5" ></text>
</g>
<g >
<title>__rdl_alloc (69 samples, 0.01%)</title><rect x="931.7" y="309" width="0.1" height="15.0" fill="rgb(226,71,4)" rx="2" ry="2" />
<text x="934.67" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (78 samples, 0.01%)</title><rect x="56.9" y="277" width="0.1" height="15.0" fill="rgb(245,189,39)" rx="2" ry="2" />
<text x="59.90" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5,464 samples, 0.79%)</title><rect x="1022.4" y="309" width="9.3" height="15.0" fill="rgb(213,22,52)" rx="2" ry="2" />
<text x="1025.39" y="319.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FunctionBuilder$LT$F$GT$::build::hfed3c1d7c10ae131 (15,026 samples, 2.18%)</title><rect x="906.8" y="341" width="25.7" height="15.0" fill="rgb(243,29,47)" rx="2" ry="2" />
<text x="909.80" y="351.5" >p..</text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h694f7df7412590c2 (120 samples, 0.02%)</title><rect x="41.0" y="341" width="0.2" height="15.0" fill="rgb(229,211,2)" rx="2" ry="2" />
<text x="43.99" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (2,945 samples, 0.43%)</title><rect x="670.1" y="261" width="5.0" height="15.0" fill="rgb(216,56,47)" rx="2" ry="2" />
<text x="673.06" y="271.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (983 samples, 0.14%)</title><rect x="580.6" y="341" width="1.7" height="15.0" fill="rgb(221,215,6)" rx="2" ry="2" />
<text x="583.64" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (2,630 samples, 0.38%)</title><rect x="98.6" y="341" width="4.5" height="15.0" fill="rgb(252,145,30)" rx="2" ry="2" />
<text x="101.56" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (4,434 samples, 0.64%)</title><rect x="487.8" y="261" width="7.6" height="15.0" fill="rgb(227,218,34)" rx="2" ry="2" />
<text x="490.83" y="271.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (463 samples, 0.07%)</title><rect x="71.4" y="325" width="0.8" height="15.0" fill="rgb(246,120,30)" rx="2" ry="2" />
<text x="74.41" y="335.5" ></text>
</g>
<g >
<title>__lock_text_start (64 samples, 0.01%)</title><rect x="201.2" y="101" width="0.1" height="15.0" fill="rgb(214,20,48)" rx="2" ry="2" />
<text x="204.16" y="111.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (67 samples, 0.01%)</title><rect x="77.7" y="277" width="0.1" height="15.0" fill="rgb(223,155,25)" rx="2" ry="2" />
<text x="80.65" y="287.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (251 samples, 0.04%)</title><rect x="83.8" y="309" width="0.5" height="15.0" fill="rgb(215,45,23)" rx="2" ry="2" />
<text x="86.83" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (1,172 samples, 0.17%)</title><rect x="143.8" y="293" width="2.0" height="15.0" fill="rgb(213,204,23)" rx="2" ry="2" />
<text x="146.76" y="303.5" ></text>
</g>
<g >
<title>perf_iterate_sb (854 samples, 0.12%)</title><rect x="1156.8" y="261" width="1.4" height="15.0" fill="rgb(244,77,8)" rx="2" ry="2" />
<text x="1159.76" y="271.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..map..MapFolder$LT$C$C$F$GT$$u20$as$u20$rayon..iter..plumbing..Folder$LT$T$GT$$GT$::consume::hc2c00237aa975ae6 (105 samples, 0.02%)</title><rect x="106.4" y="421" width="0.2" height="15.0" fill="rgb(231,214,14)" rx="2" ry="2" />
<text x="109.44" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (68 samples, 0.01%)</title><rect x="1173.2" y="373" width="0.1" height="15.0" fill="rgb(243,104,3)" rx="2" ry="2" />
<text x="1176.21" y="383.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (645 samples, 0.09%)</title><rect x="344.5" y="229" width="1.1" height="15.0" fill="rgb(240,19,51)" rx="2" ry="2" />
<text x="347.50" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (74 samples, 0.01%)</title><rect x="31.0" y="389" width="0.1" height="15.0" fill="rgb(214,77,3)" rx="2" ry="2" />
<text x="33.97" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (282 samples, 0.04%)</title><rect x="1159.1" y="405" width="0.5" height="15.0" fill="rgb(254,33,33)" rx="2" ry="2" />
<text x="1162.09" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (132 samples, 0.02%)</title><rect x="24.3" y="389" width="0.2" height="15.0" fill="rgb(253,124,33)" rx="2" ry="2" />
<text x="27.30" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (190 samples, 0.03%)</title><rect x="102.0" y="277" width="0.4" height="15.0" fill="rgb(252,106,16)" rx="2" ry="2" />
<text x="105.04" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::call_indirect::h1d38d2281f406238 (689 samples, 0.10%)</title><rect x="1140.7" y="421" width="1.1" height="15.0" fill="rgb(222,98,12)" rx="2" ry="2" />
<text x="1143.65" y="431.5" ></text>
</g>
<g >
<title>__rdl_realloc (350 samples, 0.05%)</title><rect x="646.5" y="245" width="0.6" height="15.0" fill="rgb(217,140,40)" rx="2" ry="2" />
<text x="649.55" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (152 samples, 0.02%)</title><rect x="57.0" y="293" width="0.3" height="15.0" fill="rgb(208,213,2)" rx="2" ry="2" />
<text x="60.04" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_sig_index::hb06a5506c3dd534f (136 samples, 0.02%)</title><rect x="541.0" y="277" width="0.2" height="15.0" fill="rgb(217,23,22)" rx="2" ry="2" />
<text x="544.01" y="287.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (163 samples, 0.02%)</title><rect x="1174.4" y="469" width="0.3" height="15.0" fill="rgb(224,114,29)" rx="2" ry="2" />
<text x="1177.38" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (155 samples, 0.02%)</title><rect x="100.5" y="325" width="0.3" height="15.0" fill="rgb(213,58,29)" rx="2" ry="2" />
<text x="103.51" 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::he9c7499a8ffa5660 (57,175 samples, 8.29%)</title><rect x="694.3" y="309" width="97.8" height="15.0" fill="rgb(216,17,2)" rx="2" ry="2" />
<text x="697.28" y="319.5" >_$LT$parity..</text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (114 samples, 0.02%)</title><rect x="58.3" y="261" width="0.2" height="15.0" fill="rgb(247,103,17)" rx="2" ry="2" />
<text x="61.30" y="271.5" ></text>
</g>
<g >
<title>_int_malloc (75 samples, 0.01%)</title><rect x="1181.1" y="325" width="0.1" height="15.0" fill="rgb(250,212,8)" rx="2" ry="2" />
<text x="1184.08" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5b9e6f3d06cc15e0 (6,616 samples, 0.96%)</title><rect x="129.7" y="293" width="11.3" height="15.0" fill="rgb(245,37,52)" rx="2" ry="2" />
<text x="132.70" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index::hfdcd33b8b41f1e35 (4,338 samples, 0.63%)</title><rect x="530.2" y="325" width="7.5" height="15.0" fill="rgb(223,207,30)" rx="2" ry="2" />
<text x="533.25" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (1,030 samples, 0.15%)</title><rect x="32.5" y="405" width="1.8" height="15.0" fill="rgb(224,148,6)" rx="2" ry="2" />
<text x="35.54" y="415.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1,074 samples, 0.16%)</title><rect x="111.6" y="421" width="1.9" height="15.0" fill="rgb(244,167,20)" rx="2" ry="2" />
<text x="114.63" y="431.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::_$u7b$$u7b$closure$u7d$$u7d$::h13770553ad121b04 (2,505 samples, 0.36%)</title><rect x="533.4" y="293" width="4.3" height="15.0" fill="rgb(251,64,42)" rx="2" ry="2" />
<text x="536.38" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (15,978 samples, 2.32%)</title><rect x="12.2" y="453" width="27.3" height="15.0" fill="rgb(226,229,5)" rx="2" ry="2" />
<text x="15.17" y="463.5" >c..</text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (3,460 samples, 0.50%)</title><rect x="20.0" y="405" width="6.0" height="15.0" fill="rgb(215,224,31)" rx="2" ry="2" />
<text x="23.04" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (335 samples, 0.05%)</title><rect x="1179.2" y="405" width="0.6" height="15.0" fill="rgb(245,182,33)" rx="2" ry="2" />
<text x="1182.21" y="415.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_free (275 samples, 0.04%)</title><rect x="201.1" y="149" width="0.4" height="15.0" fill="rgb(231,79,54)" rx="2" ry="2" />
<text x="204.08" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (702 samples, 0.10%)</title><rect x="50.8" y="293" width="1.2" height="15.0" fill="rgb(232,152,48)" rx="2" ry="2" />
<text x="53.78" y="303.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (163 samples, 0.02%)</title><rect x="1174.4" y="517" width="0.3" height="15.0" fill="rgb(223,99,13)" rx="2" ry="2" />
<text x="1177.38" y="527.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (222 samples, 0.03%)</title><rect x="227.2" y="229" width="0.4" height="15.0" fill="rgb(251,158,34)" rx="2" ry="2" />
<text x="230.24" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (334 samples, 0.05%)</title><rect x="30.4" y="389" width="0.5" height="15.0" fill="rgb(240,160,12)" rx="2" ry="2" />
<text x="33.36" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (479 samples, 0.07%)</title><rect x="727.9" y="229" width="0.8" height="15.0" fill="rgb(225,135,43)" rx="2" ry="2" />
<text x="730.90" y="239.5" ></text>
</g>
<g >
<title>hashbrown::raw::sse2::Group::static_empty::h80f52363fc69c9bd (59 samples, 0.01%)</title><rect x="495.4" y="261" width="0.1" height="15.0" fill="rgb(238,16,48)" rx="2" ry="2" />
<text x="498.42" y="271.5" ></text>
</g>
<g >
<title>change_protection (689 samples, 0.10%)</title><rect x="1147.8" y="309" width="1.2" height="15.0" fill="rgb(235,210,24)" rx="2" ry="2" />
<text x="1150.84" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (592,735 samples, 85.93%)</title><rect x="113.5" y="373" width="1013.9" height="15.0" fill="rgb(227,115,8)" rx="2" ry="2" />
<text x="116.48" y="383.5" >rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9</text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (75 samples, 0.01%)</title><rect x="56.5" y="261" width="0.1" height="15.0" fill="rgb(252,220,31)" rx="2" ry="2" />
<text x="59.50" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (60 samples, 0.01%)</title><rect x="25.9" y="357" width="0.1" height="15.0" fill="rgb(244,192,40)" rx="2" ry="2" />
<text x="28.85" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (120 samples, 0.02%)</title><rect x="35.9" y="389" width="0.2" height="15.0" fill="rgb(210,95,8)" rx="2" ry="2" />
<text x="38.90" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (127 samples, 0.02%)</title><rect x="1128.2" y="389" width="0.2" height="15.0" fill="rgb(206,147,10)" rx="2" ry="2" />
<text x="1131.19" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (93 samples, 0.01%)</title><rect x="1174.7" y="485" width="0.1" height="15.0" fill="rgb(248,99,34)" rx="2" ry="2" />
<text x="1177.66" y="495.5" ></text>
</g>
<g >
<title>do_syscall_64 (132 samples, 0.02%)</title><rect x="10.8" y="453" width="0.2" height="15.0" fill="rgb(248,189,19)" rx="2" ry="2" />
<text x="13.79" y="463.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (757 samples, 0.11%)</title><rect x="936.7" y="325" width="1.3" height="15.0" fill="rgb(247,15,54)" rx="2" ry="2" />
<text x="939.68" y="335.5" ></text>
</g>
<g >
<title>__handle_mm_fault (522 samples, 0.08%)</title><rect x="1131.9" y="341" width="0.9" height="15.0" fill="rgb(252,0,36)" rx="2" ry="2" />
<text x="1134.90" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (91 samples, 0.01%)</title><rect x="1167.1" y="373" width="0.1" height="15.0" fill="rgb(253,27,22)" rx="2" ry="2" />
<text x="1170.09" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen_shared::constant_hash::simple_hash::h522b288b2afb6d20 (72 samples, 0.01%)</title><rect x="237.2" y="229" width="0.1" height="15.0" fill="rgb(210,111,24)" rx="2" ry="2" />
<text x="240.18" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (6,369 samples, 0.92%)</title><rect x="1163.3" y="421" width="10.9" height="15.0" fill="rgb(207,121,6)" rx="2" ry="2" />
<text x="1166.27" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (75 samples, 0.01%)</title><rect x="56.5" y="245" width="0.1" height="15.0" fill="rgb(215,37,44)" rx="2" ry="2" />
<text x="59.50" y="255.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (10,410 samples, 1.51%)</title><rect x="393.4" y="261" width="17.9" height="15.0" fill="rgb(246,181,7)" rx="2" ry="2" />
<text x="396.45" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::vm::Ctx::new::hf7bd00d86e8dda7b (78 samples, 0.01%)</title><rect x="542.4" y="309" width="0.2" height="15.0" fill="rgb(245,139,28)" rx="2" ry="2" />
<text x="545.43" y="319.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (1,074 samples, 0.16%)</title><rect x="111.6" y="533" width="1.9" height="15.0" fill="rgb(236,200,25)" rx="2" ry="2" />
<text x="114.63" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,698 samples, 0.39%)</title><rect x="148.5" y="165" width="4.6" height="15.0" fill="rgb(210,15,36)" rx="2" ry="2" />
<text x="151.49" y="175.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 (367 samples, 0.05%)</title><rect x="1102.8" y="341" width="0.6" height="15.0" fill="rgb(240,155,10)" rx="2" ry="2" />
<text x="1105.79" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (155 samples, 0.02%)</title><rect x="1179.8" y="373" width="0.2" height="15.0" fill="rgb(222,120,17)" rx="2" ry="2" />
<text x="1182.78" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (71 samples, 0.01%)</title><rect x="97.3" y="293" width="0.1" height="15.0" fill="rgb(231,120,15)" rx="2" ry="2" />
<text x="100.26" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..alloc..Global$u20$as$u20$core..alloc..Alloc$GT$::alloc::h0f8118dd8a43b204 (2,830 samples, 0.41%)</title><rect x="148.5" y="197" width="4.8" height="15.0" fill="rgb(235,36,14)" rx="2" ry="2" />
<text x="151.46" y="207.5" ></text>
</g>
<g >
<title>__vma_adjust (139 samples, 0.02%)</title><rect x="1153.4" y="277" width="0.2" height="15.0" fill="rgb(245,67,48)" rx="2" ry="2" />
<text x="1156.40" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5,817 samples, 0.84%)</title><rect x="772.6" y="261" width="10.0" height="15.0" fill="rgb(205,16,2)" rx="2" ry="2" />
<text x="775.62" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (100 samples, 0.01%)</title><rect x="78.5" y="309" width="0.1" height="15.0" fill="rgb(238,122,8)" rx="2" ry="2" />
<text x="81.45" y="319.5" ></text>
</g>
<g >
<title>__rdl_alloc (97 samples, 0.01%)</title><rect x="424.0" y="229" width="0.1" height="15.0" fill="rgb(238,160,5)" rx="2" ry="2" />
<text x="426.95" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (61 samples, 0.01%)</title><rect x="497.2" y="229" width="0.1" height="15.0" fill="rgb(237,22,31)" rx="2" ry="2" />
<text x="500.17" y="239.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h4ce7ee2a91eb51fd (208 samples, 0.03%)</title><rect x="48.9" y="309" width="0.4" height="15.0" fill="rgb(244,142,42)" rx="2" ry="2" />
<text x="51.93" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (106 samples, 0.02%)</title><rect x="1181.4" y="405" width="0.1" height="15.0" fill="rgb(210,10,24)" rx="2" ry="2" />
<text x="1184.36" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (67 samples, 0.01%)</title><rect x="238.0" y="293" width="0.1" height="15.0" fill="rgb(218,28,44)" rx="2" ry="2" />
<text x="241.00" y="303.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (161 samples, 0.02%)</title><rect x="23.8" y="357" width="0.2" height="15.0" fill="rgb(205,213,38)" rx="2" ry="2" />
<text x="26.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$::alloc::h33585d4e6aad0166 (80 samples, 0.01%)</title><rect x="311.2" y="213" width="0.2" height="15.0" fill="rgb(228,44,34)" rx="2" ry="2" />
<text x="314.23" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (116 samples, 0.02%)</title><rect x="1177.4" y="309" width="0.2" height="15.0" fill="rgb(232,62,38)" rx="2" ry="2" />
<text x="1180.37" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_prologue::hd2cca9ef0991829f (810 samples, 0.12%)</title><rect x="16.1" y="373" width="1.4" height="15.0" fill="rgb(215,29,18)" rx="2" ry="2" />
<text x="19.15" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (60 samples, 0.01%)</title><rect x="67.9" y="309" width="0.1" height="15.0" fill="rgb(239,152,43)" rx="2" ry="2" />
<text x="70.94" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (125 samples, 0.02%)</title><rect x="26.7" y="405" width="0.2" height="15.0" fill="rgb(213,53,30)" rx="2" ry="2" />
<text x="29.66" y="415.5" ></text>
</g>
<g >
<title>_int_malloc (63 samples, 0.01%)</title><rect x="62.3" y="277" width="0.1" height="15.0" fill="rgb(219,34,2)" rx="2" ry="2" />
<text x="65.26" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (35,972 samples, 5.21%)</title><rect x="43.4" y="373" width="61.5" height="15.0" fill="rgb(251,79,0)" rx="2" ry="2" />
<text x="46.40" y="383.5" >cranel..</text>
</g>
<g >
<title>__GI___libc_malloc (117 samples, 0.02%)</title><rect x="51.1" y="261" width="0.2" height="15.0" fill="rgb(231,177,50)" rx="2" ry="2" />
<text x="54.15" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::clear::h0291bd2ef9522314 (114 samples, 0.02%)</title><rect x="43.2" y="357" width="0.2" height="15.0" fill="rgb(245,65,48)" rx="2" ry="2" />
<text x="46.21" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::push_if_unseen::h8fc9e551ebc0c5e1 (127 samples, 0.02%)</title><rect x="70.6" y="325" width="0.2" height="15.0" fill="rgb(251,62,50)" rx="2" ry="2" />
<text x="73.61" y="335.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (121 samples, 0.02%)</title><rect x="1142.5" y="373" width="0.2" height="15.0" fill="rgb(233,118,9)" rx="2" ry="2" />
<text x="1145.47" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (102 samples, 0.01%)</title><rect x="843.1" y="261" width="0.2" height="15.0" fill="rgb(236,99,5)" rx="2" ry="2" />
<text x="846.11" y="271.5" ></text>
</g>
<g >
<title>_int_free (92 samples, 0.01%)</title><rect x="1135.3" y="373" width="0.2" height="15.0" fill="rgb(238,179,17)" rx="2" ry="2" />
<text x="1138.34" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (98 samples, 0.01%)</title><rect x="40.8" y="341" width="0.1" height="15.0" fill="rgb(231,201,45)" rx="2" ry="2" />
<text x="43.78" y="351.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (82 samples, 0.01%)</title><rect x="1157.8" y="213" width="0.1" height="15.0" fill="rgb(239,61,33)" rx="2" ry="2" />
<text x="1160.76" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5,717 samples, 0.83%)</title><rect x="675.4" y="277" width="9.8" height="15.0" fill="rgb(249,106,12)" rx="2" ry="2" />
<text x="678.38" y="287.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 (1,199 samples, 0.17%)</title><rect x="20.9" y="389" width="2.1" height="15.0" fill="rgb(246,189,39)" rx="2" ry="2" />
<text x="23.93" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (512 samples, 0.07%)</title><rect x="110.7" y="501" width="0.9" height="15.0" fill="rgb(210,29,1)" rx="2" ry="2" />
<text x="113.72" y="511.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7f206f0262523e6d (262 samples, 0.04%)</title><rect x="1161.0" y="389" width="0.5" height="15.0" fill="rgb(246,190,35)" rx="2" ry="2" />
<text x="1164.02" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb2e11882195b050b (334 samples, 0.05%)</title><rect x="203.1" y="325" width="0.6" height="15.0" fill="rgb(215,48,48)" rx="2" ry="2" />
<text x="206.09" y="335.5" ></text>
</g>
<g >
<title>_int_free (119 samples, 0.02%)</title><rect x="1135.1" y="389" width="0.2" height="15.0" fill="rgb(222,43,30)" rx="2" ry="2" />
<text x="1138.09" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2,479 samples, 0.36%)</title><rect x="617.1" y="277" width="4.2" height="15.0" fill="rgb(253,84,10)" rx="2" ry="2" />
<text x="620.10" y="287.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (72 samples, 0.01%)</title><rect x="39.4" y="357" width="0.1" height="15.0" fill="rgb(235,162,23)" rx="2" ry="2" />
<text x="42.38" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (541 samples, 0.08%)</title><rect x="1181.3" y="421" width="0.9" height="15.0" fill="rgb(253,18,10)" rx="2" ry="2" />
<text x="1184.27" y="431.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (674 samples, 0.10%)</title><rect x="108.8" y="405" width="1.2" height="15.0" fill="rgb(223,163,18)" rx="2" ry="2" />
<text x="111.82" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::prologue_epilogue::h9cb24b877f7c4837 (1,539 samples, 0.22%)</title><rect x="14.9" y="389" width="2.6" height="15.0" fill="rgb(246,136,41)" rx="2" ry="2" />
<text x="17.90" y="399.5" ></text>
</g>
<g >
<title>_int_free (290 samples, 0.04%)</title><rect x="1135.7" y="373" width="0.5" height="15.0" fill="rgb(225,212,43)" rx="2" ry="2" />
<text x="1138.67" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (2,926 samples, 0.42%)</title><rect x="405.1" y="197" width="5.0" height="15.0" fill="rgb(250,163,24)" rx="2" ry="2" />
<text x="408.14" y="207.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 (127 samples, 0.02%)</title><rect x="17.1" y="341" width="0.3" height="15.0" fill="rgb(205,93,11)" rx="2" ry="2" />
<text x="20.14" y="351.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 (125 samples, 0.02%)</title><rect x="61.8" y="293" width="0.2" height="15.0" fill="rgb(222,219,46)" rx="2" ry="2" />
<text x="64.81" y="303.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1,074 samples, 0.16%)</title><rect x="111.6" y="405" width="1.9" height="15.0" fill="rgb(226,161,10)" rx="2" ry="2" />
<text x="114.63" y="415.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (60 samples, 0.01%)</title><rect x="1179.1" y="405" width="0.1" height="15.0" fill="rgb(244,18,6)" rx="2" ry="2" />
<text x="1182.10" y="415.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (2,508 samples, 0.36%)</title><rect x="441.6" y="261" width="4.3" height="15.0" fill="rgb(223,124,15)" rx="2" ry="2" />
<text x="444.64" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute_idom::haefe97f2edc1fd51 (102 samples, 0.01%)</title><rect x="72.8" y="309" width="0.2" height="15.0" fill="rgb(227,103,35)" rx="2" ry="2" />
<text x="75.81" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (78 samples, 0.01%)</title><rect x="39.0" y="389" width="0.1" height="15.0" fill="rgb(249,188,1)" rx="2" ry="2" />
<text x="41.99" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (199 samples, 0.03%)</title><rect x="1019.9" y="325" width="0.4" height="15.0" fill="rgb(244,112,4)" rx="2" ry="2" />
<text x="1022.94" y="335.5" ></text>
</g>
<g >
<title>__sigprocmask (208 samples, 0.03%)</title><rect x="10.7" y="485" width="0.3" height="15.0" fill="rgb(205,124,47)" rx="2" ry="2" />
<text x="13.68" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (490 samples, 0.07%)</title><rect x="76.9" y="325" width="0.9" height="15.0" fill="rgb(236,149,21)" rx="2" ry="2" />
<text x="79.94" y="335.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::DynFunc::call::hd3653a4c23d70200 (4,595 samples, 0.67%)</title><rect x="529.8" y="341" width="7.9" height="15.0" fill="rgb(241,28,50)" rx="2" ry="2" />
<text x="532.81" y="351.5" ></text>
</g>
<g >
<title>rocinante (689,804 samples, 100.00%)</title><rect x="10.0" y="581" width="1180.0" height="15.0" fill="rgb(242,62,10)" rx="2" ry="2" />
<text x="13.00" y="591.5" >rocinante</text>
</g>
<g >
<title>wasmer_clif_backend::get_isa::he894f6446deff718 (798 samples, 0.12%)</title><rect x="236.6" y="277" width="1.4" height="15.0" fill="rgb(215,155,18)" rx="2" ry="2" />
<text x="239.64" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (416 samples, 0.06%)</title><rect x="74.5" y="341" width="0.8" height="15.0" fill="rgb(254,33,41)" rx="2" ry="2" />
<text x="77.55" y="351.5" ></text>
</g>
<g >
<title>mprotect_fixup (1,566 samples, 0.23%)</title><rect x="229.2" y="165" width="2.7" height="15.0" fill="rgb(248,158,15)" rx="2" ry="2" />
<text x="232.18" y="175.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (81 samples, 0.01%)</title><rect x="98.4" y="277" width="0.2" height="15.0" fill="rgb(229,0,33)" rx="2" ry="2" />
<text x="101.42" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (813 samples, 0.12%)</title><rect x="1176.9" y="389" width="1.4" height="15.0" fill="rgb(248,151,30)" rx="2" ry="2" />
<text x="1179.92" y="399.5" ></text>
</g>
<g >
<title>wasmparser::validator::ValidatingParser::check_value_types::h852fc8c2d0e6778a (731 samples, 0.11%)</title><rect x="445.9" y="261" width="1.3" height="15.0" fill="rgb(234,117,49)" rx="2" ry="2" />
<text x="448.93" y="271.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (371 samples, 0.05%)</title><rect x="1148.4" y="277" width="0.6" height="15.0" fill="rgb(237,12,39)" rx="2" ry="2" />
<text x="1151.38" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (1,444 samples, 0.21%)</title><rect x="12.4" y="405" width="2.5" height="15.0" fill="rgb(218,224,48)" rx="2" ry="2" />
<text x="15.43" y="415.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (204 samples, 0.03%)</title><rect x="217.5" y="133" width="0.3" height="15.0" fill="rgb(234,203,51)" rx="2" ry="2" />
<text x="220.48" y="143.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (87 samples, 0.01%)</title><rect x="26.7" y="325" width="0.2" height="15.0" fill="rgb(241,202,2)" rx="2" ry="2" />
<text x="29.72" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (145 samples, 0.02%)</title><rect x="1167.4" y="357" width="0.3" height="15.0" fill="rgb(244,8,12)" rx="2" ry="2" />
<text x="1170.45" y="367.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (60 samples, 0.01%)</title><rect x="1174.0" y="341" width="0.1" height="15.0" fill="rgb(221,217,15)" rx="2" ry="2" />
<text x="1177.04" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (71 samples, 0.01%)</title><rect x="1167.1" y="357" width="0.1" height="15.0" fill="rgb(220,101,25)" rx="2" ry="2" />
<text x="1170.13" y="367.5" ></text>
</g>
<g >
<title>_int_free (1,714 samples, 0.25%)</title><rect x="769.2" y="245" width="2.9" height="15.0" fill="rgb(223,55,0)" rx="2" ry="2" />
<text x="772.21" y="255.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb4af2f77e0210fc8 (91 samples, 0.01%)</title><rect x="1136.3" y="389" width="0.2" height="15.0" fill="rgb(242,30,37)" rx="2" ry="2" />
<text x="1139.30" y="399.5" ></text>
</g>
<g >
<title>__rdl_alloc (60 samples, 0.01%)</title><rect x="962.9" y="325" width="0.1" height="15.0" fill="rgb(234,95,37)" rx="2" ry="2" />
<text x="965.93" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (82 samples, 0.01%)</title><rect x="19.5" y="389" width="0.1" height="15.0" fill="rgb(253,176,15)" rx="2" ry="2" />
<text x="22.46" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (74 samples, 0.01%)</title><rect x="1182.2" y="357" width="0.1" height="15.0" fill="rgb(207,98,21)" rx="2" ry="2" />
<text x="1185.20" y="367.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..Type$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1038c9c3f65f373e (13,910 samples, 2.02%)</title><rect x="661.4" y="293" width="23.8" height="15.0" fill="rgb(250,132,11)" rx="2" ry="2" />
<text x="664.37" y="303.5" >_..</text>
</g>
<g >
<title>__perf_addr_filters_adjust (250 samples, 0.04%)</title><rect x="1149.2" y="293" width="0.4" height="15.0" fill="rgb(218,51,43)" rx="2" ry="2" />
<text x="1152.21" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (130 samples, 0.02%)</title><rect x="387.7" y="229" width="0.2" height="15.0" fill="rgb(216,125,10)" rx="2" ry="2" />
<text x="390.70" y="239.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 (186,973 samples, 27.11%)</title><rect x="207.5" y="309" width="319.8" height="15.0" fill="rgb(210,121,22)" rx="2" ry="2" />
<text x="210.46" y="319.5" >_$LT$wasmer_runtime_core..codegen..Streamin..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (153 samples, 0.02%)</title><rect x="1183.8" y="357" width="0.3" height="15.0" fill="rgb(252,85,8)" rx="2" ry="2" />
<text x="1186.80" y="367.5" ></text>
</g>
<g >
<title>force_sig_info (90 samples, 0.01%)</title><rect x="11.5" y="469" width="0.1" height="15.0" fill="rgb(252,222,13)" rx="2" ry="2" />
<text x="14.48" y="479.5" ></text>
</g>
<g >
<title>_int_free (77 samples, 0.01%)</title><rect x="388.3" y="229" width="0.2" height="15.0" fill="rgb(210,78,44)" rx="2" ry="2" />
<text x="391.32" y="239.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 (813 samples, 0.12%)</title><rect x="1176.9" y="437" width="1.4" height="15.0" fill="rgb(254,226,6)" rx="2" ry="2" />
<text x="1179.92" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (69 samples, 0.01%)</title><rect x="50.5" y="293" width="0.1" height="15.0" fill="rgb(228,224,7)" rx="2" ry="2" />
<text x="53.48" y="303.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (211 samples, 0.03%)</title><rect x="1132.1" y="309" width="0.4" height="15.0" fill="rgb(228,33,35)" rx="2" ry="2" />
<text x="1135.11" y="319.5" ></text>
</g>
<g >
<title>__rdl_alloc (64 samples, 0.01%)</title><rect x="1082.6" y="325" width="0.1" height="15.0" fill="rgb(221,178,46)" rx="2" ry="2" />
<text x="1085.58" y="335.5" ></text>
</g>
<g >
<title>cranelift_entity::list::ListPool$LT$T$GT$::alloc::hf8b79c8ce8fc5d1f (185 samples, 0.03%)</title><rect x="1141.5" y="389" width="0.3" height="15.0" fill="rgb(239,67,8)" rx="2" ry="2" />
<text x="1144.47" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (88 samples, 0.01%)</title><rect x="212.5" y="261" width="0.2" height="15.0" fill="rgb(231,4,26)" rx="2" ry="2" />
<text x="215.51" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (84 samples, 0.01%)</title><rect x="1160.2" y="373" width="0.2" height="15.0" fill="rgb(208,61,3)" rx="2" ry="2" />
<text x="1163.23" y="383.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h133039c7e5ab2b87 (3,008 samples, 0.44%)</title><rect x="148.2" y="293" width="5.1" height="15.0" fill="rgb(207,183,36)" rx="2" ry="2" />
<text x="151.15" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (126 samples, 0.02%)</title><rect x="1183.8" y="325" width="0.3" height="15.0" fill="rgb(210,6,2)" rx="2" ry="2" />
<text x="1186.85" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_free (69 samples, 0.01%)</title><rect x="1136.3" y="373" width="0.1" height="15.0" fill="rgb(234,99,53)" rx="2" ry="2" />
<text x="1139.33" y="383.5" ></text>
</g>
<g >
<title>malloc_printerr (62 samples, 0.01%)</title><rect x="1031.6" y="277" width="0.1" height="15.0" fill="rgb(233,24,9)" rx="2" ry="2" />
<text x="1034.63" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_1::h655f2e9c6d128efc (65 samples, 0.01%)</title><rect x="25.7" y="389" width="0.1" height="15.0" fill="rgb(249,13,13)" rx="2" ry="2" />
<text x="28.71" y="399.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (171 samples, 0.02%)</title><rect x="51.7" y="261" width="0.3" height="15.0" fill="rgb(243,33,8)" rx="2" ry="2" />
<text x="54.66" y="271.5" ></text>
</g>
<g >
<title>__rdl_alloc (151 samples, 0.02%)</title><rect x="176.2" y="309" width="0.3" height="15.0" fill="rgb(251,223,19)" rx="2" ry="2" />
<text x="179.23" y="319.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (1,074 samples, 0.16%)</title><rect x="111.6" y="485" width="1.9" height="15.0" fill="rgb(228,21,14)" rx="2" ry="2" />
<text x="114.63" y="495.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1,228 samples, 0.18%)</title><rect x="1174.8" y="357" width="2.1" height="15.0" fill="rgb(210,191,40)" rx="2" ry="2" />
<text x="1177.81" y="367.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.689856235829814499 (194 samples, 0.03%)</title><rect x="1128.7" y="421" width="0.3" height="15.0" fill="rgb(229,217,36)" rx="2" ry="2" />
<text x="1131.67" y="431.5" ></text>
</g>
<g >
<title>__rdl_realloc (199 samples, 0.03%)</title><rect x="858.0" y="309" width="0.4" height="15.0" fill="rgb(234,68,42)" rx="2" ry="2" />
<text x="861.04" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_return_abi::h764f90cd82edb83f (65 samples, 0.01%)</title><rect x="55.7" y="293" width="0.1" height="15.0" fill="rgb(251,152,34)" rx="2" ry="2" />
<text x="58.72" y="303.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::hce468c49acab73c0 (94 samples, 0.01%)</title><rect x="12.6" y="373" width="0.2" height="15.0" fill="rgb(217,164,34)" rx="2" ry="2" />
<text x="15.62" y="383.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::insert::h7f71a0adc74f5535 (144 samples, 0.02%)</title><rect x="500.4" y="261" width="0.3" height="15.0" fill="rgb(249,224,38)" rx="2" ry="2" />
<text x="503.41" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (195 samples, 0.03%)</title><rect x="17.1" y="357" width="0.3" height="15.0" fill="rgb(247,228,22)" rx="2" ry="2" />
<text x="20.11" y="367.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (270 samples, 0.04%)</title><rect x="539.3" y="309" width="0.4" height="15.0" fill="rgb(222,191,42)" rx="2" ry="2" />
<text x="542.27" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (113 samples, 0.02%)</title><rect x="24.1" y="389" width="0.2" height="15.0" fill="rgb(228,152,48)" rx="2" ry="2" />
<text x="27.10" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (74 samples, 0.01%)</title><rect x="505.3" y="261" width="0.1" height="15.0" fill="rgb(249,194,27)" rx="2" ry="2" />
<text x="508.32" y="271.5" ></text>
</g>
<g >
<title>_int_realloc (3,827 samples, 0.55%)</title><rect x="801.0" y="277" width="6.6" height="15.0" fill="rgb(245,118,17)" rx="2" ry="2" />
<text x="804.01" y="287.5" ></text>
</g>
<g >
<title>alloc_pages_vma (323 samples, 0.05%)</title><rect x="225.2" y="165" width="0.6" height="15.0" fill="rgb(248,225,14)" rx="2" ry="2" />
<text x="228.23" y="175.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (147 samples, 0.02%)</title><rect x="13.7" y="325" width="0.3" height="15.0" fill="rgb(241,106,18)" rx="2" ry="2" />
<text x="16.74" y="335.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (90 samples, 0.01%)</title><rect x="1170.5" y="389" width="0.1" height="15.0" fill="rgb(244,163,39)" rx="2" ry="2" />
<text x="1173.46" y="399.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::call_protected::h998ed36d6bf840fc (3,009 samples, 0.44%)</title><rect x="1184.8" y="565" width="5.2" height="15.0" fill="rgb(208,140,13)" rx="2" ry="2" />
<text x="1187.84" y="575.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (1,548 samples, 0.22%)</title><rect x="1163.4" y="405" width="2.6" height="15.0" fill="rgb(232,170,13)" rx="2" ry="2" />
<text x="1166.38" y="415.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,352 samples, 0.20%)</title><rect x="200.1" y="261" width="2.3" height="15.0" fill="rgb(229,130,52)" rx="2" ry="2" />
<text x="203.12" y="271.5" ></text>
</g>
<g >
<title>_int_free (5,155 samples, 0.75%)</title><rect x="475.3" y="245" width="8.9" height="15.0" fill="rgb(247,179,45)" rx="2" ry="2" />
<text x="478.34" y="255.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (1,035 samples, 0.15%)</title><rect x="296.4" y="245" width="1.7" height="15.0" fill="rgb(207,139,25)" rx="2" ry="2" />
<text x="299.37" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,913 samples, 0.28%)</title><rect x="768.9" y="261" width="3.2" height="15.0" fill="rgb(245,190,41)" rx="2" ry="2" />
<text x="771.87" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (3,189 samples, 0.46%)</title><rect x="688.6" y="293" width="5.5" height="15.0" fill="rgb(231,91,38)" rx="2" ry="2" />
<text x="691.63" y="303.5" ></text>
</g>
<g >
<title>_int_free (68 samples, 0.01%)</title><rect x="1178.3" y="357" width="0.1" height="15.0" fill="rgb(222,166,52)" rx="2" ry="2" />
<text x="1181.31" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (105 samples, 0.02%)</title><rect x="33.0" y="389" width="0.2" height="15.0" fill="rgb(213,4,5)" rx="2" ry="2" />
<text x="35.98" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (67 samples, 0.01%)</title><rect x="498.8" y="229" width="0.1" height="15.0" fill="rgb(231,86,51)" rx="2" ry="2" />
<text x="501.82" y="239.5" ></text>
</g>
<g >
<title>__rdl_realloc (159 samples, 0.02%)</title><rect x="674.8" y="245" width="0.3" height="15.0" fill="rgb(227,126,28)" rx="2" ry="2" />
<text x="677.83" y="255.5" ></text>
</g>
<g >
<title>_int_realloc (147 samples, 0.02%)</title><rect x="1182.6" y="341" width="0.3" height="15.0" fill="rgb(228,17,4)" rx="2" ry="2" />
<text x="1185.64" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (2,453 samples, 0.36%)</title><rect x="627.3" y="261" width="4.2" height="15.0" fill="rgb(250,9,30)" rx="2" ry="2" />
<text x="630.29" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (388 samples, 0.06%)</title><rect x="89.4" y="261" width="0.7" height="15.0" fill="rgb(251,164,34)" rx="2" ry="2" />
<text x="92.40" y="271.5" ></text>
</g>
<g >
<title>_int_free (1,558 samples, 0.23%)</title><rect x="802.9" y="261" width="2.6" height="15.0" fill="rgb(213,61,8)" rx="2" ry="2" />
<text x="805.87" y="271.5" ></text>
</g>
<g >
<title>_int_free (1,771 samples, 0.26%)</title><rect x="838.5" y="245" width="3.0" height="15.0" fill="rgb(251,109,19)" rx="2" ry="2" />
<text x="841.47" y="255.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (73 samples, 0.01%)</title><rect x="12.3" y="389" width="0.1" height="15.0" fill="rgb(228,144,50)" rx="2" ry="2" />
<text x="15.31" y="399.5" ></text>
</g>
<g >
<title>__rdl_alloc (61 samples, 0.01%)</title><rect x="186.7" y="341" width="0.1" height="15.0" fill="rgb(231,130,51)" rx="2" ry="2" />
<text x="189.72" y="351.5" ></text>
</g>
<g >
<title>__sigprocmask (1,862 samples, 0.27%)</title><rect x="534.3" y="229" width="3.2" height="15.0" fill="rgb(247,175,41)" rx="2" ry="2" />
<text x="537.29" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (3,396 samples, 0.49%)</title><rect x="81.4" y="325" width="5.9" height="15.0" fill="rgb(225,65,43)" rx="2" ry="2" />
<text x="84.45" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (89 samples, 0.01%)</title><rect x="438.1" y="213" width="0.2" height="15.0" fill="rgb(225,149,15)" rx="2" ry="2" />
<text x="441.14" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (84 samples, 0.01%)</title><rect x="1160.2" y="389" width="0.2" height="15.0" fill="rgb(254,78,50)" rx="2" ry="2" />
<text x="1163.23" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hce52ec9afbe5c3e7 (62 samples, 0.01%)</title><rect x="526.9" y="213" width="0.1" height="15.0" fill="rgb(217,83,24)" rx="2" ry="2" />
<text x="529.85" y="223.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (1,539 samples, 0.22%)</title><rect x="14.9" y="405" width="2.6" height="15.0" fill="rgb(232,93,50)" rx="2" ry="2" />
<text x="17.90" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (105 samples, 0.02%)</title><rect x="95.3" y="309" width="0.1" height="15.0" fill="rgb(237,228,36)" rx="2" ry="2" />
<text x="98.27" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (59 samples, 0.01%)</title><rect x="12.2" y="405" width="0.1" height="15.0" fill="rgb(236,193,50)" rx="2" ry="2" />
<text x="15.17" y="415.5" ></text>
</g>
<g >
<title>find_vma (63 samples, 0.01%)</title><rect x="216.6" y="165" width="0.1" height="15.0" fill="rgb(205,34,11)" rx="2" ry="2" />
<text x="219.56" y="175.5" ></text>
</g>
<g >
<title>perf_event_mmap (768 samples, 0.11%)</title><rect x="229.6" y="149" width="1.4" height="15.0" fill="rgb(213,168,31)" rx="2" ry="2" />
<text x="232.65" y="159.5" ></text>
</g>
<g >
<title>__lock_text_start (108 samples, 0.02%)</title><rect x="197.5" y="69" width="0.1" height="15.0" fill="rgb(207,89,7)" rx="2" ry="2" />
<text x="200.46" y="79.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (129 samples, 0.02%)</title><rect x="112.9" y="357" width="0.3" height="15.0" fill="rgb(226,137,49)" rx="2" ry="2" />
<text x="115.95" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (219 samples, 0.03%)</title><rect x="14.1" y="357" width="0.3" height="15.0" fill="rgb(226,137,42)" rx="2" ry="2" />
<text x="17.06" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (83 samples, 0.01%)</title><rect x="1169.9" y="373" width="0.2" height="15.0" fill="rgb(238,22,23)" rx="2" ry="2" />
<text x="1172.92" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (105 samples, 0.02%)</title><rect x="1104.7" y="309" width="0.2" height="15.0" fill="rgb(237,212,9)" rx="2" ry="2" />
<text x="1107.73" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (63 samples, 0.01%)</title><rect x="81.3" y="293" width="0.1" height="15.0" fill="rgb(247,149,27)" rx="2" ry="2" />
<text x="84.34" y="303.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::h2ad6d2b639bc919b (138 samples, 0.02%)</title><rect x="1178.6" y="357" width="0.2" height="15.0" fill="rgb(245,17,21)" rx="2" ry="2" />
<text x="1181.56" y="367.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (154 samples, 0.02%)</title><rect x="1165.0" y="357" width="0.3" height="15.0" fill="rgb(212,50,30)" rx="2" ry="2" />
<text x="1168.00" y="367.5" ></text>
</g>
<g >
<title>security_vm_enough_memory_mm (70 samples, 0.01%)</title><rect x="231.0" y="149" width="0.1" height="15.0" fill="rgb(236,87,25)" rx="2" ry="2" />
<text x="233.96" y="159.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..relocation..LocalTrapSink$u20$as$u20$cranelift_codegen..binemit..memorysink..TrapSink$GT$::trap::h3a8b24a0da581ead (242 samples, 0.04%)</title><rect x="45.1" y="325" width="0.5" height="15.0" fill="rgb(245,27,26)" rx="2" ry="2" />
<text x="48.14" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (72 samples, 0.01%)</title><rect x="212.7" y="261" width="0.1" height="15.0" fill="rgb(206,133,47)" rx="2" ry="2" />
<text x="215.66" y="271.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::haf5b82d74d141c18 (101 samples, 0.01%)</title><rect x="1128.4" y="421" width="0.2" height="15.0" fill="rgb(207,15,3)" rx="2" ry="2" />
<text x="1131.45" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (269 samples, 0.04%)</title><rect x="202.6" y="309" width="0.4" height="15.0" fill="rgb(237,68,41)" rx="2" ry="2" />
<text x="205.58" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,852 samples, 0.41%)</title><rect x="1184.9" y="501" width="4.8" height="15.0" fill="rgb(219,162,53)" rx="2" ry="2" />
<text x="1187.85" y="511.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (209 samples, 0.03%)</title><rect x="782.1" y="229" width="0.3" height="15.0" fill="rgb(247,175,46)" rx="2" ry="2" />
<text x="785.09" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (125 samples, 0.02%)</title><rect x="1176.9" y="325" width="0.2" height="15.0" fill="rgb(235,229,22)" rx="2" ry="2" />
<text x="1179.92" y="335.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h91ab9e9284da52ab (148 samples, 0.02%)</title><rect x="388.2" y="261" width="0.3" height="15.0" fill="rgb(240,101,42)" rx="2" ry="2" />
<text x="391.21" y="271.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::impl_avx2::hcbb75f7591de3cb9 (62 samples, 0.01%)</title><rect x="1126.7" y="309" width="0.1" height="15.0" fill="rgb(247,10,38)" rx="2" ry="2" />
<text x="1129.73" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (117 samples, 0.02%)</title><rect x="14.1" y="341" width="0.2" height="15.0" fill="rgb(233,209,33)" rx="2" ry="2" />
<text x="17.11" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (1,163 samples, 0.17%)</title><rect x="918.2" y="293" width="2.0" height="15.0" fill="rgb(230,111,20)" rx="2" ry="2" />
<text x="921.24" y="303.5" ></text>
</g>
<g >
<title>hashbrown::raw::capacity_to_buckets::hf5c44c5afd412277 (187 samples, 0.03%)</title><rect x="410.9" y="213" width="0.4" height="15.0" fill="rgb(245,209,8)" rx="2" ry="2" />
<text x="413.94" y="223.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (94 samples, 0.01%)</title><rect x="674.9" y="229" width="0.2" height="15.0" fill="rgb(236,152,6)" rx="2" ry="2" />
<text x="677.94" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::Builder::finish::h10c6dcad4391fb0e (244 samples, 0.04%)</title><rect x="1145.3" y="405" width="0.4" height="15.0" fill="rgb(240,160,5)" rx="2" ry="2" />
<text x="1148.29" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (60 samples, 0.01%)</title><rect x="1180.1" y="373" width="0.1" height="15.0" fill="rgb(242,139,50)" rx="2" ry="2" />
<text x="1183.12" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (109 samples, 0.02%)</title><rect x="1135.3" y="389" width="0.2" height="15.0" fill="rgb(214,130,12)" rx="2" ry="2" />
<text x="1138.31" y="399.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (95 samples, 0.01%)</title><rect x="1124.7" y="325" width="0.1" height="15.0" fill="rgb(209,205,20)" rx="2" ry="2" />
<text x="1127.66" y="335.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (131 samples, 0.02%)</title><rect x="1182.9" y="389" width="0.2" height="15.0" fill="rgb(251,51,31)" rx="2" ry="2" />
<text x="1185.89" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (72 samples, 0.01%)</title><rect x="14.3" y="341" width="0.1" height="15.0" fill="rgb(243,114,44)" rx="2" ry="2" />
<text x="17.31" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4,595 samples, 0.67%)</title><rect x="402.3" y="213" width="7.8" height="15.0" fill="rgb(210,7,43)" rx="2" ry="2" />
<text x="405.29" y="223.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_export_entry::hf5e381312c2f0c73 (3,868 samples, 0.56%)</title><rect x="328.6" y="245" width="6.6" height="15.0" fill="rgb(251,165,38)" rx="2" ry="2" />
<text x="331.57" y="255.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.9971861265714738260 (145 samples, 0.02%)</title><rect x="1127.2" y="341" width="0.2" height="15.0" fill="rgb(221,123,33)" rx="2" ry="2" />
<text x="1130.19" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc01085cdf6cb9abc (3,384 samples, 0.49%)</title><rect x="949.0" y="325" width="5.8" height="15.0" fill="rgb(216,152,14)" rx="2" ry="2" />
<text x="952.03" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_inst_arg::h0a85602c512eb008 (61 samples, 0.01%)</title><rect x="16.0" y="357" width="0.1" height="15.0" fill="rgb(251,220,20)" rx="2" ry="2" />
<text x="18.97" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (103 samples, 0.01%)</title><rect x="98.4" y="309" width="0.2" height="15.0" fill="rgb(212,70,20)" rx="2" ry="2" />
<text x="101.38" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (68 samples, 0.01%)</title><rect x="1145.8" y="389" width="0.1" height="15.0" fill="rgb(221,87,15)" rx="2" ry="2" />
<text x="1148.79" y="399.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (60 samples, 0.01%)</title><rect x="35.1" y="309" width="0.1" height="15.0" fill="rgb(218,139,54)" rx="2" ry="2" />
<text x="38.13" y="319.5" ></text>
</g>
<g >
<title>__GI___mprotect (2,651 samples, 0.38%)</title><rect x="216.0" y="245" width="4.6" height="15.0" fill="rgb(211,206,34)" rx="2" ry="2" />
<text x="219.04" y="255.5" ></text>
</g>
<g >
<title>__rust_probestack (89 samples, 0.01%)</title><rect x="1184.7" y="565" width="0.1" height="15.0" fill="rgb(254,19,8)" rx="2" ry="2" />
<text x="1187.66" y="575.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (4,973 samples, 0.72%)</title><rect x="638.0" y="245" width="8.5" height="15.0" fill="rgb(252,126,41)" rx="2" ry="2" />
<text x="641.04" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (146 samples, 0.02%)</title><rect x="10.8" y="469" width="0.2" height="15.0" fill="rgb(237,11,13)" rx="2" ry="2" />
<text x="13.79" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (121 samples, 0.02%)</title><rect x="209.3" y="277" width="0.2" height="15.0" fill="rgb(246,214,10)" rx="2" ry="2" />
<text x="212.32" y="287.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (163 samples, 0.02%)</title><rect x="237.3" y="245" width="0.3" height="15.0" fill="rgb(253,93,6)" rx="2" ry="2" />
<text x="240.31" y="255.5" ></text>
</g>
<g >
<title>__rdl_alloc (59 samples, 0.01%)</title><rect x="766.5" y="245" width="0.1" height="15.0" fill="rgb(217,105,37)" rx="2" ry="2" />
<text x="769.50" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (1,074 samples, 0.16%)</title><rect x="111.6" y="389" width="1.9" height="15.0" fill="rgb(228,194,28)" rx="2" ry="2" />
<text x="114.63" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (61 samples, 0.01%)</title><rect x="60.4" y="309" width="0.1" height="15.0" fill="rgb(238,89,43)" rx="2" ry="2" />
<text x="63.35" y="319.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5f3b24d142b4e9b8 (3,159 samples, 0.46%)</title><rect x="194.5" y="293" width="5.4" height="15.0" fill="rgb(234,25,33)" rx="2" ry="2" />
<text x="197.45" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_operator::h66dd186d320fc797 (1,285 samples, 0.19%)</title><rect x="313.6" y="245" width="2.2" height="15.0" fill="rgb(218,41,21)" rx="2" ry="2" />
<text x="316.62" y="255.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::h821c9bfed9e632dc (20,917 samples, 3.03%)</title><rect x="808.8" y="309" width="35.8" height="15.0" fill="rgb(236,101,46)" rx="2" ry="2" />
<text x="811.80" y="319.5" >par..</text>
</g>
<g >
<title>__rust_realloc (147 samples, 0.02%)</title><rect x="752.4" y="229" width="0.2" height="15.0" fill="rgb(205,5,34)" rx="2" ry="2" />
<text x="755.37" y="239.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (2,022 samples, 0.29%)</title><rect x="1155.2" y="421" width="3.5" height="15.0" fill="rgb(223,143,48)" rx="2" ry="2" />
<text x="1158.20" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (114 samples, 0.02%)</title><rect x="1143.2" y="405" width="0.2" height="15.0" fill="rgb(233,70,31)" rx="2" ry="2" />
<text x="1146.17" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::fill::h8891fd072647990a (144 samples, 0.02%)</title><rect x="35.4" y="389" width="0.2" height="15.0" fill="rgb(245,77,54)" rx="2" ry="2" />
<text x="38.37" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (61 samples, 0.01%)</title><rect x="68.0" y="325" width="0.1" height="15.0" fill="rgb(253,89,7)" rx="2" ry="2" />
<text x="71.04" y="335.5" ></text>
</g>
<g >
<title>_int_free (1,706 samples, 0.25%)</title><rect x="243.9" y="245" width="2.9" height="15.0" fill="rgb(251,137,38)" rx="2" ry="2" />
<text x="246.87" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (108 samples, 0.02%)</title><rect x="237.0" y="229" width="0.2" height="15.0" fill="rgb(233,222,49)" rx="2" ry="2" />
<text x="239.99" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::clear::h4a6ec45cff5ac809 (125 samples, 0.02%)</title><rect x="43.0" y="357" width="0.2" height="15.0" fill="rgb(213,101,44)" rx="2" ry="2" />
<text x="45.99" y="367.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen3isa3x8615isa_constructor17h4c0ec78ad154a9afE.llvm.1715965870215341490 (220 samples, 0.03%)</title><rect x="1145.3" y="389" width="0.4" height="15.0" fill="rgb(214,223,20)" rx="2" ry="2" />
<text x="1148.33" y="399.5" ></text>
</g>
<g >
<title>_int_realloc (389 samples, 0.06%)</title><rect x="630.8" y="245" width="0.7" height="15.0" fill="rgb(206,53,15)" rx="2" ry="2" />
<text x="633.82" y="255.5" ></text>
</g>
<g >
<title>parity_wasm::builder::module::module::h7f1260318b47d742 (339 samples, 0.05%)</title><rect x="1057.1" y="341" width="0.6" height="15.0" fill="rgb(220,217,32)" rx="2" ry="2" />
<text x="1060.12" y="351.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 (6,692 samples, 0.97%)</title><rect x="1162.9" y="485" width="11.5" height="15.0" fill="rgb(205,215,32)" rx="2" ry="2" />
<text x="1165.93" y="495.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (60 samples, 0.01%)</title><rect x="25.9" y="389" width="0.1" height="15.0" fill="rgb(229,217,7)" rx="2" ry="2" />
<text x="28.85" y="399.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (3,008 samples, 0.44%)</title><rect x="1184.8" y="517" width="5.2" height="15.0" fill="rgb(215,25,7)" rx="2" ry="2" />
<text x="1187.84" y="527.5" ></text>
</g>
<g >
<title>_int_realloc (90 samples, 0.01%)</title><rect x="525.0" y="165" width="0.2" height="15.0" fill="rgb(240,197,17)" rx="2" ry="2" />
<text x="528.02" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (82 samples, 0.01%)</title><rect x="100.6" y="309" width="0.2" height="15.0" fill="rgb(241,213,26)" rx="2" ry="2" />
<text x="103.64" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,029 samples, 0.29%)</title><rect x="228.6" y="213" width="3.5" height="15.0" fill="rgb(231,200,30)" rx="2" ry="2" />
<text x="231.58" y="223.5" ></text>
</g>
<g >
<title>_int_free (193 samples, 0.03%)</title><rect x="109.0" y="373" width="0.3" height="15.0" fill="rgb(235,127,24)" rx="2" ry="2" />
<text x="112.01" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (218 samples, 0.03%)</title><rect x="1183.7" y="437" width="0.4" height="15.0" fill="rgb(233,84,16)" rx="2" ry="2" />
<text x="1186.74" y="447.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (60 samples, 0.01%)</title><rect x="78.5" y="277" width="0.1" height="15.0" fill="rgb(234,106,40)" rx="2" ry="2" />
<text x="81.52" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (1,444 samples, 0.21%)</title><rect x="12.4" y="421" width="2.5" height="15.0" fill="rgb(249,87,26)" rx="2" ry="2" />
<text x="15.43" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,853 samples, 0.27%)</title><rect x="933.5" y="325" width="3.2" height="15.0" fill="rgb(247,70,11)" rx="2" ry="2" />
<text x="936.51" y="335.5" ></text>
</g>
<g >
<title>__lock_text_start (86 samples, 0.01%)</title><rect x="11.5" y="453" width="0.1" height="15.0" fill="rgb(238,176,6)" rx="2" ry="2" />
<text x="14.49" y="463.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (93 samples, 0.01%)</title><rect x="99.5" y="325" width="0.1" height="15.0" fill="rgb(220,124,24)" rx="2" ry="2" />
<text x="102.48" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,342 samples, 0.34%)</title><rect x="232.6" y="229" width="4.0" height="15.0" fill="rgb(208,219,34)" rx="2" ry="2" />
<text x="235.57" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (59 samples, 0.01%)</title><rect x="73.7" y="293" width="0.1" height="15.0" fill="rgb(248,117,53)" rx="2" ry="2" />
<text x="76.72" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (64 samples, 0.01%)</title><rect x="104.2" y="309" width="0.1" height="15.0" fill="rgb(229,198,46)" rx="2" ry="2" />
<text x="107.21" y="319.5" ></text>
</g>
<g >
<title>hashbrown::map::make_hash::h9e18b3170aa0c7c4 (1,707 samples, 0.25%)</title><rect x="394.5" y="245" width="2.9" height="15.0" fill="rgb(251,26,38)" rx="2" ry="2" />
<text x="397.47" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (102 samples, 0.01%)</title><rect x="472.9" y="245" width="0.2" height="15.0" fill="rgb(243,205,10)" rx="2" ry="2" />
<text x="475.93" y="255.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h741bc29efe0e57bc (98 samples, 0.01%)</title><rect x="388.5" y="261" width="0.1" height="15.0" fill="rgb(228,0,4)" rx="2" ry="2" />
<text x="391.47" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (59 samples, 0.01%)</title><rect x="1166.3" y="341" width="0.1" height="15.0" fill="rgb(213,43,26)" rx="2" ry="2" />
<text x="1169.32" y="351.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (163 samples, 0.02%)</title><rect x="675.1" y="261" width="0.3" height="15.0" fill="rgb(226,114,2)" rx="2" ry="2" />
<text x="678.10" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (71 samples, 0.01%)</title><rect x="1166.4" y="373" width="0.1" height="15.0" fill="rgb(227,161,45)" rx="2" ry="2" />
<text x="1169.42" y="383.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (881 samples, 0.13%)</title><rect x="89.1" y="293" width="1.5" height="15.0" fill="rgb(228,68,35)" rx="2" ry="2" />
<text x="92.07" y="303.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (2,273 samples, 0.33%)</title><rect x="1178.3" y="501" width="3.9" height="15.0" fill="rgb(234,159,37)" rx="2" ry="2" />
<text x="1181.31" y="511.5" ></text>
</g>
<g >
<title>do_error_trap.part.9 (345 samples, 0.05%)</title><rect x="11.1" y="501" width="0.5" height="15.0" fill="rgb(206,82,21)" rx="2" ry="2" />
<text x="14.06" y="511.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$GT$::with_capacity::hd8a910271e6e0356 (2,867 samples, 0.42%)</title><rect x="148.4" y="229" width="4.9" height="15.0" fill="rgb(222,140,45)" rx="2" ry="2" />
<text x="151.39" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (110 samples, 0.02%)</title><rect x="66.1" y="309" width="0.2" height="15.0" fill="rgb(209,91,53)" rx="2" ry="2" />
<text x="69.10" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (148 samples, 0.02%)</title><rect x="651.0" y="293" width="0.2" height="15.0" fill="rgb(247,165,42)" rx="2" ry="2" />
<text x="653.98" y="303.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (314 samples, 0.05%)</title><rect x="238.3" y="293" width="0.5" height="15.0" fill="rgb(231,52,6)" rx="2" ry="2" />
<text x="241.26" y="303.5" ></text>
</g>
<g >
<title>malloc_consolidate (176 samples, 0.03%)</title><rect x="1159.3" y="373" width="0.3" height="15.0" fill="rgb(211,178,37)" rx="2" ry="2" />
<text x="1162.27" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..types..FuncSig$u20$as$u20$core..hash..Hash$GT$::hash::h1e327e01a11a280a (88 samples, 0.01%)</title><rect x="541.6" y="245" width="0.2" height="15.0" fill="rgb(207,55,9)" rx="2" ry="2" />
<text x="544.62" y="255.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h7c0b96f23ce547fa (125 samples, 0.02%)</title><rect x="211.1" y="277" width="0.2" height="15.0" fill="rgb(212,123,22)" rx="2" ry="2" />
<text x="214.12" y="287.5" ></text>
</g>
<g >
<title>malloc_printerr (64 samples, 0.01%)</title><rect x="423.8" y="197" width="0.1" height="15.0" fill="rgb(237,154,34)" rx="2" ry="2" />
<text x="426.84" y="207.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h585962fb74e37fd1 (1,515 samples, 0.22%)</title><rect x="199.9" y="325" width="2.5" height="15.0" fill="rgb(252,108,43)" rx="2" ry="2" />
<text x="202.86" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (2,478 samples, 0.36%)</title><rect x="1068.0" y="325" width="4.2" height="15.0" fill="rgb(251,211,46)" rx="2" ry="2" />
<text x="1070.98" y="335.5" ></text>
</g>
<g >
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h962928eb17e6ebe3 (138 samples, 0.02%)</title><rect x="71.9" y="277" width="0.2" height="15.0" fill="rgb(205,112,16)" rx="2" ry="2" />
<text x="74.88" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (3,460 samples, 0.50%)</title><rect x="20.0" y="421" width="6.0" height="15.0" fill="rgb(220,96,52)" rx="2" ry="2" />
<text x="23.04" y="431.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (95 samples, 0.01%)</title><rect x="70.9" y="309" width="0.2" height="15.0" fill="rgb(224,73,25)" rx="2" ry="2" />
<text x="73.93" y="319.5" ></text>
</g>
<g >
<title>__rdl_alloc (87 samples, 0.01%)</title><rect x="868.5" y="325" width="0.2" height="15.0" fill="rgb(218,80,42)" rx="2" ry="2" />
<text x="871.54" y="335.5" ></text>
</g>
<g >
<title>__memcmp_sse4_1 (87 samples, 0.01%)</title><rect x="1145.0" y="357" width="0.1" height="15.0" fill="rgb(228,216,39)" rx="2" ry="2" />
<text x="1147.96" y="367.5" ></text>
</g>
<g >
<title>_int_free (2,149 samples, 0.31%)</title><rect x="845.0" y="309" width="3.7" height="15.0" fill="rgb(236,9,26)" rx="2" ry="2" />
<text x="848.03" y="319.5" ></text>
</g>
<g >
<title>core::intrinsics::copy_nonoverlapping::h75a89d7a351131b5 (139 samples, 0.02%)</title><rect x="148.2" y="197" width="0.2" height="15.0" fill="rgb(207,59,13)" rx="2" ry="2" />
<text x="151.16" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (613 samples, 0.09%)</title><rect x="1166.0" y="389" width="1.1" height="15.0" fill="rgb(211,74,45)" rx="2" ry="2" />
<text x="1169.03" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_free (5,736 samples, 0.83%)</title><rect x="463.1" y="261" width="9.8" height="15.0" fill="rgb(241,155,34)" rx="2" ry="2" />
<text x="466.12" y="271.5" ></text>
</g>
<g >
<title>get_unmapped_area (143 samples, 0.02%)</title><rect x="1156.1" y="293" width="0.2" height="15.0" fill="rgb(234,96,30)" rx="2" ry="2" />
<text x="1159.07" y="303.5" ></text>
</g>
<g >
<title>_int_free (1,670 samples, 0.24%)</title><rect x="608.1" y="277" width="2.8" height="15.0" fill="rgb(233,136,17)" rx="2" ry="2" />
<text x="611.07" y="287.5" ></text>
</g>
<g >
<title>__perf_addr_filters_adjust (553 samples, 0.08%)</title><rect x="218.1" y="117" width="0.9" height="15.0" fill="rgb(253,192,9)" rx="2" ry="2" />
<text x="221.05" y="127.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$$RF$T$C$core..slice..Iter$LT$T$GT$$GT$$GT$::spec_extend::h606ef2be9d745897 (139 samples, 0.02%)</title><rect x="148.2" y="229" width="0.2" height="15.0" fill="rgb(218,21,28)" rx="2" ry="2" />
<text x="151.16" y="239.5" ></text>
</g>
<g >
<title>_int_realloc (72 samples, 0.01%)</title><rect x="525.5" y="117" width="0.2" height="15.0" fill="rgb(248,63,3)" rx="2" ry="2" />
<text x="528.54" y="127.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::seal_block::h8e4b98b0ea45c88d (68 samples, 0.01%)</title><rect x="1161.9" y="421" width="0.1" height="15.0" fill="rgb(235,23,42)" rx="2" ry="2" />
<text x="1164.92" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (186 samples, 0.03%)</title><rect x="27.4" y="405" width="0.3" height="15.0" fill="rgb(250,48,28)" rx="2" ry="2" />
<text x="30.35" y="415.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (180 samples, 0.03%)</title><rect x="76.4" y="325" width="0.3" height="15.0" fill="rgb(227,160,42)" rx="2" ry="2" />
<text x="79.42" y="335.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17h047612b5d9b59568E.llvm.1312411216417185755 (8,405 samples, 1.22%)</title><rect x="542.6" y="357" width="14.3" height="15.0" fill="rgb(238,206,26)" rx="2" ry="2" />
<text x="545.56" y="367.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (124 samples, 0.02%)</title><rect x="108.6" y="405" width="0.2" height="15.0" fill="rgb(253,135,7)" rx="2" ry="2" />
<text x="111.61" y="415.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 (189 samples, 0.03%)</title><rect x="227.3" y="213" width="0.3" height="15.0" fill="rgb(236,175,10)" rx="2" ry="2" />
<text x="230.30" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (24,365 samples, 3.53%)</title><rect x="978.3" y="309" width="41.6" height="15.0" fill="rgb(210,201,27)" rx="2" ry="2" />
<text x="981.26" y="319.5" >_in..</text>
</g>
<g >
<title>__GI___libc_malloc (2,879 samples, 0.42%)</title><rect x="872.4" y="341" width="5.0" height="15.0" fill="rgb(217,132,17)" rx="2" ry="2" />
<text x="875.44" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (92 samples, 0.01%)</title><rect x="19.2" y="389" width="0.1" height="15.0" fill="rgb(215,164,16)" rx="2" ry="2" />
<text x="22.15" y="399.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hbf1a2e7b1d7f1667E.llvm.2002196175208074555 (180 samples, 0.03%)</title><rect x="336.1" y="229" width="0.3" height="15.0" fill="rgb(207,162,46)" rx="2" ry="2" />
<text x="339.08" 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::h0234124bad11f8db (9,456 samples, 1.37%)</title><rect x="124.8" y="309" width="16.2" height="15.0" fill="rgb(225,220,10)" rx="2" ry="2" />
<text x="127.85" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (71 samples, 0.01%)</title><rect x="49.3" y="309" width="0.1" height="15.0" fill="rgb(232,222,42)" rx="2" ry="2" />
<text x="52.28" y="319.5" ></text>
</g>
<g >
<title>do_error_trap (350 samples, 0.05%)</title><rect x="11.1" y="517" width="0.6" height="15.0" fill="rgb(235,112,18)" rx="2" ry="2" />
<text x="14.06" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::split_ebb::h465627b364d2697d (65 samples, 0.01%)</title><rect x="54.9" y="261" width="0.1" height="15.0" fill="rgb(215,17,24)" rx="2" ry="2" />
<text x="57.86" y="271.5" ></text>
</g>
<g >
<title>perf_event_mmap (1,099 samples, 0.16%)</title><rect x="234.1" y="117" width="1.9" height="15.0" fill="rgb(236,156,36)" rx="2" ry="2" />
<text x="237.09" y="127.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (1,691 samples, 0.25%)</title><rect x="34.3" y="405" width="2.9" height="15.0" fill="rgb(213,207,10)" rx="2" ry="2" />
<text x="37.30" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (92 samples, 0.01%)</title><rect x="1142.5" y="341" width="0.2" height="15.0" fill="rgb(250,224,13)" rx="2" ry="2" />
<text x="1145.51" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (280 samples, 0.04%)</title><rect x="108.9" y="389" width="0.4" height="15.0" fill="rgb(213,3,19)" rx="2" ry="2" />
<text x="111.86" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1,988 samples, 0.29%)</title><rect x="1178.8" y="437" width="3.4" height="15.0" fill="rgb(253,155,42)" rx="2" ry="2" />
<text x="1181.80" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (109 samples, 0.02%)</title><rect x="79.0" y="293" width="0.2" height="15.0" fill="rgb(240,219,42)" rx="2" ry="2" />
<text x="82.04" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (694 samples, 0.10%)</title><rect x="96.7" y="309" width="1.2" height="15.0" fill="rgb(232,32,19)" rx="2" ry="2" />
<text x="99.74" y="319.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (39,019 samples, 5.66%)</title><rect x="39.6" y="485" width="66.8" height="15.0" fill="rgb(251,191,36)" rx="2" ry="2" />
<text x="42.63" y="495.5" >_$LT$ra..</text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (69 samples, 0.01%)</title><rect x="37.0" y="373" width="0.1" height="15.0" fill="rgb(212,49,29)" rx="2" ry="2" />
<text x="40.01" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hb1e32baa791fa7ba (282 samples, 0.04%)</title><rect x="1159.1" y="421" width="0.5" height="15.0" fill="rgb(249,3,17)" rx="2" ry="2" />
<text x="1162.09" y="431.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (1,040 samples, 0.15%)</title><rect x="752.6" y="245" width="1.8" height="15.0" fill="rgb(246,64,11)" rx="2" ry="2" />
<text x="755.63" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (1,278 samples, 0.19%)</title><rect x="875.2" y="325" width="2.2" height="15.0" fill="rgb(236,109,16)" rx="2" ry="2" />
<text x="878.18" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (592,735 samples, 85.93%)</title><rect x="113.5" y="421" width="1013.9" height="15.0" fill="rgb(208,178,22)" rx="2" ry="2" />
<text x="116.48" y="431.5" >std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e</text>
</g>
<g >
<title>_int_malloc (815 samples, 0.12%)</title><rect x="852.5" y="293" width="1.4" height="15.0" fill="rgb(212,13,34)" rx="2" ry="2" />
<text x="855.48" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_push::h21ec220088e6ffaa (395 samples, 0.06%)</title><rect x="59.4" y="277" width="0.6" height="15.0" fill="rgb(205,137,21)" rx="2" ry="2" />
<text x="62.37" y="287.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 (93 samples, 0.01%)</title><rect x="1174.7" y="421" width="0.1" height="15.0" fill="rgb(224,164,30)" rx="2" ry="2" />
<text x="1177.66" y="431.5" ></text>
</g>
<g >
<title>_int_realloc (81 samples, 0.01%)</title><rect x="1160.7" y="373" width="0.1" height="15.0" fill="rgb(230,37,10)" rx="2" ry="2" />
<text x="1163.69" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (316 samples, 0.05%)</title><rect x="36.2" y="373" width="0.5" height="15.0" fill="rgb(215,33,18)" rx="2" ry="2" />
<text x="39.18" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (78 samples, 0.01%)</title><rect x="1170.3" y="389" width="0.2" height="15.0" fill="rgb(249,34,5)" rx="2" ry="2" />
<text x="1173.32" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (62 samples, 0.01%)</title><rect x="1179.9" y="357" width="0.1" height="15.0" fill="rgb(244,90,3)" rx="2" ry="2" />
<text x="1182.94" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (813 samples, 0.12%)</title><rect x="1176.9" y="373" width="1.4" height="15.0" fill="rgb(252,165,13)" rx="2" ry="2" />
<text x="1179.92" y="383.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hd2f163db12ee6296 (139 samples, 0.02%)</title><rect x="148.2" y="213" width="0.2" height="15.0" fill="rgb(249,65,54)" rx="2" ry="2" />
<text x="151.16" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (91 samples, 0.01%)</title><rect x="98.0" y="309" width="0.2" height="15.0" fill="rgb(216,192,8)" rx="2" ry="2" />
<text x="101.04" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (266 samples, 0.04%)</title><rect x="108.1" y="389" width="0.5" height="15.0" fill="rgb(210,12,41)" rx="2" ry="2" />
<text x="111.14" y="399.5" ></text>
</g>
<g >
<title>perf_iterate_sb (598 samples, 0.09%)</title><rect x="219.0" y="133" width="1.0" height="15.0" fill="rgb(212,156,30)" rx="2" ry="2" />
<text x="222.00" 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$::finalize::h8970def92a9e48cd (372 samples, 0.05%)</title><rect x="496.9" y="277" width="0.7" height="15.0" fill="rgb(212,87,6)" rx="2" ry="2" />
<text x="499.95" y="287.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (108 samples, 0.02%)</title><rect x="1156.1" y="277" width="0.2" height="15.0" fill="rgb(207,213,30)" rx="2" ry="2" />
<text x="1159.08" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (9,354 samples, 1.36%)</title><rect x="220.6" y="277" width="16.0" height="15.0" fill="rgb(222,0,49)" rx="2" ry="2" />
<text x="223.59" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (68 samples, 0.01%)</title><rect x="73.5" y="293" width="0.2" height="15.0" fill="rgb(230,154,5)" rx="2" ry="2" />
<text x="76.54" y="303.5" ></text>
</g>
<g >
<title>_int_free (2,108 samples, 0.31%)</title><rect x="971.7" y="309" width="3.6" height="15.0" fill="rgb(224,196,20)" rx="2" ry="2" />
<text x="974.65" y="319.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (39,019 samples, 5.66%)</title><rect x="39.6" y="453" width="66.8" height="15.0" fill="rgb(209,76,45)" rx="2" ry="2" />
<text x="42.63" y="463.5" >rayon::..</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 (4,771 samples, 0.69%)</title><rect x="758.7" y="277" width="8.2" height="15.0" fill="rgb(226,79,5)" rx="2" ry="2" />
<text x="761.70" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::def_var::h67475927161b24eb (65 samples, 0.01%)</title><rect x="113.3" y="357" width="0.1" height="15.0" fill="rgb(228,76,54)" rx="2" ry="2" />
<text x="116.30" y="367.5" ></text>
</g>
<g >
<title>_int_free (69 samples, 0.01%)</title><rect x="1104.6" y="309" width="0.1" height="15.0" fill="rgb(229,9,29)" rx="2" ry="2" />
<text x="1107.57" y="319.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 (526 samples, 0.08%)</title><rect x="540.9" y="293" width="0.9" height="15.0" fill="rgb(248,80,13)" rx="2" ry="2" />
<text x="543.87" y="303.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::code_translator::translate_operator::hf206f87e46803014 (1,539 samples, 0.22%)</title><rect x="524.3" y="245" width="2.7" height="15.0" fill="rgb(216,48,21)" rx="2" ry="2" />
<text x="527.33" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::shrink::shrink_instructions::h2efbaf74a574d406 (2,532 samples, 0.37%)</title><rect x="63.1" y="325" width="4.3" height="15.0" fill="rgb(229,127,34)" rx="2" ry="2" />
<text x="66.05" y="335.5" ></text>
</g>
<g >
<title>libc_feholdsetround_sse_ctx (88 samples, 0.01%)</title><rect x="559.2" y="325" width="0.1" height="15.0" fill="rgb(241,105,32)" rx="2" ry="2" />
<text x="562.15" y="335.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (592,735 samples, 85.93%)</title><rect x="113.5" y="469" width="1013.9" height="15.0" fill="rgb(252,183,10)" rx="2" ry="2" />
<text x="116.48" y="479.5" >std::panicking::try::hab539b2d1255d635</text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (70 samples, 0.01%)</title><rect x="1165.8" y="373" width="0.1" height="15.0" fill="rgb(237,134,19)" rx="2" ry="2" />
<text x="1168.82" y="383.5" ></text>
</g>
<g >
<title>__split_vma (442 samples, 0.06%)</title><rect x="195.3" y="165" width="0.7" height="15.0" fill="rgb(212,115,9)" rx="2" ry="2" />
<text x="198.29" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (98 samples, 0.01%)</title><rect x="62.2" y="293" width="0.2" height="15.0" fill="rgb(207,81,16)" rx="2" ry="2" />
<text x="65.20" y="303.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (76 samples, 0.01%)</title><rect x="32.3" y="389" width="0.2" height="15.0" fill="rgb(231,129,36)" rx="2" ry="2" />
<text x="35.33" y="399.5" ></text>
</g>
<g >
<title>std::panic::catch_unwind::hd5e0a26424bd7f34 (1,228 samples, 0.18%)</title><rect x="1174.8" y="533" width="2.1" height="15.0" fill="rgb(240,41,11)" rx="2" ry="2" />
<text x="1177.81" y="543.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (79 samples, 0.01%)</title><rect x="1178.4" y="373" width="0.2" height="15.0" fill="rgb(249,82,33)" rx="2" ry="2" />
<text x="1181.42" 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::h0c810357b190d293 (198 samples, 0.03%)</title><rect x="1162.9" y="373" width="0.4" height="15.0" fill="rgb(212,104,49)" rx="2" ry="2" />
<text x="1165.93" y="383.5" ></text>
</g>
<g >
<title>_int_free (245 samples, 0.04%)</title><rect x="208.9" y="261" width="0.4" height="15.0" fill="rgb(248,181,46)" rx="2" ry="2" />
<text x="211.90" y="271.5" ></text>
</g>
<g >
<title>alloc_perturb (62 samples, 0.01%)</title><rect x="311.0" y="197" width="0.1" height="15.0" fill="rgb(206,67,34)" rx="2" ry="2" />
<text x="314.00" y="207.5" ></text>
</g>
<g >
<title>_int_malloc (71 samples, 0.01%)</title><rect x="81.0" y="261" width="0.1" height="15.0" fill="rgb(213,17,52)" rx="2" ry="2" />
<text x="83.95" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (285 samples, 0.04%)</title><rect x="1178.3" y="389" width="0.5" height="15.0" fill="rgb(251,152,53)" rx="2" ry="2" />
<text x="1181.31" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h73e5f742715a1243 (163 samples, 0.02%)</title><rect x="110.4" y="421" width="0.3" height="15.0" fill="rgb(221,16,13)" rx="2" ry="2" />
<text x="113.41" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::topo_order::TopoOrder::next::h3ea49efe09e3a2f0 (88 samples, 0.01%)</title><rect x="92.8" y="309" width="0.2" height="15.0" fill="rgb(209,114,26)" rx="2" ry="2" />
<text x="95.84" y="319.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (67 samples, 0.01%)</title><rect x="1163.3" y="405" width="0.1" height="15.0" fill="rgb(212,35,7)" rx="2" ry="2" />
<text x="1166.27" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (187 samples, 0.03%)</title><rect x="13.2" y="357" width="0.3" height="15.0" fill="rgb(222,46,43)" rx="2" ry="2" />
<text x="16.22" y="367.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1,441 samples, 0.21%)</title><rect x="904.2" y="325" width="2.5" height="15.0" fill="rgb(228,36,4)" rx="2" ry="2" />
<text x="907.20" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::recompute_ebb::h44e6fe3205f2df2b (92 samples, 0.01%)</title><rect x="1176.9" y="277" width="0.2" height="15.0" fill="rgb(230,132,9)" rx="2" ry="2" />
<text x="1179.92" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (75 samples, 0.01%)</title><rect x="39.4" y="373" width="0.1" height="15.0" fill="rgb(225,196,40)" rx="2" ry="2" />
<text x="42.38" y="383.5" ></text>
</g>
<g >
<title>_int_realloc (94 samples, 0.01%)</title><rect x="1181.0" y="341" width="0.2" height="15.0" fill="rgb(244,163,3)" rx="2" ry="2" />
<text x="1184.04" y="351.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (295 samples, 0.04%)</title><rect x="216.9" y="117" width="0.5" height="15.0" fill="rgb(231,83,5)" rx="2" ry="2" />
<text x="219.89" y="127.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (63 samples, 0.01%)</title><rect x="81.3" y="277" width="0.1" height="15.0" fill="rgb(251,171,54)" rx="2" ry="2" />
<text x="84.34" y="287.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (116 samples, 0.02%)</title><rect x="225.9" y="165" width="0.2" height="15.0" fill="rgb(218,111,6)" rx="2" ry="2" />
<text x="228.92" y="175.5" ></text>
</g>
<g >
<title>do_munmap (1,151 samples, 0.17%)</title><rect x="200.4" y="213" width="2.0" height="15.0" fill="rgb(241,99,17)" rx="2" ry="2" />
<text x="203.42" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_free (67 samples, 0.01%)</title><rect x="1146.0" y="389" width="0.1" height="15.0" fill="rgb(217,88,5)" rx="2" ry="2" />
<text x="1148.97" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (115 samples, 0.02%)</title><rect x="527.3" y="309" width="0.2" height="15.0" fill="rgb(234,146,8)" rx="2" ry="2" />
<text x="530.31" y="319.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 (101 samples, 0.01%)</title><rect x="30.4" y="373" width="0.2" height="15.0" fill="rgb(222,6,17)" rx="2" ry="2" />
<text x="33.43" y="383.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17he728ca68fc8217d5E.llvm.1993498855596296840 (585 samples, 0.08%)</title><rect x="221.3" y="261" width="1.0" height="15.0" fill="rgb(236,31,46)" rx="2" ry="2" />
<text x="224.33" y="271.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 (20,749 samples, 3.01%)</title><rect x="1127.4" y="469" width="35.5" height="15.0" fill="rgb(209,150,26)" rx="2" ry="2" />
<text x="1130.44" y="479.5" >_$L..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (90 samples, 0.01%)</title><rect x="45.8" y="325" width="0.2" height="15.0" fill="rgb(225,23,16)" rx="2" ry="2" />
<text x="48.81" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::hd92c812f09fe4460 (174 samples, 0.03%)</title><rect x="1158.7" y="405" width="0.3" height="15.0" fill="rgb(250,16,36)" rx="2" ry="2" />
<text x="1161.73" y="415.5" ></text>
</g>
<g >
<title>parity_wasm::elements::section::ImportSection::entries_mut::h769f0a3e41e450c0 (191 samples, 0.03%)</title><rect x="932.2" y="325" width="0.3" height="15.0" fill="rgb(245,128,34)" rx="2" ry="2" />
<text x="935.18" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (26,121 samples, 3.79%)</title><rect x="975.3" y="325" width="44.6" height="15.0" fill="rgb(205,177,42)" rx="2" ry="2" />
<text x="978.26" y="335.5" >__GI..</text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (60 samples, 0.01%)</title><rect x="1173.9" y="373" width="0.1" height="15.0" fill="rgb(245,43,16)" rx="2" ry="2" />
<text x="1176.93" y="383.5" ></text>
</g>
<g >
<title>perf_event_mmap (2,426 samples, 0.35%)</title><rect x="1149.1" y="309" width="4.1" height="15.0" fill="rgb(235,220,43)" rx="2" ry="2" />
<text x="1152.05" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (1,812 samples, 0.26%)</title><rect x="1155.5" y="373" width="3.1" height="15.0" fill="rgb(244,146,0)" rx="2" ry="2" />
<text x="1158.53" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_returns::hef5369dc7503df5f (212 samples, 0.03%)</title><rect x="1160.2" y="421" width="0.4" height="15.0" fill="rgb(242,28,43)" rx="2" ry="2" />
<text x="1163.23" y="431.5" ></text>
</g>
<g >
<title>_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$::fmt::h1604155e69b0be26 (64 samples, 0.01%)</title><rect x="537.6" y="261" width="0.1" height="15.0" fill="rgb(253,76,10)" rx="2" ry="2" />
<text x="540.55" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile_and_emit::h5499205207e7951f (2,056 samples, 0.30%)</title><rect x="1137.0" y="421" width="3.6" height="15.0" fill="rgb(244,4,47)" rx="2" ry="2" />
<text x="1140.04" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (221 samples, 0.03%)</title><rect x="532.9" y="261" width="0.4" height="15.0" fill="rgb(210,104,42)" rx="2" ry="2" />
<text x="535.95" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (65 samples, 0.01%)</title><rect x="1140.4" y="389" width="0.1" height="15.0" fill="rgb(226,67,13)" rx="2" ry="2" />
<text x="1143.37" y="399.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_next_section::h4d9786321eb758cf (227 samples, 0.03%)</title><rect x="499.5" y="245" width="0.4" height="15.0" fill="rgb(241,136,40)" rx="2" ry="2" />
<text x="502.47" y="255.5" ></text>
</g>
<g >
<title>hashbrown::raw::bucket_mask_to_capacity::hff8682455bc98726 (118 samples, 0.02%)</title><rect x="410.7" y="213" width="0.2" height="15.0" fill="rgb(247,136,49)" rx="2" ry="2" />
<text x="413.73" y="223.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h7fa7a2046fdc054a (118 samples, 0.02%)</title><rect x="1135.3" y="405" width="0.2" height="15.0" fill="rgb(225,203,48)" rx="2" ry="2" />
<text x="1138.30" y="415.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::current_position::h11734210ed9d92b6 (73 samples, 0.01%)</title><rect x="501.0" y="261" width="0.1" height="15.0" fill="rgb(228,92,8)" rx="2" ry="2" />
<text x="504.02" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (126 samples, 0.02%)</title><rect x="55.1" y="261" width="0.2" height="15.0" fill="rgb(207,179,48)" rx="2" ry="2" />
<text x="58.07" y="271.5" ></text>
</g>
<g >
<title>malloc_consolidate (261 samples, 0.04%)</title><rect x="538.8" y="277" width="0.5" height="15.0" fill="rgb(226,56,15)" rx="2" ry="2" />
<text x="541.82" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (1,627 samples, 0.24%)</title><rect x="728.8" y="245" width="2.8" height="15.0" fill="rgb(252,41,5)" rx="2" ry="2" />
<text x="731.80" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (121 samples, 0.02%)</title><rect x="100.0" y="325" width="0.2" height="15.0" fill="rgb(214,115,52)" rx="2" ry="2" />
<text x="103.01" y="335.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8e38f4c4f35fb102 (562 samples, 0.08%)</title><rect x="1135.5" y="405" width="1.0" height="15.0" fill="rgb(208,11,7)" rx="2" ry="2" />
<text x="1138.50" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (97 samples, 0.01%)</title><rect x="858.2" y="293" width="0.2" height="15.0" fill="rgb(248,187,23)" rx="2" ry="2" />
<text x="861.21" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,390 samples, 0.35%)</title><rect x="189.6" y="341" width="4.1" height="15.0" fill="rgb(207,93,49)" rx="2" ry="2" />
<text x="192.63" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (67 samples, 0.01%)</title><rect x="43.7" y="341" width="0.1" height="15.0" fill="rgb(228,162,51)" rx="2" ry="2" />
<text x="46.65" y="351.5" ></text>
</g>
<g >
<title>cranelift_bforest::set::Set$LT$K$GT$::insert::h750422a26fd1bdc6 (194 samples, 0.03%)</title><rect x="71.8" y="293" width="0.3" height="15.0" fill="rgb(223,217,29)" rx="2" ry="2" />
<text x="74.79" y="303.5" ></text>
</g>
<g >
<title>__rdl_realloc (723 samples, 0.10%)</title><rect x="751.1" y="229" width="1.3" height="15.0" fill="rgb(207,103,8)" rx="2" ry="2" />
<text x="754.14" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3,058 samples, 0.44%)</title><rect x="1058.8" y="325" width="5.3" height="15.0" fill="rgb(208,182,53)" rx="2" ry="2" />
<text x="1061.85" y="335.5" ></text>
</g>
<g >
<title>mprotect_fixup (4,158 samples, 0.60%)</title><rect x="1147.7" y="325" width="7.1" height="15.0" fill="rgb(248,69,50)" rx="2" ry="2" />
<text x="1150.68" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (892 samples, 0.13%)</title><rect x="72.4" y="341" width="1.5" height="15.0" fill="rgb(229,216,2)" rx="2" ry="2" />
<text x="75.40" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (518 samples, 0.08%)</title><rect x="48.8" y="325" width="0.9" height="15.0" fill="rgb(208,108,1)" rx="2" ry="2" />
<text x="51.79" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (111 samples, 0.02%)</title><rect x="524.7" y="197" width="0.2" height="15.0" fill="rgb(229,51,26)" rx="2" ry="2" />
<text x="527.70" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (61 samples, 0.01%)</title><rect x="95.3" y="293" width="0.1" height="15.0" fill="rgb(231,229,24)" rx="2" ry="2" />
<text x="98.29" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::dealloc::h000dc0e1d3b4be28 (76 samples, 0.01%)</title><rect x="461.6" y="261" width="0.2" height="15.0" fill="rgb(221,27,19)" rx="2" ry="2" />
<text x="464.64" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (174 samples, 0.03%)</title><rect x="621.8" y="293" width="0.3" height="15.0" fill="rgb(239,83,48)" rx="2" ry="2" />
<text x="624.84" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (160 samples, 0.02%)</title><rect x="1141.9" y="405" width="0.2" height="15.0" fill="rgb(218,16,19)" rx="2" ry="2" />
<text x="1144.87" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (83 samples, 0.01%)</title><rect x="238.1" y="293" width="0.2" height="15.0" fill="rgb(237,206,53)" rx="2" ry="2" />
<text x="241.12" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (98 samples, 0.01%)</title><rect x="99.8" y="325" width="0.2" height="15.0" fill="rgb(235,117,48)" rx="2" ry="2" />
<text x="102.82" y="335.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (813 samples, 0.12%)</title><rect x="1176.9" y="501" width="1.4" height="15.0" fill="rgb(229,191,8)" rx="2" ry="2" />
<text x="1179.92" y="511.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (84 samples, 0.01%)</title><rect x="1166.3" y="373" width="0.1" height="15.0" fill="rgb(239,50,9)" rx="2" ry="2" />
<text x="1169.28" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (2,801 samples, 0.41%)</title><rect x="27.7" y="405" width="4.8" height="15.0" fill="rgb(224,8,34)" rx="2" ry="2" />
<text x="30.67" y="415.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (92 samples, 0.01%)</title><rect x="76.6" y="293" width="0.1" height="15.0" fill="rgb(216,214,43)" rx="2" ry="2" />
<text x="79.57" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (2,288 samples, 0.33%)</title><rect x="228.3" y="261" width="3.9" height="15.0" fill="rgb(243,227,45)" rx="2" ry="2" />
<text x="231.30" y="271.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (72 samples, 0.01%)</title><rect x="10.5" y="517" width="0.2" height="15.0" fill="rgb(226,174,33)" rx="2" ry="2" />
<text x="13.54" y="527.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (61 samples, 0.01%)</title><rect x="75.1" y="309" width="0.1" height="15.0" fill="rgb(236,17,32)" rx="2" ry="2" />
<text x="78.07" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (1,435 samples, 0.21%)</title><rect x="1182.2" y="501" width="2.5" height="15.0" fill="rgb(236,33,8)" rx="2" ry="2" />
<text x="1185.20" y="511.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (66 samples, 0.01%)</title><rect x="1184.5" y="469" width="0.2" height="15.0" fill="rgb(237,226,37)" rx="2" ry="2" />
<text x="1187.54" y="479.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (79 samples, 0.01%)</title><rect x="71.0" y="277" width="0.1" height="15.0" fill="rgb(245,140,28)" rx="2" ry="2" />
<text x="73.96" y="287.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (88 samples, 0.01%)</title><rect x="61.9" y="277" width="0.1" height="15.0" fill="rgb(221,161,52)" rx="2" ry="2" />
<text x="64.87" y="287.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::new::hf45e218c5d7c8944 (16,067 samples, 2.33%)</title><rect x="411.3" y="261" width="27.4" height="15.0" fill="rgb(236,195,51)" rx="2" ry="2" />
<text x="414.26" y="271.5" >w..</text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (265 samples, 0.04%)</title><rect x="18.6" y="389" width="0.4" height="15.0" fill="rgb(226,59,9)" rx="2" ry="2" />
<text x="21.57" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (78 samples, 0.01%)</title><rect x="69.3" y="261" width="0.1" height="15.0" fill="rgb(252,112,2)" rx="2" ry="2" />
<text x="72.31" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (68 samples, 0.01%)</title><rect x="1143.2" y="389" width="0.2" height="15.0" fill="rgb(205,81,43)" rx="2" ry="2" />
<text x="1146.24" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8867d7619d5a1899 (121 samples, 0.02%)</title><rect x="109.6" y="389" width="0.2" height="15.0" fill="rgb(219,0,44)" rx="2" ry="2" />
<text x="112.63" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::abi::legalize_args::he47515d3a3ad0ee6 (138 samples, 0.02%)</title><rect x="1178.6" y="373" width="0.2" height="15.0" fill="rgb(254,178,1)" rx="2" ry="2" />
<text x="1181.56" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (86 samples, 0.01%)</title><rect x="204.1" y="309" width="0.2" height="15.0" fill="rgb(209,8,31)" rx="2" ry="2" />
<text x="207.11" y="319.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1,228 samples, 0.18%)</title><rect x="1174.8" y="373" width="2.1" height="15.0" fill="rgb(216,50,32)" rx="2" ry="2" />
<text x="1177.81" y="383.5" ></text>
</g>
<g >
<title>do_syscall_64 (4,763 samples, 0.69%)</title><rect x="1146.8" y="373" width="8.2" height="15.0" fill="rgb(230,150,32)" rx="2" ry="2" />
<text x="1149.82" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (147 samples, 0.02%)</title><rect x="1182.6" y="373" width="0.3" height="15.0" fill="rgb(218,77,38)" rx="2" ry="2" />
<text x="1185.64" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (77 samples, 0.01%)</title><rect x="77.6" y="293" width="0.2" height="15.0" fill="rgb(222,62,31)" rx="2" ry="2" />
<text x="80.64" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (61 samples, 0.01%)</title><rect x="36.4" y="357" width="0.1" height="15.0" fill="rgb(254,5,53)" rx="2" ry="2" />
<text x="39.38" y="367.5" ></text>
</g>
<g >
<title>vma_link (88 samples, 0.01%)</title><rect x="236.0" y="117" width="0.2" height="15.0" fill="rgb(236,92,40)" rx="2" ry="2" />
<text x="239.02" y="127.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (62 samples, 0.01%)</title><rect x="500.5" y="213" width="0.1" height="15.0" fill="rgb(234,199,0)" rx="2" ry="2" />
<text x="503.52" y="223.5" ></text>
</g>
<g >
<title>_int_malloc (82 samples, 0.01%)</title><rect x="59.2" y="229" width="0.1" height="15.0" fill="rgb(206,37,1)" rx="2" ry="2" />
<text x="62.17" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::handle_call_abi::hfe91bd1ce81b1bda (252 samples, 0.04%)</title><rect x="14.4" y="373" width="0.5" height="15.0" fill="rgb(252,28,6)" rx="2" ry="2" />
<text x="17.43" y="383.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 (39,019 samples, 5.66%)</title><rect x="39.6" y="501" width="66.8" height="15.0" fill="rgb(221,109,14)" rx="2" ry="2" />
<text x="42.63" y="511.5" >rayon::..</text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (164 samples, 0.02%)</title><rect x="1178.0" y="341" width="0.3" height="15.0" fill="rgb(248,11,15)" rx="2" ry="2" />
<text x="1181.03" y="351.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (134 samples, 0.02%)</title><rect x="69.2" y="325" width="0.2" height="15.0" fill="rgb(216,202,2)" rx="2" ry="2" />
<text x="72.22" y="335.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 (38,034 samples, 5.51%)</title><rect x="39.9" y="389" width="65.0" height="15.0" fill="rgb(233,13,38)" rx="2" ry="2" />
<text x="42.87" y="399.5" >core::o..</text>
</g>
<g >
<title>_int_free (10,877 samples, 1.58%)</title><rect x="561.4" y="341" width="18.6" height="15.0" fill="rgb(237,55,0)" rx="2" ry="2" />
<text x="564.43" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (55,646 samples, 8.07%)</title><rect x="266.5" y="261" width="95.2" height="15.0" fill="rgb(217,193,30)" rx="2" ry="2" />
<text x="269.53" y="271.5" >_$LT$wasmpa..</text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (16,049 samples, 2.33%)</title><rect x="12.2" y="533" width="27.4" height="15.0" fill="rgb(212,166,5)" rx="2" ry="2" />
<text x="15.17" y="543.5" >w..</text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h53d6b9b6e760f5d3 (106 samples, 0.02%)</title><rect x="899.2" y="341" width="0.2" height="15.0" fill="rgb(250,161,49)" rx="2" ry="2" />
<text x="902.23" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (400 samples, 0.06%)</title><rect x="1134.3" y="389" width="0.7" height="15.0" fill="rgb(228,78,11)" rx="2" ry="2" />
<text x="1137.34" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h52417e3a50e4e754 (149 samples, 0.02%)</title><rect x="1141.5" y="373" width="0.3" height="15.0" fill="rgb(224,191,4)" rx="2" ry="2" />
<text x="1144.53" y="383.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::ssa::SSABuilder::def_var::h67475927161b24eb (108 samples, 0.02%)</title><rect x="1162.0" y="421" width="0.2" height="15.0" fill="rgb(210,47,54)" rx="2" ry="2" />
<text x="1165.03" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (78 samples, 0.01%)</title><rect x="1165.3" y="389" width="0.1" height="15.0" fill="rgb(219,51,45)" rx="2" ry="2" />
<text x="1168.26" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (87 samples, 0.01%)</title><rect x="80.2" y="261" width="0.1" height="15.0" fill="rgb(229,171,28)" rx="2" ry="2" />
<text x="83.15" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (80 samples, 0.01%)</title><rect x="1170.2" y="389" width="0.1" height="15.0" fill="rgb(206,75,11)" rx="2" ry="2" />
<text x="1173.19" y="399.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (60 samples, 0.01%)</title><rect x="1179.1" y="373" width="0.1" height="15.0" fill="rgb(231,63,19)" rx="2" ry="2" />
<text x="1182.10" y="383.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_code::h3130ec4f2be00e86 (936 samples, 0.14%)</title><rect x="358.5" y="197" width="1.6" height="15.0" fill="rgb(251,130,53)" rx="2" ry="2" />
<text x="361.52" y="207.5" ></text>
</g>
<g >
<title>unmap_region (936 samples, 0.14%)</title><rect x="200.7" y="197" width="1.6" height="15.0" fill="rgb(237,70,3)" rx="2" ry="2" />
<text x="203.71" y="207.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (62 samples, 0.01%)</title><rect x="65.6" y="293" width="0.1" height="15.0" fill="rgb(253,185,28)" rx="2" ry="2" />
<text x="68.57" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (110 samples, 0.02%)</title><rect x="525.5" y="149" width="0.2" height="15.0" fill="rgb(242,3,18)" rx="2" ry="2" />
<text x="528.48" y="159.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (84 samples, 0.01%)</title><rect x="95.0" y="309" width="0.2" height="15.0" fill="rgb(232,61,13)" rx="2" ry="2" />
<text x="98.01" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,336 samples, 0.34%)</title><rect x="232.6" y="213" width="4.0" height="15.0" fill="rgb(219,51,53)" rx="2" ry="2" />
<text x="235.57" y="223.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (87 samples, 0.01%)</title><rect x="1162.2" y="405" width="0.2" height="15.0" fill="rgb(221,173,8)" rx="2" ry="2" />
<text x="1165.22" y="415.5" ></text>
</g>
<g >
<title>_$LT$std..collections..hash..map..DefaultHasher$u20$as$u20$core..hash..Hasher$GT$::write::hce30e4f96ad2e64e (914 samples, 0.13%)</title><rect x="391.9" y="245" width="1.5" height="15.0" fill="rgb(230,209,2)" rx="2" ry="2" />
<text x="394.88" y="255.5" ></text>
</g>
<g >
<title>exit_to_usermode_loop (72 samples, 0.01%)</title><rect x="10.5" y="485" width="0.2" height="15.0" fill="rgb(211,141,17)" rx="2" ry="2" />
<text x="13.54" y="495.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hfcfcbc8f14d16298 (275 samples, 0.04%)</title><rect x="239.1" y="293" width="0.5" height="15.0" fill="rgb(239,209,13)" rx="2" ry="2" />
<text x="242.11" y="303.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (66 samples, 0.01%)</title><rect x="1173.6" y="373" width="0.2" height="15.0" fill="rgb(218,3,16)" rx="2" ry="2" />
<text x="1176.64" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (2,057 samples, 0.30%)</title><rect x="497.6" y="277" width="3.6" height="15.0" fill="rgb(248,38,7)" rx="2" ry="2" />
<text x="500.64" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (119 samples, 0.02%)</title><rect x="57.1" y="277" width="0.2" height="15.0" fill="rgb(240,12,32)" rx="2" ry="2" />
<text x="60.08" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (73 samples, 0.01%)</title><rect x="12.3" y="373" width="0.1" height="15.0" fill="rgb(254,217,43)" rx="2" ry="2" />
<text x="15.31" y="383.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..types..FunctionType$u20$as$u20$core..default..Default$GT$::default::hc5972c4928cbe22c (99 samples, 0.01%)</title><rect x="868.7" y="341" width="0.2" height="15.0" fill="rgb(210,119,36)" rx="2" ry="2" />
<text x="871.74" y="351.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (208 samples, 0.03%)</title><rect x="647.3" y="261" width="0.3" height="15.0" fill="rgb(233,97,35)" rx="2" ry="2" />
<text x="650.25" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (79 samples, 0.01%)</title><rect x="96.0" y="309" width="0.1" height="15.0" fill="rgb(208,47,54)" rx="2" ry="2" />
<text x="98.97" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (225 samples, 0.03%)</title><rect x="1173.5" y="405" width="0.4" height="15.0" fill="rgb(231,74,28)" rx="2" ry="2" />
<text x="1176.47" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (153 samples, 0.02%)</title><rect x="1183.8" y="341" width="0.3" height="15.0" fill="rgb(245,9,54)" rx="2" ry="2" />
<text x="1186.80" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::split::simplify_branch_arguments::hc015be84b07814bd (164 samples, 0.02%)</title><rect x="55.9" y="293" width="0.3" height="15.0" fill="rgb(219,163,47)" rx="2" ry="2" />
<text x="58.88" y="303.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,508 samples, 0.36%)</title><rect x="216.3" y="213" width="4.3" height="15.0" fill="rgb(251,193,3)" rx="2" ry="2" />
<text x="219.26" y="223.5" ></text>
</g>
<g >
<title>__munmap (1,485 samples, 0.22%)</title><rect x="199.9" y="293" width="2.5" height="15.0" fill="rgb(250,32,23)" rx="2" ry="2" />
<text x="202.91" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_udivmodx::hd60d66081ff370fb (60 samples, 0.01%)</title><rect x="55.3" y="261" width="0.1" height="15.0" fill="rgb(239,44,20)" rx="2" ry="2" />
<text x="58.28" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (72 samples, 0.01%)</title><rect x="1161.5" y="373" width="0.1" height="15.0" fill="rgb(238,78,5)" rx="2" ry="2" />
<text x="1164.51" y="383.5" ></text>
</g>
<g >
<title>cranelift_bforest::path::Path$LT$F$GT$::first::h9b45f6bc4766aeed (72 samples, 0.01%)</title><rect x="70.3" y="309" width="0.1" height="15.0" fill="rgb(222,155,36)" rx="2" ry="2" />
<text x="73.27" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (115 samples, 0.02%)</title><rect x="104.7" y="309" width="0.2" height="15.0" fill="rgb(222,167,53)" rx="2" ry="2" />
<text x="107.66" y="319.5" ></text>
</g>
<g >
<title>pagevec_lru_move_fn (279 samples, 0.04%)</title><rect x="196.8" y="117" width="0.5" height="15.0" fill="rgb(235,203,4)" rx="2" ry="2" />
<text x="199.79" y="127.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 (2,541 samples, 0.37%)</title><rect x="106.4" y="453" width="4.3" height="15.0" fill="rgb(232,188,44)" rx="2" ry="2" />
<text x="109.38" y="463.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (75 samples, 0.01%)</title><rect x="30.7" y="373" width="0.2" height="15.0" fill="rgb(227,130,14)" rx="2" ry="2" />
<text x="33.74" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (73 samples, 0.01%)</title><rect x="67.9" y="325" width="0.1" height="15.0" fill="rgb(233,193,3)" rx="2" ry="2" />
<text x="70.92" y="335.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (1,228 samples, 0.18%)</title><rect x="1174.8" y="501" width="2.1" height="15.0" fill="rgb(214,177,34)" rx="2" ry="2" />
<text x="1177.81" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (62 samples, 0.01%)</title><rect x="23.9" y="325" width="0.1" height="15.0" fill="rgb(234,117,26)" rx="2" ry="2" />
<text x="26.92" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (182 samples, 0.03%)</title><rect x="807.8" y="277" width="0.3" height="15.0" fill="rgb(244,142,25)" rx="2" ry="2" />
<text x="810.79" y="287.5" ></text>
</g>
<g >
<title>_ZN77_$LT$cranelift_codegen..simple_gvn..HashKey$u20$as$u20$core..clone..Clone$GT$5clone17hdd8a04f286b7e1acE.llvm.9287824473182564923 (107 samples, 0.02%)</title><rect x="99.6" y="325" width="0.2" height="15.0" fill="rgb(232,89,16)" rx="2" ry="2" />
<text x="102.64" y="335.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (64 samples, 0.01%)</title><rect x="104.4" y="325" width="0.2" height="15.0" fill="rgb(211,92,31)" rx="2" ry="2" />
<text x="107.44" y="335.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (170 samples, 0.02%)</title><rect x="18.7" y="357" width="0.3" height="15.0" fill="rgb(225,185,12)" rx="2" ry="2" />
<text x="21.73" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (66 samples, 0.01%)</title><rect x="1184.5" y="453" width="0.2" height="15.0" fill="rgb(223,223,8)" rx="2" ry="2" />
<text x="1187.54" y="463.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (93 samples, 0.01%)</title><rect x="1174.7" y="501" width="0.1" height="15.0" fill="rgb(227,164,27)" rx="2" ry="2" />
<text x="1177.66" y="511.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (7,581 samples, 1.10%)</title><rect x="425.1" y="229" width="12.9" height="15.0" fill="rgb(247,223,14)" rx="2" ry="2" />
<text x="428.05" y="239.5" ></text>
</g>
<g >
<title>release_pages (245 samples, 0.04%)</title><rect x="201.1" y="117" width="0.4" height="15.0" fill="rgb(234,138,28)" rx="2" ry="2" />
<text x="204.13" y="127.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (92 samples, 0.01%)</title><rect x="1176.9" y="261" width="0.2" height="15.0" fill="rgb(231,62,17)" rx="2" ry="2" />
<text x="1179.92" y="271.5" ></text>
</g>
<g >
<title>parity_wasm::elements::primitives::CountedWriter$LT$W$GT$::done::hf5842b6c96e0c047 (9,378 samples, 1.36%)</title><rect x="766.9" y="277" width="16.0" height="15.0" fill="rgb(219,129,8)" rx="2" ry="2" />
<text x="769.86" y="287.5" ></text>
</g>
<g >
<title>alloc_pages_vma (253 samples, 0.04%)</title><rect x="1132.1" y="325" width="0.4" height="15.0" fill="rgb(237,93,47)" rx="2" ry="2" />
<text x="1135.09" y="335.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_var_u32::h9f3e844d80d20a5e (381 samples, 0.06%)</title><rect x="361.1" y="229" width="0.6" height="15.0" fill="rgb(234,227,3)" rx="2" ry="2" />
<text x="364.07" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (226 samples, 0.03%)</title><rect x="69.4" y="325" width="0.4" height="15.0" fill="rgb(221,170,53)" rx="2" ry="2" />
<text x="72.45" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_udivrem::hb314bb4ccef9e2c5 (236 samples, 0.03%)</title><rect x="55.0" y="277" width="0.4" height="15.0" fill="rgb(237,66,14)" rx="2" ry="2" />
<text x="58.00" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::callee_saved_gprs_used::h307ec5944daa4165 (241 samples, 0.03%)</title><rect x="57.3" y="293" width="0.4" height="15.0" fill="rgb(250,38,50)" rx="2" ry="2" />
<text x="60.30" y="303.5" ></text>
</g>
<g >
<title>__rust_dealloc (73 samples, 0.01%)</title><rect x="556.8" y="341" width="0.1" height="15.0" fill="rgb(219,72,16)" rx="2" ry="2" />
<text x="559.82" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (83 samples, 0.01%)</title><rect x="30.6" y="373" width="0.1" height="15.0" fill="rgb(243,93,39)" rx="2" ry="2" />
<text x="33.60" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (67 samples, 0.01%)</title><rect x="1163.3" y="389" width="0.1" height="15.0" fill="rgb(244,183,54)" rx="2" ry="2" />
<text x="1166.27" y="399.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.9971861265714738260 (527 samples, 0.08%)</title><rect x="1103.4" y="341" width="0.9" height="15.0" fill="rgb(251,43,43)" rx="2" ry="2" />
<text x="1106.42" y="351.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (2,368 samples, 0.34%)</title><rect x="216.5" y="181" width="4.1" height="15.0" fill="rgb(238,68,3)" rx="2" ry="2" />
<text x="219.50" y="191.5" ></text>
</g>
<g >
<title>page_fault (1,179 samples, 0.17%)</title><rect x="1130.9" y="405" width="2.0" height="15.0" fill="rgb(213,129,14)" rx="2" ry="2" />
<text x="1133.87" y="415.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (125 samples, 0.02%)</title><rect x="30.0" y="341" width="0.2" height="15.0" fill="rgb(253,131,38)" rx="2" ry="2" />
<text x="33.01" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (75 samples, 0.01%)</title><rect x="39.4" y="405" width="0.1" height="15.0" fill="rgb(218,167,26)" rx="2" ry="2" />
<text x="42.38" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_ebb::h4406a9dd59ad7fbd (93 samples, 0.01%)</title><rect x="1143.9" y="421" width="0.2" height="15.0" fill="rgb(251,117,54)" rx="2" ry="2" />
<text x="1146.91" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (289 samples, 0.04%)</title><rect x="525.2" y="213" width="0.5" height="15.0" fill="rgb(232,148,47)" rx="2" ry="2" />
<text x="528.19" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,910 samples, 0.42%)</title><rect x="921.0" y="309" width="5.0" height="15.0" fill="rgb(231,47,21)" rx="2" ry="2" />
<text x="924.00" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (7,528 samples, 1.09%)</title><rect x="26.6" y="421" width="12.9" height="15.0" fill="rgb(252,16,36)" rx="2" ry="2" />
<text x="29.63" y="431.5" ></text>
</g>
<g >
<title>_int_free (100 samples, 0.01%)</title><rect x="48.0" y="309" width="0.2" height="15.0" fill="rgb(222,24,41)" rx="2" ry="2" />
<text x="51.02" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (161 samples, 0.02%)</title><rect x="26.3" y="405" width="0.3" height="15.0" fill="rgb(252,11,39)" rx="2" ry="2" />
<text x="29.32" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (122 samples, 0.02%)</title><rect x="1178.1" y="325" width="0.2" height="15.0" fill="rgb(210,0,13)" rx="2" ry="2" />
<text x="1181.09" y="335.5" ></text>
</g>
<g >
<title>perf_iterate_sb (1,374 samples, 0.20%)</title><rect x="1150.8" y="293" width="2.4" height="15.0" fill="rgb(209,76,20)" rx="2" ry="2" />
<text x="1153.84" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (130 samples, 0.02%)</title><rect x="1182.2" y="453" width="0.2" height="15.0" fill="rgb(252,213,41)" rx="2" ry="2" />
<text x="1185.20" y="463.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_rdlock (10,661 samples, 1.55%)</title><rect x="505.7" y="261" width="18.2" height="15.0" fill="rgb(211,221,10)" rx="2" ry="2" />
<text x="508.68" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,062 samples, 0.30%)</title><rect x="868.9" y="341" width="3.5" height="15.0" fill="rgb(239,44,5)" rx="2" ry="2" />
<text x="871.91" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,802 samples, 0.41%)</title><rect x="689.1" y="277" width="4.8" height="15.0" fill="rgb(248,158,53)" rx="2" ry="2" />
<text x="692.10" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (59 samples, 0.01%)</title><rect x="73.7" y="309" width="0.1" height="15.0" fill="rgb(223,173,7)" rx="2" ry="2" />
<text x="76.72" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (82 samples, 0.01%)</title><rect x="19.2" y="373" width="0.1" height="15.0" fill="rgb(254,164,36)" rx="2" ry="2" />
<text x="22.16" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Flags::new::h4f222e483e8872a2 (97 samples, 0.01%)</title><rect x="1145.9" y="405" width="0.2" height="15.0" fill="rgb(244,146,31)" rx="2" ry="2" />
<text x="1148.93" y="415.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert_no_grow::he41501be23667ca7 (78 samples, 0.01%)</title><rect x="101.1" y="325" width="0.1" height="15.0" fill="rgb(236,25,53)" rx="2" ry="2" />
<text x="104.06" 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 (16,502 samples, 2.39%)</title><rect x="208.4" y="293" width="28.2" height="15.0" fill="rgb(212,135,33)" rx="2" ry="2" />
<text x="211.37" y="303.5" >_..</text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (20,749 samples, 3.01%)</title><rect x="1127.4" y="517" width="35.5" height="15.0" fill="rgb(235,66,21)" rx="2" ry="2" />
<text x="1130.44" y="527.5" >_$L..</text>
</g>
<g >
<title>_int_malloc (1,152 samples, 0.17%)</title><rect x="764.5" y="229" width="2.0" height="15.0" fill="rgb(246,129,15)" rx="2" ry="2" />
<text x="767.53" y="239.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,629 samples, 0.38%)</title><rect x="377.0" y="245" width="4.5" height="15.0" fill="rgb(232,117,4)" rx="2" ry="2" />
<text x="380.03" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (92 samples, 0.01%)</title><rect x="1182.4" y="437" width="0.2" height="15.0" fill="rgb(227,165,50)" rx="2" ry="2" />
<text x="1185.42" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (209 samples, 0.03%)</title><rect x="1170.9" y="405" width="0.3" height="15.0" fill="rgb(245,30,52)" rx="2" ry="2" />
<text x="1173.87" y="415.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::hc5a1fad3ed79882c (92 samples, 0.01%)</title><rect x="203.7" y="341" width="0.1" height="15.0" fill="rgb(217,178,19)" rx="2" ry="2" />
<text x="206.66" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (60 samples, 0.01%)</title><rect x="78.5" y="261" width="0.1" height="15.0" fill="rgb(214,131,1)" rx="2" ry="2" />
<text x="81.52" y="271.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (93 samples, 0.01%)</title><rect x="1174.7" y="533" width="0.1" height="15.0" fill="rgb(214,45,12)" rx="2" ry="2" />
<text x="1177.66" y="543.5" ></text>
</g>
<g >
<title>_$LT$rayon..iter..while_some..WhileSome$LT$I$GT$$u20$as$u20$rayon..iter..ParallelIterator$GT$::drive_unindexed::h5bb97cb6437a1950 (2,541 samples, 0.37%)</title><rect x="106.4" y="469" width="4.3" height="15.0" fill="rgb(241,140,9)" rx="2" ry="2" />
<text x="109.38" y="479.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (196 samples, 0.03%)</title><rect x="52.0" y="277" width="0.4" height="15.0" fill="rgb(229,66,20)" rx="2" ry="2" />
<text x="55.05" y="287.5" ></text>
</g>
<g >
<title>_int_malloc (1,395 samples, 0.20%)</title><rect x="1120.5" y="293" width="2.3" height="15.0" fill="rgb(238,102,46)" rx="2" ry="2" />
<text x="1123.45" y="303.5" ></text>
</g>
<g >
<title>_int_free (67 samples, 0.01%)</title><rect x="211.2" y="245" width="0.1" height="15.0" fill="rgb(221,104,29)" rx="2" ry="2" />
<text x="214.21" y="255.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 (185 samples, 0.03%)</title><rect x="1164.9" y="373" width="0.4" height="15.0" fill="rgb(222,55,36)" rx="2" ry="2" />
<text x="1167.94" y="383.5" ></text>
</g>
<g >
<title>alloc::sync::Arc$LT$T$GT$::drop_slow::h5338add9120ad023 (5,740 samples, 0.83%)</title><rect x="193.8" y="341" width="9.9" height="15.0" fill="rgb(227,164,51)" rx="2" ry="2" />
<text x="196.84" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,352 samples, 0.34%)</title><rect x="971.2" y="325" width="4.1" height="15.0" fill="rgb(224,155,23)" rx="2" ry="2" />
<text x="974.23" y="335.5" ></text>
</g>
<g >
<title>anon_vma_clone (171 samples, 0.02%)</title><rect x="1153.7" y="277" width="0.3" height="15.0" fill="rgb(217,85,11)" rx="2" ry="2" />
<text x="1156.67" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,258 samples, 0.33%)</title><rect x="900.3" y="325" width="3.9" height="15.0" fill="rgb(216,219,52)" rx="2" ry="2" />
<text x="903.34" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (283 samples, 0.04%)</title><rect x="90.1" y="277" width="0.5" height="15.0" fill="rgb(234,29,6)" rx="2" ry="2" />
<text x="93.10" 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 (3,053 samples, 0.44%)</title><rect x="106.4" y="549" width="5.2" height="15.0" fill="rgb(219,118,21)" rx="2" ry="2" />
<text x="109.38" y="559.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (75 samples, 0.01%)</title><rect x="56.5" y="277" width="0.1" height="15.0" fill="rgb(210,36,32)" rx="2" ry="2" />
<text x="59.50" y="287.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (592,735 samples, 85.93%)</title><rect x="113.5" y="389" width="1013.9" height="15.0" fill="rgb(209,89,42)" rx="2" ry="2" />
<text x="116.48" y="399.5" >rocinante::main::h69eb7648725adb6f</text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (523 samples, 0.08%)</title><rect x="1141.8" y="421" width="0.9" height="15.0" fill="rgb(227,6,9)" rx="2" ry="2" />
<text x="1144.83" y="431.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (4,437 samples, 0.64%)</title><rect x="1147.4" y="341" width="7.5" height="15.0" fill="rgb(213,151,25)" rx="2" ry="2" />
<text x="1150.35" y="351.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (101 samples, 0.01%)</title><rect x="110.8" y="469" width="0.2" height="15.0" fill="rgb(254,141,3)" rx="2" ry="2" />
<text x="113.80" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (64 samples, 0.01%)</title><rect x="1177.9" y="341" width="0.1" height="15.0" fill="rgb(215,143,41)" rx="2" ry="2" />
<text x="1180.92" y="351.5" ></text>
</g>
<g >
<title>__rdl_alloc (64 samples, 0.01%)</title><rect x="621.3" y="277" width="0.2" height="15.0" fill="rgb(212,218,36)" rx="2" ry="2" />
<text x="624.34" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (117 samples, 0.02%)</title><rect x="105.1" y="405" width="0.2" height="15.0" fill="rgb(246,201,9)" rx="2" ry="2" />
<text x="108.11" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::loop_analysis::LoopAnalysis::compute::h2ae6e7af869a79fa (365 samples, 0.05%)</title><rect x="73.9" y="341" width="0.6" height="15.0" fill="rgb(243,206,33)" rx="2" ry="2" />
<text x="76.92" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (576 samples, 0.08%)</title><rect x="15.2" y="373" width="0.9" height="15.0" fill="rgb(209,49,9)" rx="2" ry="2" />
<text x="18.16" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..signal..Caller$u20$as$u20$wasmer_runtime_core..backend..RunnableModule$GT$::get_func::hbdb643ef237f3ef3 (65 samples, 0.01%)</title><rect x="530.5" y="309" width="0.1" height="15.0" fill="rgb(239,162,3)" rx="2" ry="2" />
<text x="533.47" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (107 samples, 0.02%)</title><rect x="62.2" y="309" width="0.2" height="15.0" fill="rgb(218,223,43)" rx="2" ry="2" />
<text x="65.19" y="319.5" ></text>
</g>
<g >
<title>tlb_flush_mmu_tlbonly (319 samples, 0.05%)</title><rect x="198.2" y="117" width="0.5" height="15.0" fill="rgb(232,105,48)" rx="2" ry="2" />
<text x="201.19" y="127.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 (39,019 samples, 5.66%)</title><rect x="39.6" y="469" width="66.8" height="15.0" fill="rgb(251,205,20)" rx="2" ry="2" />
<text x="42.63" y="479.5" >_$LT$ra..</text>
</g>
<g >
<title>vm_mmap_pgoff (1,589 samples, 0.23%)</title><rect x="1155.9" y="325" width="2.7" height="15.0" fill="rgb(224,37,35)" rx="2" ry="2" />
<text x="1158.90" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (78 samples, 0.01%)</title><rect x="40.4" y="341" width="0.1" height="15.0" fill="rgb(220,221,43)" rx="2" ry="2" />
<text x="43.36" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (94 samples, 0.01%)</title><rect x="77.5" y="293" width="0.1" height="15.0" fill="rgb(229,135,38)" rx="2" ry="2" />
<text x="80.48" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (107 samples, 0.02%)</title><rect x="1184.2" y="373" width="0.2" height="15.0" fill="rgb(205,190,29)" rx="2" ry="2" />
<text x="1187.19" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (142 samples, 0.02%)</title><rect x="525.9" y="181" width="0.2" height="15.0" fill="rgb(229,138,0)" rx="2" ry="2" />
<text x="528.86" y="191.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (2,273 samples, 0.33%)</title><rect x="1178.3" y="549" width="3.9" height="15.0" fill="rgb(246,206,21)" rx="2" ry="2" />
<text x="1181.31" y="559.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (229 samples, 0.03%)</title><rect x="1180.2" y="373" width="0.4" height="15.0" fill="rgb(251,29,16)" rx="2" ry="2" />
<text x="1183.22" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (74 samples, 0.01%)</title><rect x="1180.1" y="389" width="0.1" height="15.0" fill="rgb(245,212,8)" rx="2" ry="2" />
<text x="1183.10" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (418 samples, 0.06%)</title><rect x="84.4" y="309" width="0.7" height="15.0" fill="rgb(214,131,46)" rx="2" ry="2" />
<text x="87.39" y="319.5" ></text>
</g>
<g >
<title>do_syscall_64 (2,895 samples, 0.42%)</title><rect x="194.8" y="229" width="4.9" height="15.0" fill="rgb(225,220,5)" rx="2" ry="2" />
<text x="197.76" y="239.5" ></text>
</g>
<g >
<title>__rdl_alloc (185 samples, 0.03%)</title><rect x="387.6" y="245" width="0.3" height="15.0" fill="rgb(228,120,24)" rx="2" ry="2" />
<text x="390.61" 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 (85 samples, 0.01%)</title><rect x="1180.9" y="373" width="0.1" height="15.0" fill="rgb(236,214,34)" rx="2" ry="2" />
<text x="1183.90" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::new::ha2ae7fc59b6f07f8 (313 samples, 0.05%)</title><rect x="105.3" y="405" width="0.5" height="15.0" fill="rgb(242,17,15)" rx="2" ry="2" />
<text x="108.31" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::assign_inst_seq::h59be385ae82e3a19 (87 samples, 0.01%)</title><rect x="16.2" y="341" width="0.2" height="15.0" fill="rgb(220,130,30)" rx="2" ry="2" />
<text x="19.21" y="351.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::protect::hc4dfd0a2abe36912 (5,181 samples, 0.75%)</title><rect x="1146.3" y="421" width="8.9" height="15.0" fill="rgb(206,137,16)" rx="2" ry="2" />
<text x="1149.34" y="431.5" ></text>
</g>
<g >
<title>__rdl_dealloc (76 samples, 0.01%)</title><rect x="461.6" y="277" width="0.2" height="15.0" fill="rgb(215,56,5)" rx="2" ry="2" />
<text x="464.64" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (63 samples, 0.01%)</title><rect x="45.3" y="293" width="0.1" height="15.0" fill="rgb(241,11,21)" rx="2" ry="2" />
<text x="48.28" y="303.5" ></text>
</g>
<g >
<title>__rdl_alloc (75 samples, 0.01%)</title><rect x="898.7" y="341" width="0.1" height="15.0" fill="rgb(250,104,29)" rx="2" ry="2" />
<text x="901.66" y="351.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (163 samples, 0.02%)</title><rect x="1174.4" y="485" width="0.3" height="15.0" fill="rgb(230,229,1)" rx="2" ry="2" />
<text x="1177.38" y="495.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (1,240 samples, 0.18%)</title><rect x="91.0" y="325" width="2.1" height="15.0" fill="rgb(244,120,23)" rx="2" ry="2" />
<text x="93.96" y="335.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..builder..code..FunctionDefinition$u20$as$u20$core..default..Default$GT$::default::h6149cbf8db633453 (3,232 samples, 0.47%)</title><rect x="863.2" y="341" width="5.5" height="15.0" fill="rgb(250,40,26)" rx="2" ry="2" />
<text x="866.21" y="351.5" ></text>
</g>
<g >
<title>__rdl_alloc (76 samples, 0.01%)</title><rect x="791.7" y="277" width="0.2" height="15.0" fill="rgb(244,80,47)" rx="2" ry="2" />
<text x="794.72" y="287.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (61 samples, 0.01%)</title><rect x="80.5" y="277" width="0.2" height="15.0" fill="rgb(240,188,2)" rx="2" ry="2" />
<text x="83.55" y="287.5" ></text>
</g>
<g >
<title>rocinante::main::h69eb7648725adb6f (20,749 samples, 3.01%)</title><rect x="1127.4" y="549" width="35.5" height="15.0" fill="rgb(215,98,32)" rx="2" ry="2" />
<text x="1130.44" y="559.5" >roc..</text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (2,202 samples, 0.32%)</title><rect x="52.4" y="309" width="3.8" height="15.0" fill="rgb(222,190,20)" rx="2" ry="2" />
<text x="55.39" y="319.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (118 samples, 0.02%)</title><rect x="42.8" y="373" width="0.2" height="15.0" fill="rgb(236,192,30)" rx="2" ry="2" />
<text x="45.75" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (67 samples, 0.01%)</title><rect x="69.6" y="293" width="0.1" height="15.0" fill="rgb(253,209,2)" rx="2" ry="2" />
<text x="72.62" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (242 samples, 0.04%)</title><rect x="1166.5" y="373" width="0.5" height="15.0" fill="rgb(228,182,43)" rx="2" ry="2" />
<text x="1169.54" y="383.5" ></text>
</g>
<g >
<title>uncharge_batch (133 samples, 0.02%)</title><rect x="197.9" y="53" width="0.2" height="15.0" fill="rgb(219,146,36)" rx="2" ry="2" />
<text x="200.92" y="63.5" ></text>
</g>
<g >
<title>_ZN4core5slice4sort7recurse17hcfda5acadaf50c0aE.llvm.15195122248153170019 (137 samples, 0.02%)</title><rect x="1177.1" y="325" width="0.3" height="15.0" fill="rgb(231,226,30)" rx="2" ry="2" />
<text x="1180.13" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (101 samples, 0.01%)</title><rect x="49.4" y="293" width="0.2" height="15.0" fill="rgb(214,47,27)" rx="2" ry="2" />
<text x="52.45" y="303.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::read::h77a932a23fb2e9de (10,777 samples, 1.56%)</title><rect x="505.5" y="277" width="18.4" height="15.0" fill="rgb(247,159,3)" rx="2" ry="2" />
<text x="508.51" y="287.5" ></text>
</g>
<g >
<title>parity_wasm::elements::module::Module::to_bytes::hf7eaeb7e90803675 (161,392 samples, 23.40%)</title><rect x="582.3" y="357" width="276.1" height="15.0" fill="rgb(242,123,24)" rx="2" ry="2" />
<text x="585.32" y="367.5" >parity_wasm::elements::module::Modul..</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 (9,886 samples, 1.43%)</title><rect x="605.2" y="309" width="16.9" height="15.0" fill="rgb(221,162,16)" rx="2" ry="2" />
<text x="608.23" y="319.5" ></text>
</g>
<g >
<title>free_unref_page_list (105 samples, 0.02%)</title><rect x="197.7" y="69" width="0.1" height="15.0" fill="rgb(240,204,24)" rx="2" ry="2" />
<text x="200.65" y="79.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (34,418 samples, 4.99%)</title><rect x="46.0" y="357" width="58.9" height="15.0" fill="rgb(253,92,42)" rx="2" ry="2" />
<text x="48.98" y="367.5" >cranel..</text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::push1::h85a22cd3ff4886db (77 samples, 0.01%)</title><rect x="526.8" y="229" width="0.2" height="15.0" fill="rgb(220,207,23)" rx="2" ry="2" />
<text x="529.83" y="239.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (94 samples, 0.01%)</title><rect x="195.9" y="149" width="0.1" height="15.0" fill="rgb(254,65,14)" rx="2" ry="2" />
<text x="198.87" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_inst::h3c0aa7980e624bbf (493 samples, 0.07%)</title><rect x="14.1" y="389" width="0.8" height="15.0" fill="rgb(223,108,32)" rx="2" ry="2" />
<text x="17.06" y="399.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (1,228 samples, 0.18%)</title><rect x="1174.8" y="549" width="2.1" height="15.0" fill="rgb(247,81,23)" rx="2" ry="2" />
<text x="1177.81" y="559.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (83 samples, 0.01%)</title><rect x="45.6" y="293" width="0.2" height="15.0" fill="rgb(252,42,29)" rx="2" ry="2" />
<text x="48.63" y="303.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (214 samples, 0.03%)</title><rect x="23.7" y="389" width="0.3" height="15.0" fill="rgb(234,131,38)" rx="2" ry="2" />
<text x="26.68" 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 (813 samples, 0.12%)</title><rect x="1176.9" y="517" width="1.4" height="15.0" fill="rgb(254,168,23)" rx="2" ry="2" />
<text x="1179.92" y="527.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (64 samples, 0.01%)</title><rect x="102.5" y="293" width="0.1" height="15.0" fill="rgb(217,4,23)" rx="2" ry="2" />
<text x="105.48" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (74 samples, 0.01%)</title><rect x="227.6" y="229" width="0.1" height="15.0" fill="rgb(211,157,1)" rx="2" ry="2" />
<text x="230.62" y="239.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (67 samples, 0.01%)</title><rect x="1169.8" y="341" width="0.1" height="15.0" fill="rgb(209,175,34)" rx="2" ry="2" />
<text x="1172.79" y="351.5" ></text>
</g>
<g >
<title>_$LT$wasmer_runtime_core..codegen..StreamingCompiler$LT$MCG$C$FCG$C$RM$C$E$C$CGEN$GT$$u20$as$u20$wasmer_runtime_core..backend..Compiler$GT$::compile::h8e59f93f7f287bf9 (1,435 samples, 0.21%)</title><rect x="1182.2" y="533" width="2.5" height="15.0" fill="rgb(219,12,50)" rx="2" ry="2" />
<text x="1185.20" y="543.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5,700 samples, 0.83%)</title><rect x="166.2" y="309" width="9.7" height="15.0" fill="rgb(227,167,32)" rx="2" ry="2" />
<text x="169.19" y="319.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..validator..ValidatingParser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h573837335870e77b (117,086 samples, 16.97%)</title><rect x="246.9" y="277" width="200.3" height="15.0" fill="rgb(212,209,27)" rx="2" ry="2" />
<text x="249.89" y="287.5" >_$LT$wasmparser..validator..</text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (2,273 samples, 0.33%)</title><rect x="1178.3" y="453" width="3.9" height="15.0" fill="rgb(220,228,52)" rx="2" ry="2" />
<text x="1181.31" y="463.5" ></text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (190 samples, 0.03%)</title><rect x="83.9" y="277" width="0.4" height="15.0" fill="rgb(206,161,8)" rx="2" ry="2" />
<text x="86.94" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,842 samples, 0.27%)</title><rect x="685.2" y="293" width="3.1" height="15.0" fill="rgb(224,81,54)" rx="2" ry="2" />
<text x="688.16" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (218 samples, 0.03%)</title><rect x="1056.6" y="293" width="0.3" height="15.0" fill="rgb(211,220,50)" rx="2" ry="2" />
<text x="1059.56" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::TargetIsa::encode::h3618ddf6ad568ce7 (105 samples, 0.02%)</title><rect x="16.4" y="341" width="0.2" height="15.0" fill="rgb(213,53,14)" rx="2" ry="2" />
<text x="19.41" y="351.5" ></text>
</g>
<g >
<title>__rdl_alloc (64 samples, 0.01%)</title><rect x="1064.1" y="325" width="0.1" height="15.0" fill="rgb(215,84,2)" rx="2" ry="2" />
<text x="1067.08" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (370 samples, 0.05%)</title><rect x="1180.2" y="421" width="0.7" height="15.0" fill="rgb(225,209,54)" rx="2" ry="2" />
<text x="1183.22" y="431.5" ></text>
</g>
<g >
<title>__vdso_clock_gettime (60 samples, 0.01%)</title><rect x="26.8" y="309" width="0.1" height="15.0" fill="rgb(254,184,35)" rx="2" ry="2" />
<text x="29.77" y="319.5" ></text>
</g>
<g >
<title>_int_realloc (69 samples, 0.01%)</title><rect x="1177.4" y="277" width="0.2" height="15.0" fill="rgb(219,95,10)" rx="2" ry="2" />
<text x="1180.45" y="287.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h51630cd8049767c4 (83 samples, 0.01%)</title><rect x="211.4" y="277" width="0.1" height="15.0" fill="rgb(247,48,31)" rx="2" ry="2" />
<text x="214.40" y="287.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (63 samples, 0.01%)</title><rect x="1153.8" y="261" width="0.1" height="15.0" fill="rgb(228,39,40)" rx="2" ry="2" />
<text x="1156.84" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::to_trampoline_cache::h749748cb93becce9 (1,856 samples, 0.27%)</title><rect x="212.8" y="261" width="3.2" height="15.0" fill="rgb(216,7,13)" rx="2" ry="2" />
<text x="215.80" y="271.5" ></text>
</g>
<g >
<title>malloc_printerr (69 samples, 0.01%)</title><rect x="186.6" y="309" width="0.1" height="15.0" fill="rgb(250,31,10)" rx="2" ry="2" />
<text x="189.60" y="319.5" ></text>
</g>
<g >
<title>__vma_adjust (330 samples, 0.05%)</title><rect x="231.2" y="133" width="0.5" height="15.0" fill="rgb(220,27,4)" rx="2" ry="2" />
<text x="234.17" y="143.5" ></text>
</g>
<g >
<title>c2_chacha::guts::refill_wide::he4343866a1fa78ce (66 samples, 0.01%)</title><rect x="1126.7" y="325" width="0.1" height="15.0" fill="rgb(232,66,52)" rx="2" ry="2" />
<text x="1129.72" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::iconst::h085df8078cba1853 (130 samples, 0.02%)</title><rect x="55.5" y="245" width="0.2" height="15.0" fill="rgb(236,76,5)" rx="2" ry="2" />
<text x="58.48" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::allocate_in::hb51d8ed967c35200 (2,867 samples, 0.42%)</title><rect x="148.4" y="213" width="4.9" height="15.0" fill="rgb(214,41,40)" rx="2" ry="2" />
<text x="151.39" y="223.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (116 samples, 0.02%)</title><rect x="441.2" y="229" width="0.2" height="15.0" fill="rgb(236,62,10)" rx="2" ry="2" />
<text x="444.21" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::processing_stack_maybe_push::h68b38d091c29c7ca (151 samples, 0.02%)</title><rect x="1165.7" y="389" width="0.2" height="15.0" fill="rgb(252,188,23)" rx="2" ry="2" />
<text x="1168.69" y="399.5" ></text>
</g>
<g >
<title>_int_free (5,124 samples, 0.74%)</title><rect x="464.2" y="245" width="8.7" height="15.0" fill="rgb(220,45,7)" rx="2" ry="2" />
<text x="467.16" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (72 samples, 0.01%)</title><rect x="41.9" y="341" width="0.1" height="15.0" fill="rgb(241,53,22)" rx="2" ry="2" />
<text x="44.89" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (518 samples, 0.08%)</title><rect x="24.5" y="389" width="0.9" height="15.0" fill="rgb(246,223,51)" rx="2" ry="2" />
<text x="27.52" y="399.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::backing::LocalBacking::new::h9729591e2bf3454e (1,154 samples, 0.17%)</title><rect x="540.5" y="309" width="1.9" height="15.0" fill="rgb(227,58,32)" rx="2" ry="2" />
<text x="543.45" y="319.5" ></text>
</g>
<g >
<title>prepare_exit_to_usermode (72 samples, 0.01%)</title><rect x="10.5" y="501" width="0.2" height="15.0" fill="rgb(245,151,17)" rx="2" ry="2" />
<text x="13.54" y="511.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (286 samples, 0.04%)</title><rect x="13.6" y="373" width="0.5" height="15.0" fill="rgb(246,69,2)" rx="2" ry="2" />
<text x="16.57" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (61 samples, 0.01%)</title><rect x="35.1" y="341" width="0.1" height="15.0" fill="rgb(219,215,31)" rx="2" ry="2" />
<text x="38.13" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::postopt::do_postopt::hd4075babc8e08dd8 (337 samples, 0.05%)</title><rect x="1171.2" y="405" width="0.6" height="15.0" fill="rgb(234,206,3)" rx="2" ry="2" />
<text x="1174.23" y="415.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (592,735 samples, 85.93%)</title><rect x="113.5" y="453" width="1013.9" height="15.0" fill="rgb(250,130,33)" rx="2" ry="2" />
<text x="116.48" y="463.5" >__rust_maybe_catch_panic</text>
</g>
<g >
<title>_int_free (5,483 samples, 0.79%)</title><rect x="547.3" y="325" width="9.4" height="15.0" fill="rgb(253,22,35)" rx="2" ry="2" />
<text x="550.29" 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 (813 samples, 0.12%)</title><rect x="1176.9" y="485" width="1.4" height="15.0" fill="rgb(224,174,5)" rx="2" ry="2" />
<text x="1179.92" y="495.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::next_power_of_two::h599a73e6ec7026f3 (81 samples, 0.01%)</title><rect x="411.1" y="197" width="0.2" height="15.0" fill="rgb(219,113,50)" rx="2" ry="2" />
<text x="414.12" y="207.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,364 samples, 0.20%)</title><rect x="200.1" y="277" width="2.3" height="15.0" fill="rgb(216,190,42)" rx="2" ry="2" />
<text x="203.12" y="287.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (512 samples, 0.07%)</title><rect x="110.7" y="517" width="0.9" height="15.0" fill="rgb(214,35,26)" rx="2" ry="2" />
<text x="113.72" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (68 samples, 0.01%)</title><rect x="30.2" y="389" width="0.2" height="15.0" fill="rgb(213,181,34)" rx="2" ry="2" />
<text x="33.24" y="399.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::into_boxed_slice::h4122676c740e9bd3 (349 samples, 0.05%)</title><rect x="311.5" y="229" width="0.5" height="15.0" fill="rgb(219,62,30)" rx="2" ry="2" />
<text x="314.45" y="239.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::remove::hb674e5732ef2fe56 (63 samples, 0.01%)</title><rect x="87.1" y="309" width="0.2" height="15.0" fill="rgb(218,23,20)" rx="2" ry="2" />
<text x="90.15" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (60 samples, 0.01%)</title><rect x="77.2" y="293" width="0.1" height="15.0" fill="rgb(211,35,38)" rx="2" ry="2" />
<text x="80.21" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (1,188 samples, 0.17%)</title><rect x="162.4" y="293" width="2.0" height="15.0" fill="rgb(250,58,23)" rx="2" ry="2" />
<text x="165.35" y="303.5" ></text>
</g>
<g >
<title>__rdl_alloc (153 samples, 0.02%)</title><rect x="311.1" y="229" width="0.3" height="15.0" fill="rgb(240,145,29)" rx="2" ry="2" />
<text x="314.10" y="239.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..settings..Builder$u20$as$u20$cranelift_codegen..settings..Configurable$GT$::set::h176f1ed6e0099d99 (487 samples, 0.07%)</title><rect x="1144.5" y="405" width="0.8" height="15.0" fill="rgb(241,20,1)" rx="2" ry="2" />
<text x="1147.45" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (131 samples, 0.02%)</title><rect x="1145.7" y="405" width="0.2" height="15.0" fill="rgb(221,102,0)" rx="2" ry="2" />
<text x="1148.70" y="415.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_fork_frontend..frontend..FuncInstBuilder$u20$as$u20$cranelift_codegen..ir..builder..InstBuilderBase$GT$::build::h31ca9581c4035409 (1,011 samples, 0.15%)</title><rect x="524.5" y="229" width="1.8" height="15.0" fill="rgb(207,47,40)" rx="2" ry="2" />
<text x="527.53" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hdbdff368c481960d (138 samples, 0.02%)</title><rect x="1160.6" y="405" width="0.2" height="15.0" fill="rgb(209,95,17)" rx="2" ry="2" />
<text x="1163.59" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (82 samples, 0.01%)</title><rect x="69.8" y="325" width="0.2" height="15.0" fill="rgb(209,62,49)" rx="2" ry="2" />
<text x="72.83" y="335.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (90 samples, 0.01%)</title><rect x="621.5" y="261" width="0.2" height="15.0" fill="rgb(227,168,16)" rx="2" ry="2" />
<text x="624.55" y="271.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 (60 samples, 0.01%)</title><rect x="1179.1" y="389" width="0.1" height="15.0" fill="rgb(216,165,41)" rx="2" ry="2" />
<text x="1182.10" y="399.5" ></text>
</g>
<g >
<title>vm_munmap (2,655 samples, 0.38%)</title><rect x="195.1" y="197" width="4.6" height="15.0" fill="rgb(249,168,27)" rx="2" ry="2" />
<text x="198.15" y="207.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (131 samples, 0.02%)</title><rect x="1158.8" y="373" width="0.2" height="15.0" fill="rgb(243,152,42)" rx="2" ry="2" />
<text x="1161.79" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_free (151 samples, 0.02%)</title><rect x="203.3" y="293" width="0.3" height="15.0" fill="rgb(248,145,20)" rx="2" ry="2" />
<text x="206.31" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,407 samples, 0.35%)</title><rect x="844.6" y="325" width="4.1" height="15.0" fill="rgb(205,24,20)" rx="2" ry="2" />
<text x="847.58" y="335.5" ></text>
</g>
<g >
<title>__memset_avx2 (1,916 samples, 0.28%)</title><rect x="223.1" y="261" width="3.3" height="15.0" fill="rgb(240,98,4)" rx="2" ry="2" />
<text x="226.15" y="271.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 (227 samples, 0.03%)</title><rect x="83.9" y="293" width="0.4" height="15.0" fill="rgb(234,158,18)" rx="2" ry="2" />
<text x="86.87" y="303.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h7db38de7d591c38a (370 samples, 0.05%)</title><rect x="1180.2" y="389" width="0.7" height="15.0" fill="rgb(223,42,35)" rx="2" ry="2" />
<text x="1183.22" y="399.5" ></text>
</g>
<g >
<title>__rust_dealloc (77 samples, 0.01%)</title><rect x="461.8" y="277" width="0.2" height="15.0" fill="rgb(206,182,32)" rx="2" ry="2" />
<text x="464.84" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::reassign_in::h4635b38f4d433603 (155 samples, 0.02%)</title><rect x="1179.8" y="389" width="0.2" height="15.0" fill="rgb(252,223,2)" rx="2" ry="2" />
<text x="1182.78" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..abi..Args$u20$as$u20$cranelift_codegen..abi..ArgAssigner$GT$::assign::h1ef61b42453724d8 (68 samples, 0.01%)</title><rect x="13.4" y="341" width="0.1" height="15.0" fill="rgb(239,3,17)" rx="2" ry="2" />
<text x="16.40" y="351.5" ></text>
</g>
<g >
<title>mem_cgroup_try_charge (67 samples, 0.01%)</title><rect x="1132.6" y="325" width="0.1" height="15.0" fill="rgb(218,58,54)" rx="2" ry="2" />
<text x="1135.61" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::clear::h8fd0c2f2825a66ed (262 samples, 0.04%)</title><rect x="43.0" y="373" width="0.4" height="15.0" fill="rgb(209,64,11)" rx="2" ry="2" />
<text x="45.95" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (65 samples, 0.01%)</title><rect x="1163.1" y="325" width="0.1" height="15.0" fill="rgb(245,129,6)" rx="2" ry="2" />
<text x="1166.12" y="335.5" ></text>
</g>
<g >
<title>_ZN4core3ptr18real_drop_in_place17hb206b25879ccd1daE.llvm.1312411216417185755 (600 samples, 0.09%)</title><rect x="545.1" y="341" width="1.0" height="15.0" fill="rgb(209,214,6)" rx="2" ry="2" />
<text x="548.11" y="351.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (100 samples, 0.01%)</title><rect x="1163.1" y="341" width="0.2" height="15.0" fill="rgb(252,40,2)" rx="2" ry="2" />
<text x="1166.10" y="351.5" ></text>
</g>
<g >
<title>rayon::iter::plumbing::bridge_producer_consumer::helper::h864336325ddf8446 (2,541 samples, 0.37%)</title><rect x="106.4" y="437" width="4.3" height="15.0" fill="rgb(249,158,13)" rx="2" ry="2" />
<text x="109.38" y="447.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::legalize_signature::hdcf9074841354b32 (461 samples, 0.07%)</title><rect x="12.8" y="373" width="0.8" height="15.0" fill="rgb(234,104,49)" rx="2" ry="2" />
<text x="15.78" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::expand_sdivrem::h68f3c5d1142a2234 (92 samples, 0.01%)</title><rect x="1176.9" y="293" width="0.2" height="15.0" fill="rgb(212,30,44)" rx="2" ry="2" />
<text x="1179.92" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (416 samples, 0.06%)</title><rect x="1182.6" y="437" width="0.7" height="15.0" fill="rgb(212,175,17)" rx="2" ry="2" />
<text x="1185.58" y="447.5" ></text>
</g>
<g >
<title>_int_malloc (1,188 samples, 0.17%)</title><rect x="959.6" y="309" width="2.0" height="15.0" fill="rgb(226,89,20)" rx="2" ry="2" />
<text x="962.59" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,919 samples, 0.42%)</title><rect x="651.8" y="277" width="5.0" height="15.0" fill="rgb(215,217,23)" rx="2" ry="2" />
<text x="654.80" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (222 samples, 0.03%)</title><rect x="16.7" y="325" width="0.4" height="15.0" fill="rgb(236,21,39)" rx="2" ry="2" />
<text x="19.70" y="335.5" ></text>
</g>
<g >
<title>memcpy_erms (76 samples, 0.01%)</title><rect x="235.6" y="53" width="0.1" height="15.0" fill="rgb(227,185,35)" rx="2" ry="2" />
<text x="238.58" y="63.5" ></text>
</g>
<g >
<title>_int_realloc (145 samples, 0.02%)</title><rect x="1161.2" y="357" width="0.2" height="15.0" fill="rgb(254,226,9)" rx="2" ry="2" />
<text x="1164.19" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (1,171 samples, 0.17%)</title><rect x="941.2" y="293" width="2.0" height="15.0" fill="rgb(239,120,34)" rx="2" ry="2" />
<text x="944.24" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (2,407 samples, 0.35%)</title><rect x="56.3" y="341" width="4.2" height="15.0" fill="rgb(220,136,28)" rx="2" ry="2" />
<text x="59.34" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::new::h1636284a161b274f (68 samples, 0.01%)</title><rect x="1159.7" y="405" width="0.1" height="15.0" fill="rgb(248,211,47)" rx="2" ry="2" />
<text x="1162.67" y="415.5" ></text>
</g>
<g >
<title>__rdl_alloc (81 samples, 0.01%)</title><rect x="943.2" y="309" width="0.2" height="15.0" fill="rgb(214,48,31)" rx="2" ry="2" />
<text x="946.24" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (65 samples, 0.01%)</title><rect x="525.3" y="181" width="0.1" height="15.0" fill="rgb(230,125,34)" rx="2" ry="2" />
<text x="528.27" y="191.5" ></text>
</g>
<g >
<title>__rdl_alloc (59 samples, 0.01%)</title><rect x="145.8" y="309" width="0.1" height="15.0" fill="rgb(215,205,16)" rx="2" ry="2" />
<text x="148.76" y="319.5" ></text>
</g>
<g >
<title>__rdl_alloc (62 samples, 0.01%)</title><rect x="656.8" y="277" width="0.1" height="15.0" fill="rgb(213,131,1)" rx="2" ry="2" />
<text x="659.79" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (165 samples, 0.02%)</title><rect x="96.5" y="293" width="0.2" height="15.0" fill="rgb(246,73,23)" rx="2" ry="2" />
<text x="99.46" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::diversion::h0a2605efbb6eb85b (175 samples, 0.03%)</title><rect x="1139.5" y="373" width="0.3" height="15.0" fill="rgb(254,67,4)" rx="2" ry="2" />
<text x="1142.49" y="383.5" ></text>
</g>
<g >
<title>__perf_event_header__init_id (90 samples, 0.01%)</title><rect x="1152.5" y="245" width="0.2" height="15.0" fill="rgb(208,228,34)" rx="2" ry="2" />
<text x="1155.52" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (103 samples, 0.01%)</title><rect x="98.4" y="325" width="0.2" height="15.0" fill="rgb(220,214,51)" rx="2" ry="2" />
<text x="101.38" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (271 samples, 0.04%)</title><rect x="1142.9" y="421" width="0.5" height="15.0" fill="rgb(247,79,31)" rx="2" ry="2" />
<text x="1145.90" y="431.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (103 samples, 0.01%)</title><rect x="97.4" y="293" width="0.2" height="15.0" fill="rgb(221,223,52)" rx="2" ry="2" />
<text x="100.38" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,908 samples, 0.28%)</title><rect x="243.5" y="261" width="3.3" height="15.0" fill="rgb(252,218,33)" rx="2" ry="2" />
<text x="246.52" y="271.5" ></text>
</g>
<g >
<title>__mmap (1,978 samples, 0.29%)</title><rect x="1155.3" y="405" width="3.3" height="15.0" fill="rgb(253,215,22)" rx="2" ry="2" />
<text x="1158.25" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::spill::hddbf9a7f97d9d38b (217 samples, 0.03%)</title><rect x="1180.9" y="389" width="0.4" height="15.0" fill="rgb(205,222,49)" rx="2" ry="2" />
<text x="1183.90" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (153 samples, 0.02%)</title><rect x="1183.8" y="373" width="0.3" height="15.0" fill="rgb(227,44,52)" rx="2" ry="2" />
<text x="1186.80" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (84 samples, 0.01%)</title><rect x="1183.0" y="373" width="0.1" height="15.0" fill="rgb(229,13,39)" rx="2" ry="2" />
<text x="1185.97" y="383.5" ></text>
</g>
<g >
<title>rocinante::stoke::transform::Transform::operate::he8e4968d40742750 (16,476 samples, 2.39%)</title><rect x="1098.7" y="357" width="28.2" height="15.0" fill="rgb(251,101,35)" rx="2" ry="2" />
<text x="1101.69" y="367.5" >r..</text>
</g>
<g >
<title>__GI___libc_free (148 samples, 0.02%)</title><rect x="47.9" y="325" width="0.3" height="15.0" fill="rgb(237,44,25)" rx="2" ry="2" />
<text x="50.94" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (2,294 samples, 0.33%)</title><rect x="307.2" y="213" width="3.9" height="15.0" fill="rgb(234,140,20)" rx="2" ry="2" />
<text x="310.18" y="223.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hc9c2ffc4fa991304 (72 samples, 0.01%)</title><rect x="1183.1" y="405" width="0.1" height="15.0" fill="rgb(212,142,41)" rx="2" ry="2" />
<text x="1186.12" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::he459267326f26ce0 (86 samples, 0.01%)</title><rect x="72.0" y="261" width="0.1" height="15.0" fill="rgb(240,183,6)" rx="2" ry="2" />
<text x="74.97" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::try_fold_redundant_jump::h7d3fd9ec5a386d74 (111 samples, 0.02%)</title><rect x="62.4" y="309" width="0.2" height="15.0" fill="rgb(221,221,16)" rx="2" ry="2" />
<text x="65.37" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (231 samples, 0.03%)</title><rect x="1183.3" y="389" width="0.4" height="15.0" fill="rgb(247,90,31)" rx="2" ry="2" />
<text x="1186.29" y="399.5" ></text>
</g>
<g >
<title>lru_add_drain (314 samples, 0.05%)</title><rect x="196.7" y="149" width="0.6" height="15.0" fill="rgb(234,4,23)" rx="2" ry="2" />
<text x="199.74" y="159.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (189,800 samples, 27.52%)</title><rect x="204.5" y="341" width="324.7" height="15.0" fill="rgb(238,147,48)" rx="2" ry="2" />
<text x="207.49" y="351.5" >wasmer_runtime::compile_with_config::h3146f..</text>
</g>
<g >
<title>__vdso_clock_gettime (66 samples, 0.01%)</title><rect x="98.4" y="261" width="0.2" height="15.0" fill="rgb(226,154,52)" rx="2" ry="2" />
<text x="101.44" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (68 samples, 0.01%)</title><rect x="35.2" y="389" width="0.2" height="15.0" fill="rgb(210,210,18)" rx="2" ry="2" />
<text x="38.24" y="399.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (1,228 samples, 0.18%)</title><rect x="1174.8" y="485" width="2.1" height="15.0" fill="rgb(211,196,1)" rx="2" ry="2" />
<text x="1177.81" y="495.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (99 samples, 0.01%)</title><rect x="1097.5" y="309" width="0.2" height="15.0" fill="rgb(249,3,3)" rx="2" ry="2" />
<text x="1100.52" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (63 samples, 0.01%)</title><rect x="92.2" y="309" width="0.1" height="15.0" fill="rgb(232,14,49)" rx="2" ry="2" />
<text x="95.20" y="319.5" ></text>
</g>
<g >
<title>_int_free (80 samples, 0.01%)</title><rect x="504.8" y="245" width="0.1" height="15.0" fill="rgb(248,154,33)" rx="2" ry="2" />
<text x="507.79" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::import::ImportObject::new::hbf222489b0e5ea45 (373 samples, 0.05%)</title><rect x="529.2" y="341" width="0.6" height="15.0" fill="rgb(231,217,16)" rx="2" ry="2" />
<text x="532.17" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_ebb::hb6736aafedf924cd (67 samples, 0.01%)</title><rect x="1142.8" y="421" width="0.1" height="15.0" fill="rgb(223,201,54)" rx="2" ry="2" />
<text x="1145.78" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (69 samples, 0.01%)</title><rect x="1177.4" y="293" width="0.2" height="15.0" fill="rgb(253,110,6)" rx="2" ry="2" />
<text x="1180.45" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::x86_expand::h65f50b7ad4fea636 (125 samples, 0.02%)</title><rect x="1176.9" y="309" width="0.2" height="15.0" fill="rgb(224,72,49)" rx="2" ry="2" />
<text x="1179.92" y="319.5" ></text>
</g>
<g >
<title>__alloc_pages_nodemask (254 samples, 0.04%)</title><rect x="225.3" y="149" width="0.4" height="15.0" fill="rgb(212,218,34)" rx="2" ry="2" />
<text x="228.26" y="159.5" ></text>
</g>
<g >
<title>do_mprotect_pkey (1,838 samples, 0.27%)</title><rect x="228.9" y="181" width="3.1" height="15.0" fill="rgb(207,225,42)" rx="2" ry="2" />
<text x="231.87" y="191.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (124 samples, 0.02%)</title><rect x="499.9" y="261" width="0.2" height="15.0" fill="rgb(229,144,8)" rx="2" ry="2" />
<text x="502.87" y="271.5" ></text>
</g>
<g >
<title>get_unmapped_area (210 samples, 0.03%)</title><rect x="233.3" y="133" width="0.3" height="15.0" fill="rgb(235,31,29)" rx="2" ry="2" />
<text x="236.25" y="143.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h2e9559b12c7fca43 (148 samples, 0.02%)</title><rect x="109.4" y="389" width="0.2" height="15.0" fill="rgb(234,109,37)" rx="2" ry="2" />
<text x="112.37" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (149 samples, 0.02%)</title><rect x="80.0" y="277" width="0.3" height="15.0" fill="rgb(212,116,50)" rx="2" ry="2" />
<text x="83.05" y="287.5" ></text>
</g>
<g >
<title>change_protection (168 samples, 0.02%)</title><rect x="229.3" y="149" width="0.3" height="15.0" fill="rgb(240,86,33)" rx="2" ry="2" />
<text x="232.32" y="159.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (39,019 samples, 5.66%)</title><rect x="39.6" y="533" width="66.8" height="15.0" fill="rgb(227,27,2)" rx="2" ry="2" />
<text x="42.63" y="543.5" >wasmer_..</text>
</g>
<g >
<title>__GI___libc_malloc (95 samples, 0.01%)</title><rect x="51.7" y="245" width="0.2" height="15.0" fill="rgb(234,103,53)" rx="2" ry="2" />
<text x="54.72" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (63 samples, 0.01%)</title><rect x="49.3" y="293" width="0.1" height="15.0" fill="rgb(230,49,2)" rx="2" ry="2" />
<text x="52.29" y="303.5" ></text>
</g>
<g >
<title>_int_free (94 samples, 0.01%)</title><rect x="1136.7" y="357" width="0.2" height="15.0" fill="rgb(227,198,8)" rx="2" ry="2" />
<text x="1139.71" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::encoding::base_size::he0d0831e71de2a0c (88 samples, 0.01%)</title><rect x="25.4" y="389" width="0.2" height="15.0" fill="rgb(210,130,12)" rx="2" ry="2" />
<text x="28.41" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (64 samples, 0.01%)</title><rect x="52.8" y="261" width="0.1" height="15.0" fill="rgb(242,3,26)" rx="2" ry="2" />
<text x="55.81" y="271.5" ></text>
</g>
<g >
<title>__rdl_dealloc (103 samples, 0.01%)</title><rect x="484.2" y="261" width="0.1" height="15.0" fill="rgb(212,24,17)" rx="2" ry="2" />
<text x="487.16" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (63 samples, 0.01%)</title><rect x="81.3" y="309" width="0.1" height="15.0" fill="rgb(250,85,21)" rx="2" ry="2" />
<text x="84.34" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Context::insert_spill::heb310b7f97e05ad2 (327 samples, 0.05%)</title><rect x="36.2" y="389" width="0.5" height="15.0" fill="rgb(223,34,36)" rx="2" ry="2" />
<text x="39.16" y="399.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (89 samples, 0.01%)</title><rect x="47.8" y="277" width="0.1" height="15.0" fill="rgb(212,58,41)" rx="2" ry="2" />
<text x="50.78" y="287.5" ></text>
</g>
<g >
<title>free_pages_and_swap_cache (267 samples, 0.04%)</title><rect x="201.1" y="133" width="0.4" height="15.0" fill="rgb(243,222,45)" rx="2" ry="2" />
<text x="204.09" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (79 samples, 0.01%)</title><rect x="35.5" y="373" width="0.1" height="15.0" fill="rgb(225,176,29)" rx="2" ry="2" />
<text x="38.48" y="383.5" ></text>
</g>
<g >
<title>vm_mmap_pgoff (2,061 samples, 0.30%)</title><rect x="233.0" y="165" width="3.5" height="15.0" fill="rgb(225,134,6)" rx="2" ry="2" />
<text x="236.01" y="175.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::SignatureBuilder$LT$F$GT$::with_params::hc949b3cf879ad282 (6,410 samples, 0.93%)</title><rect x="932.5" y="341" width="11.0" height="15.0" fill="rgb(247,98,34)" rx="2" ry="2" />
<text x="935.50" y="351.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (232 samples, 0.03%)</title><rect x="80.0" y="293" width="0.4" height="15.0" fill="rgb(241,139,40)" rx="2" ry="2" />
<text x="83.01" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (111 samples, 0.02%)</title><rect x="1179.5" y="357" width="0.2" height="15.0" fill="rgb(208,13,33)" rx="2" ry="2" />
<text x="1182.54" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (91 samples, 0.01%)</title><rect x="226.7" y="245" width="0.2" height="15.0" fill="rgb(248,109,25)" rx="2" ry="2" />
<text x="229.74" y="255.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h5befb2ef74ba1584 (191 samples, 0.03%)</title><rect x="438.4" y="245" width="0.3" height="15.0" fill="rgb(216,0,33)" rx="2" ry="2" />
<text x="441.41" y="255.5" ></text>
</g>
<g >
<title>mmap_region (1,239 samples, 0.18%)</title><rect x="1156.3" y="293" width="2.1" height="15.0" fill="rgb(246,12,46)" rx="2" ry="2" />
<text x="1159.32" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (64 samples, 0.01%)</title><rect x="1160.0" y="357" width="0.1" height="15.0" fill="rgb(206,61,50)" rx="2" ry="2" />
<text x="1163.03" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::new::hb2c1be51d6979949 (69 samples, 0.01%)</title><rect x="39.5" y="453" width="0.1" height="15.0" fill="rgb(223,19,38)" rx="2" ry="2" />
<text x="42.51" y="463.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (129 samples, 0.02%)</title><rect x="80.9" y="277" width="0.2" height="15.0" fill="rgb(227,129,33)" rx="2" ry="2" />
<text x="83.85" y="287.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (63 samples, 0.01%)</title><rect x="1162.1" y="389" width="0.1" height="15.0" fill="rgb(227,108,12)" rx="2" ry="2" />
<text x="1165.10" y="399.5" ></text>
</g>
<g >
<title>_ZN78_$LT$parity_wasm..elements..ops..Instruction$u20$as$u20$core..clone..Clone$GT$5clone17hb3781841ab52f338E.llvm.18272125928316734128 (153 samples, 0.02%)</title><rect x="1126.5" y="325" width="0.2" height="15.0" fill="rgb(215,205,30)" rx="2" ry="2" />
<text x="1129.46" y="335.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 (38,221 samples, 5.54%)</title><rect x="39.6" y="421" width="65.4" height="15.0" fill="rgb(224,145,40)" rx="2" ry="2" />
<text x="42.63" y="431.5" >_$LT$ra..</text>
</g>
<g >
<title>_int_realloc (112 samples, 0.02%)</title><rect x="52.2" y="229" width="0.2" height="15.0" fill="rgb(230,203,51)" rx="2" ry="2" />
<text x="55.17" y="239.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 (197 samples, 0.03%)</title><rect x="1179.2" y="389" width="0.3" height="15.0" fill="rgb(236,56,6)" rx="2" ry="2" />
<text x="1182.21" y="399.5" ></text>
</g>
<g >
<title>core::num::_$LT$impl$u20$usize$GT$::one_less_than_next_power_of_two::h3c7982a12f0106e5 (81 samples, 0.01%)</title><rect x="411.1" y="181" width="0.2" height="15.0" fill="rgb(223,224,47)" rx="2" ry="2" />
<text x="414.12" y="191.5" ></text>
</g>
<g >
<title>handle_mm_fault (899 samples, 0.13%)</title><rect x="224.8" y="197" width="1.6" height="15.0" fill="rgb(216,71,28)" rx="2" ry="2" />
<text x="227.84" y="207.5" ></text>
</g>
<g >
<title>alloc::slice::hack::to_vec::h0be6351f64f96a69 (3,006 samples, 0.44%)</title><rect x="148.2" y="261" width="5.1" height="15.0" fill="rgb(237,51,26)" rx="2" ry="2" />
<text x="151.16" y="271.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (84 samples, 0.01%)</title><rect x="1171.5" y="389" width="0.2" height="15.0" fill="rgb(239,186,47)" rx="2" ry="2" />
<text x="1174.51" y="399.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h32a2d4ba425bc523 (146 samples, 0.02%)</title><rect x="49.4" y="309" width="0.3" height="15.0" fill="rgb(223,102,4)" rx="2" ry="2" />
<text x="52.40" 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 (1,074 samples, 0.16%)</title><rect x="111.6" y="373" width="1.9" height="15.0" fill="rgb(254,13,16)" rx="2" ry="2" />
<text x="114.63" y="383.5" ></text>
</g>
<g >
<title>_$LT$wasmparser..parser..Parser$u20$as$u20$wasmparser..parser..WasmDecoder$GT$::read::h34b06bb75da62f27 (1,040 samples, 0.15%)</title><rect x="498.1" y="261" width="1.8" height="15.0" fill="rgb(210,103,19)" rx="2" ry="2" />
<text x="501.09" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (273 samples, 0.04%)</title><rect x="16.6" y="341" width="0.5" height="15.0" fill="rgb(214,18,18)" rx="2" ry="2" />
<text x="19.61" y="351.5" ></text>
</g>
<g >
<title>__rust_maybe_catch_panic (1,074 samples, 0.16%)</title><rect x="111.6" y="549" width="1.9" height="15.0" fill="rgb(254,19,18)" rx="2" ry="2" />
<text x="114.63" y="559.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h4f8d39030b6aaee7 (88 samples, 0.01%)</title><rect x="1162.1" y="405" width="0.1" height="15.0" fill="rgb(224,228,29)" rx="2" ry="2" />
<text x="1165.07" y="415.5" ></text>
</g>
<g >
<title>alloc_perturb (64 samples, 0.01%)</title><rect x="175.8" y="277" width="0.1" height="15.0" fill="rgb(223,210,4)" rx="2" ry="2" />
<text x="178.83" y="287.5" ></text>
</g>
<g >
<title>__rdl_alloc (64 samples, 0.01%)</title><rect x="140.9" y="277" width="0.1" height="15.0" fill="rgb(213,215,50)" rx="2" ry="2" />
<text x="143.90" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (67 samples, 0.01%)</title><rect x="1169.8" y="325" width="0.1" height="15.0" fill="rgb(206,12,9)" rx="2" ry="2" />
<text x="1172.79" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (3,874 samples, 0.56%)</title><rect x="49.7" y="341" width="6.6" height="15.0" fill="rgb(236,33,19)" rx="2" ry="2" />
<text x="52.71" y="351.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (570 samples, 0.08%)</title><rect x="219.0" y="117" width="1.0" height="15.0" fill="rgb(207,155,20)" rx="2" ry="2" />
<text x="222.05" y="127.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (2,147 samples, 0.31%)</title><rect x="77.8" y="325" width="3.6" height="15.0" fill="rgb(205,23,46)" rx="2" ry="2" />
<text x="80.77" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_params::h07f799cc3d985229 (66 samples, 0.01%)</title><rect x="112.8" y="357" width="0.1" height="15.0" fill="rgb(206,162,32)" rx="2" ry="2" />
<text x="115.79" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (2,367 samples, 0.34%)</title><rect x="56.4" y="325" width="4.1" height="15.0" fill="rgb(235,121,27)" rx="2" ry="2" />
<text x="59.41" y="335.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::func_translator::FuncTranslator::new::hf4c7c586c59a333c (391 samples, 0.06%)</title><rect x="1162.2" y="421" width="0.7" height="15.0" fill="rgb(245,128,19)" rx="2" ry="2" />
<text x="1165.22" y="431.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (207 samples, 0.03%)</title><rect x="772.1" y="261" width="0.4" height="15.0" fill="rgb(244,184,46)" rx="2" ry="2" />
<text x="775.14" y="271.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::create_ebb::hae9a6333ca79d10c (672 samples, 0.10%)</title><rect x="1160.6" y="421" width="1.1" height="15.0" fill="rgb(244,152,44)" rx="2" ry="2" />
<text x="1163.59" y="431.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (88 samples, 0.01%)</title><rect x="1169.8" y="373" width="0.1" height="15.0" fill="rgb(233,78,19)" rx="2" ry="2" />
<text x="1172.75" y="383.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 (21,728 samples, 3.15%)</title><rect x="657.1" y="309" width="37.2" height="15.0" fill="rgb(239,62,19)" rx="2" ry="2" />
<text x="660.11" y="319.5" >_$L..</text>
</g>
<g >
<title>__GI___clock_gettime (77 samples, 0.01%)</title><rect x="1170.2" y="341" width="0.1" height="15.0" fill="rgb(236,104,9)" rx="2" ry="2" />
<text x="1173.19" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (65 samples, 0.01%)</title><rect x="1140.4" y="373" width="0.1" height="15.0" fill="rgb(224,11,1)" rx="2" ry="2" />
<text x="1143.37" y="383.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$alloc..vec..SpecExtend$LT$T$C$I$GT$$GT$::spec_extend::hc9c2ffc4fa991304 (123 samples, 0.02%)</title><rect x="86.9" y="293" width="0.2" height="15.0" fill="rgb(213,212,36)" rx="2" ry="2" />
<text x="89.90" y="303.5" ></text>
</g>
<g >
<title>free_pgtables (181 samples, 0.03%)</title><rect x="200.7" y="181" width="0.3" height="15.0" fill="rgb(228,64,0)" rx="2" ry="2" />
<text x="203.72" y="191.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::Builder::lookup::hc6620799f46af882 (233 samples, 0.03%)</title><rect x="236.9" y="245" width="0.4" height="15.0" fill="rgb(221,172,36)" rx="2" ry="2" />
<text x="239.90" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (151 samples, 0.02%)</title><rect x="1183.4" y="341" width="0.3" height="15.0" fill="rgb(246,188,42)" rx="2" ry="2" />
<text x="1186.42" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::for_function::hea969f7415ee7749 (512 samples, 0.07%)</title><rect x="110.7" y="485" width="0.9" height="15.0" fill="rgb(243,37,47)" rx="2" ry="2" />
<text x="113.72" y="495.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (72 samples, 0.01%)</title><rect x="1173.6" y="389" width="0.2" height="15.0" fill="rgb(229,80,52)" rx="2" ry="2" />
<text x="1176.63" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (1,205 samples, 0.17%)</title><rect x="929.6" y="293" width="2.1" height="15.0" fill="rgb(249,207,32)" rx="2" ry="2" />
<text x="932.61" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::ushr_imm::h79c82a78486e338b (61 samples, 0.01%)</title><rect x="103.9" y="325" width="0.1" height="15.0" fill="rgb(209,133,1)" rx="2" ry="2" />
<text x="106.92" y="335.5" ></text>
</g>
<g >
<title>_int_free (1,757 samples, 0.25%)</title><rect x="648.0" y="277" width="3.0" height="15.0" fill="rgb(251,133,11)" rx="2" ry="2" />
<text x="650.97" y="287.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sys::unix::memory::Memory::with_size::h99a15e322ed7dfca (2,541 samples, 0.37%)</title><rect x="232.2" y="261" width="4.4" height="15.0" fill="rgb(238,219,9)" rx="2" ry="2" />
<text x="235.25" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::prologue_epilogue::he7fad23bcfb5a3af (961 samples, 0.14%)</title><rect x="1167.1" y="405" width="1.6" height="15.0" fill="rgb(210,203,35)" rx="2" ry="2" />
<text x="1170.08" y="415.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (286 samples, 0.04%)</title><rect x="198.2" y="101" width="0.5" height="15.0" fill="rgb(242,14,11)" rx="2" ry="2" />
<text x="201.24" y="111.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_wasm::state::func_state::FuncTranslationState::initialize::h647245500dff39f8 (146 samples, 0.02%)</title><rect x="1176.6" y="309" width="0.3" height="15.0" fill="rgb(210,139,47)" rx="2" ry="2" />
<text x="1179.65" y="319.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_section_header::h81c8f9a3c6efd252 (97 samples, 0.01%)</title><rect x="499.7" y="213" width="0.2" height="15.0" fill="rgb(252,177,11)" rx="2" ry="2" />
<text x="502.70" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::legalize_function::h9c05a7523015c4df (285 samples, 0.04%)</title><rect x="1178.3" y="421" width="0.5" height="15.0" fill="rgb(225,122,31)" rx="2" ry="2" />
<text x="1181.31" y="431.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (82 samples, 0.01%)</title><rect x="70.7" y="309" width="0.1" height="15.0" fill="rgb(210,68,8)" rx="2" ry="2" />
<text x="73.69" y="319.5" ></text>
</g>
<g >
<title>vma_merge (256 samples, 0.04%)</title><rect x="220.1" y="149" width="0.4" height="15.0" fill="rgb(235,43,17)" rx="2" ry="2" />
<text x="223.06" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (126 samples, 0.02%)</title><rect x="106.2" y="421" width="0.2" height="15.0" fill="rgb(251,72,20)" rx="2" ry="2" />
<text x="109.16" y="431.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 (6,692 samples, 0.97%)</title><rect x="1162.9" y="469" width="11.5" height="15.0" fill="rgb(246,167,40)" rx="2" ry="2" />
<text x="1165.93" y="479.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (4,788 samples, 0.69%)</title><rect x="1146.8" y="389" width="8.2" height="15.0" fill="rgb(251,63,42)" rx="2" ry="2" />
<text x="1149.82" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (113 samples, 0.02%)</title><rect x="25.2" y="373" width="0.2" height="15.0" fill="rgb(250,142,10)" rx="2" ry="2" />
<text x="28.22" y="383.5" ></text>
</g>
<g >
<title>free_pgtables (151 samples, 0.02%)</title><rect x="196.5" y="149" width="0.2" height="15.0" fill="rgb(228,17,10)" rx="2" ry="2" />
<text x="199.48" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::abi::insert_common_epilogues::h86f7f3e925a821fa (514 samples, 0.07%)</title><rect x="57.7" y="293" width="0.9" height="15.0" fill="rgb(221,187,48)" rx="2" ry="2" />
<text x="60.71" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (76 samples, 0.01%)</title><rect x="67.3" y="293" width="0.1" height="15.0" fill="rgb(236,208,12)" rx="2" ry="2" />
<text x="70.25" y="303.5" ></text>
</g>
<g >
<title>unmap_vmas (112 samples, 0.02%)</title><rect x="202.1" y="181" width="0.2" height="15.0" fill="rgb(253,63,15)" rx="2" ry="2" />
<text x="205.12" y="191.5" ></text>
</g>
<g >
<title>core::iter::traits::iterator::Iterator::unzip::h894cb0151c0f7fd8 (189 samples, 0.03%)</title><rect x="226.6" y="261" width="0.3" height="15.0" fill="rgb(229,131,18)" rx="2" ry="2" />
<text x="229.59" y="271.5" ></text>
</g>
<g >
<title>sys_rt_sigprocmask (147 samples, 0.02%)</title><rect x="1189.7" y="501" width="0.3" height="15.0" fill="rgb(217,194,52)" rx="2" ry="2" />
<text x="1192.73" y="511.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (124 samples, 0.02%)</title><rect x="84.0" y="261" width="0.3" height="15.0" fill="rgb(243,131,34)" rx="2" ry="2" />
<text x="87.04" y="271.5" ></text>
</g>
<g >
<title>anon_vma_clone (101 samples, 0.01%)</title><rect x="195.7" y="149" width="0.1" height="15.0" fill="rgb(236,131,36)" rx="2" ry="2" />
<text x="198.66" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::binemit::relaxation::relax_branches::hf8ed24268a55ae64 (1,440 samples, 0.21%)</title><rect x="60.5" y="325" width="2.5" height="15.0" fill="rgb(243,113,4)" rx="2" ry="2" />
<text x="63.52" y="335.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (275 samples, 0.04%)</title><rect x="631.9" y="277" width="0.4" height="15.0" fill="rgb(236,191,17)" rx="2" ry="2" />
<text x="634.86" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h156c4ca9e87e66cc (61 samples, 0.01%)</title><rect x="1165.4" y="389" width="0.1" height="15.0" fill="rgb(229,160,12)" rx="2" ry="2" />
<text x="1168.40" y="399.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 (38,221 samples, 5.54%)</title><rect x="39.6" y="405" width="65.4" height="15.0" fill="rgb(224,169,20)" rx="2" ry="2" />
<text x="42.63" y="415.5" >_$LT$co..</text>
</g>
<g >
<title>cranelift_codegen::binemit::emit_function::hcd450d74712a091f (1,290 samples, 0.19%)</title><rect x="43.8" y="357" width="2.2" height="15.0" fill="rgb(243,3,51)" rx="2" ry="2" />
<text x="46.77" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (67 samples, 0.01%)</title><rect x="95.0" y="293" width="0.2" height="15.0" fill="rgb(224,134,10)" rx="2" ry="2" />
<text x="98.04" y="303.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 (163 samples, 0.02%)</title><rect x="1174.4" y="421" width="0.3" height="15.0" fill="rgb(238,128,23)" rx="2" ry="2" />
<text x="1177.38" y="431.5" ></text>
</g>
<g >
<title>__GI___libc_free (387 samples, 0.06%)</title><rect x="1133.6" y="389" width="0.7" height="15.0" fill="rgb(253,128,36)" rx="2" ry="2" />
<text x="1136.62" y="399.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (66 samples, 0.01%)</title><rect x="72.3" y="293" width="0.1" height="15.0" fill="rgb(241,128,24)" rx="2" ry="2" />
<text x="75.28" y="303.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 (260 samples, 0.04%)</title><rect x="16.1" y="357" width="0.5" height="15.0" fill="rgb(206,93,45)" rx="2" ry="2" />
<text x="19.15" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (5,309 samples, 0.77%)</title><rect x="833.9" y="277" width="9.1" height="15.0" fill="rgb(234,100,45)" rx="2" ry="2" />
<text x="836.91" y="287.5" ></text>
</g>
<g >
<title>alloc::borrow::Cow$LT$B$GT$::to_mut::hc816a9c98cae5186 (118 samples, 0.02%)</title><rect x="13.0" y="357" width="0.2" height="15.0" fill="rgb(251,141,1)" rx="2" ry="2" />
<text x="16.02" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::resolve_aliases_in_arguments::ha1a59fc1c5edab63 (127 samples, 0.02%)</title><rect x="1173.1" y="389" width="0.2" height="15.0" fill="rgb(215,146,31)" rx="2" ry="2" />
<text x="1176.11" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_gvn::do_simple_gvn::h76b7a5cd0deccebd (528 samples, 0.08%)</title><rect x="1172.6" y="405" width="0.9" height="15.0" fill="rgb(245,101,39)" rx="2" ry="2" />
<text x="1175.57" y="415.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (104 samples, 0.02%)</title><rect x="1169.7" y="389" width="0.2" height="15.0" fill="rgb(213,217,9)" rx="2" ry="2" />
<text x="1172.73" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (133 samples, 0.02%)</title><rect x="71.2" y="325" width="0.2" height="15.0" fill="rgb(254,82,16)" rx="2" ry="2" />
<text x="74.18" y="335.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (89 samples, 0.01%)</title><rect x="18.9" y="341" width="0.1" height="15.0" fill="rgb(213,212,41)" rx="2" ry="2" />
<text x="21.87" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::with_name_signature::h3213a13dd838e646 (104 samples, 0.02%)</title><rect x="1174.2" y="437" width="0.2" height="15.0" fill="rgb(251,213,52)" rx="2" ry="2" />
<text x="1177.20" y="447.5" ></text>
</g>
<g >
<title>__GI___libc_free (2,419 samples, 0.35%)</title><rect x="754.4" y="261" width="4.1" height="15.0" fill="rgb(254,131,47)" rx="2" ry="2" />
<text x="757.40" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::spilling::Spilling::run::hbc5ba3177617b881 (1,277 samples, 0.19%)</title><rect x="37.2" y="405" width="2.2" height="15.0" fill="rgb(229,211,45)" rx="2" ry="2" />
<text x="40.19" y="415.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,911 samples, 0.42%)</title><rect x="194.8" y="245" width="4.9" height="15.0" fill="rgb(210,185,21)" rx="2" ry="2" />
<text x="197.76" y="255.5" ></text>
</g>
<g >
<title>do_mmap (1,429 samples, 0.21%)</title><rect x="1156.0" y="309" width="2.5" height="15.0" fill="rgb(216,2,31)" rx="2" ry="2" />
<text x="1159.02" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_free (6,156 samples, 0.89%)</title><rect x="546.1" y="341" width="10.6" height="15.0" fill="rgb(212,109,26)" rx="2" ry="2" />
<text x="549.14" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (2,020 samples, 0.29%)</title><rect x="1093.9" y="293" width="3.4" height="15.0" fill="rgb(238,74,35)" rx="2" ry="2" />
<text x="1096.88" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hec416ca773dba9b8 (84 samples, 0.01%)</title><rect x="1133.1" y="421" width="0.1" height="15.0" fill="rgb(223,90,29)" rx="2" ry="2" />
<text x="1136.10" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::settings::Flags::new::hb176e87743e4d4a7 (108 samples, 0.02%)</title><rect x="1145.5" y="373" width="0.2" height="15.0" fill="rgb(243,195,23)" rx="2" ry="2" />
<text x="1148.50" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (91 samples, 0.01%)</title><rect x="50.5" y="309" width="0.1" height="15.0" fill="rgb(228,121,14)" rx="2" ry="2" />
<text x="53.46" y="319.5" ></text>
</g>
<g >
<title>_int_free (63 samples, 0.01%)</title><rect x="89.7" y="229" width="0.1" height="15.0" fill="rgb(222,197,50)" rx="2" ry="2" />
<text x="92.72" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (62 samples, 0.01%)</title><rect x="70.8" y="325" width="0.1" height="15.0" fill="rgb(230,228,33)" rx="2" ry="2" />
<text x="73.83" y="335.5" ></text>
</g>
<g >
<title>std::panicking::try::hab539b2d1255d635 (1,228 samples, 0.18%)</title><rect x="1174.8" y="517" width="2.1" height="15.0" fill="rgb(227,60,22)" rx="2" ry="2" />
<text x="1177.81" y="527.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hde4c914cbb5df344 (145 samples, 0.02%)</title><rect x="388.0" y="261" width="0.2" height="15.0" fill="rgb(221,73,29)" rx="2" ry="2" />
<text x="390.96" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (355 samples, 0.05%)</title><rect x="96.1" y="309" width="0.6" height="15.0" fill="rgb(223,73,31)" rx="2" ry="2" />
<text x="99.13" y="319.5" ></text>
</g>
<g >
<title>_int_free (108 samples, 0.02%)</title><rect x="1133.3" y="389" width="0.2" height="15.0" fill="rgb(222,166,54)" rx="2" ry="2" />
<text x="1136.33" y="399.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_remove (69 samples, 0.01%)</title><rect x="1154.4" y="277" width="0.1" height="15.0" fill="rgb(245,48,21)" rx="2" ry="2" />
<text x="1157.40" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (64 samples, 0.01%)</title><rect x="1174.0" y="389" width="0.1" height="15.0" fill="rgb(216,159,0)" rx="2" ry="2" />
<text x="1177.03" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,787 samples, 0.40%)</title><rect x="863.8" y="325" width="4.7" height="15.0" fill="rgb(219,27,51)" rx="2" ry="2" />
<text x="866.77" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (1,228 samples, 0.18%)</title><rect x="1174.8" y="421" width="2.1" height="15.0" fill="rgb(231,227,19)" rx="2" ry="2" />
<text x="1177.81" y="431.5" ></text>
</g>
<g >
<title>wasmparser::parser::Parser::read_function_body::hcb187222237f62c7 (987 samples, 0.14%)</title><rect x="335.2" y="245" width="1.7" height="15.0" fill="rgb(216,79,16)" rx="2" ry="2" />
<text x="338.18" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (72 samples, 0.01%)</title><rect x="1183.1" y="389" width="0.1" height="15.0" fill="rgb(226,229,33)" rx="2" ry="2" />
<text x="1186.12" y="399.5" ></text>
</g>
<g >
<title>anon_vma_interval_tree_insert (72 samples, 0.01%)</title><rect x="1153.7" y="261" width="0.1" height="15.0" fill="rgb(218,207,25)" rx="2" ry="2" />
<text x="1156.70" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (76 samples, 0.01%)</title><rect x="67.3" y="309" width="0.1" height="15.0" fill="rgb(248,135,52)" rx="2" ry="2" />
<text x="70.25" y="319.5" ></text>
</g>
<g >
<title>__rust_realloc (74 samples, 0.01%)</title><rect x="782.4" y="245" width="0.2" height="15.0" fill="rgb(223,164,20)" rx="2" ry="2" />
<text x="785.44" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::redundant_reload_remover::RedundantReloadRemover::discovery_stack_push_successors_of::h1d35cd4c4d8172b7 (141 samples, 0.02%)</title><rect x="48.5" y="325" width="0.3" height="15.0" fill="rgb(240,56,12)" rx="2" ry="2" />
<text x="51.55" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (4,909 samples, 0.71%)</title><rect x="415.6" y="229" width="8.4" height="15.0" fill="rgb(208,9,33)" rx="2" ry="2" />
<text x="418.55" y="239.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (686 samples, 0.10%)</title><rect x="1177.1" y="357" width="1.2" height="15.0" fill="rgb(241,114,24)" rx="2" ry="2" />
<text x="1180.13" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::ha22fe22c40adc3f7 (21,358 samples, 3.10%)</title><rect x="1020.6" y="325" width="36.5" height="15.0" fill="rgb(211,15,23)" rx="2" ry="2" />
<text x="1023.58" y="335.5" >all..</text>
</g>
<g >
<title>__memcpy_avx_unaligned (199 samples, 0.03%)</title><rect x="129.4" y="277" width="0.3" height="15.0" fill="rgb(243,222,34)" rx="2" ry="2" />
<text x="132.36" y="287.5" ></text>
</g>
<g >
<title>arch_get_unmapped_area_topdown (118 samples, 0.02%)</title><rect x="233.3" y="117" width="0.2" height="15.0" fill="rgb(239,87,8)" rx="2" ry="2" />
<text x="236.30" y="127.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 (458 samples, 0.07%)</title><rect x="227.1" y="245" width="0.8" height="15.0" fill="rgb(241,18,18)" rx="2" ry="2" />
<text x="230.13" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hcf362473d68b86cf (5,354 samples, 0.78%)</title><rect x="415.0" y="245" width="9.2" height="15.0" fill="rgb(238,131,28)" rx="2" ry="2" />
<text x="418.02" y="255.5" ></text>
</g>
<g >
<title>__do_page_fault (1,169 samples, 0.17%)</title><rect x="1130.9" y="373" width="2.0" height="15.0" fill="rgb(241,144,26)" rx="2" ry="2" />
<text x="1133.87" y="383.5" ></text>
</g>
<g >
<title>malloc_consolidate (19,423 samples, 2.82%)</title><rect x="986.6" y="293" width="33.2" height="15.0" fill="rgb(249,115,13)" rx="2" ry="2" />
<text x="989.62" y="303.5" >ma..</text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (69 samples, 0.01%)</title><rect x="1170.8" y="405" width="0.1" height="15.0" fill="rgb(234,190,12)" rx="2" ry="2" />
<text x="1173.76" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::diversion::RegDiversions::apply::ha5ceacd048d67eac (93 samples, 0.01%)</title><rect x="19.8" y="389" width="0.1" height="15.0" fill="rgb(244,24,11)" rx="2" ry="2" />
<text x="22.76" y="399.5" ></text>
</g>
<g >
<title>unmap_page_range (260 samples, 0.04%)</title><rect x="199.0" y="117" width="0.5" height="15.0" fill="rgb(239,227,12)" rx="2" ry="2" />
<text x="202.02" y="127.5" ></text>
</g>
<g >
<title>__GI___libc_free (384 samples, 0.06%)</title><rect x="221.6" y="245" width="0.6" height="15.0" fill="rgb(248,63,35)" rx="2" ry="2" />
<text x="224.59" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (60 samples, 0.01%)</title><rect x="73.8" y="309" width="0.1" height="15.0" fill="rgb(229,100,14)" rx="2" ry="2" />
<text x="76.82" y="319.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 (1,636 samples, 0.24%)</title><rect x="524.2" y="261" width="2.8" height="15.0" fill="rgb(243,146,34)" rx="2" ry="2" />
<text x="527.16" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (78 samples, 0.01%)</title><rect x="1140.8" y="389" width="0.1" height="15.0" fill="rgb(214,5,5)" rx="2" ry="2" />
<text x="1143.80" y="399.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (6,692 samples, 0.97%)</title><rect x="1162.9" y="549" width="11.5" height="15.0" fill="rgb(210,71,23)" rx="2" ry="2" />
<text x="1165.93" y="559.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..enc_tables..Encodings$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::next::he6ba202105922eb5 (175 samples, 0.03%)</title><rect x="64.1" y="293" width="0.3" height="15.0" fill="rgb(205,59,11)" rx="2" ry="2" />
<text x="67.06" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (5,408 samples, 0.78%)</title><rect x="301.9" y="229" width="9.2" height="15.0" fill="rgb(211,185,52)" rx="2" ry="2" />
<text x="304.85" y="239.5" ></text>
</g>
<g >
<title>vma_merge (430 samples, 0.06%)</title><rect x="231.1" y="149" width="0.7" height="15.0" fill="rgb(215,43,53)" rx="2" ry="2" />
<text x="234.11" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::simple_preopt::do_preopt::hc14889b432418503 (749 samples, 0.11%)</title><rect x="103.1" y="341" width="1.2" height="15.0" fill="rgb(233,194,20)" rx="2" ry="2" />
<text x="106.05" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (62 samples, 0.01%)</title><rect x="203.9" y="325" width="0.1" height="15.0" fill="rgb(220,226,13)" rx="2" ry="2" />
<text x="206.93" y="335.5" ></text>
</g>
<g >
<title>mprotect_fixup (2,247 samples, 0.33%)</title><rect x="216.7" y="165" width="3.8" height="15.0" fill="rgb(207,77,24)" rx="2" ry="2" />
<text x="219.67" y="175.5" ></text>
</g>
<g >
<title>parity_wasm::elements::types::FunctionType::params::h8b53276f79eb4240 (61 samples, 0.01%)</title><rect x="1064.2" y="341" width="0.1" height="15.0" fill="rgb(251,173,44)" rx="2" ry="2" />
<text x="1067.24" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h149d1c3b3b583e51 (253 samples, 0.04%)</title><rect x="203.2" y="309" width="0.5" height="15.0" fill="rgb(221,88,43)" rx="2" ry="2" />
<text x="206.23" y="319.5" ></text>
</g>
<g >
<title>core::ptr::_$LT$impl$u20$$BP$const$u20$T$GT$::align_offset::hf19defd5a0cbecad (59 samples, 0.01%)</title><rect x="334.7" y="165" width="0.1" height="15.0" fill="rgb(233,2,3)" rx="2" ry="2" />
<text x="337.68" y="175.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (59 samples, 0.01%)</title><rect x="505.2" y="261" width="0.1" height="15.0" fill="rgb(251,163,47)" rx="2" ry="2" />
<text x="508.22" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results::hc774d04d1992dff6 (103 samples, 0.01%)</title><rect x="15.8" y="341" width="0.2" height="15.0" fill="rgb(219,195,48)" rx="2" ry="2" />
<text x="18.80" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::sparse::SparseMap$LT$K$C$V$GT$::insert::h31013d437c52e258 (219 samples, 0.03%)</title><rect x="86.2" y="293" width="0.4" height="15.0" fill="rgb(238,172,23)" rx="2" ry="2" />
<text x="89.21" y="303.5" ></text>
</g>
<g >
<title>cranelift_bforest::pool::NodePool$LT$F$GT$::alloc_node::h8c4b85d6336313f8 (81 samples, 0.01%)</title><rect x="71.6" y="293" width="0.2" height="15.0" fill="rgb(227,45,5)" rx="2" ry="2" />
<text x="74.61" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::ebb_top::hfe56a550654953ca (117 samples, 0.02%)</title><rect x="1184.2" y="421" width="0.2" height="15.0" fill="rgb(217,47,46)" rx="2" ry="2" />
<text x="1187.18" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_ebb_param::h7014c3b1302a9186 (212 samples, 0.03%)</title><rect x="1160.2" y="405" width="0.4" height="15.0" fill="rgb(240,220,27)" rx="2" ry="2" />
<text x="1163.23" y="415.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (66 samples, 0.01%)</title><rect x="1169.8" y="309" width="0.1" height="15.0" fill="rgb(247,184,45)" rx="2" ry="2" />
<text x="1172.79" y="319.5" ></text>
</g>
<g >
<title>[perf-47374.map] (1,264 samples, 0.18%)</title><rect x="10.0" y="565" width="2.2" height="15.0" fill="rgb(235,227,2)" rx="2" ry="2" />
<text x="13.00" y="575.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h8388d76edb66302c (141 samples, 0.02%)</title><rect x="462.0" y="277" width="0.2" height="15.0" fill="rgb(211,223,7)" rx="2" ry="2" />
<text x="464.97" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::update_encoding::hf75ec520bc911a0c (162 samples, 0.02%)</title><rect x="1166.6" y="357" width="0.3" height="15.0" fill="rgb(230,150,50)" rx="2" ry="2" />
<text x="1169.61" y="367.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (89 samples, 0.01%)</title><rect x="92.0" y="309" width="0.1" height="15.0" fill="rgb(236,211,14)" rx="2" ry="2" />
<text x="95.00" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (74 samples, 0.01%)</title><rect x="71.3" y="309" width="0.1" height="15.0" fill="rgb(205,104,15)" rx="2" ry="2" />
<text x="74.28" y="319.5" ></text>
</g>
<g >
<title>find_vma (66 samples, 0.01%)</title><rect x="229.0" y="165" width="0.2" height="15.0" fill="rgb(233,32,21)" rx="2" ry="2" />
<text x="232.05" y="175.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::h3bdc4c7d98181bf9 (592,735 samples, 85.93%)</title><rect x="113.5" y="501" width="1013.9" height="15.0" fill="rgb(241,131,40)" rx="2" ry="2" />
<text x="116.48" y="511.5" >std::rt::lang_start_internal::h3bdc4c7d98181bf9</text>
</g>
<g >
<title>_int_malloc (3,047 samples, 0.44%)</title><rect x="418.7" y="213" width="5.2" height="15.0" fill="rgb(237,1,38)" rx="2" ry="2" />
<text x="421.74" y="223.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (72 samples, 0.01%)</title><rect x="1140.8" y="373" width="0.1" height="15.0" fill="rgb(214,61,0)" rx="2" ry="2" />
<text x="1143.81" y="383.5" ></text>
</g>
<g >
<title>_$LT$hashbrown..raw..RawTable$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hbbe73e1f74833d54 (106 samples, 0.02%)</title><rect x="212.9" y="245" width="0.2" height="15.0" fill="rgb(252,25,15)" rx="2" ry="2" />
<text x="215.88" y="255.5" ></text>
</g>
<g >
<title>__GI___clock_gettime (75 samples, 0.01%)</title><rect x="56.5" y="229" width="0.1" height="15.0" fill="rgb(221,222,34)" rx="2" ry="2" />
<text x="59.50" y="239.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::trampoline::Trampolines::new::h8a78526849fe89b9 (2,273 samples, 0.33%)</title><rect x="1178.3" y="485" width="3.9" height="15.0" fill="rgb(235,168,48)" rx="2" ry="2" />
<text x="1181.31" y="495.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (59 samples, 0.01%)</title><rect x="103.8" y="309" width="0.1" height="15.0" fill="rgb(232,57,32)" rx="2" ry="2" />
<text x="106.78" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::program_input_abi::h34ced53bbc43d7b1 (131 samples, 0.02%)</title><rect x="1182.9" y="421" width="0.2" height="15.0" fill="rgb(249,227,32)" rx="2" ry="2" />
<text x="1185.89" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (445 samples, 0.06%)</title><rect x="1171.8" y="405" width="0.8" height="15.0" fill="rgb(224,188,32)" rx="2" ry="2" />
<text x="1174.81" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments_mut::hd68ce32862759160 (69 samples, 0.01%)</title><rect x="88.4" y="293" width="0.1" height="15.0" fill="rgb(222,181,28)" rx="2" ry="2" />
<text x="91.36" y="303.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (69 samples, 0.01%)</title><rect x="1142.2" y="389" width="0.1" height="15.0" fill="rgb(230,216,29)" rx="2" ry="2" />
<text x="1145.21" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (104 samples, 0.02%)</title><rect x="1160.7" y="389" width="0.1" height="15.0" fill="rgb(215,229,4)" rx="2" ry="2" />
<text x="1163.65" y="399.5" ></text>
</g>
<g >
<title>_int_malloc (66 samples, 0.01%)</title><rect x="1158.9" y="357" width="0.1" height="15.0" fill="rgb(209,171,25)" rx="2" ry="2" />
<text x="1161.90" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (1,195 samples, 0.17%)</title><rect x="615.1" y="261" width="2.0" height="15.0" fill="rgb(227,70,26)" rx="2" ry="2" />
<text x="618.06" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (66 samples, 0.01%)</title><rect x="72.3" y="325" width="0.1" height="15.0" fill="rgb(254,21,33)" rx="2" ry="2" />
<text x="75.28" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (592,735 samples, 85.93%)</title><rect x="113.5" y="405" width="1013.9" height="15.0" fill="rgb(216,117,33)" rx="2" ry="2" />
<text x="116.48" y="415.5" >std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1</text>
</g>
<g >
<title>__memcpy_avx_unaligned (129 samples, 0.02%)</title><rect x="238.9" y="293" width="0.2" height="15.0" fill="rgb(225,26,49)" rx="2" ry="2" />
<text x="241.85" y="303.5" ></text>
</g>
<g >
<title>__rust_dealloc (96 samples, 0.01%)</title><rect x="473.1" y="261" width="0.2" height="15.0" fill="rgb(206,158,24)" rx="2" ry="2" />
<text x="476.10" y="271.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h946791f777187d09 (6,858 samples, 0.99%)</title><rect x="164.8" y="325" width="11.8" height="15.0" fill="rgb(239,67,46)" rx="2" ry="2" />
<text x="167.82" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (4,393 samples, 0.64%)</title><rect x="1075.1" y="309" width="7.5" height="15.0" fill="rgb(248,51,12)" rx="2" ry="2" />
<text x="1078.07" y="319.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (199 samples, 0.03%)</title><rect x="111.0" y="453" width="0.4" height="15.0" fill="rgb(238,24,48)" rx="2" ry="2" />
<text x="114.01" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::regmove::h2d2e8972aa228be7 (186 samples, 0.03%)</title><rect x="1182.6" y="421" width="0.3" height="15.0" fill="rgb(230,87,12)" rx="2" ry="2" />
<text x="1185.58" y="431.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::hb9f3d978c78fd9fa (94 samples, 0.01%)</title><rect x="541.9" y="293" width="0.2" height="15.0" fill="rgb(231,144,15)" rx="2" ry="2" />
<text x="544.92" y="303.5" ></text>
</g>
<g >
<title>_int_free (74 samples, 0.01%)</title><rect x="99.9" y="309" width="0.1" height="15.0" fill="rgb(252,112,0)" rx="2" ry="2" />
<text x="102.86" y="319.5" ></text>
</g>
<g >
<title>__rdl_alloc (220 samples, 0.03%)</title><rect x="376.0" y="261" width="0.4" height="15.0" fill="rgb(230,91,33)" rx="2" ry="2" />
<text x="379.03" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (252 samples, 0.04%)</title><rect x="1170.3" y="405" width="0.5" height="15.0" fill="rgb(220,96,1)" rx="2" ry="2" />
<text x="1173.32" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (83 samples, 0.01%)</title><rect x="1160.4" y="341" width="0.2" height="15.0" fill="rgb(238,41,34)" rx="2" ry="2" />
<text x="1163.44" y="351.5" ></text>
</g>
<g >
<title>_ZN3std4sync6rwlock15RwLock$LT$T$GT$4read17h11453e6976358159E.llvm.1752998059772103100 (643 samples, 0.09%)</title><rect x="111.7" y="357" width="1.1" height="15.0" fill="rgb(240,177,34)" rx="2" ry="2" />
<text x="114.68" y="367.5" ></text>
</g>
<g >
<title>parity_wasm::builder::export::ExportBuilder$LT$F$GT$::build::h02095bd4d5c8c197 (6,812 samples, 0.99%)</title><rect x="943.5" y="341" width="11.6" height="15.0" fill="rgb(212,148,11)" rx="2" ry="2" />
<text x="946.47" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (158 samples, 0.02%)</title><rect x="1177.4" y="325" width="0.2" height="15.0" fill="rgb(228,154,27)" rx="2" ry="2" />
<text x="1180.37" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h5580f8e1cb59a4c0 (33,949 samples, 4.92%)</title><rect x="118.5" y="341" width="58.1" height="15.0" fill="rgb(251,109,54)" rx="2" ry="2" />
<text x="121.48" y="351.5" >_$LT$c..</text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::next_function::hbef1985a853e1f1c (2,457 samples, 0.36%)</title><rect x="1158.7" y="437" width="4.2" height="15.0" fill="rgb(224,72,31)" rx="2" ry="2" />
<text x="1161.73" y="447.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h7d58c3dcd294aa1f (90 samples, 0.01%)</title><rect x="542.2" y="293" width="0.2" height="15.0" fill="rgb(229,132,22)" rx="2" ry="2" />
<text x="545.21" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (488 samples, 0.07%)</title><rect x="21.8" y="373" width="0.8" height="15.0" fill="rgb(235,155,21)" rx="2" ry="2" />
<text x="24.76" y="383.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (458 samples, 0.07%)</title><rect x="1177.1" y="341" width="0.8" height="15.0" fill="rgb(229,89,40)" rx="2" ry="2" />
<text x="1180.13" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (172 samples, 0.02%)</title><rect x="525.4" y="181" width="0.3" height="15.0" fill="rgb(229,79,24)" rx="2" ry="2" />
<text x="528.38" y="191.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::resolver::FuncResolverBuilder::new::h17aa56962b53b260 (2,541 samples, 0.37%)</title><rect x="106.4" y="517" width="4.3" height="15.0" fill="rgb(244,41,38)" rx="2" ry="2" />
<text x="109.38" y="527.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (206 samples, 0.03%)</title><rect x="1164.9" y="389" width="0.4" height="15.0" fill="rgb(215,14,21)" rx="2" ry="2" />
<text x="1167.91" y="399.5" ></text>
</g>
<g >
<title>wasmparser::operators_validator::OperatorValidator::process_operator::hf8ee49dfd4957437 (1,696 samples, 0.25%)</title><rect x="438.7" y="261" width="2.9" height="15.0" fill="rgb(212,49,21)" rx="2" ry="2" />
<text x="441.74" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (75 samples, 0.01%)</title><rect x="109.8" y="373" width="0.2" height="15.0" fill="rgb(230,93,2)" rx="2" ry="2" />
<text x="112.84" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (1,192 samples, 0.17%)</title><rect x="923.9" y="293" width="2.1" height="15.0" fill="rgb(219,173,29)" rx="2" ry="2" />
<text x="926.94" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::settings::builder::he3e45f2b2c57aae6 (111 samples, 0.02%)</title><rect x="1146.1" y="405" width="0.2" height="15.0" fill="rgb(207,66,52)" rx="2" ry="2" />
<text x="1149.09" y="415.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (73 samples, 0.01%)</title><rect x="1173.9" y="389" width="0.1" height="15.0" fill="rgb(219,41,44)" rx="2" ry="2" />
<text x="1176.90" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::copy::h9316b7c9ced6bd9c (228 samples, 0.03%)</title><rect x="95.5" y="309" width="0.4" height="15.0" fill="rgb(223,129,14)" rx="2" ry="2" />
<text x="98.55" y="319.5" ></text>
</g>
<g >
<title>rocinante::stoke::Superoptimizer::synthesize::h4ba34d72c5765be9 (1,074 samples, 0.16%)</title><rect x="111.6" y="469" width="1.9" height="15.0" fill="rgb(252,41,23)" rx="2" ry="2" />
<text x="114.63" y="479.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::live_value_tracker::LiveValueTracker::process_inst::hcd4ba6fb549516b2 (148 samples, 0.02%)</title><rect x="31.3" y="389" width="0.3" height="15.0" fill="rgb(234,197,34)" rx="2" ry="2" />
<text x="34.32" y="399.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (6,554 samples, 0.95%)</title><rect x="832.1" y="293" width="11.2" height="15.0" fill="rgb(249,33,10)" rx="2" ry="2" />
<text x="835.13" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (61 samples, 0.01%)</title><rect x="60.4" y="293" width="0.1" height="15.0" fill="rgb(238,98,29)" rx="2" ry="2" />
<text x="63.35" y="303.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (81 samples, 0.01%)</title><rect x="103.7" y="325" width="0.2" height="15.0" fill="rgb(223,112,26)" rx="2" ry="2" />
<text x="106.74" y="335.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::try_with_capacity::h7a6e6bae489d4fe9 (87 samples, 0.01%)</title><rect x="23.9" y="341" width="0.1" height="15.0" fill="rgb(236,31,4)" rx="2" ry="2" />
<text x="26.89" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::licm::do_licm::hb96edf4ef4d89000 (394 samples, 0.06%)</title><rect x="26.0" y="421" width="0.6" height="15.0" fill="rgb(229,78,16)" rx="2" ry="2" />
<text x="28.96" y="431.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (378 samples, 0.05%)</title><rect x="108.0" y="405" width="0.6" height="15.0" fill="rgb(238,227,8)" rx="2" ry="2" />
<text x="110.96" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,942 samples, 0.43%)</title><rect x="153.3" y="309" width="5.0" height="15.0" fill="rgb(242,9,24)" rx="2" ry="2" />
<text x="156.30" y="319.5" ></text>
</g>
<g >
<title>parity_wasm::builder::code::FuncBodyBuilder$LT$F$GT$::build::h43b3778966365e6f (4,321 samples, 0.63%)</title><rect x="899.4" y="341" width="7.4" height="15.0" fill="rgb(234,153,25)" rx="2" ry="2" />
<text x="902.41" y="351.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (339 samples, 0.05%)</title><rect x="1142.1" y="405" width="0.6" height="15.0" fill="rgb(238,201,47)" rx="2" ry="2" />
<text x="1145.15" y="415.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (60 samples, 0.01%)</title><rect x="78.5" y="245" width="0.1" height="15.0" fill="rgb(237,139,51)" rx="2" ry="2" />
<text x="81.52" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5,624 samples, 0.82%)</title><rect x="848.8" y="325" width="9.6" height="15.0" fill="rgb(208,101,11)" rx="2" ry="2" />
<text x="851.78" y="335.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 (813 samples, 0.12%)</title><rect x="1176.9" y="453" width="1.4" height="15.0" fill="rgb(238,127,17)" rx="2" ry="2" />
<text x="1179.92" y="463.5" ></text>
</g>
<g >
<title>parity_wasm::elements::export_entry::ExportEntry::new::h2b1d2cd4dda01b6d (125 samples, 0.02%)</title><rect x="954.8" y="325" width="0.2" height="15.0" fill="rgb(217,10,15)" rx="2" ry="2" />
<text x="957.82" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (215 samples, 0.03%)</title><rect x="71.8" y="309" width="0.3" height="15.0" fill="rgb(252,206,7)" rx="2" ry="2" />
<text x="74.75" y="319.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..IntoIter$LT$T$GT$$u20$as$u20$core..ops..drop..Drop$GT$::drop::hf37548cb648950a4 (269 samples, 0.04%)</title><rect x="697.7" y="293" width="0.4" height="15.0" fill="rgb(245,172,30)" rx="2" ry="2" />
<text x="700.67" y="303.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (115 samples, 0.02%)</title><rect x="104.7" y="325" width="0.2" height="15.0" fill="rgb(226,16,12)" rx="2" ry="2" />
<text x="107.66" y="335.5" ></text>
</g>
<g >
<title>_int_free (70 samples, 0.01%)</title><rect x="204.1" y="293" width="0.2" height="15.0" fill="rgb(215,93,25)" rx="2" ry="2" />
<text x="207.14" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::function::Function::import_signature::h2f01a817446550a5 (89 samples, 0.01%)</title><rect x="1143.7" y="421" width="0.2" height="15.0" fill="rgb(220,42,54)" rx="2" ry="2" />
<text x="1146.73" y="431.5" ></text>
</g>
<g >
<title>__libc_calloc (79 samples, 0.01%)</title><rect x="1169.1" y="389" width="0.2" height="15.0" fill="rgb(221,4,21)" rx="2" ry="2" />
<text x="1172.13" y="399.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 (244 samples, 0.04%)</title><rect x="1128.0" y="421" width="0.4" height="15.0" fill="rgb(239,21,39)" rx="2" ry="2" />
<text x="1131.03" y="431.5" ></text>
</g>
<g >
<title>change_protection_range (133 samples, 0.02%)</title><rect x="229.4" y="133" width="0.2" height="15.0" fill="rgb(231,123,23)" rx="2" ry="2" />
<text x="232.37" y="143.5" ></text>
</g>
<g >
<title>__rdl_alloc (72 samples, 0.01%)</title><rect x="153.1" y="165" width="0.1" height="15.0" fill="rgb(226,167,54)" rx="2" ry="2" />
<text x="156.11" y="175.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::enc_tables::lookup_enclist::h59f3ade65a5e8b68 (123 samples, 0.02%)</title><rect x="65.3" y="293" width="0.2" height="15.0" fill="rgb(221,41,27)" rx="2" ry="2" />
<text x="68.33" y="303.5" ></text>
</g>
<g >
<title>parity_wasm::elements::ops::Instructions::new::hd16213cb99346656 (187 samples, 0.03%)</title><rect x="1098.4" y="341" width="0.3" height="15.0" fill="rgb(229,7,49)" rx="2" ry="2" />
<text x="1101.37" y="351.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (80 samples, 0.01%)</title><rect x="1170.2" y="373" width="0.1" height="15.0" fill="rgb(234,89,23)" rx="2" ry="2" />
<text x="1173.19" y="383.5" ></text>
</g>
<g >
<title>__libc_calloc (79 samples, 0.01%)</title><rect x="68.1" y="325" width="0.2" height="15.0" fill="rgb(215,124,0)" rx="2" ry="2" />
<text x="71.14" y="335.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (96 samples, 0.01%)</title><rect x="1129.1" y="405" width="0.1" height="15.0" fill="rgb(237,201,15)" rx="2" ry="2" />
<text x="1132.05" y="415.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 (109 samples, 0.02%)</title><rect x="1140.8" y="405" width="0.1" height="15.0" fill="rgb(219,106,31)" rx="2" ry="2" />
<text x="1143.76" y="415.5" ></text>
</g>
<g >
<title>_int_realloc (421 samples, 0.06%)</title><rect x="620.6" y="261" width="0.7" height="15.0" fill="rgb(235,172,15)" rx="2" ry="2" />
<text x="623.62" y="271.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (61 samples, 0.01%)</title><rect x="104.6" y="325" width="0.1" height="15.0" fill="rgb(237,37,40)" rx="2" ry="2" />
<text x="107.55" y="335.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h77d562a39f7591d8 (78 samples, 0.01%)</title><rect x="41.4" y="357" width="0.1" height="15.0" fill="rgb(240,197,29)" rx="2" ry="2" />
<text x="44.40" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (63 samples, 0.01%)</title><rect x="1177.8" y="325" width="0.1" height="15.0" fill="rgb(218,118,33)" rx="2" ry="2" />
<text x="1180.78" y="335.5" ></text>
</g>
<g >
<title>get_page_from_freelist (116 samples, 0.02%)</title><rect x="225.5" y="133" width="0.2" height="15.0" fill="rgb(223,14,19)" rx="2" ry="2" />
<text x="228.49" y="143.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::finish_union_find::hfb24c09a580ec121 (480 samples, 0.07%)</title><rect x="79.8" y="309" width="0.9" height="15.0" fill="rgb(238,119,46)" rx="2" ry="2" />
<text x="82.85" y="319.5" ></text>
</g>
<g >
<title>all (689,804 samples, 100%)</title><rect x="10.0" y="597" width="1180.0" height="15.0" fill="rgb(228,60,11)" rx="2" ry="2" />
<text x="13.00" y="607.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (488 samples, 0.07%)</title><rect x="1169.5" y="405" width="0.8" height="15.0" fill="rgb(243,79,43)" rx="2" ry="2" />
<text x="1172.49" y="415.5" ></text>
</g>
<g >
<title>std::sync::rwlock::RwLock$LT$T$GT$::new::hbb62ff20d783c9ba (207 samples, 0.03%)</title><rect x="505.2" y="277" width="0.3" height="15.0" fill="rgb(247,80,35)" rx="2" ry="2" />
<text x="508.16" y="287.5" ></text>
</g>
<g >
<title>_int_realloc (62 samples, 0.01%)</title><rect x="1160.3" y="357" width="0.1" height="15.0" fill="rgb(236,23,5)" rx="2" ry="2" />
<text x="1163.27" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h08eed954cf0a33b4 (5,870 samples, 0.85%)</title><rect x="637.2" y="261" width="10.1" height="15.0" fill="rgb(207,108,13)" rx="2" ry="2" />
<text x="640.21" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (62 samples, 0.01%)</title><rect x="1178.9" y="405" width="0.1" height="15.0" fill="rgb(249,38,34)" rx="2" ry="2" />
<text x="1181.90" y="415.5" ></text>
</g>
<g >
<title>__libc_calloc (1,352 samples, 0.20%)</title><rect x="213.1" y="245" width="2.3" height="15.0" fill="rgb(228,220,48)" rx="2" ry="2" />
<text x="216.06" y="255.5" ></text>
</g>
<g >
<title>_int_malloc (80 samples, 0.01%)</title><rect x="527.4" y="293" width="0.1" height="15.0" fill="rgb(232,27,11)" rx="2" ry="2" />
<text x="530.36" y="303.5" ></text>
</g>
<g >
<title>_int_free (1,826 samples, 0.26%)</title><rect x="869.3" y="325" width="3.1" height="15.0" fill="rgb(218,70,24)" rx="2" ry="2" />
<text x="872.31" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::x86_pop::h5a280d9badba4b5b (264 samples, 0.04%)</title><rect x="15.5" y="357" width="0.5" height="15.0" fill="rgb(241,99,11)" rx="2" ry="2" />
<text x="18.52" y="367.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::Instance::dyn_func::h22490eb4f9ed4dfd (313 samples, 0.05%)</title><rect x="537.7" y="341" width="0.5" height="15.0" fill="rgb(234,54,47)" rx="2" ry="2" />
<text x="540.67" y="351.5" ></text>
</g>
<g >
<title>__rust_dealloc (60 samples, 0.01%)</title><rect x="1113.6" y="325" width="0.1" height="15.0" fill="rgb(230,5,40)" rx="2" ry="2" />
<text x="1116.63" y="335.5" ></text>
</g>
<g >
<title>memcpy_erms (124 samples, 0.02%)</title><rect x="1152.7" y="245" width="0.2" height="15.0" fill="rgb(234,219,43)" rx="2" ry="2" />
<text x="1155.69" y="255.5" ></text>
</g>
<g >
<title>std::panicking::try::do_call::h631c6408dfccc6f5 (592,735 samples, 85.93%)</title><rect x="113.5" y="437" width="1013.9" height="15.0" fill="rgb(210,24,12)" rx="2" ry="2" />
<text x="116.48" y="447.5" >std::panicking::try::do_call::h631c6408dfccc6f5</text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst_results_reusing::h668204b844797576 (96 samples, 0.01%)</title><rect x="36.6" y="357" width="0.1" height="15.0" fill="rgb(218,177,6)" rx="2" ry="2" />
<text x="39.56" y="367.5" ></text>
</g>
<g >
<title>_int_malloc (105 samples, 0.02%)</title><rect x="1182.7" y="325" width="0.2" height="15.0" fill="rgb(228,203,11)" rx="2" ry="2" />
<text x="1185.71" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (445 samples, 0.06%)</title><rect x="538.5" y="293" width="0.8" height="15.0" fill="rgb(240,132,10)" rx="2" ry="2" />
<text x="541.50" y="303.5" ></text>
</g>
<g >
<title>_int_realloc (10,280 samples, 1.49%)</title><rect x="1038.6" y="293" width="17.6" height="15.0" fill="rgb(211,124,26)" rx="2" ry="2" />
<text x="1041.58" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_free (113 samples, 0.02%)</title><rect x="108.6" y="389" width="0.2" height="15.0" fill="rgb(213,37,50)" rx="2" ry="2" />
<text x="111.62" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::solver::Solver::schedule_moves::h81b194ab48ac25d3 (329 samples, 0.05%)</title><rect x="86.6" y="309" width="0.5" height="15.0" fill="rgb(230,136,43)" rx="2" ry="2" />
<text x="89.58" y="319.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (12,453 samples, 1.81%)</title><rect x="877.4" y="341" width="21.3" height="15.0" fill="rgb(223,97,20)" rx="2" ry="2" />
<text x="880.36" y="351.5" >_..</text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::alloc::h33585d4e6aad0166 (62 samples, 0.01%)</title><rect x="158.4" y="293" width="0.1" height="15.0" fill="rgb(235,228,11)" rx="2" ry="2" />
<text x="161.38" y="303.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::h6a246e820911d2be (211 samples, 0.03%)</title><rect x="541.4" y="261" width="0.4" height="15.0" fill="rgb(218,136,2)" rx="2" ry="2" />
<text x="544.41" y="271.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (64 samples, 0.01%)</title><rect x="1174.0" y="373" width="0.1" height="15.0" fill="rgb(209,56,8)" rx="2" ry="2" />
<text x="1177.03" y="383.5" ></text>
</g>
<g >
<title>_$LT$rand..distributions..uniform..UniformInt$LT$u32$GT$$u20$as$u20$rand..distributions..uniform..UniformSampler$GT$::sample_single::hcb5014fd1d09a151 (68 samples, 0.01%)</title><rect x="1104.4" y="325" width="0.1" height="15.0" fill="rgb(236,24,12)" rx="2" ry="2" />
<text x="1107.41" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (873 samples, 0.13%)</title><rect x="841.5" y="245" width="1.5" height="15.0" fill="rgb(223,9,17)" rx="2" ry="2" />
<text x="844.50" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::ctrl_typevar::h001f83f02149e995 (102 samples, 0.01%)</title><rect x="52.9" y="277" width="0.2" height="15.0" fill="rgb(231,75,29)" rx="2" ry="2" />
<text x="55.93" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (78 samples, 0.01%)</title><rect x="69.3" y="277" width="0.1" height="15.0" fill="rgb(205,207,16)" rx="2" ry="2" />
<text x="72.31" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0c445b41f7c28667 (186 samples, 0.03%)</title><rect x="525.8" y="197" width="0.3" height="15.0" fill="rgb(239,164,43)" rx="2" ry="2" />
<text x="528.80" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::make_inst::h5a8de03d56461c59 (304 samples, 0.04%)</title><rect x="524.7" y="213" width="0.5" height="15.0" fill="rgb(243,71,9)" rx="2" ry="2" />
<text x="527.67" y="223.5" ></text>
</g>
<g >
<title>_int_free (94 samples, 0.01%)</title><rect x="194.0" y="309" width="0.2" height="15.0" fill="rgb(239,180,32)" rx="2" ry="2" />
<text x="197.00" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (73 samples, 0.01%)</title><rect x="1137.1" y="389" width="0.1" height="15.0" fill="rgb(217,63,0)" rx="2" ry="2" />
<text x="1140.11" y="399.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (218 samples, 0.03%)</title><rect x="110.0" y="421" width="0.4" height="15.0" fill="rgb(238,83,47)" rx="2" ry="2" />
<text x="113.04" y="431.5" ></text>
</g>
<g >
<title>hashbrown::raw::RawTable$LT$T$GT$::insert::h1ba60dad4ebe9e0f (107 samples, 0.02%)</title><rect x="500.5" y="245" width="0.2" height="15.0" fill="rgb(253,3,40)" rx="2" ry="2" />
<text x="503.47" y="255.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h514986f3b28de5ec (157 samples, 0.02%)</title><rect x="1158.8" y="389" width="0.2" height="15.0" fill="rgb(253,166,2)" rx="2" ry="2" />
<text x="1161.76" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,867 samples, 0.42%)</title><rect x="382.7" y="245" width="4.9" height="15.0" fill="rgb(226,56,27)" rx="2" ry="2" />
<text x="385.70" y="255.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (66 samples, 0.01%)</title><rect x="72.3" y="309" width="0.1" height="15.0" fill="rgb(245,127,43)" rx="2" ry="2" />
<text x="75.28" y="319.5" ></text>
</g>
<g >
<title>unmap_vmas (349 samples, 0.05%)</title><rect x="198.9" y="149" width="0.6" height="15.0" fill="rgb(245,180,53)" rx="2" ry="2" />
<text x="201.87" y="159.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (95 samples, 0.01%)</title><rect x="791.9" y="293" width="0.2" height="15.0" fill="rgb(237,163,10)" rx="2" ry="2" />
<text x="794.92" y="303.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5799aea0ed87e892 (3,232 samples, 0.47%)</title><rect x="914.9" y="325" width="5.5" height="15.0" fill="rgb(239,120,11)" rx="2" ry="2" />
<text x="917.90" y="335.5" ></text>
</g>
<g >
<title>parity_wasm::elements::section::ExportSection::entries::h7ccebe10244eb77e (180 samples, 0.03%)</title><rect x="931.9" y="325" width="0.3" height="15.0" fill="rgb(252,93,10)" rx="2" ry="2" />
<text x="934.87" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::relax_branches::hbf7d0399633288d4 (1,478 samples, 0.21%)</title><rect x="60.5" y="341" width="2.5" height="15.0" fill="rgb(250,145,3)" rx="2" ry="2" />
<text x="63.46" y="351.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (253 samples, 0.04%)</title><rect x="525.2" y="197" width="0.5" height="15.0" fill="rgb(243,161,0)" rx="2" ry="2" />
<text x="528.24" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (102 samples, 0.01%)</title><rect x="1143.5" y="405" width="0.1" height="15.0" fill="rgb(230,17,21)" rx="2" ry="2" />
<text x="1146.46" y="415.5" ></text>
</g>
<g >
<title>__rdl_dealloc (176 samples, 0.03%)</title><rect x="580.0" y="357" width="0.3" height="15.0" fill="rgb(241,224,17)" rx="2" ry="2" />
<text x="583.04" y="367.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (64 samples, 0.01%)</title><rect x="104.2" y="293" width="0.1" height="15.0" fill="rgb(235,44,17)" rx="2" ry="2" />
<text x="107.21" y="303.5" ></text>
</g>
<g >
<title>flush_tlb_mm_range (305 samples, 0.04%)</title><rect x="201.6" y="133" width="0.5" height="15.0" fill="rgb(224,32,1)" rx="2" ry="2" />
<text x="204.56" y="143.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (93 samples, 0.01%)</title><rect x="1174.7" y="549" width="0.1" height="15.0" fill="rgb(232,3,15)" rx="2" ry="2" />
<text x="1177.66" y="559.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coloring::Context::visit_inst::h157ddbfc9a018b2b (654 samples, 0.09%)</title><rect x="1179.1" y="421" width="1.1" height="15.0" fill="rgb(226,179,6)" rx="2" ry="2" />
<text x="1182.10" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::virtregs::VirtRegs::union::ha7e897024c5fb158 (391 samples, 0.06%)</title><rect x="80.7" y="309" width="0.6" height="15.0" fill="rgb(247,23,47)" rx="2" ry="2" />
<text x="83.67" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilderContext::new::h436ea5f82fe59916 (150 samples, 0.02%)</title><rect x="1162.4" y="405" width="0.2" height="15.0" fill="rgb(223,142,8)" rx="2" ry="2" />
<text x="1165.37" y="415.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::Coalescing::conventional_ssa::h25e21334b716fc0d (180 samples, 0.03%)</title><rect x="1178.8" y="421" width="0.3" height="15.0" fill="rgb(223,105,32)" rx="2" ry="2" />
<text x="1181.80" y="431.5" ></text>
</g>
<g >
<title>__GI___pthread_rwlock_unlock (233 samples, 0.03%)</title><rect x="501.6" y="277" width="0.4" height="15.0" fill="rgb(223,169,1)" rx="2" ry="2" />
<text x="504.61" y="287.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (653 samples, 0.09%)</title><rect x="1149.7" y="293" width="1.1" height="15.0" fill="rgb(246,113,25)" rx="2" ry="2" />
<text x="1152.72" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::insert_inst::h352d76f498d27496 (64 samples, 0.01%)</title><rect x="84.6" y="277" width="0.2" height="15.0" fill="rgb(208,165,51)" rx="2" ry="2" />
<text x="87.65" y="287.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..section..Section$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h99e337bc9a43ca35 (146,169 samples, 21.19%)</title><rect x="594.5" y="325" width="250.1" height="15.0" fill="rgb(236,184,7)" rx="2" ry="2" />
<text x="597.54" y="335.5" >_$LT$parity_wasm..elements..secti..</text>
</g>
<g >
<title>_int_realloc (94 samples, 0.01%)</title><rect x="525.9" y="165" width="0.2" height="15.0" fill="rgb(246,40,12)" rx="2" ry="2" />
<text x="528.94" y="175.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (83 samples, 0.01%)</title><rect x="1159.8" y="389" width="0.1" height="15.0" fill="rgb(213,76,8)" rx="2" ry="2" />
<text x="1162.79" y="399.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (74 samples, 0.01%)</title><rect x="97.4" y="277" width="0.1" height="15.0" fill="rgb(231,99,27)" rx="2" ry="2" />
<text x="100.41" y="287.5" ></text>
</g>
<g >
<title>_$LT$rocinante..exec..wasmer..Wasmer$u20$as$u20$rocinante..exec..Interpreter$GT$::eval_test_cases::hf136840e36843cad (1,074 samples, 0.16%)</title><rect x="111.6" y="453" width="1.9" height="15.0" fill="rgb(253,49,28)" rx="2" ry="2" />
<text x="114.63" y="463.5" ></text>
</g>
<g >
<title>_$LT$parity_wasm..elements..module..Module$u20$as$u20$parity_wasm..elements..Serialize$GT$::serialize::h1951080d9ca0b938 (160,537 samples, 23.27%)</title><rect x="583.8" y="341" width="274.6" height="15.0" fill="rgb(223,197,8)" rx="2" ry="2" />
<text x="586.78" y="351.5" >_$LT$parity_wasm..elements..module....</text>
</g>
<g >
<title>__GI___libc_realloc (69 samples, 0.01%)</title><rect x="1141.1" y="373" width="0.1" height="15.0" fill="rgb(213,56,17)" rx="2" ry="2" />
<text x="1144.08" y="383.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::prologue_epilogue::ha0b7830888e212f4 (961 samples, 0.14%)</title><rect x="1167.1" y="389" width="1.6" height="15.0" fill="rgb(251,134,34)" rx="2" ry="2" />
<text x="1170.08" y="399.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::with_capacity::h38af3dc50e2ce193 (2,867 samples, 0.42%)</title><rect x="148.4" y="245" width="4.9" height="15.0" fill="rgb(249,25,6)" rx="2" ry="2" />
<text x="151.39" y="255.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::parse::read_module::h3875b654eed5ef74 (18,414 samples, 2.67%)</title><rect x="495.8" y="293" width="31.5" height="15.0" fill="rgb(215,84,34)" rx="2" ry="2" />
<text x="498.81" y="303.5" >wa..</text>
</g>
<g >
<title>_int_malloc (1,139 samples, 0.17%)</title><rect x="151.2" y="149" width="1.9" height="15.0" fill="rgb(254,213,52)" rx="2" ry="2" />
<text x="154.16" y="159.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::compile::h9fe1ff28e88fe30f (1,369 samples, 0.20%)</title><rect x="1182.2" y="469" width="2.3" height="15.0" fill="rgb(205,14,1)" rx="2" ry="2" />
<text x="1185.20" y="479.5" ></text>
</g>
<g >
<title>__rust_realloc (64 samples, 0.01%)</title><rect x="1057.0" y="309" width="0.1" height="15.0" fill="rgb(219,226,12)" rx="2" ry="2" />
<text x="1060.01" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hae39d8e15426d2f6 (79 samples, 0.01%)</title><rect x="52.8" y="277" width="0.1" height="15.0" fill="rgb(228,185,12)" rx="2" ry="2" />
<text x="55.80" y="287.5" ></text>
</g>
<g >
<title>__rdl_realloc (357 samples, 0.05%)</title><rect x="781.8" y="245" width="0.6" height="15.0" fill="rgb(208,158,49)" rx="2" ry="2" />
<text x="784.83" y="255.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (63 samples, 0.01%)</title><rect x="88.1" y="293" width="0.1" height="15.0" fill="rgb(239,111,2)" rx="2" ry="2" />
<text x="91.10" y="303.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::legalize::h3be573a3855dd690 (125 samples, 0.02%)</title><rect x="1176.9" y="357" width="0.2" height="15.0" fill="rgb(219,143,16)" rx="2" ry="2" />
<text x="1179.92" y="367.5" ></text>
</g>
<g >
<title>hashbrown::map::HashMap$LT$K$C$V$C$S$GT$::contains_key::hc2d70e289ae6b120 (2,814 samples, 0.41%)</title><rect x="388.6" y="261" width="4.8" height="15.0" fill="rgb(238,71,18)" rx="2" ry="2" />
<text x="391.63" y="271.5" ></text>
</g>
<g >
<title>__handle_mm_fault (751 samples, 0.11%)</title><rect x="224.9" y="181" width="1.3" height="15.0" fill="rgb(221,161,1)" rx="2" ry="2" />
<text x="227.92" y="191.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::hf2a016039d5668ca (124 samples, 0.02%)</title><rect x="963.3" y="325" width="0.2" height="15.0" fill="rgb(209,186,30)" rx="2" ry="2" />
<text x="966.31" y="335.5" ></text>
</g>
<g >
<title>mem_cgroup_uncharge_list (165 samples, 0.02%)</title><rect x="197.9" y="69" width="0.3" height="15.0" fill="rgb(225,75,13)" rx="2" ry="2" />
<text x="200.88" y="79.5" ></text>
</g>
<g >
<title>__GI___libc_free (252 samples, 0.04%)</title><rect x="222.3" y="261" width="0.5" height="15.0" fill="rgb(244,198,42)" rx="2" ry="2" />
<text x="225.33" y="271.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::sig_registry::SigRegistry::lookup_signature_ref::hb64a156585a7c92a (306 samples, 0.04%)</title><rect x="541.2" y="277" width="0.6" height="15.0" fill="rgb(216,130,24)" rx="2" ry="2" />
<text x="544.24" y="287.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 (102 samples, 0.01%)</title><rect x="95.6" y="293" width="0.2" height="15.0" fill="rgb(217,192,20)" rx="2" ry="2" />
<text x="98.60" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (188,719 samples, 27.36%)</title><rect x="206.3" y="325" width="322.9" height="15.0" fill="rgb(206,69,18)" rx="2" ry="2" />
<text x="209.34" y="335.5" >wasmer_runtime_core::compile_with_config::h..</text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::hash::h6390f709ac90b71c (153 samples, 0.02%)</title><rect x="102.7" y="309" width="0.3" height="15.0" fill="rgb(227,120,49)" rx="2" ry="2" />
<text x="105.70" y="319.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (59 samples, 0.01%)</title><rect x="73.7" y="277" width="0.1" height="15.0" fill="rgb(207,226,47)" rx="2" ry="2" />
<text x="76.72" y="287.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (128 samples, 0.02%)</title><rect x="1160.4" y="389" width="0.2" height="15.0" fill="rgb(220,68,4)" rx="2" ry="2" />
<text x="1163.38" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::binemit::emit_inst::h4f026cde2beb5a85 (1,227 samples, 0.18%)</title><rect x="1137.7" y="389" width="2.1" height="15.0" fill="rgb(210,50,34)" rx="2" ry="2" />
<text x="1140.69" y="399.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (78 samples, 0.01%)</title><rect x="69.3" y="293" width="0.1" height="15.0" fill="rgb(241,155,14)" rx="2" ry="2" />
<text x="72.31" y="303.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen9flowgraph16ControlFlowGraph11compute_ebb17he662711fe9d10399E.llvm.15195122248153170019 (86 samples, 0.01%)</title><rect x="54.1" y="245" width="0.1" height="15.0" fill="rgb(208,182,26)" rx="2" ry="2" />
<text x="57.08" y="255.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 (8,934 samples, 1.30%)</title><rect x="632.3" y="277" width="15.3" height="15.0" fill="rgb(219,184,12)" rx="2" ry="2" />
<text x="635.33" y="287.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (64 samples, 0.01%)</title><rect x="104.2" y="325" width="0.1" height="15.0" fill="rgb(234,169,24)" rx="2" ry="2" />
<text x="107.21" y="335.5" ></text>
</g>
<g >
<title>_int_malloc (93 samples, 0.01%)</title><rect x="1179.6" y="341" width="0.1" height="15.0" fill="rgb(233,97,0)" rx="2" ry="2" />
<text x="1182.57" y="351.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h767229c0557115cd (103 samples, 0.01%)</title><rect x="1128.8" y="405" width="0.2" height="15.0" fill="rgb(212,77,48)" rx="2" ry="2" />
<text x="1131.82" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (174 samples, 0.03%)</title><rect x="1161.1" y="373" width="0.3" height="15.0" fill="rgb(245,121,28)" rx="2" ry="2" />
<text x="1164.15" y="383.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h500ef385b8747b29 (266 samples, 0.04%)</title><rect x="80.8" y="293" width="0.4" height="15.0" fill="rgb(253,120,0)" rx="2" ry="2" />
<text x="83.79" y="303.5" ></text>
</g>
<g >
<title>__rdl_realloc (171 samples, 0.02%)</title><rect x="843.0" y="277" width="0.3" height="15.0" fill="rgb(248,225,49)" rx="2" ry="2" />
<text x="845.99" y="287.5" ></text>
</g>
<g >
<title>_int_free (230 samples, 0.03%)</title><rect x="1134.6" y="357" width="0.4" height="15.0" fill="rgb(251,114,50)" rx="2" ry="2" />
<text x="1137.60" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (106 samples, 0.02%)</title><rect x="1181.4" y="389" width="0.1" height="15.0" fill="rgb(223,222,30)" rx="2" ry="2" />
<text x="1184.36" y="399.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,827 samples, 0.41%)</title><rect x="915.4" y="309" width="4.8" height="15.0" fill="rgb(242,44,1)" rx="2" ry="2" />
<text x="918.39" y="319.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd7b91bbd77a11ec1 (92 samples, 0.01%)</title><rect x="212.3" y="261" width="0.2" height="15.0" fill="rgb(207,70,15)" rx="2" ry="2" />
<text x="215.34" y="271.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (220 samples, 0.03%)</title><rect x="58.9" y="277" width="0.4" height="15.0" fill="rgb(209,219,5)" rx="2" ry="2" />
<text x="61.94" y="287.5" ></text>
</g>
<g >
<title>vm_munmap (1,186 samples, 0.17%)</title><rect x="200.4" y="229" width="2.0" height="15.0" fill="rgb(212,63,21)" rx="2" ry="2" />
<text x="203.40" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (1,151 samples, 0.17%)</title><rect x="1062.1" y="309" width="2.0" height="15.0" fill="rgb(219,58,2)" rx="2" ry="2" />
<text x="1065.11" y="319.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen8regalloc9diversion13RegDiversions6divert17h0dfdaeead6ef2c57E.llvm.6468024634034730254 (314 samples, 0.05%)</title><rect x="29.7" y="389" width="0.5" height="15.0" fill="rgb(244,169,13)" rx="2" ry="2" />
<text x="32.70" y="399.5" ></text>
</g>
<g >
<title>perf_event_mmap_output (230 samples, 0.03%)</title><rect x="230.5" y="101" width="0.4" height="15.0" fill="rgb(206,186,17)" rx="2" ry="2" />
<text x="233.53" y="111.5" ></text>
</g>
<g >
<title>__rdl_alloc (70 samples, 0.01%)</title><rect x="1056.2" y="309" width="0.1" height="15.0" fill="rgb(248,99,12)" rx="2" ry="2" />
<text x="1059.17" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::get_or_create::h5a0d21740424a6d5 (370 samples, 0.05%)</title><rect x="1180.2" y="405" width="0.7" height="15.0" fill="rgb(237,47,22)" rx="2" ry="2" />
<text x="1183.22" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hc8a0fc8526f8c69b (111 samples, 0.02%)</title><rect x="1179.5" y="389" width="0.2" height="15.0" fill="rgb(225,56,22)" rx="2" ry="2" />
<text x="1182.54" y="399.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hb35dbfa927a2ec4a (263 samples, 0.04%)</title><rect x="204.0" y="325" width="0.5" height="15.0" fill="rgb(214,28,50)" rx="2" ry="2" />
<text x="207.04" y="335.5" ></text>
</g>
<g >
<title>rocinante::stoke::CandidateFunc::get_rand_instr::hc7b064ad4dbfcee7 (10,962 samples, 1.59%)</title><rect x="1104.9" y="341" width="18.8" height="15.0" fill="rgb(251,79,40)" rx="2" ry="2" />
<text x="1107.94" y="351.5" ></text>
</g>
<g >
<title>_int_realloc (299 samples, 0.04%)</title><rect x="89.6" y="245" width="0.5" height="15.0" fill="rgb(220,3,39)" rx="2" ry="2" />
<text x="92.55" y="255.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (8,268 samples, 1.20%)</title><rect x="299.5" y="245" width="14.1" height="15.0" fill="rgb(227,13,29)" rx="2" ry="2" />
<text x="302.48" y="255.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h5e34cfad90a6ce21 (80 samples, 0.01%)</title><rect x="76.7" y="325" width="0.2" height="15.0" fill="rgb(236,164,24)" rx="2" ry="2" />
<text x="79.75" y="335.5" ></text>
</g>
<g >
<title>_$LT$core..iter..adapters..Cloned$LT$I$GT$$u20$as$u20$core..iter..traits..iterator..Iterator$GT$::fold::h70a7f85ebaece8d1 (2,133 samples, 0.31%)</title><rect x="130.5" y="277" width="3.7" height="15.0" fill="rgb(252,215,20)" rx="2" ry="2" />
<text x="133.53" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (64 samples, 0.01%)</title><rect x="1174.0" y="357" width="0.1" height="15.0" fill="rgb(234,229,17)" rx="2" ry="2" />
<text x="1177.03" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::split::split_ebb_params::he3edb3e49d817505 (61 samples, 0.01%)</title><rect x="56.2" y="309" width="0.1" height="15.0" fill="rgb(234,8,1)" rx="2" ry="2" />
<text x="59.16" y="319.5" ></text>
</g>
<g >
<title>wasmer_clif_backend::signal::unix::do_unwind::h30a2256d0dd1db30 (227 samples, 0.03%)</title><rect x="10.7" y="517" width="0.4" height="15.0" fill="rgb(236,128,14)" rx="2" ry="2" />
<text x="13.66" y="527.5" ></text>
</g>
<g >
<title>_ZN4rand3Rng3gen17h7eb46441d353f94aE.llvm.9971861265714738260 (72 samples, 0.01%)</title><rect x="1124.5" y="325" width="0.2" height="15.0" fill="rgb(221,120,51)" rx="2" ry="2" />
<text x="1127.54" y="335.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (1,228 samples, 0.18%)</title><rect x="1174.8" y="469" width="2.1" height="15.0" fill="rgb(243,72,40)" rx="2" ry="2" />
<text x="1177.81" y="479.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_func_type::h0cd44550c784004e (101 samples, 0.01%)</title><rect x="498.8" y="245" width="0.2" height="15.0" fill="rgb(215,77,37)" rx="2" ry="2" />
<text x="501.78" y="255.5" ></text>
</g>
<g >
<title>kmem_cache_alloc (63 samples, 0.01%)</title><rect x="1154.0" y="277" width="0.1" height="15.0" fill="rgb(221,180,50)" rx="2" ry="2" />
<text x="1156.99" y="287.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::coalescing::DomForest::push_node::h7bf50934d429ea56 (83 samples, 0.01%)</title><rect x="1177.6" y="325" width="0.2" height="15.0" fill="rgb(231,64,39)" rx="2" ry="2" />
<text x="1180.64" y="335.5" ></text>
</g>
<g >
<title>core::str::from_utf8::h5960e424c2aef74c (1,073 samples, 0.16%)</title><rect x="332.9" y="197" width="1.9" height="15.0" fill="rgb(229,183,25)" rx="2" ry="2" />
<text x="335.94" y="207.5" ></text>
</g>
<g >
<title>cranelift_entity::list::EntityList$LT$T$GT$::push::h051541d55e7ee057 (238 samples, 0.03%)</title><rect x="52.0" y="293" width="0.4" height="15.0" fill="rgb(206,215,28)" rx="2" ry="2" />
<text x="54.98" y="303.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::compile_with_config::h2793fe8de72c0bc3 (1,435 samples, 0.21%)</title><rect x="1182.2" y="549" width="2.5" height="15.0" fill="rgb(243,220,39)" rx="2" ry="2" />
<text x="1185.20" y="559.5" ></text>
</g>
<g >
<title>__GI___libc_free (102 samples, 0.01%)</title><rect x="211.2" y="261" width="0.1" height="15.0" fill="rgb(217,192,15)" rx="2" ry="2" />
<text x="214.15" y="271.5" ></text>
</g>
<g >
<title>sys_mprotect (1,862 samples, 0.27%)</title><rect x="228.9" y="197" width="3.2" height="15.0" fill="rgb(205,54,9)" rx="2" ry="2" />
<text x="231.87" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::compute::hdce42828fa3e59cb (385 samples, 0.06%)</title><rect x="73.2" y="325" width="0.6" height="15.0" fill="rgb(248,1,23)" rx="2" ry="2" />
<text x="76.16" y="335.5" ></text>
</g>
<g >
<title>sys_mprotect (2,372 samples, 0.34%)</title><rect x="216.5" y="197" width="4.1" height="15.0" fill="rgb(211,104,39)" rx="2" ry="2" />
<text x="219.50" y="207.5" ></text>
</g>
<g >
<title>cranelift_codegen::context::Context::shrink_instructions::he0b1678d1727ad37 (2,571 samples, 0.37%)</title><rect x="63.0" y="341" width="4.4" height="15.0" fill="rgb(238,156,3)" rx="2" ry="2" />
<text x="65.99" y="351.5" ></text>
</g>
<g >
<title>__GI___libc_free (82 samples, 0.01%)</title><rect x="501.2" y="277" width="0.1" height="15.0" fill="rgb(237,188,30)" rx="2" ry="2" />
<text x="504.16" y="287.5" ></text>
</g>
<g >
<title>std::rt::lang_start_internal::_$u7b$$u7b$closure$u7d$$u7d$::h6ea535ec5c50fc3e (163 samples, 0.02%)</title><rect x="1174.4" y="533" width="0.3" height="15.0" fill="rgb(245,150,7)" rx="2" ry="2" />
<text x="1177.38" y="543.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (414 samples, 0.06%)</title><rect x="414.3" y="245" width="0.7" height="15.0" fill="rgb(210,114,35)" rx="2" ry="2" />
<text x="417.31" y="255.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::analyze_branch::h1af3091a9a9e30c3 (91 samples, 0.01%)</title><rect x="48.4" y="325" width="0.1" height="15.0" fill="rgb(236,43,9)" rx="2" ry="2" />
<text x="51.39" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::instructions::InstructionData::arguments::h70ecdef19e20b02a (99 samples, 0.01%)</title><rect x="66.9" y="293" width="0.2" height="15.0" fill="rgb(218,124,20)" rx="2" ry="2" />
<text x="69.92" y="303.5" ></text>
</g>
<g >
<title>_$LT$wasmer_clif_backend..code..CraneliftModuleCodeGenerator$u20$as$u20$wasmer_runtime_core..codegen..ModuleCodeGenerator$LT$wasmer_clif_backend..code..CraneliftFunctionCodeGenerator$C$wasmer_clif_backend..signal..Caller$C$wasmer_clif_backend..code..CodegenError$GT$$GT$::finalize::hbd8b1f6eb4859c5a (16,049 samples, 2.33%)</title><rect x="12.2" y="485" width="27.4" height="15.0" fill="rgb(219,141,50)" rx="2" ry="2" />
<text x="15.17" y="495.5" >_..</text>
</g>
<g >
<title>__memcmp_sse4_1 (66 samples, 0.01%)</title><rect x="537.9" y="309" width="0.1" height="15.0" fill="rgb(242,131,15)" rx="2" ry="2" />
<text x="540.89" y="319.5" ></text>
</g>
<g >
<title>page_counter_uncharge (62 samples, 0.01%)</title><rect x="198.0" y="37" width="0.1" height="15.0" fill="rgb(251,160,36)" rx="2" ry="2" />
<text x="201.04" y="47.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::clear::h864e5fe24548dc9f (189 samples, 0.03%)</title><rect x="1136.6" y="389" width="0.3" height="15.0" fill="rgb(228,151,10)" rx="2" ry="2" />
<text x="1139.57" y="399.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (151 samples, 0.02%)</title><rect x="200.8" y="165" width="0.2" height="15.0" fill="rgb(205,162,12)" rx="2" ry="2" />
<text x="203.76" y="175.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (61 samples, 0.01%)</title><rect x="35.1" y="357" width="0.1" height="15.0" fill="rgb(228,33,15)" rx="2" ry="2" />
<text x="38.13" y="367.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hea3f43976955e3d2 (64 samples, 0.01%)</title><rect x="32.2" y="373" width="0.1" height="15.0" fill="rgb(252,216,52)" rx="2" ry="2" />
<text x="35.22" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (60 samples, 0.01%)</title><rect x="500.0" y="245" width="0.1" height="15.0" fill="rgb(213,17,38)" rx="2" ry="2" />
<text x="502.98" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_free (144 samples, 0.02%)</title><rect x="1136.6" y="373" width="0.3" height="15.0" fill="rgb(222,123,12)" rx="2" ry="2" />
<text x="1139.63" y="383.5" ></text>
</g>
<g >
<title>_int_malloc (307 samples, 0.04%)</title><rect x="440.7" y="213" width="0.5" height="15.0" fill="rgb(214,79,18)" rx="2" ry="2" />
<text x="443.69" y="223.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..timing..details..TimingToken$u20$as$u20$core..ops..drop..Drop$GT$::drop::h1b19c2a93ee0a091 (84 samples, 0.01%)</title><rect x="1137.1" y="405" width="0.1" height="15.0" fill="rgb(223,40,30)" rx="2" ry="2" />
<text x="1140.09" y="415.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h73c832352071193f (77 samples, 0.01%)</title><rect x="1143.7" y="405" width="0.2" height="15.0" fill="rgb(215,129,17)" rx="2" ry="2" />
<text x="1146.75" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (146 samples, 0.02%)</title><rect x="52.1" y="245" width="0.3" height="15.0" fill="rgb(240,184,27)" rx="2" ry="2" />
<text x="55.11" y="255.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::ensure_inserted_ebb::h850b064f3ceb72aa (82 samples, 0.01%)</title><rect x="1161.8" y="421" width="0.1" height="15.0" fill="rgb(213,142,1)" rx="2" ry="2" />
<text x="1164.78" y="431.5" ></text>
</g>
<g >
<title>unmap_region (1,798 samples, 0.26%)</title><rect x="196.4" y="165" width="3.1" height="15.0" fill="rgb(233,183,15)" rx="2" ry="2" />
<text x="199.39" y="175.5" ></text>
</g>
<g >
<title>sys_munmap (2,703 samples, 0.39%)</title><rect x="195.1" y="213" width="4.6" height="15.0" fill="rgb(253,63,39)" rx="2" ry="2" />
<text x="198.06" 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::ha097f032d146c0c5 (20,443 samples, 2.96%)</title><rect x="622.1" y="309" width="35.0" height="15.0" fill="rgb(209,223,45)" rx="2" ry="2" />
<text x="625.14" y="319.5" >_$..</text>
</g>
<g >
<title>__GI___libc_malloc (2,864 samples, 0.42%)</title><rect x="926.8" y="309" width="4.9" height="15.0" fill="rgb(241,190,33)" rx="2" ry="2" />
<text x="929.77" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::branch_splitting::run::hbbb4e417c98f8376 (182 samples, 0.03%)</title><rect x="27.0" y="405" width="0.4" height="15.0" fill="rgb(214,16,20)" rx="2" ry="2" />
<text x="30.04" y="415.5" ></text>
</g>
<g >
<title>__GI___libc_free (7,702 samples, 1.12%)</title><rect x="816.6" y="293" width="13.2" height="15.0" fill="rgb(206,120,45)" rx="2" ry="2" />
<text x="819.64" y="303.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (60 samples, 0.01%)</title><rect x="1161.8" y="373" width="0.1" height="15.0" fill="rgb(239,115,3)" rx="2" ry="2" />
<text x="1164.79" y="383.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$4free17hccc32c4538eef572E.llvm.776987249141506950 (73 samples, 0.01%)</title><rect x="1142.3" y="373" width="0.2" height="15.0" fill="rgb(228,183,5)" rx="2" ry="2" />
<text x="1145.35" y="383.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (69 samples, 0.01%)</title><rect x="99.5" y="309" width="0.1" height="15.0" fill="rgb(210,61,37)" rx="2" ry="2" />
<text x="102.52" y="319.5" ></text>
</g>
<g >
<title>_int_free (112 samples, 0.02%)</title><rect x="203.4" y="277" width="0.2" height="15.0" fill="rgb(205,125,47)" rx="2" ry="2" />
<text x="206.38" y="287.5" ></text>
</g>
<g >
<title>__rdl_realloc (207 samples, 0.03%)</title><rect x="1097.3" y="325" width="0.4" height="15.0" fill="rgb(219,126,50)" rx="2" ry="2" />
<text x="1100.34" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::legalizer::boundary::legalize_signatures::h52a202846af65f87 (1,040 samples, 0.15%)</title><rect x="50.6" y="309" width="1.8" height="15.0" fill="rgb(226,229,28)" rx="2" ry="2" />
<text x="53.61" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::pressure::Pressure::take_transient::h55ed3b6faf9ff3f9 (62 samples, 0.01%)</title><rect x="97.9" y="309" width="0.1" height="15.0" fill="rgb(234,90,43)" rx="2" ry="2" />
<text x="100.94" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTree::compute::hb8295076ad170b26 (387 samples, 0.06%)</title><rect x="72.5" y="325" width="0.7" height="15.0" fill="rgb(237,175,1)" rx="2" ry="2" />
<text x="75.50" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::dfg::DataFlowGraph::append_result::h44f9432a950b5ad1 (62 samples, 0.01%)</title><rect x="15.9" y="325" width="0.1" height="15.0" fill="rgb(208,15,49)" rx="2" ry="2" />
<text x="18.86" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::lookup::h7750611a3eef7478 (88 samples, 0.01%)</title><rect x="237.6" y="261" width="0.1" height="15.0" fill="rgb(235,222,13)" rx="2" ry="2" />
<text x="240.59" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::constraints::RecipeConstraints::satisfied::h33556c8a9b1bba6e (363 samples, 0.05%)</title><rect x="64.4" y="293" width="0.6" height="15.0" fill="rgb(245,52,4)" rx="2" ry="2" />
<text x="67.36" y="303.5" ></text>
</g>
<g >
<title>wasmparser::binary_reader::BinaryReader::read_string::hc015eb960d8c9fac (1,696 samples, 0.25%)</title><rect x="331.9" y="213" width="2.9" height="15.0" fill="rgb(248,55,49)" rx="2" ry="2" />
<text x="334.88" y="223.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (60 samples, 0.01%)</title><rect x="73.8" y="325" width="0.1" height="15.0" fill="rgb(214,208,35)" rx="2" ry="2" />
<text x="76.82" y="335.5" ></text>
</g>
<g >
<title>perf_iterate_sb (728 samples, 0.11%)</title><rect x="229.7" y="133" width="1.3" height="15.0" fill="rgb(225,43,48)" rx="2" ry="2" />
<text x="232.71" y="143.5" ></text>
</g>
<g >
<title>hashbrown::rustc_entry::_$LT$impl$u20$hashbrown..map..HashMap$LT$K$C$V$C$S$GT$$GT$::rustc_entry::h3e9fa4d2f81daded (89 samples, 0.01%)</title><rect x="541.1" y="261" width="0.1" height="15.0" fill="rgb(216,36,15)" rx="2" ry="2" />
<text x="544.09" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (111 samples, 0.02%)</title><rect x="148.2" y="181" width="0.2" height="15.0" fill="rgb(246,207,37)" rx="2" ry="2" />
<text x="151.20" y="191.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (67 samples, 0.01%)</title><rect x="43.5" y="341" width="0.1" height="15.0" fill="rgb(240,154,47)" rx="2" ry="2" />
<text x="46.51" y="351.5" ></text>
</g>
<g >
<title>_int_malloc (83 samples, 0.01%)</title><rect x="1183.9" y="309" width="0.2" height="15.0" fill="rgb(242,214,34)" rx="2" ry="2" />
<text x="1186.92" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::layout::Layout::append_inst::h4a2fb37740cc80ba (174 samples, 0.03%)</title><rect x="1128.1" y="405" width="0.3" height="15.0" fill="rgb(250,106,22)" rx="2" ry="2" />
<text x="1131.11" y="415.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (768 samples, 0.11%)</title><rect x="961.6" y="325" width="1.3" height="15.0" fill="rgb(239,92,38)" rx="2" ry="2" />
<text x="964.62" y="335.5" ></text>
</g>
<g >
<title>vma_link (70 samples, 0.01%)</title><rect x="1158.3" y="277" width="0.1" height="15.0" fill="rgb(223,94,50)" rx="2" ry="2" />
<text x="1161.27" y="287.5" ></text>
</g>
<g >
<title>_ZN17cranelift_codegen24redundant_reload_remover22RedundantReloadRemover37do_redundant_fill_removal_on_function17h0915e7840d7db9a4E.llvm.15195122248153170019 (150 samples, 0.02%)</title><rect x="12.2" y="421" width="0.2" height="15.0" fill="rgb(213,88,12)" rx="2" ry="2" />
<text x="15.17" y="431.5" ></text>
</g>
<g >
<title>__memmove_avx_unaligned (73 samples, 0.01%)</title><rect x="1175.5" y="309" width="0.2" height="15.0" fill="rgb(251,46,12)" rx="2" ry="2" />
<text x="1178.53" y="319.5" ></text>
</g>
<g >
<title>get_signal (73 samples, 0.01%)</title><rect x="12.0" y="485" width="0.1" height="15.0" fill="rgb(224,17,14)" rx="2" ry="2" />
<text x="15.01" y="495.5" ></text>
</g>
<g >
<title>std::sys::unix::alloc::_$LT$impl$u20$core..alloc..GlobalAlloc$u20$for$u20$std..alloc..System$GT$::realloc::h1ccdfac189eaabae (381 samples, 0.06%)</title><rect x="751.7" y="213" width="0.7" height="15.0" fill="rgb(205,215,17)" rx="2" ry="2" />
<text x="754.72" y="223.5" ></text>
</g>
<g >
<title>_int_realloc (66 samples, 0.01%)</title><rect x="1142.6" y="325" width="0.1" height="15.0" fill="rgb(239,86,23)" rx="2" ry="2" />
<text x="1145.56" y="335.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (1,823 samples, 0.26%)</title><rect x="1155.5" y="389" width="3.1" height="15.0" fill="rgb(244,184,13)" rx="2" ry="2" />
<text x="1158.52" y="399.5" ></text>
</g>
<g >
<title>cranelift_codegen::dominator_tree::DominatorTreePreorder::compute::hb821b7ecbf347c37 (279 samples, 0.04%)</title><rect x="78.8" y="309" width="0.5" height="15.0" fill="rgb(240,69,4)" rx="2" ry="2" />
<text x="81.83" y="319.5" ></text>
</g>
<g >
<title>unmap_page_range (87 samples, 0.01%)</title><rect x="202.2" y="149" width="0.1" height="15.0" fill="rgb(248,21,24)" rx="2" ry="2" />
<text x="205.16" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (73 samples, 0.01%)</title><rect x="90.1" y="261" width="0.2" height="15.0" fill="rgb(240,2,25)" rx="2" ry="2" />
<text x="93.13" y="271.5" ></text>
</g>
<g >
<title>cranelift_codegen::constant_hash::probe::hd04e9b03fd50ee53 (170 samples, 0.02%)</title><rect x="1144.8" y="373" width="0.3" height="15.0" fill="rgb(251,187,2)" rx="2" ry="2" />
<text x="1147.81" y="383.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h5fc94b05e4d4a2c3 (187 samples, 0.03%)</title><rect x="41.0" y="357" width="0.3" height="15.0" fill="rgb(214,226,2)" rx="2" ry="2" />
<text x="43.98" y="367.5" ></text>
</g>
<g >
<title>wasmer_clif_fork_frontend::frontend::FunctionBuilder::append_ebb_params_for_function_params::h07f799cc3d985229 (259 samples, 0.04%)</title><rect x="1159.8" y="421" width="0.4" height="15.0" fill="rgb(249,209,38)" rx="2" ry="2" />
<text x="1162.79" y="431.5" ></text>
</g>
<g >
<title>_int_realloc (156 samples, 0.02%)</title><rect x="59.0" y="245" width="0.3" height="15.0" fill="rgb(209,16,48)" rx="2" ry="2" />
<text x="62.04" y="255.5" ></text>
</g>
<g >
<title>swapgs_restore_regs_and_return_to_usermode (298 samples, 0.04%)</title><rect x="11.7" y="549" width="0.5" height="15.0" fill="rgb(228,20,27)" rx="2" ry="2" />
<text x="14.65" y="559.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,273 samples, 0.33%)</title><rect x="1178.3" y="517" width="3.9" height="15.0" fill="rgb(221,125,35)" rx="2" ry="2" />
<text x="1181.31" y="527.5" ></text>
</g>
<g >
<title>__rdl_alloc (66 samples, 0.01%)</title><rect x="410.5" y="213" width="0.1" height="15.0" fill="rgb(210,139,22)" rx="2" ry="2" />
<text x="413.53" y="223.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::liveness::Liveness::compute::h5fc2c46ff15ebd51 (2,039 samples, 0.30%)</title><rect x="87.5" y="325" width="3.5" height="15.0" fill="rgb(237,134,50)" rx="2" ry="2" />
<text x="90.47" y="335.5" ></text>
</g>
<g >
<title>find_vma (60 samples, 0.01%)</title><rect x="1147.6" y="325" width="0.1" height="15.0" fill="rgb(226,95,43)" rx="2" ry="2" />
<text x="1150.57" y="335.5" ></text>
</g>
<g >
<title>std::time::Instant::now::h33d2ba6042def2d2 (62 samples, 0.01%)</title><rect x="73.1" y="309" width="0.1" height="15.0" fill="rgb(219,27,42)" rx="2" ry="2" />
<text x="76.06" y="319.5" ></text>
</g>
<g >
<title>uncharge_batch (111 samples, 0.02%)</title><rect x="201.3" y="85" width="0.2" height="15.0" fill="rgb(224,66,10)" rx="2" ry="2" />
<text x="204.35" y="95.5" ></text>
</g>
<g >
<title>get_page_from_freelist (83 samples, 0.01%)</title><rect x="1132.3" y="293" width="0.2" height="15.0" fill="rgb(233,151,30)" rx="2" ry="2" />
<text x="1135.32" y="303.5" ></text>
</g>
<g >
<title>_int_free (434 samples, 0.06%)</title><rect x="107.2" y="389" width="0.7" height="15.0" fill="rgb(224,150,7)" rx="2" ry="2" />
<text x="110.18" y="399.5" ></text>
</g>
<g >
<title>wasmparser::readers::module::ModuleReader::read::h9a86df7daf36f14d (8,487 samples, 1.23%)</title><rect x="345.6" y="229" width="14.5" height="15.0" fill="rgb(208,168,34)" rx="2" ry="2" />
<text x="348.60" y="239.5" ></text>
</g>
<g >
<title>do_mmap (1,849 samples, 0.27%)</title><rect x="233.1" y="149" width="3.2" height="15.0" fill="rgb(238,194,50)" rx="2" ry="2" />
<text x="236.14" y="159.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,443 samples, 0.35%)</title><rect x="849.7" y="309" width="4.2" height="15.0" fill="rgb(232,56,16)" rx="2" ry="2" />
<text x="852.70" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (134 samples, 0.02%)</title><rect x="111.1" y="437" width="0.3" height="15.0" fill="rgb(226,23,42)" rx="2" ry="2" />
<text x="114.12" y="447.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$7realloc17h94c8a4e9c97c23a9E.llvm.776987249141506950 (203 samples, 0.03%)</title><rect x="13.7" y="357" width="0.3" height="15.0" fill="rgb(238,62,36)" rx="2" ry="2" />
<text x="16.67" y="367.5" ></text>
</g>
<g >
<title>_int_free (1,619 samples, 0.23%)</title><rect x="325.7" y="213" width="2.7" height="15.0" fill="rgb(211,193,40)" rx="2" ry="2" />
<text x="328.66" y="223.5" ></text>
</g>
<g >
<title>__munmap (3,044 samples, 0.44%)</title><rect x="194.5" y="261" width="5.2" height="15.0" fill="rgb(225,135,44)" rx="2" ry="2" />
<text x="197.53" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (91 samples, 0.01%)</title><rect x="81.1" y="277" width="0.1" height="15.0" fill="rgb(246,182,54)" rx="2" ry="2" />
<text x="84.07" y="287.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (140 samples, 0.02%)</title><rect x="215.4" y="245" width="0.2" height="15.0" fill="rgb(253,46,1)" rx="2" ry="2" />
<text x="218.38" y="255.5" ></text>
</g>
<g >
<title>rocinante::stoke::whitelist::WhitelistedInstruction::sample::h9a59cbfed31487a4 (675 samples, 0.10%)</title><rect x="1123.7" y="341" width="1.1" height="15.0" fill="rgb(210,142,23)" rx="2" ry="2" />
<text x="1126.69" y="351.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (82 samples, 0.01%)</title><rect x="56.5" y="293" width="0.1" height="15.0" fill="rgb(253,119,41)" rx="2" ry="2" />
<text x="59.49" y="303.5" ></text>
</g>
<g >
<title>__rdl_realloc (189 samples, 0.03%)</title><rect x="631.5" y="261" width="0.3" height="15.0" fill="rgb(242,162,28)" rx="2" ry="2" />
<text x="634.48" y="271.5" ></text>
</g>
<g >
<title>__memcpy_avx_unaligned (189 samples, 0.03%)</title><rect x="1175.2" y="309" width="0.3" height="15.0" fill="rgb(208,211,3)" rx="2" ry="2" />
<text x="1178.21" y="319.5" ></text>
</g>
<g >
<title>change_protection_range (622 samples, 0.09%)</title><rect x="1148.0" y="293" width="1.0" height="15.0" fill="rgb(237,123,15)" rx="2" ry="2" />
<text x="1150.95" y="303.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h82a7dc3569650ef1 (3,663 samples, 0.53%)</title><rect x="158.6" y="325" width="6.2" height="15.0" fill="rgb(238,151,20)" rx="2" ry="2" />
<text x="161.56" y="335.5" ></text>
</g>
<g >
<title>_int_realloc (837 samples, 0.12%)</title><rect x="645.1" y="229" width="1.4" height="15.0" fill="rgb(230,162,42)" rx="2" ry="2" />
<text x="648.11" y="239.5" ></text>
</g>
<g >
<title>memcpy_erms (69 samples, 0.01%)</title><rect x="1157.9" y="213" width="0.1" height="15.0" fill="rgb(211,40,6)" rx="2" ry="2" />
<text x="1160.93" y="223.5" ></text>
</g>
<g >
<title>__sigjmp_save (3,009 samples, 0.44%)</title><rect x="1184.8" y="549" width="5.2" height="15.0" fill="rgb(246,92,5)" rx="2" ry="2" />
<text x="1187.84" y="559.5" ></text>
</g>
<g >
<title>wasmer_runtime::compile_with_config::h3146f6a9cd30dfc8 (163 samples, 0.02%)</title><rect x="1174.4" y="453" width="0.3" height="15.0" fill="rgb(242,64,43)" rx="2" ry="2" />
<text x="1177.38" y="463.5" ></text>
</g>
<g >
<title>_int_malloc (1,220 samples, 0.18%)</title><rect x="654.7" y="261" width="2.1" height="15.0" fill="rgb(237,203,21)" rx="2" ry="2" />
<text x="657.70" y="271.5" ></text>
</g>
<g >
<title>__GI___libc_free (3,979 samples, 0.58%)</title><rect x="447.2" y="277" width="6.8" height="15.0" fill="rgb(213,28,34)" rx="2" ry="2" />
<text x="450.18" y="287.5" ></text>
</g>
<g >
<title>alloc::vec::Vec$LT$T$GT$::resize::h9160379633033fa6 (59 samples, 0.01%)</title><rect x="84.9" y="293" width="0.1" height="15.0" fill="rgb(222,13,9)" rx="2" ry="2" />
<text x="87.95" y="303.5" ></text>
</g>
<g >
<title>_int_free (110 samples, 0.02%)</title><rect x="110.5" y="389" width="0.2" height="15.0" fill="rgb(252,20,52)" rx="2" ry="2" />
<text x="113.49" y="399.5" ></text>
</g>
<g >
<title>_$LT$cranelift_codegen..isa..x86..Isa$u20$as$u20$cranelift_codegen..isa..TargetIsa$GT$::legal_encodings::hf067c4c0987c0b93 (194 samples, 0.03%)</title><rect x="65.2" y="309" width="0.3" height="15.0" fill="rgb(221,168,7)" rx="2" ry="2" />
<text x="68.21" y="319.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,518 samples, 0.37%)</title><rect x="216.3" y="229" width="4.3" height="15.0" fill="rgb(209,45,52)" rx="2" ry="2" />
<text x="219.26" y="239.5" ></text>
</g>
<g >
<title>handle_mm_fault (586 samples, 0.08%)</title><rect x="1131.8" y="357" width="1.0" height="15.0" fill="rgb(218,4,42)" rx="2" ry="2" />
<text x="1134.84" y="367.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (78 samples, 0.01%)</title><rect x="35.1" y="373" width="0.1" height="15.0" fill="rgb(216,144,8)" rx="2" ry="2" />
<text x="38.10" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,935 samples, 0.43%)</title><rect x="949.6" y="309" width="5.0" height="15.0" fill="rgb(253,14,53)" rx="2" ry="2" />
<text x="952.62" y="319.5" ></text>
</g>
<g >
<title>std::time::Instant::elapsed::h8e307314b2acf9be (139 samples, 0.02%)</title><rect x="76.5" y="309" width="0.2" height="15.0" fill="rgb(230,46,51)" rx="2" ry="2" />
<text x="79.49" y="319.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hbfb989f525a2d15c (650 samples, 0.09%)</title><rect x="532.3" y="293" width="1.1" height="15.0" fill="rgb(234,179,6)" rx="2" ry="2" />
<text x="535.27" y="303.5" ></text>
</g>
<g >
<title>_int_malloc (4,098 samples, 0.59%)</title><rect x="431.0" y="213" width="7.0" height="15.0" fill="rgb(222,149,54)" rx="2" ry="2" />
<text x="434.01" y="223.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 (813 samples, 0.12%)</title><rect x="1176.9" y="533" width="1.4" height="15.0" fill="rgb(240,197,33)" rx="2" ry="2" />
<text x="1179.92" y="543.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::h8f5edcc205986b39 (1,713 samples, 0.25%)</title><rect x="1133.5" y="421" width="3.0" height="15.0" fill="rgb(252,143,37)" rx="2" ry="2" />
<text x="1136.53" y="431.5" ></text>
</g>
<g >
<title>cranelift_codegen::isa::x86::enc_tables::size_plus_maybe_sib_or_offset_for_in_reg_0::h45f17ad339ad9f42 (88 samples, 0.01%)</title><rect x="25.6" y="389" width="0.1" height="15.0" fill="rgb(238,145,19)" rx="2" ry="2" />
<text x="28.56" y="399.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (1,338 samples, 0.19%)</title><rect x="1150.9" y="277" width="2.3" height="15.0" fill="rgb(236,185,2)" rx="2" ry="2" />
<text x="1153.90" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (88 samples, 0.01%)</title><rect x="26.7" y="357" width="0.2" height="15.0" fill="rgb(236,100,18)" rx="2" ry="2" />
<text x="29.72" y="367.5" ></text>
</g>
<g >
<title>_ZN16cranelift_entity4list17ListPool$LT$T$GT$5alloc17h7031e3fd97879e16E.llvm.776987249141506950 (124 samples, 0.02%)</title><rect x="1160.4" y="373" width="0.2" height="15.0" fill="rgb(243,167,19)" rx="2" ry="2" />
<text x="1163.38" y="383.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::now::ha10452f37b2930c5 (61 samples, 0.01%)</title><rect x="60.4" y="277" width="0.1" height="15.0" fill="rgb(240,114,52)" rx="2" ry="2" />
<text x="63.35" y="287.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::hd6c8f26eb3c9fb4b (91 samples, 0.01%)</title><rect x="38.7" y="389" width="0.1" height="15.0" fill="rgb(209,120,26)" rx="2" ry="2" />
<text x="41.65" y="399.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 (184 samples, 0.03%)</title><rect x="23.7" y="373" width="0.3" height="15.0" fill="rgb(238,123,18)" rx="2" ry="2" />
<text x="26.73" y="383.5" ></text>
</g>
<g >
<title>alloc::alloc::alloc::hae3dc37976143194 (2,830 samples, 0.41%)</title><rect x="148.5" y="181" width="4.8" height="15.0" fill="rgb(241,205,44)" rx="2" ry="2" />
<text x="151.46" y="191.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h0782b123c92dc061 (72 samples, 0.01%)</title><rect x="1133.0" y="421" width="0.1" height="15.0" fill="rgb(245,13,11)" rx="2" ry="2" />
<text x="1135.97" y="431.5" ></text>
</g>
<g >
<title>_int_malloc (1,080 samples, 0.16%)</title><rect x="385.8" y="229" width="1.8" height="15.0" fill="rgb(212,176,9)" rx="2" ry="2" />
<text x="388.76" y="239.5" ></text>
</g>
<g >
<title>_int_malloc (2,086 samples, 0.30%)</title><rect x="137.3" y="261" width="3.6" height="15.0" fill="rgb(213,207,32)" rx="2" ry="2" />
<text x="140.34" y="271.5" ></text>
</g>
<g >
<title>alloc_perturb (94 samples, 0.01%)</title><rect x="375.7" y="229" width="0.2" height="15.0" fill="rgb(238,47,8)" rx="2" ry="2" />
<text x="378.71" y="239.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (95 samples, 0.01%)</title><rect x="33.8" y="357" width="0.2" height="15.0" fill="rgb(227,108,37)" rx="2" ry="2" />
<text x="36.83" y="367.5" ></text>
</g>
<g >
<title>perf_iterate_ctx (713 samples, 0.10%)</title><rect x="229.7" y="117" width="1.3" height="15.0" fill="rgb(216,198,34)" rx="2" ry="2" />
<text x="232.74" y="127.5" ></text>
</g>
<g >
<title>wasmer_runtime_core::instance::call_func_with_index_inner::h484a2214ddaa0611 (3,585 samples, 0.52%)</title><rect x="531.5" y="309" width="6.2" height="15.0" fill="rgb(231,73,49)" rx="2" ry="2" />
<text x="534.54" y="319.5" ></text>
</g>
<g >
<title>_int_malloc (73 samples, 0.01%)</title><rect x="12.3" y="357" width="0.1" height="15.0" fill="rgb(231,51,29)" rx="2" ry="2" />
<text x="15.31" y="367.5" ></text>
</g>
<g >
<title>unlink_anon_vmas (83 samples, 0.01%)</title><rect x="196.6" y="133" width="0.1" height="15.0" fill="rgb(212,31,49)" rx="2" ry="2" />
<text x="199.59" y="143.5" ></text>
</g>
<g >
<title>__GI___libc_free (71 samples, 0.01%)</title><rect x="194.3" y="293" width="0.1" height="15.0" fill="rgb(206,5,14)" rx="2" ry="2" />
<text x="197.32" y="303.5" ></text>
</g>
<g >
<title>arch_tlb_finish_mmu (831 samples, 0.12%)</title><rect x="197.3" y="133" width="1.4" height="15.0" fill="rgb(231,148,3)" rx="2" ry="2" />
<text x="200.31" y="143.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::h0ac68de189cf22d9 (101 samples, 0.01%)</title><rect x="40.3" y="357" width="0.2" height="15.0" fill="rgb(209,51,6)" rx="2" ry="2" />
<text x="43.33" y="367.5" ></text>
</g>
<g >
<title>std::rt::lang_start::_$u7b$$u7b$closure$u7d$$u7d$::h387b585bfd0524d1 (1,228 samples, 0.18%)</title><rect x="1174.8" y="453" width="2.1" height="15.0" fill="rgb(253,98,12)" rx="2" ry="2" />
<text x="1177.81" y="463.5" ></text>
</g>
<g >
<title>cranelift_codegen::flowgraph::ControlFlowGraph::add_edge::hf2c2f4cb34e85a4f (59 samples, 0.01%)</title><rect x="1177.0" y="245" width="0.1" height="15.0" fill="rgb(213,201,20)" rx="2" ry="2" />
<text x="1179.97" y="255.5" ></text>
</g>
<g >
<title>__GI___libc_realloc (121 samples, 0.02%)</title><rect x="1180.6" y="357" width="0.3" height="15.0" fill="rgb(226,62,8)" rx="2" ry="2" />
<text x="1183.65" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_free (1,814 samples, 0.26%)</title><rect x="325.3" y="229" width="3.1" height="15.0" fill="rgb(236,125,44)" rx="2" ry="2" />
<text x="328.32" y="239.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 (97 samples, 0.01%)</title><rect x="58.8" y="277" width="0.1" height="15.0" fill="rgb(236,58,50)" rx="2" ry="2" />
<text x="61.78" y="287.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 (74 samples, 0.01%)</title><rect x="36.3" y="357" width="0.1" height="15.0" fill="rgb(206,146,28)" rx="2" ry="2" />
<text x="39.25" y="367.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (3,796 samples, 0.55%)</title><rect x="1116.3" y="309" width="6.5" height="15.0" fill="rgb(219,36,48)" rx="2" ry="2" />
<text x="1119.35" y="319.5" ></text>
</g>
<g >
<title>core::str::run_utf8_validation::hcab5686003e72b95 (738 samples, 0.11%)</title><rect x="333.5" y="181" width="1.3" height="15.0" fill="rgb(218,201,25)" rx="2" ry="2" />
<text x="336.52" y="191.5" ></text>
</g>
<g >
<title>sys_munmap (1,197 samples, 0.17%)</title><rect x="200.4" y="245" width="2.0" height="15.0" fill="rgb(241,130,19)" rx="2" ry="2" />
<text x="203.38" y="255.5" ></text>
</g>
<g >
<title>entry_SYSCALL_64_after_hwframe (2,046 samples, 0.30%)</title><rect x="228.6" y="229" width="3.5" height="15.0" fill="rgb(212,36,10)" rx="2" ry="2" />
<text x="231.58" y="239.5" ></text>
</g>
<g >
<title>copy_fpstate_to_sigframe (104 samples, 0.02%)</title><rect x="11.8" y="469" width="0.2" height="15.0" fill="rgb(208,36,9)" rx="2" ry="2" />
<text x="14.81" y="479.5" ></text>
</g>
<g >
<title>__GI___libc_free (366 samples, 0.05%)</title><rect x="208.7" y="277" width="0.6" height="15.0" fill="rgb(251,159,34)" rx="2" ry="2" />
<text x="211.69" y="287.5" ></text>
</g>
<g >
<title>std::sys::unix::time::inner::Instant::now::h23f1bea5949f1bbd (59 samples, 0.01%)</title><rect x="1166.3" y="325" width="0.1" height="15.0" fill="rgb(207,185,23)" rx="2" ry="2" />
<text x="1169.32" y="335.5" ></text>
</g>
<g >
<title>alloc::raw_vec::RawVec$LT$T$C$A$GT$::reserve::h02503ac3a628c0ac (462 samples, 0.07%)</title><rect x="89.3" y="277" width="0.8" height="15.0" fill="rgb(221,183,27)" rx="2" ry="2" />
<text x="92.30" y="287.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 (266 samples, 0.04%)</title><rect x="29.8" y="373" width="0.4" height="15.0" fill="rgb(212,197,18)" rx="2" ry="2" />
<text x="32.79" y="383.5" ></text>
</g>
<g >
<title>__GI___libc_malloc (2,780 samples, 0.40%)</title><rect x="938.5" y="309" width="4.7" height="15.0" fill="rgb(219,218,50)" rx="2" ry="2" />
<text x="941.49" y="319.5" ></text>
</g>
<g >
<title>cranelift_codegen::ir::builder::InstBuilder::sshr_imm::h62de6656fe758ee0 (117 samples, 0.02%)</title><rect x="54.5" y="261" width="0.2" height="15.0" fill="rgb(225,106,40)" rx="2" ry="2" />
<text x="57.54" y="271.5" ></text>
</g>
<g >
<title>rand::seq::index::sample::h38bee490f9049f66 (5,823 samples, 0.84%)</title><rect x="1113.7" y="325" width="10.0" height="15.0" fill="rgb(216,147,44)" rx="2" ry="2" />
<text x="1116.73" y="335.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::reload::Reload::run::h05729139e9b4ae44 (243 samples, 0.04%)</title><rect x="1180.9" y="421" width="0.4" height="15.0" fill="rgb(227,39,8)" rx="2" ry="2" />
<text x="1183.85" y="431.5" ></text>
</g>
<g >
<title>core::ptr::real_drop_in_place::hf895bb87fb92c73b (277 samples, 0.04%)</title><rect x="211.6" y="277" width="0.5" height="15.0" fill="rgb(230,22,12)" rx="2" ry="2" />
<text x="214.58" y="287.5" ></text>
</g>
<g >
<title>_$LT$alloc..vec..Vec$LT$T$GT$$u20$as$u20$core..clone..Clone$GT$::clone::hd0c3d21be1c02339 (73 samples, 0.01%)</title><rect x="42.1" y="357" width="0.1" height="15.0" fill="rgb(227,186,27)" rx="2" ry="2" />
<text x="45.07" y="367.5" ></text>
</g>
<g >
<title>cranelift_codegen::regalloc::context::Context::run::hacf4bbc8f4d0071a (1,239 samples, 0.18%)</title><rect x="1182.4" y="453" width="2.1" height="15.0" fill="rgb(233,134,51)" rx="2" ry="2" />
<text x="1185.42" y="463.5" ></text>
</g>
<g >
<title>_int_realloc (102 samples, 0.01%)</title><rect x="15.0" y="341" width="0.2" height="15.0" fill="rgb(244,200,12)" rx="2" ry="2" />
<text x="17.99" y="351.5" ></text>
</g>
<g >
<title>rocinante::parity_wasm_utils::build_module::h3459cb68f5b7661d (120,468 samples, 17.46%)</title><rect x="858.4" y="357" width="206.1" height="15.0" fill="rgb(247,105,28)" rx="2" ry="2" />
<text x="861.43" y="367.5" >rocinante::parity_wasm_util..</text>
</g>
<g >
<title>_ZN9hashbrown3raw17RawTable$LT$T$GT$14reserve_rehash17h949d57d1e07c193dE.llvm.16938716460618634628 (139 samples, 0.02%)</title><rect x="47.7" y="293" width="0.2" height="15.0" fill="rgb(210,29,17)" rx="2" ry="2" />
<text x="50.70" y="303.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (126 samples, 0.02%)</title><rect x="766.6" y="261" width="0.3" height="15.0" fill="rgb(225,20,8)" rx="2" ry="2" />
<text x="769.64" y="271.5" ></text>
</g>
<g >
<title>core::slice::_$LT$impl$u20$$u5b$T$u5d$$GT$::copy_from_slice::h91bea279e452d149 (408 samples, 0.06%)</title><rect x="808.1" y="309" width="0.7" height="15.0" fill="rgb(246,108,52)" rx="2" ry="2" />
<text x="811.11" y="319.5" ></text>
</g>
<g >
<title>__libc_start_main (592,735 samples, 85.93%)</title><rect x="113.5" y="533" width="1013.9" height="15.0" fill="rgb(220,145,4)" rx="2" ry="2" />
<text x="116.48" y="543.5" >__libc_start_main</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 (813 samples, 0.12%)</title><rect x="1176.9" y="405" width="1.4" height="15.0" fill="rgb(242,76,41)" rx="2" ry="2" />
<text x="1179.92" y="415.5" ></text>
</g>
</g>
</svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment